diff --git a/schemas/advanced.schema.json b/schemas/advanced.schema.json index dcb5fa4b0..cb53932aa 100644 --- a/schemas/advanced.schema.json +++ b/schemas/advanced.schema.json @@ -72,7 +72,7 @@ "default": "TaskStatus" }, "teamId": { - "type": "number" + "type": "string" }, "isMedia": { "type": "boolean" @@ -370,7 +370,7 @@ "additionalProperties": false, "required": [] }, - "kotlin.collections.LinkedHashMap?": { + "kotlin.collections.LinkedHashMap?": { "oneOf": [ { "type": "object", @@ -620,7 +620,7 @@ "$ref": "#/$defs/kotlin.collections.ArrayList" } }, - "kotlin.collections.ArrayList": { + "kotlin.collections.ArrayList": { "type": "array", "items": { "type": "string" @@ -636,7 +636,7 @@ "type": "string" }, "teamCdsIds": { - "$ref": "#/$defs/kotlin.collections.ArrayList" + "$ref": "#/$defs/kotlin.collections.ArrayList" } }, "additionalProperties": false, @@ -709,7 +709,7 @@ "$ref": "#/$defs/org.icpclive.cds.tunning.TeamRegexOverrides?" }, "teamOverrides": { - "$ref": "#/$defs/kotlin.collections.LinkedHashMap?" + "$ref": "#/$defs/kotlin.collections.LinkedHashMap?" }, "groupOverrides": { "$ref": "#/$defs/kotlin.collections.LinkedHashMap?" diff --git a/src/backend-api/src/main/kotlin/org/icpclive/api/ExternalRunInfo.kt b/src/backend-api/src/main/kotlin/org/icpclive/api/ExternalRunInfo.kt index ca439f48c..db5dd2e93 100644 --- a/src/backend-api/src/main/kotlin/org/icpclive/api/ExternalRunInfo.kt +++ b/src/backend-api/src/main/kotlin/org/icpclive/api/ExternalRunInfo.kt @@ -20,9 +20,9 @@ class ExternalRunInfo( @Serializable class ExternalTeamInfo( + val id: String, val fullName: String, val displayName: String, - val contestSystemId: String, val groups: List, val hashTag: String?, val medias: Map, diff --git a/src/backend-api/src/main/kotlin/org/icpclive/api/Settings.kt b/src/backend-api/src/main/kotlin/org/icpclive/api/Settings.kt index 055a589ce..ddc728a81 100644 --- a/src/backend-api/src/main/kotlin/org/icpclive/api/Settings.kt +++ b/src/backend-api/src/main/kotlin/org/icpclive/api/Settings.kt @@ -39,7 +39,7 @@ class TickerSettings : ObjectSettings @Serializable data class ExternalTeamViewSettings( - val teamId: Int? = null, + val teamId: TeamId? = null, val mediaTypes: List = emptyList(), val showTaskStatus: Boolean = true, val showAchievement: Boolean = false, @@ -64,7 +64,7 @@ data class TeamLocatorCircleSettings( val x: Int, val y: Int, val radius: Int, - val teamId: Int, + val teamId: TeamId, ) @Serializable @@ -78,7 +78,7 @@ data class TeamLocatorExternalCircleSettings( val x: Int, val y: Int, val radius: Int, - val teamId: Int? = null, + val teamId: TeamId? = null, val cdsTeamId: String? = null, ) diff --git a/src/backend-api/src/main/kotlin/org/icpclive/api/Social.kt b/src/backend-api/src/main/kotlin/org/icpclive/api/Social.kt index a715059d5..5c098c5e8 100644 --- a/src/backend-api/src/main/kotlin/org/icpclive/api/Social.kt +++ b/src/backend-api/src/main/kotlin/org/icpclive/api/Social.kt @@ -1,18 +1,19 @@ package org.icpclive.api import kotlinx.serialization.Serializable +import org.icpclive.cds.api.TeamId @Serializable sealed class SocialEvent { abstract val rawText: String - abstract val teamIds: List + abstract val teamIds: List abstract val author: String } @Serializable data class ChatMessage( override val rawText: String, - override val teamIds: List = emptyList(), + override val teamIds: List = emptyList(), override val author: String, val platform: String, ) : SocialEvent() \ No newline at end of file diff --git a/src/backend-api/src/main/kotlin/org/icpclive/api/SpotlightTeam.kt b/src/backend-api/src/main/kotlin/org/icpclive/api/SpotlightTeam.kt index 65e22fe3f..f2cac7830 100644 --- a/src/backend-api/src/main/kotlin/org/icpclive/api/SpotlightTeam.kt +++ b/src/backend-api/src/main/kotlin/org/icpclive/api/SpotlightTeam.kt @@ -1,6 +1,7 @@ package org.icpclive.api import kotlinx.serialization.Serializable +import org.icpclive.cds.api.TeamId import kotlin.time.Duration import kotlin.time.Duration.Companion.seconds @@ -8,14 +9,14 @@ sealed class KeyTeamCause class RunCause(val runId: Int) : KeyTeamCause() object ScoreSumCause : KeyTeamCause() -data class KeyTeam(val teamId: Int, val cause: KeyTeamCause) -data class CurrentTeamState(val teamId: Int, val score: Double) +data class KeyTeam(val teamId: TeamId, val cause: KeyTeamCause) +data class CurrentTeamState(val teamId: TeamId, val score: Double) @Serializable -data class InterestingTeam(val teamId: Int, val teamName: String, val score: Double) +data class InterestingTeam(val teamId: TeamId, val teamName: String, val score: Double) @Serializable -data class AddTeamScoreRequest(val teamId: Int, val score: Double) +data class AddTeamScoreRequest(val teamId: TeamId, val score: Double) data class TeamSpotlightFlowSettings( val notJudgedRunScore: Double = 5.0, diff --git a/src/backend/src/main/kotlin/org/icpclive/admin/Info.kt b/src/backend/src/main/kotlin/org/icpclive/admin/Info.kt index 970a80613..05fd97686 100644 --- a/src/backend/src/main/kotlin/org/icpclive/admin/Info.kt +++ b/src/backend/src/main/kotlin/org/icpclive/admin/Info.kt @@ -41,9 +41,9 @@ private fun RunInfo.toExternal(contestInfo: ContestInfo): ExternalRunInfo? { private fun TeamInfo.toExternal(contestInfo: ContestInfo) : ExternalTeamInfo? { if (isHidden) return null return ExternalTeamInfo( + id = id.value, fullName = fullName, displayName = displayName, - contestSystemId = contestSystemId, groups = groups.mapNotNull { contestInfo.groups[it] }, hashTag = hashTag, medias = medias, diff --git a/src/backend/src/main/kotlin/org/icpclive/admin/Social.kt b/src/backend/src/main/kotlin/org/icpclive/admin/Social.kt index 2124bba9e..fb26544c8 100644 --- a/src/backend/src/main/kotlin/org/icpclive/admin/Social.kt +++ b/src/backend/src/main/kotlin/org/icpclive/admin/Social.kt @@ -6,6 +6,7 @@ import io.ktor.server.websocket.* import kotlinx.coroutines.flow.MutableSharedFlow import org.icpclive.api.ChatMessage import org.icpclive.api.SocialEvent +import org.icpclive.cds.api.TeamId import org.icpclive.util.completeOrThrow import org.icpclive.data.DataBus import org.icpclive.util.sendJsonFlow diff --git a/src/backend/src/main/kotlin/org/icpclive/controllers/LocatorWidgetController.kt b/src/backend/src/main/kotlin/org/icpclive/controllers/LocatorWidgetController.kt index dbeb692d9..2f8fd12d5 100644 --- a/src/backend/src/main/kotlin/org/icpclive/controllers/LocatorWidgetController.kt +++ b/src/backend/src/main/kotlin/org/icpclive/controllers/LocatorWidgetController.kt @@ -11,8 +11,7 @@ class LocatorWidgetController(manager: Manager) : SingleWidgetController(ExternalTeamLocatorSettings(), manager) { override suspend fun onDelete(id: Int) {} - fun TeamLocatorExternalCircleSettings.getTeam(info: ContestInfo) = - info.teams[teamId] ?: info.cdsTeams[cdsTeamId] + fun TeamLocatorExternalCircleSettings.getTeam(info: ContestInfo) = info.teams[teamId] override suspend fun checkSettings(settings: ExternalTeamLocatorSettings) { val info = DataBus.contestInfoFlow.await().first() diff --git a/src/backend/src/main/kotlin/org/icpclive/overlay/Routing.kt b/src/backend/src/main/kotlin/org/icpclive/overlay/Routing.kt index 1ffd16d30..57b0e1f0d 100644 --- a/src/backend/src/main/kotlin/org/icpclive/overlay/Routing.kt +++ b/src/backend/src/main/kotlin/org/icpclive/overlay/Routing.kt @@ -9,7 +9,6 @@ import kotlinx.coroutines.flow.* import org.icpclive.Config import org.icpclive.admin.getExternalRun import org.icpclive.cds.api.OptimismLevel -import org.icpclive.cds.api.RunInfo import org.icpclive.data.DataBus import org.icpclive.cds.scoreboard.ScoreboardAndContestInfo import org.icpclive.cds.scoreboard.toLegacyScoreboard @@ -44,7 +43,7 @@ fun Route.configureOverlayRouting() { } } route("/svgAchievement"){ - configureSvgAtchievementRouting(Config.mediaDirectory) + configureSvgAchievementRouting(Config.mediaDirectory) } get("/visualConfig.json") { call.respond(DataBus.visualConfigFlow.await().value) } get("/externalRun/{id}") { diff --git a/src/backend/src/main/kotlin/org/icpclive/overlay/SmartSvg.kt b/src/backend/src/main/kotlin/org/icpclive/overlay/SmartSvg.kt index 8ccdfc465..5803183f0 100644 --- a/src/backend/src/main/kotlin/org/icpclive/overlay/SmartSvg.kt +++ b/src/backend/src/main/kotlin/org/icpclive/overlay/SmartSvg.kt @@ -5,19 +5,21 @@ import io.ktor.server.application.* import io.ktor.server.response.* import io.ktor.server.routing.* import io.ktor.util.* -import org.icpclive.admin.getTeams +import kotlinx.coroutines.flow.first +import org.icpclive.cds.api.TeamId +import org.icpclive.data.DataBus import org.icpclive.util.Svg import java.io.File import java.nio.file.Path -fun Route.configureSvgAtchievementRouting(mediaDirectory: Path) { +fun Route.configureSvgAchievementRouting(mediaDirectory: Path) { get("{path...}") { val relativePath = call.parameters.getAll("path")?.joinToString(File.separator) ?: "" val paths = mediaDirectory.resolve(relativePath) val substitute = call.request.queryParameters.toMap().mapValues { it.value.first() }.toMutableMap() substitute["teamId"]?.let { teamId -> - getTeams().firstOrNull { it.contestSystemId == teamId }?.let { + DataBus.contestInfoFlow.await().first().teams[TeamId(teamId)]?.let { substitute["team.name"] = it.fullName substitute["team.shortName"] = it.displayName substitute["team.hashTag"] = it.hashTag ?: "" diff --git a/src/backend/src/main/kotlin/org/icpclive/service/TeamSpotlightService.kt b/src/backend/src/main/kotlin/org/icpclive/service/TeamSpotlightService.kt index 5040a9109..00141b100 100644 --- a/src/backend/src/main/kotlin/org/icpclive/service/TeamSpotlightService.kt +++ b/src/backend/src/main/kotlin/org/icpclive/service/TeamSpotlightService.kt @@ -74,7 +74,7 @@ private fun TeamAccent.getScoreDelta(flowSettings: TeamSpotlightFlowSettings) = } @Serializable -class TeamState(val teamId: Int) : Comparable { +class TeamState(val teamId: TeamId) : Comparable { var score = 0.0 private set private var causedRun: RunInfo? = null @@ -91,7 +91,7 @@ class TeamState(val teamId: Int) : Comparable { override fun compareTo(other: TeamState): Int = when { other.score > score -> 1 other.score < score -> -1 - else -> teamId.compareTo(other.teamId) + else -> teamId.value.compareTo(other.teamId.value) } } @@ -101,7 +101,7 @@ class TeamSpotlightService( ) { private val mutex = Mutex() private val queue = mutableSetOf() - private fun getTeamInQueue(teamId: Int) = + private fun getTeamInQueue(teamId: TeamId) = queue.find { it.teamId == teamId } ?: TeamState(teamId).also { queue += it } fun getFlow(): Flow { diff --git a/src/cds-converter/src/main/kotlin/Application.kt b/src/cds-converter/src/main/kotlin/Application.kt index 4068171f1..1ccbe8b1e 100644 --- a/src/cds-converter/src/main/kotlin/Application.kt +++ b/src/cds-converter/src/main/kotlin/Application.kt @@ -27,12 +27,11 @@ import kotlinx.coroutines.* import kotlinx.coroutines.flow.* import org.apache.commons.csv.CSVFormat import org.apache.commons.csv.CSVParser -import org.icpclive.cds.api.ContestInfo -import org.icpclive.cds.api.RunInfo import org.icpclive.cds.tunning.AdvancedProperties import org.icpclive.cds.tunning.TeamInfoOverride import org.icpclive.cds.ContestUpdate import org.icpclive.cds.adapters.* +import org.icpclive.cds.api.* import org.icpclive.cds.cli.CdsCommandLineOptions import org.icpclive.export.icpc.csv.IcpcCsvExporter import org.icpclive.util.* @@ -109,7 +108,7 @@ object IcpcCSVDumpCommand : DumpFileCommand( } else { val parser = CSVParser(mappingFile.inputStream().reader(), CSVFormat.TDF) val map = parser.records.associate { - it[1]!! to it[0]!! + TeamId(it[1]!!) to it[0]!! } val advanced = AdvancedProperties( teamOverrides = map.mapValues { diff --git a/src/cds-converter/src/main/kotlin/org/icpclive/export/clics/ClicsExporter.kt b/src/cds-converter/src/main/kotlin/org/icpclive/export/clics/ClicsExporter.kt index 1a486d0c4..2f35c8d35 100644 --- a/src/cds-converter/src/main/kotlin/org/icpclive/export/clics/ClicsExporter.kt +++ b/src/cds-converter/src/main/kotlin/org/icpclive/export/clics/ClicsExporter.kt @@ -56,7 +56,7 @@ private fun MediaType.toClicsMedia() = when (this) { } private fun TeamInfo.toClicsTeam() = Team( - id = contestSystemId, + id = id.value, name = fullName, hidden = isHidden, group_ids = groups.map { it.value }, @@ -204,7 +204,6 @@ object ClicsExporter { } private val submissionsCreated = mutableSetOf() - private var teamIdToCdsId = mapOf() private suspend fun FlowCollector.processRun(info: ContestInfo, run: RunInfo) { if (run.id !in submissionsCreated) { @@ -215,7 +214,7 @@ object ClicsExporter { id = run.id.toString(), language_id = unknownLanguage.id, problem_id = run.problemId.value, - team_id = teamIdToCdsId[run.teamId]!!, + team_id = run.teamId.value, time = info.startTime + run.time, contest_time = run.time, ), @@ -249,12 +248,10 @@ object ClicsExporter { private val groupsMap = mutableMapOf() private val orgsMap = mutableMapOf() private val problemsMap = mutableMapOf() - private val teamsMap = mutableMapOf() + private val teamsMap = mutableMapOf() @OptIn(InefficientContestInfoApi::class) private suspend fun FlowCollector.calculateDiff(oldInfo: ContestInfo?, newInfo: ContestInfo) { - teamIdToCdsId = newInfo.teamList.associate { it.id to it.contestSystemId } - diff(oldInfo, newInfo, ::getContest, Event::ContestEvent) diff(oldInfo, newInfo, ::getState, Event::StateEvent) if (oldInfo == null) { @@ -269,7 +266,7 @@ object ClicsExporter { diffChange(groupsMap, newInfo.groupList, { id }, { toClicsGroup() }) { id, token, data -> Event.GroupsEvent(id.value, token, data) } diffChange(orgsMap, newInfo.organizationList, { id }, { toClicsOrg() }) { id, token, data -> Event.OrganizationEvent(id.value, token, data) } - diff(teamsMap, newInfo.teamList, TeamInfo::contestSystemId, TeamInfo::toClicsTeam, Event::TeamEvent) + diff(teamsMap, newInfo.teamList, { id }, TeamInfo::toClicsTeam) { id, token, data -> Event.TeamEvent(id.value, token, data) } diffRemove(groupsMap, newInfo.groupList, { id }) { id, token, data -> Event.GroupsEvent(id.value, token, data) } diffRemove(orgsMap, newInfo.organizationList, { id }) { id, token, data -> Event.OrganizationEvent(id.value, token, data) } @@ -285,7 +282,7 @@ object ClicsExporter { event.relativeTime, event.message, event.tags, - event.teamIds.map { teamIdToCdsId[it]!! }, + event.teamIds.map { it.value }, emptyList(), event.runIds.map { it.toString() } ), @@ -460,7 +457,7 @@ object ClicsExporter { val row = scoreboardSnapshot.rows[teamId]!! ScoreboardRow( rank, - info.teams[teamId]!!.contestSystemId, + teamId.value, ScoreboardRowScore(row.totalScore.toInt(), row.penalty.inWholeMinutes), row.problemResults.mapIndexed { index, v -> val iv = v as ICPCProblemResult @@ -478,7 +475,7 @@ object ClicsExporter { private fun ScoreboardAndContestInfo.toClicsAwards() = buildList { for (award in scoreboardSnapshot.awards) { - add(Award(award.id, award.citation, award.teams.map { info.teams[it]!!.contestSystemId })) + add(Award(award.id, award.citation, award.teams.map { it.value })) } for ((index, problem) in info.scoreboardProblems.withIndex()) { add(Award( @@ -486,7 +483,7 @@ object ClicsExporter { "First to solve problem ${problem.displayName}", scoreboardSnapshot.rows.entries .filter { (it.value.problemResults[index] as? ICPCProblemResult)?.isFirstToSolve == true } - .map { info.teams[it.key]!!.contestSystemId } + .map { it.key.value } )) } } diff --git a/src/cds-converter/src/main/kotlin/org/icpclive/export/icpc/csv/IcpcCsvExporter.kt b/src/cds-converter/src/main/kotlin/org/icpclive/export/icpc/csv/IcpcCsvExporter.kt index b75d8e97c..59a86bf58 100644 --- a/src/cds-converter/src/main/kotlin/org/icpclive/export/icpc/csv/IcpcCsvExporter.kt +++ b/src/cds-converter/src/main/kotlin/org/icpclive/export/icpc/csv/IcpcCsvExporter.kt @@ -29,7 +29,7 @@ object IcpcCsvExporter { "institution" ) - fun TeamInfo.icpcId() = customFields["icpc_id"] ?: contestSystemId + fun TeamInfo.icpcId() = customFields["icpc_id"] ?: id.value fun format(info: ContestInfo, runs: List) : String { if (info.resultType == ContestResultType.IOI) TODO("IOI is not supported yet") diff --git a/src/cds-converter/src/main/kotlin/org/icpclive/export/pcms/PCMSExporter.kt b/src/cds-converter/src/main/kotlin/org/icpclive/export/pcms/PCMSExporter.kt index 8d66936fc..f13bafdc8 100644 --- a/src/cds-converter/src/main/kotlin/org/icpclive/export/pcms/PCMSExporter.kt +++ b/src/cds-converter/src/main/kotlin/org/icpclive/export/pcms/PCMSExporter.kt @@ -86,9 +86,9 @@ object PCMSExporter { private fun Element.buildSessionNode(info: ContestInfo, teamInfo: TeamInfo, row: ScoreboardRow, runs: List, awards: List) { setAttribute("party", teamInfo.fullName) - setAttribute("id", teamInfo.contestSystemId) + setAttribute("id", teamInfo.id.value) // setAttribute("time", "") - setAttribute("alias", teamInfo.contestSystemId) + setAttribute("alias", teamInfo.id.value) setAttribute("penalty", row.penalty.inWholeMinutes.toString()) setAttribute("solved", row.totalScore.toInt().toString()) for (award in awards) { diff --git a/src/cds/core/api/core.api b/src/cds/core/api/core.api index 6bfbfb733..fb6f84ad5 100644 --- a/src/cds/core/api/core.api +++ b/src/cds/core/api/core.api @@ -493,7 +493,6 @@ public final class org/icpclive/cds/api/ContestInfo { public fun equals (Ljava/lang/Object;)Z public final fun getAwardsSettings ()Lorg/icpclive/cds/api/AwardsSettings; public final fun getCdsSupportsFinalization ()Z - public final fun getCdsTeams ()Ljava/util/Map; public final fun getContestLength-UwyO8pc ()J public final fun getCurrentContestTime-UwyO8pc ()J public final fun getEmulationSpeed ()D @@ -724,8 +723,8 @@ public final class org/icpclive/cds/api/LegacyScoreboard$Companion { public final class org/icpclive/cds/api/LegacyScoreboardRow { public static final field Companion Lorg/icpclive/cds/api/LegacyScoreboardRow$Companion; - public synthetic fun (IIDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V - public final fun component1 ()I + public synthetic fun (Ljava/lang/String;IDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun component1-ed2mA_4 ()Ljava/lang/String; public final fun component2 ()I public final fun component3 ()D public final fun component4-UwyO8pc ()J @@ -734,8 +733,8 @@ public final class org/icpclive/cds/api/LegacyScoreboardRow { public final fun component7 ()Ljava/util/List; public final fun component8 ()Ljava/util/List; public final fun component9 ()Ljava/util/List; - public final fun copy-SBKQj6I (IIDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;)Lorg/icpclive/cds/api/LegacyScoreboardRow; - public static synthetic fun copy-SBKQj6I$default (Lorg/icpclive/cds/api/LegacyScoreboardRow;IIDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;ILjava/lang/Object;)Lorg/icpclive/cds/api/LegacyScoreboardRow; + public final fun copy-FwdU8qc (Ljava/lang/String;IDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;)Lorg/icpclive/cds/api/LegacyScoreboardRow; + public static synthetic fun copy-FwdU8qc$default (Lorg/icpclive/cds/api/LegacyScoreboardRow;Ljava/lang/String;IDJJLjava/lang/String;Ljava/util/List;Ljava/util/List;Ljava/util/List;ILjava/lang/Object;)Lorg/icpclive/cds/api/LegacyScoreboardRow; public fun equals (Ljava/lang/Object;)Z public final fun getChampionInGroups ()Ljava/util/List; public final fun getLastAccepted ()J @@ -744,7 +743,7 @@ public final class org/icpclive/cds/api/LegacyScoreboardRow { public final fun getProblemResults ()Ljava/util/List; public final fun getRank ()I public final fun getTeamGroups ()Ljava/util/List; - public final fun getTeamId ()I + public final fun getTeamId-ed2mA_4 ()Ljava/lang/String; public final fun getTotalScore ()D public fun hashCode ()I public fun toString ()Ljava/lang/String; @@ -869,12 +868,12 @@ public final class org/icpclive/cds/api/MediaType$Photo$Companion { public final class org/icpclive/cds/api/MediaType$TaskStatus : org/icpclive/cds/api/MediaType { public static final field Companion Lorg/icpclive/cds/api/MediaType$TaskStatus$Companion; - public fun (I)V - public final fun component1 ()I - public final fun copy (I)Lorg/icpclive/cds/api/MediaType$TaskStatus; - public static synthetic fun copy$default (Lorg/icpclive/cds/api/MediaType$TaskStatus;IILjava/lang/Object;)Lorg/icpclive/cds/api/MediaType$TaskStatus; + public synthetic fun (Ljava/lang/String;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun component1-ed2mA_4 ()Ljava/lang/String; + public final fun copy-nUE0bHc (Ljava/lang/String;)Lorg/icpclive/cds/api/MediaType$TaskStatus; + public static synthetic fun copy-nUE0bHc$default (Lorg/icpclive/cds/api/MediaType$TaskStatus;Ljava/lang/String;ILjava/lang/Object;)Lorg/icpclive/cds/api/MediaType$TaskStatus; public fun equals (Ljava/lang/Object;)Z - public final fun getTeamId ()I + public final fun getTeamId-ed2mA_4 ()Ljava/lang/String; public fun hashCode ()I public fun isMedia ()Z public fun toString ()Ljava/lang/String; @@ -1176,25 +1175,25 @@ public final class org/icpclive/cds/api/ProblemResult$Companion { public final class org/icpclive/cds/api/RunInfo { public static final field Companion Lorg/icpclive/cds/api/RunInfo$Companion; - public synthetic fun (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;IJLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V - public synthetic fun (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;IJLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZLkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;Ljava/lang/String;JLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;Ljava/lang/String;JLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZLkotlin/jvm/internal/DefaultConstructorMarker;)V public final fun component1 ()I public final fun component2 ()Lorg/icpclive/cds/api/RunResult; public final fun component3-Xzdl60o ()Ljava/lang/String; - public final fun component4 ()I + public final fun component4-ed2mA_4 ()Ljava/lang/String; public final fun component5-UwyO8pc ()J public final fun component6 ()Lorg/icpclive/cds/api/MediaType; public final fun component7 ()Ljava/util/List; public final fun component8 ()Z - public final fun copy-jb0x3hQ (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;IJLorg/icpclive/cds/api/MediaType;Ljava/util/List;Z)Lorg/icpclive/cds/api/RunInfo; - public static synthetic fun copy-jb0x3hQ$default (Lorg/icpclive/cds/api/RunInfo;ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;IJLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZILjava/lang/Object;)Lorg/icpclive/cds/api/RunInfo; + public final fun copy-HGkjL3I (ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;Ljava/lang/String;JLorg/icpclive/cds/api/MediaType;Ljava/util/List;Z)Lorg/icpclive/cds/api/RunInfo; + public static synthetic fun copy-HGkjL3I$default (Lorg/icpclive/cds/api/RunInfo;ILorg/icpclive/cds/api/RunResult;Ljava/lang/String;Ljava/lang/String;JLorg/icpclive/cds/api/MediaType;Ljava/util/List;ZILjava/lang/Object;)Lorg/icpclive/cds/api/RunInfo; public fun equals (Ljava/lang/Object;)Z public final fun getFeaturedRunMedia ()Lorg/icpclive/cds/api/MediaType; public final fun getId ()I public final fun getProblemId-Xzdl60o ()Ljava/lang/String; public final fun getReactionVideos ()Ljava/util/List; public final fun getResult ()Lorg/icpclive/cds/api/RunResult; - public final fun getTeamId ()I + public final fun getTeamId-ed2mA_4 ()Ljava/lang/String; public final fun getTime-UwyO8pc ()J public fun hashCode ()I public final fun isHidden ()Z @@ -1407,31 +1406,59 @@ public final class org/icpclive/cds/api/ScoreboardUpdateType : java/lang/Enum { public static fun values ()[Lorg/icpclive/cds/api/ScoreboardUpdateType; } +public final class org/icpclive/cds/api/TeamId { + public static final field Companion Lorg/icpclive/cds/api/TeamId$Companion; + public static final synthetic fun box-impl (Ljava/lang/String;)Lorg/icpclive/cds/api/TeamId; + public static fun constructor-impl (Ljava/lang/String;)Ljava/lang/String; + public fun equals (Ljava/lang/Object;)Z + public static fun equals-impl (Ljava/lang/String;Ljava/lang/Object;)Z + public static final fun equals-impl0 (Ljava/lang/String;Ljava/lang/String;)Z + public final fun getValue ()Ljava/lang/String; + public fun hashCode ()I + public static fun hashCode-impl (Ljava/lang/String;)I + public fun toString ()Ljava/lang/String; + public static fun toString-impl (Ljava/lang/String;)Ljava/lang/String; + public final synthetic fun unbox-impl ()Ljava/lang/String; +} + +public synthetic class org/icpclive/cds/api/TeamId$$serializer : kotlinx/serialization/internal/GeneratedSerializer { + public static final field INSTANCE Lorg/icpclive/cds/api/TeamId$$serializer; + public final fun childSerializers ()[Lkotlinx/serialization/KSerializer; + public synthetic fun deserialize (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/Object; + public final fun deserialize-tFv2abk (Lkotlinx/serialization/encoding/Decoder;)Ljava/lang/String; + public final fun getDescriptor ()Lkotlinx/serialization/descriptors/SerialDescriptor; + public synthetic fun serialize (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/Object;)V + public final fun serialize-iuLu8EU (Lkotlinx/serialization/encoding/Encoder;Ljava/lang/String;)V + public fun typeParametersSerializers ()[Lkotlinx/serialization/KSerializer; +} + +public final class org/icpclive/cds/api/TeamId$Companion { + public final fun serializer ()Lkotlinx/serialization/KSerializer; +} + public final class org/icpclive/cds/api/TeamInfo { public static final field Companion Lorg/icpclive/cds/api/TeamInfo$Companion; - public synthetic fun (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V - public synthetic fun (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;Lkotlin/jvm/internal/DefaultConstructorMarker;)V - public final fun component1 ()I - public final fun component10-jSlij8E ()Ljava/lang/String; - public final fun component11 ()Ljava/util/Map; + public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;ILkotlin/jvm/internal/DefaultConstructorMarker;)V + public synthetic fun (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;Lkotlin/jvm/internal/DefaultConstructorMarker;)V + public final fun component1-ed2mA_4 ()Ljava/lang/String; + public final fun component10 ()Ljava/util/Map; public final fun component2 ()Ljava/lang/String; public final fun component3 ()Ljava/lang/String; - public final fun component4 ()Ljava/lang/String; - public final fun component5 ()Ljava/util/List; - public final fun component6 ()Ljava/lang/String; - public final fun component7 ()Ljava/util/Map; + public final fun component4 ()Ljava/util/List; + public final fun component5 ()Ljava/lang/String; + public final fun component6 ()Ljava/util/Map; + public final fun component7 ()Z public final fun component8 ()Z - public final fun component9 ()Z - public final fun copy-OML4_fA (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;)Lorg/icpclive/cds/api/TeamInfo; - public static synthetic fun copy-OML4_fA$default (Lorg/icpclive/cds/api/TeamInfo;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lorg/icpclive/cds/api/TeamInfo; + public final fun component9-jSlij8E ()Ljava/lang/String; + public final fun copy-nj4I2KQ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;)Lorg/icpclive/cds/api/TeamInfo; + public static synthetic fun copy-nj4I2KQ$default (Lorg/icpclive/cds/api/TeamInfo;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Ljava/lang/String;Ljava/util/Map;ZZLjava/lang/String;Ljava/util/Map;ILjava/lang/Object;)Lorg/icpclive/cds/api/TeamInfo; public fun equals (Ljava/lang/Object;)Z - public final fun getContestSystemId ()Ljava/lang/String; public final fun getCustomFields ()Ljava/util/Map; public final fun getDisplayName ()Ljava/lang/String; public final fun getFullName ()Ljava/lang/String; public final fun getGroups ()Ljava/util/List; public final fun getHashTag ()Ljava/lang/String; - public final fun getId ()I + public final fun getId-ed2mA_4 ()Ljava/lang/String; public final fun getMedias ()Ljava/util/Map; public final fun getOrganizationId-jSlij8E ()Ljava/lang/String; public fun hashCode ()I diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/AdvancedPropertiesAdapter.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/AdvancedPropertiesAdapter.kt index dd0eeaaf3..84807ba1a 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/AdvancedPropertiesAdapter.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/AdvancedPropertiesAdapter.kt @@ -55,7 +55,7 @@ private fun MediaType.applyTemplate(valueProvider: (String) -> String?) = when ( public fun Flow.applyAdvancedProperties(advancedPropsFlow: Flow): Flow = flow { val triggerFlow = Channel() - val submittedTeams = mutableSetOf() + val submittedTeams = mutableSetOf() val triggers = mutableSetOf() coroutineScope { val advancedPropsStateFlow = advancedPropsFlow.stateIn(this) @@ -151,7 +151,7 @@ private fun TeamOverrideTemplate.instantiateTemplate( teams: List, valueProvider: TeamInfo.(String) -> String?, ) = teams.associate { team -> - team.contestSystemId to instantiateTemplate { team.valueProvider(it) } + team.id to instantiateTemplate { team.valueProvider(it) } } internal fun TeamOverrideTemplate.instantiateTemplate( @@ -164,7 +164,7 @@ internal fun TeamOverrideTemplate.instantiateTemplate( ) -private fun List.filterNotSubmitted(show: Boolean?, submittedTeams: Set) = if (show != false) { +private fun List.filterNotSubmitted(show: Boolean?, submittedTeams: Set) = if (show != false) { this } else { filter { it.id in submittedTeams }.also { @@ -234,7 +234,7 @@ private fun AdvancedProperties.status(info: ContestInfo): ContestStatus { internal fun applyAdvancedProperties( info: ContestInfo, overrides: AdvancedProperties, - submittedTeams: Set, + submittedTeams: Set, ): ContestInfo { val teamInfosPrelim = applyRegex( applyRegex( @@ -243,10 +243,10 @@ internal fun applyAdvancedProperties( submittedTeams ), overrides.teamNameRegexes, - TeamInfo::fullName + { fullName } ), overrides.teamIdRegexes, - TeamInfo::contestSystemId + { id.value } ) val newGroups = buildSet { for (team in teamInfosPrelim) { @@ -283,7 +283,7 @@ internal fun applyAdvancedProperties( fun TeamInfo.templateValueGetter(name: String): String? { return when (name) { - "teamId" -> contestSystemId + "teamId" -> id.value "orgFullName" -> organizationId?.let { orgsById[it]?.fullName } "orgDisplayName" -> organizationId?.let { orgsById[it]?.displayName } else -> customFields[name] @@ -291,8 +291,11 @@ internal fun applyAdvancedProperties( } val teamInfoWithCustomFields = teamInfosPrelim - .mergeTeams(overrides.teamOverrides?.filterValues { it.customFields != null } - ?.mapValues { TeamInfoOverride(customFields = it.value.customFields) }) + .mergeTeams( + overrides.teamOverrides + ?.filterValues { it.customFields != null } + ?.mapValues { TeamInfoOverride(customFields = it.value.customFields) } + ) val teamInfos = teamInfoWithCustomFields .mergeTeams( @@ -378,17 +381,16 @@ private fun mergeProblems( ) } -private fun List.mergeTeams(overrides: Map?) = mergeOverrides( +private fun List.mergeTeams(overrides: Map?) = mergeOverrides( this, overrides, - TeamInfo::contestSystemId, + { id }, unusedMessage = { "No team for override: $it" }, ) { team, override -> TeamInfo( id = team.id, fullName = override.fullName ?: team.fullName, displayName = override.displayName ?: team.displayName, - contestSystemId = team.contestSystemId, groups = override.groups ?: team.groups, hashTag = override.hashTag ?: team.hashTag, medias = mergeMaps(team.medias, override.medias ?: emptyMap()), diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/HiddenTeamsAdapter.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/HiddenTeamsAdapter.kt index 652279ff4..7a3e15de7 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/HiddenTeamsAdapter.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/HiddenTeamsAdapter.kt @@ -45,7 +45,7 @@ public fun Flow.processHiddenTeamsAndGroups(): Flow + { new: ContestInfo, old: ContestInfo?, key: TeamId -> new.teams[key]?.isHidden != old?.teams?.get(key)?.isHidden } ).map { it.event } \ No newline at end of file diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/PreviousDayAdapter.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/PreviousDayAdapter.kt index 7029e6f20..abcc8ae18 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/PreviousDayAdapter.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/adapters/PreviousDayAdapter.kt @@ -17,13 +17,10 @@ import kotlin.time.Duration @OptIn(InefficientContestInfoApi::class) @JvmName("addPreviousDaysResults") public fun Flow.addPreviousDays(previousDays: List): Flow { - val teamsEnumerator = Enumerator() val runsEnumerator = Enumerator>() val allProblems = mutableListOf() val allRuns = mutableListOf() - val teamIdToNewTeamId = mutableMapOf() - val teamIdToCdsTeamId = mutableMapOf() fun problemId(day: Int, id: ProblemId) = if (day < previousDays.size) ProblemId("d${day+1}.${id.value}") @@ -43,17 +40,11 @@ public fun Flow.addPreviousDays(previousDays: List) id = runsEnumerator[index to run.id], time = Duration.ZERO, problemId = problemId(index,run.problemId), - teamId = teamsEnumerator[info.teams[run.teamId]!!.contestSystemId].also { - teamIdToNewTeamId[it] = null - teamIdToCdsTeamId[it] = info.teams[run.teamId]!!.contestSystemId - } ) ) } } - val runsByTeamId = allRuns.groupBy { it.teamId } - return transform { update -> when (update) { is AnalyticsUpdate -> emit(update) @@ -65,33 +56,15 @@ public fun Flow.addPreviousDays(previousDays: List) ordinal = allProblems.size + index ) } - val newTeamIds = info.teamList.associate { it.contestSystemId to it.id } - val todo = buildList { - for ((id, oldId) in teamIdToNewTeamId.entries) { - val newId = newTeamIds[teamIdToCdsTeamId[id]] - if (oldId != newId) { - add(id to newId) - } - } - } emit(InfoUpdate( info.copy( problemList = allProblems + newProblems ) )) - for ((id, newId) in todo) { - teamIdToNewTeamId[id] = newId - val runs = runsByTeamId[id] ?: continue - for (run in runs) { - emit(RunUpdate( - if (newId == null) { - run.copy(teamId = -1, isHidden = true) - } else { - run.copy(teamId = newId) - } - )) - } + for (i in allRuns) { + emit(RunUpdate(i)) } + allRuns.clear() } is RunUpdate -> { val info = update.newInfo diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Analytics.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Analytics.kt index aff1de507..11c15991d 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Analytics.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Analytics.kt @@ -40,7 +40,7 @@ public data class AnalyticsCommentaryEvent( @SerialName("relativeTimeMs") @Serializable(with = DurationInMillisecondsSerializer::class) override val relativeTime: Duration, - val teamIds: List, + val teamIds: List, val runIds: List, @Required val priority: Int = 0, @Required val tags: List = emptyList(), // todo: support tage in CLICS parser diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/AwardsSettings.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/AwardsSettings.kt index e5cfa0a34..48fa10476 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/AwardsSettings.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/AwardsSettings.kt @@ -62,6 +62,6 @@ public data class AwardsSettings( public data class ManualAwardSetting( val id: String, val citation: String, - val teamCdsIds: List, + val teamCdsIds: List, ) } \ No newline at end of file diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/ContestInfo.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/ContestInfo.kt index 27dabb316..7193d7254 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/ContestInfo.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/ContestInfo.kt @@ -111,8 +111,7 @@ public data class ContestInfo( ContestStatus.OVER, ContestStatus.FINALIZED -> contestLength } val groups: Map by lazy { groupList.associateBy { it.id } } - val teams: Map by lazy { teamList.associateBy { it.id } } - val cdsTeams: Map by lazy { teamList.associateBy { it.contestSystemId } } + val teams: Map by lazy { teamList.associateBy { it.id } } val organizations: Map by lazy { organizationList.associateBy { it.id } } val problems: Map by lazy { problemList.associateBy { it.id } } val scoreboardProblems: List by lazy { problemList.sortedBy { it.ordinal }.filterNot { it.isHidden } } diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/MediaType.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/MediaType.kt index 07ca983bc..4a85d1ed7 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/MediaType.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/MediaType.kt @@ -52,7 +52,7 @@ public sealed class MediaType { @Serializable @SerialName("TaskStatus") - public data class TaskStatus(val teamId: Int) : MediaType() { + public data class TaskStatus(val teamId: TeamId) : MediaType() { override val isMedia: Boolean = false } diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/RunInfo.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/RunInfo.kt index 1d4fa06d7..ad453d345 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/RunInfo.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/RunInfo.kt @@ -11,7 +11,7 @@ public data class RunInfo( val id: Int, val result: RunResult, val problemId: ProblemId, - val teamId: Int, + val teamId: TeamId, @Serializable(with = DurationInMillisecondsSerializer::class) val time: Duration, @Required val featuredRunMedia: MediaType? = null, diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Scoreboard.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Scoreboard.kt index 7502d6707..240729f04 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Scoreboard.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/Scoreboard.kt @@ -25,7 +25,7 @@ public sealed class ProblemResult { @Serializable public data class LegacyScoreboardRow( - val teamId: Int, + val teamId: TeamId, val rank: Int, val totalScore: Double, @Serializable(with = DurationInSecondsSerializer::class) @@ -80,14 +80,14 @@ public data class ScoreboardRow( public sealed class Award { public abstract val id: String public abstract val citation: String - public abstract val teams: Set + public abstract val teams: Set @Serializable @SerialName("winner") public data class Winner( override val id: String, override val citation: String, - override val teams: Set, + override val teams: Set, ) : Award() @Serializable @@ -96,7 +96,7 @@ public sealed class Award { override val id: String, override val citation: String, val medalColor: MedalColor?, - override val teams: Set, + override val teams: Set, ) : Award() { public enum class MedalColor { GOLD, SILVER, BRONZE; @@ -109,7 +109,7 @@ public sealed class Award { override val id: String, override val citation: String, val groupId: GroupId, - override val teams: Set, + override val teams: Set, ) : Award() @Serializable @@ -117,7 +117,7 @@ public sealed class Award { public data class Custom( override val id: String, override val citation: String, - override val teams: Set, + override val teams: Set, ) : Award() } @@ -138,8 +138,8 @@ public enum class ScoreboardUpdateType { @Serializable public data class Scoreboard( val type: ScoreboardUpdateType, - val rows: Map, - val order: List, + val rows: Map, + val order: List, val ranks: List, val awards: List, ) \ No newline at end of file diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/TeamInfo.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/TeamInfo.kt index 02fbaceee..3068d1b81 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/api/TeamInfo.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/api/TeamInfo.kt @@ -2,6 +2,12 @@ package org.icpclive.cds.api import kotlinx.serialization.* +@JvmInline +@Serializable +public value class TeamId(public val value: String) { + override fun toString(): String = value +} + @Serializable public enum class TeamMediaType { @SerialName("camera") @@ -25,10 +31,9 @@ public enum class TeamMediaType { @Serializable public data class TeamInfo( - val id: Int, + val id: TeamId, @SerialName("name") val fullName: String, @SerialName("shortName") val displayName: String, - val contestSystemId: String, val groups: List, val hashTag: String?, val medias: Map, diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/scoreboard/AbstractScoreboardCalculator.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/scoreboard/AbstractScoreboardCalculator.kt index b542b9411..ce6d7e102 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/scoreboard/AbstractScoreboardCalculator.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/scoreboard/AbstractScoreboardCalculator.kt @@ -11,14 +11,14 @@ import org.icpclive.util.getLogger import kotlin.time.Duration public class Ranking internal constructor( - public val order: List, + public val order: List, public val ranks: List, public val awards: List, ) public interface ScoreboardCalculator { public fun getScoreboardRow(info: ContestInfo, runs: List): ScoreboardRow - public fun getRanking(info: ContestInfo, rows: Map): Ranking + public fun getRanking(info: ContestInfo, rows: Map): Ranking } private fun ordinalText(x: Int) = if (x in 11..13) { @@ -39,8 +39,8 @@ internal abstract class AbstractScoreboardCalculator : ScoreboardCalculator { abstract val comparator: Comparator @OptIn(InefficientContestInfoApi::class) - override fun getRanking(info: ContestInfo, rows: Map): Ranking { - val comparatorWithName = compareBy(comparator) { it: Pair -> it.second } + override fun getRanking(info: ContestInfo, rows: Map): Ranking { + val comparatorWithName = compareBy(comparator) { it: Pair -> it.second } .thenBy { info.teams[it.first]!!.displayName } val orderList = info.teamList .filterNot { it.isHidden } @@ -127,7 +127,7 @@ internal abstract class AbstractScoreboardCalculator : ScoreboardCalculator { Award.Custom( manual.id, manual.citation, - manual.teamCdsIds.mapNotNull { info.cdsTeams[it]?.id }.toSet() + manual.teamCdsIds.toSet() ) ) } @@ -172,18 +172,18 @@ public fun Scoreboard.toLegacyScoreboard(info: ContestInfo): LegacyScoreboard = private class RedoTask( val info: ContestInfo, val mode: ScoreboardUpdateType, - val runs: PersistentMap>, + val runs: PersistentMap>, val lastSubmissionTime: Duration, ) private fun Flow.teamRunsUpdates() = flow { var curInfo: ContestInfo? = null - var curRuns = persistentMapOf>() + var curRuns = persistentMapOf>() var lastSubmissionTime = Duration.ZERO - val oldKey = mutableMapOf() + val oldKey = mutableMapOf() collect { update -> - suspend fun updateGroup(key: Int) { + suspend fun updateGroup(key: TeamId) { val info = curInfo ?: return emit( RedoTask( @@ -254,7 +254,7 @@ public fun Flow.calculateScoreboard(optimismLevel: OptimismLevel) } } - var rows = persistentMapOf() + var rows = persistentMapOf() val logger = getLogger(AbstractScoreboardCalculator::class) while (true) { val task = s.getAndUpdate { null } ?: s.filterNotNull().first().let { s.getAndUpdate { null }!! } @@ -264,7 +264,7 @@ public fun Flow.calculateScoreboard(optimismLevel: OptimismLevel) ScoreboardUpdateType.DIFF -> task.runs ScoreboardUpdateType.SNAPSHOT -> task.info.teams }.keys.filterNot { task.info.teams[it]!!.isHidden } - val upd = teams.associateWithTo(persistentMapOf().builder()) { + val upd = teams.associateWithTo(persistentMapOf().builder()) { calculator.getScoreboardRow( task.info, task.runs[it] ?: emptyList() diff --git a/src/cds/core/src/main/kotlin/org/icpclive/cds/tunning/Advanced.kt b/src/cds/core/src/main/kotlin/org/icpclive/cds/tunning/Advanced.kt index 4dfc2fe49..47eac379a 100644 --- a/src/cds/core/src/main/kotlin/org/icpclive/cds/tunning/Advanced.kt +++ b/src/cds/core/src/main/kotlin/org/icpclive/cds/tunning/Advanced.kt @@ -152,7 +152,7 @@ public class AdvancedProperties( public val teamOverrideTemplate: TeamOverrideTemplate? = null, public val teamNameRegexes: TeamRegexOverrides? = null, public val teamIdRegexes: TeamRegexOverrides? = null, - public val teamOverrides: Map? = null, + public val teamOverrides: Map? = null, public val groupOverrides: Map? = null, public val organizationOverrides: Map? = null, public val problemOverrides: Map? = null, @@ -216,7 +216,7 @@ public fun ContestInfo.toAdvancedProperties(fields: Set): AdvancedProper freezeTime = freezeTime.takeIfAsked("freezeTime"), holdTime = holdBeforeStartTime?.takeIfAsked("holdBeforeStartTime"), teamOverrides = teamList.associate { - it.contestSystemId to TeamInfoOverride( + it.id to TeamInfoOverride( fullName = it.fullName.takeIfAsked("fullName"), displayName = it.displayName.takeIfAsked("displayName"), groups = it.groups.takeIfAsked("groups"), diff --git a/src/cds/core/src/test/kotlin/ICPCScoreboardTest.kt b/src/cds/core/src/test/kotlin/ICPCScoreboardTest.kt index 232f86e68..e1e104ea8 100644 --- a/src/cds/core/src/test/kotlin/ICPCScoreboardTest.kt +++ b/src/cds/core/src/test/kotlin/ICPCScoreboardTest.kt @@ -21,10 +21,10 @@ class ICPCScoreboardTest { ProblemInfo(problemIdB, "B", "B", 2), ), teamList = listOf( - TeamInfo(1, "T1", "T1", "T1", emptyList(), null, emptyMap(), false, false, null), - TeamInfo(2, "T2", "T2", "T2", emptyList(), null, emptyMap(), false, false, null), - TeamInfo(3, "T3", "T3", "T3", emptyList(), null, emptyMap(), false, false, null), - TeamInfo(4, "T4", "T4", "T4", emptyList(), null, emptyMap(), false, false, null), + TeamInfo(TeamId("T1"), "T1", "T1", emptyList(), null, emptyMap(), false, false, null), + TeamInfo(TeamId("T2"), "T2", "T2", emptyList(), null, emptyMap(), false, false, null), + TeamInfo(TeamId("T3"), "T3", "T3", emptyList(), null, emptyMap(), false, false, null), + TeamInfo(TeamId("T4"), "T4", "T4", emptyList(), null, emptyMap(), false, false, null), ), groupList = emptyList(), organizationList = emptyList(), @@ -34,16 +34,16 @@ class ICPCScoreboardTest { @Test fun testRanks() { val runs = listOf( - RunInfo(1, RunResult.ICPC(Verdict.Accepted, false), problemIdA, 4, 10.minutes), - RunInfo(3, RunResult.ICPC(Verdict.Accepted, false), problemIdA, 1, 30.minutes), - RunInfo(4, RunResult.ICPC(Verdict.Accepted, false), problemIdA, 3, 30.minutes), - RunInfo(5, RunResult.ICPC(Verdict.Accepted, false), problemIdA, 2, 40.minutes), + RunInfo(1, RunResult.ICPC(Verdict.Accepted, false), problemIdA, TeamId("T4"), 10.minutes), + RunInfo(3, RunResult.ICPC(Verdict.Accepted, false), problemIdA, TeamId("T1"), 30.minutes), + RunInfo(4, RunResult.ICPC(Verdict.Accepted, false), problemIdA, TeamId("T3"), 30.minutes), + RunInfo(5, RunResult.ICPC(Verdict.Accepted, false), problemIdA, TeamId("T2"), 40.minutes), ) val calculator = getScoreboardCalculator(info, OptimismLevel.NORMAL) val scoreboardRows = runs.groupBy { it.teamId }.mapValues { calculator.getScoreboardRow(info, it.value) } val ranking = calculator.getRanking(info, scoreboardRows) assertEquals(ranking.ranks, listOf(1, 2, 2, 4)) - assertEquals(ranking.order, listOf(4, 1, 3, 2)) + assertEquals(ranking.order, listOf(TeamId("T4"), TeamId("T1"), TeamId("T3"), TeamId("T2"))) } } \ No newline at end of file diff --git a/src/cds/plugins/allcups/src/main/kotlin/org/icpclive/cds/plugins/allcups/AllCupsDataSource.kt b/src/cds/plugins/allcups/src/main/kotlin/org/icpclive/cds/plugins/allcups/AllCupsDataSource.kt index c08bdd422..e2716c3ed 100644 --- a/src/cds/plugins/allcups/src/main/kotlin/org/icpclive/cds/plugins/allcups/AllCupsDataSource.kt +++ b/src/cds/plugins/allcups/src/main/kotlin/org/icpclive/cds/plugins/allcups/AllCupsDataSource.kt @@ -58,7 +58,7 @@ internal class AllCupsDataSource(val settings: AllCupsSettings) : FullReloadCont id = id, result = code.toVerdict().toICPCRunResult(), problemId = ProblemId(task_id.toString()), - teamId = user_id, + teamId = TeamId(user_id.toString()), time = elapsed_seconds.seconds ) @@ -77,10 +77,9 @@ internal class AllCupsDataSource(val settings: AllCupsSettings) : FullReloadCont organizationList = emptyList(), teamList = settings.teamIds.map { TeamInfo( - id = it, + id = TeamId(it.toString()), displayName = "", fullName = "", - contestSystemId = it.toString(), groups = emptyList(), hashTag = null, medias = emptyMap(), diff --git a/src/cds/plugins/atcoder/src/main/kotlin/org/icpclive/cds/plugins/atcoder/AtcoderDataSource.kt b/src/cds/plugins/atcoder/src/main/kotlin/org/icpclive/cds/plugins/atcoder/AtcoderDataSource.kt index d9263e4e2..14eaa2d77 100644 --- a/src/cds/plugins/atcoder/src/main/kotlin/org/icpclive/cds/plugins/atcoder/AtcoderDataSource.kt +++ b/src/cds/plugins/atcoder/src/main/kotlin/org/icpclive/cds/plugins/atcoder/AtcoderDataSource.kt @@ -63,16 +63,16 @@ internal class AtcoderDataSource(val settings: AtcoderSettings) : FullReloadCont } private var submissionId: Int = 1 - val runs = mutableMapOf, List>() + val runs = mutableMapOf, List>() - private fun addNewRuns(teamId: Int, problemId: String, result: AtcoderTaskResult): List { + private fun addNewRuns(teamId: TeamId, problemId: ProblemId, result: AtcoderTaskResult): List { val oldRuns = (runs[teamId to problemId] ?: emptyList()).toMutableList() repeat(result.Count - oldRuns.size) { oldRuns.add( RunInfo( id = submissionId++, result = RunResult.InProgress(0.0), - problemId = ProblemId(problemId), + problemId = problemId, teamId = teamId, time = minOf(settings.contestLength, Clock.System.now() - settings.startTime) ) @@ -112,10 +112,9 @@ internal class AtcoderDataSource(val settings: AtcoderSettings) : FullReloadCont } val teams = data.StandingsData.map { TeamInfo( - id = teamIds[it.UserScreenName], + id = TeamId(it.UserScreenName), fullName = it.UserScreenName, displayName = it.UserScreenName, - contestSystemId = it.UserScreenName, groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -123,7 +122,7 @@ internal class AtcoderDataSource(val settings: AtcoderSettings) : FullReloadCont isOutOfContest = false, organizationId = null, ) - }.sortedBy { it.id } + }.sortedBy { it.id.value } val info = ContestInfo( name = "", @@ -141,9 +140,9 @@ internal class AtcoderDataSource(val settings: AtcoderSettings) : FullReloadCont ) val newRuns = buildList { for (teamResult in data.StandingsData) { - val teamId = teamIds[teamResult.UserScreenName] + val teamId = TeamId(teamResult.UserScreenName) for ((problemId, problemResult) in teamResult.TaskResults) { - runs[teamId to problemId] = addNewRuns(teamId, problemId, problemResult).also { + runs[teamId to ProblemId(problemId)] = addNewRuns(teamId, ProblemId(problemId), problemResult).also { addAll(it) } } diff --git a/src/cds/plugins/cats/src/main/kotlin/org/icpclive/cds/plugins/cats/CATSDataSource.kt b/src/cds/plugins/cats/src/main/kotlin/org/icpclive/cds/plugins/cats/CATSDataSource.kt index e07aa8266..fb0082fd8 100644 --- a/src/cds/plugins/cats/src/main/kotlin/org/icpclive/cds/plugins/cats/CATSDataSource.kt +++ b/src/cds/plugins/cats/src/main/kotlin/org/icpclive/cds/plugins/cats/CATSDataSource.kt @@ -170,10 +170,9 @@ internal class CATSDataSource(val settings: CatsSettings) : FullReloadContestDat .filter { team -> team.role == "in_contest" } .map { team -> TeamInfo( - id = team.account_id, + id = TeamId(team.account_id.toString()), fullName = team.name, displayName = team.name, - contestSystemId = team.account_id.toString(), groups = emptyList(), hashTag = null, medias = mapOf(), @@ -223,7 +222,7 @@ internal class CATSDataSource(val settings: CatsSettings) : FullReloadContestDat id = it.id, result = result, problemId = ProblemId(it.problem_id.toString()), - teamId = it.team_id, + teamId = TeamId(it.team_id.toString()), time = it.submit_time - startTime ) } diff --git a/src/cds/plugins/clics/src/main/kotlin/org/icpclive/cds/plugins/clics/ClicsModel.kt b/src/cds/plugins/clics/src/main/kotlin/org/icpclive/cds/plugins/clics/ClicsModel.kt index 348c190e5..079ca093c 100644 --- a/src/cds/plugins/clics/src/main/kotlin/org/icpclive/cds/plugins/clics/ClicsModel.kt +++ b/src/cds/plugins/clics/src/main/kotlin/org/icpclive/cds/plugins/clics/ClicsModel.kt @@ -16,7 +16,6 @@ internal class ClicsModel(private val addTeamNames: Boolean) { private val organisations = mutableMapOf() private val teams = mutableMapOf() private val submissionToId = Enumerator() - private val teamToId = Enumerator() private val submissions = mutableMapOf() private val submissionJudgmentIds = mutableMapOf>() private val judgements = mutableMapOf() @@ -58,10 +57,9 @@ internal class ClicsModel(private val addTeamNames: Boolean) { private fun Team.toApi(): TeamInfo { val teamOrganization = organization_id?.let { organisations[it] } return TeamInfo( - id = teamToId[id], + id = TeamId(id), fullName = teamName(teamOrganization?.formalName, name), displayName = teamName(teamOrganization?.name, name), - contestSystemId = id, isHidden = hidden, groups = buildList { for (group in group_ids) { @@ -107,7 +105,7 @@ internal class ClicsModel(private val addTeamNames: Boolean) { ).toICPCRunResult() }, problemId = ProblemId(problem_id), - teamId = teamToId[team_id], + teamId = TeamId(team_id), time = contest_time, reactionVideos = reaction?.mapNotNull { it.mediaType() } ?: emptyList(), ) @@ -257,7 +255,7 @@ internal class ClicsModel(private val addTeamNames: Boolean) { commentary.message, commentary.time, commentary.contest_time, - commentary.team_ids?.map { teamToId[it] } ?: emptyList(), + commentary.team_ids?.map { TeamId(it) } ?: emptyList(), commentary.submission_ids?.map { submissionToId[it] } ?: emptyList(), ) diff --git a/src/cds/plugins/cms/src/main/kotlin/org/icpclive/cds/plugins/cms/CmsDataSoruce.kt b/src/cds/plugins/cms/src/main/kotlin/org/icpclive/cds/plugins/cms/CmsDataSoruce.kt index 51dbdef96..c04841a57 100644 --- a/src/cds/plugins/cms/src/main/kotlin/org/icpclive/cds/plugins/cms/CmsDataSoruce.kt +++ b/src/cds/plugins/cms/src/main/kotlin/org/icpclive/cds/plugins/cms/CmsDataSoruce.kt @@ -26,7 +26,6 @@ internal class CmsDataSource(val settings: CmsSettings) : FullReloadContestDataS private val usersLoader = jsonUrlLoader>(settings.network, null) { "${settings.url}/users/" } private val submissionsLoader = jsonUrlLoader>(settings.network, null) { "${settings.url}/submissions/" } private val subchangesLoader = jsonUrlLoader>(settings.network, null) { "${settings.url}/subchanges/" } - private val teamId = Enumerator() private val submissionId = Enumerator() override suspend fun loadOnce(): ContestParseResult { @@ -72,10 +71,9 @@ internal class CmsDataSource(val settings: CmsSettings) : FullReloadContestDataS } val teams = usersLoader.load().map { (k, v) -> TeamInfo( - id = teamId[k], + id = TeamId(k), fullName = "[${v.team}] ${v.f_name} ${v.l_name}", displayName = "${v.f_name} ${v.l_name}", - contestSystemId = k, groups = emptyList(), hashTag = null, medias = mapOf( @@ -112,7 +110,7 @@ internal class CmsDataSource(val settings: CmsSettings) : FullReloadContestDataS id = submissionId[k], result = RunResult.InProgress(0.0), problemId = ProblemId(v.task), - teamId = teamId[v.user], + teamId = TeamId(v.user), time = if (v.task in runningContestProblems) v.time - mainContest.begin else Duration.ZERO ) }.associateBy { it.id }.toMutableMap() diff --git a/src/cds/plugins/codedrills/src/main/kotlin/org/icpclive/cds/plugins/codedrills/CodeDrillsDataSoruce.kt b/src/cds/plugins/codedrills/src/main/kotlin/org/icpclive/cds/plugins/codedrills/CodeDrillsDataSoruce.kt index 9b262d4ab..2ea9455df 100644 --- a/src/cds/plugins/codedrills/src/main/kotlin/org/icpclive/cds/plugins/codedrills/CodeDrillsDataSoruce.kt +++ b/src/cds/plugins/codedrills/src/main/kotlin/org/icpclive/cds/plugins/codedrills/CodeDrillsDataSoruce.kt @@ -107,8 +107,7 @@ internal class CodeDrillsDataSource(val settings: CodeDrillsSettings) : FullRelo val teams = scoreboard.scoreboard.rowList.map { val team = it.team TeamInfo( - id = team.id, - contestSystemId = team.id.toString(), + id = TeamId(team.id.toString()), fullName = team.name, displayName = team.name, groups = emptyList(), @@ -122,7 +121,7 @@ internal class CodeDrillsDataSource(val settings: CodeDrillsSettings) : FullRelo val memberIdToTeam = scoreboard.scoreboard.rowList .map { it.team } - .flatMap { it.memberList.map { member -> member.id to it.id } } + .flatMap { it.memberList.map { member -> member.id to TeamId(it.id.toString()) } } .toMap() val startTime = Instant.fromEpochMilliseconds(contest.startTimeMilliSeconds) diff --git a/src/cds/plugins/codeforces/src/main/kotlin/org/icpclive/cds/plugins/codeforces/CFContestInfo.kt b/src/cds/plugins/codeforces/src/main/kotlin/org/icpclive/cds/plugins/codeforces/CFContestInfo.kt index d61ca85ea..e2bf516f6 100644 --- a/src/cds/plugins/codeforces/src/main/kotlin/org/icpclive/cds/plugins/codeforces/CFContestInfo.kt +++ b/src/cds/plugins/codeforces/src/main/kotlin/org/icpclive/cds/plugins/codeforces/CFContestInfo.kt @@ -20,7 +20,6 @@ internal class CFContestInfo { private var cfStandings: CFStandings? = null private val problemsMap = mutableMapOf() private val participantsByCdsId = mutableMapOf() - private var nextParticipantId = 1 private var contestType: CFContestType = CFContestType.ICPC private var name: String = "" @@ -74,13 +73,11 @@ internal class CFContestInfo { } for (row in standings.rows) { val cdsId = getTeamCdsId(row.party) - val id = participantsByCdsId[cdsId]?.id ?: nextParticipantId++ val party = row.party participantsByCdsId[cdsId] = TeamInfo( - id = id, + id = TeamId(cdsId), fullName = party.teamName ?: party.members[0].let { it.name ?: it.handle }, displayName = party.teamName ?: party.members[0].let { it.name ?: it.handle }, - contestSystemId = cdsId, groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -262,7 +259,7 @@ internal class CFContestInfo { contestLength = contestLength, freezeTime = contestLength, problemList = problems, - teamList = participantsByCdsId.values.sortedBy { it.id }, + teamList = participantsByCdsId.values.sortedBy { it.id.value }, groupList = emptyList(), penaltyRoundingMode = when (contestType) { CFContestType.CF -> PenaltyRoundingMode.ZERO diff --git a/src/cds/plugins/ejudge/src/main/kotlin/org/icpclive/cds/plugins/ejudge/EjudgeDataSource.kt b/src/cds/plugins/ejudge/src/main/kotlin/org/icpclive/cds/plugins/ejudge/EjudgeDataSource.kt index c37431bdd..6b07b82c6 100644 --- a/src/cds/plugins/ejudge/src/main/kotlin/org/icpclive/cds/plugins/ejudge/EjudgeDataSource.kt +++ b/src/cds/plugins/ejudge/src/main/kotlin/org/icpclive/cds/plugins/ejudge/EjudgeDataSource.kt @@ -55,10 +55,9 @@ internal class EjudgeDataSource(val settings: EjudgeSettings) : FullReloadContes .children().mapIndexed { index, participant -> val participantName = participant.getAttribute("name") TeamInfo( - id = index, + id = TeamId(participant.getAttribute("id")), fullName = participantName, displayName = participantName, - contestSystemId = participant.getAttribute("id"), groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -94,7 +93,6 @@ internal class EjudgeDataSource(val settings: EjudgeSettings) : FullReloadContes } val teams = parseTeamsInfo(element) - val teamIdMapping = teams.associateBy({ it.contestSystemId }, { it.id }) val problems = parseProblemsInfo(element) return ContestParseResult( @@ -115,7 +113,7 @@ internal class EjudgeDataSource(val settings: EjudgeSettings) : FullReloadContes } ), runs = element.child("runs").children().mapNotNull { run -> - parseRunInfo(run, currentTime - startTime, teamIdMapping, settings.problemScoreLimit) + parseRunInfo(run, currentTime - startTime, settings.problemScoreLimit) }.toList(), emptyList(), ) @@ -124,7 +122,6 @@ internal class EjudgeDataSource(val settings: EjudgeSettings) : FullReloadContes private fun parseRunInfo( element: Element, currentTime: Duration, - teamIdMapping: Map, problemScoreLimit: Map, ): RunInfo? { val time = element.getAttribute("time").toLong().seconds + element.getAttribute("nsec").toLong().nanoseconds @@ -132,7 +129,7 @@ internal class EjudgeDataSource(val settings: EjudgeSettings) : FullReloadContes return null } - val teamId = teamIdMapping[element.getAttribute("user_id")]!! + val teamId = TeamId(element.getAttribute("user_id")) val runId = runsIds[element.getAttribute("run_id")] val result = when (element.getAttribute("status")) { diff --git a/src/cds/plugins/eolymp/src/main/kotlin/org/icpclive/cds/plugins/eolymp/EOlympDataSource.kt b/src/cds/plugins/eolymp/src/main/kotlin/org/icpclive/cds/plugins/eolymp/EOlympDataSource.kt index 013c1801c..0eb24267a 100644 --- a/src/cds/plugins/eolymp/src/main/kotlin/org/icpclive/cds/plugins/eolymp/EOlympDataSource.kt +++ b/src/cds/plugins/eolymp/src/main/kotlin/org/icpclive/cds/plugins/eolymp/EOlympDataSource.kt @@ -113,7 +113,6 @@ internal class EOlympDataSource(val settings: EOlympSettings) : FullReloadContes .withResolverStyle(ResolverStyle.STRICT) .withChronology(IsoChronology.INSTANCE) - private val teamIds = Enumerator() private val runIds = Enumerator() private var previousDays: List = emptyList() @@ -167,10 +166,9 @@ internal class EOlympDataSource(val settings: EOlympSettings) : FullReloadContes ) addAll(x.participants!!.nodes.map { TeamInfo( - id = teamIds[it.id], + id = TeamId(it.id), fullName = it.name, displayName = it.name, - contestSystemId = it.id, groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -229,7 +227,7 @@ internal class EOlympDataSource(val settings: EOlympSettings) : FullReloadContes ContestResultType.IOI -> RunResult.IOI(it.groups.map { it.score }).takeIf { verdict != null } } ?: RunResult.InProgress(0.0), problemId = ProblemId(it.problem!!.id), - teamId = teamIds[it.participant!!.id], + teamId = TeamId(it.participant!!.id), time = parseTime(it.submittedAt) - contestInfo.startTime, isHidden = it.deleted ) diff --git a/src/cds/plugins/krsu/src/main/kotlin/org/icpclive/cds/plugins/krsu/KRSUDataSource.kt b/src/cds/plugins/krsu/src/main/kotlin/org/icpclive/cds/plugins/krsu/KRSUDataSource.kt index f07d5b71f..f39c2c560 100644 --- a/src/cds/plugins/krsu/src/main/kotlin/org/icpclive/cds/plugins/krsu/KRSUDataSource.kt +++ b/src/cds/plugins/krsu/src/main/kotlin/org/icpclive/cds/plugins/krsu/KRSUDataSource.kt @@ -45,10 +45,9 @@ internal class KRSUDataSource(val settings: KRSUSettings) : FullReloadContestDat if (!teams.contains(submission.Login)) { teams[submission.Login] = TeamInfo( - id = lastTeamId++, + id = TeamId(submission.Login), fullName = submission.AuthorName, displayName = submission.AuthorName, - contestSystemId = submission.Login, groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -66,7 +65,7 @@ internal class KRSUDataSource(val settings: KRSUSettings) : FullReloadContestDat id = it.Id, result?.toICPCRunResult() ?: RunResult.InProgress(0.0), problemId = ProblemId(it.Problem.toString()), - teamId = teams[it.Login]?.id ?: -1, + teamId = TeamId(it.Login), time = (it.ReceivedTime.toInstant(settings.timeZone)) - startTime, ) }.toList() diff --git a/src/cds/plugins/nsu/src/main/kotlin/org/icpclive/cds/plugins/nsu/NSUDataSource.kt b/src/cds/plugins/nsu/src/main/kotlin/org/icpclive/cds/plugins/nsu/NSUDataSource.kt index 8bdabae23..bbfd502de 100644 --- a/src/cds/plugins/nsu/src/main/kotlin/org/icpclive/cds/plugins/nsu/NSUDataSource.kt +++ b/src/cds/plugins/nsu/src/main/kotlin/org/icpclive/cds/plugins/nsu/NSUDataSource.kt @@ -99,10 +99,9 @@ internal class NSUDataSource(val settings: NSUSettings) : FullReloadContestDataS val teamList: List = teams.map { TeamInfo( - id = it.id, + id = TeamId(it.id.toString()), fullName = it.title, displayName = it.title, - contestSystemId = it.id.toString(), groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -110,7 +109,7 @@ internal class NSUDataSource(val settings: NSUSettings) : FullReloadContestDataS isOutOfContest = false, organizationId = null, ) - }.sortedBy { it.id } + }.sortedBy { it.id.value } val problemsList: List = tasks.mapIndexed { index, it -> @@ -159,7 +158,7 @@ internal class NSUDataSource(val settings: NSUSettings) : FullReloadContestDataS id = it.id, result = getRunResult(it.res, it.status) ?: RunResult.InProgress(0.0), problemId = ProblemId(it.taskId.toString()), - teamId = it.teamId, + teamId = TeamId(it.teamId.toString()), time = parseNSUTime(it.smtime) - startTime ) } diff --git a/src/cds/plugins/pcms/src/main/kotlin/org/icpclive/cds/plugins/pcms/PCMSDataSource.kt b/src/cds/plugins/pcms/src/main/kotlin/org/icpclive/cds/plugins/pcms/PCMSDataSource.kt index 67b1b2326..3602131d8 100644 --- a/src/cds/plugins/pcms/src/main/kotlin/org/icpclive/cds/plugins/pcms/PCMSDataSource.kt +++ b/src/cds/plugins/pcms/src/main/kotlin/org/icpclive/cds/plugins/pcms/PCMSDataSource.kt @@ -42,7 +42,6 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat private val resultType = settings.resultType private val runIds = Enumerator() - private val teamIds = Enumerator() private var startTime = Instant.fromEpochMilliseconds(0) override suspend fun loadOnce(): ContestParseResult { @@ -91,7 +90,7 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat if (status == ContestStatus.RUNNING) { logger.info("Loaded contestInfo for time = $contestTime") } - val teams = teamsAndRuns.map { it.first }.sortedBy { it.id } + val teams = teamsAndRuns.map { it.first }.sortedBy { it.id.value } return ContestParseResult( ContestInfo( name = element.getAttribute("name"), @@ -118,7 +117,7 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat fun attr(name: String) = element.getAttribute(name).takeIf { it.isNotEmpty() } val alias = attr("alias")!! val team = TeamInfo( - id = teamIds[alias], + id = TeamId(alias), fullName = attr("party")!!, displayName = attr("shortname") ?: attr("party")!!, hashTag = attr("hashtag"), @@ -128,7 +127,6 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat attr("camera")?.let { TeamMediaType.CAMERA to MediaType.Video(it) }, attr("record")?.let { TeamMediaType.RECORD to MediaType.Video(it) }, ).associate { it }, - contestSystemId = alias, isOutOfContest = false, isHidden = false, organizationId = null @@ -138,7 +136,7 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat parseProblemRuns( problem, team.id, - problem.getAttribute("alias"), + ProblemId(problem.getAttribute("alias")), contestTime ) }.toList() @@ -147,8 +145,8 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat private fun parseProblemRuns( element: Element, - teamId: Int, - problemId: String, + teamId: TeamId, + problemId: ProblemId, contestTime: Duration, ): Sequence { return element.children() @@ -158,8 +156,8 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat private fun parseRunInfo( element: Element, - teamId: Int, - problemId: String, + teamId: TeamId, + problemId: ProblemId, index: Int ): RunInfo { val time = element.getAttribute("time").toLong().milliseconds @@ -189,7 +187,7 @@ internal class PCMSDataSource(val settings: PCMSSettings) : FullReloadContestDat verdict?.toICPCRunResult() } } ?: RunResult.InProgress(0.0), - problemId = ProblemId(problemId), + problemId = problemId, teamId = teamId, time = time, ) diff --git a/src/cds/plugins/testsys/src/main/kotlin/org/icpclive/cds/plugins/testsys/TestSysDataSource.kt b/src/cds/plugins/testsys/src/main/kotlin/org/icpclive/cds/plugins/testsys/TestSysDataSource.kt index e6aa8c24f..ca8df8b8e 100644 --- a/src/cds/plugins/testsys/src/main/kotlin/org/icpclive/cds/plugins/testsys/TestSysDataSource.kt +++ b/src/cds/plugins/testsys/src/main/kotlin/org/icpclive/cds/plugins/testsys/TestSysDataSource.kt @@ -53,10 +53,9 @@ internal class TestSysDataSource(val settings: TestSysSettings) : FullReloadCont val teams = (data["@t"] ?: emptyList()).mapIndexed { index, team -> val (id, _, _, name) = team.splitCommas() TeamInfo( - id = index, + id = TeamId(id), fullName = name, displayName = name, - contestSystemId = id, groups = emptyList(), hashTag = null, medias = emptyMap(), @@ -67,7 +66,6 @@ internal class TestSysDataSource(val settings: TestSysSettings) : FullReloadCont } val isCEPenalty = data["@comment"]?.contains("@pragma IgnoreCE") != true val problems = problemsWithPenalty.map { it.first } - val teamIdMap = teams.associate { it.contestSystemId to it.id } val contestInfo = ContestInfo( name = data["@contest"]!!.single(), status = data["@state"]!!.single().toStatus(), @@ -96,7 +94,7 @@ internal class TestSysDataSource(val settings: TestSysSettings) : FullReloadCont } ).takeIf { verdict != "FZ" }?.toICPCRunResult() ?: RunResult.InProgress(0.0), problemId = ProblemId(problemId), - teamId = teamIdMap[teamId]!!, + teamId = TeamId(teamId), time = time.toInt().seconds, ) } diff --git a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexContestInfo.kt b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexContestInfo.kt index d6cafc849..f4f5d0cda 100644 --- a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexContestInfo.kt +++ b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexContestInfo.kt @@ -29,7 +29,7 @@ internal class YandexContestInfo( private val duration = contestDescription.duration.seconds private val freezeTime = (contestDescription.freezeTime ?: contestDescription.duration).seconds private val problems = problems.mapIndexed { index, it -> it.toApi(index, resultType) } - private val teams = participants.map { it.toTeamInfo() }.sortedBy { it.id } + private val teams = participants.map { it.toTeamInfo() }.sortedBy { it.id.value } private val teamIds = teams.map(TeamInfo::id).toSet() private val testCountByProblem = problems.map { it.id to it.testCount }.toMap() @@ -60,15 +60,11 @@ internal class YandexContestInfo( id = submission.id.toInt(), result = result, problemId = ProblemId(submission.problemId), - teamId = submission.authorId.toInt(), + teamId = TeamId(submission.authorId.toString()), time = submission.timeFromStart, ) } - fun isTeamSubmission(submission: Submission): Boolean { - return submission.authorId.toInt() in teamIds - } - fun toApi() = ContestInfo( name = name, status = ContestStatus.byCurrentTime(startTime, duration), diff --git a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexDataSource.kt b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexDataSource.kt index 0510357fb..0242677f3 100644 --- a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexDataSource.kt +++ b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/YandexDataSource.kt @@ -97,7 +97,7 @@ internal class YandexDataSource(settings: YandexSettings) : ContestDataSource { val allSubmissions = allSubmissionsLoader.load() with(rawContestInfoFlow.value) { emitAll( - allSubmissions.sortedWith(compareBy({ it.time }, { it.id })).filter(this::isTeamSubmission) + allSubmissions.sortedWith(compareBy({ it.time }, { it.id })) .map { RunUpdate(submissionToRun(it)) } .asFlow() ) @@ -114,7 +114,7 @@ internal class YandexDataSource(settings: YandexSettings) : ContestDataSource { .flowOn(Dispatchers.IO) val allRunsFlow = merge(allSubmissionsFlow, newSubmissionsFlow).map { with(rawContestInfoFlow.value) { - it.sortedWith(compareBy({ it.time }, { it.id })).filter(this::isTeamSubmission) + it.sortedWith(compareBy({ it.time }, { it.id })) .map { RunUpdate(submissionToRun(it)) } } }.flatMapConcat { it.asFlow() } diff --git a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/api/Participant.kt b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/api/Participant.kt index 2c61b4f51..41a9c70a8 100644 --- a/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/api/Participant.kt +++ b/src/cds/plugins/yandex/src/main/kotlin/org/icpclive/cds/plugins/yandex/api/Participant.kt @@ -1,6 +1,7 @@ package org.icpclive.cds.plugins.yandex.api import kotlinx.serialization.Serializable +import org.icpclive.cds.api.TeamId import org.icpclive.cds.api.TeamInfo @Serializable @@ -11,10 +12,9 @@ internal data class Participant( val uid: String?, ) { fun toTeamInfo() = TeamInfo( - id = id, + id = TeamId(login), fullName = name, displayName = name, - contestSystemId = login, groups = emptyList(), hashTag = null, medias = emptyMap(), diff --git a/src/cds/tests/src/main/kotlin/org/icpclive/cds/CdsLoadersTest.kt b/src/cds/tests/src/main/kotlin/org/icpclive/cds/CdsLoadersTest.kt index 33a4251cf..93608fe3a 100644 --- a/src/cds/tests/src/main/kotlin/org/icpclive/cds/CdsLoadersTest.kt +++ b/src/cds/tests/src/main/kotlin/org/icpclive/cds/CdsLoadersTest.kt @@ -23,7 +23,7 @@ abstract class CdsLoadersTest { .relativeTo(Path.of("").absolute()) protected val goldenDataDir: Path = testDataDir.resolve("goldenData") - private val updateTestData = true + private val updateTestData = false private val json = Json { diff --git a/src/cds/tests/testData/loaders/goldenData/clics202003.txt b/src/cds/tests/testData/loaders/goldenData/clics202003.txt index b846b6883..cb4167007 100644 --- a/src/cds/tests/testData/loaders/goldenData/clics202003.txt +++ b/src/cds/tests/testData/loaders/goldenData/clics202003.txt @@ -190,10 +190,9 @@ ], "teams": [ { - "id": 96, + "id": "1", "name": "Ain Shams University - Faculty of Computer and Information Sciences: Ain Shams University - Faculty of Computer and Information Sciences", "shortName": "ASU-FCIS: Ain Shams University - Faculty of Computer and Information Sciences", - "contestSystemId": "1", "groups": [ "15708" ], @@ -212,10 +211,9 @@ } }, { - "id": 29, + "id": "10", "name": "Belarusian State University: Belarusian State University", "shortName": "Belarusian SU: Belarusian State University", - "contestSystemId": "10", "groups": [ "15692" ], @@ -234,10 +232,9 @@ } }, { - "id": 70, + "id": "100", "name": "University of Aizu: University of Aizu", "shortName": "U Aizu: University of Aizu", - "contestSystemId": "100", "groups": [ "15709" ], @@ -251,10 +248,9 @@ } }, { - "id": 2, + "id": "101", "name": "University of British Columbia: University of British Columbia", "shortName": "U British Columbia: University of British Columbia", - "contestSystemId": "101", "groups": [ "15689" ], @@ -273,10 +269,9 @@ } }, { - "id": 1, + "id": "102", "name": "University of Bucharest: University of Bucharest", "shortName": "UniBuc: University of Bucharest", - "contestSystemId": "102", "groups": [ "15705" ], @@ -295,10 +290,9 @@ } }, { - "id": 22, + "id": "103", "name": "University of Cambridge: University of Cambridge", "shortName": "Cambridge: University of Cambridge", - "contestSystemId": "103", "groups": [ "15705" ], @@ -317,10 +311,9 @@ } }, { - "id": 21, + "id": "104", "name": "University of Central Florida: University of Central Florida", "shortName": "U Central Florida: University of Central Florida", - "contestSystemId": "104", "groups": [ "15689" ], @@ -339,10 +332,9 @@ } }, { - "id": 71, + "id": "105", "name": "University of Dhaka: University of Dhaka", "shortName": "U Dhaka: University of Dhaka", - "contestSystemId": "105", "groups": [ "15693" ], @@ -361,10 +353,9 @@ } }, { - "id": 48, + "id": "106", "name": "University of Illinois at Urbana-Champaign: University of Illinois at Urbana-Champaign", "shortName": "U Illinois at U-C: University of Illinois at Urbana-Champaign", - "contestSystemId": "106", "groups": [ "15689" ], @@ -383,10 +374,9 @@ } }, { - "id": 68, + "id": "107", "name": "University of Latvia: University of Latvia", "shortName": "Latvia: University of Latvia", - "contestSystemId": "107", "groups": [ "15692" ], @@ -405,10 +395,9 @@ } }, { - "id": 23, + "id": "108", "name": "University of Rochester: University of Rochester", "shortName": "U Rochester: University of Rochester", - "contestSystemId": "108", "groups": [ "15689" ], @@ -427,10 +416,9 @@ } }, { - "id": 16, + "id": "109", "name": "University of Southern California: University of Southern California", "shortName": "USC: University of Southern California", - "contestSystemId": "109", "groups": [ "15689" ], @@ -449,10 +437,9 @@ } }, { - "id": 50, + "id": "11", "name": "Belarusian State University of Informatics and Radioelectronics: Belarusian State University of Informatics and Radioelectronics", "shortName": "BSUIR: Belarusian State University of Informatics and Radioelectronics", - "contestSystemId": "11", "groups": [ "15692" ], @@ -471,10 +458,9 @@ } }, { - "id": 106, + "id": "110", "name": "University of Tehran: University of Tehran", "shortName": "UT: University of Tehran", - "contestSystemId": "110", "groups": [ "15693" ], @@ -488,10 +474,9 @@ } }, { - "id": 56, + "id": "111", "name": "University of Utah: University of Utah", "shortName": "Utah: University of Utah", - "contestSystemId": "111", "groups": [ "15689" ], @@ -510,10 +495,9 @@ } }, { - "id": 28, + "id": "112", "name": "University of Warsaw: University of Warsaw", "shortName": "U Warsaw: University of Warsaw", - "contestSystemId": "112", "groups": [ "15705" ], @@ -532,10 +516,9 @@ } }, { - "id": 38, + "id": "113", "name": "University of Wisconsin - Madison: University of Wisconsin - Madison", "shortName": "U Wisconsin - Madison: University of Wisconsin - Madison", - "contestSystemId": "113", "groups": [ "15689" ], @@ -554,10 +537,9 @@ } }, { - "id": 9, + "id": "114", "name": "University of Wroclaw: University of Wroclaw", "shortName": "U Wroclaw: University of Wroclaw", - "contestSystemId": "114", "groups": [ "15705" ], @@ -576,10 +558,9 @@ } }, { - "id": 67, + "id": "115", "name": "Utrecht - Leiden University: Utrecht - Leiden University", "shortName": "Utrecht - Leiden: Utrecht - Leiden University", - "contestSystemId": "115", "groups": [ "15705" ], @@ -598,10 +579,9 @@ } }, { - "id": 53, + "id": "116", "name": "Virginia Tech: Virginia Tech", "shortName": "Virginia Tech: Virginia Tech", - "contestSystemId": "116", "groups": [ "15689" ], @@ -620,10 +600,9 @@ } }, { - "id": 66, + "id": "117", "name": "Volgograd State Technical University: Volgograd State Technical University", "shortName": "Volgograd STU: Volgograd State Technical University", - "contestSystemId": "117", "groups": [ "15692" ], @@ -642,10 +621,9 @@ } }, { - "id": 82, + "id": "118", "name": "Yerevan State University: Yerevan State University", "shortName": "YSU: Yerevan State University", - "contestSystemId": "118", "groups": [ "15692" ], @@ -664,10 +642,9 @@ } }, { - "id": 58, + "id": "119", "name": "Yonsei University: Yonsei University", "shortName": "Yonsei U: Yonsei University", - "contestSystemId": "119", "groups": [ "15709" ], @@ -686,10 +663,9 @@ } }, { - "id": 42, + "id": "12", "name": "Bilkent University: Bilkent University", "shortName": "Bilkent U.: Bilkent University", - "contestSystemId": "12", "groups": [ "15705" ], @@ -708,10 +684,9 @@ } }, { - "id": 72, + "id": "13", "name": "BITS-Pilani, Hyderabad Campus: BITS-Pilani, Hyderabad Campus", "shortName": "BPHC: BITS-Pilani, Hyderabad Campus", - "contestSystemId": "13", "groups": [ "15693" ], @@ -730,10 +705,9 @@ } }, { - "id": 112, + "id": "14", "name": "Cairo University - Faculty of Computers and Artificial Intelligence: Cairo University - Faculty of Computers and Artificial Intelligence", "shortName": "CU-FCAI: Cairo University - Faculty of Computers and Artificial Intelligence", - "contestSystemId": "14", "groups": [ "15708" ], @@ -752,10 +726,9 @@ } }, { - "id": 102, + "id": "16", "name": "Damascus University: Damascus University", "shortName": "Damascus U: Damascus University", - "contestSystemId": "16", "groups": [ "15708" ], @@ -774,10 +747,9 @@ } }, { - "id": 99, + "id": "17", "name": "Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar: Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar", "shortName": "DA-IICT: Dhirubhai Ambani Institute of Information and Communication Technology, Gandhinagar", - "contestSystemId": "17", "groups": [ "15693" ], @@ -796,10 +768,9 @@ } }, { - "id": 51, + "id": "18", "name": "Duke University: Duke University", "shortName": "Duke: Duke University", - "contestSystemId": "18", "groups": [ "15689" ], @@ -818,10 +789,9 @@ } }, { - "id": 6, + "id": "19", "name": "École Normale Supérieure de Paris: École Normale Supérieure de Paris", "shortName": "ENS Paris: École Normale Supérieure de Paris", - "contestSystemId": "19", "groups": [ "15705" ], @@ -840,10 +810,9 @@ } }, { - "id": 101, + "id": "2", "name": "Al-Baath University: Al-Baath University", "shortName": "Al-Baath: Al-Baath University", - "contestSystemId": "2", "groups": [ "15708" ], @@ -862,10 +831,9 @@ } }, { - "id": 83, + "id": "20", "name": "Ecole Polytechnique: Ecole Polytechnique", "shortName": "EP: Ecole Polytechnique", - "contestSystemId": "20", "groups": [ "15705" ], @@ -884,10 +852,9 @@ } }, { - "id": 89, + "id": "21", "name": "ETH Zürich: ETH Zürich", "shortName": "ETH Zürich: ETH Zürich", - "contestSystemId": "21", "groups": [ "15705" ], @@ -906,10 +873,9 @@ } }, { - "id": 41, + "id": "22", "name": "Faculty of Computer Science, Belgrade : Faculty of Computer Science, Belgrade ", "shortName": "RAF: Faculty of Computer Science, Belgrade ", - "contestSystemId": "22", "groups": [ "15705" ], @@ -928,10 +894,9 @@ } }, { - "id": 65, + "id": "23", "name": "Free University of Tbilisi: Free University of Tbilisi", "shortName": "Free U of Tbilisi: Free University of Tbilisi", - "contestSystemId": "23", "groups": [ "15692" ], @@ -950,10 +915,9 @@ } }, { - "id": 103, + "id": "24", "name": "German University in Cairo: German University in Cairo", "shortName": "GUC: German University in Cairo", - "contestSystemId": "24", "groups": [ "15708" ], @@ -972,10 +936,9 @@ } }, { - "id": 13, + "id": "25", "name": "Harvard University: Harvard University", "shortName": "Harvard: Harvard University", - "contestSystemId": "25", "groups": [ "15689" ], @@ -994,10 +957,9 @@ } }, { - "id": 88, + "id": "26", "name": "Higher Institute for Applied Sciences and Technology: Higher Institute for Applied Sciences and Technology", "shortName": "HIAST: Higher Institute for Applied Sciences and Technology", - "contestSystemId": "26", "groups": [ "15708" ], @@ -1016,10 +978,9 @@ } }, { - "id": 37, + "id": "27", "name": "Indian Institute of Technology - Bombay: Indian Institute of Technology - Bombay", "shortName": "IIT Bombay: Indian Institute of Technology - Bombay", - "contestSystemId": "27", "groups": [ "15693" ], @@ -1033,10 +994,9 @@ } }, { - "id": 24, + "id": "28", "name": "Indian Institute of Technology - Delhi: Indian Institute of Technology - Delhi", "shortName": "IIT Delhi: Indian Institute of Technology - Delhi", - "contestSystemId": "28", "groups": [ "15693" ], @@ -1055,10 +1015,9 @@ } }, { - "id": 8, + "id": "29", "name": "Indian Institute of Technology - Guwahati: Indian Institute of Technology - Guwahati", "shortName": "IIT Guwahati: Indian Institute of Technology - Guwahati", - "contestSystemId": "29", "groups": [ "15693" ], @@ -1077,10 +1036,9 @@ } }, { - "id": 69, + "id": "3", "name": "Alexandria University - Faculty of Engineering: Alexandria University - Faculty of Engineering", "shortName": "Alex-FE: Alexandria University - Faculty of Engineering", - "contestSystemId": "3", "groups": [ "15708" ], @@ -1099,10 +1057,9 @@ } }, { - "id": 95, + "id": "30", "name": "Indian Institute of Technology - Indore: Indian Institute of Technology - Indore", "shortName": "IIT Indore: Indian Institute of Technology - Indore", - "contestSystemId": "30", "groups": [ "15693" ], @@ -1121,10 +1078,9 @@ } }, { - "id": 60, + "id": "31", "name": "Indian Institute of Technology - Kanpur: Indian Institute of Technology - Kanpur", "shortName": "IIT Kanpur: Indian Institute of Technology - Kanpur", - "contestSystemId": "31", "groups": [ "15693" ], @@ -1143,10 +1099,9 @@ } }, { - "id": 35, + "id": "32", "name": "Indian Institute of Technology - Kharagpur: Indian Institute of Technology - Kharagpur", "shortName": "IIT Kharagpur: Indian Institute of Technology - Kharagpur", - "contestSystemId": "32", "groups": [ "15693" ], @@ -1165,10 +1120,9 @@ } }, { - "id": 31, + "id": "33", "name": "Indian Institute of Technology - Patna: Indian Institute of Technology - Patna", "shortName": "IIT Patna: Indian Institute of Technology - Patna", - "contestSystemId": "33", "groups": [ "15693" ], @@ -1187,10 +1141,9 @@ } }, { - "id": 45, + "id": "34", "name": "Indian Institute of Technology - Roorkee: Indian Institute of Technology - Roorkee", "shortName": "IIT Roorkee: Indian Institute of Technology - Roorkee", - "contestSystemId": "34", "groups": [ "15693" ], @@ -1209,10 +1162,9 @@ } }, { - "id": 90, + "id": "35", "name": "Indian Institute of Technology - Varanasi: Indian Institute of Technology - Varanasi", "shortName": "IITBHU: Indian Institute of Technology - Varanasi", - "contestSystemId": "35", "groups": [ "15693" ], @@ -1231,10 +1183,9 @@ } }, { - "id": 92, + "id": "36", "name": "Indian Institute of Technology (ISM), Dhanbad: Indian Institute of Technology (ISM), Dhanbad", "shortName": "IIT(ISM) Dhanbad: Indian Institute of Technology (ISM), Dhanbad", - "contestSystemId": "36", "groups": [ "15693" ], @@ -1253,10 +1204,9 @@ } }, { - "id": 34, + "id": "37", "name": "Indraprastha Institute of Information Technology: Indraprastha Institute of Information Technology", "shortName": "IIIT DELHI: Indraprastha Institute of Information Technology", - "contestSystemId": "37", "groups": [ "15693" ], @@ -1275,10 +1225,9 @@ } }, { - "id": 86, + "id": "38", "name": "Innopolis University: Innopolis University", "shortName": "Innopolis: Innopolis University", - "contestSystemId": "38", "groups": [ "15692" ], @@ -1297,10 +1246,9 @@ } }, { - "id": 116, + "id": "39", "name": "Institut National des Sciences Appliquées et de Technologie: Institut National des Sciences Appliquées et de Technologie", "shortName": "INSAT: Institut National des Sciences Appliquées et de Technologie", - "contestSystemId": "39", "groups": [ "15708" ], @@ -1319,10 +1267,9 @@ } }, { - "id": 64, + "id": "4", "name": "American University - Central Asia: American University - Central Asia", "shortName": "AUCA: American University - Central Asia", - "contestSystemId": "4", "groups": [ "15692" ], @@ -1341,10 +1288,9 @@ } }, { - "id": 84, + "id": "40", "name": "Institute of Computing - Federal University of Amazonas: Institute of Computing - Federal University of Amazonas", "shortName": "IComp/UFAM: Institute of Computing - Federal University of Amazonas", - "contestSystemId": "40", "groups": [ "15706" ], @@ -1363,10 +1309,9 @@ } }, { - "id": 111, + "id": "41", "name": "Instituto de Informática - UFG: Instituto de Informática - UFG", "shortName": "UFG: Instituto de Informática - UFG", - "contestSystemId": "41", "groups": [ "15706" ], @@ -1385,10 +1330,9 @@ } }, { - "id": 63, + "id": "42", "name": "International Institute of Information Technology - Hyderabad: International Institute of Information Technology - Hyderabad", "shortName": "IIIT Hyderabad: International Institute of Information Technology - Hyderabad", - "contestSystemId": "42", "groups": [ "15693" ], @@ -1407,10 +1351,9 @@ } }, { - "id": 55, + "id": "43", "name": "International IT University: International IT University", "shortName": "IITU: International IT University", - "contestSystemId": "43", "groups": [ "15692" ], @@ -1429,10 +1372,9 @@ } }, { - "id": 62, + "id": "44", "name": "Izhevsk State Technical University: Izhevsk State Technical University", "shortName": "Izhevsk STU: Izhevsk State Technical University", - "contestSystemId": "44", "groups": [ "15692" ], @@ -1451,10 +1393,9 @@ } }, { - "id": 32, + "id": "45", "name": "Jagiellonian University in Krakow: Jagiellonian University in Krakow", "shortName": "Jagiellonian: Jagiellonian University in Krakow", - "contestSystemId": "45", "groups": [ "15705" ], @@ -1473,10 +1414,9 @@ } }, { - "id": 78, + "id": "46", "name": "Kazan (Volga Region) Federal University: Kazan (Volga Region) Federal University", "shortName": "Kazan FU: Kazan (Volga Region) Federal University", - "contestSystemId": "46", "groups": [ "15692" ], @@ -1495,10 +1435,9 @@ } }, { - "id": 10, + "id": "47", "name": "Kharkiv National University of Radio Electronics: Kharkiv National University of Radio Electronics", "shortName": "KhNURE: Kharkiv National University of Radio Electronics", - "contestSystemId": "47", "groups": [ "15705" ], @@ -1517,10 +1456,9 @@ } }, { - "id": 75, + "id": "48", "name": "Korea University: Korea University", "shortName": "Korea U: Korea University", - "contestSystemId": "48", "groups": [ "15709" ], @@ -1539,10 +1477,9 @@ } }, { - "id": 93, + "id": "49", "name": "Kyungpook National University: Kyungpook National University", "shortName": "Kyungpook National U: Kyungpook National University", - "contestSystemId": "49", "groups": [ "15709" ], @@ -1561,10 +1498,9 @@ } }, { - "id": 77, + "id": "5", "name": "American University of Beirut: American University of Beirut", "shortName": "AU Beirut: American University of Beirut", - "contestSystemId": "5", "groups": [ "15708" ], @@ -1583,10 +1519,9 @@ } }, { - "id": 4, + "id": "50", "name": "Massachusetts Institute of Technology: Massachusetts Institute of Technology", "shortName": "MIT: Massachusetts Institute of Technology", - "contestSystemId": "50", "groups": [ "15689" ], @@ -1605,10 +1540,9 @@ } }, { - "id": 57, + "id": "51", "name": "Moscow Aviation Institute: Moscow Aviation Institute", "shortName": "MAI: Moscow Aviation Institute", - "contestSystemId": "51", "groups": [ "15692" ], @@ -1627,10 +1561,9 @@ } }, { - "id": 33, + "id": "52", "name": "Moscow Institute of Physics and Technology: Moscow Institute of Physics and Technology", "shortName": "MIPT: Moscow Institute of Physics and Technology", - "contestSystemId": "52", "groups": [ "15692" ], @@ -1649,10 +1582,9 @@ } }, { - "id": 46, + "id": "53", "name": "Moscow State University: Moscow State University", "shortName": "Moscow SU: Moscow State University", - "contestSystemId": "53", "groups": [ "15692" ], @@ -1671,10 +1603,9 @@ } }, { - "id": 91, + "id": "54", "name": "National Research Nuclear University MEPhI (Moscow Engineering Physics Institute): National Research Nuclear University MEPhI (Moscow Engineering Physics Institute)", "shortName": "MEPhI: National Research Nuclear University MEPhI (Moscow Engineering Physics Institute)", - "contestSystemId": "54", "groups": [ "15692" ], @@ -1693,10 +1624,9 @@ } }, { - "id": 61, + "id": "55", "name": "National Research University Higher School of Economics: National Research University Higher School of Economics", "shortName": "HSE: National Research University Higher School of Economics", - "contestSystemId": "55", "groups": [ "15692" ], @@ -1715,10 +1645,9 @@ } }, { - "id": 12, + "id": "56", "name": "National Taiwan University: National Taiwan University", "shortName": "National Taiwan U: National Taiwan University", - "contestSystemId": "56", "groups": [ "15709" ], @@ -1737,10 +1666,9 @@ } }, { - "id": 105, + "id": "58", "name": "Netaji Subhash University Of Technology: Netaji Subhash University Of Technology", "shortName": "NSUT: Netaji Subhash University Of Technology", - "contestSystemId": "58", "groups": [ "15693" ], @@ -1759,10 +1687,9 @@ } }, { - "id": 17, + "id": "59", "name": "Nizhny Novgorod State University: Nizhny Novgorod State University", "shortName": "UNN: Nizhny Novgorod State University", - "contestSystemId": "59", "groups": [ "15692" ], @@ -1781,10 +1708,9 @@ } }, { - "id": 15, + "id": "6", "name": "Amirkabir University of Technology: Amirkabir University of Technology", "shortName": "Amirkabir UT: Amirkabir University of Technology", - "contestSystemId": "6", "groups": [ "15693" ], @@ -1803,10 +1729,9 @@ } }, { - "id": 14, + "id": "60", "name": "NU-FAST Karachi: NU-FAST Karachi", "shortName": "NU-FAST-KHI: NU-FAST Karachi", - "contestSystemId": "60", "groups": [ "15693" ], @@ -1820,10 +1745,9 @@ } }, { - "id": 85, + "id": "61", "name": "Perm State University: Perm State University", "shortName": "Perm SU: Perm State University", - "contestSystemId": "61", "groups": [ "15692" ], @@ -1842,10 +1766,9 @@ } }, { - "id": 79, + "id": "62", "name": "Princess Sumaya University for Technology: Princess Sumaya University for Technology", "shortName": "PSUT: Princess Sumaya University for Technology", - "contestSystemId": "62", "groups": [ "15708" ], @@ -1864,10 +1787,9 @@ } }, { - "id": 108, + "id": "63", "name": "Purdue University: Purdue University", "shortName": "Purdue: Purdue University", - "contestSystemId": "63", "groups": [ "15689" ], @@ -1886,10 +1808,9 @@ } }, { - "id": 26, + "id": "64", "name": "Saratov State University: Saratov State University", "shortName": "Saratov State U: Saratov State University", - "contestSystemId": "64", "groups": [ "15692" ], @@ -1908,10 +1829,9 @@ } }, { - "id": 7, + "id": "65", "name": "Seoul National University: Seoul National University", "shortName": "Seoul National U: Seoul National University", - "contestSystemId": "65", "groups": [ "15709" ], @@ -1930,10 +1850,9 @@ } }, { - "id": 87, + "id": "66", "name": "Sharif University of Technology: Sharif University of Technology", "shortName": "Sharif UT: Sharif University of Technology", - "contestSystemId": "66", "groups": [ "15693" ], @@ -1952,10 +1871,9 @@ } }, { - "id": 3, + "id": "67", "name": "Sogang University: Sogang University", "shortName": "Sogang U: Sogang University", - "contestSystemId": "67", "groups": [ "15709" ], @@ -1974,10 +1892,9 @@ } }, { - "id": 18, + "id": "68", "name": "St. Petersburg Campus of Higher School of Economics: St. Petersburg Campus of Higher School of Economics", "shortName": "SPb HSE: St. Petersburg Campus of Higher School of Economics", - "contestSystemId": "68", "groups": [ "15692" ], @@ -1996,10 +1913,9 @@ } }, { - "id": 11, + "id": "69", "name": "St. Petersburg ITMO University: St. Petersburg ITMO University", "shortName": "SPb ITMO: St. Petersburg ITMO University", - "contestSystemId": "69", "groups": [ "15692" ], @@ -2018,10 +1934,9 @@ } }, { - "id": 30, + "id": "7", "name": "Arab Academy for Science and Technology - Alexandria: Arab Academy for Science and Technology - Alexandria", "shortName": "AAST-Alex: Arab Academy for Science and Technology - Alexandria", - "contestSystemId": "7", "groups": [ "15708" ], @@ -2040,10 +1955,9 @@ } }, { - "id": 5, + "id": "70", "name": "St. Petersburg State University: St. Petersburg State University", "shortName": "St. Petersburg SU: St. Petersburg State University", - "contestSystemId": "70", "groups": [ "15692" ], @@ -2062,10 +1976,9 @@ } }, { - "id": 59, + "id": "71", "name": "Stanford University: Stanford University", "shortName": "Stanford: Stanford University", - "contestSystemId": "71", "groups": [ "15689" ], @@ -2084,10 +1997,9 @@ } }, { - "id": 44, + "id": "72", "name": "Syrian Virtual University: Syrian Virtual University", "shortName": "SVU: Syrian Virtual University", - "contestSystemId": "72", "groups": [ "15708" ], @@ -2106,10 +2018,9 @@ } }, { - "id": 54, + "id": "73", "name": "Technische Universität München: Technische Universität München", "shortName": "TUM: Technische Universität München", - "contestSystemId": "73", "groups": [ "15705" ], @@ -2128,10 +2039,9 @@ } }, { - "id": 52, + "id": "74", "name": "The University of Asia Pacific: The University of Asia Pacific", "shortName": "UAP: The University of Asia Pacific", - "contestSystemId": "74", "groups": [ "15693" ], @@ -2150,10 +2060,9 @@ } }, { - "id": 109, + "id": "75", "name": "The University of Jordan: The University of Jordan", "shortName": "UJ: The University of Jordan", - "contestSystemId": "75", "groups": [ "15708" ], @@ -2172,10 +2081,9 @@ } }, { - "id": 73, + "id": "76", "name": "The University of Texas at Dallas: The University of Texas at Dallas", "shortName": "UT Dallas: The University of Texas at Dallas", - "contestSystemId": "76", "groups": [ "15689" ], @@ -2194,10 +2102,9 @@ } }, { - "id": 100, + "id": "77", "name": "Tishreen University: Tishreen University", "shortName": "Tishreen: Tishreen University", - "contestSystemId": "77", "groups": [ "15708" ], @@ -2216,10 +2123,9 @@ } }, { - "id": 74, + "id": "78", "name": "Ulsan National Institute of Science and Technology: Ulsan National Institute of Science and Technology", "shortName": "UNIST: Ulsan National Institute of Science and Technology", - "contestSystemId": "78", "groups": [ "15709" ], @@ -2238,10 +2144,9 @@ } }, { - "id": 39, + "id": "79", "name": "Universidad de Buenos Aires - FCEN: Universidad de Buenos Aires - FCEN", "shortName": "UBA - FCEN: Universidad de Buenos Aires - FCEN", - "contestSystemId": "79", "groups": [ "15706" ], @@ -2260,10 +2165,9 @@ } }, { - "id": 117, + "id": "8", "name": "Avicenna University: Avicenna University", "shortName": "AU: Avicenna University", - "contestSystemId": "8", "groups": [ "15693" ], @@ -2282,10 +2186,9 @@ } }, { - "id": 36, + "id": "80", "name": "Universidad de Chile: Universidad de Chile", "shortName": "UChile: Universidad de Chile", - "contestSystemId": "80", "groups": [ "15706" ], @@ -2299,10 +2202,9 @@ } }, { - "id": 110, + "id": "81", "name": "Universidad de Costa Rica: Universidad de Costa Rica", "shortName": "UCR: Universidad de Costa Rica", - "contestSystemId": "81", "groups": [ "15706" ], @@ -2316,10 +2218,9 @@ } }, { - "id": 113, + "id": "82", "name": "Universidad de Guanajuato - DCNE: Universidad de Guanajuato - DCNE", "shortName": "UG-CIMAT: Universidad de Guanajuato - DCNE", - "contestSystemId": "82", "groups": [ "15706" ], @@ -2338,10 +2239,9 @@ } }, { - "id": 80, + "id": "83", "name": "Universidad de La Habana: Universidad de La Habana", "shortName": "UH: Universidad de La Habana", - "contestSystemId": "83", "groups": [ "15706" ], @@ -2360,10 +2260,9 @@ } }, { - "id": 104, + "id": "84", "name": "Universidad de Oriente - Sede Antonio Maceo: Universidad de Oriente - Sede Antonio Maceo", "shortName": "UO-SAM: Universidad de Oriente - Sede Antonio Maceo", - "contestSystemId": "84", "groups": [ "15706" ], @@ -2382,10 +2281,9 @@ } }, { - "id": 115, + "id": "85", "name": "Universidad Icesi: Universidad Icesi", "shortName": "ICESI: Universidad Icesi", - "contestSystemId": "85", "groups": [ "15706" ], @@ -2404,10 +2302,9 @@ } }, { - "id": 81, + "id": "86", "name": "Universidad Nacional de Colombia - Bogotá: Universidad Nacional de Colombia - Bogotá", "shortName": "UNAL Bogotá: Universidad Nacional de Colombia - Bogotá", - "contestSystemId": "86", "groups": [ "15706" ], @@ -2426,10 +2323,9 @@ } }, { - "id": 40, + "id": "87", "name": "Universidad Nacional de Córdoba - FaMAF: Universidad Nacional de Córdoba - FaMAF", "shortName": "FAMAF - UNC: Universidad Nacional de Córdoba - FaMAF", - "contestSystemId": "87", "groups": [ "15706" ], @@ -2448,10 +2344,9 @@ } }, { - "id": 114, + "id": "88", "name": "Universidad Nacional del Sur: Universidad Nacional del Sur", "shortName": "UN del Sur: Universidad Nacional del Sur", - "contestSystemId": "88", "groups": [ "15706" ], @@ -2470,10 +2365,9 @@ } }, { - "id": 107, + "id": "89", "name": "Universidad Panamericana Campus Bonaterra: Universidad Panamericana Campus Bonaterra", "shortName": "UP Bonaterra: Universidad Panamericana Campus Bonaterra", - "contestSystemId": "89", "groups": [ "15706" ], @@ -2492,10 +2386,9 @@ } }, { - "id": 76, + "id": "9", "name": "Bangladesh University of Engineering and Technology: Bangladesh University of Engineering and Technology", "shortName": "BUET: Bangladesh University of Engineering and Technology", - "contestSystemId": "9", "groups": [ "15693" ], @@ -2509,10 +2402,9 @@ } }, { - "id": 98, + "id": "90", "name": "Universidad Simón Bolívar: Universidad Simón Bolívar", "shortName": "USB: Universidad Simón Bolívar", - "contestSystemId": "90", "groups": [ "15706" ], @@ -2526,10 +2418,9 @@ } }, { - "id": 19, + "id": "91", "name": "Universidade de Brasília: Universidade de Brasília", "shortName": "UnB: Universidade de Brasília", - "contestSystemId": "91", "groups": [ "15706" ], @@ -2548,10 +2439,9 @@ } }, { - "id": 43, + "id": "92", "name": "Universidade de São Paulo: Universidade de São Paulo", "shortName": "USP: Universidade de São Paulo", - "contestSystemId": "92", "groups": [ "15706" ], @@ -2570,10 +2460,9 @@ } }, { - "id": 94, + "id": "93", "name": "Universidade de São Paulo - Campus de São Carlos: Universidade de São Paulo - Campus de São Carlos", "shortName": "USP - São Carlos: Universidade de São Paulo - Campus de São Carlos", - "contestSystemId": "93", "groups": [ "15706" ], @@ -2592,10 +2481,9 @@ } }, { - "id": 25, + "id": "94", "name": "Universidade Estadual de Campinas: Universidade Estadual de Campinas", "shortName": "UNICAMP: Universidade Estadual de Campinas", - "contestSystemId": "94", "groups": [ "15706" ], @@ -2614,10 +2502,9 @@ } }, { - "id": 20, + "id": "95", "name": "Universidade Federal de Minas Gerais: Universidade Federal de Minas Gerais", "shortName": "UFMG: Universidade Federal de Minas Gerais", - "contestSystemId": "95", "groups": [ "15706" ], @@ -2636,10 +2523,9 @@ } }, { - "id": 27, + "id": "96", "name": "Universidade Federal de Pernambuco: Universidade Federal de Pernambuco", "shortName": "UFPE: Universidade Federal de Pernambuco", - "contestSystemId": "96", "groups": [ "15706" ], @@ -2658,10 +2544,9 @@ } }, { - "id": 97, + "id": "97", "name": "Universidade Federal do Ceará - Campus Quixadá: Universidade Federal do Ceará - Campus Quixadá", "shortName": "UFC-Quixadá: Universidade Federal do Ceará - Campus Quixadá", - "contestSystemId": "97", "groups": [ "15706" ], @@ -2680,10 +2565,9 @@ } }, { - "id": 49, + "id": "98", "name": "Università Degli Studi di Milano: Università Degli Studi di Milano", "shortName": "UNIMI: Università Degli Studi di Milano", - "contestSystemId": "98", "groups": [ "15705" ], @@ -2702,10 +2586,9 @@ } }, { - "id": 47, + "id": "99", "name": "Universitas Indonesia: Universitas Indonesia", "shortName": "UI: Universitas Indonesia", - "contestSystemId": "99", "groups": [ "15709" ], @@ -3863,7 +3746,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 1, + "teamId": "102", "time": 577911, "featuredRunMedia": null, "reactionVideos": [], @@ -3881,7 +3764,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 2, + "teamId": "101", "time": 772474, "featuredRunMedia": null, "reactionVideos": [], @@ -3899,7 +3782,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 1, + "teamId": "102", "time": 799189, "featuredRunMedia": null, "reactionVideos": [], @@ -3917,7 +3800,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 1, + "teamId": "102", "time": 819464, "featuredRunMedia": null, "reactionVideos": [], @@ -3935,7 +3818,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 836670, "featuredRunMedia": null, "reactionVideos": [], @@ -3953,7 +3836,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 4, + "teamId": "50", "time": 890176, "featuredRunMedia": null, "reactionVideos": [], @@ -3971,7 +3854,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 5, + "teamId": "70", "time": 1029936, "featuredRunMedia": null, "reactionVideos": [], @@ -3989,7 +3872,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 6, + "teamId": "19", "time": 1054102, "featuredRunMedia": null, "reactionVideos": [], @@ -4007,7 +3890,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 7, + "teamId": "65", "time": 1064364, "featuredRunMedia": null, "reactionVideos": [], @@ -4025,7 +3908,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 1, + "teamId": "102", "time": 1070447, "featuredRunMedia": null, "reactionVideos": [], @@ -4043,7 +3926,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1076950, "featuredRunMedia": null, "reactionVideos": [], @@ -4061,7 +3944,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 9, + "teamId": "114", "time": 1081312, "featuredRunMedia": null, "reactionVideos": [], @@ -4079,7 +3962,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 6, + "teamId": "19", "time": 1111552, "featuredRunMedia": null, "reactionVideos": [], @@ -4097,7 +3980,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1184093, "featuredRunMedia": null, "reactionVideos": [], @@ -4115,7 +3998,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1240994, "featuredRunMedia": null, "reactionVideos": [], @@ -4133,7 +4016,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 10, + "teamId": "47", "time": 1289186, "featuredRunMedia": null, "reactionVideos": [], @@ -4151,7 +4034,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 11, + "teamId": "69", "time": 1304769, "featuredRunMedia": null, "reactionVideos": [], @@ -4169,7 +4052,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 12, + "teamId": "56", "time": 1305873, "featuredRunMedia": null, "reactionVideos": [], @@ -4187,7 +4070,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1306424, "featuredRunMedia": null, "reactionVideos": [], @@ -4205,7 +4088,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 7, + "teamId": "65", "time": 1345335, "featuredRunMedia": null, "reactionVideos": [], @@ -4223,7 +4106,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 13, + "teamId": "25", "time": 1346185, "featuredRunMedia": null, "reactionVideos": [], @@ -4241,7 +4124,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 1395160, "featuredRunMedia": null, "reactionVideos": [], @@ -4259,7 +4142,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 1399513, "featuredRunMedia": null, "reactionVideos": [], @@ -4277,7 +4160,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 16, + "teamId": "109", "time": 1417214, "featuredRunMedia": null, "reactionVideos": [], @@ -4295,7 +4178,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 17, + "teamId": "59", "time": 1459042, "featuredRunMedia": null, "reactionVideos": [], @@ -4313,7 +4196,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1465892, "featuredRunMedia": null, "reactionVideos": [], @@ -4331,7 +4214,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 1495158, "featuredRunMedia": null, "reactionVideos": [], @@ -4349,7 +4232,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 7, + "teamId": "65", "time": 1508108, "featuredRunMedia": null, "reactionVideos": [], @@ -4367,7 +4250,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 4, + "teamId": "50", "time": 1528253, "featuredRunMedia": null, "reactionVideos": [], @@ -4385,7 +4268,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 17, + "teamId": "59", "time": 1534720, "featuredRunMedia": null, "reactionVideos": [], @@ -4403,7 +4286,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 4, + "teamId": "50", "time": 1558726, "featuredRunMedia": null, "reactionVideos": [], @@ -4421,7 +4304,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 18, + "teamId": "68", "time": 1563949, "featuredRunMedia": null, "reactionVideos": [], @@ -4439,7 +4322,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 4, + "teamId": "50", "time": 1573877, "featuredRunMedia": null, "reactionVideos": [], @@ -4457,7 +4340,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 17, + "teamId": "59", "time": 1610211, "featuredRunMedia": null, "reactionVideos": [], @@ -4475,7 +4358,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 19, + "teamId": "91", "time": 1615923, "featuredRunMedia": null, "reactionVideos": [], @@ -4493,7 +4376,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 20, + "teamId": "95", "time": 1617177, "featuredRunMedia": null, "reactionVideos": [], @@ -4511,7 +4394,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 21, + "teamId": "104", "time": 1636858, "featuredRunMedia": null, "reactionVideos": [], @@ -4529,7 +4412,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 22, + "teamId": "103", "time": 1639041, "featuredRunMedia": null, "reactionVideos": [], @@ -4547,7 +4430,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 23, + "teamId": "108", "time": 1645170, "featuredRunMedia": null, "reactionVideos": [], @@ -4565,7 +4448,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 24, + "teamId": "28", "time": 1646266, "featuredRunMedia": null, "reactionVideos": [], @@ -4583,7 +4466,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 25, + "teamId": "94", "time": 1702445, "featuredRunMedia": null, "reactionVideos": [], @@ -4601,7 +4484,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 17, + "teamId": "59", "time": 1708132, "featuredRunMedia": null, "reactionVideos": [], @@ -4619,7 +4502,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 19, + "teamId": "91", "time": 1729593, "featuredRunMedia": null, "reactionVideos": [], @@ -4637,7 +4520,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 26, + "teamId": "64", "time": 1734112, "featuredRunMedia": null, "reactionVideos": [], @@ -4655,7 +4538,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 27, + "teamId": "96", "time": 1738538, "featuredRunMedia": null, "reactionVideos": [], @@ -4673,7 +4556,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 18, + "teamId": "68", "time": 1783962, "featuredRunMedia": null, "reactionVideos": [], @@ -4691,7 +4574,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 27, + "teamId": "96", "time": 1801420, "featuredRunMedia": null, "reactionVideos": [], @@ -4709,7 +4592,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 21, + "teamId": "104", "time": 1801643, "featuredRunMedia": null, "reactionVideos": [], @@ -4727,7 +4610,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 12, + "teamId": "56", "time": 1820679, "featuredRunMedia": null, "reactionVideos": [], @@ -4745,7 +4628,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 28, + "teamId": "112", "time": 1834389, "featuredRunMedia": null, "reactionVideos": [], @@ -4763,7 +4646,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 29, + "teamId": "10", "time": 1840582, "featuredRunMedia": null, "reactionVideos": [], @@ -4781,7 +4664,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 30, + "teamId": "7", "time": 1846988, "featuredRunMedia": null, "reactionVideos": [], @@ -4799,7 +4682,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 7, + "teamId": "65", "time": 1870885, "featuredRunMedia": null, "reactionVideos": [], @@ -4817,7 +4700,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 5, + "teamId": "70", "time": 1879968, "featuredRunMedia": null, "reactionVideos": [], @@ -4835,7 +4718,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 7, + "teamId": "65", "time": 1885716, "featuredRunMedia": null, "reactionVideos": [], @@ -4853,7 +4736,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 31, + "teamId": "33", "time": 1899484, "featuredRunMedia": null, "reactionVideos": [], @@ -4871,7 +4754,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 32, + "teamId": "45", "time": 1901914, "featuredRunMedia": null, "reactionVideos": [], @@ -4889,7 +4772,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 33, + "teamId": "52", "time": 1915006, "featuredRunMedia": null, "reactionVideos": [], @@ -4907,7 +4790,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 2, + "teamId": "101", "time": 1920150, "featuredRunMedia": null, "reactionVideos": [], @@ -4925,7 +4808,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 10, + "teamId": "47", "time": 1926205, "featuredRunMedia": null, "reactionVideos": [], @@ -4943,7 +4826,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 8, + "teamId": "29", "time": 1976173, "featuredRunMedia": null, "reactionVideos": [], @@ -4961,7 +4844,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 34, + "teamId": "37", "time": 1980047, "featuredRunMedia": null, "reactionVideos": [], @@ -4979,7 +4862,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 35, + "teamId": "32", "time": 2011141, "featuredRunMedia": null, "reactionVideos": [], @@ -4997,7 +4880,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 1, + "teamId": "102", "time": 2018242, "featuredRunMedia": null, "reactionVideos": [], @@ -5015,7 +4898,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 2024736, "featuredRunMedia": null, "reactionVideos": [], @@ -5033,7 +4916,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 2, + "teamId": "101", "time": 2025974, "featuredRunMedia": null, "reactionVideos": [], @@ -5051,7 +4934,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 36, + "teamId": "80", "time": 2025989, "featuredRunMedia": null, "reactionVideos": [], @@ -5069,7 +4952,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 37, + "teamId": "27", "time": 2035490, "featuredRunMedia": null, "reactionVideos": [], @@ -5087,7 +4970,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 38, + "teamId": "113", "time": 2053167, "featuredRunMedia": null, "reactionVideos": [], @@ -5105,7 +4988,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 25, + "teamId": "94", "time": 2075163, "featuredRunMedia": null, "reactionVideos": [], @@ -5123,7 +5006,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 39, + "teamId": "79", "time": 2099037, "featuredRunMedia": null, "reactionVideos": [], @@ -5141,7 +5024,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 11, + "teamId": "69", "time": 2118865, "featuredRunMedia": null, "reactionVideos": [], @@ -5159,7 +5042,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 40, + "teamId": "87", "time": 2119877, "featuredRunMedia": null, "reactionVideos": [], @@ -5177,7 +5060,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 41, + "teamId": "22", "time": 2127927, "featuredRunMedia": null, "reactionVideos": [], @@ -5195,7 +5078,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 13, + "teamId": "25", "time": 2140270, "featuredRunMedia": null, "reactionVideos": [], @@ -5213,7 +5096,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 42, + "teamId": "12", "time": 2168711, "featuredRunMedia": null, "reactionVideos": [], @@ -5231,7 +5114,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 12, + "teamId": "56", "time": 2184131, "featuredRunMedia": null, "reactionVideos": [], @@ -5249,7 +5132,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 41, + "teamId": "22", "time": 2192323, "featuredRunMedia": null, "reactionVideos": [], @@ -5267,7 +5150,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 43, + "teamId": "92", "time": 2193444, "featuredRunMedia": null, "reactionVideos": [], @@ -5285,7 +5168,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 17, + "teamId": "59", "time": 2211304, "featuredRunMedia": null, "reactionVideos": [], @@ -5303,7 +5186,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 2, + "teamId": "101", "time": 2215384, "featuredRunMedia": null, "reactionVideos": [], @@ -5321,7 +5204,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 44, + "teamId": "72", "time": 2220288, "featuredRunMedia": null, "reactionVideos": [], @@ -5339,7 +5222,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 21, + "teamId": "104", "time": 2234838, "featuredRunMedia": null, "reactionVideos": [], @@ -5357,7 +5240,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 11, + "teamId": "69", "time": 2235785, "featuredRunMedia": null, "reactionVideos": [], @@ -5375,7 +5258,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 2252339, "featuredRunMedia": null, "reactionVideos": [], @@ -5393,7 +5276,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 45, + "teamId": "34", "time": 2252792, "featuredRunMedia": null, "reactionVideos": [], @@ -5411,7 +5294,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 11, + "teamId": "69", "time": 2256332, "featuredRunMedia": null, "reactionVideos": [], @@ -5429,7 +5312,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 17, + "teamId": "59", "time": 2258416, "featuredRunMedia": null, "reactionVideos": [], @@ -5447,7 +5330,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 46, + "teamId": "53", "time": 2266264, "featuredRunMedia": null, "reactionVideos": [], @@ -5465,7 +5348,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 47, + "teamId": "99", "time": 2274957, "featuredRunMedia": null, "reactionVideos": [], @@ -5483,7 +5366,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 48, + "teamId": "106", "time": 2291810, "featuredRunMedia": null, "reactionVideos": [], @@ -5501,7 +5384,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 49, + "teamId": "98", "time": 2298564, "featuredRunMedia": null, "reactionVideos": [], @@ -5519,7 +5402,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 50, + "teamId": "11", "time": 2312432, "featuredRunMedia": null, "reactionVideos": [], @@ -5537,7 +5420,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 2324917, "featuredRunMedia": null, "reactionVideos": [], @@ -5555,7 +5438,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 52, + "teamId": "74", "time": 2331873, "featuredRunMedia": null, "reactionVideos": [], @@ -5573,7 +5456,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 10, + "teamId": "47", "time": 2341348, "featuredRunMedia": null, "reactionVideos": [], @@ -5591,7 +5474,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 13, + "teamId": "25", "time": 2344886, "featuredRunMedia": null, "reactionVideos": [], @@ -5609,7 +5492,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 53, + "teamId": "116", "time": 2353233, "featuredRunMedia": null, "reactionVideos": [], @@ -5627,7 +5510,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 54, + "teamId": "73", "time": 2357724, "featuredRunMedia": null, "reactionVideos": [], @@ -5645,7 +5528,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 23, + "teamId": "108", "time": 2361349, "featuredRunMedia": null, "reactionVideos": [], @@ -5663,7 +5546,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 28, + "teamId": "112", "time": 2376947, "featuredRunMedia": null, "reactionVideos": [], @@ -5681,7 +5564,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 55, + "teamId": "43", "time": 2383118, "featuredRunMedia": null, "reactionVideos": [], @@ -5699,7 +5582,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 1, + "teamId": "102", "time": 2385860, "featuredRunMedia": null, "reactionVideos": [], @@ -5717,7 +5600,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 41, + "teamId": "22", "time": 2390138, "featuredRunMedia": null, "reactionVideos": [], @@ -5735,7 +5618,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 56, + "teamId": "111", "time": 2409434, "featuredRunMedia": null, "reactionVideos": [], @@ -5753,7 +5636,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 37, + "teamId": "27", "time": 2413529, "featuredRunMedia": null, "reactionVideos": [], @@ -5771,7 +5654,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 57, + "teamId": "51", "time": 2413553, "featuredRunMedia": null, "reactionVideos": [], @@ -5789,7 +5672,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 23, + "teamId": "108", "time": 2421139, "featuredRunMedia": null, "reactionVideos": [], @@ -5807,7 +5690,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 20, + "teamId": "95", "time": 2455470, "featuredRunMedia": null, "reactionVideos": [], @@ -5825,7 +5708,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 58, + "teamId": "119", "time": 2461258, "featuredRunMedia": null, "reactionVideos": [], @@ -5843,7 +5726,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 59, + "teamId": "71", "time": 2465874, "featuredRunMedia": null, "reactionVideos": [], @@ -5861,7 +5744,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 2489556, "featuredRunMedia": null, "reactionVideos": [], @@ -5879,7 +5762,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 60, + "teamId": "31", "time": 2493484, "featuredRunMedia": null, "reactionVideos": [], @@ -5897,7 +5780,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 61, + "teamId": "55", "time": 2497951, "featuredRunMedia": null, "reactionVideos": [], @@ -5915,7 +5798,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 29, + "teamId": "10", "time": 2516082, "featuredRunMedia": null, "reactionVideos": [], @@ -5933,7 +5816,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 43, + "teamId": "92", "time": 2538576, "featuredRunMedia": null, "reactionVideos": [], @@ -5951,7 +5834,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 2543167, "featuredRunMedia": null, "reactionVideos": [], @@ -5969,7 +5852,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 62, + "teamId": "44", "time": 2551998, "featuredRunMedia": null, "reactionVideos": [], @@ -5987,7 +5870,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 22, + "teamId": "103", "time": 2558093, "featuredRunMedia": null, "reactionVideos": [], @@ -6005,7 +5888,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 43, + "teamId": "92", "time": 2559730, "featuredRunMedia": null, "reactionVideos": [], @@ -6023,7 +5906,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 48, + "teamId": "106", "time": 2602534, "featuredRunMedia": null, "reactionVideos": [], @@ -6041,7 +5924,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 58, + "teamId": "119", "time": 2614619, "featuredRunMedia": null, "reactionVideos": [], @@ -6059,7 +5942,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 63, + "teamId": "42", "time": 2623536, "featuredRunMedia": null, "reactionVideos": [], @@ -6077,7 +5960,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 7, + "teamId": "65", "time": 2627628, "featuredRunMedia": null, "reactionVideos": [], @@ -6095,7 +5978,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 50, + "teamId": "11", "time": 2654529, "featuredRunMedia": null, "reactionVideos": [], @@ -6113,7 +5996,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 19, + "teamId": "91", "time": 2661791, "featuredRunMedia": null, "reactionVideos": [], @@ -6131,7 +6014,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 39, + "teamId": "79", "time": 2662616, "featuredRunMedia": null, "reactionVideos": [], @@ -6149,7 +6032,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 29, + "teamId": "10", "time": 2668125, "featuredRunMedia": null, "reactionVideos": [], @@ -6167,7 +6050,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 2675004, "featuredRunMedia": null, "reactionVideos": [], @@ -6185,7 +6068,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 13, + "teamId": "25", "time": 2676847, "featuredRunMedia": null, "reactionVideos": [], @@ -6203,7 +6086,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 64, + "teamId": "4", "time": 2690684, "featuredRunMedia": null, "reactionVideos": [], @@ -6221,7 +6104,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 50, + "teamId": "11", "time": 2714859, "featuredRunMedia": null, "reactionVideos": [], @@ -6239,7 +6122,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 18, + "teamId": "68", "time": 2723165, "featuredRunMedia": null, "reactionVideos": [], @@ -6257,7 +6140,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 37, + "teamId": "27", "time": 2731982, "featuredRunMedia": null, "reactionVideos": [], @@ -6275,7 +6158,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 1, + "teamId": "102", "time": 2741348, "featuredRunMedia": null, "reactionVideos": [], @@ -6293,7 +6176,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 15, + "teamId": "6", "time": 2778179, "featuredRunMedia": null, "reactionVideos": [], @@ -6311,7 +6194,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 65, + "teamId": "23", "time": 2791062, "featuredRunMedia": null, "reactionVideos": [], @@ -6329,7 +6212,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 66, + "teamId": "117", "time": 2799300, "featuredRunMedia": null, "reactionVideos": [], @@ -6347,7 +6230,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 58, + "teamId": "119", "time": 2801763, "featuredRunMedia": null, "reactionVideos": [], @@ -6365,7 +6248,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 2811156, "featuredRunMedia": null, "reactionVideos": [], @@ -6383,7 +6266,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 67, + "teamId": "115", "time": 2811233, "featuredRunMedia": null, "reactionVideos": [], @@ -6401,7 +6284,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 68, + "teamId": "107", "time": 2813507, "featuredRunMedia": null, "reactionVideos": [], @@ -6419,7 +6302,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 2, + "teamId": "101", "time": 2820436, "featuredRunMedia": null, "reactionVideos": [], @@ -6437,7 +6320,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 69, + "teamId": "3", "time": 2824907, "featuredRunMedia": null, "reactionVideos": [], @@ -6455,7 +6338,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 62, + "teamId": "44", "time": 2833412, "featuredRunMedia": null, "reactionVideos": [], @@ -6473,7 +6356,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 7, + "teamId": "65", "time": 2842778, "featuredRunMedia": null, "reactionVideos": [], @@ -6491,7 +6374,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 9, + "teamId": "114", "time": 2846187, "featuredRunMedia": null, "reactionVideos": [], @@ -6509,7 +6392,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 70, + "teamId": "100", "time": 2861184, "featuredRunMedia": null, "reactionVideos": [], @@ -6527,7 +6410,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 15, + "teamId": "6", "time": 2890896, "featuredRunMedia": null, "reactionVideos": [], @@ -6545,7 +6428,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 33, + "teamId": "52", "time": 2897444, "featuredRunMedia": null, "reactionVideos": [], @@ -6563,7 +6446,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 71, + "teamId": "105", "time": 2900244, "featuredRunMedia": null, "reactionVideos": [], @@ -6581,7 +6464,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 68, + "teamId": "107", "time": 2906773, "featuredRunMedia": null, "reactionVideos": [], @@ -6599,7 +6482,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 28, + "teamId": "112", "time": 2931111, "featuredRunMedia": null, "reactionVideos": [], @@ -6617,7 +6500,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 69, + "teamId": "3", "time": 2934989, "featuredRunMedia": null, "reactionVideos": [], @@ -6635,7 +6518,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 7, + "teamId": "65", "time": 2952795, "featuredRunMedia": null, "reactionVideos": [], @@ -6653,7 +6536,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 12, + "teamId": "56", "time": 2979637, "featuredRunMedia": null, "reactionVideos": [], @@ -6671,7 +6554,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 58, + "teamId": "119", "time": 2984100, "featuredRunMedia": null, "reactionVideos": [], @@ -6689,7 +6572,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 72, + "teamId": "13", "time": 3001242, "featuredRunMedia": null, "reactionVideos": [], @@ -6707,7 +6590,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 32, + "teamId": "45", "time": 3008834, "featuredRunMedia": null, "reactionVideos": [], @@ -6725,7 +6608,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 54, + "teamId": "73", "time": 3026503, "featuredRunMedia": null, "reactionVideos": [], @@ -6743,7 +6626,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 73, + "teamId": "76", "time": 3028391, "featuredRunMedia": null, "reactionVideos": [], @@ -6761,7 +6644,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 69, + "teamId": "3", "time": 3034468, "featuredRunMedia": null, "reactionVideos": [], @@ -6779,7 +6662,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 61, + "teamId": "55", "time": 3057662, "featuredRunMedia": null, "reactionVideos": [], @@ -6797,7 +6680,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 48, + "teamId": "106", "time": 3058147, "featuredRunMedia": null, "reactionVideos": [], @@ -6815,7 +6698,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 40, + "teamId": "87", "time": 3069530, "featuredRunMedia": null, "reactionVideos": [], @@ -6833,7 +6716,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 3, + "teamId": "67", "time": 3071710, "featuredRunMedia": null, "reactionVideos": [], @@ -6851,7 +6734,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 29, + "teamId": "10", "time": 3084467, "featuredRunMedia": null, "reactionVideos": [], @@ -6869,7 +6752,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 74, + "teamId": "78", "time": 3084920, "featuredRunMedia": null, "reactionVideos": [], @@ -6887,7 +6770,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 25, + "teamId": "94", "time": 3094437, "featuredRunMedia": null, "reactionVideos": [], @@ -6905,7 +6788,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 68, + "teamId": "107", "time": 3113984, "featuredRunMedia": null, "reactionVideos": [], @@ -6923,7 +6806,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 58, + "teamId": "119", "time": 3116238, "featuredRunMedia": null, "reactionVideos": [], @@ -6941,7 +6824,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 15, + "teamId": "6", "time": 3148595, "featuredRunMedia": null, "reactionVideos": [], @@ -6959,7 +6842,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 9, + "teamId": "114", "time": 3156218, "featuredRunMedia": null, "reactionVideos": [], @@ -6977,7 +6860,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 40, + "teamId": "87", "time": 3159696, "featuredRunMedia": null, "reactionVideos": [], @@ -6995,7 +6878,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 75, + "teamId": "48", "time": 3176629, "featuredRunMedia": null, "reactionVideos": [], @@ -7013,7 +6896,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 75, + "teamId": "48", "time": 3178633, "featuredRunMedia": null, "reactionVideos": [], @@ -7031,7 +6914,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 52, + "teamId": "74", "time": 3179639, "featuredRunMedia": null, "reactionVideos": [], @@ -7049,7 +6932,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 76, + "teamId": "9", "time": 3192127, "featuredRunMedia": null, "reactionVideos": [], @@ -7067,7 +6950,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 3195913, "featuredRunMedia": null, "reactionVideos": [], @@ -7085,7 +6968,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 77, + "teamId": "5", "time": 3200773, "featuredRunMedia": null, "reactionVideos": [], @@ -7103,7 +6986,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 17, + "teamId": "59", "time": 3205849, "featuredRunMedia": null, "reactionVideos": [], @@ -7121,7 +7004,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 35, + "teamId": "32", "time": 3207083, "featuredRunMedia": null, "reactionVideos": [], @@ -7139,7 +7022,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 46, + "teamId": "53", "time": 3210287, "featuredRunMedia": null, "reactionVideos": [], @@ -7157,7 +7040,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 78, + "teamId": "46", "time": 3214124, "featuredRunMedia": null, "reactionVideos": [], @@ -7175,7 +7058,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 79, + "teamId": "62", "time": 3214204, "featuredRunMedia": null, "reactionVideos": [], @@ -7193,7 +7076,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 28, + "teamId": "112", "time": 3219059, "featuredRunMedia": null, "reactionVideos": [], @@ -7211,7 +7094,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 3220339, "featuredRunMedia": null, "reactionVideos": [], @@ -7229,7 +7112,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 5, + "teamId": "70", "time": 3227170, "featuredRunMedia": null, "reactionVideos": [], @@ -7247,7 +7130,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 3233589, "featuredRunMedia": null, "reactionVideos": [], @@ -7265,7 +7148,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 76, + "teamId": "9", "time": 3240523, "featuredRunMedia": null, "reactionVideos": [], @@ -7283,7 +7166,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 80, + "teamId": "83", "time": 3263651, "featuredRunMedia": null, "reactionVideos": [], @@ -7301,7 +7184,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 11, + "teamId": "69", "time": 3273617, "featuredRunMedia": null, "reactionVideos": [], @@ -7319,7 +7202,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 68, + "teamId": "107", "time": 3277781, "featuredRunMedia": null, "reactionVideos": [], @@ -7337,7 +7220,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 77, + "teamId": "5", "time": 3284150, "featuredRunMedia": null, "reactionVideos": [], @@ -7355,7 +7238,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 81, + "teamId": "86", "time": 3287062, "featuredRunMedia": null, "reactionVideos": [], @@ -7373,7 +7256,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 12, + "teamId": "56", "time": 3295093, "featuredRunMedia": null, "reactionVideos": [], @@ -7391,7 +7274,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 61, + "teamId": "55", "time": 3297595, "featuredRunMedia": null, "reactionVideos": [], @@ -7409,7 +7292,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 22, + "teamId": "103", "time": 3302224, "featuredRunMedia": null, "reactionVideos": [], @@ -7427,7 +7310,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 13, + "teamId": "25", "time": 3310216, "featuredRunMedia": null, "reactionVideos": [], @@ -7445,7 +7328,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 5, + "teamId": "70", "time": 3313769, "featuredRunMedia": null, "reactionVideos": [], @@ -7463,7 +7346,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 79, + "teamId": "62", "time": 3318176, "featuredRunMedia": null, "reactionVideos": [], @@ -7481,7 +7364,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 39, + "teamId": "79", "time": 3326970, "featuredRunMedia": null, "reactionVideos": [], @@ -7499,7 +7382,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 30, + "teamId": "7", "time": 3341106, "featuredRunMedia": null, "reactionVideos": [], @@ -7517,7 +7400,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 82, + "teamId": "118", "time": 3362732, "featuredRunMedia": null, "reactionVideos": [], @@ -7535,7 +7418,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 3375245, "featuredRunMedia": null, "reactionVideos": [], @@ -7553,7 +7436,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 11, + "teamId": "69", "time": 3380289, "featuredRunMedia": null, "reactionVideos": [], @@ -7571,7 +7454,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 40, + "teamId": "87", "time": 3391569, "featuredRunMedia": null, "reactionVideos": [], @@ -7589,7 +7472,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 3394090, "featuredRunMedia": null, "reactionVideos": [], @@ -7607,7 +7490,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 83, + "teamId": "20", "time": 3395046, "featuredRunMedia": null, "reactionVideos": [], @@ -7625,7 +7508,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 84, + "teamId": "40", "time": 3414823, "featuredRunMedia": null, "reactionVideos": [], @@ -7643,7 +7526,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 4, + "teamId": "50", "time": 3422012, "featuredRunMedia": null, "reactionVideos": [], @@ -7661,7 +7544,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 76, + "teamId": "9", "time": 3425096, "featuredRunMedia": null, "reactionVideos": [], @@ -7679,7 +7562,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 9, + "teamId": "114", "time": 3428815, "featuredRunMedia": null, "reactionVideos": [], @@ -7697,7 +7580,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 74, + "teamId": "78", "time": 3441246, "featuredRunMedia": null, "reactionVideos": [], @@ -7715,7 +7598,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 85, + "teamId": "61", "time": 3444610, "featuredRunMedia": null, "reactionVideos": [], @@ -7733,7 +7616,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 79, + "teamId": "62", "time": 3474766, "featuredRunMedia": null, "reactionVideos": [], @@ -7751,7 +7634,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 20, + "teamId": "95", "time": 3485439, "featuredRunMedia": null, "reactionVideos": [], @@ -7769,7 +7652,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 39, + "teamId": "79", "time": 3493759, "featuredRunMedia": null, "reactionVideos": [], @@ -7787,7 +7670,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 3494152, "featuredRunMedia": null, "reactionVideos": [], @@ -7805,7 +7688,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 46, + "teamId": "53", "time": 3536452, "featuredRunMedia": null, "reactionVideos": [], @@ -7823,7 +7706,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 33, + "teamId": "52", "time": 3538058, "featuredRunMedia": null, "reactionVideos": [], @@ -7841,7 +7724,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 10, + "teamId": "47", "time": 3542208, "featuredRunMedia": null, "reactionVideos": [], @@ -7859,7 +7742,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 45, + "teamId": "34", "time": 3553437, "featuredRunMedia": null, "reactionVideos": [], @@ -7877,7 +7760,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 11, + "teamId": "69", "time": 3560276, "featuredRunMedia": null, "reactionVideos": [], @@ -7895,7 +7778,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 57, + "teamId": "51", "time": 3577662, "featuredRunMedia": null, "reactionVideos": [], @@ -7913,7 +7796,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 34, + "teamId": "37", "time": 3588893, "featuredRunMedia": null, "reactionVideos": [], @@ -7931,7 +7814,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 86, + "teamId": "38", "time": 3609260, "featuredRunMedia": null, "reactionVideos": [], @@ -7949,7 +7832,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 3616716, "featuredRunMedia": null, "reactionVideos": [], @@ -7967,7 +7850,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 76, + "teamId": "9", "time": 3616980, "featuredRunMedia": null, "reactionVideos": [], @@ -7985,7 +7868,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 46, + "teamId": "53", "time": 3624560, "featuredRunMedia": null, "reactionVideos": [], @@ -8003,7 +7886,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 9, + "teamId": "114", "time": 3628962, "featuredRunMedia": null, "reactionVideos": [], @@ -8021,7 +7904,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 79, + "teamId": "62", "time": 3630152, "featuredRunMedia": null, "reactionVideos": [], @@ -8039,7 +7922,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 3642696, "featuredRunMedia": null, "reactionVideos": [], @@ -8057,7 +7940,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 17, + "teamId": "59", "time": 3642890, "featuredRunMedia": null, "reactionVideos": [], @@ -8075,7 +7958,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 3644696, "featuredRunMedia": null, "reactionVideos": [], @@ -8093,7 +7976,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 45, + "teamId": "34", "time": 3648878, "featuredRunMedia": null, "reactionVideos": [], @@ -8111,7 +7994,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 87, + "teamId": "66", "time": 3673933, "featuredRunMedia": null, "reactionVideos": [], @@ -8129,7 +8012,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 41, + "teamId": "22", "time": 3693874, "featuredRunMedia": null, "reactionVideos": [], @@ -8147,7 +8030,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 61, + "teamId": "55", "time": 3700965, "featuredRunMedia": null, "reactionVideos": [], @@ -8165,7 +8048,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 12, + "teamId": "56", "time": 3703463, "featuredRunMedia": null, "reactionVideos": [], @@ -8183,7 +8066,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 42, + "teamId": "12", "time": 3729412, "featuredRunMedia": null, "reactionVideos": [], @@ -8201,7 +8084,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 70, + "teamId": "100", "time": 3753611, "featuredRunMedia": null, "reactionVideos": [], @@ -8219,7 +8102,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 7, + "teamId": "65", "time": 3758667, "featuredRunMedia": null, "reactionVideos": [], @@ -8237,7 +8120,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 3791094, "featuredRunMedia": null, "reactionVideos": [], @@ -8255,7 +8138,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 63, + "teamId": "42", "time": 3854951, "featuredRunMedia": null, "reactionVideos": [], @@ -8273,7 +8156,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 24, + "teamId": "28", "time": 3862121, "featuredRunMedia": null, "reactionVideos": [], @@ -8291,7 +8174,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 3871727, "featuredRunMedia": null, "reactionVideos": [], @@ -8309,7 +8192,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 76, + "teamId": "9", "time": 3871895, "featuredRunMedia": null, "reactionVideos": [], @@ -8327,7 +8210,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 3878799, "featuredRunMedia": null, "reactionVideos": [], @@ -8345,7 +8228,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 18, + "teamId": "68", "time": 3893629, "featuredRunMedia": null, "reactionVideos": [], @@ -8363,7 +8246,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 12, + "teamId": "56", "time": 3899468, "featuredRunMedia": null, "reactionVideos": [], @@ -8381,7 +8264,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 3902250, "featuredRunMedia": null, "reactionVideos": [], @@ -8399,7 +8282,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 42, + "teamId": "12", "time": 3914883, "featuredRunMedia": null, "reactionVideos": [], @@ -8417,7 +8300,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 88, + "teamId": "26", "time": 3916929, "featuredRunMedia": null, "reactionVideos": [], @@ -8435,7 +8318,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 17, + "teamId": "59", "time": 3918121, "featuredRunMedia": null, "reactionVideos": [], @@ -8453,7 +8336,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 3919223, "featuredRunMedia": null, "reactionVideos": [], @@ -8471,7 +8354,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 22, + "teamId": "103", "time": 3929473, "featuredRunMedia": null, "reactionVideos": [], @@ -8489,7 +8372,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 29, + "teamId": "10", "time": 3932309, "featuredRunMedia": null, "reactionVideos": [], @@ -8507,7 +8390,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 49, + "teamId": "98", "time": 3934365, "featuredRunMedia": null, "reactionVideos": [], @@ -8525,7 +8408,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 4, + "teamId": "50", "time": 3961648, "featuredRunMedia": null, "reactionVideos": [], @@ -8543,7 +8426,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 74, + "teamId": "78", "time": 3962755, "featuredRunMedia": null, "reactionVideos": [], @@ -8561,7 +8444,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 10, + "teamId": "47", "time": 3963973, "featuredRunMedia": null, "reactionVideos": [], @@ -8579,7 +8462,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 89, + "teamId": "21", "time": 3976667, "featuredRunMedia": null, "reactionVideos": [], @@ -8597,7 +8480,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 74, + "teamId": "78", "time": 3980131, "featuredRunMedia": null, "reactionVideos": [], @@ -8615,7 +8498,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 11, + "teamId": "69", "time": 3982772, "featuredRunMedia": null, "reactionVideos": [], @@ -8633,7 +8516,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 17, + "teamId": "59", "time": 3985118, "featuredRunMedia": null, "reactionVideos": [], @@ -8651,7 +8534,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 42, + "teamId": "12", "time": 3990920, "featuredRunMedia": null, "reactionVideos": [], @@ -8669,7 +8552,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 45, + "teamId": "34", "time": 3998857, "featuredRunMedia": null, "reactionVideos": [], @@ -8687,7 +8570,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 4001392, "featuredRunMedia": null, "reactionVideos": [], @@ -8705,7 +8588,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 4, + "teamId": "50", "time": 4004390, "featuredRunMedia": null, "reactionVideos": [], @@ -8723,7 +8606,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 90, + "teamId": "35", "time": 4005191, "featuredRunMedia": null, "reactionVideos": [], @@ -8741,7 +8624,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 55, + "teamId": "43", "time": 4007763, "featuredRunMedia": null, "reactionVideos": [], @@ -8759,7 +8642,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 85, + "teamId": "61", "time": 4018125, "featuredRunMedia": null, "reactionVideos": [], @@ -8777,7 +8660,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 33, + "teamId": "52", "time": 4033739, "featuredRunMedia": null, "reactionVideos": [], @@ -8795,7 +8678,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 10, + "teamId": "47", "time": 4046809, "featuredRunMedia": null, "reactionVideos": [], @@ -8813,7 +8696,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 91, + "teamId": "54", "time": 4054026, "featuredRunMedia": null, "reactionVideos": [], @@ -8831,7 +8714,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 92, + "teamId": "36", "time": 4062299, "featuredRunMedia": null, "reactionVideos": [], @@ -8849,7 +8732,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 8, + "teamId": "29", "time": 4066085, "featuredRunMedia": null, "reactionVideos": [], @@ -8867,7 +8750,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 11, + "teamId": "69", "time": 4082768, "featuredRunMedia": null, "reactionVideos": [], @@ -8885,7 +8768,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 71, + "teamId": "105", "time": 4092606, "featuredRunMedia": null, "reactionVideos": [], @@ -8903,7 +8786,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 58, + "teamId": "119", "time": 4112062, "featuredRunMedia": null, "reactionVideos": [], @@ -8921,7 +8804,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 93, + "teamId": "49", "time": 4125050, "featuredRunMedia": null, "reactionVideos": [], @@ -8939,7 +8822,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 90, + "teamId": "35", "time": 4126137, "featuredRunMedia": null, "reactionVideos": [], @@ -8957,7 +8840,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 34, + "teamId": "37", "time": 4126687, "featuredRunMedia": null, "reactionVideos": [], @@ -8975,7 +8858,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 35, + "teamId": "32", "time": 4128116, "featuredRunMedia": null, "reactionVideos": [], @@ -8993,7 +8876,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 63, + "teamId": "42", "time": 4128519, "featuredRunMedia": null, "reactionVideos": [], @@ -9011,7 +8894,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 4129716, "featuredRunMedia": null, "reactionVideos": [], @@ -9029,7 +8912,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 21, + "teamId": "104", "time": 4145279, "featuredRunMedia": null, "reactionVideos": [], @@ -9047,7 +8930,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 27, + "teamId": "96", "time": 4164717, "featuredRunMedia": null, "reactionVideos": [], @@ -9065,7 +8948,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 4187016, "featuredRunMedia": null, "reactionVideos": [], @@ -9083,7 +8966,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 4189540, "featuredRunMedia": null, "reactionVideos": [], @@ -9101,7 +8984,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 33, + "teamId": "52", "time": 4192901, "featuredRunMedia": null, "reactionVideos": [], @@ -9119,7 +9002,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 83, + "teamId": "20", "time": 4195144, "featuredRunMedia": null, "reactionVideos": [], @@ -9137,7 +9020,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 4, + "teamId": "50", "time": 4206260, "featuredRunMedia": null, "reactionVideos": [], @@ -9155,7 +9038,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 55, + "teamId": "43", "time": 4210867, "featuredRunMedia": null, "reactionVideos": [], @@ -9173,7 +9056,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 83, + "teamId": "20", "time": 4224258, "featuredRunMedia": null, "reactionVideos": [], @@ -9191,7 +9074,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 11, + "teamId": "69", "time": 4238676, "featuredRunMedia": null, "reactionVideos": [], @@ -9209,7 +9092,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 58, + "teamId": "119", "time": 4240856, "featuredRunMedia": null, "reactionVideos": [], @@ -9227,7 +9110,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 41, + "teamId": "22", "time": 4273400, "featuredRunMedia": null, "reactionVideos": [], @@ -9245,7 +9128,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 9, + "teamId": "114", "time": 4280820, "featuredRunMedia": null, "reactionVideos": [], @@ -9263,7 +9146,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 4285282, "featuredRunMedia": null, "reactionVideos": [], @@ -9281,7 +9164,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 4, + "teamId": "50", "time": 4299600, "featuredRunMedia": null, "reactionVideos": [], @@ -9299,7 +9182,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 94, + "teamId": "93", "time": 4300078, "featuredRunMedia": null, "reactionVideos": [], @@ -9317,7 +9200,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 10, + "teamId": "47", "time": 4315444, "featuredRunMedia": null, "reactionVideos": [], @@ -9335,7 +9218,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 4320584, "featuredRunMedia": null, "reactionVideos": [], @@ -9353,7 +9236,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 7, + "teamId": "65", "time": 4322691, "featuredRunMedia": null, "reactionVideos": [], @@ -9371,7 +9254,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 4330596, "featuredRunMedia": null, "reactionVideos": [], @@ -9389,7 +9272,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 77, + "teamId": "5", "time": 4379058, "featuredRunMedia": null, "reactionVideos": [], @@ -9407,7 +9290,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 48, + "teamId": "106", "time": 4379804, "featuredRunMedia": null, "reactionVideos": [], @@ -9425,7 +9308,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 18, + "teamId": "68", "time": 4384773, "featuredRunMedia": null, "reactionVideos": [], @@ -9443,7 +9326,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 58, + "teamId": "119", "time": 4392373, "featuredRunMedia": null, "reactionVideos": [], @@ -9461,7 +9344,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 30, + "teamId": "7", "time": 4399512, "featuredRunMedia": null, "reactionVideos": [], @@ -9479,7 +9362,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 96, + "teamId": "1", "time": 4440150, "featuredRunMedia": null, "reactionVideos": [], @@ -9497,7 +9380,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 15, + "teamId": "6", "time": 4447038, "featuredRunMedia": null, "reactionVideos": [], @@ -9515,7 +9398,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 5, + "teamId": "70", "time": 4453480, "featuredRunMedia": null, "reactionVideos": [], @@ -9533,7 +9416,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 76, + "teamId": "9", "time": 4469380, "featuredRunMedia": null, "reactionVideos": [], @@ -9551,7 +9434,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 30, + "teamId": "7", "time": 4472953, "featuredRunMedia": null, "reactionVideos": [], @@ -9569,7 +9452,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 22, + "teamId": "103", "time": 4475756, "featuredRunMedia": null, "reactionVideos": [], @@ -9587,7 +9470,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 28, + "teamId": "112", "time": 4476555, "featuredRunMedia": null, "reactionVideos": [], @@ -9605,7 +9488,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 1, + "teamId": "102", "time": 4483780, "featuredRunMedia": null, "reactionVideos": [], @@ -9623,7 +9506,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 4501473, "featuredRunMedia": null, "reactionVideos": [], @@ -9641,7 +9524,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 21, + "teamId": "104", "time": 4503071, "featuredRunMedia": null, "reactionVideos": [], @@ -9659,7 +9542,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 33, + "teamId": "52", "time": 4507452, "featuredRunMedia": null, "reactionVideos": [], @@ -9677,7 +9560,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 97, + "teamId": "97", "time": 4509158, "featuredRunMedia": null, "reactionVideos": [], @@ -9695,7 +9578,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 4, + "teamId": "50", "time": 4519980, "featuredRunMedia": null, "reactionVideos": [], @@ -9713,7 +9596,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 31, + "teamId": "33", "time": 4527734, "featuredRunMedia": null, "reactionVideos": [], @@ -9731,7 +9614,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 4531523, "featuredRunMedia": null, "reactionVideos": [], @@ -9749,7 +9632,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 93, + "teamId": "49", "time": 4541051, "featuredRunMedia": null, "reactionVideos": [], @@ -9767,7 +9650,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 7, + "teamId": "65", "time": 4565915, "featuredRunMedia": null, "reactionVideos": [], @@ -9785,7 +9668,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 89, + "teamId": "21", "time": 4568156, "featuredRunMedia": null, "reactionVideos": [], @@ -9803,7 +9686,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 2, + "teamId": "101", "time": 4570612, "featuredRunMedia": null, "reactionVideos": [], @@ -9821,7 +9704,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 32, + "teamId": "45", "time": 4572938, "featuredRunMedia": null, "reactionVideos": [], @@ -9839,7 +9722,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 4, + "teamId": "50", "time": 4574056, "featuredRunMedia": null, "reactionVideos": [], @@ -9857,7 +9740,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 17, + "teamId": "59", "time": 4587475, "featuredRunMedia": null, "reactionVideos": [], @@ -9875,7 +9758,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 71, + "teamId": "105", "time": 4608077, "featuredRunMedia": null, "reactionVideos": [], @@ -9893,7 +9776,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 48, + "teamId": "106", "time": 4622484, "featuredRunMedia": null, "reactionVideos": [], @@ -9911,7 +9794,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 98, + "teamId": "90", "time": 4622661, "featuredRunMedia": null, "reactionVideos": [], @@ -9929,7 +9812,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 17, + "teamId": "59", "time": 4627269, "featuredRunMedia": null, "reactionVideos": [], @@ -9947,7 +9830,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 4, + "teamId": "50", "time": 4636854, "featuredRunMedia": null, "reactionVideos": [], @@ -9965,7 +9848,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 99, + "teamId": "17", "time": 4647050, "featuredRunMedia": null, "reactionVideos": [], @@ -9983,7 +9866,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 10, + "teamId": "47", "time": 4649060, "featuredRunMedia": null, "reactionVideos": [], @@ -10001,7 +9884,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 74, + "teamId": "78", "time": 4652246, "featuredRunMedia": null, "reactionVideos": [], @@ -10019,7 +9902,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 73, + "teamId": "76", "time": 4659129, "featuredRunMedia": null, "reactionVideos": [], @@ -10037,7 +9920,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 59, + "teamId": "71", "time": 4687581, "featuredRunMedia": null, "reactionVideos": [], @@ -10055,7 +9938,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 95, + "teamId": "30", "time": 4697502, "featuredRunMedia": null, "reactionVideos": [], @@ -10073,7 +9956,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 76, + "teamId": "9", "time": 4699318, "featuredRunMedia": null, "reactionVideos": [], @@ -10091,7 +9974,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 4704931, "featuredRunMedia": null, "reactionVideos": [], @@ -10109,7 +9992,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 98, + "teamId": "90", "time": 4709147, "featuredRunMedia": null, "reactionVideos": [], @@ -10127,7 +10010,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 90, + "teamId": "35", "time": 4716860, "featuredRunMedia": null, "reactionVideos": [], @@ -10145,7 +10028,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 100, + "teamId": "77", "time": 4737781, "featuredRunMedia": null, "reactionVideos": [], @@ -10163,7 +10046,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 22, + "teamId": "103", "time": 4749456, "featuredRunMedia": null, "reactionVideos": [], @@ -10181,7 +10064,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 91, + "teamId": "54", "time": 4752513, "featuredRunMedia": null, "reactionVideos": [], @@ -10199,7 +10082,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 4766832, "featuredRunMedia": null, "reactionVideos": [], @@ -10217,7 +10100,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 28, + "teamId": "112", "time": 4769543, "featuredRunMedia": null, "reactionVideos": [], @@ -10235,7 +10118,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 64, + "teamId": "4", "time": 4774142, "featuredRunMedia": null, "reactionVideos": [], @@ -10253,7 +10136,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 38, + "teamId": "113", "time": 4774220, "featuredRunMedia": null, "reactionVideos": [], @@ -10271,7 +10154,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 55, + "teamId": "43", "time": 4774441, "featuredRunMedia": null, "reactionVideos": [], @@ -10289,7 +10172,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 22, + "teamId": "103", "time": 4798658, "featuredRunMedia": null, "reactionVideos": [], @@ -10307,7 +10190,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 101, + "teamId": "2", "time": 4811007, "featuredRunMedia": null, "reactionVideos": [], @@ -10325,7 +10208,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 33, + "teamId": "52", "time": 4817703, "featuredRunMedia": null, "reactionVideos": [], @@ -10343,7 +10226,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 102, + "teamId": "16", "time": 4839192, "featuredRunMedia": null, "reactionVideos": [], @@ -10361,7 +10244,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 24, + "teamId": "28", "time": 4841449, "featuredRunMedia": null, "reactionVideos": [], @@ -10379,7 +10262,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 36, + "teamId": "80", "time": 4864793, "featuredRunMedia": null, "reactionVideos": [], @@ -10397,7 +10280,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 4874601, "featuredRunMedia": null, "reactionVideos": [], @@ -10415,7 +10298,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 40, + "teamId": "87", "time": 4881431, "featuredRunMedia": null, "reactionVideos": [], @@ -10433,7 +10316,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 4921992, "featuredRunMedia": null, "reactionVideos": [], @@ -10451,7 +10334,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 7, + "teamId": "65", "time": 4922253, "featuredRunMedia": null, "reactionVideos": [], @@ -10469,7 +10352,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 101, + "teamId": "2", "time": 4938845, "featuredRunMedia": null, "reactionVideos": [], @@ -10487,7 +10370,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 41, + "teamId": "22", "time": 4945987, "featuredRunMedia": null, "reactionVideos": [], @@ -10505,7 +10388,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 68, + "teamId": "107", "time": 4962449, "featuredRunMedia": null, "reactionVideos": [], @@ -10523,7 +10406,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 4969036, "featuredRunMedia": null, "reactionVideos": [], @@ -10541,7 +10424,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 24, + "teamId": "28", "time": 4993613, "featuredRunMedia": null, "reactionVideos": [], @@ -10559,7 +10442,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 99, + "teamId": "17", "time": 4995031, "featuredRunMedia": null, "reactionVideos": [], @@ -10577,7 +10460,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 4, + "teamId": "50", "time": 5016930, "featuredRunMedia": null, "reactionVideos": [], @@ -10595,7 +10478,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 9, + "teamId": "114", "time": 5026067, "featuredRunMedia": null, "reactionVideos": [], @@ -10613,7 +10496,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 37, + "teamId": "27", "time": 5032816, "featuredRunMedia": null, "reactionVideos": [], @@ -10631,7 +10514,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 64, + "teamId": "4", "time": 5035728, "featuredRunMedia": null, "reactionVideos": [], @@ -10649,7 +10532,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 5040960, "featuredRunMedia": null, "reactionVideos": [], @@ -10667,7 +10550,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 5051096, "featuredRunMedia": null, "reactionVideos": [], @@ -10685,7 +10568,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 5080259, "featuredRunMedia": null, "reactionVideos": [], @@ -10703,7 +10586,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 5087400, "featuredRunMedia": null, "reactionVideos": [], @@ -10721,7 +10604,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 5090899, "featuredRunMedia": null, "reactionVideos": [], @@ -10739,7 +10622,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 47, + "teamId": "99", "time": 5112134, "featuredRunMedia": null, "reactionVideos": [], @@ -10757,7 +10640,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 78, + "teamId": "46", "time": 5114731, "featuredRunMedia": null, "reactionVideos": [], @@ -10775,7 +10658,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 26, + "teamId": "64", "time": 5125909, "featuredRunMedia": null, "reactionVideos": [], @@ -10793,7 +10676,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 59, + "teamId": "71", "time": 5131988, "featuredRunMedia": null, "reactionVideos": [], @@ -10811,7 +10694,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 7, + "teamId": "65", "time": 5141985, "featuredRunMedia": null, "reactionVideos": [], @@ -10829,7 +10712,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 22, + "teamId": "103", "time": 5142876, "featuredRunMedia": null, "reactionVideos": [], @@ -10847,7 +10730,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 103, + "teamId": "24", "time": 5152561, "featuredRunMedia": null, "reactionVideos": [], @@ -10865,7 +10748,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 5154849, "featuredRunMedia": null, "reactionVideos": [], @@ -10883,7 +10766,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 9, + "teamId": "114", "time": 5171491, "featuredRunMedia": null, "reactionVideos": [], @@ -10901,7 +10784,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 37, + "teamId": "27", "time": 5178019, "featuredRunMedia": null, "reactionVideos": [], @@ -10919,7 +10802,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 32, + "teamId": "45", "time": 5201879, "featuredRunMedia": null, "reactionVideos": [], @@ -10937,7 +10820,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 102, + "teamId": "16", "time": 5223698, "featuredRunMedia": null, "reactionVideos": [], @@ -10955,7 +10838,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 5234778, "featuredRunMedia": null, "reactionVideos": [], @@ -10973,7 +10856,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 47, + "teamId": "99", "time": 5240167, "featuredRunMedia": null, "reactionVideos": [], @@ -10991,7 +10874,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 22, + "teamId": "103", "time": 5253050, "featuredRunMedia": null, "reactionVideos": [], @@ -11009,7 +10892,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 82, + "teamId": "118", "time": 5256423, "featuredRunMedia": null, "reactionVideos": [], @@ -11027,7 +10910,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 18, + "teamId": "68", "time": 5259520, "featuredRunMedia": null, "reactionVideos": [], @@ -11045,7 +10928,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 5262353, "featuredRunMedia": null, "reactionVideos": [], @@ -11063,7 +10946,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 74, + "teamId": "78", "time": 5264094, "featuredRunMedia": null, "reactionVideos": [], @@ -11081,7 +10964,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 45, + "teamId": "34", "time": 5272793, "featuredRunMedia": null, "reactionVideos": [], @@ -11099,7 +10982,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 70, + "teamId": "100", "time": 5288749, "featuredRunMedia": null, "reactionVideos": [], @@ -11117,7 +11000,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 85, + "teamId": "61", "time": 5298780, "featuredRunMedia": null, "reactionVideos": [], @@ -11135,7 +11018,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 83, + "teamId": "20", "time": 5310574, "featuredRunMedia": null, "reactionVideos": [], @@ -11153,7 +11036,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 5312151, "featuredRunMedia": null, "reactionVideos": [], @@ -11171,7 +11054,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 5367646, "featuredRunMedia": null, "reactionVideos": [], @@ -11189,7 +11072,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 81, + "teamId": "86", "time": 5376261, "featuredRunMedia": null, "reactionVideos": [], @@ -11207,7 +11090,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 87, + "teamId": "66", "time": 5380809, "featuredRunMedia": null, "reactionVideos": [], @@ -11225,7 +11108,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 5387417, "featuredRunMedia": null, "reactionVideos": [], @@ -11243,7 +11126,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 5397013, "featuredRunMedia": null, "reactionVideos": [], @@ -11261,7 +11144,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 102, + "teamId": "16", "time": 5399773, "featuredRunMedia": null, "reactionVideos": [], @@ -11279,7 +11162,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 5408304, "featuredRunMedia": null, "reactionVideos": [], @@ -11297,7 +11180,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 68, + "teamId": "107", "time": 5431200, "featuredRunMedia": null, "reactionVideos": [], @@ -11315,7 +11198,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 62, + "teamId": "44", "time": 5444999, "featuredRunMedia": null, "reactionVideos": [], @@ -11333,7 +11216,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 65, + "teamId": "23", "time": 5448483, "featuredRunMedia": null, "reactionVideos": [], @@ -11351,7 +11234,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 104, + "teamId": "84", "time": 5459434, "featuredRunMedia": null, "reactionVideos": [], @@ -11369,7 +11252,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 5466722, "featuredRunMedia": null, "reactionVideos": [], @@ -11387,7 +11270,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 29, + "teamId": "10", "time": 5467183, "featuredRunMedia": null, "reactionVideos": [], @@ -11405,7 +11288,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 5471451, "featuredRunMedia": null, "reactionVideos": [], @@ -11423,7 +11306,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 83, + "teamId": "20", "time": 5475087, "featuredRunMedia": null, "reactionVideos": [], @@ -11441,7 +11324,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 17, + "teamId": "59", "time": 5489561, "featuredRunMedia": null, "reactionVideos": [], @@ -11459,7 +11342,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 5497403, "featuredRunMedia": null, "reactionVideos": [], @@ -11477,7 +11360,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 82, + "teamId": "118", "time": 5510907, "featuredRunMedia": null, "reactionVideos": [], @@ -11495,7 +11378,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 10, + "teamId": "47", "time": 5517596, "featuredRunMedia": null, "reactionVideos": [], @@ -11513,7 +11396,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 48, + "teamId": "106", "time": 5522382, "featuredRunMedia": null, "reactionVideos": [], @@ -11531,7 +11414,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 5531985, "featuredRunMedia": null, "reactionVideos": [], @@ -11549,7 +11432,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 5575081, "featuredRunMedia": null, "reactionVideos": [], @@ -11567,7 +11450,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 67, + "teamId": "115", "time": 5588381, "featuredRunMedia": null, "reactionVideos": [], @@ -11585,7 +11468,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 40, + "teamId": "87", "time": 5599679, "featuredRunMedia": null, "reactionVideos": [], @@ -11603,7 +11486,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 5613586, "featuredRunMedia": null, "reactionVideos": [], @@ -11621,7 +11504,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 54, + "teamId": "73", "time": 5616899, "featuredRunMedia": null, "reactionVideos": [], @@ -11639,7 +11522,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 81, + "teamId": "86", "time": 5622526, "featuredRunMedia": null, "reactionVideos": [], @@ -11657,7 +11540,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 33, + "teamId": "52", "time": 5634648, "featuredRunMedia": null, "reactionVideos": [], @@ -11675,7 +11558,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 5635533, "featuredRunMedia": null, "reactionVideos": [], @@ -11693,7 +11576,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 105, + "teamId": "58", "time": 5640121, "featuredRunMedia": null, "reactionVideos": [], @@ -11711,7 +11594,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 5, + "teamId": "70", "time": 5652013, "featuredRunMedia": null, "reactionVideos": [], @@ -11729,7 +11612,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 25, + "teamId": "94", "time": 5654356, "featuredRunMedia": null, "reactionVideos": [], @@ -11747,7 +11630,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 5659690, "featuredRunMedia": null, "reactionVideos": [], @@ -11765,7 +11648,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 86, + "teamId": "38", "time": 5661301, "featuredRunMedia": null, "reactionVideos": [], @@ -11783,7 +11666,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 5664114, "featuredRunMedia": null, "reactionVideos": [], @@ -11801,7 +11684,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 100, + "teamId": "77", "time": 5676659, "featuredRunMedia": null, "reactionVideos": [], @@ -11819,7 +11702,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 47, + "teamId": "99", "time": 5686556, "featuredRunMedia": null, "reactionVideos": [], @@ -11837,7 +11720,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 4, + "teamId": "50", "time": 5690361, "featuredRunMedia": null, "reactionVideos": [], @@ -11855,7 +11738,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 5696585, "featuredRunMedia": null, "reactionVideos": [], @@ -11873,7 +11756,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 5698891, "featuredRunMedia": null, "reactionVideos": [], @@ -11891,7 +11774,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 6, + "teamId": "19", "time": 5705995, "featuredRunMedia": null, "reactionVideos": [], @@ -11909,7 +11792,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 40, + "teamId": "87", "time": 5706437, "featuredRunMedia": null, "reactionVideos": [], @@ -11927,7 +11810,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 12, + "teamId": "56", "time": 5714605, "featuredRunMedia": null, "reactionVideos": [], @@ -11945,7 +11828,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 93, + "teamId": "49", "time": 5727387, "featuredRunMedia": null, "reactionVideos": [], @@ -11963,7 +11846,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 39, + "teamId": "79", "time": 5742708, "featuredRunMedia": null, "reactionVideos": [], @@ -11981,7 +11864,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 24, + "teamId": "28", "time": 5747178, "featuredRunMedia": null, "reactionVideos": [], @@ -11999,7 +11882,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 28, + "teamId": "112", "time": 5757518, "featuredRunMedia": null, "reactionVideos": [], @@ -12017,7 +11900,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 60, + "teamId": "31", "time": 5757861, "featuredRunMedia": null, "reactionVideos": [], @@ -12035,7 +11918,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 19, + "teamId": "91", "time": 5774421, "featuredRunMedia": null, "reactionVideos": [], @@ -12053,7 +11936,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 80, + "teamId": "83", "time": 5782355, "featuredRunMedia": null, "reactionVideos": [], @@ -12071,7 +11954,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 5790194, "featuredRunMedia": null, "reactionVideos": [], @@ -12089,7 +11972,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 65, + "teamId": "23", "time": 5800142, "featuredRunMedia": null, "reactionVideos": [], @@ -12107,7 +11990,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 5804976, "featuredRunMedia": null, "reactionVideos": [], @@ -12125,7 +12008,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 93, + "teamId": "49", "time": 5808049, "featuredRunMedia": null, "reactionVideos": [], @@ -12143,7 +12026,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 16, + "teamId": "109", "time": 5811408, "featuredRunMedia": null, "reactionVideos": [], @@ -12161,7 +12044,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 5823498, "featuredRunMedia": null, "reactionVideos": [], @@ -12179,7 +12062,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 71, + "teamId": "105", "time": 5827369, "featuredRunMedia": null, "reactionVideos": [], @@ -12197,7 +12080,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 106, + "teamId": "110", "time": 5853766, "featuredRunMedia": null, "reactionVideos": [], @@ -12215,7 +12098,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 2, + "teamId": "101", "time": 5874053, "featuredRunMedia": null, "reactionVideos": [], @@ -12233,7 +12116,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 67, + "teamId": "115", "time": 5874283, "featuredRunMedia": null, "reactionVideos": [], @@ -12251,7 +12134,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 5874452, "featuredRunMedia": null, "reactionVideos": [], @@ -12269,7 +12152,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 5878394, "featuredRunMedia": null, "reactionVideos": [], @@ -12287,7 +12170,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 40, + "teamId": "87", "time": 5881957, "featuredRunMedia": null, "reactionVideos": [], @@ -12305,7 +12188,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 5900264, "featuredRunMedia": null, "reactionVideos": [], @@ -12323,7 +12206,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 67, + "teamId": "115", "time": 5922595, "featuredRunMedia": null, "reactionVideos": [], @@ -12341,7 +12224,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 82, + "teamId": "118", "time": 5923317, "featuredRunMedia": null, "reactionVideos": [], @@ -12359,7 +12242,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 5930172, "featuredRunMedia": null, "reactionVideos": [], @@ -12377,7 +12260,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 106, + "teamId": "110", "time": 5940266, "featuredRunMedia": null, "reactionVideos": [], @@ -12395,7 +12278,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 5945056, "featuredRunMedia": null, "reactionVideos": [], @@ -12413,7 +12296,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 12, + "teamId": "56", "time": 5945301, "featuredRunMedia": null, "reactionVideos": [], @@ -12431,7 +12314,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 33, + "teamId": "52", "time": 5950377, "featuredRunMedia": null, "reactionVideos": [], @@ -12449,7 +12332,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 107, + "teamId": "89", "time": 5960907, "featuredRunMedia": null, "reactionVideos": [], @@ -12467,7 +12350,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 17, + "teamId": "59", "time": 5964246, "featuredRunMedia": null, "reactionVideos": [], @@ -12485,7 +12368,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 5969761, "featuredRunMedia": null, "reactionVideos": [], @@ -12503,7 +12386,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 108, + "teamId": "63", "time": 5979196, "featuredRunMedia": null, "reactionVideos": [], @@ -12521,7 +12404,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 94, + "teamId": "93", "time": 5983151, "featuredRunMedia": null, "reactionVideos": [], @@ -12539,7 +12422,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 86, + "teamId": "38", "time": 5987846, "featuredRunMedia": null, "reactionVideos": [], @@ -12557,7 +12440,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 3, + "teamId": "67", "time": 5993938, "featuredRunMedia": null, "reactionVideos": [], @@ -12575,7 +12458,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 90, + "teamId": "35", "time": 6026474, "featuredRunMedia": null, "reactionVideos": [], @@ -12593,7 +12476,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 83, + "teamId": "20", "time": 6049670, "featuredRunMedia": null, "reactionVideos": [], @@ -12611,7 +12494,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 46, + "teamId": "53", "time": 6050259, "featuredRunMedia": null, "reactionVideos": [], @@ -12629,7 +12512,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 46, + "teamId": "53", "time": 6054630, "featuredRunMedia": null, "reactionVideos": [], @@ -12647,7 +12530,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 48, + "teamId": "106", "time": 6069092, "featuredRunMedia": null, "reactionVideos": [], @@ -12665,7 +12548,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 16, + "teamId": "109", "time": 6077305, "featuredRunMedia": null, "reactionVideos": [], @@ -12683,7 +12566,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 6079951, "featuredRunMedia": null, "reactionVideos": [], @@ -12701,7 +12584,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 6084547, "featuredRunMedia": null, "reactionVideos": [], @@ -12719,7 +12602,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 63, + "teamId": "42", "time": 6110901, "featuredRunMedia": null, "reactionVideos": [], @@ -12737,7 +12620,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 99, + "teamId": "17", "time": 6131147, "featuredRunMedia": null, "reactionVideos": [], @@ -12755,7 +12638,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 6151049, "featuredRunMedia": null, "reactionVideos": [], @@ -12773,7 +12656,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 6151751, "featuredRunMedia": null, "reactionVideos": [], @@ -12791,7 +12674,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 87, + "teamId": "66", "time": 6154384, "featuredRunMedia": null, "reactionVideos": [], @@ -12809,7 +12692,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 61, + "teamId": "55", "time": 6155233, "featuredRunMedia": null, "reactionVideos": [], @@ -12827,7 +12710,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 11, + "teamId": "69", "time": 6159697, "featuredRunMedia": null, "reactionVideos": [], @@ -12845,7 +12728,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 6185145, "featuredRunMedia": null, "reactionVideos": [], @@ -12863,7 +12746,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 16, + "teamId": "109", "time": 6193068, "featuredRunMedia": null, "reactionVideos": [], @@ -12881,7 +12764,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 47, + "teamId": "99", "time": 6196123, "featuredRunMedia": null, "reactionVideos": [], @@ -12899,7 +12782,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 6207746, "featuredRunMedia": null, "reactionVideos": [], @@ -12917,7 +12800,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 79, + "teamId": "62", "time": 6209831, "featuredRunMedia": null, "reactionVideos": [], @@ -12935,7 +12818,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 31, + "teamId": "33", "time": 6220427, "featuredRunMedia": null, "reactionVideos": [], @@ -12953,7 +12836,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 6, + "teamId": "19", "time": 6224535, "featuredRunMedia": null, "reactionVideos": [], @@ -12971,7 +12854,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 85, + "teamId": "61", "time": 6224594, "featuredRunMedia": null, "reactionVideos": [], @@ -12989,7 +12872,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 2, + "teamId": "101", "time": 6225986, "featuredRunMedia": null, "reactionVideos": [], @@ -13007,7 +12890,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 109, + "teamId": "75", "time": 6262589, "featuredRunMedia": null, "reactionVideos": [], @@ -13025,7 +12908,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 77, + "teamId": "5", "time": 6286015, "featuredRunMedia": null, "reactionVideos": [], @@ -13043,7 +12926,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 6291385, "featuredRunMedia": null, "reactionVideos": [], @@ -13061,7 +12944,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 32, + "teamId": "45", "time": 6303327, "featuredRunMedia": null, "reactionVideos": [], @@ -13079,7 +12962,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 6314226, "featuredRunMedia": null, "reactionVideos": [], @@ -13097,7 +12980,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 6322723, "featuredRunMedia": null, "reactionVideos": [], @@ -13115,7 +12998,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 109, + "teamId": "75", "time": 6343606, "featuredRunMedia": null, "reactionVideos": [], @@ -13133,7 +13016,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 83, + "teamId": "20", "time": 6350490, "featuredRunMedia": null, "reactionVideos": [], @@ -13151,7 +13034,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 39, + "teamId": "79", "time": 6363227, "featuredRunMedia": null, "reactionVideos": [], @@ -13169,7 +13052,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 80, + "teamId": "83", "time": 6367183, "featuredRunMedia": null, "reactionVideos": [], @@ -13187,7 +13070,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 4, + "teamId": "50", "time": 6384111, "featuredRunMedia": null, "reactionVideos": [], @@ -13205,7 +13088,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 6392988, "featuredRunMedia": null, "reactionVideos": [], @@ -13223,7 +13106,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 93, + "teamId": "49", "time": 6393976, "featuredRunMedia": null, "reactionVideos": [], @@ -13241,7 +13124,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 74, + "teamId": "78", "time": 6399111, "featuredRunMedia": null, "reactionVideos": [], @@ -13259,7 +13142,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 75, + "teamId": "48", "time": 6417600, "featuredRunMedia": null, "reactionVideos": [], @@ -13277,7 +13160,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 6, + "teamId": "19", "time": 6418795, "featuredRunMedia": null, "reactionVideos": [], @@ -13295,7 +13178,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 29, + "teamId": "10", "time": 6437944, "featuredRunMedia": null, "reactionVideos": [], @@ -13313,7 +13196,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 6, + "teamId": "19", "time": 6445979, "featuredRunMedia": null, "reactionVideos": [], @@ -13331,7 +13214,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 27, + "teamId": "96", "time": 6450031, "featuredRunMedia": null, "reactionVideos": [], @@ -13349,7 +13232,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 6464022, "featuredRunMedia": null, "reactionVideos": [], @@ -13367,7 +13250,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 106, + "teamId": "110", "time": 6480325, "featuredRunMedia": null, "reactionVideos": [], @@ -13385,7 +13268,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 94, + "teamId": "93", "time": 6490882, "featuredRunMedia": null, "reactionVideos": [], @@ -13403,7 +13286,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 12, + "teamId": "56", "time": 6493756, "featuredRunMedia": null, "reactionVideos": [], @@ -13421,7 +13304,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 12, + "teamId": "56", "time": 6495332, "featuredRunMedia": null, "reactionVideos": [], @@ -13439,7 +13322,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 38, + "teamId": "113", "time": 6495564, "featuredRunMedia": null, "reactionVideos": [], @@ -13457,7 +13340,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 26, + "teamId": "64", "time": 6518887, "featuredRunMedia": null, "reactionVideos": [], @@ -13475,7 +13358,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 73, + "teamId": "76", "time": 6529030, "featuredRunMedia": null, "reactionVideos": [], @@ -13493,7 +13376,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 13, + "teamId": "25", "time": 6532009, "featuredRunMedia": null, "reactionVideos": [], @@ -13511,7 +13394,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 6541348, "featuredRunMedia": null, "reactionVideos": [], @@ -13529,7 +13412,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 9, + "teamId": "114", "time": 6544742, "featuredRunMedia": null, "reactionVideos": [], @@ -13547,7 +13430,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 17, + "teamId": "59", "time": 6547602, "featuredRunMedia": null, "reactionVideos": [], @@ -13565,7 +13448,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 51, + "teamId": "18", "time": 6548279, "featuredRunMedia": null, "reactionVideos": [], @@ -13583,7 +13466,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 5, + "teamId": "70", "time": 6552921, "featuredRunMedia": null, "reactionVideos": [], @@ -13601,7 +13484,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 6555712, "featuredRunMedia": null, "reactionVideos": [], @@ -13619,7 +13502,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 29, + "teamId": "10", "time": 6559245, "featuredRunMedia": null, "reactionVideos": [], @@ -13637,7 +13520,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 6562318, "featuredRunMedia": null, "reactionVideos": [], @@ -13655,7 +13538,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 75, + "teamId": "48", "time": 6586508, "featuredRunMedia": null, "reactionVideos": [], @@ -13673,7 +13556,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 86, + "teamId": "38", "time": 6605066, "featuredRunMedia": null, "reactionVideos": [], @@ -13691,7 +13574,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 33, + "teamId": "52", "time": 6610727, "featuredRunMedia": null, "reactionVideos": [], @@ -13709,7 +13592,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 110, + "teamId": "81", "time": 6653450, "featuredRunMedia": null, "reactionVideos": [], @@ -13727,7 +13610,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 6655167, "featuredRunMedia": null, "reactionVideos": [], @@ -13745,7 +13628,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 21, + "teamId": "104", "time": 6662660, "featuredRunMedia": null, "reactionVideos": [], @@ -13763,7 +13646,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 111, + "teamId": "41", "time": 6664153, "featuredRunMedia": null, "reactionVideos": [], @@ -13781,7 +13664,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 1, + "teamId": "102", "time": 6664201, "featuredRunMedia": null, "reactionVideos": [], @@ -13799,7 +13682,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 5, + "teamId": "70", "time": 6711135, "featuredRunMedia": null, "reactionVideos": [], @@ -13817,7 +13700,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 48, + "teamId": "106", "time": 6724490, "featuredRunMedia": null, "reactionVideos": [], @@ -13835,7 +13718,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 15, + "teamId": "6", "time": 6731129, "featuredRunMedia": null, "reactionVideos": [], @@ -13853,7 +13736,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 16, + "teamId": "109", "time": 6756441, "featuredRunMedia": null, "reactionVideos": [], @@ -13871,7 +13754,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 70, + "teamId": "100", "time": 6784116, "featuredRunMedia": null, "reactionVideos": [], @@ -13889,7 +13772,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 68, + "teamId": "107", "time": 6804398, "featuredRunMedia": null, "reactionVideos": [], @@ -13907,7 +13790,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 6809398, "featuredRunMedia": null, "reactionVideos": [], @@ -13925,7 +13808,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 6828560, "featuredRunMedia": null, "reactionVideos": [], @@ -13943,7 +13826,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 61, + "teamId": "55", "time": 6830346, "featuredRunMedia": null, "reactionVideos": [], @@ -13961,7 +13844,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 51, + "teamId": "18", "time": 6849317, "featuredRunMedia": null, "reactionVideos": [], @@ -13979,7 +13862,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 6861018, "featuredRunMedia": null, "reactionVideos": [], @@ -13997,7 +13880,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 6902447, "featuredRunMedia": null, "reactionVideos": [], @@ -14015,7 +13898,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 100, + "teamId": "77", "time": 6924309, "featuredRunMedia": null, "reactionVideos": [], @@ -14033,7 +13916,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 50, + "teamId": "11", "time": 6931615, "featuredRunMedia": null, "reactionVideos": [], @@ -14051,7 +13934,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 60, + "teamId": "31", "time": 6964890, "featuredRunMedia": null, "reactionVideos": [], @@ -14069,7 +13952,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 91, + "teamId": "54", "time": 6977122, "featuredRunMedia": null, "reactionVideos": [], @@ -14087,7 +13970,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 11, + "teamId": "69", "time": 6977842, "featuredRunMedia": null, "reactionVideos": [], @@ -14105,7 +13988,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 58, + "teamId": "119", "time": 6980316, "featuredRunMedia": null, "reactionVideos": [], @@ -14123,7 +14006,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 17, + "teamId": "59", "time": 6981063, "featuredRunMedia": null, "reactionVideos": [], @@ -14141,7 +14024,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 28, + "teamId": "112", "time": 6993230, "featuredRunMedia": null, "reactionVideos": [], @@ -14159,7 +14042,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 54, + "teamId": "73", "time": 6995780, "featuredRunMedia": null, "reactionVideos": [], @@ -14177,7 +14060,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 73, + "teamId": "76", "time": 7010659, "featuredRunMedia": null, "reactionVideos": [], @@ -14195,7 +14078,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 7012539, "featuredRunMedia": null, "reactionVideos": [], @@ -14213,7 +14096,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 80, + "teamId": "83", "time": 7024941, "featuredRunMedia": null, "reactionVideos": [], @@ -14231,7 +14114,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 7028192, "featuredRunMedia": null, "reactionVideos": [], @@ -14249,7 +14132,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 39, + "teamId": "79", "time": 7037939, "featuredRunMedia": null, "reactionVideos": [], @@ -14267,7 +14150,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 91, + "teamId": "54", "time": 7048276, "featuredRunMedia": null, "reactionVideos": [], @@ -14285,7 +14168,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 11, + "teamId": "69", "time": 7051063, "featuredRunMedia": null, "reactionVideos": [], @@ -14303,7 +14186,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 72, + "teamId": "13", "time": 7078772, "featuredRunMedia": null, "reactionVideos": [], @@ -14321,7 +14204,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 65, + "teamId": "23", "time": 7084338, "featuredRunMedia": null, "reactionVideos": [], @@ -14339,7 +14222,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 10, + "teamId": "47", "time": 7101220, "featuredRunMedia": null, "reactionVideos": [], @@ -14357,7 +14240,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 7106127, "featuredRunMedia": null, "reactionVideos": [], @@ -14375,7 +14258,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 69, + "teamId": "3", "time": 7106334, "featuredRunMedia": null, "reactionVideos": [], @@ -14393,7 +14276,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 7126140, "featuredRunMedia": null, "reactionVideos": [], @@ -14411,7 +14294,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 67, + "teamId": "115", "time": 7149585, "featuredRunMedia": null, "reactionVideos": [], @@ -14429,7 +14312,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 86, + "teamId": "38", "time": 7151756, "featuredRunMedia": null, "reactionVideos": [], @@ -14447,7 +14330,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 20, + "teamId": "95", "time": 7166391, "featuredRunMedia": null, "reactionVideos": [], @@ -14465,7 +14348,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 75, + "teamId": "48", "time": 7168228, "featuredRunMedia": null, "reactionVideos": [], @@ -14483,7 +14366,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 78, + "teamId": "46", "time": 7197848, "featuredRunMedia": null, "reactionVideos": [], @@ -14501,7 +14384,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 112, + "teamId": "14", "time": 7204620, "featuredRunMedia": null, "reactionVideos": [], @@ -14519,7 +14402,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 97, + "teamId": "97", "time": 7215998, "featuredRunMedia": null, "reactionVideos": [], @@ -14537,7 +14420,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 19, + "teamId": "91", "time": 7222202, "featuredRunMedia": null, "reactionVideos": [], @@ -14555,7 +14438,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 7253143, "featuredRunMedia": null, "reactionVideos": [], @@ -14573,7 +14456,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 58, + "teamId": "119", "time": 7268495, "featuredRunMedia": null, "reactionVideos": [], @@ -14591,7 +14474,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 53, + "teamId": "116", "time": 7275577, "featuredRunMedia": null, "reactionVideos": [], @@ -14609,7 +14492,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 7283650, "featuredRunMedia": null, "reactionVideos": [], @@ -14627,7 +14510,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 7286047, "featuredRunMedia": null, "reactionVideos": [], @@ -14645,7 +14528,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 7304181, "featuredRunMedia": null, "reactionVideos": [], @@ -14663,7 +14546,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 111, + "teamId": "41", "time": 7304577, "featuredRunMedia": null, "reactionVideos": [], @@ -14681,7 +14564,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 21, + "teamId": "104", "time": 7304795, "featuredRunMedia": null, "reactionVideos": [], @@ -14699,7 +14582,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 67, + "teamId": "115", "time": 7316852, "featuredRunMedia": null, "reactionVideos": [], @@ -14717,7 +14600,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 7318495, "featuredRunMedia": null, "reactionVideos": [], @@ -14735,7 +14618,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 69, + "teamId": "3", "time": 7322634, "featuredRunMedia": null, "reactionVideos": [], @@ -14753,7 +14636,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 79, + "teamId": "62", "time": 7326418, "featuredRunMedia": null, "reactionVideos": [], @@ -14771,7 +14654,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 7327512, "featuredRunMedia": null, "reactionVideos": [], @@ -14789,7 +14672,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 7327773, "featuredRunMedia": null, "reactionVideos": [], @@ -14807,7 +14690,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 9, + "teamId": "114", "time": 7334829, "featuredRunMedia": null, "reactionVideos": [], @@ -14825,7 +14708,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 113, + "teamId": "82", "time": 7336718, "featuredRunMedia": null, "reactionVideos": [], @@ -14843,7 +14726,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 89, + "teamId": "21", "time": 7350543, "featuredRunMedia": null, "reactionVideos": [], @@ -14861,7 +14744,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 98, + "teamId": "90", "time": 7361117, "featuredRunMedia": null, "reactionVideos": [], @@ -14879,7 +14762,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 7364839, "featuredRunMedia": null, "reactionVideos": [], @@ -14897,7 +14780,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 7378427, "featuredRunMedia": null, "reactionVideos": [], @@ -14915,7 +14798,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 35, + "teamId": "32", "time": 7381302, "featuredRunMedia": null, "reactionVideos": [], @@ -14933,7 +14816,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 71, + "teamId": "105", "time": 7381628, "featuredRunMedia": null, "reactionVideos": [], @@ -14951,7 +14834,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 23, + "teamId": "108", "time": 7389637, "featuredRunMedia": null, "reactionVideos": [], @@ -14969,7 +14852,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 1, + "teamId": "102", "time": 7417118, "featuredRunMedia": null, "reactionVideos": [], @@ -14987,7 +14870,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 100, + "teamId": "77", "time": 7418165, "featuredRunMedia": null, "reactionVideos": [], @@ -15005,7 +14888,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 17, + "teamId": "59", "time": 7420003, "featuredRunMedia": null, "reactionVideos": [], @@ -15023,7 +14906,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 50, + "teamId": "11", "time": 7428050, "featuredRunMedia": null, "reactionVideos": [], @@ -15041,7 +14924,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 40, + "teamId": "87", "time": 7430367, "featuredRunMedia": null, "reactionVideos": [], @@ -15059,7 +14942,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 22, + "teamId": "103", "time": 7449965, "featuredRunMedia": null, "reactionVideos": [], @@ -15077,7 +14960,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 99, + "teamId": "17", "time": 7454237, "featuredRunMedia": null, "reactionVideos": [], @@ -15095,7 +14978,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 81, + "teamId": "86", "time": 7457675, "featuredRunMedia": null, "reactionVideos": [], @@ -15113,7 +14996,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 100, + "teamId": "77", "time": 7459307, "featuredRunMedia": null, "reactionVideos": [], @@ -15131,7 +15014,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 27, + "teamId": "96", "time": 7466036, "featuredRunMedia": null, "reactionVideos": [], @@ -15149,7 +15032,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 42, + "teamId": "12", "time": 7469689, "featuredRunMedia": null, "reactionVideos": [], @@ -15167,7 +15050,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 87, + "teamId": "66", "time": 7479450, "featuredRunMedia": null, "reactionVideos": [], @@ -15185,7 +15068,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 61, + "teamId": "55", "time": 7499453, "featuredRunMedia": null, "reactionVideos": [], @@ -15203,7 +15086,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 82, + "teamId": "118", "time": 7506105, "featuredRunMedia": null, "reactionVideos": [], @@ -15221,7 +15104,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 81, + "teamId": "86", "time": 7520207, "featuredRunMedia": null, "reactionVideos": [], @@ -15239,7 +15122,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 94, + "teamId": "93", "time": 7522928, "featuredRunMedia": null, "reactionVideos": [], @@ -15257,7 +15140,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 7528482, "featuredRunMedia": null, "reactionVideos": [], @@ -15275,7 +15158,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 7530551, "featuredRunMedia": null, "reactionVideos": [], @@ -15293,7 +15176,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 94, + "teamId": "93", "time": 7544137, "featuredRunMedia": null, "reactionVideos": [], @@ -15311,7 +15194,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 53, + "teamId": "116", "time": 7546191, "featuredRunMedia": null, "reactionVideos": [], @@ -15329,7 +15212,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 35, + "teamId": "32", "time": 7558461, "featuredRunMedia": null, "reactionVideos": [], @@ -15347,7 +15230,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 65, + "teamId": "23", "time": 7565138, "featuredRunMedia": null, "reactionVideos": [], @@ -15365,7 +15248,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 1, + "teamId": "102", "time": 7594648, "featuredRunMedia": null, "reactionVideos": [], @@ -15383,7 +15266,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 93, + "teamId": "49", "time": 7598838, "featuredRunMedia": null, "reactionVideos": [], @@ -15401,7 +15284,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 20, + "teamId": "95", "time": 7600352, "featuredRunMedia": null, "reactionVideos": [], @@ -15419,7 +15302,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 15, + "teamId": "6", "time": 7609349, "featuredRunMedia": null, "reactionVideos": [], @@ -15437,7 +15320,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 29, + "teamId": "10", "time": 7613843, "featuredRunMedia": null, "reactionVideos": [], @@ -15455,7 +15338,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 111, + "teamId": "41", "time": 7642452, "featuredRunMedia": null, "reactionVideos": [], @@ -15473,7 +15356,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 60, + "teamId": "31", "time": 7648005, "featuredRunMedia": null, "reactionVideos": [], @@ -15491,7 +15374,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 114, + "teamId": "88", "time": 7679813, "featuredRunMedia": null, "reactionVideos": [], @@ -15509,7 +15392,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 46, + "teamId": "53", "time": 7682846, "featuredRunMedia": null, "reactionVideos": [], @@ -15527,7 +15410,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 115, + "teamId": "85", "time": 7687523, "featuredRunMedia": null, "reactionVideos": [], @@ -15545,7 +15428,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 7703137, "featuredRunMedia": null, "reactionVideos": [], @@ -15563,7 +15446,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 13, + "teamId": "25", "time": 7717917, "featuredRunMedia": null, "reactionVideos": [], @@ -15581,7 +15464,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 54, + "teamId": "73", "time": 7732580, "featuredRunMedia": null, "reactionVideos": [], @@ -15599,7 +15482,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 8, + "teamId": "29", "time": 7737303, "featuredRunMedia": null, "reactionVideos": [], @@ -15617,7 +15500,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 50, + "teamId": "11", "time": 7756228, "featuredRunMedia": null, "reactionVideos": [], @@ -15635,7 +15518,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 53, + "teamId": "116", "time": 7757322, "featuredRunMedia": null, "reactionVideos": [], @@ -15653,7 +15536,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 67, + "teamId": "115", "time": 7758957, "featuredRunMedia": null, "reactionVideos": [], @@ -15671,7 +15554,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 7763469, "featuredRunMedia": null, "reactionVideos": [], @@ -15689,7 +15572,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 115, + "teamId": "85", "time": 7768305, "featuredRunMedia": null, "reactionVideos": [], @@ -15707,7 +15590,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 7774568, "featuredRunMedia": null, "reactionVideos": [], @@ -15725,7 +15608,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 7781160, "featuredRunMedia": null, "reactionVideos": [], @@ -15743,7 +15626,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 46, + "teamId": "53", "time": 7786837, "featuredRunMedia": null, "reactionVideos": [], @@ -15761,7 +15644,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 29, + "teamId": "10", "time": 7801305, "featuredRunMedia": null, "reactionVideos": [], @@ -15779,7 +15662,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 82, + "teamId": "118", "time": 7813812, "featuredRunMedia": null, "reactionVideos": [], @@ -15797,7 +15680,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 7821630, "featuredRunMedia": null, "reactionVideos": [], @@ -15815,7 +15698,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 7829797, "featuredRunMedia": null, "reactionVideos": [], @@ -15833,7 +15716,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 65, + "teamId": "23", "time": 7847012, "featuredRunMedia": null, "reactionVideos": [], @@ -15851,7 +15734,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 83, + "teamId": "20", "time": 7855836, "featuredRunMedia": null, "reactionVideos": [], @@ -15869,7 +15752,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 64, + "teamId": "4", "time": 7870884, "featuredRunMedia": null, "reactionVideos": [], @@ -15887,7 +15770,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 98, + "teamId": "90", "time": 7885590, "featuredRunMedia": null, "reactionVideos": [], @@ -15905,7 +15788,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 72, + "teamId": "13", "time": 7891432, "featuredRunMedia": null, "reactionVideos": [], @@ -15923,7 +15806,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 12, + "teamId": "56", "time": 7898217, "featuredRunMedia": null, "reactionVideos": [], @@ -15941,7 +15824,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 34, + "teamId": "37", "time": 7899224, "featuredRunMedia": null, "reactionVideos": [], @@ -15959,7 +15842,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 83, + "teamId": "20", "time": 7911714, "featuredRunMedia": null, "reactionVideos": [], @@ -15977,7 +15860,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 7937766, "featuredRunMedia": null, "reactionVideos": [], @@ -15995,7 +15878,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 7939098, "featuredRunMedia": null, "reactionVideos": [], @@ -16013,7 +15896,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 7954275, "featuredRunMedia": null, "reactionVideos": [], @@ -16031,7 +15914,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 7983804, "featuredRunMedia": null, "reactionVideos": [], @@ -16049,7 +15932,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 104, + "teamId": "84", "time": 7984316, "featuredRunMedia": null, "reactionVideos": [], @@ -16067,7 +15950,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 95, + "teamId": "30", "time": 7984829, "featuredRunMedia": null, "reactionVideos": [], @@ -16085,7 +15968,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 48, + "teamId": "106", "time": 7991141, "featuredRunMedia": null, "reactionVideos": [], @@ -16103,7 +15986,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 41, + "teamId": "22", "time": 7992248, "featuredRunMedia": null, "reactionVideos": [], @@ -16121,7 +16004,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 13, + "teamId": "25", "time": 8006319, "featuredRunMedia": null, "reactionVideos": [], @@ -16139,7 +16022,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8026730, "featuredRunMedia": null, "reactionVideos": [], @@ -16157,7 +16040,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 108, + "teamId": "63", "time": 8050174, "featuredRunMedia": null, "reactionVideos": [], @@ -16175,7 +16058,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 75, + "teamId": "48", "time": 8053944, "featuredRunMedia": null, "reactionVideos": [], @@ -16193,7 +16076,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 8067702, "featuredRunMedia": null, "reactionVideos": [], @@ -16211,7 +16094,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 8068257, "featuredRunMedia": null, "reactionVideos": [], @@ -16229,7 +16112,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 8073164, "featuredRunMedia": null, "reactionVideos": [], @@ -16247,7 +16130,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 8085493, "featuredRunMedia": null, "reactionVideos": [], @@ -16265,7 +16148,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 76, + "teamId": "9", "time": 8109511, "featuredRunMedia": null, "reactionVideos": [], @@ -16283,7 +16166,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 92, + "teamId": "36", "time": 8141421, "featuredRunMedia": null, "reactionVideos": [], @@ -16301,7 +16184,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 24, + "teamId": "28", "time": 8145722, "featuredRunMedia": null, "reactionVideos": [], @@ -16319,7 +16202,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 39, + "teamId": "79", "time": 8166062, "featuredRunMedia": null, "reactionVideos": [], @@ -16337,7 +16220,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 13, + "teamId": "25", "time": 8172106, "featuredRunMedia": null, "reactionVideos": [], @@ -16355,7 +16238,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 8172766, "featuredRunMedia": null, "reactionVideos": [], @@ -16373,7 +16256,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 8190589, "featuredRunMedia": null, "reactionVideos": [], @@ -16391,7 +16274,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8197353, "featuredRunMedia": null, "reactionVideos": [], @@ -16409,7 +16292,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 8217232, "featuredRunMedia": null, "reactionVideos": [], @@ -16427,7 +16310,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 88, + "teamId": "26", "time": 8238090, "featuredRunMedia": null, "reactionVideos": [], @@ -16445,7 +16328,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 61, + "teamId": "55", "time": 8243548, "featuredRunMedia": null, "reactionVideos": [], @@ -16463,7 +16346,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 8254174, "featuredRunMedia": null, "reactionVideos": [], @@ -16481,7 +16364,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 8256159, "featuredRunMedia": null, "reactionVideos": [], @@ -16499,7 +16382,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8275201, "featuredRunMedia": null, "reactionVideos": [], @@ -16517,7 +16400,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 8276901, "featuredRunMedia": null, "reactionVideos": [], @@ -16535,7 +16418,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 30, + "teamId": "7", "time": 8284816, "featuredRunMedia": null, "reactionVideos": [], @@ -16553,7 +16436,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 38, + "teamId": "113", "time": 8297004, "featuredRunMedia": null, "reactionVideos": [], @@ -16571,7 +16454,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 8298442, "featuredRunMedia": null, "reactionVideos": [], @@ -16589,7 +16472,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 56, + "teamId": "111", "time": 8301711, "featuredRunMedia": null, "reactionVideos": [], @@ -16607,7 +16490,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 31, + "teamId": "33", "time": 8303278, "featuredRunMedia": null, "reactionVideos": [], @@ -16625,7 +16508,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 47, + "teamId": "99", "time": 8316397, "featuredRunMedia": null, "reactionVideos": [], @@ -16643,7 +16526,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 108, + "teamId": "63", "time": 8330998, "featuredRunMedia": null, "reactionVideos": [], @@ -16661,7 +16544,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 8333601, "featuredRunMedia": null, "reactionVideos": [], @@ -16679,7 +16562,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 8, + "teamId": "29", "time": 8339161, "featuredRunMedia": null, "reactionVideos": [], @@ -16697,7 +16580,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 25, + "teamId": "94", "time": 8351657, "featuredRunMedia": null, "reactionVideos": [], @@ -16715,7 +16598,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 50, + "teamId": "11", "time": 8356919, "featuredRunMedia": null, "reactionVideos": [], @@ -16733,7 +16616,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 8376138, "featuredRunMedia": null, "reactionVideos": [], @@ -16751,7 +16634,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 53, + "teamId": "116", "time": 8383574, "featuredRunMedia": null, "reactionVideos": [], @@ -16769,7 +16652,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 8386990, "featuredRunMedia": null, "reactionVideos": [], @@ -16787,7 +16670,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 18, + "teamId": "68", "time": 8387017, "featuredRunMedia": null, "reactionVideos": [], @@ -16805,7 +16688,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 102, + "teamId": "16", "time": 8391187, "featuredRunMedia": null, "reactionVideos": [], @@ -16823,7 +16706,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8397693, "featuredRunMedia": null, "reactionVideos": [], @@ -16841,7 +16724,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 61, + "teamId": "55", "time": 8408368, "featuredRunMedia": null, "reactionVideos": [], @@ -16859,7 +16742,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 83, + "teamId": "20", "time": 8408986, "featuredRunMedia": null, "reactionVideos": [], @@ -16877,7 +16760,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 65, + "teamId": "23", "time": 8417011, "featuredRunMedia": null, "reactionVideos": [], @@ -16895,7 +16778,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 96, + "teamId": "1", "time": 8417189, "featuredRunMedia": null, "reactionVideos": [], @@ -16913,7 +16796,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 30, + "teamId": "7", "time": 8438649, "featuredRunMedia": null, "reactionVideos": [], @@ -16931,7 +16814,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 7, + "teamId": "65", "time": 8442609, "featuredRunMedia": null, "reactionVideos": [], @@ -16949,7 +16832,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 89, + "teamId": "21", "time": 8452760, "featuredRunMedia": null, "reactionVideos": [], @@ -16967,7 +16850,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 111, + "teamId": "41", "time": 8459793, "featuredRunMedia": null, "reactionVideos": [], @@ -16985,7 +16868,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 48, + "teamId": "106", "time": 8467285, "featuredRunMedia": null, "reactionVideos": [], @@ -17003,7 +16886,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 37, + "teamId": "27", "time": 8473409, "featuredRunMedia": null, "reactionVideos": [], @@ -17021,7 +16904,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 21, + "teamId": "104", "time": 8492745, "featuredRunMedia": null, "reactionVideos": [], @@ -17039,7 +16922,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 94, + "teamId": "93", "time": 8494611, "featuredRunMedia": null, "reactionVideos": [], @@ -17057,7 +16940,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 96, + "teamId": "1", "time": 8522019, "featuredRunMedia": null, "reactionVideos": [], @@ -17075,7 +16958,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 8527923, "featuredRunMedia": null, "reactionVideos": [], @@ -17093,7 +16976,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 10, + "teamId": "47", "time": 8533925, "featuredRunMedia": null, "reactionVideos": [], @@ -17111,7 +16994,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 61, + "teamId": "55", "time": 8537084, "featuredRunMedia": null, "reactionVideos": [], @@ -17129,7 +17012,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 31, + "teamId": "33", "time": 8553017, "featuredRunMedia": null, "reactionVideos": [], @@ -17147,7 +17030,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 59, + "teamId": "71", "time": 8564539, "featuredRunMedia": null, "reactionVideos": [], @@ -17165,7 +17048,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 17, + "teamId": "59", "time": 8572969, "featuredRunMedia": null, "reactionVideos": [], @@ -17183,7 +17066,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 64, + "teamId": "4", "time": 8575444, "featuredRunMedia": null, "reactionVideos": [], @@ -17201,7 +17084,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 28, + "teamId": "112", "time": 8581463, "featuredRunMedia": null, "reactionVideos": [], @@ -17219,7 +17102,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8583302, "featuredRunMedia": null, "reactionVideos": [], @@ -17237,7 +17120,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 8588689, "featuredRunMedia": null, "reactionVideos": [], @@ -17255,7 +17138,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 7, + "teamId": "65", "time": 8616642, "featuredRunMedia": null, "reactionVideos": [], @@ -17273,7 +17156,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 8618932, "featuredRunMedia": null, "reactionVideos": [], @@ -17291,7 +17174,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 42, + "teamId": "12", "time": 8619513, "featuredRunMedia": null, "reactionVideos": [], @@ -17309,7 +17192,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 86, + "teamId": "38", "time": 8637768, "featuredRunMedia": null, "reactionVideos": [], @@ -17327,7 +17210,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 21, + "teamId": "104", "time": 8646808, "featuredRunMedia": null, "reactionVideos": [], @@ -17345,7 +17228,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 17, + "teamId": "59", "time": 8648058, "featuredRunMedia": null, "reactionVideos": [], @@ -17363,7 +17246,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 42, + "teamId": "12", "time": 8649390, "featuredRunMedia": null, "reactionVideos": [], @@ -17381,7 +17264,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 94, + "teamId": "93", "time": 8650700, "featuredRunMedia": null, "reactionVideos": [], @@ -17399,7 +17282,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 105, + "teamId": "58", "time": 8662166, "featuredRunMedia": null, "reactionVideos": [], @@ -17417,7 +17300,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 89, + "teamId": "21", "time": 8669438, "featuredRunMedia": null, "reactionVideos": [], @@ -17435,7 +17318,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 67, + "teamId": "115", "time": 8670711, "featuredRunMedia": null, "reactionVideos": [], @@ -17453,7 +17336,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 67, + "teamId": "115", "time": 8676788, "featuredRunMedia": null, "reactionVideos": [], @@ -17471,7 +17354,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 30, + "teamId": "7", "time": 8681589, "featuredRunMedia": null, "reactionVideos": [], @@ -17489,7 +17372,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 52, + "teamId": "74", "time": 8686568, "featuredRunMedia": null, "reactionVideos": [], @@ -17507,7 +17390,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 8689487, "featuredRunMedia": null, "reactionVideos": [], @@ -17525,7 +17408,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 54, + "teamId": "73", "time": 8697230, "featuredRunMedia": null, "reactionVideos": [], @@ -17543,7 +17426,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 8716153, "featuredRunMedia": null, "reactionVideos": [], @@ -17561,7 +17444,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 8720777, "featuredRunMedia": null, "reactionVideos": [], @@ -17579,7 +17462,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 8724539, "featuredRunMedia": null, "reactionVideos": [], @@ -17597,7 +17480,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 56, + "teamId": "111", "time": 8725443, "featuredRunMedia": null, "reactionVideos": [], @@ -17615,7 +17498,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 38, + "teamId": "113", "time": 8728309, "featuredRunMedia": null, "reactionVideos": [], @@ -17633,7 +17516,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 8736678, "featuredRunMedia": null, "reactionVideos": [], @@ -17651,7 +17534,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 85, + "teamId": "61", "time": 8742948, "featuredRunMedia": null, "reactionVideos": [], @@ -17669,7 +17552,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 102, + "teamId": "16", "time": 8743748, "featuredRunMedia": null, "reactionVideos": [], @@ -17687,7 +17570,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 8777466, "featuredRunMedia": null, "reactionVideos": [], @@ -17705,7 +17588,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 85, + "teamId": "61", "time": 8793260, "featuredRunMedia": null, "reactionVideos": [], @@ -17723,7 +17606,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 106, + "teamId": "110", "time": 8793749, "featuredRunMedia": null, "reactionVideos": [], @@ -17741,7 +17624,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 48, + "teamId": "106", "time": 8808247, "featuredRunMedia": null, "reactionVideos": [], @@ -17759,7 +17642,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 79, + "teamId": "62", "time": 8815293, "featuredRunMedia": null, "reactionVideos": [], @@ -17777,7 +17660,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 60, + "teamId": "31", "time": 8819153, "featuredRunMedia": null, "reactionVideos": [], @@ -17795,7 +17678,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 8820795, "featuredRunMedia": null, "reactionVideos": [], @@ -17813,7 +17696,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 48, + "teamId": "106", "time": 8832792, "featuredRunMedia": null, "reactionVideos": [], @@ -17831,7 +17714,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 21, + "teamId": "104", "time": 8836247, "featuredRunMedia": null, "reactionVideos": [], @@ -17849,7 +17732,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 8872672, "featuredRunMedia": null, "reactionVideos": [], @@ -17867,7 +17750,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 8876627, "featuredRunMedia": null, "reactionVideos": [], @@ -17885,7 +17768,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 75, + "teamId": "48", "time": 8879536, "featuredRunMedia": null, "reactionVideos": [], @@ -17903,7 +17786,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 53, + "teamId": "116", "time": 8879880, "featuredRunMedia": null, "reactionVideos": [], @@ -17921,7 +17804,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 10, + "teamId": "47", "time": 8883888, "featuredRunMedia": null, "reactionVideos": [], @@ -17939,7 +17822,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 8897876, "featuredRunMedia": null, "reactionVideos": [], @@ -17957,7 +17840,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 115, + "teamId": "85", "time": 8902851, "featuredRunMedia": null, "reactionVideos": [], @@ -17975,7 +17858,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 86, + "teamId": "38", "time": 8906202, "featuredRunMedia": null, "reactionVideos": [], @@ -17993,7 +17876,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 26, + "teamId": "64", "time": 8927012, "featuredRunMedia": null, "reactionVideos": [], @@ -18011,7 +17894,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 71, + "teamId": "105", "time": 8934545, "featuredRunMedia": null, "reactionVideos": [], @@ -18029,7 +17912,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 29, + "teamId": "10", "time": 8972184, "featuredRunMedia": null, "reactionVideos": [], @@ -18047,7 +17930,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 22, + "teamId": "103", "time": 8974237, "featuredRunMedia": null, "reactionVideos": [], @@ -18065,7 +17948,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 30, + "teamId": "7", "time": 9010042, "featuredRunMedia": null, "reactionVideos": [], @@ -18083,7 +17966,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 9022270, "featuredRunMedia": null, "reactionVideos": [], @@ -18101,7 +17984,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 9074901, "featuredRunMedia": null, "reactionVideos": [], @@ -18119,7 +18002,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 35, + "teamId": "32", "time": 9092823, "featuredRunMedia": null, "reactionVideos": [], @@ -18137,7 +18020,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 21, + "teamId": "104", "time": 9113193, "featuredRunMedia": null, "reactionVideos": [], @@ -18155,7 +18038,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 60, + "teamId": "31", "time": 9147145, "featuredRunMedia": null, "reactionVideos": [], @@ -18173,7 +18056,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 17, + "teamId": "59", "time": 9162564, "featuredRunMedia": null, "reactionVideos": [], @@ -18191,7 +18074,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 113, + "teamId": "82", "time": 9168702, "featuredRunMedia": null, "reactionVideos": [], @@ -18209,7 +18092,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 29, + "teamId": "10", "time": 9169564, "featuredRunMedia": null, "reactionVideos": [], @@ -18227,7 +18110,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 86, + "teamId": "38", "time": 9190057, "featuredRunMedia": null, "reactionVideos": [], @@ -18245,7 +18128,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 9195737, "featuredRunMedia": null, "reactionVideos": [], @@ -18263,7 +18146,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 105, + "teamId": "58", "time": 9197638, "featuredRunMedia": null, "reactionVideos": [], @@ -18281,7 +18164,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 21, + "teamId": "104", "time": 9199192, "featuredRunMedia": null, "reactionVideos": [], @@ -18299,7 +18182,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 9207402, "featuredRunMedia": null, "reactionVideos": [], @@ -18317,7 +18200,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 9213024, "featuredRunMedia": null, "reactionVideos": [], @@ -18335,7 +18218,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 1, + "teamId": "102", "time": 9214154, "featuredRunMedia": null, "reactionVideos": [], @@ -18353,7 +18236,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 9241743, "featuredRunMedia": null, "reactionVideos": [], @@ -18371,7 +18254,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 9248331, "featuredRunMedia": null, "reactionVideos": [], @@ -18389,7 +18272,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 9278454, "featuredRunMedia": null, "reactionVideos": [], @@ -18407,7 +18290,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 60, + "teamId": "31", "time": 9298263, "featuredRunMedia": null, "reactionVideos": [], @@ -18425,7 +18308,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 85, + "teamId": "61", "time": 9301080, "featuredRunMedia": null, "reactionVideos": [], @@ -18443,7 +18326,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 47, + "teamId": "99", "time": 9320329, "featuredRunMedia": null, "reactionVideos": [], @@ -18461,7 +18344,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 49, + "teamId": "98", "time": 9328016, "featuredRunMedia": null, "reactionVideos": [], @@ -18479,7 +18362,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 9362275, "featuredRunMedia": null, "reactionVideos": [], @@ -18497,7 +18380,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 47, + "teamId": "99", "time": 9369722, "featuredRunMedia": null, "reactionVideos": [], @@ -18515,7 +18398,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 9382461, "featuredRunMedia": null, "reactionVideos": [], @@ -18533,7 +18416,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 9384706, "featuredRunMedia": null, "reactionVideos": [], @@ -18551,7 +18434,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 45, + "teamId": "34", "time": 9390438, "featuredRunMedia": null, "reactionVideos": [], @@ -18569,7 +18452,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 9394966, "featuredRunMedia": null, "reactionVideos": [], @@ -18587,7 +18470,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 81, + "teamId": "86", "time": 9397485, "featuredRunMedia": null, "reactionVideos": [], @@ -18605,7 +18488,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 5, + "teamId": "70", "time": 9399869, "featuredRunMedia": null, "reactionVideos": [], @@ -18623,7 +18506,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 9401969, "featuredRunMedia": null, "reactionVideos": [], @@ -18641,7 +18524,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 37, + "teamId": "27", "time": 9407175, "featuredRunMedia": null, "reactionVideos": [], @@ -18659,7 +18542,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 84, + "teamId": "40", "time": 9430430, "featuredRunMedia": null, "reactionVideos": [], @@ -18677,7 +18560,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 9434574, "featuredRunMedia": null, "reactionVideos": [], @@ -18695,7 +18578,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 7, + "teamId": "65", "time": 9456856, "featuredRunMedia": null, "reactionVideos": [], @@ -18713,7 +18596,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 12, + "teamId": "56", "time": 9459856, "featuredRunMedia": null, "reactionVideos": [], @@ -18731,7 +18614,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 18, + "teamId": "68", "time": 9464240, "featuredRunMedia": null, "reactionVideos": [], @@ -18749,7 +18632,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 106, + "teamId": "110", "time": 9467681, "featuredRunMedia": null, "reactionVideos": [], @@ -18767,7 +18650,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 97, + "teamId": "97", "time": 9470055, "featuredRunMedia": null, "reactionVideos": [], @@ -18785,7 +18668,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 91, + "teamId": "54", "time": 9470523, "featuredRunMedia": null, "reactionVideos": [], @@ -18803,7 +18686,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 9475836, "featuredRunMedia": null, "reactionVideos": [], @@ -18821,7 +18704,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 5, + "teamId": "70", "time": 9480922, "featuredRunMedia": null, "reactionVideos": [], @@ -18839,7 +18722,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 9480990, "featuredRunMedia": null, "reactionVideos": [], @@ -18857,7 +18740,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 34, + "teamId": "37", "time": 9483674, "featuredRunMedia": null, "reactionVideos": [], @@ -18875,7 +18758,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 68, + "teamId": "107", "time": 9486695, "featuredRunMedia": null, "reactionVideos": [], @@ -18893,7 +18776,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 29, + "teamId": "10", "time": 9501468, "featuredRunMedia": null, "reactionVideos": [], @@ -18911,7 +18794,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 84, + "teamId": "40", "time": 9505906, "featuredRunMedia": null, "reactionVideos": [], @@ -18929,7 +18812,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 9509553, "featuredRunMedia": null, "reactionVideos": [], @@ -18947,7 +18830,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 78, + "teamId": "46", "time": 9510791, "featuredRunMedia": null, "reactionVideos": [], @@ -18965,7 +18848,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 32, + "teamId": "45", "time": 9522307, "featuredRunMedia": null, "reactionVideos": [], @@ -18983,7 +18866,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 81, + "teamId": "86", "time": 9535141, "featuredRunMedia": null, "reactionVideos": [], @@ -19001,7 +18884,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 26, + "teamId": "64", "time": 9538586, "featuredRunMedia": null, "reactionVideos": [], @@ -19019,7 +18902,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 35, + "teamId": "32", "time": 9544509, "featuredRunMedia": null, "reactionVideos": [], @@ -19037,7 +18920,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 9553108, "featuredRunMedia": null, "reactionVideos": [], @@ -19055,7 +18938,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 104, + "teamId": "84", "time": 9561584, "featuredRunMedia": null, "reactionVideos": [], @@ -19073,7 +18956,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 9562214, "featuredRunMedia": null, "reactionVideos": [], @@ -19091,7 +18974,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 21, + "teamId": "104", "time": 9574182, "featuredRunMedia": null, "reactionVideos": [], @@ -19109,7 +18992,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 9575361, "featuredRunMedia": null, "reactionVideos": [], @@ -19127,7 +19010,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 9576590, "featuredRunMedia": null, "reactionVideos": [], @@ -19145,7 +19028,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 66, + "teamId": "117", "time": 9579338, "featuredRunMedia": null, "reactionVideos": [], @@ -19163,7 +19046,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 9583462, "featuredRunMedia": null, "reactionVideos": [], @@ -19181,7 +19064,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 9590381, "featuredRunMedia": null, "reactionVideos": [], @@ -19199,7 +19082,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 32, + "teamId": "45", "time": 9614724, "featuredRunMedia": null, "reactionVideos": [], @@ -19217,7 +19100,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 91, + "teamId": "54", "time": 9629674, "featuredRunMedia": null, "reactionVideos": [], @@ -19235,7 +19118,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 25, + "teamId": "94", "time": 9638003, "featuredRunMedia": null, "reactionVideos": [], @@ -19253,7 +19136,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 9638763, "featuredRunMedia": null, "reactionVideos": [], @@ -19271,7 +19154,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 9674707, "featuredRunMedia": null, "reactionVideos": [], @@ -19289,7 +19172,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 9677838, "featuredRunMedia": null, "reactionVideos": [], @@ -19307,7 +19190,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 44, + "teamId": "72", "time": 9680198, "featuredRunMedia": null, "reactionVideos": [], @@ -19325,7 +19208,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 96, + "teamId": "1", "time": 9683539, "featuredRunMedia": null, "reactionVideos": [], @@ -19343,7 +19226,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 60, + "teamId": "31", "time": 9685229, "featuredRunMedia": null, "reactionVideos": [], @@ -19361,7 +19244,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 18, + "teamId": "68", "time": 9706696, "featuredRunMedia": null, "reactionVideos": [], @@ -19379,7 +19262,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 9708587, "featuredRunMedia": null, "reactionVideos": [], @@ -19397,7 +19280,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 45, + "teamId": "34", "time": 9716737, "featuredRunMedia": null, "reactionVideos": [], @@ -19415,7 +19298,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 44, + "teamId": "72", "time": 9743327, "featuredRunMedia": null, "reactionVideos": [], @@ -19433,7 +19316,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 9768008, "featuredRunMedia": null, "reactionVideos": [], @@ -19451,7 +19334,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 78, + "teamId": "46", "time": 9771893, "featuredRunMedia": null, "reactionVideos": [], @@ -19469,7 +19352,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 9777399, "featuredRunMedia": null, "reactionVideos": [], @@ -19487,7 +19370,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 9797615, "featuredRunMedia": null, "reactionVideos": [], @@ -19505,7 +19388,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 9830384, "featuredRunMedia": null, "reactionVideos": [], @@ -19523,7 +19406,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 26, + "teamId": "64", "time": 9831591, "featuredRunMedia": null, "reactionVideos": [], @@ -19541,7 +19424,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 68, + "teamId": "107", "time": 9875047, "featuredRunMedia": null, "reactionVideos": [], @@ -19559,7 +19442,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 9, + "teamId": "114", "time": 9887044, "featuredRunMedia": null, "reactionVideos": [], @@ -19577,7 +19460,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 9911030, "featuredRunMedia": null, "reactionVideos": [], @@ -19595,7 +19478,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 9914901, "featuredRunMedia": null, "reactionVideos": [], @@ -19613,7 +19496,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 91, + "teamId": "54", "time": 9942546, "featuredRunMedia": null, "reactionVideos": [], @@ -19631,7 +19514,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 9952964, "featuredRunMedia": null, "reactionVideos": [], @@ -19649,7 +19532,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 91, + "teamId": "54", "time": 9972011, "featuredRunMedia": null, "reactionVideos": [], @@ -19667,7 +19550,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 9983405, "featuredRunMedia": null, "reactionVideos": [], @@ -19685,7 +19568,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 86, + "teamId": "38", "time": 9986975, "featuredRunMedia": null, "reactionVideos": [], @@ -19703,7 +19586,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 38, + "teamId": "113", "time": 9991990, "featuredRunMedia": null, "reactionVideos": [], @@ -19721,7 +19604,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 73, + "teamId": "76", "time": 10002900, "featuredRunMedia": null, "reactionVideos": [], @@ -19739,7 +19622,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 10012123, "featuredRunMedia": null, "reactionVideos": [], @@ -19757,7 +19640,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 8, + "teamId": "29", "time": 10030670, "featuredRunMedia": null, "reactionVideos": [], @@ -19775,7 +19658,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 10034826, "featuredRunMedia": null, "reactionVideos": [], @@ -19793,7 +19676,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 10041486, "featuredRunMedia": null, "reactionVideos": [], @@ -19811,7 +19694,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 10043021, "featuredRunMedia": null, "reactionVideos": [], @@ -19829,7 +19712,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 33, + "teamId": "52", "time": 10058987, "featuredRunMedia": null, "reactionVideos": [], @@ -19847,7 +19730,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 83, + "teamId": "20", "time": 10063456, "featuredRunMedia": null, "reactionVideos": [], @@ -19865,7 +19748,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 10065617, "featuredRunMedia": null, "reactionVideos": [], @@ -19883,7 +19766,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 72, + "teamId": "13", "time": 10102107, "featuredRunMedia": null, "reactionVideos": [], @@ -19901,7 +19784,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 10104048, "featuredRunMedia": null, "reactionVideos": [], @@ -19919,7 +19802,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 108, + "teamId": "63", "time": 10116351, "featuredRunMedia": null, "reactionVideos": [], @@ -19937,7 +19820,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 46, + "teamId": "53", "time": 10117429, "featuredRunMedia": null, "reactionVideos": [], @@ -19955,7 +19838,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 10142656, "featuredRunMedia": null, "reactionVideos": [], @@ -19973,7 +19856,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 10153132, "featuredRunMedia": null, "reactionVideos": [], @@ -19991,7 +19874,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 25, + "teamId": "94", "time": 10154172, "featuredRunMedia": null, "reactionVideos": [], @@ -20009,7 +19892,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 18, + "teamId": "68", "time": 10162201, "featuredRunMedia": null, "reactionVideos": [], @@ -20027,7 +19910,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 26, + "teamId": "64", "time": 10163999, "featuredRunMedia": null, "reactionVideos": [], @@ -20045,7 +19928,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 9, + "teamId": "114", "time": 10169330, "featuredRunMedia": null, "reactionVideos": [], @@ -20063,7 +19946,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 106, + "teamId": "110", "time": 10192986, "featuredRunMedia": null, "reactionVideos": [], @@ -20081,7 +19964,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 11, + "teamId": "69", "time": 10193452, "featuredRunMedia": null, "reactionVideos": [], @@ -20099,7 +19982,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 11, + "teamId": "69", "time": 10194848, "featuredRunMedia": null, "reactionVideos": [], @@ -20117,7 +20000,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 10201734, "featuredRunMedia": null, "reactionVideos": [], @@ -20135,7 +20018,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 10204777, "featuredRunMedia": null, "reactionVideos": [], @@ -20153,7 +20036,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 71, + "teamId": "105", "time": 10217584, "featuredRunMedia": null, "reactionVideos": [], @@ -20171,7 +20054,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 10217919, "featuredRunMedia": null, "reactionVideos": [], @@ -20189,7 +20072,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 58, + "teamId": "119", "time": 10219789, "featuredRunMedia": null, "reactionVideos": [], @@ -20207,7 +20090,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 10228289, "featuredRunMedia": null, "reactionVideos": [], @@ -20225,7 +20108,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 90, + "teamId": "35", "time": 10229427, "featuredRunMedia": null, "reactionVideos": [], @@ -20243,7 +20126,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 10231909, "featuredRunMedia": null, "reactionVideos": [], @@ -20261,7 +20144,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 10242887, "featuredRunMedia": null, "reactionVideos": [], @@ -20279,7 +20162,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 103, + "teamId": "24", "time": 10266226, "featuredRunMedia": null, "reactionVideos": [], @@ -20297,7 +20180,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 91, + "teamId": "54", "time": 10283796, "featuredRunMedia": null, "reactionVideos": [], @@ -20315,7 +20198,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 12, + "teamId": "56", "time": 10298860, "featuredRunMedia": null, "reactionVideos": [], @@ -20333,7 +20216,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 10307763, "featuredRunMedia": null, "reactionVideos": [], @@ -20351,7 +20234,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 10316566, "featuredRunMedia": null, "reactionVideos": [], @@ -20369,7 +20252,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 10317799, "featuredRunMedia": null, "reactionVideos": [], @@ -20387,7 +20270,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 10329973, "featuredRunMedia": null, "reactionVideos": [], @@ -20405,7 +20288,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 106, + "teamId": "110", "time": 10341985, "featuredRunMedia": null, "reactionVideos": [], @@ -20423,7 +20306,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 17, + "teamId": "59", "time": 10351097, "featuredRunMedia": null, "reactionVideos": [], @@ -20441,7 +20324,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 10364442, "featuredRunMedia": null, "reactionVideos": [], @@ -20459,7 +20342,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 58, + "teamId": "119", "time": 10368057, "featuredRunMedia": null, "reactionVideos": [], @@ -20477,7 +20360,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 90, + "teamId": "35", "time": 10368987, "featuredRunMedia": null, "reactionVideos": [], @@ -20495,7 +20378,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 80, + "teamId": "83", "time": 10371256, "featuredRunMedia": null, "reactionVideos": [], @@ -20513,7 +20396,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 66, + "teamId": "117", "time": 10373568, "featuredRunMedia": null, "reactionVideos": [], @@ -20531,7 +20414,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 10379583, "featuredRunMedia": null, "reactionVideos": [], @@ -20549,7 +20432,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 22, + "teamId": "103", "time": 10394619, "featuredRunMedia": null, "reactionVideos": [], @@ -20567,7 +20450,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 105, + "teamId": "58", "time": 10398269, "featuredRunMedia": null, "reactionVideos": [], @@ -20585,7 +20468,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 105, + "teamId": "58", "time": 10402167, "featuredRunMedia": null, "reactionVideos": [], @@ -20603,7 +20486,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 22, + "teamId": "103", "time": 10406503, "featuredRunMedia": null, "reactionVideos": [], @@ -20621,7 +20504,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 33, + "teamId": "52", "time": 10410380, "featuredRunMedia": null, "reactionVideos": [], @@ -20639,7 +20522,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 32, + "teamId": "45", "time": 10418997, "featuredRunMedia": null, "reactionVideos": [], @@ -20657,7 +20540,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 9, + "teamId": "114", "time": 10422725, "featuredRunMedia": null, "reactionVideos": [], @@ -20675,7 +20558,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 10432869, "featuredRunMedia": null, "reactionVideos": [], @@ -20693,7 +20576,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 26, + "teamId": "64", "time": 10442895, "featuredRunMedia": null, "reactionVideos": [], @@ -20711,7 +20594,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 13, + "teamId": "25", "time": 10451582, "featuredRunMedia": null, "reactionVideos": [], @@ -20729,7 +20612,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 12, + "teamId": "56", "time": 10452322, "featuredRunMedia": null, "reactionVideos": [], @@ -20747,7 +20630,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 9, + "teamId": "114", "time": 10455257, "featuredRunMedia": null, "reactionVideos": [], @@ -20765,7 +20648,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 106, + "teamId": "110", "time": 10531450, "featuredRunMedia": null, "reactionVideos": [], @@ -20783,7 +20666,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 33, + "teamId": "52", "time": 10538221, "featuredRunMedia": null, "reactionVideos": [], @@ -20801,7 +20684,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 10542354, "featuredRunMedia": null, "reactionVideos": [], @@ -20819,7 +20702,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 76, + "teamId": "9", "time": 10548165, "featuredRunMedia": null, "reactionVideos": [], @@ -20837,7 +20720,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 13, + "teamId": "25", "time": 10551184, "featuredRunMedia": null, "reactionVideos": [], @@ -20855,7 +20738,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 10565894, "featuredRunMedia": null, "reactionVideos": [], @@ -20873,7 +20756,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 10569211, "featuredRunMedia": null, "reactionVideos": [], @@ -20891,7 +20774,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 10582349, "featuredRunMedia": null, "reactionVideos": [], @@ -20909,7 +20792,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 61, + "teamId": "55", "time": 10586415, "featuredRunMedia": null, "reactionVideos": [], @@ -20927,7 +20810,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 10595518, "featuredRunMedia": null, "reactionVideos": [], @@ -20945,7 +20828,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 96, + "teamId": "1", "time": 10600396, "featuredRunMedia": null, "reactionVideos": [], @@ -20963,7 +20846,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 10640741, "featuredRunMedia": null, "reactionVideos": [], @@ -20981,7 +20864,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 77, + "teamId": "5", "time": 10647220, "featuredRunMedia": null, "reactionVideos": [], @@ -20999,7 +20882,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 93, + "teamId": "49", "time": 10648811, "featuredRunMedia": null, "reactionVideos": [], @@ -21017,7 +20900,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 10667477, "featuredRunMedia": null, "reactionVideos": [], @@ -21035,7 +20918,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 25, + "teamId": "94", "time": 10671195, "featuredRunMedia": null, "reactionVideos": [], @@ -21053,7 +20936,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 10681180, "featuredRunMedia": null, "reactionVideos": [], @@ -21071,7 +20954,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 10681350, "featuredRunMedia": null, "reactionVideos": [], @@ -21089,7 +20972,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 10711249, "featuredRunMedia": null, "reactionVideos": [], @@ -21107,7 +20990,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 10729320, "featuredRunMedia": null, "reactionVideos": [], @@ -21125,7 +21008,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 10747965, "featuredRunMedia": null, "reactionVideos": [], @@ -21143,7 +21026,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 70, + "teamId": "100", "time": 10748455, "featuredRunMedia": null, "reactionVideos": [], @@ -21161,7 +21044,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 46, + "teamId": "53", "time": 10751113, "featuredRunMedia": null, "reactionVideos": [], @@ -21179,7 +21062,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 10766693, "featuredRunMedia": null, "reactionVideos": [], @@ -21197,7 +21080,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 3, + "teamId": "67", "time": 10771194, "featuredRunMedia": null, "reactionVideos": [], @@ -21215,7 +21098,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 10775015, "featuredRunMedia": null, "reactionVideos": [], @@ -21233,7 +21116,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 10799811, "featuredRunMedia": null, "reactionVideos": [], @@ -21251,7 +21134,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 10820986, "featuredRunMedia": null, "reactionVideos": [], @@ -21269,7 +21152,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 10831049, "featuredRunMedia": null, "reactionVideos": [], @@ -21287,7 +21170,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 10879043, "featuredRunMedia": null, "reactionVideos": [], @@ -21305,7 +21188,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 46, + "teamId": "53", "time": 10894251, "featuredRunMedia": null, "reactionVideos": [], @@ -21323,7 +21206,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 10895282, "featuredRunMedia": null, "reactionVideos": [], @@ -21341,7 +21224,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 10906874, "featuredRunMedia": null, "reactionVideos": [], @@ -21359,7 +21242,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 77, + "teamId": "5", "time": 10917854, "featuredRunMedia": null, "reactionVideos": [], @@ -21377,7 +21260,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 12, + "teamId": "56", "time": 10927362, "featuredRunMedia": null, "reactionVideos": [], @@ -21395,7 +21278,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 59, + "teamId": "71", "time": 10947996, "featuredRunMedia": null, "reactionVideos": [], @@ -21413,7 +21296,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 13, + "teamId": "25", "time": 10949664, "featuredRunMedia": null, "reactionVideos": [], @@ -21431,7 +21314,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 13, + "teamId": "25", "time": 10951147, "featuredRunMedia": null, "reactionVideos": [], @@ -21449,7 +21332,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 26, + "teamId": "64", "time": 10961168, "featuredRunMedia": null, "reactionVideos": [], @@ -21467,7 +21350,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 10976652, "featuredRunMedia": null, "reactionVideos": [], @@ -21485,7 +21368,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 10977790, "featuredRunMedia": null, "reactionVideos": [], @@ -21503,7 +21386,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 93, + "teamId": "49", "time": 11002714, "featuredRunMedia": null, "reactionVideos": [], @@ -21521,7 +21404,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 11026099, "featuredRunMedia": null, "reactionVideos": [], @@ -21539,7 +21422,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 11053520, "featuredRunMedia": null, "reactionVideos": [], @@ -21557,7 +21440,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 48, + "teamId": "106", "time": 11056481, "featuredRunMedia": null, "reactionVideos": [], @@ -21575,7 +21458,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 11064447, "featuredRunMedia": null, "reactionVideos": [], @@ -21593,7 +21476,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 113, + "teamId": "82", "time": 11064709, "featuredRunMedia": null, "reactionVideos": [], @@ -21611,7 +21494,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 33, + "teamId": "52", "time": 11090318, "featuredRunMedia": null, "reactionVideos": [], @@ -21629,7 +21512,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 61, + "teamId": "55", "time": 11103257, "featuredRunMedia": null, "reactionVideos": [], @@ -21647,7 +21530,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 11105272, "featuredRunMedia": null, "reactionVideos": [], @@ -21665,7 +21548,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 45, + "teamId": "34", "time": 11105839, "featuredRunMedia": null, "reactionVideos": [], @@ -21683,7 +21566,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 11109933, "featuredRunMedia": null, "reactionVideos": [], @@ -21701,7 +21584,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 83, + "teamId": "20", "time": 11115601, "featuredRunMedia": null, "reactionVideos": [], @@ -21719,7 +21602,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 11122919, "featuredRunMedia": null, "reactionVideos": [], @@ -21737,7 +21620,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 7, + "teamId": "65", "time": 11143179, "featuredRunMedia": null, "reactionVideos": [], @@ -21755,7 +21638,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 24, + "teamId": "28", "time": 11154653, "featuredRunMedia": null, "reactionVideos": [], @@ -21773,7 +21656,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 9, + "teamId": "114", "time": 11165233, "featuredRunMedia": null, "reactionVideos": [], @@ -21791,7 +21674,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 11173239, "featuredRunMedia": null, "reactionVideos": [], @@ -21809,7 +21692,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 11189576, "featuredRunMedia": null, "reactionVideos": [], @@ -21827,7 +21710,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 11193529, "featuredRunMedia": null, "reactionVideos": [], @@ -21845,7 +21728,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 11196657, "featuredRunMedia": null, "reactionVideos": [], @@ -21863,7 +21746,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 26, + "teamId": "64", "time": 11213670, "featuredRunMedia": null, "reactionVideos": [], @@ -21881,7 +21764,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 11214227, "featuredRunMedia": null, "reactionVideos": [], @@ -21899,7 +21782,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11219812, "featuredRunMedia": null, "reactionVideos": [], @@ -21917,7 +21800,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 11225619, "featuredRunMedia": null, "reactionVideos": [], @@ -21935,7 +21818,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 11229021, "featuredRunMedia": null, "reactionVideos": [], @@ -21953,7 +21836,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 11230753, "featuredRunMedia": null, "reactionVideos": [], @@ -21971,7 +21854,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 22, + "teamId": "103", "time": 11238523, "featuredRunMedia": null, "reactionVideos": [], @@ -21989,7 +21872,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 9, + "teamId": "114", "time": 11246329, "featuredRunMedia": null, "reactionVideos": [], @@ -22007,7 +21890,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 11262389, "featuredRunMedia": null, "reactionVideos": [], @@ -22025,7 +21908,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 18, + "teamId": "68", "time": 11264592, "featuredRunMedia": null, "reactionVideos": [], @@ -22043,7 +21926,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 28, + "teamId": "112", "time": 11268328, "featuredRunMedia": null, "reactionVideos": [], @@ -22061,7 +21944,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 11275086, "featuredRunMedia": null, "reactionVideos": [], @@ -22079,7 +21962,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 11, + "teamId": "69", "time": 11277868, "featuredRunMedia": null, "reactionVideos": [], @@ -22097,7 +21980,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 18, + "teamId": "68", "time": 11281020, "featuredRunMedia": null, "reactionVideos": [], @@ -22115,7 +21998,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 11295454, "featuredRunMedia": null, "reactionVideos": [], @@ -22133,7 +22016,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 50, + "teamId": "11", "time": 11302812, "featuredRunMedia": null, "reactionVideos": [], @@ -22151,7 +22034,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 38, + "teamId": "113", "time": 11307641, "featuredRunMedia": null, "reactionVideos": [], @@ -22169,7 +22052,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 11310343, "featuredRunMedia": null, "reactionVideos": [], @@ -22187,7 +22070,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 4, + "teamId": "50", "time": 11310780, "featuredRunMedia": null, "reactionVideos": [], @@ -22205,7 +22088,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 11317042, "featuredRunMedia": null, "reactionVideos": [], @@ -22223,7 +22106,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 11327032, "featuredRunMedia": null, "reactionVideos": [], @@ -22241,7 +22124,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 4, + "teamId": "50", "time": 11331805, "featuredRunMedia": null, "reactionVideos": [], @@ -22259,7 +22142,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 97, + "teamId": "97", "time": 11334338, "featuredRunMedia": null, "reactionVideos": [], @@ -22277,7 +22160,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 1, + "teamId": "102", "time": 11347349, "featuredRunMedia": null, "reactionVideos": [], @@ -22295,7 +22178,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 11349967, "featuredRunMedia": null, "reactionVideos": [], @@ -22313,7 +22196,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 101, + "teamId": "2", "time": 11350390, "featuredRunMedia": null, "reactionVideos": [], @@ -22331,7 +22214,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 11369196, "featuredRunMedia": null, "reactionVideos": [], @@ -22349,7 +22232,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 11380769, "featuredRunMedia": null, "reactionVideos": [], @@ -22367,7 +22250,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 11383338, "featuredRunMedia": null, "reactionVideos": [], @@ -22385,7 +22268,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 44, + "teamId": "72", "time": 11391201, "featuredRunMedia": null, "reactionVideos": [], @@ -22403,7 +22286,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 1, + "teamId": "102", "time": 11393409, "featuredRunMedia": null, "reactionVideos": [], @@ -22421,7 +22304,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 11399216, "featuredRunMedia": null, "reactionVideos": [], @@ -22439,7 +22322,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 30, + "teamId": "7", "time": 11400721, "featuredRunMedia": null, "reactionVideos": [], @@ -22457,7 +22340,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 11400727, "featuredRunMedia": null, "reactionVideos": [], @@ -22475,7 +22358,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 48, + "teamId": "106", "time": 11401268, "featuredRunMedia": null, "reactionVideos": [], @@ -22493,7 +22376,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 11401359, "featuredRunMedia": null, "reactionVideos": [], @@ -22511,7 +22394,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 82, + "teamId": "118", "time": 11414030, "featuredRunMedia": null, "reactionVideos": [], @@ -22529,7 +22412,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 11415899, "featuredRunMedia": null, "reactionVideos": [], @@ -22547,7 +22430,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 116, + "teamId": "39", "time": 11418401, "featuredRunMedia": null, "reactionVideos": [], @@ -22565,7 +22448,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 88, + "teamId": "26", "time": 11424906, "featuredRunMedia": null, "reactionVideos": [], @@ -22583,7 +22466,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 11460078, "featuredRunMedia": null, "reactionVideos": [], @@ -22601,7 +22484,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 28, + "teamId": "112", "time": 11471947, "featuredRunMedia": null, "reactionVideos": [], @@ -22619,7 +22502,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 33, + "teamId": "52", "time": 11486607, "featuredRunMedia": null, "reactionVideos": [], @@ -22637,7 +22520,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 53, + "teamId": "116", "time": 11498790, "featuredRunMedia": null, "reactionVideos": [], @@ -22655,7 +22538,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 83, + "teamId": "20", "time": 11500412, "featuredRunMedia": null, "reactionVideos": [], @@ -22673,7 +22556,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 5, + "teamId": "70", "time": 11501796, "featuredRunMedia": null, "reactionVideos": [], @@ -22691,7 +22574,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 59, + "teamId": "71", "time": 11504420, "featuredRunMedia": null, "reactionVideos": [], @@ -22709,7 +22592,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 52, + "teamId": "74", "time": 11521751, "featuredRunMedia": null, "reactionVideos": [], @@ -22727,7 +22610,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 54, + "teamId": "73", "time": 11525944, "featuredRunMedia": null, "reactionVideos": [], @@ -22745,7 +22628,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 11530649, "featuredRunMedia": null, "reactionVideos": [], @@ -22763,7 +22646,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11535657, "featuredRunMedia": null, "reactionVideos": [], @@ -22781,7 +22664,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 11549017, "featuredRunMedia": null, "reactionVideos": [], @@ -22799,7 +22682,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 75, + "teamId": "48", "time": 11592698, "featuredRunMedia": null, "reactionVideos": [], @@ -22817,7 +22700,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 11596357, "featuredRunMedia": null, "reactionVideos": [], @@ -22835,7 +22718,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 26, + "teamId": "64", "time": 11613706, "featuredRunMedia": null, "reactionVideos": [], @@ -22853,7 +22736,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 9, + "teamId": "114", "time": 11616058, "featuredRunMedia": null, "reactionVideos": [], @@ -22871,7 +22754,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 50, + "teamId": "11", "time": 11617962, "featuredRunMedia": null, "reactionVideos": [], @@ -22889,7 +22772,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 50, + "teamId": "11", "time": 11645318, "featuredRunMedia": null, "reactionVideos": [], @@ -22907,7 +22790,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 48, + "teamId": "106", "time": 11645490, "featuredRunMedia": null, "reactionVideos": [], @@ -22925,7 +22808,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 107, + "teamId": "89", "time": 11648553, "featuredRunMedia": null, "reactionVideos": [], @@ -22943,7 +22826,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 34, + "teamId": "37", "time": 11653769, "featuredRunMedia": null, "reactionVideos": [], @@ -22961,7 +22844,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 11654736, "featuredRunMedia": null, "reactionVideos": [], @@ -22979,7 +22862,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 11656278, "featuredRunMedia": null, "reactionVideos": [], @@ -22997,7 +22880,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 11689255, "featuredRunMedia": null, "reactionVideos": [], @@ -23015,7 +22898,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 76, + "teamId": "9", "time": 11689487, "featuredRunMedia": null, "reactionVideos": [], @@ -23033,7 +22916,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 83, + "teamId": "20", "time": 11691380, "featuredRunMedia": null, "reactionVideos": [], @@ -23051,7 +22934,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11699981, "featuredRunMedia": null, "reactionVideos": [], @@ -23069,7 +22952,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 5, + "teamId": "70", "time": 11708276, "featuredRunMedia": null, "reactionVideos": [], @@ -23087,7 +22970,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 101, + "teamId": "2", "time": 11726784, "featuredRunMedia": null, "reactionVideos": [], @@ -23105,7 +22988,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 11733704, "featuredRunMedia": null, "reactionVideos": [], @@ -23123,7 +23006,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 11736914, "featuredRunMedia": null, "reactionVideos": [], @@ -23141,7 +23024,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 12, + "teamId": "56", "time": 11746619, "featuredRunMedia": null, "reactionVideos": [], @@ -23159,7 +23042,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 11753778, "featuredRunMedia": null, "reactionVideos": [], @@ -23177,7 +23060,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 11756502, "featuredRunMedia": null, "reactionVideos": [], @@ -23195,7 +23078,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 34, + "teamId": "37", "time": 11764311, "featuredRunMedia": null, "reactionVideos": [], @@ -23213,7 +23096,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 10, + "teamId": "47", "time": 11765129, "featuredRunMedia": null, "reactionVideos": [], @@ -23231,7 +23114,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 25, + "teamId": "94", "time": 11766327, "featuredRunMedia": null, "reactionVideos": [], @@ -23249,7 +23132,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 11768377, "featuredRunMedia": null, "reactionVideos": [], @@ -23267,7 +23150,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 11783887, "featuredRunMedia": null, "reactionVideos": [], @@ -23285,7 +23168,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 40, + "teamId": "87", "time": 11785275, "featuredRunMedia": null, "reactionVideos": [], @@ -23303,7 +23186,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 89, + "teamId": "21", "time": 11791221, "featuredRunMedia": null, "reactionVideos": [], @@ -23321,7 +23204,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 25, + "teamId": "94", "time": 11794028, "featuredRunMedia": null, "reactionVideos": [], @@ -23339,7 +23222,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11795168, "featuredRunMedia": null, "reactionVideos": [], @@ -23357,7 +23240,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 11802546, "featuredRunMedia": null, "reactionVideos": [], @@ -23375,7 +23258,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11805300, "featuredRunMedia": null, "reactionVideos": [], @@ -23393,7 +23276,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 11806100, "featuredRunMedia": null, "reactionVideos": [], @@ -23411,7 +23294,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 11812078, "featuredRunMedia": null, "reactionVideos": [], @@ -23429,7 +23312,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11813055, "featuredRunMedia": null, "reactionVideos": [], @@ -23447,7 +23330,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 67, + "teamId": "115", "time": 11828835, "featuredRunMedia": null, "reactionVideos": [], @@ -23465,7 +23348,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 81, + "teamId": "86", "time": 11838514, "featuredRunMedia": null, "reactionVideos": [], @@ -23483,7 +23366,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 105, + "teamId": "58", "time": 11856410, "featuredRunMedia": null, "reactionVideos": [], @@ -23501,7 +23384,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 75, + "teamId": "48", "time": 11857529, "featuredRunMedia": null, "reactionVideos": [], @@ -23519,7 +23402,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 11858744, "featuredRunMedia": null, "reactionVideos": [], @@ -23537,7 +23420,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 19, + "teamId": "91", "time": 11864562, "featuredRunMedia": null, "reactionVideos": [], @@ -23555,7 +23438,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 11869175, "featuredRunMedia": null, "reactionVideos": [], @@ -23573,7 +23456,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 79, + "teamId": "62", "time": 11882818, "featuredRunMedia": null, "reactionVideos": [], @@ -23591,7 +23474,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 65, + "teamId": "23", "time": 11884900, "featuredRunMedia": null, "reactionVideos": [], @@ -23609,7 +23492,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 11887524, "featuredRunMedia": null, "reactionVideos": [], @@ -23627,7 +23510,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 11895835, "featuredRunMedia": null, "reactionVideos": [], @@ -23645,7 +23528,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 53, + "teamId": "116", "time": 11919304, "featuredRunMedia": null, "reactionVideos": [], @@ -23663,7 +23546,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 85, + "teamId": "61", "time": 11920007, "featuredRunMedia": null, "reactionVideos": [], @@ -23681,7 +23564,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 80, + "teamId": "83", "time": 11920145, "featuredRunMedia": null, "reactionVideos": [], @@ -23699,7 +23582,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 15, + "teamId": "6", "time": 11935032, "featuredRunMedia": null, "reactionVideos": [], @@ -23717,7 +23600,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 109, + "teamId": "75", "time": 11941737, "featuredRunMedia": null, "reactionVideos": [], @@ -23735,7 +23618,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 11947769, "featuredRunMedia": null, "reactionVideos": [], @@ -23753,7 +23636,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 11955016, "featuredRunMedia": null, "reactionVideos": [], @@ -23771,7 +23654,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 102, + "teamId": "16", "time": 11965808, "featuredRunMedia": null, "reactionVideos": [], @@ -23789,7 +23672,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 11967105, "featuredRunMedia": null, "reactionVideos": [], @@ -23807,7 +23690,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 11980245, "featuredRunMedia": null, "reactionVideos": [], @@ -23825,7 +23708,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 11996322, "featuredRunMedia": null, "reactionVideos": [], @@ -23843,7 +23726,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 12021720, "featuredRunMedia": null, "reactionVideos": [], @@ -23861,7 +23744,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 12036555, "featuredRunMedia": null, "reactionVideos": [], @@ -23879,7 +23762,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 93, + "teamId": "49", "time": 12039833, "featuredRunMedia": null, "reactionVideos": [], @@ -23897,7 +23780,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 26, + "teamId": "64", "time": 12042622, "featuredRunMedia": null, "reactionVideos": [], @@ -23915,7 +23798,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 75, + "teamId": "48", "time": 12047193, "featuredRunMedia": null, "reactionVideos": [], @@ -23933,7 +23816,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 1, + "teamId": "102", "time": 12047234, "featuredRunMedia": null, "reactionVideos": [], @@ -23951,7 +23834,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 108, + "teamId": "63", "time": 12061418, "featuredRunMedia": null, "reactionVideos": [], @@ -23969,7 +23852,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 12074849, "featuredRunMedia": null, "reactionVideos": [], @@ -23987,7 +23870,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 60, + "teamId": "31", "time": 12080485, "featuredRunMedia": null, "reactionVideos": [], @@ -24005,7 +23888,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 12083870, "featuredRunMedia": null, "reactionVideos": [], @@ -24023,7 +23906,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 12095431, "featuredRunMedia": null, "reactionVideos": [], @@ -24041,7 +23924,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 12099683, "featuredRunMedia": null, "reactionVideos": [], @@ -24059,7 +23942,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 87, + "teamId": "66", "time": 12114909, "featuredRunMedia": null, "reactionVideos": [], @@ -24077,7 +23960,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 12147581, "featuredRunMedia": null, "reactionVideos": [], @@ -24095,7 +23978,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 12149729, "featuredRunMedia": null, "reactionVideos": [], @@ -24113,7 +23996,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 43, + "teamId": "92", "time": 12154630, "featuredRunMedia": null, "reactionVideos": [], @@ -24131,7 +24014,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 22, + "teamId": "103", "time": 12164460, "featuredRunMedia": null, "reactionVideos": [], @@ -24149,7 +24032,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 44, + "teamId": "72", "time": 12177464, "featuredRunMedia": null, "reactionVideos": [], @@ -24167,7 +24050,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 12199875, "featuredRunMedia": null, "reactionVideos": [], @@ -24185,7 +24068,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 15, + "teamId": "6", "time": 12200648, "featuredRunMedia": null, "reactionVideos": [], @@ -24203,7 +24086,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 59, + "teamId": "71", "time": 12201058, "featuredRunMedia": null, "reactionVideos": [], @@ -24221,7 +24104,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 33, + "teamId": "52", "time": 12201055, "featuredRunMedia": null, "reactionVideos": [], @@ -24239,7 +24122,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 12205357, "featuredRunMedia": null, "reactionVideos": [], @@ -24257,7 +24140,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 12222286, "featuredRunMedia": null, "reactionVideos": [], @@ -24275,7 +24158,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 12222964, "featuredRunMedia": null, "reactionVideos": [], @@ -24293,7 +24176,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 68, + "teamId": "107", "time": 12223630, "featuredRunMedia": null, "reactionVideos": [], @@ -24311,7 +24194,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 27, + "teamId": "96", "time": 12224577, "featuredRunMedia": null, "reactionVideos": [], @@ -24329,7 +24212,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 12251413, "featuredRunMedia": null, "reactionVideos": [], @@ -24347,7 +24230,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 12271664, "featuredRunMedia": null, "reactionVideos": [], @@ -24365,7 +24248,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 33, + "teamId": "52", "time": 12274460, "featuredRunMedia": null, "reactionVideos": [], @@ -24383,7 +24266,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 29, + "teamId": "10", "time": 12276219, "featuredRunMedia": null, "reactionVideos": [], @@ -24401,7 +24284,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 12281627, "featuredRunMedia": null, "reactionVideos": [], @@ -24419,7 +24302,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 77, + "teamId": "5", "time": 12285566, "featuredRunMedia": null, "reactionVideos": [], @@ -24437,7 +24320,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 93, + "teamId": "49", "time": 12291305, "featuredRunMedia": null, "reactionVideos": [], @@ -24455,7 +24338,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 110, + "teamId": "81", "time": 12296126, "featuredRunMedia": null, "reactionVideos": [], @@ -24473,7 +24356,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 40, + "teamId": "87", "time": 12302486, "featuredRunMedia": null, "reactionVideos": [], @@ -24491,7 +24374,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 78, + "teamId": "46", "time": 12327516, "featuredRunMedia": null, "reactionVideos": [], @@ -24509,7 +24392,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 47, + "teamId": "99", "time": 12328597, "featuredRunMedia": null, "reactionVideos": [], @@ -24527,7 +24410,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 12334104, "featuredRunMedia": null, "reactionVideos": [], @@ -24545,7 +24428,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 26, + "teamId": "64", "time": 12338201, "featuredRunMedia": null, "reactionVideos": [], @@ -24563,7 +24446,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 75, + "teamId": "48", "time": 12340484, "featuredRunMedia": null, "reactionVideos": [], @@ -24581,7 +24464,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 12350071, "featuredRunMedia": null, "reactionVideos": [], @@ -24599,7 +24482,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 63, + "teamId": "42", "time": 12358881, "featuredRunMedia": null, "reactionVideos": [], @@ -24617,7 +24500,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 12369517, "featuredRunMedia": null, "reactionVideos": [], @@ -24635,7 +24518,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 12370403, "featuredRunMedia": null, "reactionVideos": [], @@ -24653,7 +24536,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 109, + "teamId": "75", "time": 12380305, "featuredRunMedia": null, "reactionVideos": [], @@ -24671,7 +24554,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 34, + "teamId": "37", "time": 12409539, "featuredRunMedia": null, "reactionVideos": [], @@ -24689,7 +24572,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 12453849, "featuredRunMedia": null, "reactionVideos": [], @@ -24707,7 +24590,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 5, + "teamId": "70", "time": 12467708, "featuredRunMedia": null, "reactionVideos": [], @@ -24725,7 +24608,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 49, + "teamId": "98", "time": 12472943, "featuredRunMedia": null, "reactionVideos": [], @@ -24743,7 +24626,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 40, + "teamId": "87", "time": 12476834, "featuredRunMedia": null, "reactionVideos": [], @@ -24761,7 +24644,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 39, + "teamId": "79", "time": 12494223, "featuredRunMedia": null, "reactionVideos": [], @@ -24779,7 +24662,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 12516635, "featuredRunMedia": null, "reactionVideos": [], @@ -24797,7 +24680,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 48, + "teamId": "106", "time": 12537201, "featuredRunMedia": null, "reactionVideos": [], @@ -24815,7 +24698,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 66, + "teamId": "117", "time": 12537246, "featuredRunMedia": null, "reactionVideos": [], @@ -24833,7 +24716,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 19, + "teamId": "91", "time": 12540447, "featuredRunMedia": null, "reactionVideos": [], @@ -24851,7 +24734,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 12547505, "featuredRunMedia": null, "reactionVideos": [], @@ -24869,7 +24752,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 51, + "teamId": "18", "time": 12560369, "featuredRunMedia": null, "reactionVideos": [], @@ -24887,7 +24770,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 12, + "teamId": "56", "time": 12567747, "featuredRunMedia": null, "reactionVideos": [], @@ -24905,7 +24788,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 12576345, "featuredRunMedia": null, "reactionVideos": [], @@ -24923,7 +24806,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 12578518, "featuredRunMedia": null, "reactionVideos": [], @@ -24941,7 +24824,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 12582575, "featuredRunMedia": null, "reactionVideos": [], @@ -24959,7 +24842,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 12604619, "featuredRunMedia": null, "reactionVideos": [], @@ -24977,7 +24860,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 12608442, "featuredRunMedia": null, "reactionVideos": [], @@ -24995,7 +24878,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 12612306, "featuredRunMedia": null, "reactionVideos": [], @@ -25013,7 +24896,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 12618697, "featuredRunMedia": null, "reactionVideos": [], @@ -25031,7 +24914,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 12635619, "featuredRunMedia": null, "reactionVideos": [], @@ -25049,7 +24932,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 12639726, "featuredRunMedia": null, "reactionVideos": [], @@ -25067,7 +24950,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 39, + "teamId": "79", "time": 12640486, "featuredRunMedia": null, "reactionVideos": [], @@ -25085,7 +24968,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 73, + "teamId": "76", "time": 12646736, "featuredRunMedia": null, "reactionVideos": [], @@ -25103,7 +24986,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 39, + "teamId": "79", "time": 12651018, "featuredRunMedia": null, "reactionVideos": [], @@ -25121,7 +25004,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 99, + "teamId": "17", "time": 12665356, "featuredRunMedia": null, "reactionVideos": [], @@ -25139,7 +25022,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 12670528, "featuredRunMedia": null, "reactionVideos": [], @@ -25157,7 +25040,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 77, + "teamId": "5", "time": 12676199, "featuredRunMedia": null, "reactionVideos": [], @@ -25175,7 +25058,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 24, + "teamId": "28", "time": 12684448, "featuredRunMedia": null, "reactionVideos": [], @@ -25193,7 +25076,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 12692641, "featuredRunMedia": null, "reactionVideos": [], @@ -25211,7 +25094,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 12694441, "featuredRunMedia": null, "reactionVideos": [], @@ -25229,7 +25112,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 12700641, "featuredRunMedia": null, "reactionVideos": [], @@ -25247,7 +25130,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 12701935, "featuredRunMedia": null, "reactionVideos": [], @@ -25265,7 +25148,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 12702640, "featuredRunMedia": null, "reactionVideos": [], @@ -25283,7 +25166,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 12709171, "featuredRunMedia": null, "reactionVideos": [], @@ -25301,7 +25184,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 60, + "teamId": "31", "time": 12711090, "featuredRunMedia": null, "reactionVideos": [], @@ -25319,7 +25202,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 12711532, "featuredRunMedia": null, "reactionVideos": [], @@ -25337,7 +25220,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 12722561, "featuredRunMedia": null, "reactionVideos": [], @@ -25355,7 +25238,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 15, + "teamId": "6", "time": 12732892, "featuredRunMedia": null, "reactionVideos": [], @@ -25373,7 +25256,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 54, + "teamId": "73", "time": 12740671, "featuredRunMedia": null, "reactionVideos": [], @@ -25391,7 +25274,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 78, + "teamId": "46", "time": 12745880, "featuredRunMedia": null, "reactionVideos": [], @@ -25409,7 +25292,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 74, + "teamId": "78", "time": 12746356, "featuredRunMedia": null, "reactionVideos": [], @@ -25427,7 +25310,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 12767317, "featuredRunMedia": null, "reactionVideos": [], @@ -25445,7 +25328,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 35, + "teamId": "32", "time": 12770996, "featuredRunMedia": null, "reactionVideos": [], @@ -25463,7 +25346,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 12794312, "featuredRunMedia": null, "reactionVideos": [], @@ -25481,7 +25364,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 62, + "teamId": "44", "time": 12799188, "featuredRunMedia": null, "reactionVideos": [], @@ -25499,7 +25382,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 32, + "teamId": "45", "time": 12803456, "featuredRunMedia": null, "reactionVideos": [], @@ -25517,7 +25400,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 12820383, "featuredRunMedia": null, "reactionVideos": [], @@ -25535,7 +25418,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 17, + "teamId": "59", "time": 12840726, "featuredRunMedia": null, "reactionVideos": [], @@ -25553,7 +25436,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 12845877, "featuredRunMedia": null, "reactionVideos": [], @@ -25571,7 +25454,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 66, + "teamId": "117", "time": 12846441, "featuredRunMedia": null, "reactionVideos": [], @@ -25589,7 +25472,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 33, + "teamId": "52", "time": 12855279, "featuredRunMedia": null, "reactionVideos": [], @@ -25607,7 +25490,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 12855884, "featuredRunMedia": null, "reactionVideos": [], @@ -25625,7 +25508,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 12886613, "featuredRunMedia": null, "reactionVideos": [], @@ -25643,7 +25526,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 12907031, "featuredRunMedia": null, "reactionVideos": [], @@ -25661,7 +25544,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 12911456, "featuredRunMedia": null, "reactionVideos": [], @@ -25679,7 +25562,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 110, + "teamId": "81", "time": 12918227, "featuredRunMedia": null, "reactionVideos": [], @@ -25697,7 +25580,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 12934463, "featuredRunMedia": null, "reactionVideos": [], @@ -25715,7 +25598,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 11, + "teamId": "69", "time": 12951109, "featuredRunMedia": null, "reactionVideos": [], @@ -25733,7 +25616,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 12958482, "featuredRunMedia": null, "reactionVideos": [], @@ -25751,7 +25634,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 12992176, "featuredRunMedia": null, "reactionVideos": [], @@ -25769,7 +25652,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 15, + "teamId": "6", "time": 13013892, "featuredRunMedia": null, "reactionVideos": [], @@ -25787,7 +25670,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 13043703, "featuredRunMedia": null, "reactionVideos": [], @@ -25805,7 +25688,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 6, + "teamId": "19", "time": 13050003, "featuredRunMedia": null, "reactionVideos": [], @@ -25823,7 +25706,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 13055414, "featuredRunMedia": null, "reactionVideos": [], @@ -25841,7 +25724,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 7, + "teamId": "65", "time": 13066673, "featuredRunMedia": null, "reactionVideos": [], @@ -25859,7 +25742,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 75, + "teamId": "48", "time": 13093421, "featuredRunMedia": null, "reactionVideos": [], @@ -25877,7 +25760,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 13108253, "featuredRunMedia": null, "reactionVideos": [], @@ -25895,7 +25778,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 71, + "teamId": "105", "time": 13109813, "featuredRunMedia": null, "reactionVideos": [], @@ -25913,7 +25796,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 87, + "teamId": "66", "time": 13118660, "featuredRunMedia": null, "reactionVideos": [], @@ -25931,7 +25814,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 97, + "teamId": "97", "time": 13142861, "featuredRunMedia": null, "reactionVideos": [], @@ -25949,7 +25832,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 13143288, "featuredRunMedia": null, "reactionVideos": [], @@ -25967,7 +25850,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 13145362, "featuredRunMedia": null, "reactionVideos": [], @@ -25985,7 +25868,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 13, + "teamId": "25", "time": 13167975, "featuredRunMedia": null, "reactionVideos": [], @@ -26003,7 +25886,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 13171476, "featuredRunMedia": null, "reactionVideos": [], @@ -26021,7 +25904,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 66, + "teamId": "117", "time": 13172653, "featuredRunMedia": null, "reactionVideos": [], @@ -26039,7 +25922,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 13212223, "featuredRunMedia": null, "reactionVideos": [], @@ -26057,7 +25940,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 13239569, "featuredRunMedia": null, "reactionVideos": [], @@ -26075,7 +25958,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 13240776, "featuredRunMedia": null, "reactionVideos": [], @@ -26093,7 +25976,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 108, + "teamId": "63", "time": 13258790, "featuredRunMedia": null, "reactionVideos": [], @@ -26111,7 +25994,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 22, + "teamId": "103", "time": 13263721, "featuredRunMedia": null, "reactionVideos": [], @@ -26129,7 +26012,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 80, + "teamId": "83", "time": 13271622, "featuredRunMedia": null, "reactionVideos": [], @@ -26147,7 +26030,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 60, + "teamId": "31", "time": 13277456, "featuredRunMedia": null, "reactionVideos": [], @@ -26165,7 +26048,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 13282170, "featuredRunMedia": null, "reactionVideos": [], @@ -26183,7 +26066,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 13282751, "featuredRunMedia": null, "reactionVideos": [], @@ -26201,7 +26084,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 13293665, "featuredRunMedia": null, "reactionVideos": [], @@ -26219,7 +26102,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 46, + "teamId": "53", "time": 13300290, "featuredRunMedia": null, "reactionVideos": [], @@ -26237,7 +26120,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 13301471, "featuredRunMedia": null, "reactionVideos": [], @@ -26255,7 +26138,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 13308108, "featuredRunMedia": null, "reactionVideos": [], @@ -26273,7 +26156,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 108, + "teamId": "63", "time": 13309516, "featuredRunMedia": null, "reactionVideos": [], @@ -26291,7 +26174,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 13319453, "featuredRunMedia": null, "reactionVideos": [], @@ -26309,7 +26192,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 97, + "teamId": "97", "time": 13322689, "featuredRunMedia": null, "reactionVideos": [], @@ -26327,7 +26210,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 13340372, "featuredRunMedia": null, "reactionVideos": [], @@ -26345,7 +26228,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 9, + "teamId": "114", "time": 13348116, "featuredRunMedia": null, "reactionVideos": [], @@ -26363,7 +26246,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 64, + "teamId": "4", "time": 13360346, "featuredRunMedia": null, "reactionVideos": [], @@ -26381,7 +26264,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 9, + "teamId": "114", "time": 13362883, "featuredRunMedia": null, "reactionVideos": [], @@ -26399,7 +26282,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 80, + "teamId": "83", "time": 13368020, "featuredRunMedia": null, "reactionVideos": [], @@ -26417,7 +26300,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 13379458, "featuredRunMedia": null, "reactionVideos": [], @@ -26435,7 +26318,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 18, + "teamId": "68", "time": 13382636, "featuredRunMedia": null, "reactionVideos": [], @@ -26453,7 +26336,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 53, + "teamId": "116", "time": 13395952, "featuredRunMedia": null, "reactionVideos": [], @@ -26471,7 +26354,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 13396460, "featuredRunMedia": null, "reactionVideos": [], @@ -26489,7 +26372,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 76, + "teamId": "9", "time": 13416343, "featuredRunMedia": null, "reactionVideos": [], @@ -26507,7 +26390,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 27, + "teamId": "96", "time": 13419760, "featuredRunMedia": null, "reactionVideos": [], @@ -26525,7 +26408,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 87, + "teamId": "66", "time": 13424287, "featuredRunMedia": null, "reactionVideos": [], @@ -26543,7 +26426,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 17, + "teamId": "59", "time": 13452228, "featuredRunMedia": null, "reactionVideos": [], @@ -26561,7 +26444,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 13457115, "featuredRunMedia": null, "reactionVideos": [], @@ -26579,7 +26462,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 13460383, "featuredRunMedia": null, "reactionVideos": [], @@ -26597,7 +26480,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 53, + "teamId": "116", "time": 13465880, "featuredRunMedia": null, "reactionVideos": [], @@ -26615,7 +26498,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 13475456, "featuredRunMedia": null, "reactionVideos": [], @@ -26633,7 +26516,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 13477367, "featuredRunMedia": null, "reactionVideos": [], @@ -26651,7 +26534,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 13485391, "featuredRunMedia": null, "reactionVideos": [], @@ -26669,7 +26552,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 13485772, "featuredRunMedia": null, "reactionVideos": [], @@ -26687,7 +26570,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 13499452, "featuredRunMedia": null, "reactionVideos": [], @@ -26705,7 +26588,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 13502633, "featuredRunMedia": null, "reactionVideos": [], @@ -26723,7 +26606,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 13508449, "featuredRunMedia": null, "reactionVideos": [], @@ -26741,7 +26624,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 13515578, "featuredRunMedia": null, "reactionVideos": [], @@ -26759,7 +26642,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 13539209, "featuredRunMedia": null, "reactionVideos": [], @@ -26777,7 +26660,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 13560045, "featuredRunMedia": null, "reactionVideos": [], @@ -26795,7 +26678,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 30, + "teamId": "7", "time": 13572495, "featuredRunMedia": null, "reactionVideos": [], @@ -26813,7 +26696,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 13586959, "featuredRunMedia": null, "reactionVideos": [], @@ -26831,7 +26714,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 23, + "teamId": "108", "time": 13590006, "featuredRunMedia": null, "reactionVideos": [], @@ -26849,7 +26732,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 13594461, "featuredRunMedia": null, "reactionVideos": [], @@ -26867,7 +26750,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 13597302, "featuredRunMedia": null, "reactionVideos": [], @@ -26885,7 +26768,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 26, + "teamId": "64", "time": 13598015, "featuredRunMedia": null, "reactionVideos": [], @@ -26903,7 +26786,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 13610563, "featuredRunMedia": null, "reactionVideos": [], @@ -26921,7 +26804,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 13613310, "featuredRunMedia": null, "reactionVideos": [], @@ -26939,7 +26822,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 13626217, "featuredRunMedia": null, "reactionVideos": [], @@ -26957,7 +26840,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 13629979, "featuredRunMedia": null, "reactionVideos": [], @@ -26975,7 +26858,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 13639439, "featuredRunMedia": null, "reactionVideos": [], @@ -26993,7 +26876,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 13670746, "featuredRunMedia": null, "reactionVideos": [], @@ -27011,7 +26894,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 51, + "teamId": "18", "time": 13671501, "featuredRunMedia": null, "reactionVideos": [], @@ -27029,7 +26912,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 17, + "teamId": "59", "time": 13677371, "featuredRunMedia": null, "reactionVideos": [], @@ -27047,7 +26930,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 79, + "teamId": "62", "time": 13681486, "featuredRunMedia": null, "reactionVideos": [], @@ -27065,7 +26948,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 13688839, "featuredRunMedia": null, "reactionVideos": [], @@ -27083,7 +26966,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 98, + "teamId": "90", "time": 13692372, "featuredRunMedia": null, "reactionVideos": [], @@ -27101,7 +26984,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 13701565, "featuredRunMedia": null, "reactionVideos": [], @@ -27119,7 +27002,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 13707052, "featuredRunMedia": null, "reactionVideos": [], @@ -27137,7 +27020,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 46, + "teamId": "53", "time": 13708488, "featuredRunMedia": null, "reactionVideos": [], @@ -27155,7 +27038,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 40, + "teamId": "87", "time": 13709298, "featuredRunMedia": null, "reactionVideos": [], @@ -27173,7 +27056,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 65, + "teamId": "23", "time": 13718311, "featuredRunMedia": null, "reactionVideos": [], @@ -27191,7 +27074,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 85, + "teamId": "61", "time": 13752296, "featuredRunMedia": null, "reactionVideos": [], @@ -27209,7 +27092,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 31, + "teamId": "33", "time": 13756056, "featuredRunMedia": null, "reactionVideos": [], @@ -27227,7 +27110,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 53, + "teamId": "116", "time": 13762353, "featuredRunMedia": null, "reactionVideos": [], @@ -27245,7 +27128,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 13763598, "featuredRunMedia": null, "reactionVideos": [], @@ -27263,7 +27146,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 82, + "teamId": "118", "time": 13774390, "featuredRunMedia": null, "reactionVideos": [], @@ -27281,7 +27164,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 89, + "teamId": "21", "time": 13788043, "featuredRunMedia": null, "reactionVideos": [], @@ -27299,7 +27182,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 13801912, "featuredRunMedia": null, "reactionVideos": [], @@ -27317,7 +27200,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 13806241, "featuredRunMedia": null, "reactionVideos": [], @@ -27335,7 +27218,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 51, + "teamId": "18", "time": 13811726, "featuredRunMedia": null, "reactionVideos": [], @@ -27353,7 +27236,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 13826034, "featuredRunMedia": null, "reactionVideos": [], @@ -27371,7 +27254,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 13838929, "featuredRunMedia": null, "reactionVideos": [], @@ -27389,7 +27272,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 10, + "teamId": "47", "time": 13842358, "featuredRunMedia": null, "reactionVideos": [], @@ -27407,7 +27290,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 8, + "teamId": "29", "time": 13843878, "featuredRunMedia": null, "reactionVideos": [], @@ -27425,7 +27308,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 13847473, "featuredRunMedia": null, "reactionVideos": [], @@ -27443,7 +27326,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 30, + "teamId": "7", "time": 13852892, "featuredRunMedia": null, "reactionVideos": [], @@ -27461,7 +27344,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 108, + "teamId": "63", "time": 13857553, "featuredRunMedia": null, "reactionVideos": [], @@ -27479,7 +27362,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 105, + "teamId": "58", "time": 13862944, "featuredRunMedia": null, "reactionVideos": [], @@ -27497,7 +27380,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 13866816, "featuredRunMedia": null, "reactionVideos": [], @@ -27515,7 +27398,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 13873800, "featuredRunMedia": null, "reactionVideos": [], @@ -27533,7 +27416,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 13889685, "featuredRunMedia": null, "reactionVideos": [], @@ -27551,7 +27434,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 113, + "teamId": "82", "time": 13891535, "featuredRunMedia": null, "reactionVideos": [], @@ -27569,7 +27452,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 13897074, "featuredRunMedia": null, "reactionVideos": [], @@ -27587,7 +27470,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 13916827, "featuredRunMedia": null, "reactionVideos": [], @@ -27605,7 +27488,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 13918670, "featuredRunMedia": null, "reactionVideos": [], @@ -27623,7 +27506,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 1, + "teamId": "102", "time": 13929780, "featuredRunMedia": null, "reactionVideos": [], @@ -27641,7 +27524,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 13932105, "featuredRunMedia": null, "reactionVideos": [], @@ -27659,7 +27542,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 79, + "teamId": "62", "time": 13934406, "featuredRunMedia": null, "reactionVideos": [], @@ -27677,7 +27560,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 38, + "teamId": "113", "time": 13937904, "featuredRunMedia": null, "reactionVideos": [], @@ -27695,7 +27578,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 13945975, "featuredRunMedia": null, "reactionVideos": [], @@ -27713,7 +27596,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 62, + "teamId": "44", "time": 13961264, "featuredRunMedia": null, "reactionVideos": [], @@ -27731,7 +27614,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 104, + "teamId": "84", "time": 13971951, "featuredRunMedia": null, "reactionVideos": [], @@ -27749,7 +27632,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 13973622, "featuredRunMedia": null, "reactionVideos": [], @@ -27767,7 +27650,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 5, + "teamId": "70", "time": 13973965, "featuredRunMedia": null, "reactionVideos": [], @@ -27785,7 +27668,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 13980143, "featuredRunMedia": null, "reactionVideos": [], @@ -27803,7 +27686,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 14020246, "featuredRunMedia": null, "reactionVideos": [], @@ -27821,7 +27704,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 14027911, "featuredRunMedia": null, "reactionVideos": [], @@ -27839,7 +27722,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 14028826, "featuredRunMedia": null, "reactionVideos": [], @@ -27857,7 +27740,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 114, + "teamId": "88", "time": 14029003, "featuredRunMedia": null, "reactionVideos": [], @@ -27875,7 +27758,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 14041380, "featuredRunMedia": null, "reactionVideos": [], @@ -27893,7 +27776,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 65, + "teamId": "23", "time": 14051573, "featuredRunMedia": null, "reactionVideos": [], @@ -27911,7 +27794,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 14056362, "featuredRunMedia": null, "reactionVideos": [], @@ -27929,7 +27812,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 14059310, "featuredRunMedia": null, "reactionVideos": [], @@ -27947,7 +27830,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 14088355, "featuredRunMedia": null, "reactionVideos": [], @@ -27965,7 +27848,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 14088966, "featuredRunMedia": null, "reactionVideos": [], @@ -27983,7 +27866,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 14118190, "featuredRunMedia": null, "reactionVideos": [], @@ -28001,7 +27884,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 14143876, "featuredRunMedia": null, "reactionVideos": [], @@ -28019,7 +27902,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 21, + "teamId": "104", "time": 14145617, "featuredRunMedia": null, "reactionVideos": [], @@ -28037,7 +27920,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14173757, "featuredRunMedia": null, "reactionVideos": [], @@ -28055,7 +27938,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 14173813, "featuredRunMedia": null, "reactionVideos": [], @@ -28073,7 +27956,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 61, + "teamId": "55", "time": 14181699, "featuredRunMedia": null, "reactionVideos": [], @@ -28091,7 +27974,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 82, + "teamId": "118", "time": 14183354, "featuredRunMedia": null, "reactionVideos": [], @@ -28109,7 +27992,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 14183896, "featuredRunMedia": null, "reactionVideos": [], @@ -28127,7 +28010,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 75, + "teamId": "48", "time": 14202701, "featuredRunMedia": null, "reactionVideos": [], @@ -28145,7 +28028,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 87, + "teamId": "66", "time": 14204091, "featuredRunMedia": null, "reactionVideos": [], @@ -28163,7 +28046,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 14216431, "featuredRunMedia": null, "reactionVideos": [], @@ -28181,7 +28064,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 14217990, "featuredRunMedia": null, "reactionVideos": [], @@ -28199,7 +28082,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 10, + "teamId": "47", "time": 14220748, "featuredRunMedia": null, "reactionVideos": [], @@ -28217,7 +28100,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14223722, "featuredRunMedia": null, "reactionVideos": [], @@ -28235,7 +28118,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 108, + "teamId": "63", "time": 14230394, "featuredRunMedia": null, "reactionVideos": [], @@ -28253,7 +28136,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 49, + "teamId": "98", "time": 14236471, "featuredRunMedia": null, "reactionVideos": [], @@ -28271,7 +28154,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14246837, "featuredRunMedia": null, "reactionVideos": [], @@ -28289,7 +28172,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14262350, "featuredRunMedia": null, "reactionVideos": [], @@ -28307,7 +28190,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 14271219, "featuredRunMedia": null, "reactionVideos": [], @@ -28325,7 +28208,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 14288225, "featuredRunMedia": null, "reactionVideos": [], @@ -28343,7 +28226,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 14292011, "featuredRunMedia": null, "reactionVideos": [], @@ -28361,7 +28244,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 31, + "teamId": "33", "time": 14313371, "featuredRunMedia": null, "reactionVideos": [], @@ -28379,7 +28262,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 14315361, "featuredRunMedia": null, "reactionVideos": [], @@ -28397,7 +28280,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 30, + "teamId": "7", "time": 14331531, "featuredRunMedia": null, "reactionVideos": [], @@ -28415,7 +28298,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 14333716, "featuredRunMedia": null, "reactionVideos": [], @@ -28433,7 +28316,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 14361378, "featuredRunMedia": null, "reactionVideos": [], @@ -28451,7 +28334,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 14362625, "featuredRunMedia": null, "reactionVideos": [], @@ -28469,7 +28352,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14363378, "featuredRunMedia": null, "reactionVideos": [], @@ -28487,7 +28370,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 5, + "teamId": "70", "time": 14375287, "featuredRunMedia": null, "reactionVideos": [], @@ -28505,7 +28388,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14391128, "featuredRunMedia": null, "reactionVideos": [], @@ -28523,7 +28406,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 14402309, "featuredRunMedia": null, "reactionVideos": [], @@ -28541,7 +28424,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 14412651, "featuredRunMedia": null, "reactionVideos": [], @@ -28559,7 +28442,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 14413202, "featuredRunMedia": null, "reactionVideos": [], @@ -28577,7 +28460,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 14423318, "featuredRunMedia": null, "reactionVideos": [], @@ -28595,7 +28478,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 14429681, "featuredRunMedia": null, "reactionVideos": [], @@ -28613,7 +28496,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 1, + "teamId": "102", "time": 14446721, "featuredRunMedia": null, "reactionVideos": [], @@ -28631,7 +28514,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14447420, "featuredRunMedia": null, "reactionVideos": [], @@ -28649,7 +28532,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14454586, "featuredRunMedia": null, "reactionVideos": [], @@ -28667,7 +28550,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 75, + "teamId": "48", "time": 14481734, "featuredRunMedia": null, "reactionVideos": [], @@ -28685,7 +28568,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 14484174, "featuredRunMedia": null, "reactionVideos": [], @@ -28703,7 +28586,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 14493341, "featuredRunMedia": null, "reactionVideos": [], @@ -28721,7 +28604,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 20, + "teamId": "95", "time": 14500011, "featuredRunMedia": null, "reactionVideos": [], @@ -28739,7 +28622,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 106, + "teamId": "110", "time": 14520168, "featuredRunMedia": null, "reactionVideos": [], @@ -28757,7 +28640,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 62, + "teamId": "44", "time": 14533216, "featuredRunMedia": null, "reactionVideos": [], @@ -28775,7 +28658,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 76, + "teamId": "9", "time": 14533701, "featuredRunMedia": null, "reactionVideos": [], @@ -28793,7 +28676,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 65, + "teamId": "23", "time": 14535124, "featuredRunMedia": null, "reactionVideos": [], @@ -28811,7 +28694,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 14535825, "featuredRunMedia": null, "reactionVideos": [], @@ -28829,7 +28712,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 94, + "teamId": "93", "time": 14536223, "featuredRunMedia": null, "reactionVideos": [], @@ -28847,7 +28730,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 31, + "teamId": "33", "time": 14538964, "featuredRunMedia": null, "reactionVideos": [], @@ -28865,7 +28748,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 14550488, "featuredRunMedia": null, "reactionVideos": [], @@ -28883,7 +28766,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 14554894, "featuredRunMedia": null, "reactionVideos": [], @@ -28901,7 +28784,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 87, + "teamId": "66", "time": 14566448, "featuredRunMedia": null, "reactionVideos": [], @@ -28919,7 +28802,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14571046, "featuredRunMedia": null, "reactionVideos": [], @@ -28937,7 +28820,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 28, + "teamId": "112", "time": 14578695, "featuredRunMedia": null, "reactionVideos": [], @@ -28955,7 +28838,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 14588260, "featuredRunMedia": null, "reactionVideos": [], @@ -28973,7 +28856,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 14603113, "featuredRunMedia": null, "reactionVideos": [], @@ -28991,7 +28874,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 14606259, "featuredRunMedia": null, "reactionVideos": [], @@ -29009,7 +28892,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 14610658, "featuredRunMedia": null, "reactionVideos": [], @@ -29027,7 +28910,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 13, + "teamId": "25", "time": 14613304, "featuredRunMedia": null, "reactionVideos": [], @@ -29045,7 +28928,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 14614181, "featuredRunMedia": null, "reactionVideos": [], @@ -29063,7 +28946,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 14617430, "featuredRunMedia": null, "reactionVideos": [], @@ -29081,7 +28964,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 98, + "teamId": "90", "time": 14635606, "featuredRunMedia": null, "reactionVideos": [], @@ -29099,7 +28982,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 108, + "teamId": "63", "time": 14639685, "featuredRunMedia": null, "reactionVideos": [], @@ -29117,7 +29000,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 48, + "teamId": "106", "time": 14643962, "featuredRunMedia": null, "reactionVideos": [], @@ -29135,7 +29018,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 28, + "teamId": "112", "time": 14646632, "featuredRunMedia": null, "reactionVideos": [], @@ -29153,7 +29036,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 4, + "teamId": "50", "time": 14666523, "featuredRunMedia": null, "reactionVideos": [], @@ -29171,7 +29054,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14675209, "featuredRunMedia": null, "reactionVideos": [], @@ -29189,7 +29072,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 75, + "teamId": "48", "time": 14683224, "featuredRunMedia": null, "reactionVideos": [], @@ -29207,7 +29090,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 27, + "teamId": "96", "time": 14686760, "featuredRunMedia": null, "reactionVideos": [], @@ -29225,7 +29108,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 14686877, "featuredRunMedia": null, "reactionVideos": [], @@ -29243,7 +29126,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14696479, "featuredRunMedia": null, "reactionVideos": [], @@ -29261,7 +29144,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 37, + "teamId": "27", "time": 14697230, "featuredRunMedia": null, "reactionVideos": [], @@ -29279,7 +29162,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 14707243, "featuredRunMedia": null, "reactionVideos": [], @@ -29297,7 +29180,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 14708276, "featuredRunMedia": null, "reactionVideos": [], @@ -29315,7 +29198,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 14712701, "featuredRunMedia": null, "reactionVideos": [], @@ -29333,7 +29216,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 14713027, "featuredRunMedia": null, "reactionVideos": [], @@ -29351,7 +29234,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 14722305, "featuredRunMedia": null, "reactionVideos": [], @@ -29369,7 +29252,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 14722702, "featuredRunMedia": null, "reactionVideos": [], @@ -29387,7 +29270,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 85, + "teamId": "61", "time": 14729311, "featuredRunMedia": null, "reactionVideos": [], @@ -29405,7 +29288,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 27, + "teamId": "96", "time": 14729447, "featuredRunMedia": null, "reactionVideos": [], @@ -29423,7 +29306,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 29, + "teamId": "10", "time": 14745546, "featuredRunMedia": null, "reactionVideos": [], @@ -29441,7 +29324,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 14761632, "featuredRunMedia": null, "reactionVideos": [], @@ -29459,7 +29342,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 14766095, "featuredRunMedia": null, "reactionVideos": [], @@ -29477,7 +29360,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 14772739, "featuredRunMedia": null, "reactionVideos": [], @@ -29495,7 +29378,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 14776117, "featuredRunMedia": null, "reactionVideos": [], @@ -29513,7 +29396,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 14781142, "featuredRunMedia": null, "reactionVideos": [], @@ -29531,7 +29414,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 78, + "teamId": "46", "time": 14790741, "featuredRunMedia": null, "reactionVideos": [], @@ -29549,7 +29432,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 14797731, "featuredRunMedia": null, "reactionVideos": [], @@ -29567,7 +29450,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 14806453, "featuredRunMedia": null, "reactionVideos": [], @@ -29585,7 +29468,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 70, + "teamId": "100", "time": 14839034, "featuredRunMedia": null, "reactionVideos": [], @@ -29603,7 +29486,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 48, + "teamId": "106", "time": 14840443, "featuredRunMedia": null, "reactionVideos": [], @@ -29621,7 +29504,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 14856825, "featuredRunMedia": null, "reactionVideos": [], @@ -29639,7 +29522,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 37, + "teamId": "27", "time": 14863404, "featuredRunMedia": null, "reactionVideos": [], @@ -29657,7 +29540,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 76, + "teamId": "9", "time": 14868423, "featuredRunMedia": null, "reactionVideos": [], @@ -29675,7 +29558,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 109, + "teamId": "75", "time": 14874090, "featuredRunMedia": null, "reactionVideos": [], @@ -29693,7 +29576,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 14877863, "featuredRunMedia": null, "reactionVideos": [], @@ -29711,7 +29594,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 14916832, "featuredRunMedia": null, "reactionVideos": [], @@ -29729,7 +29612,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 14939923, "featuredRunMedia": null, "reactionVideos": [], @@ -29747,7 +29630,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 19, + "teamId": "91", "time": 14963567, "featuredRunMedia": null, "reactionVideos": [], @@ -29765,7 +29648,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 77, + "teamId": "5", "time": 14964575, "featuredRunMedia": null, "reactionVideos": [], @@ -29783,7 +29666,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 68, + "teamId": "107", "time": 14964731, "featuredRunMedia": null, "reactionVideos": [], @@ -29801,7 +29684,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 14964876, "featuredRunMedia": null, "reactionVideos": [], @@ -29819,7 +29702,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 113, + "teamId": "82", "time": 14978090, "featuredRunMedia": null, "reactionVideos": [], @@ -29837,7 +29720,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 67, + "teamId": "115", "time": 14980206, "featuredRunMedia": null, "reactionVideos": [], @@ -29855,7 +29738,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 14992019, "featuredRunMedia": null, "reactionVideos": [], @@ -29873,7 +29756,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 15000279, "featuredRunMedia": null, "reactionVideos": [], @@ -29891,7 +29774,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 15021936, "featuredRunMedia": null, "reactionVideos": [], @@ -29909,7 +29792,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 15028332, "featuredRunMedia": null, "reactionVideos": [], @@ -29927,7 +29810,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 15035270, "featuredRunMedia": null, "reactionVideos": [], @@ -29945,7 +29828,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 74, + "teamId": "78", "time": 15037896, "featuredRunMedia": null, "reactionVideos": [], @@ -29963,7 +29846,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 15044388, "featuredRunMedia": null, "reactionVideos": [], @@ -29981,7 +29864,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 68, + "teamId": "107", "time": 15053153, "featuredRunMedia": null, "reactionVideos": [], @@ -29999,7 +29882,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 15059551, "featuredRunMedia": null, "reactionVideos": [], @@ -30017,7 +29900,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 107, + "teamId": "89", "time": 15066387, "featuredRunMedia": null, "reactionVideos": [], @@ -30035,7 +29918,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 27, + "teamId": "96", "time": 15068631, "featuredRunMedia": null, "reactionVideos": [], @@ -30053,7 +29936,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 22, + "teamId": "103", "time": 15071309, "featuredRunMedia": null, "reactionVideos": [], @@ -30071,7 +29954,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 15071431, "featuredRunMedia": null, "reactionVideos": [], @@ -30089,7 +29972,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 18, + "teamId": "68", "time": 15075651, "featuredRunMedia": null, "reactionVideos": [], @@ -30107,7 +29990,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 113, + "teamId": "82", "time": 15084441, "featuredRunMedia": null, "reactionVideos": [], @@ -30125,7 +30008,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 15088006, "featuredRunMedia": null, "reactionVideos": [], @@ -30143,7 +30026,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 15131773, "featuredRunMedia": null, "reactionVideos": [], @@ -30161,7 +30044,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 66, + "teamId": "117", "time": 15134065, "featuredRunMedia": null, "reactionVideos": [], @@ -30179,7 +30062,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 73, + "teamId": "76", "time": 15136438, "featuredRunMedia": null, "reactionVideos": [], @@ -30197,7 +30080,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 38, + "teamId": "113", "time": 15148099, "featuredRunMedia": null, "reactionVideos": [], @@ -30215,7 +30098,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 15156518, "featuredRunMedia": null, "reactionVideos": [], @@ -30233,7 +30116,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 15157261, "featuredRunMedia": null, "reactionVideos": [], @@ -30251,7 +30134,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 116, + "teamId": "39", "time": 15171751, "featuredRunMedia": null, "reactionVideos": [], @@ -30269,7 +30152,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 86, + "teamId": "38", "time": 15173012, "featuredRunMedia": null, "reactionVideos": [], @@ -30287,7 +30170,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 15177450, "featuredRunMedia": null, "reactionVideos": [], @@ -30305,7 +30188,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 84, + "teamId": "40", "time": 15193432, "featuredRunMedia": null, "reactionVideos": [], @@ -30323,7 +30206,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 16, + "teamId": "109", "time": 15209617, "featuredRunMedia": null, "reactionVideos": [], @@ -30341,7 +30224,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 39, + "teamId": "79", "time": 15224080, "featuredRunMedia": null, "reactionVideos": [], @@ -30359,7 +30242,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 104, + "teamId": "84", "time": 15265418, "featuredRunMedia": null, "reactionVideos": [], @@ -30377,7 +30260,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 15268600, "featuredRunMedia": null, "reactionVideos": [], @@ -30395,7 +30278,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 46, + "teamId": "53", "time": 15276479, "featuredRunMedia": null, "reactionVideos": [], @@ -30413,7 +30296,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 15291944, "featuredRunMedia": null, "reactionVideos": [], @@ -30431,7 +30314,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 15312611, "featuredRunMedia": null, "reactionVideos": [], @@ -30449,7 +30332,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 9, + "teamId": "114", "time": 15322076, "featuredRunMedia": null, "reactionVideos": [], @@ -30467,7 +30350,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 15335817, "featuredRunMedia": null, "reactionVideos": [], @@ -30485,7 +30368,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 62, + "teamId": "44", "time": 15341581, "featuredRunMedia": null, "reactionVideos": [], @@ -30503,7 +30386,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 15343890, "featuredRunMedia": null, "reactionVideos": [], @@ -30521,7 +30404,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 15345738, "featuredRunMedia": null, "reactionVideos": [], @@ -30539,7 +30422,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 93, + "teamId": "49", "time": 15347268, "featuredRunMedia": null, "reactionVideos": [], @@ -30557,7 +30440,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 15349227, "featuredRunMedia": null, "reactionVideos": [], @@ -30575,7 +30458,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 109, + "teamId": "75", "time": 15366914, "featuredRunMedia": null, "reactionVideos": [], @@ -30593,7 +30476,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 15388994, "featuredRunMedia": null, "reactionVideos": [], @@ -30611,7 +30494,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 48, + "teamId": "106", "time": 15398893, "featuredRunMedia": null, "reactionVideos": [], @@ -30629,7 +30512,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 15399918, "featuredRunMedia": null, "reactionVideos": [], @@ -30647,7 +30530,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 15401621, "featuredRunMedia": null, "reactionVideos": [], @@ -30665,7 +30548,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 15402294, "featuredRunMedia": null, "reactionVideos": [], @@ -30683,7 +30566,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 15415069, "featuredRunMedia": null, "reactionVideos": [], @@ -30701,7 +30584,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 81, + "teamId": "86", "time": 15429918, "featuredRunMedia": null, "reactionVideos": [], @@ -30719,7 +30602,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 61, + "teamId": "55", "time": 15441365, "featuredRunMedia": null, "reactionVideos": [], @@ -30737,7 +30620,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 15460778, "featuredRunMedia": null, "reactionVideos": [], @@ -30755,7 +30638,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 15461127, "featuredRunMedia": null, "reactionVideos": [], @@ -30773,7 +30656,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 88, + "teamId": "26", "time": 15463583, "featuredRunMedia": null, "reactionVideos": [], @@ -30791,7 +30674,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 15468004, "featuredRunMedia": null, "reactionVideos": [], @@ -30809,7 +30692,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 79, + "teamId": "62", "time": 15476713, "featuredRunMedia": null, "reactionVideos": [], @@ -30827,7 +30710,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 65, + "teamId": "23", "time": 15479880, "featuredRunMedia": null, "reactionVideos": [], @@ -30845,7 +30728,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 15481144, "featuredRunMedia": null, "reactionVideos": [], @@ -30863,7 +30746,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 107, + "teamId": "89", "time": 15489581, "featuredRunMedia": null, "reactionVideos": [], @@ -30881,7 +30764,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 83, + "teamId": "20", "time": 15496441, "featuredRunMedia": null, "reactionVideos": [], @@ -30899,7 +30782,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 15504271, "featuredRunMedia": null, "reactionVideos": [], @@ -30917,7 +30800,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 15532380, "featuredRunMedia": null, "reactionVideos": [], @@ -30935,7 +30818,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 86, + "teamId": "38", "time": 15534145, "featuredRunMedia": null, "reactionVideos": [], @@ -30953,7 +30836,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 90, + "teamId": "35", "time": 15534703, "featuredRunMedia": null, "reactionVideos": [], @@ -30971,7 +30854,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 15542854, "featuredRunMedia": null, "reactionVideos": [], @@ -30989,7 +30872,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 15547264, "featuredRunMedia": null, "reactionVideos": [], @@ -31007,7 +30890,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 76, + "teamId": "9", "time": 15556599, "featuredRunMedia": null, "reactionVideos": [], @@ -31025,7 +30908,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 97, + "teamId": "97", "time": 15560209, "featuredRunMedia": null, "reactionVideos": [], @@ -31043,7 +30926,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 15561060, "featuredRunMedia": null, "reactionVideos": [], @@ -31061,7 +30944,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 15561238, "featuredRunMedia": null, "reactionVideos": [], @@ -31079,7 +30962,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 58, + "teamId": "119", "time": 15579550, "featuredRunMedia": null, "reactionVideos": [], @@ -31097,7 +30980,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 15607630, "featuredRunMedia": null, "reactionVideos": [], @@ -31115,7 +30998,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 47, + "teamId": "99", "time": 15622629, "featuredRunMedia": null, "reactionVideos": [], @@ -31133,7 +31016,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 15633477, "featuredRunMedia": null, "reactionVideos": [], @@ -31151,7 +31034,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 15637900, "featuredRunMedia": null, "reactionVideos": [], @@ -31169,7 +31052,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 109, + "teamId": "75", "time": 15653099, "featuredRunMedia": null, "reactionVideos": [], @@ -31187,7 +31070,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 15659594, "featuredRunMedia": null, "reactionVideos": [], @@ -31205,7 +31088,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 15665354, "featuredRunMedia": null, "reactionVideos": [], @@ -31223,7 +31106,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 15685922, "featuredRunMedia": null, "reactionVideos": [], @@ -31241,7 +31124,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 15700759, "featuredRunMedia": null, "reactionVideos": [], @@ -31259,7 +31142,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 15703012, "featuredRunMedia": null, "reactionVideos": [], @@ -31277,7 +31160,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 15, + "teamId": "6", "time": 15730177, "featuredRunMedia": null, "reactionVideos": [], @@ -31295,7 +31178,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 61, + "teamId": "55", "time": 15734486, "featuredRunMedia": null, "reactionVideos": [], @@ -31313,7 +31196,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 15734757, "featuredRunMedia": null, "reactionVideos": [], @@ -31331,7 +31214,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 15740293, "featuredRunMedia": null, "reactionVideos": [], @@ -31349,7 +31232,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 15748845, "featuredRunMedia": null, "reactionVideos": [], @@ -31367,7 +31250,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 33, + "teamId": "52", "time": 15764418, "featuredRunMedia": null, "reactionVideos": [], @@ -31385,7 +31268,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 15766000, "featuredRunMedia": null, "reactionVideos": [], @@ -31403,7 +31286,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 15766416, "featuredRunMedia": null, "reactionVideos": [], @@ -31421,7 +31304,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 15776508, "featuredRunMedia": null, "reactionVideos": [], @@ -31439,7 +31322,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 43, + "teamId": "92", "time": 15790542, "featuredRunMedia": null, "reactionVideos": [], @@ -31457,7 +31340,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 69, + "teamId": "3", "time": 15809520, "featuredRunMedia": null, "reactionVideos": [], @@ -31475,7 +31358,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 15810661, "featuredRunMedia": null, "reactionVideos": [], @@ -31493,7 +31376,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 15814256, "featuredRunMedia": null, "reactionVideos": [], @@ -31511,7 +31394,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 57, + "teamId": "51", "time": 15825153, "featuredRunMedia": null, "reactionVideos": [], @@ -31529,7 +31412,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 15834213, "featuredRunMedia": null, "reactionVideos": [], @@ -31547,7 +31430,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 103, + "teamId": "24", "time": 15848932, "featuredRunMedia": null, "reactionVideos": [], @@ -31565,7 +31448,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 15850133, "featuredRunMedia": null, "reactionVideos": [], @@ -31583,7 +31466,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 15859087, "featuredRunMedia": null, "reactionVideos": [], @@ -31601,7 +31484,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 15859847, "featuredRunMedia": null, "reactionVideos": [], @@ -31619,7 +31502,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 15862362, "featuredRunMedia": null, "reactionVideos": [], @@ -31637,7 +31520,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 15868329, "featuredRunMedia": null, "reactionVideos": [], @@ -31655,7 +31538,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 15889472, "featuredRunMedia": null, "reactionVideos": [], @@ -31673,7 +31556,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 15889993, "featuredRunMedia": null, "reactionVideos": [], @@ -31691,7 +31574,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 40, + "teamId": "87", "time": 15895289, "featuredRunMedia": null, "reactionVideos": [], @@ -31709,7 +31592,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 15906661, "featuredRunMedia": null, "reactionVideos": [], @@ -31727,7 +31610,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 15910230, "featuredRunMedia": null, "reactionVideos": [], @@ -31745,7 +31628,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 15911738, "featuredRunMedia": null, "reactionVideos": [], @@ -31763,7 +31646,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 15933622, "featuredRunMedia": null, "reactionVideos": [], @@ -31781,7 +31664,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 15959631, "featuredRunMedia": null, "reactionVideos": [], @@ -31799,7 +31682,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 15977098, "featuredRunMedia": null, "reactionVideos": [], @@ -31817,7 +31700,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 15980560, "featuredRunMedia": null, "reactionVideos": [], @@ -31835,7 +31718,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 15992225, "featuredRunMedia": null, "reactionVideos": [], @@ -31853,7 +31736,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 15992597, "featuredRunMedia": null, "reactionVideos": [], @@ -31871,7 +31754,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16007952, "featuredRunMedia": null, "reactionVideos": [], @@ -31889,7 +31772,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 83, + "teamId": "20", "time": 16009621, "featuredRunMedia": null, "reactionVideos": [], @@ -31907,7 +31790,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 16010196, "featuredRunMedia": null, "reactionVideos": [], @@ -31925,7 +31808,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 16010816, "featuredRunMedia": null, "reactionVideos": [], @@ -31943,7 +31826,7 @@ "isFirstToSolveRun": false }, "problemId": "landscape", - "teamId": 48, + "teamId": "106", "time": 16010877, "featuredRunMedia": null, "reactionVideos": [], @@ -31961,7 +31844,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 2, + "teamId": "101", "time": 16013812, "featuredRunMedia": null, "reactionVideos": [], @@ -31979,7 +31862,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 16022544, "featuredRunMedia": null, "reactionVideos": [], @@ -31997,7 +31880,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 48, + "teamId": "106", "time": 16027247, "featuredRunMedia": null, "reactionVideos": [], @@ -32015,7 +31898,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 39, + "teamId": "79", "time": 16046863, "featuredRunMedia": null, "reactionVideos": [], @@ -32033,7 +31916,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 16049700, "featuredRunMedia": null, "reactionVideos": [], @@ -32051,7 +31934,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16052051, "featuredRunMedia": null, "reactionVideos": [], @@ -32069,7 +31952,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 39, + "teamId": "79", "time": 16055824, "featuredRunMedia": null, "reactionVideos": [], @@ -32087,7 +31970,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 27, + "teamId": "96", "time": 16057553, "featuredRunMedia": null, "reactionVideos": [], @@ -32105,7 +31988,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 16068409, "featuredRunMedia": null, "reactionVideos": [], @@ -32123,7 +32006,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 16068630, "featuredRunMedia": null, "reactionVideos": [], @@ -32141,7 +32024,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 28, + "teamId": "112", "time": 16072201, "featuredRunMedia": null, "reactionVideos": [], @@ -32159,7 +32042,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 16081041, "featuredRunMedia": null, "reactionVideos": [], @@ -32177,7 +32060,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 97, + "teamId": "97", "time": 16088943, "featuredRunMedia": null, "reactionVideos": [], @@ -32195,7 +32078,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 16093332, "featuredRunMedia": null, "reactionVideos": [], @@ -32213,7 +32096,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 22, + "teamId": "103", "time": 16099360, "featuredRunMedia": null, "reactionVideos": [], @@ -32231,7 +32114,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 106, + "teamId": "110", "time": 16100786, "featuredRunMedia": null, "reactionVideos": [], @@ -32249,7 +32132,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 16104845, "featuredRunMedia": null, "reactionVideos": [], @@ -32267,7 +32150,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 62, + "teamId": "44", "time": 16106673, "featuredRunMedia": null, "reactionVideos": [], @@ -32285,7 +32168,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 37, + "teamId": "27", "time": 16107020, "featuredRunMedia": null, "reactionVideos": [], @@ -32303,7 +32186,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 28, + "teamId": "112", "time": 16112349, "featuredRunMedia": null, "reactionVideos": [], @@ -32321,7 +32204,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 16114151, "featuredRunMedia": null, "reactionVideos": [], @@ -32339,7 +32222,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 16118946, "featuredRunMedia": null, "reactionVideos": [], @@ -32357,7 +32240,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 16121164, "featuredRunMedia": null, "reactionVideos": [], @@ -32375,7 +32258,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 16122621, "featuredRunMedia": null, "reactionVideos": [], @@ -32393,7 +32276,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 16122821, "featuredRunMedia": null, "reactionVideos": [], @@ -32411,7 +32294,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 28, + "teamId": "112", "time": 16123605, "featuredRunMedia": null, "reactionVideos": [], @@ -32429,7 +32312,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 95, + "teamId": "30", "time": 16129934, "featuredRunMedia": null, "reactionVideos": [], @@ -32447,7 +32330,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 16141762, "featuredRunMedia": null, "reactionVideos": [], @@ -32465,7 +32348,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 100, + "teamId": "77", "time": 16145779, "featuredRunMedia": null, "reactionVideos": [], @@ -32483,7 +32366,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 108, + "teamId": "63", "time": 16147134, "featuredRunMedia": null, "reactionVideos": [], @@ -32501,7 +32384,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 16153183, "featuredRunMedia": null, "reactionVideos": [], @@ -32519,7 +32402,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 16165679, "featuredRunMedia": null, "reactionVideos": [], @@ -32537,7 +32420,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 16168238, "featuredRunMedia": null, "reactionVideos": [], @@ -32555,7 +32438,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 16172370, "featuredRunMedia": null, "reactionVideos": [], @@ -32573,7 +32456,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 16173606, "featuredRunMedia": null, "reactionVideos": [], @@ -32591,7 +32474,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 16177569, "featuredRunMedia": null, "reactionVideos": [], @@ -32609,7 +32492,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 40, + "teamId": "87", "time": 16177915, "featuredRunMedia": null, "reactionVideos": [], @@ -32627,7 +32510,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 67, + "teamId": "115", "time": 16178552, "featuredRunMedia": null, "reactionVideos": [], @@ -32645,7 +32528,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 16186723, "featuredRunMedia": null, "reactionVideos": [], @@ -32663,7 +32546,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 108, + "teamId": "63", "time": 16192052, "featuredRunMedia": null, "reactionVideos": [], @@ -32681,7 +32564,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 18, + "teamId": "68", "time": 16193241, "featuredRunMedia": null, "reactionVideos": [], @@ -32699,7 +32582,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 16194136, "featuredRunMedia": null, "reactionVideos": [], @@ -32717,7 +32600,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 16206617, "featuredRunMedia": null, "reactionVideos": [], @@ -32735,7 +32618,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 115, + "teamId": "85", "time": 16216442, "featuredRunMedia": null, "reactionVideos": [], @@ -32753,7 +32636,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 16220772, "featuredRunMedia": null, "reactionVideos": [], @@ -32771,7 +32654,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 6, + "teamId": "19", "time": 16221691, "featuredRunMedia": null, "reactionVideos": [], @@ -32789,7 +32672,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 16223292, "featuredRunMedia": null, "reactionVideos": [], @@ -32807,7 +32690,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 29, + "teamId": "10", "time": 16226892, "featuredRunMedia": null, "reactionVideos": [], @@ -32825,7 +32708,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 114, + "teamId": "88", "time": 16230690, "featuredRunMedia": null, "reactionVideos": [], @@ -32843,7 +32726,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 2, + "teamId": "101", "time": 16236607, "featuredRunMedia": null, "reactionVideos": [], @@ -32861,7 +32744,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 16239319, "featuredRunMedia": null, "reactionVideos": [], @@ -32879,7 +32762,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 15, + "teamId": "6", "time": 16251577, "featuredRunMedia": null, "reactionVideos": [], @@ -32897,7 +32780,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 16260663, "featuredRunMedia": null, "reactionVideos": [], @@ -32915,7 +32798,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 14, + "teamId": "60", "time": 16261109, "featuredRunMedia": null, "reactionVideos": [], @@ -32933,7 +32816,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 48, + "teamId": "106", "time": 16270776, "featuredRunMedia": null, "reactionVideos": [], @@ -32951,7 +32834,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 113, + "teamId": "82", "time": 16281518, "featuredRunMedia": null, "reactionVideos": [], @@ -32969,7 +32852,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 16294195, "featuredRunMedia": null, "reactionVideos": [], @@ -32987,7 +32870,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 43, + "teamId": "92", "time": 16294682, "featuredRunMedia": null, "reactionVideos": [], @@ -33005,7 +32888,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 84, + "teamId": "40", "time": 16300021, "featuredRunMedia": null, "reactionVideos": [], @@ -33023,7 +32906,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16308347, "featuredRunMedia": null, "reactionVideos": [], @@ -33041,7 +32924,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 16317076, "featuredRunMedia": null, "reactionVideos": [], @@ -33059,7 +32942,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 56, + "teamId": "111", "time": 16319325, "featuredRunMedia": null, "reactionVideos": [], @@ -33077,7 +32960,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 16320714, "featuredRunMedia": null, "reactionVideos": [], @@ -33095,7 +32978,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16323502, "featuredRunMedia": null, "reactionVideos": [], @@ -33113,7 +32996,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 39, + "teamId": "79", "time": 16329323, "featuredRunMedia": null, "reactionVideos": [], @@ -33131,7 +33014,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 46, + "teamId": "53", "time": 16340103, "featuredRunMedia": null, "reactionVideos": [], @@ -33149,7 +33032,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 29, + "teamId": "10", "time": 16346917, "featuredRunMedia": null, "reactionVideos": [], @@ -33167,7 +33050,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 16347564, "featuredRunMedia": null, "reactionVideos": [], @@ -33185,7 +33068,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 57, + "teamId": "51", "time": 16349504, "featuredRunMedia": null, "reactionVideos": [], @@ -33203,7 +33086,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 16357827, "featuredRunMedia": null, "reactionVideos": [], @@ -33221,7 +33104,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 29, + "teamId": "10", "time": 16362259, "featuredRunMedia": null, "reactionVideos": [], @@ -33239,7 +33122,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16364912, "featuredRunMedia": null, "reactionVideos": [], @@ -33257,7 +33140,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 93, + "teamId": "49", "time": 16364957, "featuredRunMedia": null, "reactionVideos": [], @@ -33275,7 +33158,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 4, + "teamId": "50", "time": 16369425, "featuredRunMedia": null, "reactionVideos": [], @@ -33293,7 +33176,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16379759, "featuredRunMedia": null, "reactionVideos": [], @@ -33311,7 +33194,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 116, + "teamId": "39", "time": 16381078, "featuredRunMedia": null, "reactionVideos": [], @@ -33329,7 +33212,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 16382146, "featuredRunMedia": null, "reactionVideos": [], @@ -33347,7 +33230,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 74, + "teamId": "78", "time": 16386969, "featuredRunMedia": null, "reactionVideos": [], @@ -33365,7 +33248,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 16403624, "featuredRunMedia": null, "reactionVideos": [], @@ -33383,7 +33266,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 16407728, "featuredRunMedia": null, "reactionVideos": [], @@ -33401,7 +33284,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 16411955, "featuredRunMedia": null, "reactionVideos": [], @@ -33419,7 +33302,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16412504, "featuredRunMedia": null, "reactionVideos": [], @@ -33437,7 +33320,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 16418141, "featuredRunMedia": null, "reactionVideos": [], @@ -33455,7 +33338,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 96, + "teamId": "1", "time": 16425687, "featuredRunMedia": null, "reactionVideos": [], @@ -33473,7 +33356,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 16431043, "featuredRunMedia": null, "reactionVideos": [], @@ -33491,7 +33374,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 16440816, "featuredRunMedia": null, "reactionVideos": [], @@ -33509,7 +33392,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 29, + "teamId": "10", "time": 16441220, "featuredRunMedia": null, "reactionVideos": [], @@ -33527,7 +33410,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16449450, "featuredRunMedia": null, "reactionVideos": [], @@ -33545,7 +33428,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 16451337, "featuredRunMedia": null, "reactionVideos": [], @@ -33563,7 +33446,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 16454593, "featuredRunMedia": null, "reactionVideos": [], @@ -33581,7 +33464,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 59, + "teamId": "71", "time": 16459641, "featuredRunMedia": null, "reactionVideos": [], @@ -33599,7 +33482,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16466149, "featuredRunMedia": null, "reactionVideos": [], @@ -33617,7 +33500,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 16468874, "featuredRunMedia": null, "reactionVideos": [], @@ -33635,7 +33518,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 28, + "teamId": "112", "time": 16469807, "featuredRunMedia": null, "reactionVideos": [], @@ -33653,7 +33536,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 57, + "teamId": "51", "time": 16487673, "featuredRunMedia": null, "reactionVideos": [], @@ -33671,7 +33554,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 17, + "teamId": "59", "time": 16488213, "featuredRunMedia": null, "reactionVideos": [], @@ -33689,7 +33572,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 16497109, "featuredRunMedia": null, "reactionVideos": [], @@ -33707,7 +33590,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 115, + "teamId": "85", "time": 16504767, "featuredRunMedia": null, "reactionVideos": [], @@ -33725,7 +33608,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 47, + "teamId": "99", "time": 16505302, "featuredRunMedia": null, "reactionVideos": [], @@ -33743,7 +33626,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 16512915, "featuredRunMedia": null, "reactionVideos": [], @@ -33761,7 +33644,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 16515581, "featuredRunMedia": null, "reactionVideos": [], @@ -33779,7 +33662,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 16516513, "featuredRunMedia": null, "reactionVideos": [], @@ -33797,7 +33680,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 16521735, "featuredRunMedia": null, "reactionVideos": [], @@ -33815,7 +33698,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 47, + "teamId": "99", "time": 16532555, "featuredRunMedia": null, "reactionVideos": [], @@ -33833,7 +33716,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 16544714, "featuredRunMedia": null, "reactionVideos": [], @@ -33851,7 +33734,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16548633, "featuredRunMedia": null, "reactionVideos": [], @@ -33869,7 +33752,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 73, + "teamId": "76", "time": 16552886, "featuredRunMedia": null, "reactionVideos": [], @@ -33887,7 +33770,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 105, + "teamId": "58", "time": 16559241, "featuredRunMedia": null, "reactionVideos": [], @@ -33905,7 +33788,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 53, + "teamId": "116", "time": 16562420, "featuredRunMedia": null, "reactionVideos": [], @@ -33923,7 +33806,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 16569335, "featuredRunMedia": null, "reactionVideos": [], @@ -33941,7 +33824,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 16577442, "featuredRunMedia": null, "reactionVideos": [], @@ -33959,7 +33842,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 16587995, "featuredRunMedia": null, "reactionVideos": [], @@ -33977,7 +33860,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16588287, "featuredRunMedia": null, "reactionVideos": [], @@ -33995,7 +33878,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 16589538, "featuredRunMedia": null, "reactionVideos": [], @@ -34013,7 +33896,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 22, + "teamId": "103", "time": 16595281, "featuredRunMedia": null, "reactionVideos": [], @@ -34031,7 +33914,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 47, + "teamId": "99", "time": 16600480, "featuredRunMedia": null, "reactionVideos": [], @@ -34049,7 +33932,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 89, + "teamId": "21", "time": 16614561, "featuredRunMedia": null, "reactionVideos": [], @@ -34067,7 +33950,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 16617874, "featuredRunMedia": null, "reactionVideos": [], @@ -34085,7 +33968,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 46, + "teamId": "53", "time": 16625772, "featuredRunMedia": null, "reactionVideos": [], @@ -34103,7 +33986,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 16627065, "featuredRunMedia": null, "reactionVideos": [], @@ -34121,7 +34004,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 70, + "teamId": "100", "time": 16647836, "featuredRunMedia": null, "reactionVideos": [], @@ -34139,7 +34022,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 16655433, "featuredRunMedia": null, "reactionVideos": [], @@ -34157,7 +34040,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 16665374, "featuredRunMedia": null, "reactionVideos": [], @@ -34175,7 +34058,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 16666900, "featuredRunMedia": null, "reactionVideos": [], @@ -34193,7 +34076,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 16670203, "featuredRunMedia": null, "reactionVideos": [], @@ -34211,7 +34094,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 83, + "teamId": "20", "time": 16678958, "featuredRunMedia": null, "reactionVideos": [], @@ -34229,7 +34112,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 16685581, "featuredRunMedia": null, "reactionVideos": [], @@ -34247,7 +34130,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 16686966, "featuredRunMedia": null, "reactionVideos": [], @@ -34265,7 +34148,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 16687596, "featuredRunMedia": null, "reactionVideos": [], @@ -34283,7 +34166,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 16692881, "featuredRunMedia": null, "reactionVideos": [], @@ -34301,7 +34184,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 16702415, "featuredRunMedia": null, "reactionVideos": [], @@ -34319,7 +34202,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 16706032, "featuredRunMedia": null, "reactionVideos": [], @@ -34337,7 +34220,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 16713879, "featuredRunMedia": null, "reactionVideos": [], @@ -34355,7 +34238,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 93, + "teamId": "49", "time": 16720448, "featuredRunMedia": null, "reactionVideos": [], @@ -34373,7 +34256,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 16722736, "featuredRunMedia": null, "reactionVideos": [], @@ -34391,7 +34274,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 16727215, "featuredRunMedia": null, "reactionVideos": [], @@ -34409,7 +34292,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 34, + "teamId": "37", "time": 16736841, "featuredRunMedia": null, "reactionVideos": [], @@ -34427,7 +34310,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 16741913, "featuredRunMedia": null, "reactionVideos": [], @@ -34445,7 +34328,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 51, + "teamId": "18", "time": 16747442, "featuredRunMedia": null, "reactionVideos": [], @@ -34463,7 +34346,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 29, + "teamId": "10", "time": 16756215, "featuredRunMedia": null, "reactionVideos": [], @@ -34481,7 +34364,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 3, + "teamId": "67", "time": 16757338, "featuredRunMedia": null, "reactionVideos": [], @@ -34499,7 +34382,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 40, + "teamId": "87", "time": 16769983, "featuredRunMedia": null, "reactionVideos": [], @@ -34517,7 +34400,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 32, + "teamId": "45", "time": 16771184, "featuredRunMedia": null, "reactionVideos": [], @@ -34535,7 +34418,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 16775136, "featuredRunMedia": null, "reactionVideos": [], @@ -34553,7 +34436,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 16780725, "featuredRunMedia": null, "reactionVideos": [], @@ -34571,7 +34454,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 22, + "teamId": "103", "time": 16782637, "featuredRunMedia": null, "reactionVideos": [], @@ -34589,7 +34472,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 5, + "teamId": "70", "time": 16783609, "featuredRunMedia": null, "reactionVideos": [], @@ -34607,7 +34490,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 16788242, "featuredRunMedia": null, "reactionVideos": [], @@ -34625,7 +34508,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 16798739, "featuredRunMedia": null, "reactionVideos": [], @@ -34643,7 +34526,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 97, + "teamId": "97", "time": 16800827, "featuredRunMedia": null, "reactionVideos": [], @@ -34661,7 +34544,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 16804335, "featuredRunMedia": null, "reactionVideos": [], @@ -34679,7 +34562,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 16811237, "featuredRunMedia": null, "reactionVideos": [], @@ -34697,7 +34580,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 16812701, "featuredRunMedia": null, "reactionVideos": [], @@ -34715,7 +34598,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 16814350, "featuredRunMedia": null, "reactionVideos": [], @@ -34733,7 +34616,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 16819352, "featuredRunMedia": null, "reactionVideos": [], @@ -34751,7 +34634,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 16821115, "featuredRunMedia": null, "reactionVideos": [], @@ -34769,7 +34652,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 39, + "teamId": "79", "time": 16822464, "featuredRunMedia": null, "reactionVideos": [], @@ -34787,7 +34670,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 16823087, "featuredRunMedia": null, "reactionVideos": [], @@ -34805,7 +34688,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 16835746, "featuredRunMedia": null, "reactionVideos": [], @@ -34823,7 +34706,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 16835819, "featuredRunMedia": null, "reactionVideos": [], @@ -34841,7 +34724,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 16837787, "featuredRunMedia": null, "reactionVideos": [], @@ -34859,7 +34742,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 16838983, "featuredRunMedia": null, "reactionVideos": [], @@ -34877,7 +34760,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 16839146, "featuredRunMedia": null, "reactionVideos": [], @@ -34895,7 +34778,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 16842090, "featuredRunMedia": null, "reactionVideos": [], @@ -34913,7 +34796,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 70, + "teamId": "100", "time": 16844161, "featuredRunMedia": null, "reactionVideos": [], @@ -34931,7 +34814,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 48, + "teamId": "106", "time": 16846195, "featuredRunMedia": null, "reactionVideos": [], @@ -34949,7 +34832,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 47, + "teamId": "99", "time": 16856795, "featuredRunMedia": null, "reactionVideos": [], @@ -34967,7 +34850,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 16858572, "featuredRunMedia": null, "reactionVideos": [], @@ -34985,7 +34868,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 16875347, "featuredRunMedia": null, "reactionVideos": [], @@ -35003,7 +34886,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 83, + "teamId": "20", "time": 16877652, "featuredRunMedia": null, "reactionVideos": [], @@ -35021,7 +34904,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 16886742, "featuredRunMedia": null, "reactionVideos": [], @@ -35039,7 +34922,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 16892304, "featuredRunMedia": null, "reactionVideos": [], @@ -35057,7 +34940,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 41, + "teamId": "22", "time": 16904507, "featuredRunMedia": null, "reactionVideos": [], @@ -35075,7 +34958,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 69, + "teamId": "3", "time": 16906688, "featuredRunMedia": null, "reactionVideos": [], @@ -35093,7 +34976,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 43, + "teamId": "92", "time": 16922865, "featuredRunMedia": null, "reactionVideos": [], @@ -35111,7 +34994,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 16926202, "featuredRunMedia": null, "reactionVideos": [], @@ -35129,7 +35012,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 16934733, "featuredRunMedia": null, "reactionVideos": [], @@ -35147,7 +35030,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 16938608, "featuredRunMedia": null, "reactionVideos": [], @@ -35165,7 +35048,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 16948573, "featuredRunMedia": null, "reactionVideos": [], @@ -35183,7 +35066,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 16949474, "featuredRunMedia": null, "reactionVideos": [], @@ -35201,7 +35084,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 16961963, "featuredRunMedia": null, "reactionVideos": [], @@ -35219,7 +35102,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 16969997, "featuredRunMedia": null, "reactionVideos": [], @@ -35237,7 +35120,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 15, + "teamId": "6", "time": 16971001, "featuredRunMedia": null, "reactionVideos": [], @@ -35255,7 +35138,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 16976049, "featuredRunMedia": null, "reactionVideos": [], @@ -35273,7 +35156,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 16992102, "featuredRunMedia": null, "reactionVideos": [], @@ -35291,7 +35174,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 39, + "teamId": "79", "time": 16994227, "featuredRunMedia": null, "reactionVideos": [], @@ -35309,7 +35192,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 16994499, "featuredRunMedia": null, "reactionVideos": [], @@ -35327,7 +35210,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 82, + "teamId": "118", "time": 17006421, "featuredRunMedia": null, "reactionVideos": [], @@ -35345,7 +35228,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 17008568, "featuredRunMedia": null, "reactionVideos": [], @@ -35363,7 +35246,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 41, + "teamId": "22", "time": 17014563, "featuredRunMedia": null, "reactionVideos": [], @@ -35381,7 +35264,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17022309, "featuredRunMedia": null, "reactionVideos": [], @@ -35399,7 +35282,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 24, + "teamId": "28", "time": 17031776, "featuredRunMedia": null, "reactionVideos": [], @@ -35417,7 +35300,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 115, + "teamId": "85", "time": 17039979, "featuredRunMedia": null, "reactionVideos": [], @@ -35435,7 +35318,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 17041889, "featuredRunMedia": null, "reactionVideos": [], @@ -35453,7 +35336,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 17043461, "featuredRunMedia": null, "reactionVideos": [], @@ -35471,7 +35354,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 34, + "teamId": "37", "time": 17045403, "featuredRunMedia": null, "reactionVideos": [], @@ -35489,7 +35372,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 82, + "teamId": "118", "time": 17057914, "featuredRunMedia": null, "reactionVideos": [], @@ -35507,7 +35390,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17060073, "featuredRunMedia": null, "reactionVideos": [], @@ -35525,7 +35408,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 86, + "teamId": "38", "time": 17078896, "featuredRunMedia": null, "reactionVideos": [], @@ -35543,7 +35426,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 89, + "teamId": "21", "time": 17092777, "featuredRunMedia": null, "reactionVideos": [], @@ -35561,7 +35444,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17103086, "featuredRunMedia": null, "reactionVideos": [], @@ -35579,7 +35462,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 10, + "teamId": "47", "time": 17105315, "featuredRunMedia": null, "reactionVideos": [], @@ -35597,7 +35480,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 17108603, "featuredRunMedia": null, "reactionVideos": [], @@ -35615,7 +35498,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 17109285, "featuredRunMedia": null, "reactionVideos": [], @@ -35633,7 +35516,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 3, + "teamId": "67", "time": 17109624, "featuredRunMedia": null, "reactionVideos": [], @@ -35651,7 +35534,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 17110990, "featuredRunMedia": null, "reactionVideos": [], @@ -35669,7 +35552,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 83, + "teamId": "20", "time": 17111048, "featuredRunMedia": null, "reactionVideos": [], @@ -35687,7 +35570,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17111294, "featuredRunMedia": null, "reactionVideos": [], @@ -35705,7 +35588,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 17113209, "featuredRunMedia": null, "reactionVideos": [], @@ -35723,7 +35606,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 17123483, "featuredRunMedia": null, "reactionVideos": [], @@ -35741,7 +35624,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 17123510, "featuredRunMedia": null, "reactionVideos": [], @@ -35759,7 +35642,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 87, + "teamId": "66", "time": 17123946, "featuredRunMedia": null, "reactionVideos": [], @@ -35777,7 +35660,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 86, + "teamId": "38", "time": 17131028, "featuredRunMedia": null, "reactionVideos": [], @@ -35795,7 +35678,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 106, + "teamId": "110", "time": 17134645, "featuredRunMedia": null, "reactionVideos": [], @@ -35813,7 +35696,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 77, + "teamId": "5", "time": 17134790, "featuredRunMedia": null, "reactionVideos": [], @@ -35831,7 +35714,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 40, + "teamId": "87", "time": 17136585, "featuredRunMedia": null, "reactionVideos": [], @@ -35849,7 +35732,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 57, + "teamId": "51", "time": 17138065, "featuredRunMedia": null, "reactionVideos": [], @@ -35867,7 +35750,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 113, + "teamId": "82", "time": 17141703, "featuredRunMedia": null, "reactionVideos": [], @@ -35885,7 +35768,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 85, + "teamId": "61", "time": 17142910, "featuredRunMedia": null, "reactionVideos": [], @@ -35903,7 +35786,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 17144955, "featuredRunMedia": null, "reactionVideos": [], @@ -35921,7 +35804,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17149404, "featuredRunMedia": null, "reactionVideos": [], @@ -35939,7 +35822,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 17150090, "featuredRunMedia": null, "reactionVideos": [], @@ -35957,7 +35840,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 17150664, "featuredRunMedia": null, "reactionVideos": [], @@ -35975,7 +35858,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 17157640, "featuredRunMedia": null, "reactionVideos": [], @@ -35993,7 +35876,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 17158113, "featuredRunMedia": null, "reactionVideos": [], @@ -36011,7 +35894,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 17160111, "featuredRunMedia": null, "reactionVideos": [], @@ -36029,7 +35912,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 17160456, "featuredRunMedia": null, "reactionVideos": [], @@ -36047,7 +35930,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 34, + "teamId": "37", "time": 17168019, "featuredRunMedia": null, "reactionVideos": [], @@ -36065,7 +35948,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 17171614, "featuredRunMedia": null, "reactionVideos": [], @@ -36083,7 +35966,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 20, + "teamId": "95", "time": 17171752, "featuredRunMedia": null, "reactionVideos": [], @@ -36101,7 +35984,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17176978, "featuredRunMedia": null, "reactionVideos": [], @@ -36119,7 +36002,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 17177381, "featuredRunMedia": null, "reactionVideos": [], @@ -36137,7 +36020,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 17187850, "featuredRunMedia": null, "reactionVideos": [], @@ -36155,7 +36038,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17193740, "featuredRunMedia": null, "reactionVideos": [], @@ -36173,7 +36056,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 83, + "teamId": "20", "time": 17196303, "featuredRunMedia": null, "reactionVideos": [], @@ -36191,7 +36074,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 110, + "teamId": "81", "time": 17203705, "featuredRunMedia": null, "reactionVideos": [], @@ -36209,7 +36092,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 43, + "teamId": "92", "time": 17204859, "featuredRunMedia": null, "reactionVideos": [], @@ -36227,7 +36110,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 28, + "teamId": "112", "time": 17214184, "featuredRunMedia": null, "reactionVideos": [], @@ -36245,7 +36128,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17216064, "featuredRunMedia": null, "reactionVideos": [], @@ -36263,7 +36146,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 80, + "teamId": "83", "time": 17217906, "featuredRunMedia": null, "reactionVideos": [], @@ -36281,7 +36164,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 98, + "teamId": "90", "time": 17228155, "featuredRunMedia": null, "reactionVideos": [], @@ -36299,7 +36182,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17235607, "featuredRunMedia": null, "reactionVideos": [], @@ -36317,7 +36200,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17237727, "featuredRunMedia": null, "reactionVideos": [], @@ -36335,7 +36218,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 35, + "teamId": "32", "time": 17241020, "featuredRunMedia": null, "reactionVideos": [], @@ -36353,7 +36236,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17241744, "featuredRunMedia": null, "reactionVideos": [], @@ -36371,7 +36254,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 96, + "teamId": "1", "time": 17246187, "featuredRunMedia": null, "reactionVideos": [], @@ -36389,7 +36272,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 100, + "teamId": "77", "time": 17250942, "featuredRunMedia": null, "reactionVideos": [], @@ -36407,7 +36290,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17259626, "featuredRunMedia": null, "reactionVideos": [], @@ -36425,7 +36308,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 17259631, "featuredRunMedia": null, "reactionVideos": [], @@ -36443,7 +36326,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17260993, "featuredRunMedia": null, "reactionVideos": [], @@ -36461,7 +36344,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 58, + "teamId": "119", "time": 17262797, "featuredRunMedia": null, "reactionVideos": [], @@ -36479,7 +36362,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 17, + "teamId": "59", "time": 17263937, "featuredRunMedia": null, "reactionVideos": [], @@ -36497,7 +36380,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17271083, "featuredRunMedia": null, "reactionVideos": [], @@ -36515,7 +36398,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 38, + "teamId": "113", "time": 17273090, "featuredRunMedia": null, "reactionVideos": [], @@ -36533,7 +36416,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 17276420, "featuredRunMedia": null, "reactionVideos": [], @@ -36551,7 +36434,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 31, + "teamId": "33", "time": 17280177, "featuredRunMedia": null, "reactionVideos": [], @@ -36569,7 +36452,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 5, + "teamId": "70", "time": 17281676, "featuredRunMedia": null, "reactionVideos": [], @@ -36587,7 +36470,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 3, + "teamId": "67", "time": 17282294, "featuredRunMedia": null, "reactionVideos": [], @@ -36605,7 +36488,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17282904, "featuredRunMedia": null, "reactionVideos": [], @@ -36623,7 +36506,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 39, + "teamId": "79", "time": 17288184, "featuredRunMedia": null, "reactionVideos": [], @@ -36641,7 +36524,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 77, + "teamId": "5", "time": 17288516, "featuredRunMedia": null, "reactionVideos": [], @@ -36659,7 +36542,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17292085, "featuredRunMedia": null, "reactionVideos": [], @@ -36677,7 +36560,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 17292513, "featuredRunMedia": null, "reactionVideos": [], @@ -36695,7 +36578,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17294195, "featuredRunMedia": null, "reactionVideos": [], @@ -36713,7 +36596,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 105, + "teamId": "58", "time": 17296945, "featuredRunMedia": null, "reactionVideos": [], @@ -36731,7 +36614,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 72, + "teamId": "13", "time": 17304747, "featuredRunMedia": null, "reactionVideos": [], @@ -36749,7 +36632,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17306846, "featuredRunMedia": null, "reactionVideos": [], @@ -36767,7 +36650,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 54, + "teamId": "73", "time": 17319374, "featuredRunMedia": null, "reactionVideos": [], @@ -36785,7 +36668,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 76, + "teamId": "9", "time": 17319368, "featuredRunMedia": null, "reactionVideos": [], @@ -36803,7 +36686,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17320855, "featuredRunMedia": null, "reactionVideos": [], @@ -36821,7 +36704,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 91, + "teamId": "54", "time": 17323862, "featuredRunMedia": null, "reactionVideos": [], @@ -36839,7 +36722,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17326465, "featuredRunMedia": null, "reactionVideos": [], @@ -36857,7 +36740,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 17328155, "featuredRunMedia": null, "reactionVideos": [], @@ -36875,7 +36758,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17329196, "featuredRunMedia": null, "reactionVideos": [], @@ -36893,7 +36776,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17344813, "featuredRunMedia": null, "reactionVideos": [], @@ -36911,7 +36794,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 36, + "teamId": "80", "time": 17346253, "featuredRunMedia": null, "reactionVideos": [], @@ -36929,7 +36812,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17347612, "featuredRunMedia": null, "reactionVideos": [], @@ -36947,7 +36830,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 3, + "teamId": "67", "time": 17348368, "featuredRunMedia": null, "reactionVideos": [], @@ -36965,7 +36848,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 77, + "teamId": "5", "time": 17350880, "featuredRunMedia": null, "reactionVideos": [], @@ -36983,7 +36866,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17351534, "featuredRunMedia": null, "reactionVideos": [], @@ -37001,7 +36884,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17353939, "featuredRunMedia": null, "reactionVideos": [], @@ -37019,7 +36902,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 71, + "teamId": "105", "time": 17354906, "featuredRunMedia": null, "reactionVideos": [], @@ -37037,7 +36920,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 17357298, "featuredRunMedia": null, "reactionVideos": [], @@ -37055,7 +36938,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 17358378, "featuredRunMedia": null, "reactionVideos": [], @@ -37073,7 +36956,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 17363860, "featuredRunMedia": null, "reactionVideos": [], @@ -37091,7 +36974,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 36, + "teamId": "80", "time": 17366931, "featuredRunMedia": null, "reactionVideos": [], @@ -37109,7 +36992,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17370763, "featuredRunMedia": null, "reactionVideos": [], @@ -37127,7 +37010,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17371834, "featuredRunMedia": null, "reactionVideos": [], @@ -37145,7 +37028,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17372297, "featuredRunMedia": null, "reactionVideos": [], @@ -37163,7 +37046,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 84, + "teamId": "40", "time": 17376297, "featuredRunMedia": null, "reactionVideos": [], @@ -37181,7 +37064,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17380068, "featuredRunMedia": null, "reactionVideos": [], @@ -37199,7 +37082,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 43, + "teamId": "92", "time": 17381128, "featuredRunMedia": null, "reactionVideos": [], @@ -37217,7 +37100,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 17382052, "featuredRunMedia": null, "reactionVideos": [], @@ -37235,7 +37118,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 41, + "teamId": "22", "time": 17382205, "featuredRunMedia": null, "reactionVideos": [], @@ -37253,7 +37136,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 46, + "teamId": "53", "time": 17385936, "featuredRunMedia": null, "reactionVideos": [], @@ -37271,7 +37154,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17389049, "featuredRunMedia": null, "reactionVideos": [], @@ -37289,7 +37172,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 17391471, "featuredRunMedia": null, "reactionVideos": [], @@ -37307,7 +37190,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 17396381, "featuredRunMedia": null, "reactionVideos": [], @@ -37325,7 +37208,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17402904, "featuredRunMedia": null, "reactionVideos": [], @@ -37343,7 +37226,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 15, + "teamId": "6", "time": 17405601, "featuredRunMedia": null, "reactionVideos": [], @@ -37361,7 +37244,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 17405938, "featuredRunMedia": null, "reactionVideos": [], @@ -37379,7 +37262,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 25, + "teamId": "94", "time": 17406450, "featuredRunMedia": null, "reactionVideos": [], @@ -37397,7 +37280,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 22, + "teamId": "103", "time": 17407694, "featuredRunMedia": null, "reactionVideos": [], @@ -37415,7 +37298,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 66, + "teamId": "117", "time": 17407957, "featuredRunMedia": null, "reactionVideos": [], @@ -37433,7 +37316,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17409244, "featuredRunMedia": null, "reactionVideos": [], @@ -37451,7 +37334,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 55, + "teamId": "43", "time": 17410005, "featuredRunMedia": null, "reactionVideos": [], @@ -37469,7 +37352,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 90, + "teamId": "35", "time": 17410147, "featuredRunMedia": null, "reactionVideos": [], @@ -37487,7 +37370,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 17412339, "featuredRunMedia": null, "reactionVideos": [], @@ -37505,7 +37388,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 74, + "teamId": "78", "time": 17420197, "featuredRunMedia": null, "reactionVideos": [], @@ -37523,7 +37406,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17427974, "featuredRunMedia": null, "reactionVideos": [], @@ -37541,7 +37424,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 86, + "teamId": "38", "time": 17438072, "featuredRunMedia": null, "reactionVideos": [], @@ -37559,7 +37442,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 17440469, "featuredRunMedia": null, "reactionVideos": [], @@ -37577,7 +37460,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 77, + "teamId": "5", "time": 17442244, "featuredRunMedia": null, "reactionVideos": [], @@ -37595,7 +37478,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17442485, "featuredRunMedia": null, "reactionVideos": [], @@ -37613,7 +37496,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17442599, "featuredRunMedia": null, "reactionVideos": [], @@ -37631,7 +37514,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17443190, "featuredRunMedia": null, "reactionVideos": [], @@ -37649,7 +37532,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 17446336, "featuredRunMedia": null, "reactionVideos": [], @@ -37667,7 +37550,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 38, + "teamId": "113", "time": 17446444, "featuredRunMedia": null, "reactionVideos": [], @@ -37685,7 +37568,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 17453597, "featuredRunMedia": null, "reactionVideos": [], @@ -37703,7 +37586,7 @@ "isFirstToSolveRun": false }, "problemId": "space", - "teamId": 7, + "teamId": "65", "time": 17453662, "featuredRunMedia": null, "reactionVideos": [], @@ -37721,7 +37604,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 32, + "teamId": "45", "time": 17455481, "featuredRunMedia": null, "reactionVideos": [], @@ -37739,7 +37622,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 17462077, "featuredRunMedia": null, "reactionVideos": [], @@ -37757,7 +37640,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17462651, "featuredRunMedia": null, "reactionVideos": [], @@ -37775,7 +37658,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 3, + "teamId": "67", "time": 17465453, "featuredRunMedia": null, "reactionVideos": [], @@ -37793,7 +37676,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 17465819, "featuredRunMedia": null, "reactionVideos": [], @@ -37811,7 +37694,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17466973, "featuredRunMedia": null, "reactionVideos": [], @@ -37829,7 +37712,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 17478500, "featuredRunMedia": null, "reactionVideos": [], @@ -37847,7 +37730,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17484131, "featuredRunMedia": null, "reactionVideos": [], @@ -37865,7 +37748,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 17485065, "featuredRunMedia": null, "reactionVideos": [], @@ -37883,7 +37766,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 79, + "teamId": "62", "time": 17485814, "featuredRunMedia": null, "reactionVideos": [], @@ -37901,7 +37784,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17486595, "featuredRunMedia": null, "reactionVideos": [], @@ -37919,7 +37802,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 15, + "teamId": "6", "time": 17487202, "featuredRunMedia": null, "reactionVideos": [], @@ -37937,7 +37820,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 72, + "teamId": "13", "time": 17495875, "featuredRunMedia": null, "reactionVideos": [], @@ -37955,7 +37838,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 62, + "teamId": "44", "time": 17497868, "featuredRunMedia": null, "reactionVideos": [], @@ -37973,7 +37856,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 80, + "teamId": "83", "time": 17500158, "featuredRunMedia": null, "reactionVideos": [], @@ -37991,7 +37874,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17501060, "featuredRunMedia": null, "reactionVideos": [], @@ -38009,7 +37892,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 17501602, "featuredRunMedia": null, "reactionVideos": [], @@ -38027,7 +37910,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 76, + "teamId": "9", "time": 17502996, "featuredRunMedia": null, "reactionVideos": [], @@ -38045,7 +37928,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17504034, "featuredRunMedia": null, "reactionVideos": [], @@ -38063,7 +37946,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17504860, "featuredRunMedia": null, "reactionVideos": [], @@ -38081,7 +37964,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17510939, "featuredRunMedia": null, "reactionVideos": [], @@ -38099,7 +37982,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17514262, "featuredRunMedia": null, "reactionVideos": [], @@ -38117,7 +38000,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17514861, "featuredRunMedia": null, "reactionVideos": [], @@ -38135,7 +38018,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17519887, "featuredRunMedia": null, "reactionVideos": [], @@ -38153,7 +38036,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 38, + "teamId": "113", "time": 17529902, "featuredRunMedia": null, "reactionVideos": [], @@ -38171,7 +38054,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 62, + "teamId": "44", "time": 17531548, "featuredRunMedia": null, "reactionVideos": [], @@ -38189,7 +38072,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17535821, "featuredRunMedia": null, "reactionVideos": [], @@ -38207,7 +38090,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17538050, "featuredRunMedia": null, "reactionVideos": [], @@ -38225,7 +38108,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17538883, "featuredRunMedia": null, "reactionVideos": [], @@ -38243,7 +38126,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 77, + "teamId": "5", "time": 17540650, "featuredRunMedia": null, "reactionVideos": [], @@ -38261,7 +38144,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 31, + "teamId": "33", "time": 17542751, "featuredRunMedia": null, "reactionVideos": [], @@ -38279,7 +38162,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 17542872, "featuredRunMedia": null, "reactionVideos": [], @@ -38297,7 +38180,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 51, + "teamId": "18", "time": 17544165, "featuredRunMedia": null, "reactionVideos": [], @@ -38315,7 +38198,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17551604, "featuredRunMedia": null, "reactionVideos": [], @@ -38333,7 +38216,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 17555945, "featuredRunMedia": null, "reactionVideos": [], @@ -38351,7 +38234,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 108, + "teamId": "63", "time": 17556026, "featuredRunMedia": null, "reactionVideos": [], @@ -38369,7 +38252,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17556324, "featuredRunMedia": null, "reactionVideos": [], @@ -38387,7 +38270,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 113, + "teamId": "82", "time": 17557886, "featuredRunMedia": null, "reactionVideos": [], @@ -38405,7 +38288,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 101, + "teamId": "2", "time": 17559586, "featuredRunMedia": null, "reactionVideos": [], @@ -38423,7 +38306,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 71, + "teamId": "105", "time": 17559742, "featuredRunMedia": null, "reactionVideos": [], @@ -38441,7 +38324,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 17560987, "featuredRunMedia": null, "reactionVideos": [], @@ -38459,7 +38342,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 17563651, "featuredRunMedia": null, "reactionVideos": [], @@ -38477,7 +38360,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17564163, "featuredRunMedia": null, "reactionVideos": [], @@ -38495,7 +38378,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 17564613, "featuredRunMedia": null, "reactionVideos": [], @@ -38513,7 +38396,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 25, + "teamId": "94", "time": 17566039, "featuredRunMedia": null, "reactionVideos": [], @@ -38531,7 +38414,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 5, + "teamId": "70", "time": 17567055, "featuredRunMedia": null, "reactionVideos": [], @@ -38549,7 +38432,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 17568305, "featuredRunMedia": null, "reactionVideos": [], @@ -38567,7 +38450,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 17569256, "featuredRunMedia": null, "reactionVideos": [], @@ -38585,7 +38468,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 17569791, "featuredRunMedia": null, "reactionVideos": [], @@ -38603,7 +38486,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 102, + "teamId": "16", "time": 17573711, "featuredRunMedia": null, "reactionVideos": [], @@ -38621,7 +38504,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17574832, "featuredRunMedia": null, "reactionVideos": [], @@ -38639,7 +38522,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17578848, "featuredRunMedia": null, "reactionVideos": [], @@ -38657,7 +38540,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17584925, "featuredRunMedia": null, "reactionVideos": [], @@ -38675,7 +38558,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 53, + "teamId": "116", "time": 17584976, "featuredRunMedia": null, "reactionVideos": [], @@ -38693,7 +38576,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17586730, "featuredRunMedia": null, "reactionVideos": [], @@ -38711,7 +38594,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 17587295, "featuredRunMedia": null, "reactionVideos": [], @@ -38729,7 +38612,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17588435, "featuredRunMedia": null, "reactionVideos": [], @@ -38747,7 +38630,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 54, + "teamId": "73", "time": 17588972, "featuredRunMedia": null, "reactionVideos": [], @@ -38765,7 +38648,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 108, + "teamId": "63", "time": 17591256, "featuredRunMedia": null, "reactionVideos": [], @@ -38783,7 +38666,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 17591987, "featuredRunMedia": null, "reactionVideos": [], @@ -38801,7 +38684,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 113, + "teamId": "82", "time": 17597274, "featuredRunMedia": null, "reactionVideos": [], @@ -38819,7 +38702,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 17599444, "featuredRunMedia": null, "reactionVideos": [], @@ -38837,7 +38720,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17599569, "featuredRunMedia": null, "reactionVideos": [], @@ -38855,7 +38738,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 17602373, "featuredRunMedia": null, "reactionVideos": [], @@ -38873,7 +38756,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 71, + "teamId": "105", "time": 17607292, "featuredRunMedia": null, "reactionVideos": [], @@ -38891,7 +38774,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 36, + "teamId": "80", "time": 17610264, "featuredRunMedia": null, "reactionVideos": [], @@ -38909,7 +38792,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 67, + "teamId": "115", "time": 17611371, "featuredRunMedia": null, "reactionVideos": [], @@ -38927,7 +38810,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 104, + "teamId": "84", "time": 17613077, "featuredRunMedia": null, "reactionVideos": [], @@ -38945,7 +38828,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17618496, "featuredRunMedia": null, "reactionVideos": [], @@ -38963,7 +38846,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 38, + "teamId": "113", "time": 17628009, "featuredRunMedia": null, "reactionVideos": [], @@ -38981,7 +38864,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 10, + "teamId": "47", "time": 17628375, "featuredRunMedia": null, "reactionVideos": [], @@ -38999,7 +38882,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 31, + "teamId": "33", "time": 17629767, "featuredRunMedia": null, "reactionVideos": [], @@ -39017,7 +38900,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17636413, "featuredRunMedia": null, "reactionVideos": [], @@ -39035,7 +38918,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 17636679, "featuredRunMedia": null, "reactionVideos": [], @@ -39053,7 +38936,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17637135, "featuredRunMedia": null, "reactionVideos": [], @@ -39071,7 +38954,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 17640489, "featuredRunMedia": null, "reactionVideos": [], @@ -39089,7 +38972,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 76, + "teamId": "9", "time": 17644796, "featuredRunMedia": null, "reactionVideos": [], @@ -39107,7 +38990,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 23, + "teamId": "108", "time": 17647780, "featuredRunMedia": null, "reactionVideos": [], @@ -39125,7 +39008,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 17648886, "featuredRunMedia": null, "reactionVideos": [], @@ -39143,7 +39026,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17649939, "featuredRunMedia": null, "reactionVideos": [], @@ -39161,7 +39044,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17651768, "featuredRunMedia": null, "reactionVideos": [], @@ -39179,7 +39062,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17653609, "featuredRunMedia": null, "reactionVideos": [], @@ -39197,7 +39080,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 81, + "teamId": "86", "time": 17659567, "featuredRunMedia": null, "reactionVideos": [], @@ -39215,7 +39098,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17660844, "featuredRunMedia": null, "reactionVideos": [], @@ -39233,7 +39116,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 17662074, "featuredRunMedia": null, "reactionVideos": [], @@ -39251,7 +39134,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 91, + "teamId": "54", "time": 17663208, "featuredRunMedia": null, "reactionVideos": [], @@ -39269,7 +39152,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 71, + "teamId": "105", "time": 17665743, "featuredRunMedia": null, "reactionVideos": [], @@ -39287,7 +39170,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17667708, "featuredRunMedia": null, "reactionVideos": [], @@ -39305,7 +39188,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 17669197, "featuredRunMedia": null, "reactionVideos": [], @@ -39323,7 +39206,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 18, + "teamId": "68", "time": 17669690, "featuredRunMedia": null, "reactionVideos": [], @@ -39341,7 +39224,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17671304, "featuredRunMedia": null, "reactionVideos": [], @@ -39359,7 +39242,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 17672347, "featuredRunMedia": null, "reactionVideos": [], @@ -39377,7 +39260,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 17674797, "featuredRunMedia": null, "reactionVideos": [], @@ -39395,7 +39278,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 5, + "teamId": "70", "time": 17676096, "featuredRunMedia": null, "reactionVideos": [], @@ -39413,7 +39296,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17679283, "featuredRunMedia": null, "reactionVideos": [], @@ -39431,7 +39314,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17681066, "featuredRunMedia": null, "reactionVideos": [], @@ -39449,7 +39332,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 73, + "teamId": "76", "time": 17681565, "featuredRunMedia": null, "reactionVideos": [], @@ -39467,7 +39350,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17682037, "featuredRunMedia": null, "reactionVideos": [], @@ -39485,7 +39368,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17690714, "featuredRunMedia": null, "reactionVideos": [], @@ -39503,7 +39386,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 17696779, "featuredRunMedia": null, "reactionVideos": [], @@ -39521,7 +39404,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 17701011, "featuredRunMedia": null, "reactionVideos": [], @@ -39539,7 +39422,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 17701366, "featuredRunMedia": null, "reactionVideos": [], @@ -39557,7 +39440,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 73, + "teamId": "76", "time": 17709523, "featuredRunMedia": null, "reactionVideos": [], @@ -39575,7 +39458,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17711752, "featuredRunMedia": null, "reactionVideos": [], @@ -39593,7 +39476,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17712751, "featuredRunMedia": null, "reactionVideos": [], @@ -39611,7 +39494,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17714552, "featuredRunMedia": null, "reactionVideos": [], @@ -39629,7 +39512,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17719907, "featuredRunMedia": null, "reactionVideos": [], @@ -39647,7 +39530,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17722439, "featuredRunMedia": null, "reactionVideos": [], @@ -39665,7 +39548,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 17723708, "featuredRunMedia": null, "reactionVideos": [], @@ -39683,7 +39566,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 17725749, "featuredRunMedia": null, "reactionVideos": [], @@ -39701,7 +39584,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17726238, "featuredRunMedia": null, "reactionVideos": [], @@ -39719,7 +39602,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 17727213, "featuredRunMedia": null, "reactionVideos": [], @@ -39737,7 +39620,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 109, + "teamId": "75", "time": 17730588, "featuredRunMedia": null, "reactionVideos": [], @@ -39755,7 +39638,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17733361, "featuredRunMedia": null, "reactionVideos": [], @@ -39773,7 +39656,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17734333, "featuredRunMedia": null, "reactionVideos": [], @@ -39791,7 +39674,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 22, + "teamId": "103", "time": 17736725, "featuredRunMedia": null, "reactionVideos": [], @@ -39809,7 +39692,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 17737064, "featuredRunMedia": null, "reactionVideos": [], @@ -39827,7 +39710,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 5, + "teamId": "70", "time": 17737093, "featuredRunMedia": null, "reactionVideos": [], @@ -39845,7 +39728,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 17738012, "featuredRunMedia": null, "reactionVideos": [], @@ -39863,7 +39746,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 43, + "teamId": "92", "time": 17741696, "featuredRunMedia": null, "reactionVideos": [], @@ -39881,7 +39764,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17742155, "featuredRunMedia": null, "reactionVideos": [], @@ -39899,7 +39782,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 47, + "teamId": "99", "time": 17742890, "featuredRunMedia": null, "reactionVideos": [], @@ -39917,7 +39800,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 102, + "teamId": "16", "time": 17743389, "featuredRunMedia": null, "reactionVideos": [], @@ -39935,7 +39818,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 18, + "teamId": "68", "time": 17744838, "featuredRunMedia": null, "reactionVideos": [], @@ -39953,7 +39836,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17745454, "featuredRunMedia": null, "reactionVideos": [], @@ -39971,7 +39854,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17755427, "featuredRunMedia": null, "reactionVideos": [], @@ -39989,7 +39872,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 17755950, "featuredRunMedia": null, "reactionVideos": [], @@ -40007,7 +39890,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17756384, "featuredRunMedia": null, "reactionVideos": [], @@ -40025,7 +39908,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 17758075, "featuredRunMedia": null, "reactionVideos": [], @@ -40043,7 +39926,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17758937, "featuredRunMedia": null, "reactionVideos": [], @@ -40061,7 +39944,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 18, + "teamId": "68", "time": 17761315, "featuredRunMedia": null, "reactionVideos": [], @@ -40079,7 +39962,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 51, + "teamId": "18", "time": 17765357, "featuredRunMedia": null, "reactionVideos": [], @@ -40097,7 +39980,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17765430, "featuredRunMedia": null, "reactionVideos": [], @@ -40115,7 +39998,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17767090, "featuredRunMedia": null, "reactionVideos": [], @@ -40133,7 +40016,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 17770138, "featuredRunMedia": null, "reactionVideos": [], @@ -40151,7 +40034,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 45, + "teamId": "34", "time": 17770617, "featuredRunMedia": null, "reactionVideos": [], @@ -40169,7 +40052,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 84, + "teamId": "40", "time": 17775097, "featuredRunMedia": null, "reactionVideos": [], @@ -40187,7 +40070,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17775321, "featuredRunMedia": null, "reactionVideos": [], @@ -40205,7 +40088,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 27, + "teamId": "96", "time": 17775580, "featuredRunMedia": null, "reactionVideos": [], @@ -40223,7 +40106,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17776979, "featuredRunMedia": null, "reactionVideos": [], @@ -40241,7 +40124,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 43, + "teamId": "92", "time": 17778647, "featuredRunMedia": null, "reactionVideos": [], @@ -40259,7 +40142,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17781897, "featuredRunMedia": null, "reactionVideos": [], @@ -40277,7 +40160,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 17783552, "featuredRunMedia": null, "reactionVideos": [], @@ -40295,7 +40178,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 95, + "teamId": "30", "time": 17785028, "featuredRunMedia": null, "reactionVideos": [], @@ -40313,7 +40196,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 87, + "teamId": "66", "time": 17788269, "featuredRunMedia": null, "reactionVideos": [], @@ -40331,7 +40214,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17789300, "featuredRunMedia": null, "reactionVideos": [], @@ -40349,7 +40232,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 96, + "teamId": "1", "time": 17789694, "featuredRunMedia": null, "reactionVideos": [], @@ -40367,7 +40250,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 109, + "teamId": "75", "time": 17789956, "featuredRunMedia": null, "reactionVideos": [], @@ -40385,7 +40268,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17791625, "featuredRunMedia": null, "reactionVideos": [], @@ -40403,7 +40286,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 63, + "teamId": "42", "time": 17792756, "featuredRunMedia": null, "reactionVideos": [], @@ -40421,7 +40304,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17796909, "featuredRunMedia": null, "reactionVideos": [], @@ -40439,7 +40322,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 31, + "teamId": "33", "time": 17797861, "featuredRunMedia": null, "reactionVideos": [], @@ -40457,7 +40340,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 13, + "teamId": "25", "time": 17799545, "featuredRunMedia": null, "reactionVideos": [], @@ -40475,7 +40358,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 38, + "teamId": "113", "time": 17800388, "featuredRunMedia": null, "reactionVideos": [], @@ -40493,7 +40376,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17802636, "featuredRunMedia": null, "reactionVideos": [], @@ -40511,7 +40394,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 17802939, "featuredRunMedia": null, "reactionVideos": [], @@ -40529,7 +40412,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17803126, "featuredRunMedia": null, "reactionVideos": [], @@ -40547,7 +40430,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17804009, "featuredRunMedia": null, "reactionVideos": [], @@ -40565,7 +40448,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 70, + "teamId": "100", "time": 17804530, "featuredRunMedia": null, "reactionVideos": [], @@ -40583,7 +40466,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 18, + "teamId": "68", "time": 17805007, "featuredRunMedia": null, "reactionVideos": [], @@ -40601,7 +40484,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 17806165, "featuredRunMedia": null, "reactionVideos": [], @@ -40619,7 +40502,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 17808325, "featuredRunMedia": null, "reactionVideos": [], @@ -40637,7 +40520,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 91, + "teamId": "54", "time": 17808866, "featuredRunMedia": null, "reactionVideos": [], @@ -40655,7 +40538,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17809089, "featuredRunMedia": null, "reactionVideos": [], @@ -40673,7 +40556,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 17813894, "featuredRunMedia": null, "reactionVideos": [], @@ -40691,7 +40574,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17815230, "featuredRunMedia": null, "reactionVideos": [], @@ -40709,7 +40592,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17817553, "featuredRunMedia": null, "reactionVideos": [], @@ -40727,7 +40610,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17825123, "featuredRunMedia": null, "reactionVideos": [], @@ -40745,7 +40628,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 17825554, "featuredRunMedia": null, "reactionVideos": [], @@ -40763,7 +40646,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 17827382, "featuredRunMedia": null, "reactionVideos": [], @@ -40781,7 +40664,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17828098, "featuredRunMedia": null, "reactionVideos": [], @@ -40799,7 +40682,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 17828268, "featuredRunMedia": null, "reactionVideos": [], @@ -40817,7 +40700,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17828640, "featuredRunMedia": null, "reactionVideos": [], @@ -40835,7 +40718,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 67, + "teamId": "115", "time": 17830072, "featuredRunMedia": null, "reactionVideos": [], @@ -40853,7 +40736,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17830368, "featuredRunMedia": null, "reactionVideos": [], @@ -40871,7 +40754,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 81, + "teamId": "86", "time": 17832047, "featuredRunMedia": null, "reactionVideos": [], @@ -40889,7 +40772,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17835298, "featuredRunMedia": null, "reactionVideos": [], @@ -40907,7 +40790,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 17838438, "featuredRunMedia": null, "reactionVideos": [], @@ -40925,7 +40808,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 3, + "teamId": "67", "time": 17838480, "featuredRunMedia": null, "reactionVideos": [], @@ -40943,7 +40826,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 104, + "teamId": "84", "time": 17839658, "featuredRunMedia": null, "reactionVideos": [], @@ -40961,7 +40844,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17840631, "featuredRunMedia": null, "reactionVideos": [], @@ -40979,7 +40862,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17841505, "featuredRunMedia": null, "reactionVideos": [], @@ -40997,7 +40880,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 17844465, "featuredRunMedia": null, "reactionVideos": [], @@ -41015,7 +40898,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 102, + "teamId": "16", "time": 17845375, "featuredRunMedia": null, "reactionVideos": [], @@ -41033,7 +40916,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17845674, "featuredRunMedia": null, "reactionVideos": [], @@ -41051,7 +40934,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 25, + "teamId": "94", "time": 17846053, "featuredRunMedia": null, "reactionVideos": [], @@ -41069,7 +40952,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 17847141, "featuredRunMedia": null, "reactionVideos": [], @@ -41087,7 +40970,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 25, + "teamId": "94", "time": 17847969, "featuredRunMedia": null, "reactionVideos": [], @@ -41105,7 +40988,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17848753, "featuredRunMedia": null, "reactionVideos": [], @@ -41123,7 +41006,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 92, + "teamId": "36", "time": 17850576, "featuredRunMedia": null, "reactionVideos": [], @@ -41141,7 +41024,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 34, + "teamId": "37", "time": 17850661, "featuredRunMedia": null, "reactionVideos": [], @@ -41159,7 +41042,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17851036, "featuredRunMedia": null, "reactionVideos": [], @@ -41177,7 +41060,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17852302, "featuredRunMedia": null, "reactionVideos": [], @@ -41195,7 +41078,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 50, + "teamId": "11", "time": 17859224, "featuredRunMedia": null, "reactionVideos": [], @@ -41213,7 +41096,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17861204, "featuredRunMedia": null, "reactionVideos": [], @@ -41231,7 +41114,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17861984, "featuredRunMedia": null, "reactionVideos": [], @@ -41249,7 +41132,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 110, + "teamId": "81", "time": 17864351, "featuredRunMedia": null, "reactionVideos": [], @@ -41267,7 +41150,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17865083, "featuredRunMedia": null, "reactionVideos": [], @@ -41285,7 +41168,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 101, + "teamId": "2", "time": 17866129, "featuredRunMedia": null, "reactionVideos": [], @@ -41303,7 +41186,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17868499, "featuredRunMedia": null, "reactionVideos": [], @@ -41321,7 +41204,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 17868674, "featuredRunMedia": null, "reactionVideos": [], @@ -41339,7 +41222,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 91, + "teamId": "54", "time": 17869067, "featuredRunMedia": null, "reactionVideos": [], @@ -41357,7 +41240,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 45, + "teamId": "34", "time": 17871021, "featuredRunMedia": null, "reactionVideos": [], @@ -41375,7 +41258,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 17871451, "featuredRunMedia": null, "reactionVideos": [], @@ -41393,7 +41276,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17871958, "featuredRunMedia": null, "reactionVideos": [], @@ -41411,7 +41294,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17873008, "featuredRunMedia": null, "reactionVideos": [], @@ -41429,7 +41312,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 65, + "teamId": "23", "time": 17873963, "featuredRunMedia": null, "reactionVideos": [], @@ -41447,7 +41330,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 2, + "teamId": "101", "time": 17874840, "featuredRunMedia": null, "reactionVideos": [], @@ -41465,7 +41348,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 17875492, "featuredRunMedia": null, "reactionVideos": [], @@ -41483,7 +41366,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 19, + "teamId": "91", "time": 17877006, "featuredRunMedia": null, "reactionVideos": [], @@ -41501,7 +41384,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17877436, "featuredRunMedia": null, "reactionVideos": [], @@ -41519,7 +41402,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 7, + "teamId": "65", "time": 17878613, "featuredRunMedia": null, "reactionVideos": [], @@ -41537,7 +41420,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17881648, "featuredRunMedia": null, "reactionVideos": [], @@ -41555,7 +41438,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17882231, "featuredRunMedia": null, "reactionVideos": [], @@ -41573,7 +41456,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17882572, "featuredRunMedia": null, "reactionVideos": [], @@ -41591,7 +41474,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 17884000, "featuredRunMedia": null, "reactionVideos": [], @@ -41609,7 +41492,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 91, + "teamId": "54", "time": 17885447, "featuredRunMedia": null, "reactionVideos": [], @@ -41627,7 +41510,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 72, + "teamId": "13", "time": 17886059, "featuredRunMedia": null, "reactionVideos": [], @@ -41645,7 +41528,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 68, + "teamId": "107", "time": 17886517, "featuredRunMedia": null, "reactionVideos": [], @@ -41663,7 +41546,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17886730, "featuredRunMedia": null, "reactionVideos": [], @@ -41681,7 +41564,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 96, + "teamId": "1", "time": 17887654, "featuredRunMedia": null, "reactionVideos": [], @@ -41699,7 +41582,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 17889409, "featuredRunMedia": null, "reactionVideos": [], @@ -41717,7 +41600,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17889901, "featuredRunMedia": null, "reactionVideos": [], @@ -41735,7 +41618,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 17889911, "featuredRunMedia": null, "reactionVideos": [], @@ -41753,7 +41636,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 69, + "teamId": "3", "time": 17891377, "featuredRunMedia": null, "reactionVideos": [], @@ -41771,7 +41654,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 19, + "teamId": "91", "time": 17893247, "featuredRunMedia": null, "reactionVideos": [], @@ -41789,7 +41672,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17895878, "featuredRunMedia": null, "reactionVideos": [], @@ -41807,7 +41690,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17896452, "featuredRunMedia": null, "reactionVideos": [], @@ -41825,7 +41708,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17898900, "featuredRunMedia": null, "reactionVideos": [], @@ -41843,7 +41726,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 98, + "teamId": "90", "time": 17899616, "featuredRunMedia": null, "reactionVideos": [], @@ -41861,7 +41744,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 17900380, "featuredRunMedia": null, "reactionVideos": [], @@ -41879,7 +41762,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 33, + "teamId": "52", "time": 17900734, "featuredRunMedia": null, "reactionVideos": [], @@ -41897,7 +41780,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 101, + "teamId": "2", "time": 17900986, "featuredRunMedia": null, "reactionVideos": [], @@ -41915,7 +41798,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 17904778, "featuredRunMedia": null, "reactionVideos": [], @@ -41933,7 +41816,7 @@ "isFirstToSolveRun": false }, "problemId": "vector", - "teamId": 68, + "teamId": "107", "time": 17908536, "featuredRunMedia": null, "reactionVideos": [], @@ -41951,7 +41834,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 43, + "teamId": "92", "time": 17910206, "featuredRunMedia": null, "reactionVideos": [], @@ -41969,7 +41852,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 17911343, "featuredRunMedia": null, "reactionVideos": [], @@ -41987,7 +41870,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 91, + "teamId": "54", "time": 17911407, "featuredRunMedia": null, "reactionVideos": [], @@ -42005,7 +41888,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 46, + "teamId": "53", "time": 17911496, "featuredRunMedia": null, "reactionVideos": [], @@ -42023,7 +41906,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 60, + "teamId": "31", "time": 17911748, "featuredRunMedia": null, "reactionVideos": [], @@ -42041,7 +41924,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17912177, "featuredRunMedia": null, "reactionVideos": [], @@ -42059,7 +41942,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17912242, "featuredRunMedia": null, "reactionVideos": [], @@ -42077,7 +41960,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17914649, "featuredRunMedia": null, "reactionVideos": [], @@ -42095,7 +41978,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17917245, "featuredRunMedia": null, "reactionVideos": [], @@ -42113,7 +41996,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 38, + "teamId": "113", "time": 17917624, "featuredRunMedia": null, "reactionVideos": [], @@ -42131,7 +42014,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17918847, "featuredRunMedia": null, "reactionVideos": [], @@ -42149,7 +42032,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 68, + "teamId": "107", "time": 17919744, "featuredRunMedia": null, "reactionVideos": [], @@ -42167,7 +42050,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 68, + "teamId": "107", "time": 17921009, "featuredRunMedia": null, "reactionVideos": [], @@ -42185,7 +42068,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17923629, "featuredRunMedia": null, "reactionVideos": [], @@ -42203,7 +42086,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 17924938, "featuredRunMedia": null, "reactionVideos": [], @@ -42221,7 +42104,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 102, + "teamId": "16", "time": 17928271, "featuredRunMedia": null, "reactionVideos": [], @@ -42239,7 +42122,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 19, + "teamId": "91", "time": 17928616, "featuredRunMedia": null, "reactionVideos": [], @@ -42257,7 +42140,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17928986, "featuredRunMedia": null, "reactionVideos": [], @@ -42275,7 +42158,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17929008, "featuredRunMedia": null, "reactionVideos": [], @@ -42293,7 +42176,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 109, + "teamId": "75", "time": 17929917, "featuredRunMedia": null, "reactionVideos": [], @@ -42311,7 +42194,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17930635, "featuredRunMedia": null, "reactionVideos": [], @@ -42329,7 +42212,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17932212, "featuredRunMedia": null, "reactionVideos": [], @@ -42347,7 +42230,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17932435, "featuredRunMedia": null, "reactionVideos": [], @@ -42365,7 +42248,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17936006, "featuredRunMedia": null, "reactionVideos": [], @@ -42383,7 +42266,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 17936976, "featuredRunMedia": null, "reactionVideos": [], @@ -42401,7 +42284,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 17938974, "featuredRunMedia": null, "reactionVideos": [], @@ -42419,7 +42302,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 95, + "teamId": "30", "time": 17939584, "featuredRunMedia": null, "reactionVideos": [], @@ -42437,7 +42320,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17939956, "featuredRunMedia": null, "reactionVideos": [], @@ -42455,7 +42338,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 17940242, "featuredRunMedia": null, "reactionVideos": [], @@ -42473,7 +42356,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 82, + "teamId": "118", "time": 17941056, "featuredRunMedia": null, "reactionVideos": [], @@ -42491,7 +42374,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 33, + "teamId": "52", "time": 17941398, "featuredRunMedia": null, "reactionVideos": [], @@ -42509,7 +42392,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17943002, "featuredRunMedia": null, "reactionVideos": [], @@ -42527,7 +42410,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17943389, "featuredRunMedia": null, "reactionVideos": [], @@ -42545,7 +42428,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 17944126, "featuredRunMedia": null, "reactionVideos": [], @@ -42563,7 +42446,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 17944391, "featuredRunMedia": null, "reactionVideos": [], @@ -42581,7 +42464,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 17944889, "featuredRunMedia": null, "reactionVideos": [], @@ -42599,7 +42482,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17945686, "featuredRunMedia": null, "reactionVideos": [], @@ -42617,7 +42500,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17948019, "featuredRunMedia": null, "reactionVideos": [], @@ -42635,7 +42518,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17948501, "featuredRunMedia": null, "reactionVideos": [], @@ -42653,7 +42536,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 34, + "teamId": "37", "time": 17948736, "featuredRunMedia": null, "reactionVideos": [], @@ -42671,7 +42554,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 45, + "teamId": "34", "time": 17951608, "featuredRunMedia": null, "reactionVideos": [], @@ -42689,7 +42572,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 73, + "teamId": "76", "time": 17951965, "featuredRunMedia": null, "reactionVideos": [], @@ -42707,7 +42590,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17953927, "featuredRunMedia": null, "reactionVideos": [], @@ -42725,7 +42608,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 57, + "teamId": "51", "time": 17953974, "featuredRunMedia": null, "reactionVideos": [], @@ -42743,7 +42626,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 17954498, "featuredRunMedia": null, "reactionVideos": [], @@ -42761,7 +42644,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17955019, "featuredRunMedia": null, "reactionVideos": [], @@ -42779,7 +42662,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17956361, "featuredRunMedia": null, "reactionVideos": [], @@ -42797,7 +42680,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 103, + "teamId": "24", "time": 17957364, "featuredRunMedia": null, "reactionVideos": [], @@ -42815,7 +42698,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17958655, "featuredRunMedia": null, "reactionVideos": [], @@ -42833,7 +42716,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 17960343, "featuredRunMedia": null, "reactionVideos": [], @@ -42851,7 +42734,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 96, + "teamId": "1", "time": 17962436, "featuredRunMedia": null, "reactionVideos": [], @@ -42869,7 +42752,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 68, + "teamId": "107", "time": 17962767, "featuredRunMedia": null, "reactionVideos": [], @@ -42887,7 +42770,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 57, + "teamId": "51", "time": 17964925, "featuredRunMedia": null, "reactionVideos": [], @@ -42905,7 +42788,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 33, + "teamId": "52", "time": 17965125, "featuredRunMedia": null, "reactionVideos": [], @@ -42923,7 +42806,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17965433, "featuredRunMedia": null, "reactionVideos": [], @@ -42941,7 +42824,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17966370, "featuredRunMedia": null, "reactionVideos": [], @@ -42959,7 +42842,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 26, + "teamId": "64", "time": 17967582, "featuredRunMedia": null, "reactionVideos": [], @@ -42977,7 +42860,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17968966, "featuredRunMedia": null, "reactionVideos": [], @@ -42995,7 +42878,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 57, + "teamId": "51", "time": 17970990, "featuredRunMedia": null, "reactionVideos": [], @@ -43013,7 +42896,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17971260, "featuredRunMedia": null, "reactionVideos": [], @@ -43031,7 +42914,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 56, + "teamId": "111", "time": 17971782, "featuredRunMedia": null, "reactionVideos": [], @@ -43049,7 +42932,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 15, + "teamId": "6", "time": 17972327, "featuredRunMedia": null, "reactionVideos": [], @@ -43067,7 +42950,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 25, + "teamId": "94", "time": 17972344, "featuredRunMedia": null, "reactionVideos": [], @@ -43085,7 +42968,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 17972473, "featuredRunMedia": null, "reactionVideos": [], @@ -43103,7 +42986,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 17973464, "featuredRunMedia": null, "reactionVideos": [], @@ -43121,7 +43004,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 17975046, "featuredRunMedia": null, "reactionVideos": [], @@ -43139,7 +43022,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 9, + "teamId": "114", "time": 17975916, "featuredRunMedia": null, "reactionVideos": [], @@ -43157,7 +43040,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 17976437, "featuredRunMedia": null, "reactionVideos": [], @@ -43175,7 +43058,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 17976861, "featuredRunMedia": null, "reactionVideos": [], @@ -43193,7 +43076,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 17977080, "featuredRunMedia": null, "reactionVideos": [], @@ -43211,7 +43094,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 106, + "teamId": "110", "time": 17977109, "featuredRunMedia": null, "reactionVideos": [], @@ -43229,7 +43112,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 30, + "teamId": "7", "time": 17977595, "featuredRunMedia": null, "reactionVideos": [], @@ -43247,7 +43130,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17978321, "featuredRunMedia": null, "reactionVideos": [], @@ -43265,7 +43148,7 @@ "isFirstToSolveRun": false }, "problemId": "qcqc", - "teamId": 11, + "teamId": "69", "time": 17978458, "featuredRunMedia": null, "reactionVideos": [], @@ -43283,7 +43166,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 17979191, "featuredRunMedia": null, "reactionVideos": [], @@ -43301,7 +43184,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 17, + "teamId": "59", "time": 17979385, "featuredRunMedia": null, "reactionVideos": [], @@ -43319,7 +43202,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 17979415, "featuredRunMedia": null, "reactionVideos": [], @@ -43337,7 +43220,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17980003, "featuredRunMedia": null, "reactionVideos": [], @@ -43355,7 +43238,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 50, + "teamId": "11", "time": 17980077, "featuredRunMedia": null, "reactionVideos": [], @@ -43373,7 +43256,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 97, + "teamId": "97", "time": 17982127, "featuredRunMedia": null, "reactionVideos": [], @@ -43391,7 +43274,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 84, + "teamId": "40", "time": 17982367, "featuredRunMedia": null, "reactionVideos": [], @@ -43409,7 +43292,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 61, + "teamId": "55", "time": 17983160, "featuredRunMedia": null, "reactionVideos": [], @@ -43427,7 +43310,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 94, + "teamId": "93", "time": 17983851, "featuredRunMedia": null, "reactionVideos": [], @@ -43445,7 +43328,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17983981, "featuredRunMedia": null, "reactionVideos": [], @@ -43463,7 +43346,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 45, + "teamId": "34", "time": 17984147, "featuredRunMedia": null, "reactionVideos": [], @@ -43481,7 +43364,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 42, + "teamId": "12", "time": 17984365, "featuredRunMedia": null, "reactionVideos": [], @@ -43499,7 +43382,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 98, + "teamId": "90", "time": 17984445, "featuredRunMedia": null, "reactionVideos": [], @@ -43517,7 +43400,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 21, + "teamId": "104", "time": 17987573, "featuredRunMedia": null, "reactionVideos": [], @@ -43535,7 +43418,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 6, + "teamId": "19", "time": 17989231, "featuredRunMedia": null, "reactionVideos": [], @@ -43553,7 +43436,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 63, + "teamId": "42", "time": 17989672, "featuredRunMedia": null, "reactionVideos": [], @@ -43571,7 +43454,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 17990039, "featuredRunMedia": null, "reactionVideos": [], @@ -43589,7 +43472,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17991257, "featuredRunMedia": null, "reactionVideos": [], @@ -43607,7 +43490,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 17991365, "featuredRunMedia": null, "reactionVideos": [], @@ -43625,7 +43508,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 18, + "teamId": "68", "time": 17991684, "featuredRunMedia": null, "reactionVideos": [], @@ -43643,7 +43526,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 111, + "teamId": "41", "time": 17991870, "featuredRunMedia": null, "reactionVideos": [], @@ -43661,7 +43544,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 2, + "teamId": "101", "time": 17993072, "featuredRunMedia": null, "reactionVideos": [], @@ -43679,7 +43562,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 43, + "teamId": "92", "time": 17993399, "featuredRunMedia": null, "reactionVideos": [], @@ -43697,7 +43580,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 83, + "teamId": "20", "time": 17995700, "featuredRunMedia": null, "reactionVideos": [], @@ -43715,7 +43598,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 75, + "teamId": "48", "time": 17996271, "featuredRunMedia": null, "reactionVideos": [], @@ -43733,7 +43616,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 23, + "teamId": "108", "time": 17996540, "featuredRunMedia": null, "reactionVideos": [], @@ -43751,7 +43634,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 49, + "teamId": "98", "time": 17997259, "featuredRunMedia": null, "reactionVideos": [], @@ -43769,7 +43652,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 74, + "teamId": "78", "time": 17997298, "featuredRunMedia": null, "reactionVideos": [], @@ -43787,7 +43670,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 16, + "teamId": "109", "time": 17998081, "featuredRunMedia": null, "reactionVideos": [], @@ -43805,7 +43688,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 86, + "teamId": "38", "time": 17998370, "featuredRunMedia": null, "reactionVideos": [], @@ -43823,7 +43706,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 35, + "teamId": "32", "time": 17998490, "featuredRunMedia": null, "reactionVideos": [], @@ -43841,7 +43724,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 74, + "teamId": "78", "time": 17998508, "featuredRunMedia": null, "reactionVideos": [], @@ -43859,7 +43742,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 18, + "teamId": "68", "time": 17998638, "featuredRunMedia": null, "reactionVideos": [], @@ -43877,7 +43760,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 51, + "teamId": "18", "time": 17998696, "featuredRunMedia": null, "reactionVideos": [], @@ -43895,7 +43778,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 109, + "teamId": "75", "time": 17998770, "featuredRunMedia": null, "reactionVideos": [], @@ -43913,7 +43796,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 13, + "teamId": "25", "time": 17998825, "featuredRunMedia": null, "reactionVideos": [], @@ -43931,7 +43814,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 95, + "teamId": "30", "time": 17998834, "featuredRunMedia": null, "reactionVideos": [], @@ -43949,7 +43832,7 @@ "isFirstToSolveRun": false }, "problemId": "genefolding", - "teamId": 87, + "teamId": "66", "time": 17999024, "featuredRunMedia": null, "reactionVideos": [], @@ -43967,7 +43850,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 65, + "teamId": "23", "time": 17999101, "featuredRunMedia": null, "reactionVideos": [], @@ -43985,7 +43868,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 94, + "teamId": "93", "time": 17999369, "featuredRunMedia": null, "reactionVideos": [], @@ -44003,7 +43886,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 34, + "teamId": "37", "time": 17999681, "featuredRunMedia": null, "reactionVideos": [], @@ -44021,7 +43904,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 30, + "teamId": "7", "time": 17999782, "featuredRunMedia": null, "reactionVideos": [], @@ -44039,7 +43922,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 55, + "teamId": "43", "time": 18000928, "featuredRunMedia": null, "reactionVideos": [], @@ -44057,7 +43940,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 5, + "teamId": "70", "time": 18000933, "featuredRunMedia": null, "reactionVideos": [], @@ -44075,7 +43958,7 @@ "isFirstToSolveRun": false }, "problemId": "domes", - "teamId": 41, + "teamId": "22", "time": 18001097, "featuredRunMedia": null, "reactionVideos": [], @@ -44093,7 +43976,7 @@ "isFirstToSolveRun": false }, "problemId": "planets", - "teamId": 44, + "teamId": "72", "time": 18001459, "featuredRunMedia": null, "reactionVideos": [], @@ -44111,7 +43994,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 104, + "teamId": "84", "time": 18001628, "featuredRunMedia": null, "reactionVideos": [], @@ -44129,7 +44012,7 @@ "isFirstToSolveRun": false }, "problemId": "cardiology", - "teamId": 71, + "teamId": "105", "time": 18002271, "featuredRunMedia": null, "reactionVideos": [], @@ -44147,7 +44030,7 @@ "isFirstToSolveRun": false }, "problemId": "quests", - "teamId": 1, + "teamId": "102", "time": 18002585, "featuredRunMedia": null, "reactionVideos": [], @@ -44165,7 +44048,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 18004784, "featuredRunMedia": null, "reactionVideos": [], @@ -44183,7 +44066,7 @@ "isFirstToSolveRun": false }, "problemId": "trailingdigits", - "teamId": 46, + "teamId": "53", "time": 18005132, "featuredRunMedia": null, "reactionVideos": [], @@ -44201,7 +44084,7 @@ "isFirstToSolveRun": false }, "problemId": "sweepstakes", - "teamId": 11, + "teamId": "69", "time": 18005209, "featuredRunMedia": null, "reactionVideos": [], @@ -44219,7 +44102,7 @@ "isFirstToSolveRun": false }, "problemId": "leylines", - "teamId": 12, + "teamId": "56", "time": 18005245, "featuredRunMedia": null, "reactionVideos": [], @@ -44237,7 +44120,7 @@ "isFirstToSolveRun": false }, "problemId": "opportunity", - "teamId": 45, + "teamId": "34", "time": 18007173, "featuredRunMedia": null, "reactionVideos": [], @@ -44255,7 +44138,7 @@ "isFirstToSolveRun": false }, "problemId": "speedlimit", - "teamId": 4, + "teamId": "50", "time": 18007840, "featuredRunMedia": null, "reactionVideos": [], @@ -44273,7 +44156,7 @@ "isFirstToSolveRun": false }, "problemId": "snoproblem", - "teamId": 19, + "teamId": "91", "time": 18000331, "featuredRunMedia": null, "reactionVideos": [], @@ -44302,7 +44185,7 @@ "timeUnixMs": 1633415446911, "relativeTimeMs": 577911, "teamIds": [ - 1 + "102" ], "runIds": [ 1 @@ -44320,7 +44203,7 @@ "timeUnixMs": 1633415450793, "relativeTimeMs": 581793, "teamIds": [ - 1 + "102" ], "runIds": [ 1 @@ -44338,7 +44221,7 @@ "timeUnixMs": 1633415641474, "relativeTimeMs": 772474, "teamIds": [ - 2 + "101" ], "runIds": [ 2 @@ -44356,7 +44239,7 @@ "timeUnixMs": 1633415651828, "relativeTimeMs": 782828, "teamIds": [ - 2 + "101" ], "runIds": [ 2 @@ -44374,7 +44257,7 @@ "timeUnixMs": 1633415651828, "relativeTimeMs": 782828, "teamIds": [ - 2 + "101" ], "runIds": [ 2 @@ -44392,7 +44275,7 @@ "timeUnixMs": 1633415668189, "relativeTimeMs": 799189, "teamIds": [ - 1 + "102" ], "runIds": [ 3 @@ -44410,7 +44293,7 @@ "timeUnixMs": 1633415681435, "relativeTimeMs": 812435, "teamIds": [ - 1 + "102" ], "runIds": [ 3 @@ -44428,7 +44311,7 @@ "timeUnixMs": 1633415688464, "relativeTimeMs": 819464, "teamIds": [ - 1 + "102" ], "runIds": [ 4 @@ -44446,7 +44329,7 @@ "timeUnixMs": 1633415696649, "relativeTimeMs": 827649, "teamIds": [ - 1 + "102" ], "runIds": [ 4 @@ -44464,7 +44347,7 @@ "timeUnixMs": 1633415696649, "relativeTimeMs": 827649, "teamIds": [ - 1 + "102" ], "runIds": [ 4 @@ -44482,7 +44365,7 @@ "timeUnixMs": 1633415705670, "relativeTimeMs": 836670, "teamIds": [ - 3 + "67" ], "runIds": [ 5 @@ -44500,7 +44383,7 @@ "timeUnixMs": 1633415709150, "relativeTimeMs": 840150, "teamIds": [ - 3 + "67" ], "runIds": [ 5 @@ -44518,7 +44401,7 @@ "timeUnixMs": 1633415759176, "relativeTimeMs": 890176, "teamIds": [ - 4 + "50" ], "runIds": [ 6 @@ -44536,7 +44419,7 @@ "timeUnixMs": 1633415767552, "relativeTimeMs": 898552, "teamIds": [ - 4 + "50" ], "runIds": [ 6 @@ -44554,7 +44437,7 @@ "timeUnixMs": 1633415767552, "relativeTimeMs": 898552, "teamIds": [ - 4 + "50" ], "runIds": [ 6 @@ -44572,7 +44455,7 @@ "timeUnixMs": 1633415898936, "relativeTimeMs": 1029936, "teamIds": [ - 5 + "70" ], "runIds": [ 7 @@ -44590,7 +44473,7 @@ "timeUnixMs": 1633415908159, "relativeTimeMs": 1039159, "teamIds": [ - 5 + "70" ], "runIds": [ 7 @@ -44608,7 +44491,7 @@ "timeUnixMs": 1633415923102, "relativeTimeMs": 1054102, "teamIds": [ - 6 + "19" ], "runIds": [ 8 @@ -44626,7 +44509,7 @@ "timeUnixMs": 1633415927795, "relativeTimeMs": 1058795, "teamIds": [ - 6 + "19" ], "runIds": [ 8 @@ -44644,7 +44527,7 @@ "timeUnixMs": 1633415933364, "relativeTimeMs": 1064364, "teamIds": [ - 7 + "65" ], "runIds": [ 9 @@ -44662,7 +44545,7 @@ "timeUnixMs": 1633415939447, "relativeTimeMs": 1070447, "teamIds": [ - 1 + "102" ], "runIds": [ 10 @@ -44680,7 +44563,7 @@ "timeUnixMs": 1633415941597, "relativeTimeMs": 1072597, "teamIds": [ - 7 + "65" ], "runIds": [ 9 @@ -44698,7 +44581,7 @@ "timeUnixMs": 1633415945950, "relativeTimeMs": 1076950, "teamIds": [ - 8 + "29" ], "runIds": [ 11 @@ -44716,7 +44599,7 @@ "timeUnixMs": 1633415948935, "relativeTimeMs": 1079935, "teamIds": [ - 8 + "29" ], "runIds": [ 11 @@ -44734,7 +44617,7 @@ "timeUnixMs": 1633415949068, "relativeTimeMs": 1080068, "teamIds": [ - 1 + "102" ], "runIds": [ 10 @@ -44752,7 +44635,7 @@ "timeUnixMs": 1633415949068, "relativeTimeMs": 1080068, "teamIds": [ - 1 + "102" ], "runIds": [ 10 @@ -44770,7 +44653,7 @@ "timeUnixMs": 1633415950312, "relativeTimeMs": 1081312, "teamIds": [ - 9 + "114" ], "runIds": [ 12 @@ -44788,7 +44671,7 @@ "timeUnixMs": 1633415954707, "relativeTimeMs": 1085707, "teamIds": [ - 9 + "114" ], "runIds": [ 12 @@ -44806,7 +44689,7 @@ "timeUnixMs": 1633415954707, "relativeTimeMs": 1085707, "teamIds": [ - 9 + "114" ], "runIds": [ 12 @@ -44824,7 +44707,7 @@ "timeUnixMs": 1633415980552, "relativeTimeMs": 1111552, "teamIds": [ - 6 + "19" ], "runIds": [ 13 @@ -44842,7 +44725,7 @@ "timeUnixMs": 1633415988988, "relativeTimeMs": 1119988, "teamIds": [ - 6 + "19" ], "runIds": [ 13 @@ -44860,7 +44743,7 @@ "timeUnixMs": 1633416053093, "relativeTimeMs": 1184093, "teamIds": [ - 8 + "29" ], "runIds": [ 14 @@ -44878,7 +44761,7 @@ "timeUnixMs": 1633416054625, "relativeTimeMs": 1185625, "teamIds": [ - 8 + "29" ], "runIds": [ 14 @@ -44896,7 +44779,7 @@ "timeUnixMs": 1633416109994, "relativeTimeMs": 1240994, "teamIds": [ - 8 + "29" ], "runIds": [ 15 @@ -44914,7 +44797,7 @@ "timeUnixMs": 1633416113371, "relativeTimeMs": 1244371, "teamIds": [ - 8 + "29" ], "runIds": [ 15 @@ -44932,7 +44815,7 @@ "timeUnixMs": 1633416158186, "relativeTimeMs": 1289186, "teamIds": [ - 10 + "47" ], "runIds": [ 16 @@ -44950,7 +44833,7 @@ "timeUnixMs": 1633416165562, "relativeTimeMs": 1296562, "teamIds": [ - 10 + "47" ], "runIds": [ 16 @@ -44968,7 +44851,7 @@ "timeUnixMs": 1633416173769, "relativeTimeMs": 1304769, "teamIds": [ - 11 + "69" ], "runIds": [ 17 @@ -44986,7 +44869,7 @@ "timeUnixMs": 1633416174873, "relativeTimeMs": 1305873, "teamIds": [ - 12 + "56" ], "runIds": [ 18 @@ -45004,7 +44887,7 @@ "timeUnixMs": 1633416175424, "relativeTimeMs": 1306424, "teamIds": [ - 8 + "29" ], "runIds": [ 19 @@ -45022,7 +44905,7 @@ "timeUnixMs": 1633416178769, "relativeTimeMs": 1309769, "teamIds": [ - 8 + "29" ], "runIds": [ 19 @@ -45040,7 +44923,7 @@ "timeUnixMs": 1633416180573, "relativeTimeMs": 1311573, "teamIds": [ - 11 + "69" ], "runIds": [ 17 @@ -45058,7 +44941,7 @@ "timeUnixMs": 1633416182666, "relativeTimeMs": 1313666, "teamIds": [ - 12 + "56" ], "runIds": [ 18 @@ -45076,7 +44959,7 @@ "timeUnixMs": 1633416214335, "relativeTimeMs": 1345335, "teamIds": [ - 7 + "65" ], "runIds": [ 20 @@ -45094,7 +44977,7 @@ "timeUnixMs": 1633416215185, "relativeTimeMs": 1346185, "teamIds": [ - 13 + "25" ], "runIds": [ 21 @@ -45112,7 +44995,7 @@ "timeUnixMs": 1633416225300, "relativeTimeMs": 1356300, "teamIds": [ - 7 + "65" ], "runIds": [ 20 @@ -45130,7 +45013,7 @@ "timeUnixMs": 1633416226896, "relativeTimeMs": 1357896, "teamIds": [ - 13 + "25" ], "runIds": [ 21 @@ -45148,7 +45031,7 @@ "timeUnixMs": 1633416264160, "relativeTimeMs": 1395160, "teamIds": [ - 14 + "60" ], "runIds": [ 22 @@ -45166,7 +45049,7 @@ "timeUnixMs": 1633416268513, "relativeTimeMs": 1399513, "teamIds": [ - 15 + "6" ], "runIds": [ 23 @@ -45184,7 +45067,7 @@ "timeUnixMs": 1633416268863, "relativeTimeMs": 1399863, "teamIds": [ - 14 + "60" ], "runIds": [ 22 @@ -45202,7 +45085,7 @@ "timeUnixMs": 1633416273515, "relativeTimeMs": 1404515, "teamIds": [ - 15 + "6" ], "runIds": [ 23 @@ -45220,7 +45103,7 @@ "timeUnixMs": 1633416286214, "relativeTimeMs": 1417214, "teamIds": [ - 16 + "109" ], "runIds": [ 24 @@ -45238,7 +45121,7 @@ "timeUnixMs": 1633416293749, "relativeTimeMs": 1424749, "teamIds": [ - 16 + "109" ], "runIds": [ 24 @@ -45256,7 +45139,7 @@ "timeUnixMs": 1633416328042, "relativeTimeMs": 1459042, "teamIds": [ - 17 + "59" ], "runIds": [ 25 @@ -45274,7 +45157,7 @@ "timeUnixMs": 1633416332663, "relativeTimeMs": 1463663, "teamIds": [ - 17 + "59" ], "runIds": [ 25 @@ -45292,7 +45175,7 @@ "timeUnixMs": 1633416338302, "relativeTimeMs": 1469302, "teamIds": [ - 8 + "29" ], "runIds": [ 26 @@ -45310,7 +45193,7 @@ "timeUnixMs": 1633416369016, "relativeTimeMs": 1500016, "teamIds": [ - 8 + "29" ], "runIds": [ 27 @@ -45328,7 +45211,7 @@ "timeUnixMs": 1633416377108, "relativeTimeMs": 1508108, "teamIds": [ - 7 + "65" ], "runIds": [ 28 @@ -45346,7 +45229,7 @@ "timeUnixMs": 1633416382976, "relativeTimeMs": 1513976, "teamIds": [ - 7 + "65" ], "runIds": [ 28 @@ -45364,7 +45247,7 @@ "timeUnixMs": 1633416397253, "relativeTimeMs": 1528253, "teamIds": [ - 4 + "50" ], "runIds": [ 29 @@ -45382,7 +45265,7 @@ "timeUnixMs": 1633416403992, "relativeTimeMs": 1534992, "teamIds": [ - 4 + "50" ], "runIds": [ 29 @@ -45400,7 +45283,7 @@ "timeUnixMs": 1633416407989, "relativeTimeMs": 1538989, "teamIds": [ - 17 + "59" ], "runIds": [ 30 @@ -45418,7 +45301,7 @@ "timeUnixMs": 1633416427726, "relativeTimeMs": 1558726, "teamIds": [ - 4 + "50" ], "runIds": [ 31 @@ -45436,7 +45319,7 @@ "timeUnixMs": 1633416432949, "relativeTimeMs": 1563949, "teamIds": [ - 18 + "68" ], "runIds": [ 32 @@ -45454,7 +45337,7 @@ "timeUnixMs": 1633416436791, "relativeTimeMs": 1567791, "teamIds": [ - 18 + "68" ], "runIds": [ 32 @@ -45472,7 +45355,7 @@ "timeUnixMs": 1633416438825, "relativeTimeMs": 1569825, "teamIds": [ - 4 + "50" ], "runIds": [ 31 @@ -45490,7 +45373,7 @@ "timeUnixMs": 1633416442877, "relativeTimeMs": 1573877, "teamIds": [ - 4 + "50" ], "runIds": [ 33 @@ -45508,7 +45391,7 @@ "timeUnixMs": 1633416450323, "relativeTimeMs": 1581323, "teamIds": [ - 4 + "50" ], "runIds": [ 33 @@ -45526,7 +45409,7 @@ "timeUnixMs": 1633416450323, "relativeTimeMs": 1581323, "teamIds": [ - 4 + "50" ], "runIds": [ 33 @@ -45544,7 +45427,7 @@ "timeUnixMs": 1633416479211, "relativeTimeMs": 1610211, "teamIds": [ - 17 + "59" ], "runIds": [ 34 @@ -45562,7 +45445,7 @@ "timeUnixMs": 1633416484923, "relativeTimeMs": 1615923, "teamIds": [ - 19 + "91" ], "runIds": [ 35 @@ -45580,7 +45463,7 @@ "timeUnixMs": 1633416486177, "relativeTimeMs": 1617177, "teamIds": [ - 20 + "95" ], "runIds": [ 36 @@ -45598,7 +45481,7 @@ "timeUnixMs": 1633416492255, "relativeTimeMs": 1623255, "teamIds": [ - 17 + "59" ], "runIds": [ 34 @@ -45616,7 +45499,7 @@ "timeUnixMs": 1633416493619, "relativeTimeMs": 1624619, "teamIds": [ - 20 + "95" ], "runIds": [ 36 @@ -45634,7 +45517,7 @@ "timeUnixMs": 1633416496535, "relativeTimeMs": 1627535, "teamIds": [ - 19 + "91" ], "runIds": [ 35 @@ -45652,7 +45535,7 @@ "timeUnixMs": 1633416513990, "relativeTimeMs": 1644990, "teamIds": [ - 21 + "104" ], "runIds": [ 37 @@ -45670,7 +45553,7 @@ "timeUnixMs": 1633416515210, "relativeTimeMs": 1646210, "teamIds": [ - 22 + "103" ], "runIds": [ 38 @@ -45688,7 +45571,7 @@ "timeUnixMs": 1633416515210, "relativeTimeMs": 1646210, "teamIds": [ - 22 + "103" ], "runIds": [ 38 @@ -45706,7 +45589,7 @@ "timeUnixMs": 1633416522303, "relativeTimeMs": 1653303, "teamIds": [ - 23 + "108" ], "runIds": [ 39 @@ -45724,7 +45607,7 @@ "timeUnixMs": 1633416522692, "relativeTimeMs": 1653692, "teamIds": [ - 24 + "28" ], "runIds": [ 40 @@ -45742,7 +45625,7 @@ "timeUnixMs": 1633416575705, "relativeTimeMs": 1706705, "teamIds": [ - 25 + "94" ], "runIds": [ 41 @@ -45760,7 +45643,7 @@ "timeUnixMs": 1633416582494, "relativeTimeMs": 1713494, "teamIds": [ - 17 + "59" ], "runIds": [ 42 @@ -45778,7 +45661,7 @@ "timeUnixMs": 1633416606122, "relativeTimeMs": 1737122, "teamIds": [ - 19 + "91" ], "runIds": [ 43 @@ -45796,7 +45679,7 @@ "timeUnixMs": 1633416610935, "relativeTimeMs": 1741935, "teamIds": [ - 26 + "64" ], "runIds": [ 44 @@ -45814,7 +45697,7 @@ "timeUnixMs": 1633416611706, "relativeTimeMs": 1742706, "teamIds": [ - 27 + "96" ], "runIds": [ 45 @@ -45832,7 +45715,7 @@ "timeUnixMs": 1633416658270, "relativeTimeMs": 1789270, "teamIds": [ - 18 + "68" ], "runIds": [ 46 @@ -45850,7 +45733,7 @@ "timeUnixMs": 1633416658270, "relativeTimeMs": 1789270, "teamIds": [ - 18 + "68" ], "runIds": [ 46 @@ -45868,7 +45751,7 @@ "timeUnixMs": 1633416670643, "relativeTimeMs": 1801643, "teamIds": [ - 21 + "104" ], "runIds": [ 48 @@ -45886,7 +45769,7 @@ "timeUnixMs": 1633416678687, "relativeTimeMs": 1809687, "teamIds": [ - 27 + "96" ], "runIds": [ 47 @@ -45904,7 +45787,7 @@ "timeUnixMs": 1633416684727, "relativeTimeMs": 1815727, "teamIds": [ - 21 + "104" ], "runIds": [ 48 @@ -45922,7 +45805,7 @@ "timeUnixMs": 1633416695498, "relativeTimeMs": 1826498, "teamIds": [ - 12 + "56" ], "runIds": [ 49 @@ -45940,7 +45823,7 @@ "timeUnixMs": 1633416711357, "relativeTimeMs": 1842357, "teamIds": [ - 28 + "112" ], "runIds": [ 50 @@ -45958,7 +45841,7 @@ "timeUnixMs": 1633416715705, "relativeTimeMs": 1846705, "teamIds": [ - 29 + "10" ], "runIds": [ 51 @@ -45976,7 +45859,7 @@ "timeUnixMs": 1633416721805, "relativeTimeMs": 1852805, "teamIds": [ - 30 + "7" ], "runIds": [ 52 @@ -45994,7 +45877,7 @@ "timeUnixMs": 1633416739885, "relativeTimeMs": 1870885, "teamIds": [ - 7 + "65" ], "runIds": [ 53 @@ -46012,7 +45895,7 @@ "timeUnixMs": 1633416747091, "relativeTimeMs": 1878091, "teamIds": [ - 7 + "65" ], "runIds": [ 53 @@ -46030,7 +45913,7 @@ "timeUnixMs": 1633416748968, "relativeTimeMs": 1879968, "teamIds": [ - 5 + "70" ], "runIds": [ 54 @@ -46048,7 +45931,7 @@ "timeUnixMs": 1633416754716, "relativeTimeMs": 1885716, "teamIds": [ - 7 + "65" ], "runIds": [ 55 @@ -46066,7 +45949,7 @@ "timeUnixMs": 1633416755612, "relativeTimeMs": 1886612, "teamIds": [ - 5 + "70" ], "runIds": [ 54 @@ -46084,7 +45967,7 @@ "timeUnixMs": 1633416767180, "relativeTimeMs": 1898180, "teamIds": [ - 7 + "65" ], "runIds": [ 55 @@ -46102,7 +45985,7 @@ "timeUnixMs": 1633416767180, "relativeTimeMs": 1898180, "teamIds": [ - 7 + "65" ], "runIds": [ 55 @@ -46120,7 +46003,7 @@ "timeUnixMs": 1633416775335, "relativeTimeMs": 1906335, "teamIds": [ - 31 + "33" ], "runIds": [ 56 @@ -46138,7 +46021,7 @@ "timeUnixMs": 1633416781676, "relativeTimeMs": 1912676, "teamIds": [ - 32 + "45" ], "runIds": [ 57 @@ -46156,7 +46039,7 @@ "timeUnixMs": 1633416788874, "relativeTimeMs": 1919874, "teamIds": [ - 33 + "52" ], "runIds": [ 58 @@ -46174,7 +46057,7 @@ "timeUnixMs": 1633416789150, "relativeTimeMs": 1920150, "teamIds": [ - 2 + "101" ], "runIds": [ 59 @@ -46192,7 +46075,7 @@ "timeUnixMs": 1633416795205, "relativeTimeMs": 1926205, "teamIds": [ - 10 + "47" ], "runIds": [ 60 @@ -46210,7 +46093,7 @@ "timeUnixMs": 1633416799345, "relativeTimeMs": 1930345, "teamIds": [ - 10 + "47" ], "runIds": [ 60 @@ -46228,7 +46111,7 @@ "timeUnixMs": 1633416820191, "relativeTimeMs": 1951191, "teamIds": [ - 2 + "101" ], "runIds": [ 59 @@ -46246,7 +46129,7 @@ "timeUnixMs": 1633416848403, "relativeTimeMs": 1979403, "teamIds": [ - 8 + "29" ], "runIds": [ 61 @@ -46264,7 +46147,7 @@ "timeUnixMs": 1633416854831, "relativeTimeMs": 1985831, "teamIds": [ - 34 + "37" ], "runIds": [ 62 @@ -46282,7 +46165,7 @@ "timeUnixMs": 1633416883858, "relativeTimeMs": 2014858, "teamIds": [ - 35 + "32" ], "runIds": [ 63 @@ -46300,7 +46183,7 @@ "timeUnixMs": 1633416887242, "relativeTimeMs": 2018242, "teamIds": [ - 1 + "102" ], "runIds": [ 64 @@ -46318,7 +46201,7 @@ "timeUnixMs": 1633416893248, "relativeTimeMs": 2024248, "teamIds": [ - 1 + "102" ], "runIds": [ 64 @@ -46336,7 +46219,7 @@ "timeUnixMs": 1633416894974, "relativeTimeMs": 2025974, "teamIds": [ - 2 + "101" ], "runIds": [ 66 @@ -46354,7 +46237,7 @@ "timeUnixMs": 1633416898549, "relativeTimeMs": 2029549, "teamIds": [ - 8 + "29" ], "runIds": [ 65 @@ -46372,7 +46255,7 @@ "timeUnixMs": 1633416906047, "relativeTimeMs": 2037047, "teamIds": [ - 36 + "80" ], "runIds": [ 67 @@ -46390,7 +46273,7 @@ "timeUnixMs": 1633416909634, "relativeTimeMs": 2040634, "teamIds": [ - 37 + "27" ], "runIds": [ 68 @@ -46408,7 +46291,7 @@ "timeUnixMs": 1633416920999, "relativeTimeMs": 2051999, "teamIds": [ - 2 + "101" ], "runIds": [ 66 @@ -46426,7 +46309,7 @@ "timeUnixMs": 1633416929644, "relativeTimeMs": 2060644, "teamIds": [ - 38 + "113" ], "runIds": [ 69 @@ -46444,7 +46327,7 @@ "timeUnixMs": 1633416948290, "relativeTimeMs": 2079290, "teamIds": [ - 25 + "94" ], "runIds": [ 70 @@ -46462,7 +46345,7 @@ "timeUnixMs": 1633416974639, "relativeTimeMs": 2105639, "teamIds": [ - 39 + "79" ], "runIds": [ 71 @@ -46480,7 +46363,7 @@ "timeUnixMs": 1633416991915, "relativeTimeMs": 2122915, "teamIds": [ - 11 + "69" ], "runIds": [ 72 @@ -46498,7 +46381,7 @@ "timeUnixMs": 1633416992375, "relativeTimeMs": 2123375, "teamIds": [ - 40 + "87" ], "runIds": [ 73 @@ -46516,7 +46399,7 @@ "timeUnixMs": 1633417002595, "relativeTimeMs": 2133595, "teamIds": [ - 41 + "22" ], "runIds": [ 74 @@ -46534,7 +46417,7 @@ "timeUnixMs": 1633417009270, "relativeTimeMs": 2140270, "teamIds": [ - 13 + "25" ], "runIds": [ 75 @@ -46552,7 +46435,7 @@ "timeUnixMs": 1633417016275, "relativeTimeMs": 2147275, "teamIds": [ - 13 + "25" ], "runIds": [ 75 @@ -46570,7 +46453,7 @@ "timeUnixMs": 1633417045525, "relativeTimeMs": 2176525, "teamIds": [ - 42 + "12" ], "runIds": [ 76 @@ -46588,7 +46471,7 @@ "timeUnixMs": 1633417060754, "relativeTimeMs": 2191754, "teamIds": [ - 12 + "56" ], "runIds": [ 77 @@ -46606,7 +46489,7 @@ "timeUnixMs": 1633417061323, "relativeTimeMs": 2192323, "teamIds": [ - 41 + "22" ], "runIds": [ 78 @@ -46624,7 +46507,7 @@ "timeUnixMs": 1633417065087, "relativeTimeMs": 2196087, "teamIds": [ - 41 + "22" ], "runIds": [ 78 @@ -46642,7 +46525,7 @@ "timeUnixMs": 1633417066403, "relativeTimeMs": 2197403, "teamIds": [ - 43 + "92" ], "runIds": [ 79 @@ -46660,7 +46543,7 @@ "timeUnixMs": 1633417080304, "relativeTimeMs": 2211304, "teamIds": [ - 17 + "59" ], "runIds": [ 80 @@ -46678,7 +46561,7 @@ "timeUnixMs": 1633417084384, "relativeTimeMs": 2215384, "teamIds": [ - 2 + "101" ], "runIds": [ 81 @@ -46696,7 +46579,7 @@ "timeUnixMs": 1633417087394, "relativeTimeMs": 2218394, "teamIds": [ - 17 + "59" ], "runIds": [ 80 @@ -46714,7 +46597,7 @@ "timeUnixMs": 1633417097288, "relativeTimeMs": 2228288, "teamIds": [ - 44 + "72" ], "runIds": [ 82 @@ -46732,7 +46615,7 @@ "timeUnixMs": 1633417103838, "relativeTimeMs": 2234838, "teamIds": [ - 21 + "104" ], "runIds": [ 83 @@ -46750,7 +46633,7 @@ "timeUnixMs": 1633417114263, "relativeTimeMs": 2245263, "teamIds": [ - 21 + "104" ], "runIds": [ 83 @@ -46768,7 +46651,7 @@ "timeUnixMs": 1633417115325, "relativeTimeMs": 2246325, "teamIds": [ - 11 + "69" ], "runIds": [ 84 @@ -46786,7 +46669,7 @@ "timeUnixMs": 1633417125175, "relativeTimeMs": 2256175, "teamIds": [ - 2 + "101" ], "runIds": [ 81 @@ -46804,7 +46687,7 @@ "timeUnixMs": 1633417125332, "relativeTimeMs": 2256332, "teamIds": [ - 11 + "69" ], "runIds": [ 87 @@ -46822,7 +46705,7 @@ "timeUnixMs": 1633417126067, "relativeTimeMs": 2257067, "teamIds": [ - 8 + "29" ], "runIds": [ 85 @@ -46840,7 +46723,7 @@ "timeUnixMs": 1633417127416, "relativeTimeMs": 2258416, "teamIds": [ - 17 + "59" ], "runIds": [ 88 @@ -46858,7 +46741,7 @@ "timeUnixMs": 1633417127798, "relativeTimeMs": 2258798, "teamIds": [ - 45 + "34" ], "runIds": [ 86 @@ -46876,7 +46759,7 @@ "timeUnixMs": 1633417131898, "relativeTimeMs": 2262898, "teamIds": [ - 17 + "59" ], "runIds": [ 88 @@ -46894,7 +46777,7 @@ "timeUnixMs": 1633417142543, "relativeTimeMs": 2273543, "teamIds": [ - 46 + "53" ], "runIds": [ 89 @@ -46912,7 +46795,7 @@ "timeUnixMs": 1633417149802, "relativeTimeMs": 2280802, "teamIds": [ - 47 + "99" ], "runIds": [ 90 @@ -46930,7 +46813,7 @@ "timeUnixMs": 1633417150428, "relativeTimeMs": 2281428, "teamIds": [ - 11 + "69" ], "runIds": [ 87 @@ -46948,7 +46831,7 @@ "timeUnixMs": 1633417166670, "relativeTimeMs": 2297670, "teamIds": [ - 48 + "106" ], "runIds": [ 91 @@ -46966,7 +46849,7 @@ "timeUnixMs": 1633417174487, "relativeTimeMs": 2305487, "teamIds": [ - 49 + "98" ], "runIds": [ 92 @@ -46984,7 +46867,7 @@ "timeUnixMs": 1633417193723, "relativeTimeMs": 2324723, "teamIds": [ - 50 + "11" ], "runIds": [ 93 @@ -47002,7 +46885,7 @@ "timeUnixMs": 1633417204332, "relativeTimeMs": 2335332, "teamIds": [ - 51 + "18" ], "runIds": [ 94 @@ -47020,7 +46903,7 @@ "timeUnixMs": 1633417205105, "relativeTimeMs": 2336105, "teamIds": [ - 52 + "74" ], "runIds": [ 95 @@ -47038,7 +46921,7 @@ "timeUnixMs": 1633417210348, "relativeTimeMs": 2341348, "teamIds": [ - 10 + "47" ], "runIds": [ 96 @@ -47056,7 +46939,7 @@ "timeUnixMs": 1633417213886, "relativeTimeMs": 2344886, "teamIds": [ - 13 + "25" ], "runIds": [ 97 @@ -47074,7 +46957,7 @@ "timeUnixMs": 1633417217510, "relativeTimeMs": 2348510, "teamIds": [ - 10 + "47" ], "runIds": [ 96 @@ -47092,7 +46975,7 @@ "timeUnixMs": 1633417218439, "relativeTimeMs": 2349439, "teamIds": [ - 13 + "25" ], "runIds": [ 97 @@ -47110,7 +46993,7 @@ "timeUnixMs": 1633417229208, "relativeTimeMs": 2360208, "teamIds": [ - 53 + "116" ], "runIds": [ 98 @@ -47128,7 +47011,7 @@ "timeUnixMs": 1633417230349, "relativeTimeMs": 2361349, "teamIds": [ - 23 + "108" ], "runIds": [ 100 @@ -47146,7 +47029,7 @@ "timeUnixMs": 1633417230799, "relativeTimeMs": 2361799, "teamIds": [ - 54 + "73" ], "runIds": [ 99 @@ -47164,7 +47047,7 @@ "timeUnixMs": 1633417234700, "relativeTimeMs": 2365700, "teamIds": [ - 23 + "108" ], "runIds": [ 100 @@ -47182,7 +47065,7 @@ "timeUnixMs": 1633417245947, "relativeTimeMs": 2376947, "teamIds": [ - 28 + "112" ], "runIds": [ 101 @@ -47200,7 +47083,7 @@ "timeUnixMs": 1633417254860, "relativeTimeMs": 2385860, "teamIds": [ - 1 + "102" ], "runIds": [ 103 @@ -47218,7 +47101,7 @@ "timeUnixMs": 1633417255573, "relativeTimeMs": 2386573, "teamIds": [ - 28 + "112" ], "runIds": [ 101 @@ -47236,7 +47119,7 @@ "timeUnixMs": 1633417259175, "relativeTimeMs": 2390175, "teamIds": [ - 55 + "43" ], "runIds": [ 102 @@ -47254,7 +47137,7 @@ "timeUnixMs": 1633417264400, "relativeTimeMs": 2395400, "teamIds": [ - 1 + "102" ], "runIds": [ 103 @@ -47272,7 +47155,7 @@ "timeUnixMs": 1633417266901, "relativeTimeMs": 2397901, "teamIds": [ - 41 + "22" ], "runIds": [ 104 @@ -47290,7 +47173,7 @@ "timeUnixMs": 1633417282529, "relativeTimeMs": 2413529, "teamIds": [ - 37 + "27" ], "runIds": [ 106 @@ -47308,7 +47191,7 @@ "timeUnixMs": 1633417286066, "relativeTimeMs": 2417066, "teamIds": [ - 56 + "111" ], "runIds": [ 105 @@ -47326,7 +47209,7 @@ "timeUnixMs": 1633417288247, "relativeTimeMs": 2419247, "teamIds": [ - 37 + "27" ], "runIds": [ 106 @@ -47344,7 +47227,7 @@ "timeUnixMs": 1633417293974, "relativeTimeMs": 2424974, "teamIds": [ - 57 + "51" ], "runIds": [ 107 @@ -47362,7 +47245,7 @@ "timeUnixMs": 1633417296763, "relativeTimeMs": 2427763, "teamIds": [ - 23 + "108" ], "runIds": [ 108 @@ -47380,7 +47263,7 @@ "timeUnixMs": 1633417324470, "relativeTimeMs": 2455470, "teamIds": [ - 20 + "95" ], "runIds": [ 109 @@ -47398,7 +47281,7 @@ "timeUnixMs": 1633417328361, "relativeTimeMs": 2459361, "teamIds": [ - 20 + "95" ], "runIds": [ 109 @@ -47416,7 +47299,7 @@ "timeUnixMs": 1633417333238, "relativeTimeMs": 2464238, "teamIds": [ - 58 + "119" ], "runIds": [ 110 @@ -47434,7 +47317,7 @@ "timeUnixMs": 1633417340454, "relativeTimeMs": 2471454, "teamIds": [ - 59 + "71" ], "runIds": [ 111 @@ -47452,7 +47335,7 @@ "timeUnixMs": 1633417366262, "relativeTimeMs": 2497262, "teamIds": [ - 51 + "18" ], "runIds": [ 112 @@ -47470,7 +47353,7 @@ "timeUnixMs": 1633417367419, "relativeTimeMs": 2498419, "teamIds": [ - 60 + "31" ], "runIds": [ 113 @@ -47488,7 +47371,7 @@ "timeUnixMs": 1633417378021, "relativeTimeMs": 2509021, "teamIds": [ - 61 + "55" ], "runIds": [ 114 @@ -47506,7 +47389,7 @@ "timeUnixMs": 1633417385082, "relativeTimeMs": 2516082, "teamIds": [ - 29 + "10" ], "runIds": [ 115 @@ -47524,7 +47407,7 @@ "timeUnixMs": 1633417390515, "relativeTimeMs": 2521515, "teamIds": [ - 29 + "10" ], "runIds": [ 115 @@ -47542,7 +47425,7 @@ "timeUnixMs": 1633417410827, "relativeTimeMs": 2541827, "teamIds": [ - 43 + "92" ], "runIds": [ 116 @@ -47560,7 +47443,7 @@ "timeUnixMs": 1633417422775, "relativeTimeMs": 2553775, "teamIds": [ - 51 + "18" ], "runIds": [ 117 @@ -47578,7 +47461,7 @@ "timeUnixMs": 1633417427093, "relativeTimeMs": 2558093, "teamIds": [ - 22 + "103" ], "runIds": [ 119 @@ -47596,7 +47479,7 @@ "timeUnixMs": 1633417430540, "relativeTimeMs": 2561540, "teamIds": [ - 22 + "103" ], "runIds": [ 119 @@ -47614,7 +47497,7 @@ "timeUnixMs": 1633417431947, "relativeTimeMs": 2562947, "teamIds": [ - 62 + "44" ], "runIds": [ 118 @@ -47632,7 +47515,7 @@ "timeUnixMs": 1633417435130, "relativeTimeMs": 2566130, "teamIds": [ - 43 + "92" ], "runIds": [ 120 @@ -47650,7 +47533,7 @@ "timeUnixMs": 1633417478195, "relativeTimeMs": 2609195, "teamIds": [ - 48 + "106" ], "runIds": [ 121 @@ -47668,7 +47551,7 @@ "timeUnixMs": 1633417487914, "relativeTimeMs": 2618914, "teamIds": [ - 58 + "119" ], "runIds": [ 122 @@ -47686,7 +47569,7 @@ "timeUnixMs": 1633417496628, "relativeTimeMs": 2627628, "teamIds": [ - 7 + "65" ], "runIds": [ 124 @@ -47704,7 +47587,7 @@ "timeUnixMs": 1633417500728, "relativeTimeMs": 2631728, "teamIds": [ - 7 + "65" ], "runIds": [ 124 @@ -47722,7 +47605,7 @@ "timeUnixMs": 1633417500976, "relativeTimeMs": 2631976, "teamIds": [ - 63 + "42" ], "runIds": [ 123 @@ -47740,7 +47623,7 @@ "timeUnixMs": 1633417529698, "relativeTimeMs": 2660698, "teamIds": [ - 50 + "11" ], "runIds": [ 125 @@ -47758,7 +47641,7 @@ "timeUnixMs": 1633417531616, "relativeTimeMs": 2662616, "teamIds": [ - 39 + "79" ], "runIds": [ 127 @@ -47776,7 +47659,7 @@ "timeUnixMs": 1633417537125, "relativeTimeMs": 2668125, "teamIds": [ - 29 + "10" ], "runIds": [ 128 @@ -47794,7 +47677,7 @@ "timeUnixMs": 1633417537655, "relativeTimeMs": 2668655, "teamIds": [ - 19 + "91" ], "runIds": [ 126 @@ -47812,7 +47695,7 @@ "timeUnixMs": 1633417538468, "relativeTimeMs": 2669468, "teamIds": [ - 39 + "79" ], "runIds": [ 127 @@ -47830,7 +47713,7 @@ "timeUnixMs": 1633417541991, "relativeTimeMs": 2672991, "teamIds": [ - 29 + "10" ], "runIds": [ 128 @@ -47848,7 +47731,7 @@ "timeUnixMs": 1633417545847, "relativeTimeMs": 2676847, "teamIds": [ - 13 + "25" ], "runIds": [ 130 @@ -47866,7 +47749,7 @@ "timeUnixMs": 1633417549953, "relativeTimeMs": 2680953, "teamIds": [ - 51 + "18" ], "runIds": [ 129 @@ -47884,7 +47767,7 @@ "timeUnixMs": 1633417552284, "relativeTimeMs": 2683284, "teamIds": [ - 13 + "25" ], "runIds": [ 130 @@ -47902,7 +47785,7 @@ "timeUnixMs": 1633417567411, "relativeTimeMs": 2698411, "teamIds": [ - 64 + "4" ], "runIds": [ 131 @@ -47920,7 +47803,7 @@ "timeUnixMs": 1633417589519, "relativeTimeMs": 2720519, "teamIds": [ - 50 + "11" ], "runIds": [ 132 @@ -47938,7 +47821,7 @@ "timeUnixMs": 1633417599386, "relativeTimeMs": 2730386, "teamIds": [ - 18 + "68" ], "runIds": [ 133 @@ -47956,7 +47839,7 @@ "timeUnixMs": 1633417607889, "relativeTimeMs": 2738889, "teamIds": [ - 37 + "27" ], "runIds": [ 134 @@ -47974,7 +47857,7 @@ "timeUnixMs": 1633417610348, "relativeTimeMs": 2741348, "teamIds": [ - 1 + "102" ], "runIds": [ 135 @@ -47992,7 +47875,7 @@ "timeUnixMs": 1633417615480, "relativeTimeMs": 2746480, "teamIds": [ - 1 + "102" ], "runIds": [ 135 @@ -48010,7 +47893,7 @@ "timeUnixMs": 1633417651031, "relativeTimeMs": 2782031, "teamIds": [ - 15 + "6" ], "runIds": [ 136 @@ -48028,7 +47911,7 @@ "timeUnixMs": 1633417667850, "relativeTimeMs": 2798850, "teamIds": [ - 65 + "23" ], "runIds": [ 137 @@ -48046,7 +47929,7 @@ "timeUnixMs": 1633417671686, "relativeTimeMs": 2802686, "teamIds": [ - 58 + "119" ], "runIds": [ 139 @@ -48064,7 +47947,7 @@ "timeUnixMs": 1633417672937, "relativeTimeMs": 2803937, "teamIds": [ - 66 + "117" ], "runIds": [ 138 @@ -48082,7 +47965,7 @@ "timeUnixMs": 1633417687063, "relativeTimeMs": 2818063, "teamIds": [ - 15 + "6" ], "runIds": [ 140 @@ -48100,7 +47983,7 @@ "timeUnixMs": 1633417688374, "relativeTimeMs": 2819374, "teamIds": [ - 67 + "115" ], "runIds": [ 141 @@ -48118,7 +48001,7 @@ "timeUnixMs": 1633417689436, "relativeTimeMs": 2820436, "teamIds": [ - 2 + "101" ], "runIds": [ 143 @@ -48136,7 +48019,7 @@ "timeUnixMs": 1633417690854, "relativeTimeMs": 2821854, "teamIds": [ - 68 + "107" ], "runIds": [ 142 @@ -48154,7 +48037,7 @@ "timeUnixMs": 1633417696264, "relativeTimeMs": 2827264, "teamIds": [ - 2 + "101" ], "runIds": [ 143 @@ -48172,7 +48055,7 @@ "timeUnixMs": 1633417698019, "relativeTimeMs": 2829019, "teamIds": [ - 69 + "3" ], "runIds": [ 144 @@ -48190,7 +48073,7 @@ "timeUnixMs": 1633417710111, "relativeTimeMs": 2841111, "teamIds": [ - 62 + "44" ], "runIds": [ 145 @@ -48208,7 +48091,7 @@ "timeUnixMs": 1633417711778, "relativeTimeMs": 2842778, "teamIds": [ - 7 + "65" ], "runIds": [ 146 @@ -48226,7 +48109,7 @@ "timeUnixMs": 1633417715187, "relativeTimeMs": 2846187, "teamIds": [ - 9 + "114" ], "runIds": [ 147 @@ -48244,7 +48127,7 @@ "timeUnixMs": 1633417716126, "relativeTimeMs": 2847126, "teamIds": [ - 7 + "65" ], "runIds": [ 146 @@ -48262,7 +48145,7 @@ "timeUnixMs": 1633417722336, "relativeTimeMs": 2853336, "teamIds": [ - 9 + "114" ], "runIds": [ 147 @@ -48280,7 +48163,7 @@ "timeUnixMs": 1633417737676, "relativeTimeMs": 2868676, "teamIds": [ - 70 + "100" ], "runIds": [ 148 @@ -48298,7 +48181,7 @@ "timeUnixMs": 1633417769012, "relativeTimeMs": 2900012, "teamIds": [ - 15 + "6" ], "runIds": [ 149 @@ -48316,7 +48199,7 @@ "timeUnixMs": 1633417771045, "relativeTimeMs": 2902045, "teamIds": [ - 33 + "52" ], "runIds": [ 150 @@ -48334,7 +48217,7 @@ "timeUnixMs": 1633417776574, "relativeTimeMs": 2907574, "teamIds": [ - 71 + "105" ], "runIds": [ 151 @@ -48352,7 +48235,7 @@ "timeUnixMs": 1633417781279, "relativeTimeMs": 2912279, "teamIds": [ - 68 + "107" ], "runIds": [ 152 @@ -48370,7 +48253,7 @@ "timeUnixMs": 1633417800111, "relativeTimeMs": 2931111, "teamIds": [ - 28 + "112" ], "runIds": [ 153 @@ -48388,7 +48271,7 @@ "timeUnixMs": 1633417804731, "relativeTimeMs": 2935731, "teamIds": [ - 28 + "112" ], "runIds": [ 153 @@ -48406,7 +48289,7 @@ "timeUnixMs": 1633417808868, "relativeTimeMs": 2939868, "teamIds": [ - 69 + "3" ], "runIds": [ 154 @@ -48424,7 +48307,7 @@ "timeUnixMs": 1633417821795, "relativeTimeMs": 2952795, "teamIds": [ - 7 + "65" ], "runIds": [ 155 @@ -48442,7 +48325,7 @@ "timeUnixMs": 1633417828178, "relativeTimeMs": 2959178, "teamIds": [ - 7 + "65" ], "runIds": [ 155 @@ -48460,7 +48343,7 @@ "timeUnixMs": 1633417857549, "relativeTimeMs": 2988549, "teamIds": [ - 58 + "119" ], "runIds": [ 157 @@ -48478,7 +48361,7 @@ "timeUnixMs": 1633417858201, "relativeTimeMs": 2989201, "teamIds": [ - 12 + "56" ], "runIds": [ 156 @@ -48496,7 +48379,7 @@ "timeUnixMs": 1633417878216, "relativeTimeMs": 3009216, "teamIds": [ - 72 + "13" ], "runIds": [ 158 @@ -48514,7 +48397,7 @@ "timeUnixMs": 1633417882664, "relativeTimeMs": 3013664, "teamIds": [ - 32 + "45" ], "runIds": [ 159 @@ -48532,7 +48415,7 @@ "timeUnixMs": 1633417902222, "relativeTimeMs": 3033222, "teamIds": [ - 54 + "73" ], "runIds": [ 160 @@ -48550,7 +48433,7 @@ "timeUnixMs": 1633417909675, "relativeTimeMs": 3040675, "teamIds": [ - 73 + "76" ], "runIds": [ 161 @@ -48568,7 +48451,7 @@ "timeUnixMs": 1633417911845, "relativeTimeMs": 3042845, "teamIds": [ - 69 + "3" ], "runIds": [ 162 @@ -48586,7 +48469,7 @@ "timeUnixMs": 1633417934492, "relativeTimeMs": 3065492, "teamIds": [ - 61 + "55" ], "runIds": [ 163 @@ -48604,7 +48487,7 @@ "timeUnixMs": 1633417939641, "relativeTimeMs": 3070641, "teamIds": [ - 48 + "106" ], "runIds": [ 164 @@ -48622,7 +48505,7 @@ "timeUnixMs": 1633417941662, "relativeTimeMs": 3072662, "teamIds": [ - 40 + "87" ], "runIds": [ 165 @@ -48640,7 +48523,7 @@ "timeUnixMs": 1633417947239, "relativeTimeMs": 3078239, "teamIds": [ - 3 + "67" ], "runIds": [ 166 @@ -48658,7 +48541,7 @@ "timeUnixMs": 1633417953467, "relativeTimeMs": 3084467, "teamIds": [ - 29 + "10" ], "runIds": [ 167 @@ -48676,7 +48559,7 @@ "timeUnixMs": 1633417960091, "relativeTimeMs": 3091091, "teamIds": [ - 74 + "78" ], "runIds": [ 168 @@ -48694,7 +48577,7 @@ "timeUnixMs": 1633417960708, "relativeTimeMs": 3091708, "teamIds": [ - 29 + "10" ], "runIds": [ 167 @@ -48712,7 +48595,7 @@ "timeUnixMs": 1633417970163, "relativeTimeMs": 3101163, "teamIds": [ - 25 + "94" ], "runIds": [ 169 @@ -48730,7 +48613,7 @@ "timeUnixMs": 1633417989537, "relativeTimeMs": 3120537, "teamIds": [ - 58 + "119" ], "runIds": [ 171 @@ -48748,7 +48631,7 @@ "timeUnixMs": 1633417992080, "relativeTimeMs": 3123080, "teamIds": [ - 68 + "107" ], "runIds": [ 170 @@ -48766,7 +48649,7 @@ "timeUnixMs": 1633418021487, "relativeTimeMs": 3152487, "teamIds": [ - 15 + "6" ], "runIds": [ 172 @@ -48784,7 +48667,7 @@ "timeUnixMs": 1633418025218, "relativeTimeMs": 3156218, "teamIds": [ - 9 + "114" ], "runIds": [ 173 @@ -48802,7 +48685,7 @@ "timeUnixMs": 1633418030042, "relativeTimeMs": 3161042, "teamIds": [ - 9 + "114" ], "runIds": [ 173 @@ -48820,7 +48703,7 @@ "timeUnixMs": 1633418032191, "relativeTimeMs": 3163191, "teamIds": [ - 40 + "87" ], "runIds": [ 174 @@ -48838,7 +48721,7 @@ "timeUnixMs": 1633418053074, "relativeTimeMs": 3184074, "teamIds": [ - 52 + "74" ], "runIds": [ 177 @@ -48856,7 +48739,7 @@ "timeUnixMs": 1633418054773, "relativeTimeMs": 3185773, "teamIds": [ - 75 + "48" ], "runIds": [ 175 @@ -48874,7 +48757,7 @@ "timeUnixMs": 1633418060952, "relativeTimeMs": 3191952, "teamIds": [ - 75 + "48" ], "runIds": [ 176 @@ -48892,7 +48775,7 @@ "timeUnixMs": 1633418064554, "relativeTimeMs": 3195554, "teamIds": [ - 76 + "9" ], "runIds": [ 178 @@ -48910,7 +48793,7 @@ "timeUnixMs": 1633418068269, "relativeTimeMs": 3199269, "teamIds": [ - 51 + "18" ], "runIds": [ 179 @@ -48928,7 +48811,7 @@ "timeUnixMs": 1633418073717, "relativeTimeMs": 3204717, "teamIds": [ - 77 + "5" ], "runIds": [ 180 @@ -48946,7 +48829,7 @@ "timeUnixMs": 1633418074849, "relativeTimeMs": 3205849, "teamIds": [ - 17 + "59" ], "runIds": [ 181 @@ -48964,7 +48847,7 @@ "timeUnixMs": 1633418078915, "relativeTimeMs": 3209915, "teamIds": [ - 17 + "59" ], "runIds": [ 181 @@ -48982,7 +48865,7 @@ "timeUnixMs": 1633418083185, "relativeTimeMs": 3214185, "teamIds": [ - 46 + "53" ], "runIds": [ 183 @@ -49000,7 +48883,7 @@ "timeUnixMs": 1633418083403, "relativeTimeMs": 3214403, "teamIds": [ - 35 + "32" ], "runIds": [ 182 @@ -49018,7 +48901,7 @@ "timeUnixMs": 1633418086400, "relativeTimeMs": 3217400, "teamIds": [ - 79 + "62" ], "runIds": [ 185 @@ -49036,7 +48919,7 @@ "timeUnixMs": 1633418088059, "relativeTimeMs": 3219059, "teamIds": [ - 28 + "112" ], "runIds": [ 186 @@ -49054,7 +48937,7 @@ "timeUnixMs": 1633418090204, "relativeTimeMs": 3221204, "teamIds": [ - 78 + "46" ], "runIds": [ 184 @@ -49072,7 +48955,7 @@ "timeUnixMs": 1633418092197, "relativeTimeMs": 3223197, "teamIds": [ - 28 + "112" ], "runIds": [ 186 @@ -49090,7 +48973,7 @@ "timeUnixMs": 1633418094187, "relativeTimeMs": 3225187, "teamIds": [ - 14 + "60" ], "runIds": [ 187 @@ -49108,7 +48991,7 @@ "timeUnixMs": 1633418096170, "relativeTimeMs": 3227170, "teamIds": [ - 5 + "70" ], "runIds": [ 188 @@ -49126,7 +49009,7 @@ "timeUnixMs": 1633418100847, "relativeTimeMs": 3231847, "teamIds": [ - 5 + "70" ], "runIds": [ 188 @@ -49144,7 +49027,7 @@ "timeUnixMs": 1633418107447, "relativeTimeMs": 3238447, "teamIds": [ - 15 + "6" ], "runIds": [ 189 @@ -49162,7 +49045,7 @@ "timeUnixMs": 1633418115913, "relativeTimeMs": 3246913, "teamIds": [ - 76 + "9" ], "runIds": [ 190 @@ -49180,7 +49063,7 @@ "timeUnixMs": 1633418140515, "relativeTimeMs": 3271515, "teamIds": [ - 80 + "83" ], "runIds": [ 191 @@ -49198,7 +49081,7 @@ "timeUnixMs": 1633418142617, "relativeTimeMs": 3273617, "teamIds": [ - 11 + "69" ], "runIds": [ 192 @@ -49216,7 +49099,7 @@ "timeUnixMs": 1633418145853, "relativeTimeMs": 3276853, "teamIds": [ - 11 + "69" ], "runIds": [ 192 @@ -49234,7 +49117,7 @@ "timeUnixMs": 1633418154407, "relativeTimeMs": 3285407, "teamIds": [ - 68 + "107" ], "runIds": [ 193 @@ -49252,7 +49135,7 @@ "timeUnixMs": 1633418159036, "relativeTimeMs": 3290036, "teamIds": [ - 77 + "5" ], "runIds": [ 194 @@ -49270,7 +49153,7 @@ "timeUnixMs": 1633418162028, "relativeTimeMs": 3293028, "teamIds": [ - 81 + "86" ], "runIds": [ 195 @@ -49288,7 +49171,7 @@ "timeUnixMs": 1633418164093, "relativeTimeMs": 3295093, "teamIds": [ - 12 + "56" ], "runIds": [ 196 @@ -49306,7 +49189,7 @@ "timeUnixMs": 1633418166595, "relativeTimeMs": 3297595, "teamIds": [ - 61 + "55" ], "runIds": [ 197 @@ -49324,7 +49207,7 @@ "timeUnixMs": 1633418168199, "relativeTimeMs": 3299199, "teamIds": [ - 12 + "56" ], "runIds": [ 196 @@ -49342,7 +49225,7 @@ "timeUnixMs": 1633418175067, "relativeTimeMs": 3306067, "teamIds": [ - 61 + "55" ], "runIds": [ 197 @@ -49360,7 +49243,7 @@ "timeUnixMs": 1633418176825, "relativeTimeMs": 3307825, "teamIds": [ - 22 + "103" ], "runIds": [ 198 @@ -49378,7 +49261,7 @@ "timeUnixMs": 1633418179216, "relativeTimeMs": 3310216, "teamIds": [ - 13 + "25" ], "runIds": [ 199 @@ -49396,7 +49279,7 @@ "timeUnixMs": 1633418182769, "relativeTimeMs": 3313769, "teamIds": [ - 5 + "70" ], "runIds": [ 200 @@ -49414,7 +49297,7 @@ "timeUnixMs": 1633418188091, "relativeTimeMs": 3319091, "teamIds": [ - 13 + "25" ], "runIds": [ 199 @@ -49432,7 +49315,7 @@ "timeUnixMs": 1633418188769, "relativeTimeMs": 3319769, "teamIds": [ - 5 + "70" ], "runIds": [ 200 @@ -49450,7 +49333,7 @@ "timeUnixMs": 1633418195537, "relativeTimeMs": 3326537, "teamIds": [ - 79 + "62" ], "runIds": [ 201 @@ -49468,7 +49351,7 @@ "timeUnixMs": 1633418195970, "relativeTimeMs": 3326970, "teamIds": [ - 39 + "79" ], "runIds": [ 202 @@ -49486,7 +49369,7 @@ "timeUnixMs": 1633418199783, "relativeTimeMs": 3330783, "teamIds": [ - 39 + "79" ], "runIds": [ 202 @@ -49504,7 +49387,7 @@ "timeUnixMs": 1633418217082, "relativeTimeMs": 3348082, "teamIds": [ - 30 + "7" ], "runIds": [ 203 @@ -49522,7 +49405,7 @@ "timeUnixMs": 1633418239944, "relativeTimeMs": 3370944, "teamIds": [ - 82 + "118" ], "runIds": [ 204 @@ -49540,7 +49423,7 @@ "timeUnixMs": 1633418249289, "relativeTimeMs": 3380289, "teamIds": [ - 11 + "69" ], "runIds": [ 206 @@ -49558,7 +49441,7 @@ "timeUnixMs": 1633418252848, "relativeTimeMs": 3383848, "teamIds": [ - 11 + "69" ], "runIds": [ 206 @@ -49576,7 +49459,7 @@ "timeUnixMs": 1633418263090, "relativeTimeMs": 3394090, "teamIds": [ - 9 + "114" ], "runIds": [ 208 @@ -49594,7 +49477,7 @@ "timeUnixMs": 1633418265895, "relativeTimeMs": 3396895, "teamIds": [ - 73 + "76" ], "runIds": [ 205 @@ -49612,7 +49495,7 @@ "timeUnixMs": 1633418266687, "relativeTimeMs": 3397687, "teamIds": [ - 9 + "114" ], "runIds": [ 208 @@ -49630,7 +49513,7 @@ "timeUnixMs": 1633418269618, "relativeTimeMs": 3400618, "teamIds": [ - 40 + "87" ], "runIds": [ 207 @@ -49648,7 +49531,7 @@ "timeUnixMs": 1633418270863, "relativeTimeMs": 3401863, "teamIds": [ - 83 + "20" ], "runIds": [ 209 @@ -49666,7 +49549,7 @@ "timeUnixMs": 1633418291012, "relativeTimeMs": 3422012, "teamIds": [ - 4 + "50" ], "runIds": [ 211 @@ -49684,7 +49567,7 @@ "timeUnixMs": 1633418291378, "relativeTimeMs": 3422378, "teamIds": [ - 84 + "40" ], "runIds": [ 210 @@ -49702,7 +49585,7 @@ "timeUnixMs": 1633418295288, "relativeTimeMs": 3426288, "teamIds": [ - 4 + "50" ], "runIds": [ 211 @@ -49720,7 +49603,7 @@ "timeUnixMs": 1633418297815, "relativeTimeMs": 3428815, "teamIds": [ - 9 + "114" ], "runIds": [ 213 @@ -49738,7 +49621,7 @@ "timeUnixMs": 1633418298560, "relativeTimeMs": 3429560, "teamIds": [ - 76 + "9" ], "runIds": [ 212 @@ -49756,7 +49639,7 @@ "timeUnixMs": 1633418301772, "relativeTimeMs": 3432772, "teamIds": [ - 9 + "114" ], "runIds": [ 213 @@ -49774,7 +49657,7 @@ "timeUnixMs": 1633418313923, "relativeTimeMs": 3444923, "teamIds": [ - 74 + "78" ], "runIds": [ 214 @@ -49792,7 +49675,7 @@ "timeUnixMs": 1633418321028, "relativeTimeMs": 3452028, "teamIds": [ - 85 + "61" ], "runIds": [ 215 @@ -49810,7 +49693,7 @@ "timeUnixMs": 1633418348384, "relativeTimeMs": 3479384, "teamIds": [ - 79 + "62" ], "runIds": [ 216 @@ -49828,7 +49711,7 @@ "timeUnixMs": 1633418362759, "relativeTimeMs": 3493759, "teamIds": [ - 39 + "79" ], "runIds": [ 218 @@ -49846,7 +49729,7 @@ "timeUnixMs": 1633418362851, "relativeTimeMs": 3493851, "teamIds": [ - 20 + "95" ], "runIds": [ 217 @@ -49864,7 +49747,7 @@ "timeUnixMs": 1633418364883, "relativeTimeMs": 3495883, "teamIds": [ - 3 + "67" ], "runIds": [ 219 @@ -49882,7 +49765,7 @@ "timeUnixMs": 1633418369983, "relativeTimeMs": 3500983, "teamIds": [ - 39 + "79" ], "runIds": [ 218 @@ -49900,7 +49783,7 @@ "timeUnixMs": 1633418407058, "relativeTimeMs": 3538058, "teamIds": [ - 33 + "52" ], "runIds": [ 221 @@ -49918,7 +49801,7 @@ "timeUnixMs": 1633418411208, "relativeTimeMs": 3542208, "teamIds": [ - 10 + "47" ], "runIds": [ 222 @@ -49936,7 +49819,7 @@ "timeUnixMs": 1633418413031, "relativeTimeMs": 3544031, "teamIds": [ - 46 + "53" ], "runIds": [ 220 @@ -49954,7 +49837,7 @@ "timeUnixMs": 1633418415471, "relativeTimeMs": 3546471, "teamIds": [ - 33 + "52" ], "runIds": [ 221 @@ -49972,7 +49855,7 @@ "timeUnixMs": 1633418427595, "relativeTimeMs": 3558595, "teamIds": [ - 10 + "47" ], "runIds": [ 222 @@ -49990,7 +49873,7 @@ "timeUnixMs": 1633418428520, "relativeTimeMs": 3559520, "teamIds": [ - 45 + "34" ], "runIds": [ 223 @@ -50008,7 +49891,7 @@ "timeUnixMs": 1633418429276, "relativeTimeMs": 3560276, "teamIds": [ - 11 + "69" ], "runIds": [ 224 @@ -50026,7 +49909,7 @@ "timeUnixMs": 1633418436973, "relativeTimeMs": 3567973, "teamIds": [ - 11 + "69" ], "runIds": [ 224 @@ -50044,7 +49927,7 @@ "timeUnixMs": 1633418455625, "relativeTimeMs": 3586625, "teamIds": [ - 57 + "51" ], "runIds": [ 225 @@ -50062,7 +49945,7 @@ "timeUnixMs": 1633418461855, "relativeTimeMs": 3592855, "teamIds": [ - 34 + "37" ], "runIds": [ 226 @@ -50080,7 +49963,7 @@ "timeUnixMs": 1633418483747, "relativeTimeMs": 3614747, "teamIds": [ - 86 + "38" ], "runIds": [ 227 @@ -50098,7 +49981,7 @@ "timeUnixMs": 1633418495243, "relativeTimeMs": 3626243, "teamIds": [ - 76 + "9" ], "runIds": [ 229 @@ -50116,7 +49999,7 @@ "timeUnixMs": 1633418497962, "relativeTimeMs": 3628962, "teamIds": [ - 9 + "114" ], "runIds": [ 231 @@ -50134,7 +50017,7 @@ "timeUnixMs": 1633418502741, "relativeTimeMs": 3633741, "teamIds": [ - 46 + "53" ], "runIds": [ 230 @@ -50152,7 +50035,7 @@ "timeUnixMs": 1633418507086, "relativeTimeMs": 3638086, "teamIds": [ - 9 + "114" ], "runIds": [ 231 @@ -50170,7 +50053,7 @@ "timeUnixMs": 1633418507167, "relativeTimeMs": 3638167, "teamIds": [ - 87 + "66" ], "runIds": [ 228 @@ -50188,7 +50071,7 @@ "timeUnixMs": 1633418509299, "relativeTimeMs": 3640299, "teamIds": [ - 79 + "62" ], "runIds": [ 232 @@ -50206,7 +50089,7 @@ "timeUnixMs": 1633418511696, "relativeTimeMs": 3642696, "teamIds": [ - 9 + "114" ], "runIds": [ 233 @@ -50224,7 +50107,7 @@ "timeUnixMs": 1633418511890, "relativeTimeMs": 3642890, "teamIds": [ - 17 + "59" ], "runIds": [ 234 @@ -50242,7 +50125,7 @@ "timeUnixMs": 1633418514870, "relativeTimeMs": 3645870, "teamIds": [ - 3 + "67" ], "runIds": [ 235 @@ -50260,7 +50143,7 @@ "timeUnixMs": 1633418515628, "relativeTimeMs": 3646628, "teamIds": [ - 9 + "114" ], "runIds": [ 233 @@ -50278,7 +50161,7 @@ "timeUnixMs": 1633418520200, "relativeTimeMs": 3651200, "teamIds": [ - 17 + "59" ], "runIds": [ 234 @@ -50296,7 +50179,7 @@ "timeUnixMs": 1633418526683, "relativeTimeMs": 3657683, "teamIds": [ - 45 + "34" ], "runIds": [ 236 @@ -50314,7 +50197,7 @@ "timeUnixMs": 1633418551974, "relativeTimeMs": 3682974, "teamIds": [ - 87 + "66" ], "runIds": [ 237 @@ -50332,7 +50215,7 @@ "timeUnixMs": 1633418569965, "relativeTimeMs": 3700965, "teamIds": [ - 61 + "55" ], "runIds": [ 239 @@ -50350,7 +50233,7 @@ "timeUnixMs": 1633418570791, "relativeTimeMs": 3701791, "teamIds": [ - 41 + "22" ], "runIds": [ 238 @@ -50368,7 +50251,7 @@ "timeUnixMs": 1633418578739, "relativeTimeMs": 3709739, "teamIds": [ - 12 + "56" ], "runIds": [ 240 @@ -50386,7 +50269,7 @@ "timeUnixMs": 1633418605583, "relativeTimeMs": 3736583, "teamIds": [ - 42 + "12" ], "runIds": [ 241 @@ -50404,7 +50287,7 @@ "timeUnixMs": 1633418606568, "relativeTimeMs": 3737568, "teamIds": [ - 61 + "55" ], "runIds": [ 239 @@ -50422,7 +50305,7 @@ "timeUnixMs": 1633418627667, "relativeTimeMs": 3758667, "teamIds": [ - 7 + "65" ], "runIds": [ 243 @@ -50440,7 +50323,7 @@ "timeUnixMs": 1633418631545, "relativeTimeMs": 3762545, "teamIds": [ - 7 + "65" ], "runIds": [ 243 @@ -50458,7 +50341,7 @@ "timeUnixMs": 1633418631833, "relativeTimeMs": 3762833, "teamIds": [ - 70 + "100" ], "runIds": [ 242 @@ -50476,7 +50359,7 @@ "timeUnixMs": 1633418665834, "relativeTimeMs": 3796834, "teamIds": [ - 3 + "67" ], "runIds": [ 244 @@ -50494,7 +50377,7 @@ "timeUnixMs": 1633418731802, "relativeTimeMs": 3862802, "teamIds": [ - 63 + "42" ], "runIds": [ 245 @@ -50512,7 +50395,7 @@ "timeUnixMs": 1633418741096, "relativeTimeMs": 3872096, "teamIds": [ - 24 + "28" ], "runIds": [ 246 @@ -50530,7 +50413,7 @@ "timeUnixMs": 1633418745829, "relativeTimeMs": 3876829, "teamIds": [ - 76 + "9" ], "runIds": [ 248 @@ -50548,7 +50431,7 @@ "timeUnixMs": 1633418747799, "relativeTimeMs": 3878799, "teamIds": [ - 23 + "108" ], "runIds": [ 249 @@ -50566,7 +50449,7 @@ "timeUnixMs": 1633418759850, "relativeTimeMs": 3890850, "teamIds": [ - 23 + "108" ], "runIds": [ 249 @@ -50584,7 +50467,7 @@ "timeUnixMs": 1633418767374, "relativeTimeMs": 3898374, "teamIds": [ - 18 + "68" ], "runIds": [ 250 @@ -50602,7 +50485,7 @@ "timeUnixMs": 1633418768468, "relativeTimeMs": 3899468, "teamIds": [ - 12 + "56" ], "runIds": [ 251 @@ -50620,7 +50503,7 @@ "timeUnixMs": 1633418770938, "relativeTimeMs": 3901938, "teamIds": [ - 73 + "76" ], "runIds": [ 247 @@ -50638,7 +50521,7 @@ "timeUnixMs": 1633418771250, "relativeTimeMs": 3902250, "teamIds": [ - 2 + "101" ], "runIds": [ 252 @@ -50656,7 +50539,7 @@ "timeUnixMs": 1633418775099, "relativeTimeMs": 3906099, "teamIds": [ - 2 + "101" ], "runIds": [ 252 @@ -50674,7 +50557,7 @@ "timeUnixMs": 1633418777438, "relativeTimeMs": 3908438, "teamIds": [ - 12 + "56" ], "runIds": [ 251 @@ -50692,7 +50575,7 @@ "timeUnixMs": 1633418787121, "relativeTimeMs": 3918121, "teamIds": [ - 17 + "59" ], "runIds": [ 255 @@ -50710,7 +50593,7 @@ "timeUnixMs": 1633418788867, "relativeTimeMs": 3919867, "teamIds": [ - 88 + "26" ], "runIds": [ 254 @@ -50728,7 +50611,7 @@ "timeUnixMs": 1633418789565, "relativeTimeMs": 3920565, "teamIds": [ - 42 + "12" ], "runIds": [ 253 @@ -50746,7 +50629,7 @@ "timeUnixMs": 1633418792613, "relativeTimeMs": 3923613, "teamIds": [ - 51 + "18" ], "runIds": [ 256 @@ -50764,7 +50647,7 @@ "timeUnixMs": 1633418797898, "relativeTimeMs": 3928898, "teamIds": [ - 17 + "59" ], "runIds": [ 255 @@ -50782,7 +50665,7 @@ "timeUnixMs": 1633418798473, "relativeTimeMs": 3929473, "teamIds": [ - 22 + "103" ], "runIds": [ 257 @@ -50800,7 +50683,7 @@ "timeUnixMs": 1633418806491, "relativeTimeMs": 3937491, "teamIds": [ - 22 + "103" ], "runIds": [ 257 @@ -50818,7 +50701,7 @@ "timeUnixMs": 1633418807003, "relativeTimeMs": 3938003, "teamIds": [ - 29 + "10" ], "runIds": [ 258 @@ -50836,7 +50719,7 @@ "timeUnixMs": 1633418812938, "relativeTimeMs": 3943938, "teamIds": [ - 49 + "98" ], "runIds": [ 259 @@ -50854,7 +50737,7 @@ "timeUnixMs": 1633418830648, "relativeTimeMs": 3961648, "teamIds": [ - 4 + "50" ], "runIds": [ 260 @@ -50872,7 +50755,7 @@ "timeUnixMs": 1633418834962, "relativeTimeMs": 3965962, "teamIds": [ - 4 + "50" ], "runIds": [ 260 @@ -50890,7 +50773,7 @@ "timeUnixMs": 1633418840285, "relativeTimeMs": 3971285, "teamIds": [ - 74 + "78" ], "runIds": [ 261 @@ -50908,7 +50791,7 @@ "timeUnixMs": 1633418849255, "relativeTimeMs": 3980255, "teamIds": [ - 10 + "47" ], "runIds": [ 262 @@ -50926,7 +50809,7 @@ "timeUnixMs": 1633418851772, "relativeTimeMs": 3982772, "teamIds": [ - 11 + "69" ], "runIds": [ 265 @@ -50944,7 +50827,7 @@ "timeUnixMs": 1633418853599, "relativeTimeMs": 3984599, "teamIds": [ - 89 + "21" ], "runIds": [ 263 @@ -50962,7 +50845,7 @@ "timeUnixMs": 1633418854118, "relativeTimeMs": 3985118, "teamIds": [ - 17 + "59" ], "runIds": [ 266 @@ -50980,7 +50863,7 @@ "timeUnixMs": 1633418856842, "relativeTimeMs": 3987842, "teamIds": [ - 74 + "78" ], "runIds": [ 264 @@ -50998,7 +50881,7 @@ "timeUnixMs": 1633418858866, "relativeTimeMs": 3989866, "teamIds": [ - 11 + "69" ], "runIds": [ 265 @@ -51016,7 +50899,7 @@ "timeUnixMs": 1633418860299, "relativeTimeMs": 3991299, "teamIds": [ - 17 + "59" ], "runIds": [ 266 @@ -51034,7 +50917,7 @@ "timeUnixMs": 1633418873390, "relativeTimeMs": 4004390, "teamIds": [ - 4 + "50" ], "runIds": [ 270 @@ -51052,7 +50935,7 @@ "timeUnixMs": 1633418875018, "relativeTimeMs": 4006018, "teamIds": [ - 45 + "34" ], "runIds": [ 268 @@ -51070,7 +50953,7 @@ "timeUnixMs": 1633418875549, "relativeTimeMs": 4006549, "teamIds": [ - 90 + "35" ], "runIds": [ 271 @@ -51088,7 +50971,7 @@ "timeUnixMs": 1633418875688, "relativeTimeMs": 4006688, "teamIds": [ - 3 + "67" ], "runIds": [ 269 @@ -51106,7 +50989,7 @@ "timeUnixMs": 1633418878154, "relativeTimeMs": 4009154, "teamIds": [ - 4 + "50" ], "runIds": [ 270 @@ -51124,7 +51007,7 @@ "timeUnixMs": 1633418881143, "relativeTimeMs": 4012143, "teamIds": [ - 42 + "12" ], "runIds": [ 267 @@ -51142,7 +51025,7 @@ "timeUnixMs": 1633418891858, "relativeTimeMs": 4022858, "teamIds": [ - 55 + "43" ], "runIds": [ 272 @@ -51160,7 +51043,7 @@ "timeUnixMs": 1633418893383, "relativeTimeMs": 4024383, "teamIds": [ - 85 + "61" ], "runIds": [ 273 @@ -51178,7 +51061,7 @@ "timeUnixMs": 1633418910818, "relativeTimeMs": 4041818, "teamIds": [ - 33 + "52" ], "runIds": [ 274 @@ -51196,7 +51079,7 @@ "timeUnixMs": 1633418919487, "relativeTimeMs": 4050487, "teamIds": [ - 10 + "47" ], "runIds": [ 275 @@ -51214,7 +51097,7 @@ "timeUnixMs": 1633418924396, "relativeTimeMs": 4055396, "teamIds": [ - 91 + "54" ], "runIds": [ 276 @@ -51232,7 +51115,7 @@ "timeUnixMs": 1633418939331, "relativeTimeMs": 4070331, "teamIds": [ - 92 + "36" ], "runIds": [ 277 @@ -51250,7 +51133,7 @@ "timeUnixMs": 1633418942495, "relativeTimeMs": 4073495, "teamIds": [ - 8 + "29" ], "runIds": [ 278 @@ -51268,7 +51151,7 @@ "timeUnixMs": 1633418951768, "relativeTimeMs": 4082768, "teamIds": [ - 11 + "69" ], "runIds": [ 279 @@ -51286,7 +51169,7 @@ "timeUnixMs": 1633418960728, "relativeTimeMs": 4091728, "teamIds": [ - 11 + "69" ], "runIds": [ 279 @@ -51304,7 +51187,7 @@ "timeUnixMs": 1633418964759, "relativeTimeMs": 4095759, "teamIds": [ - 71 + "105" ], "runIds": [ 280 @@ -51322,7 +51205,7 @@ "timeUnixMs": 1633418984723, "relativeTimeMs": 4115723, "teamIds": [ - 58 + "119" ], "runIds": [ 281 @@ -51340,7 +51223,7 @@ "timeUnixMs": 1633419007547, "relativeTimeMs": 4138547, "teamIds": [ - 93 + "49" ], "runIds": [ 282 @@ -51358,7 +51241,7 @@ "timeUnixMs": 1633419008140, "relativeTimeMs": 4139140, "teamIds": [ - 3 + "67" ], "runIds": [ 287 @@ -51376,7 +51259,7 @@ "timeUnixMs": 1633419016897, "relativeTimeMs": 4147897, "teamIds": [ - 90 + "35" ], "runIds": [ 283 @@ -51394,7 +51277,7 @@ "timeUnixMs": 1633419016979, "relativeTimeMs": 4147979, "teamIds": [ - 34 + "37" ], "runIds": [ 284 @@ -51412,7 +51295,7 @@ "timeUnixMs": 1633419019050, "relativeTimeMs": 4150050, "teamIds": [ - 35 + "32" ], "runIds": [ 285 @@ -51430,7 +51313,7 @@ "timeUnixMs": 1633419022015, "relativeTimeMs": 4153015, "teamIds": [ - 63 + "42" ], "runIds": [ 286 @@ -51448,7 +51331,7 @@ "timeUnixMs": 1633419024664, "relativeTimeMs": 4155664, "teamIds": [ - 21 + "104" ], "runIds": [ 288 @@ -51466,7 +51349,7 @@ "timeUnixMs": 1633419041052, "relativeTimeMs": 4172052, "teamIds": [ - 27 + "96" ], "runIds": [ 289 @@ -51484,7 +51367,7 @@ "timeUnixMs": 1633419058540, "relativeTimeMs": 4189540, "teamIds": [ - 2 + "101" ], "runIds": [ 291 @@ -51502,7 +51385,7 @@ "timeUnixMs": 1633419060479, "relativeTimeMs": 4191479, "teamIds": [ - 51 + "18" ], "runIds": [ 290 @@ -51520,7 +51403,7 @@ "timeUnixMs": 1633419061846, "relativeTimeMs": 4192846, "teamIds": [ - 2 + "101" ], "runIds": [ 291 @@ -51538,7 +51421,7 @@ "timeUnixMs": 1633419071625, "relativeTimeMs": 4202625, "teamIds": [ - 33 + "52" ], "runIds": [ 292 @@ -51556,7 +51439,7 @@ "timeUnixMs": 1633419073067, "relativeTimeMs": 4204067, "teamIds": [ - 83 + "20" ], "runIds": [ 293 @@ -51574,7 +51457,7 @@ "timeUnixMs": 1633419075260, "relativeTimeMs": 4206260, "teamIds": [ - 4 + "50" ], "runIds": [ 294 @@ -51592,7 +51475,7 @@ "timeUnixMs": 1633419088128, "relativeTimeMs": 4219128, "teamIds": [ - 55 + "43" ], "runIds": [ 295 @@ -51610,7 +51493,7 @@ "timeUnixMs": 1633419099784, "relativeTimeMs": 4230784, "teamIds": [ - 83 + "20" ], "runIds": [ 296 @@ -51628,7 +51511,7 @@ "timeUnixMs": 1633419104542, "relativeTimeMs": 4235542, "teamIds": [ - 4 + "50" ], "runIds": [ 294 @@ -51646,7 +51529,7 @@ "timeUnixMs": 1633419107676, "relativeTimeMs": 4238676, "teamIds": [ - 11 + "69" ], "runIds": [ 297 @@ -51664,7 +51547,7 @@ "timeUnixMs": 1633419114432, "relativeTimeMs": 4245432, "teamIds": [ - 11 + "69" ], "runIds": [ 297 @@ -51682,7 +51565,7 @@ "timeUnixMs": 1633419118910, "relativeTimeMs": 4249910, "teamIds": [ - 58 + "119" ], "runIds": [ 298 @@ -51700,7 +51583,7 @@ "timeUnixMs": 1633419142400, "relativeTimeMs": 4273400, "teamIds": [ - 41 + "22" ], "runIds": [ 299 @@ -51718,7 +51601,7 @@ "timeUnixMs": 1633419149820, "relativeTimeMs": 4280820, "teamIds": [ - 9 + "114" ], "runIds": [ 300 @@ -51736,7 +51619,7 @@ "timeUnixMs": 1633419152189, "relativeTimeMs": 4283189, "teamIds": [ - 41 + "22" ], "runIds": [ 299 @@ -51754,7 +51637,7 @@ "timeUnixMs": 1633419154931, "relativeTimeMs": 4285931, "teamIds": [ - 9 + "114" ], "runIds": [ 300 @@ -51772,7 +51655,7 @@ "timeUnixMs": 1633419159068, "relativeTimeMs": 4290068, "teamIds": [ - 14 + "60" ], "runIds": [ 301 @@ -51790,7 +51673,7 @@ "timeUnixMs": 1633419168600, "relativeTimeMs": 4299600, "teamIds": [ - 4 + "50" ], "runIds": [ 302 @@ -51808,7 +51691,7 @@ "timeUnixMs": 1633419173797, "relativeTimeMs": 4304797, "teamIds": [ - 94 + "93" ], "runIds": [ 303 @@ -51826,7 +51709,7 @@ "timeUnixMs": 1633419189754, "relativeTimeMs": 4320754, "teamIds": [ - 10 + "47" ], "runIds": [ 304 @@ -51844,7 +51727,7 @@ "timeUnixMs": 1633419191691, "relativeTimeMs": 4322691, "teamIds": [ - 7 + "65" ], "runIds": [ 306 @@ -51862,7 +51745,7 @@ "timeUnixMs": 1633419194899, "relativeTimeMs": 4325899, "teamIds": [ - 95 + "30" ], "runIds": [ 305 @@ -51880,7 +51763,7 @@ "timeUnixMs": 1633419203296, "relativeTimeMs": 4334296, "teamIds": [ - 7 + "65" ], "runIds": [ 306 @@ -51898,7 +51781,7 @@ "timeUnixMs": 1633419203470, "relativeTimeMs": 4334470, "teamIds": [ - 50 + "11" ], "runIds": [ 307 @@ -51916,7 +51799,7 @@ "timeUnixMs": 1633419209381, "relativeTimeMs": 4340381, "teamIds": [ - 4 + "50" ], "runIds": [ 302 @@ -51934,7 +51817,7 @@ "timeUnixMs": 1633419254258, "relativeTimeMs": 4385258, "teamIds": [ - 77 + "5" ], "runIds": [ 308 @@ -51952,7 +51835,7 @@ "timeUnixMs": 1633419261241, "relativeTimeMs": 4392241, "teamIds": [ - 48 + "106" ], "runIds": [ 309 @@ -51970,7 +51853,7 @@ "timeUnixMs": 1633419262159, "relativeTimeMs": 4393159, "teamIds": [ - 18 + "68" ], "runIds": [ 310 @@ -51988,7 +51871,7 @@ "timeUnixMs": 1633419265245, "relativeTimeMs": 4396245, "teamIds": [ - 58 + "119" ], "runIds": [ 311 @@ -52006,7 +51889,7 @@ "timeUnixMs": 1633419274372, "relativeTimeMs": 4405372, "teamIds": [ - 30 + "7" ], "runIds": [ 312 @@ -52024,7 +51907,7 @@ "timeUnixMs": 1633419317192, "relativeTimeMs": 4448192, "teamIds": [ - 96 + "1" ], "runIds": [ 313 @@ -52042,7 +51925,7 @@ "timeUnixMs": 1633419320784, "relativeTimeMs": 4451784, "teamIds": [ - 15 + "6" ], "runIds": [ 314 @@ -52060,7 +51943,7 @@ "timeUnixMs": 1633419330562, "relativeTimeMs": 4461562, "teamIds": [ - 5 + "70" ], "runIds": [ 315 @@ -52078,7 +51961,7 @@ "timeUnixMs": 1633419344756, "relativeTimeMs": 4475756, "teamIds": [ - 22 + "103" ], "runIds": [ 318 @@ -52096,7 +51979,7 @@ "timeUnixMs": 1633419345555, "relativeTimeMs": 4476555, "teamIds": [ - 28 + "112" ], "runIds": [ 319 @@ -52114,7 +51997,7 @@ "timeUnixMs": 1633419348252, "relativeTimeMs": 4479252, "teamIds": [ - 22 + "103" ], "runIds": [ 318 @@ -52132,7 +52015,7 @@ "timeUnixMs": 1633419348485, "relativeTimeMs": 4479485, "teamIds": [ - 30 + "7" ], "runIds": [ 317 @@ -52150,7 +52033,7 @@ "timeUnixMs": 1633419349615, "relativeTimeMs": 4480615, "teamIds": [ - 76 + "9" ], "runIds": [ 316 @@ -52168,7 +52051,7 @@ "timeUnixMs": 1633419352780, "relativeTimeMs": 4483780, "teamIds": [ - 1 + "102" ], "runIds": [ 320 @@ -52186,7 +52069,7 @@ "timeUnixMs": 1633419355924, "relativeTimeMs": 4486924, "teamIds": [ - 28 + "112" ], "runIds": [ 319 @@ -52204,7 +52087,7 @@ "timeUnixMs": 1633419371592, "relativeTimeMs": 4502592, "teamIds": [ - 3 + "67" ], "runIds": [ 321 @@ -52222,7 +52105,7 @@ "timeUnixMs": 1633419372071, "relativeTimeMs": 4503071, "teamIds": [ - 21 + "104" ], "runIds": [ 322 @@ -52240,7 +52123,7 @@ "timeUnixMs": 1633419376452, "relativeTimeMs": 4507452, "teamIds": [ - 33 + "52" ], "runIds": [ 323 @@ -52258,7 +52141,7 @@ "timeUnixMs": 1633419382708, "relativeTimeMs": 4513708, "teamIds": [ - 21 + "104" ], "runIds": [ 322 @@ -52276,7 +52159,7 @@ "timeUnixMs": 1633419385697, "relativeTimeMs": 4516697, "teamIds": [ - 1 + "102" ], "runIds": [ 320 @@ -52294,7 +52177,7 @@ "timeUnixMs": 1633419388344, "relativeTimeMs": 4519344, "teamIds": [ - 33 + "52" ], "runIds": [ 323 @@ -52312,7 +52195,7 @@ "timeUnixMs": 1633419388980, "relativeTimeMs": 4519980, "teamIds": [ - 4 + "50" ], "runIds": [ 325 @@ -52330,7 +52213,7 @@ "timeUnixMs": 1633419391651, "relativeTimeMs": 4522651, "teamIds": [ - 97 + "97" ], "runIds": [ 324 @@ -52348,7 +52231,7 @@ "timeUnixMs": 1633419392923, "relativeTimeMs": 4523923, "teamIds": [ - 4 + "50" ], "runIds": [ 325 @@ -52366,7 +52249,7 @@ "timeUnixMs": 1633419401987, "relativeTimeMs": 4532987, "teamIds": [ - 3 + "67" ], "runIds": [ 327 @@ -52384,7 +52267,7 @@ "timeUnixMs": 1633419404627, "relativeTimeMs": 4535627, "teamIds": [ - 31 + "33" ], "runIds": [ 326 @@ -52402,7 +52285,7 @@ "timeUnixMs": 1633419414690, "relativeTimeMs": 4545690, "teamIds": [ - 93 + "49" ], "runIds": [ 328 @@ -52420,7 +52303,7 @@ "timeUnixMs": 1633419434915, "relativeTimeMs": 4565915, "teamIds": [ - 7 + "65" ], "runIds": [ 329 @@ -52438,7 +52321,7 @@ "timeUnixMs": 1633419439612, "relativeTimeMs": 4570612, "teamIds": [ - 2 + "101" ], "runIds": [ 331 @@ -52456,7 +52339,7 @@ "timeUnixMs": 1633419442315, "relativeTimeMs": 4573315, "teamIds": [ - 7 + "65" ], "runIds": [ 329 @@ -52474,7 +52357,7 @@ "timeUnixMs": 1633419443056, "relativeTimeMs": 4574056, "teamIds": [ - 4 + "50" ], "runIds": [ 333 @@ -52492,7 +52375,7 @@ "timeUnixMs": 1633419446344, "relativeTimeMs": 4577344, "teamIds": [ - 32 + "45" ], "runIds": [ 332 @@ -52510,7 +52393,7 @@ "timeUnixMs": 1633419446435, "relativeTimeMs": 4577435, "teamIds": [ - 89 + "21" ], "runIds": [ 330 @@ -52528,7 +52411,7 @@ "timeUnixMs": 1633419447383, "relativeTimeMs": 4578383, "teamIds": [ - 4 + "50" ], "runIds": [ 333 @@ -52546,7 +52429,7 @@ "timeUnixMs": 1633419453185, "relativeTimeMs": 4584185, "teamIds": [ - 2 + "101" ], "runIds": [ 331 @@ -52564,7 +52447,7 @@ "timeUnixMs": 1633419456475, "relativeTimeMs": 4587475, "teamIds": [ - 17 + "59" ], "runIds": [ 334 @@ -52582,7 +52465,7 @@ "timeUnixMs": 1633419463019, "relativeTimeMs": 4594019, "teamIds": [ - 17 + "59" ], "runIds": [ 334 @@ -52600,7 +52483,7 @@ "timeUnixMs": 1633419487685, "relativeTimeMs": 4618685, "teamIds": [ - 71 + "105" ], "runIds": [ 335 @@ -52618,7 +52501,7 @@ "timeUnixMs": 1633419494213, "relativeTimeMs": 4625213, "teamIds": [ - 98 + "90" ], "runIds": [ 337 @@ -52636,7 +52519,7 @@ "timeUnixMs": 1633419496269, "relativeTimeMs": 4627269, "teamIds": [ - 17 + "59" ], "runIds": [ 338 @@ -52654,7 +52537,7 @@ "timeUnixMs": 1633419498868, "relativeTimeMs": 4629868, "teamIds": [ - 48 + "106" ], "runIds": [ 336 @@ -52672,7 +52555,7 @@ "timeUnixMs": 1633419502707, "relativeTimeMs": 4633707, "teamIds": [ - 17 + "59" ], "runIds": [ 338 @@ -52690,7 +52573,7 @@ "timeUnixMs": 1633419505854, "relativeTimeMs": 4636854, "teamIds": [ - 4 + "50" ], "runIds": [ 339 @@ -52708,7 +52591,7 @@ "timeUnixMs": 1633419511728, "relativeTimeMs": 4642728, "teamIds": [ - 4 + "50" ], "runIds": [ 339 @@ -52726,7 +52609,7 @@ "timeUnixMs": 1633419518060, "relativeTimeMs": 4649060, "teamIds": [ - 10 + "47" ], "runIds": [ 341 @@ -52744,7 +52627,7 @@ "timeUnixMs": 1633419525695, "relativeTimeMs": 4656695, "teamIds": [ - 74 + "78" ], "runIds": [ 342 @@ -52762,7 +52645,7 @@ "timeUnixMs": 1633419528667, "relativeTimeMs": 4659667, "teamIds": [ - 99 + "17" ], "runIds": [ 340 @@ -52780,7 +52663,7 @@ "timeUnixMs": 1633419530454, "relativeTimeMs": 4661454, "teamIds": [ - 10 + "47" ], "runIds": [ 341 @@ -52798,7 +52681,7 @@ "timeUnixMs": 1633419534585, "relativeTimeMs": 4665585, "teamIds": [ - 73 + "76" ], "runIds": [ 343 @@ -52816,7 +52699,7 @@ "timeUnixMs": 1633419568363, "relativeTimeMs": 4699363, "teamIds": [ - 59 + "71" ], "runIds": [ 344 @@ -52834,7 +52717,7 @@ "timeUnixMs": 1633419574163, "relativeTimeMs": 4705163, "teamIds": [ - 95 + "30" ], "runIds": [ 345 @@ -52852,7 +52735,7 @@ "timeUnixMs": 1633419579048, "relativeTimeMs": 4710048, "teamIds": [ - 76 + "9" ], "runIds": [ 346 @@ -52870,7 +52753,7 @@ "timeUnixMs": 1633419580576, "relativeTimeMs": 4711576, "teamIds": [ - 30 + "7" ], "runIds": [ 347 @@ -52888,7 +52771,7 @@ "timeUnixMs": 1633419583251, "relativeTimeMs": 4714251, "teamIds": [ - 98 + "90" ], "runIds": [ 348 @@ -52906,7 +52789,7 @@ "timeUnixMs": 1633419597188, "relativeTimeMs": 4728188, "teamIds": [ - 90 + "35" ], "runIds": [ 349 @@ -52924,7 +52807,7 @@ "timeUnixMs": 1633419610600, "relativeTimeMs": 4741600, "teamIds": [ - 100 + "77" ], "runIds": [ 350 @@ -52942,7 +52825,7 @@ "timeUnixMs": 1633419625332, "relativeTimeMs": 4756332, "teamIds": [ - 22 + "103" ], "runIds": [ 351 @@ -52960,7 +52843,7 @@ "timeUnixMs": 1633419629380, "relativeTimeMs": 4760380, "teamIds": [ - 91 + "54" ], "runIds": [ 352 @@ -52978,7 +52861,7 @@ "timeUnixMs": 1633419638543, "relativeTimeMs": 4769543, "teamIds": [ - 28 + "112" ], "runIds": [ 354 @@ -52996,7 +52879,7 @@ "timeUnixMs": 1633419643146, "relativeTimeMs": 4774146, "teamIds": [ - 28 + "112" ], "runIds": [ 354 @@ -53014,7 +52897,7 @@ "timeUnixMs": 1633419648135, "relativeTimeMs": 4779135, "teamIds": [ - 64 + "4" ], "runIds": [ 355 @@ -53032,7 +52915,7 @@ "timeUnixMs": 1633419648779, "relativeTimeMs": 4779779, "teamIds": [ - 95 + "30" ], "runIds": [ 353 @@ -53050,7 +52933,7 @@ "timeUnixMs": 1633419651576, "relativeTimeMs": 4782576, "teamIds": [ - 55 + "43" ], "runIds": [ 357 @@ -53068,7 +52951,7 @@ "timeUnixMs": 1633419660076, "relativeTimeMs": 4791076, "teamIds": [ - 38 + "113" ], "runIds": [ 356 @@ -53086,7 +52969,7 @@ "timeUnixMs": 1633419667658, "relativeTimeMs": 4798658, "teamIds": [ - 22 + "103" ], "runIds": [ 358 @@ -53104,7 +52987,7 @@ "timeUnixMs": 1633419672709, "relativeTimeMs": 4803709, "teamIds": [ - 22 + "103" ], "runIds": [ 358 @@ -53122,7 +53005,7 @@ "timeUnixMs": 1633419685173, "relativeTimeMs": 4816173, "teamIds": [ - 101 + "2" ], "runIds": [ 359 @@ -53140,7 +53023,7 @@ "timeUnixMs": 1633419691870, "relativeTimeMs": 4822870, "teamIds": [ - 33 + "52" ], "runIds": [ 360 @@ -53158,7 +53041,7 @@ "timeUnixMs": 1633419712539, "relativeTimeMs": 4843539, "teamIds": [ - 102 + "16" ], "runIds": [ 361 @@ -53176,7 +53059,7 @@ "timeUnixMs": 1633419723263, "relativeTimeMs": 4854263, "teamIds": [ - 24 + "28" ], "runIds": [ 362 @@ -53194,7 +53077,7 @@ "timeUnixMs": 1633419742240, "relativeTimeMs": 4873240, "teamIds": [ - 36 + "80" ], "runIds": [ 363 @@ -53212,7 +53095,7 @@ "timeUnixMs": 1633419751512, "relativeTimeMs": 4882512, "teamIds": [ - 95 + "30" ], "runIds": [ 364 @@ -53230,7 +53113,7 @@ "timeUnixMs": 1633419762480, "relativeTimeMs": 4893480, "teamIds": [ - 40 + "87" ], "runIds": [ 365 @@ -53248,7 +53131,7 @@ "timeUnixMs": 1633419791253, "relativeTimeMs": 4922253, "teamIds": [ - 7 + "65" ], "runIds": [ 367 @@ -53266,7 +53149,7 @@ "timeUnixMs": 1633419794644, "relativeTimeMs": 4925644, "teamIds": [ - 7 + "65" ], "runIds": [ 367 @@ -53284,7 +53167,7 @@ "timeUnixMs": 1633419796371, "relativeTimeMs": 4927371, "teamIds": [ - 30 + "7" ], "runIds": [ 366 @@ -53302,7 +53185,7 @@ "timeUnixMs": 1633419814987, "relativeTimeMs": 4945987, "teamIds": [ - 41 + "22" ], "runIds": [ 369 @@ -53320,7 +53203,7 @@ "timeUnixMs": 1633419815425, "relativeTimeMs": 4946425, "teamIds": [ - 101 + "2" ], "runIds": [ 368 @@ -53338,7 +53221,7 @@ "timeUnixMs": 1633419819403, "relativeTimeMs": 4950403, "teamIds": [ - 41 + "22" ], "runIds": [ 369 @@ -53356,7 +53239,7 @@ "timeUnixMs": 1633419841362, "relativeTimeMs": 4972362, "teamIds": [ - 42 + "12" ], "runIds": [ 371 @@ -53374,7 +53257,7 @@ "timeUnixMs": 1633419843623, "relativeTimeMs": 4974623, "teamIds": [ - 68 + "107" ], "runIds": [ 370 @@ -53392,7 +53275,7 @@ "timeUnixMs": 1633419870161, "relativeTimeMs": 5001161, "teamIds": [ - 99 + "17" ], "runIds": [ 373 @@ -53410,7 +53293,7 @@ "timeUnixMs": 1633419878016, "relativeTimeMs": 5009016, "teamIds": [ - 24 + "28" ], "runIds": [ 372 @@ -53428,7 +53311,7 @@ "timeUnixMs": 1633419885930, "relativeTimeMs": 5016930, "teamIds": [ - 4 + "50" ], "runIds": [ 374 @@ -53446,7 +53329,7 @@ "timeUnixMs": 1633419893243, "relativeTimeMs": 5024243, "teamIds": [ - 4 + "50" ], "runIds": [ 374 @@ -53464,7 +53347,7 @@ "timeUnixMs": 1633419895067, "relativeTimeMs": 5026067, "teamIds": [ - 9 + "114" ], "runIds": [ 375 @@ -53482,7 +53365,7 @@ "timeUnixMs": 1633419899161, "relativeTimeMs": 5030161, "teamIds": [ - 9 + "114" ], "runIds": [ 375 @@ -53500,7 +53383,7 @@ "timeUnixMs": 1633419906968, "relativeTimeMs": 5037968, "teamIds": [ - 37 + "27" ], "runIds": [ 376 @@ -53518,7 +53401,7 @@ "timeUnixMs": 1633419910907, "relativeTimeMs": 5041907, "teamIds": [ - 64 + "4" ], "runIds": [ 377 @@ -53536,7 +53419,7 @@ "timeUnixMs": 1633419921533, "relativeTimeMs": 5052533, "teamIds": [ - 42 + "12" ], "runIds": [ 378 @@ -53554,7 +53437,7 @@ "timeUnixMs": 1633419932249, "relativeTimeMs": 5063249, "teamIds": [ - 95 + "30" ], "runIds": [ 379 @@ -53572,7 +53455,7 @@ "timeUnixMs": 1633419949259, "relativeTimeMs": 5080259, "teamIds": [ - 2 + "101" ], "runIds": [ 380 @@ -53590,7 +53473,7 @@ "timeUnixMs": 1633419953221, "relativeTimeMs": 5084221, "teamIds": [ - 2 + "101" ], "runIds": [ 380 @@ -53608,7 +53491,7 @@ "timeUnixMs": 1633419964378, "relativeTimeMs": 5095378, "teamIds": [ - 42 + "12" ], "runIds": [ 382 @@ -53626,7 +53509,7 @@ "timeUnixMs": 1633419966881, "relativeTimeMs": 5097881, "teamIds": [ - 66 + "117" ], "runIds": [ 381 @@ -53644,7 +53527,7 @@ "timeUnixMs": 1633419986439, "relativeTimeMs": 5117439, "teamIds": [ - 47 + "99" ], "runIds": [ 383 @@ -53662,7 +53545,7 @@ "timeUnixMs": 1633419996306, "relativeTimeMs": 5127306, "teamIds": [ - 78 + "46" ], "runIds": [ 384 @@ -53680,7 +53563,7 @@ "timeUnixMs": 1633420001515, "relativeTimeMs": 5132515, "teamIds": [ - 26 + "64" ], "runIds": [ 385 @@ -53698,7 +53581,7 @@ "timeUnixMs": 1633420006190, "relativeTimeMs": 5137190, "teamIds": [ - 59 + "71" ], "runIds": [ 386 @@ -53716,7 +53599,7 @@ "timeUnixMs": 1633420010985, "relativeTimeMs": 5141985, "teamIds": [ - 7 + "65" ], "runIds": [ 387 @@ -53734,7 +53617,7 @@ "timeUnixMs": 1633420015675, "relativeTimeMs": 5146675, "teamIds": [ - 7 + "65" ], "runIds": [ 387 @@ -53752,7 +53635,7 @@ "timeUnixMs": 1633420019236, "relativeTimeMs": 5150236, "teamIds": [ - 22 + "103" ], "runIds": [ 388 @@ -53770,7 +53653,7 @@ "timeUnixMs": 1633420027911, "relativeTimeMs": 5158911, "teamIds": [ - 50 + "11" ], "runIds": [ 390 @@ -53788,7 +53671,7 @@ "timeUnixMs": 1633420029652, "relativeTimeMs": 5160652, "teamIds": [ - 103 + "24" ], "runIds": [ 389 @@ -53806,7 +53689,7 @@ "timeUnixMs": 1633420048557, "relativeTimeMs": 5179557, "teamIds": [ - 9 + "114" ], "runIds": [ 391 @@ -53824,7 +53707,7 @@ "timeUnixMs": 1633420050860, "relativeTimeMs": 5181860, "teamIds": [ - 37 + "27" ], "runIds": [ 392 @@ -53842,7 +53725,7 @@ "timeUnixMs": 1633420080895, "relativeTimeMs": 5211895, "teamIds": [ - 32 + "45" ], "runIds": [ 393 @@ -53860,7 +53743,7 @@ "timeUnixMs": 1633420100492, "relativeTimeMs": 5231492, "teamIds": [ - 102 + "16" ], "runIds": [ 394 @@ -53878,7 +53761,7 @@ "timeUnixMs": 1633420107696, "relativeTimeMs": 5238696, "teamIds": [ - 91 + "54" ], "runIds": [ 395 @@ -53896,7 +53779,7 @@ "timeUnixMs": 1633420114115, "relativeTimeMs": 5245115, "teamIds": [ - 47 + "99" ], "runIds": [ 396 @@ -53914,7 +53797,7 @@ "timeUnixMs": 1633420122050, "relativeTimeMs": 5253050, "teamIds": [ - 22 + "103" ], "runIds": [ 397 @@ -53932,7 +53815,7 @@ "timeUnixMs": 1633420127618, "relativeTimeMs": 5258618, "teamIds": [ - 82 + "118" ], "runIds": [ 398 @@ -53950,7 +53833,7 @@ "timeUnixMs": 1633420132650, "relativeTimeMs": 5263650, "teamIds": [ - 22 + "103" ], "runIds": [ 397 @@ -53968,7 +53851,7 @@ "timeUnixMs": 1633420137869, "relativeTimeMs": 5268869, "teamIds": [ - 30 + "7" ], "runIds": [ 400 @@ -53986,7 +53869,7 @@ "timeUnixMs": 1633420138074, "relativeTimeMs": 5269074, "teamIds": [ - 18 + "68" ], "runIds": [ 399 @@ -54004,7 +53887,7 @@ "timeUnixMs": 1633420145043, "relativeTimeMs": 5276043, "teamIds": [ - 74 + "78" ], "runIds": [ 401 @@ -54022,7 +53905,7 @@ "timeUnixMs": 1633420150827, "relativeTimeMs": 5281827, "teamIds": [ - 45 + "34" ], "runIds": [ 402 @@ -54040,7 +53923,7 @@ "timeUnixMs": 1633420162203, "relativeTimeMs": 5293203, "teamIds": [ - 70 + "100" ], "runIds": [ 403 @@ -54058,7 +53941,7 @@ "timeUnixMs": 1633420182783, "relativeTimeMs": 5313783, "teamIds": [ - 85 + "61" ], "runIds": [ 404 @@ -54076,7 +53959,7 @@ "timeUnixMs": 1633420186297, "relativeTimeMs": 5317297, "teamIds": [ - 83 + "20" ], "runIds": [ 405 @@ -54094,7 +53977,7 @@ "timeUnixMs": 1633420211408, "relativeTimeMs": 5342408, "teamIds": [ - 73 + "76" ], "runIds": [ 406 @@ -54112,7 +53995,7 @@ "timeUnixMs": 1633420236646, "relativeTimeMs": 5367646, "teamIds": [ - 2 + "101" ], "runIds": [ 407 @@ -54130,7 +54013,7 @@ "timeUnixMs": 1633420242138, "relativeTimeMs": 5373138, "teamIds": [ - 2 + "101" ], "runIds": [ 407 @@ -54148,7 +54031,7 @@ "timeUnixMs": 1633420254740, "relativeTimeMs": 5385740, "teamIds": [ - 87 + "66" ], "runIds": [ 409 @@ -54166,7 +54049,7 @@ "timeUnixMs": 1633420256219, "relativeTimeMs": 5387219, "teamIds": [ - 81 + "86" ], "runIds": [ 408 @@ -54184,7 +54067,7 @@ "timeUnixMs": 1633420256417, "relativeTimeMs": 5387417, "teamIds": [ - 2 + "101" ], "runIds": [ 410 @@ -54202,7 +54085,7 @@ "timeUnixMs": 1633420260204, "relativeTimeMs": 5391204, "teamIds": [ - 2 + "101" ], "runIds": [ 410 @@ -54220,7 +54103,7 @@ "timeUnixMs": 1633420271574, "relativeTimeMs": 5402574, "teamIds": [ - 6 + "19" ], "runIds": [ 411 @@ -54238,7 +54121,7 @@ "timeUnixMs": 1633420280083, "relativeTimeMs": 5411083, "teamIds": [ - 102 + "16" ], "runIds": [ 412 @@ -54256,7 +54139,7 @@ "timeUnixMs": 1633420287685, "relativeTimeMs": 5418685, "teamIds": [ - 66 + "117" ], "runIds": [ 413 @@ -54274,7 +54157,7 @@ "timeUnixMs": 1633420308359, "relativeTimeMs": 5439359, "teamIds": [ - 68 + "107" ], "runIds": [ 414 @@ -54292,7 +54175,7 @@ "timeUnixMs": 1633420320701, "relativeTimeMs": 5451701, "teamIds": [ - 62 + "44" ], "runIds": [ 415 @@ -54310,7 +54193,7 @@ "timeUnixMs": 1633420322215, "relativeTimeMs": 5453215, "teamIds": [ - 65 + "23" ], "runIds": [ 416 @@ -54328,7 +54211,7 @@ "timeUnixMs": 1633420336234, "relativeTimeMs": 5467234, "teamIds": [ - 104 + "84" ], "runIds": [ 417 @@ -54346,7 +54229,7 @@ "timeUnixMs": 1633420346735, "relativeTimeMs": 5477735, "teamIds": [ - 29 + "10" ], "runIds": [ 419 @@ -54364,7 +54247,7 @@ "timeUnixMs": 1633420347578, "relativeTimeMs": 5478578, "teamIds": [ - 95 + "30" ], "runIds": [ 418 @@ -54382,7 +54265,7 @@ "timeUnixMs": 1633420349213, "relativeTimeMs": 5480213, "teamIds": [ - 42 + "12" ], "runIds": [ 420 @@ -54400,7 +54283,7 @@ "timeUnixMs": 1633420352409, "relativeTimeMs": 5483409, "teamIds": [ - 83 + "20" ], "runIds": [ 421 @@ -54418,7 +54301,7 @@ "timeUnixMs": 1633420358561, "relativeTimeMs": 5489561, "teamIds": [ - 17 + "59" ], "runIds": [ 422 @@ -54436,7 +54319,7 @@ "timeUnixMs": 1633420370131, "relativeTimeMs": 5501131, "teamIds": [ - 45 + "34" ], "runIds": [ 423 @@ -54454,7 +54337,7 @@ "timeUnixMs": 1633420375548, "relativeTimeMs": 5506548, "teamIds": [ - 17 + "59" ], "runIds": [ 422 @@ -54472,7 +54355,7 @@ "timeUnixMs": 1633420382504, "relativeTimeMs": 5513504, "teamIds": [ - 82 + "118" ], "runIds": [ 424 @@ -54490,7 +54373,7 @@ "timeUnixMs": 1633420386596, "relativeTimeMs": 5517596, "teamIds": [ - 10 + "47" ], "runIds": [ 425 @@ -54508,7 +54391,7 @@ "timeUnixMs": 1633420392083, "relativeTimeMs": 5523083, "teamIds": [ - 10 + "47" ], "runIds": [ 425 @@ -54526,7 +54409,7 @@ "timeUnixMs": 1633420394805, "relativeTimeMs": 5525805, "teamIds": [ - 48 + "106" ], "runIds": [ 426 @@ -54544,7 +54427,7 @@ "timeUnixMs": 1633420405681, "relativeTimeMs": 5536681, "teamIds": [ - 75 + "48" ], "runIds": [ 427 @@ -54562,7 +54445,7 @@ "timeUnixMs": 1633420445970, "relativeTimeMs": 5576970, "teamIds": [ - 3 + "67" ], "runIds": [ 428 @@ -54580,7 +54463,7 @@ "timeUnixMs": 1633420461191, "relativeTimeMs": 5592191, "teamIds": [ - 67 + "115" ], "runIds": [ 429 @@ -54598,7 +54481,7 @@ "timeUnixMs": 1633420478934, "relativeTimeMs": 5609934, "teamIds": [ - 40 + "87" ], "runIds": [ 430 @@ -54616,7 +54499,7 @@ "timeUnixMs": 1633420489005, "relativeTimeMs": 5620005, "teamIds": [ - 30 + "7" ], "runIds": [ 431 @@ -54634,7 +54517,7 @@ "timeUnixMs": 1633420501764, "relativeTimeMs": 5632764, "teamIds": [ - 81 + "86" ], "runIds": [ 433 @@ -54652,7 +54535,7 @@ "timeUnixMs": 1633420502514, "relativeTimeMs": 5633514, "teamIds": [ - 54 + "73" ], "runIds": [ 432 @@ -54670,7 +54553,7 @@ "timeUnixMs": 1633420503648, "relativeTimeMs": 5634648, "teamIds": [ - 33 + "52" ], "runIds": [ 434 @@ -54688,7 +54571,7 @@ "timeUnixMs": 1633420510328, "relativeTimeMs": 5641328, "teamIds": [ - 95 + "30" ], "runIds": [ 435 @@ -54706,7 +54589,7 @@ "timeUnixMs": 1633420519642, "relativeTimeMs": 5650642, "teamIds": [ - 105 + "58" ], "runIds": [ 436 @@ -54724,7 +54607,7 @@ "timeUnixMs": 1633420521121, "relativeTimeMs": 5652121, "teamIds": [ - 33 + "52" ], "runIds": [ 434 @@ -54742,7 +54625,7 @@ "timeUnixMs": 1633420528120, "relativeTimeMs": 5659120, "teamIds": [ - 5 + "70" ], "runIds": [ 437 @@ -54760,7 +54643,7 @@ "timeUnixMs": 1633420533114, "relativeTimeMs": 5664114, "teamIds": [ - 2 + "101" ], "runIds": [ 441 @@ -54778,7 +54661,7 @@ "timeUnixMs": 1633420533992, "relativeTimeMs": 5664992, "teamIds": [ - 25 + "94" ], "runIds": [ 438 @@ -54796,7 +54679,7 @@ "timeUnixMs": 1633420538440, "relativeTimeMs": 5669440, "teamIds": [ - 2 + "101" ], "runIds": [ 441 @@ -54814,7 +54697,7 @@ "timeUnixMs": 1633420539924, "relativeTimeMs": 5670924, "teamIds": [ - 86 + "38" ], "runIds": [ 440 @@ -54832,7 +54715,7 @@ "timeUnixMs": 1633420540666, "relativeTimeMs": 5671666, "teamIds": [ - 95 + "30" ], "runIds": [ 439 @@ -54850,7 +54733,7 @@ "timeUnixMs": 1633420549492, "relativeTimeMs": 5680492, "teamIds": [ - 100 + "77" ], "runIds": [ 442 @@ -54868,7 +54751,7 @@ "timeUnixMs": 1633420559361, "relativeTimeMs": 5690361, "teamIds": [ - 4 + "50" ], "runIds": [ 444 @@ -54886,7 +54769,7 @@ "timeUnixMs": 1633420560522, "relativeTimeMs": 5691522, "teamIds": [ - 47 + "99" ], "runIds": [ 443 @@ -54904,7 +54787,7 @@ "timeUnixMs": 1633420565414, "relativeTimeMs": 5696414, "teamIds": [ - 4 + "50" ], "runIds": [ 444 @@ -54922,7 +54805,7 @@ "timeUnixMs": 1633420566697, "relativeTimeMs": 5697697, "teamIds": [ - 51 + "18" ], "runIds": [ 445 @@ -54940,7 +54823,7 @@ "timeUnixMs": 1633420572527, "relativeTimeMs": 5703527, "teamIds": [ - 91 + "54" ], "runIds": [ 446 @@ -54958,7 +54841,7 @@ "timeUnixMs": 1633420583605, "relativeTimeMs": 5714605, "teamIds": [ - 12 + "56" ], "runIds": [ 449 @@ -54976,7 +54859,7 @@ "timeUnixMs": 1633420586286, "relativeTimeMs": 5717286, "teamIds": [ - 6 + "19" ], "runIds": [ 447 @@ -54994,7 +54877,7 @@ "timeUnixMs": 1633420587392, "relativeTimeMs": 5718392, "teamIds": [ - 40 + "87" ], "runIds": [ 448 @@ -55012,7 +54895,7 @@ "timeUnixMs": 1633420588517, "relativeTimeMs": 5719517, "teamIds": [ - 12 + "56" ], "runIds": [ 449 @@ -55030,7 +54913,7 @@ "timeUnixMs": 1633420598444, "relativeTimeMs": 5729444, "teamIds": [ - 93 + "49" ], "runIds": [ 450 @@ -55048,7 +54931,7 @@ "timeUnixMs": 1633420616207, "relativeTimeMs": 5747207, "teamIds": [ - 39 + "79" ], "runIds": [ 451 @@ -55066,7 +54949,7 @@ "timeUnixMs": 1633420622407, "relativeTimeMs": 5753407, "teamIds": [ - 24 + "28" ], "runIds": [ 452 @@ -55084,7 +54967,7 @@ "timeUnixMs": 1633420626518, "relativeTimeMs": 5757518, "teamIds": [ - 28 + "112" ], "runIds": [ 453 @@ -55102,7 +54985,7 @@ "timeUnixMs": 1633420632485, "relativeTimeMs": 5763485, "teamIds": [ - 28 + "112" ], "runIds": [ 453 @@ -55120,7 +55003,7 @@ "timeUnixMs": 1633420638391, "relativeTimeMs": 5769391, "teamIds": [ - 60 + "31" ], "runIds": [ 454 @@ -55138,7 +55021,7 @@ "timeUnixMs": 1633420653073, "relativeTimeMs": 5784073, "teamIds": [ - 19 + "91" ], "runIds": [ 455 @@ -55156,7 +55039,7 @@ "timeUnixMs": 1633420656165, "relativeTimeMs": 5787165, "teamIds": [ - 80 + "83" ], "runIds": [ 456 @@ -55174,7 +55057,7 @@ "timeUnixMs": 1633420661619, "relativeTimeMs": 5792619, "teamIds": [ - 66 + "117" ], "runIds": [ 457 @@ -55192,7 +55075,7 @@ "timeUnixMs": 1633420680638, "relativeTimeMs": 5811638, "teamIds": [ - 50 + "11" ], "runIds": [ 459 @@ -55210,7 +55093,7 @@ "timeUnixMs": 1633420686378, "relativeTimeMs": 5817378, "teamIds": [ - 65 + "23" ], "runIds": [ 458 @@ -55228,7 +55111,7 @@ "timeUnixMs": 1633420686464, "relativeTimeMs": 5817464, "teamIds": [ - 93 + "49" ], "runIds": [ 460 @@ -55246,7 +55129,7 @@ "timeUnixMs": 1633420688083, "relativeTimeMs": 5819083, "teamIds": [ - 16 + "109" ], "runIds": [ 461 @@ -55264,7 +55147,7 @@ "timeUnixMs": 1633420696560, "relativeTimeMs": 5827560, "teamIds": [ - 42 + "12" ], "runIds": [ 462 @@ -55282,7 +55165,7 @@ "timeUnixMs": 1633420704275, "relativeTimeMs": 5835275, "teamIds": [ - 71 + "105" ], "runIds": [ 463 @@ -55300,7 +55183,7 @@ "timeUnixMs": 1633420724994, "relativeTimeMs": 5855994, "teamIds": [ - 106 + "110" ], "runIds": [ 464 @@ -55318,7 +55201,7 @@ "timeUnixMs": 1633420743053, "relativeTimeMs": 5874053, "teamIds": [ - 2 + "101" ], "runIds": [ 465 @@ -55336,7 +55219,7 @@ "timeUnixMs": 1633420747394, "relativeTimeMs": 5878394, "teamIds": [ - 9 + "114" ], "runIds": [ 468 @@ -55354,7 +55237,7 @@ "timeUnixMs": 1633420749855, "relativeTimeMs": 5880855, "teamIds": [ - 75 + "48" ], "runIds": [ 467 @@ -55372,7 +55255,7 @@ "timeUnixMs": 1633420753670, "relativeTimeMs": 5884670, "teamIds": [ - 67 + "115" ], "runIds": [ 466 @@ -55390,7 +55273,7 @@ "timeUnixMs": 1633420754998, "relativeTimeMs": 5885998, "teamIds": [ - 2 + "101" ], "runIds": [ 465 @@ -55408,7 +55291,7 @@ "timeUnixMs": 1633420756068, "relativeTimeMs": 5887068, "teamIds": [ - 9 + "114" ], "runIds": [ 468 @@ -55426,7 +55309,7 @@ "timeUnixMs": 1633420763404, "relativeTimeMs": 5894404, "teamIds": [ - 40 + "87" ], "runIds": [ 469 @@ -55444,7 +55327,7 @@ "timeUnixMs": 1633420780895, "relativeTimeMs": 5911895, "teamIds": [ - 73 + "76" ], "runIds": [ 470 @@ -55462,7 +55345,7 @@ "timeUnixMs": 1633420796264, "relativeTimeMs": 5927264, "teamIds": [ - 67 + "115" ], "runIds": [ 471 @@ -55480,7 +55363,7 @@ "timeUnixMs": 1633420801356, "relativeTimeMs": 5932356, "teamIds": [ - 82 + "118" ], "runIds": [ 472 @@ -55498,7 +55381,7 @@ "timeUnixMs": 1633420804035, "relativeTimeMs": 5935035, "teamIds": [ - 6 + "19" ], "runIds": [ 473 @@ -55516,7 +55399,7 @@ "timeUnixMs": 1633420811595, "relativeTimeMs": 5942595, "teamIds": [ - 106 + "110" ], "runIds": [ 474 @@ -55534,7 +55417,7 @@ "timeUnixMs": 1633420814301, "relativeTimeMs": 5945301, "teamIds": [ - 12 + "56" ], "runIds": [ 476 @@ -55552,7 +55435,7 @@ "timeUnixMs": 1633420817463, "relativeTimeMs": 5948463, "teamIds": [ - 12 + "56" ], "runIds": [ 476 @@ -55570,7 +55453,7 @@ "timeUnixMs": 1633420818292, "relativeTimeMs": 5949292, "teamIds": [ - 15 + "6" ], "runIds": [ 475 @@ -55588,7 +55471,7 @@ "timeUnixMs": 1633420819377, "relativeTimeMs": 5950377, "teamIds": [ - 33 + "52" ], "runIds": [ 477 @@ -55606,7 +55489,7 @@ "timeUnixMs": 1633420824235, "relativeTimeMs": 5955235, "teamIds": [ - 33 + "52" ], "runIds": [ 477 @@ -55624,7 +55507,7 @@ "timeUnixMs": 1633420833246, "relativeTimeMs": 5964246, "teamIds": [ - 17 + "59" ], "runIds": [ 479 @@ -55642,7 +55525,7 @@ "timeUnixMs": 1633420836487, "relativeTimeMs": 5967487, "teamIds": [ - 107 + "89" ], "runIds": [ 478 @@ -55660,7 +55543,7 @@ "timeUnixMs": 1633420844102, "relativeTimeMs": 5975102, "teamIds": [ - 17 + "59" ], "runIds": [ 479 @@ -55678,7 +55561,7 @@ "timeUnixMs": 1633420845465, "relativeTimeMs": 5976465, "teamIds": [ - 50 + "11" ], "runIds": [ 480 @@ -55696,7 +55579,7 @@ "timeUnixMs": 1633420854652, "relativeTimeMs": 5985652, "teamIds": [ - 108 + "63" ], "runIds": [ 481 @@ -55714,7 +55597,7 @@ "timeUnixMs": 1633420856509, "relativeTimeMs": 5987509, "teamIds": [ - 94 + "93" ], "runIds": [ 482 @@ -55732,7 +55615,7 @@ "timeUnixMs": 1633420864352, "relativeTimeMs": 5995352, "teamIds": [ - 86 + "38" ], "runIds": [ 483 @@ -55750,7 +55633,7 @@ "timeUnixMs": 1633420865724, "relativeTimeMs": 5996724, "teamIds": [ - 3 + "67" ], "runIds": [ 484 @@ -55768,7 +55651,7 @@ "timeUnixMs": 1633420901960, "relativeTimeMs": 6032960, "teamIds": [ - 90 + "35" ], "runIds": [ 485 @@ -55786,7 +55669,7 @@ "timeUnixMs": 1633420923916, "relativeTimeMs": 6054916, "teamIds": [ - 46 + "53" ], "runIds": [ 487 @@ -55804,7 +55687,7 @@ "timeUnixMs": 1633420927267, "relativeTimeMs": 6058267, "teamIds": [ - 83 + "20" ], "runIds": [ 486 @@ -55822,7 +55705,7 @@ "timeUnixMs": 1633420933471, "relativeTimeMs": 6064471, "teamIds": [ - 46 + "53" ], "runIds": [ 488 @@ -55840,7 +55723,7 @@ "timeUnixMs": 1633420942680, "relativeTimeMs": 6073680, "teamIds": [ - 48 + "106" ], "runIds": [ 489 @@ -55858,7 +55741,7 @@ "timeUnixMs": 1633420951766, "relativeTimeMs": 6082766, "teamIds": [ - 16 + "109" ], "runIds": [ 490 @@ -55876,7 +55759,7 @@ "timeUnixMs": 1633420953684, "relativeTimeMs": 6084684, "teamIds": [ - 66 + "117" ], "runIds": [ 491 @@ -55894,7 +55777,7 @@ "timeUnixMs": 1633420959662, "relativeTimeMs": 6090662, "teamIds": [ - 50 + "11" ], "runIds": [ 492 @@ -55912,7 +55795,7 @@ "timeUnixMs": 1633420987602, "relativeTimeMs": 6118602, "teamIds": [ - 63 + "42" ], "runIds": [ 493 @@ -55930,7 +55813,7 @@ "timeUnixMs": 1633421009015, "relativeTimeMs": 6140015, "teamIds": [ - 99 + "17" ], "runIds": [ 494 @@ -55948,7 +55831,7 @@ "timeUnixMs": 1633421023450, "relativeTimeMs": 6154450, "teamIds": [ - 73 + "76" ], "runIds": [ 495 @@ -55966,7 +55849,7 @@ "timeUnixMs": 1633421024233, "relativeTimeMs": 6155233, "teamIds": [ - 61 + "55" ], "runIds": [ 498 @@ -55984,7 +55867,7 @@ "timeUnixMs": 1633421025451, "relativeTimeMs": 6156451, "teamIds": [ - 91 + "54" ], "runIds": [ 496 @@ -56002,7 +55885,7 @@ "timeUnixMs": 1633421028136, "relativeTimeMs": 6159136, "teamIds": [ - 61 + "55" ], "runIds": [ 498 @@ -56020,7 +55903,7 @@ "timeUnixMs": 1633421028697, "relativeTimeMs": 6159697, "teamIds": [ - 11 + "69" ], "runIds": [ 499 @@ -56038,7 +55921,7 @@ "timeUnixMs": 1633421033354, "relativeTimeMs": 6164354, "teamIds": [ - 87 + "66" ], "runIds": [ 497 @@ -56056,7 +55939,7 @@ "timeUnixMs": 1633421036323, "relativeTimeMs": 6167323, "teamIds": [ - 11 + "69" ], "runIds": [ 499 @@ -56074,7 +55957,7 @@ "timeUnixMs": 1633421054145, "relativeTimeMs": 6185145, "teamIds": [ - 9 + "114" ], "runIds": [ 500 @@ -56092,7 +55975,7 @@ "timeUnixMs": 1633421061364, "relativeTimeMs": 6192364, "teamIds": [ - 9 + "114" ], "runIds": [ 500 @@ -56110,7 +55993,7 @@ "timeUnixMs": 1633421066770, "relativeTimeMs": 6197770, "teamIds": [ - 16 + "109" ], "runIds": [ 501 @@ -56128,7 +56011,7 @@ "timeUnixMs": 1633421071027, "relativeTimeMs": 6202027, "teamIds": [ - 47 + "99" ], "runIds": [ 502 @@ -56146,7 +56029,7 @@ "timeUnixMs": 1633421080366, "relativeTimeMs": 6211366, "teamIds": [ - 3 + "67" ], "runIds": [ 503 @@ -56164,7 +56047,7 @@ "timeUnixMs": 1633421083486, "relativeTimeMs": 6214486, "teamIds": [ - 79 + "62" ], "runIds": [ 504 @@ -56182,7 +56065,7 @@ "timeUnixMs": 1633421094204, "relativeTimeMs": 6225204, "teamIds": [ - 31 + "33" ], "runIds": [ 505 @@ -56200,7 +56083,7 @@ "timeUnixMs": 1633421094986, "relativeTimeMs": 6225986, "teamIds": [ - 2 + "101" ], "runIds": [ 508 @@ -56218,7 +56101,7 @@ "timeUnixMs": 1633421105470, "relativeTimeMs": 6236470, "teamIds": [ - 6 + "19" ], "runIds": [ 506 @@ -56236,7 +56119,7 @@ "timeUnixMs": 1633421119086, "relativeTimeMs": 6250086, "teamIds": [ - 2 + "101" ], "runIds": [ 508 @@ -56254,7 +56137,7 @@ "timeUnixMs": 1633421123814, "relativeTimeMs": 6254814, "teamIds": [ - 85 + "61" ], "runIds": [ 507 @@ -56272,7 +56155,7 @@ "timeUnixMs": 1633421136377, "relativeTimeMs": 6267377, "teamIds": [ - 109 + "75" ], "runIds": [ 509 @@ -56290,7 +56173,7 @@ "timeUnixMs": 1633421164588, "relativeTimeMs": 6295588, "teamIds": [ - 15 + "6" ], "runIds": [ 511 @@ -56308,7 +56191,7 @@ "timeUnixMs": 1633421164663, "relativeTimeMs": 6295663, "teamIds": [ - 77 + "5" ], "runIds": [ 510 @@ -56326,7 +56209,7 @@ "timeUnixMs": 1633421181213, "relativeTimeMs": 6312213, "teamIds": [ - 32 + "45" ], "runIds": [ 512 @@ -56344,7 +56227,7 @@ "timeUnixMs": 1633421186484, "relativeTimeMs": 6317484, "teamIds": [ - 36 + "80" ], "runIds": [ 513 @@ -56362,7 +56245,7 @@ "timeUnixMs": 1633421197437, "relativeTimeMs": 6328437, "teamIds": [ - 75 + "48" ], "runIds": [ 514 @@ -56380,7 +56263,7 @@ "timeUnixMs": 1633421220030, "relativeTimeMs": 6351030, "teamIds": [ - 109 + "75" ], "runIds": [ 515 @@ -56398,7 +56281,7 @@ "timeUnixMs": 1633421226164, "relativeTimeMs": 6357164, "teamIds": [ - 83 + "20" ], "runIds": [ 516 @@ -56416,7 +56299,7 @@ "timeUnixMs": 1633421236443, "relativeTimeMs": 6367443, "teamIds": [ - 39 + "79" ], "runIds": [ 517 @@ -56434,7 +56317,7 @@ "timeUnixMs": 1633421241169, "relativeTimeMs": 6372169, "teamIds": [ - 80 + "83" ], "runIds": [ 518 @@ -56452,7 +56335,7 @@ "timeUnixMs": 1633421253111, "relativeTimeMs": 6384111, "teamIds": [ - 4 + "50" ], "runIds": [ 519 @@ -56470,7 +56353,7 @@ "timeUnixMs": 1633421257500, "relativeTimeMs": 6388500, "teamIds": [ - 4 + "50" ], "runIds": [ 519 @@ -56488,7 +56371,7 @@ "timeUnixMs": 1633421266223, "relativeTimeMs": 6397223, "teamIds": [ - 95 + "30" ], "runIds": [ 520 @@ -56506,7 +56389,7 @@ "timeUnixMs": 1633421272731, "relativeTimeMs": 6403731, "teamIds": [ - 93 + "49" ], "runIds": [ 521 @@ -56524,7 +56407,7 @@ "timeUnixMs": 1633421281328, "relativeTimeMs": 6412328, "teamIds": [ - 74 + "78" ], "runIds": [ 522 @@ -56542,7 +56425,7 @@ "timeUnixMs": 1633421290515, "relativeTimeMs": 6421515, "teamIds": [ - 75 + "48" ], "runIds": [ 523 @@ -56560,7 +56443,7 @@ "timeUnixMs": 1633421295329, "relativeTimeMs": 6426329, "teamIds": [ - 6 + "19" ], "runIds": [ 524 @@ -56578,7 +56461,7 @@ "timeUnixMs": 1633421312639, "relativeTimeMs": 6443639, "teamIds": [ - 29 + "10" ], "runIds": [ 525 @@ -56596,7 +56479,7 @@ "timeUnixMs": 1633421324839, "relativeTimeMs": 6455839, "teamIds": [ - 6 + "19" ], "runIds": [ 526 @@ -56614,7 +56497,7 @@ "timeUnixMs": 1633421326892, "relativeTimeMs": 6457892, "teamIds": [ - 27 + "96" ], "runIds": [ 527 @@ -56632,7 +56515,7 @@ "timeUnixMs": 1633421337865, "relativeTimeMs": 6468865, "teamIds": [ - 14 + "60" ], "runIds": [ 528 @@ -56650,7 +56533,7 @@ "timeUnixMs": 1633421355549, "relativeTimeMs": 6486549, "teamIds": [ - 106 + "110" ], "runIds": [ 529 @@ -56668,7 +56551,7 @@ "timeUnixMs": 1633421362756, "relativeTimeMs": 6493756, "teamIds": [ - 12 + "56" ], "runIds": [ 531 @@ -56686,7 +56569,7 @@ "timeUnixMs": 1633421364332, "relativeTimeMs": 6495332, "teamIds": [ - 12 + "56" ], "runIds": [ 532 @@ -56704,7 +56587,7 @@ "timeUnixMs": 1633421365043, "relativeTimeMs": 6496043, "teamIds": [ - 94 + "93" ], "runIds": [ 530 @@ -56722,7 +56605,7 @@ "timeUnixMs": 1633421367574, "relativeTimeMs": 6498574, "teamIds": [ - 12 + "56" ], "runIds": [ 532 @@ -56740,7 +56623,7 @@ "timeUnixMs": 1633421374911, "relativeTimeMs": 6505911, "teamIds": [ - 38 + "113" ], "runIds": [ 533 @@ -56758,7 +56641,7 @@ "timeUnixMs": 1633421378443, "relativeTimeMs": 6509443, "teamIds": [ - 12 + "56" ], "runIds": [ 531 @@ -56776,7 +56659,7 @@ "timeUnixMs": 1633421392097, "relativeTimeMs": 6523097, "teamIds": [ - 26 + "64" ], "runIds": [ 534 @@ -56794,7 +56677,7 @@ "timeUnixMs": 1633421401326, "relativeTimeMs": 6532326, "teamIds": [ - 73 + "76" ], "runIds": [ 535 @@ -56812,7 +56695,7 @@ "timeUnixMs": 1633421404988, "relativeTimeMs": 6535988, "teamIds": [ - 13 + "25" ], "runIds": [ 536 @@ -56830,7 +56713,7 @@ "timeUnixMs": 1633421414207, "relativeTimeMs": 6545207, "teamIds": [ - 45 + "34" ], "runIds": [ 537 @@ -56848,7 +56731,7 @@ "timeUnixMs": 1633421416602, "relativeTimeMs": 6547602, "teamIds": [ - 17 + "59" ], "runIds": [ 539 @@ -56866,7 +56749,7 @@ "timeUnixMs": 1633421421659, "relativeTimeMs": 6552659, "teamIds": [ - 9 + "114" ], "runIds": [ 538 @@ -56884,7 +56767,7 @@ "timeUnixMs": 1633421421921, "relativeTimeMs": 6552921, "teamIds": [ - 5 + "70" ], "runIds": [ 541 @@ -56902,7 +56785,7 @@ "timeUnixMs": 1633421422413, "relativeTimeMs": 6553413, "teamIds": [ - 51 + "18" ], "runIds": [ 540 @@ -56920,7 +56803,7 @@ "timeUnixMs": 1633421431409, "relativeTimeMs": 6562409, "teamIds": [ - 5 + "70" ], "runIds": [ 541 @@ -56938,7 +56821,7 @@ "timeUnixMs": 1633421434916, "relativeTimeMs": 6565916, "teamIds": [ - 3 + "67" ], "runIds": [ 544 @@ -56956,7 +56839,7 @@ "timeUnixMs": 1633421438138, "relativeTimeMs": 6569138, "teamIds": [ - 29 + "10" ], "runIds": [ 543 @@ -56974,7 +56857,7 @@ "timeUnixMs": 1633421448761, "relativeTimeMs": 6579761, "teamIds": [ - 73 + "76" ], "runIds": [ 542 @@ -56992,7 +56875,7 @@ "timeUnixMs": 1633421459464, "relativeTimeMs": 6590464, "teamIds": [ - 75 + "48" ], "runIds": [ 545 @@ -57010,7 +56893,7 @@ "timeUnixMs": 1633421460537, "relativeTimeMs": 6591537, "teamIds": [ - 17 + "59" ], "runIds": [ 539 @@ -57028,7 +56911,7 @@ "timeUnixMs": 1633421479727, "relativeTimeMs": 6610727, "teamIds": [ - 33 + "52" ], "runIds": [ 547 @@ -57046,7 +56929,7 @@ "timeUnixMs": 1633421485075, "relativeTimeMs": 6616075, "teamIds": [ - 86 + "38" ], "runIds": [ 546 @@ -57064,7 +56947,7 @@ "timeUnixMs": 1633421497206, "relativeTimeMs": 6628206, "teamIds": [ - 33 + "52" ], "runIds": [ 547 @@ -57082,7 +56965,7 @@ "timeUnixMs": 1633421527240, "relativeTimeMs": 6658240, "teamIds": [ - 110 + "81" ], "runIds": [ 548 @@ -57100,7 +56983,7 @@ "timeUnixMs": 1633421528365, "relativeTimeMs": 6659365, "teamIds": [ - 42 + "12" ], "runIds": [ 549 @@ -57118,7 +57001,7 @@ "timeUnixMs": 1633421533201, "relativeTimeMs": 6664201, "teamIds": [ - 1 + "102" ], "runIds": [ 552 @@ -57136,7 +57019,7 @@ "timeUnixMs": 1633421535120, "relativeTimeMs": 6666120, "teamIds": [ - 21 + "104" ], "runIds": [ 550 @@ -57154,7 +57037,7 @@ "timeUnixMs": 1633421541276, "relativeTimeMs": 6672276, "teamIds": [ - 1 + "102" ], "runIds": [ 552 @@ -57172,7 +57055,7 @@ "timeUnixMs": 1633421541604, "relativeTimeMs": 6672604, "teamIds": [ - 111 + "41" ], "runIds": [ 551 @@ -57190,7 +57073,7 @@ "timeUnixMs": 1633421580135, "relativeTimeMs": 6711135, "teamIds": [ - 5 + "70" ], "runIds": [ 553 @@ -57208,7 +57091,7 @@ "timeUnixMs": 1633421588387, "relativeTimeMs": 6719387, "teamIds": [ - 5 + "70" ], "runIds": [ 553 @@ -57226,7 +57109,7 @@ "timeUnixMs": 1633421604521, "relativeTimeMs": 6735521, "teamIds": [ - 48 + "106" ], "runIds": [ 554 @@ -57244,7 +57127,7 @@ "timeUnixMs": 1633421604971, "relativeTimeMs": 6735971, "teamIds": [ - 15 + "6" ], "runIds": [ 555 @@ -57262,7 +57145,7 @@ "timeUnixMs": 1633421644439, "relativeTimeMs": 6775439, "teamIds": [ - 16 + "109" ], "runIds": [ 556 @@ -57280,7 +57163,7 @@ "timeUnixMs": 1633421660186, "relativeTimeMs": 6791186, "teamIds": [ - 70 + "100" ], "runIds": [ 557 @@ -57298,7 +57181,7 @@ "timeUnixMs": 1633421678687, "relativeTimeMs": 6809687, "teamIds": [ - 68 + "107" ], "runIds": [ 558 @@ -57316,7 +57199,7 @@ "timeUnixMs": 1633421681531, "relativeTimeMs": 6812531, "teamIds": [ - 3 + "67" ], "runIds": [ 559 @@ -57334,7 +57217,7 @@ "timeUnixMs": 1633421699346, "relativeTimeMs": 6830346, "teamIds": [ - 61 + "55" ], "runIds": [ 561 @@ -57352,7 +57235,7 @@ "timeUnixMs": 1633421703536, "relativeTimeMs": 6834536, "teamIds": [ - 95 + "30" ], "runIds": [ 560 @@ -57370,7 +57253,7 @@ "timeUnixMs": 1633421715171, "relativeTimeMs": 6846171, "teamIds": [ - 61 + "55" ], "runIds": [ 561 @@ -57388,7 +57271,7 @@ "timeUnixMs": 1633421726591, "relativeTimeMs": 6857591, "teamIds": [ - 51 + "18" ], "runIds": [ 562 @@ -57406,7 +57289,7 @@ "timeUnixMs": 1633421740571, "relativeTimeMs": 6871571, "teamIds": [ - 3 + "67" ], "runIds": [ 563 @@ -57424,7 +57307,7 @@ "timeUnixMs": 1633421775243, "relativeTimeMs": 6906243, "teamIds": [ - 43 + "92" ], "runIds": [ 564 @@ -57442,7 +57325,7 @@ "timeUnixMs": 1633421800966, "relativeTimeMs": 6931966, "teamIds": [ - 100 + "77" ], "runIds": [ 565 @@ -57460,7 +57343,7 @@ "timeUnixMs": 1633421810667, "relativeTimeMs": 6941667, "teamIds": [ - 50 + "11" ], "runIds": [ 566 @@ -57478,7 +57361,7 @@ "timeUnixMs": 1633421838043, "relativeTimeMs": 6969043, "teamIds": [ - 60 + "31" ], "runIds": [ 567 @@ -57496,7 +57379,7 @@ "timeUnixMs": 1633421846842, "relativeTimeMs": 6977842, "teamIds": [ - 11 + "69" ], "runIds": [ 569 @@ -57514,7 +57397,7 @@ "timeUnixMs": 1633421850063, "relativeTimeMs": 6981063, "teamIds": [ - 17 + "59" ], "runIds": [ 571 @@ -57532,7 +57415,7 @@ "timeUnixMs": 1633421851445, "relativeTimeMs": 6982445, "teamIds": [ - 91 + "54" ], "runIds": [ 568 @@ -57550,7 +57433,7 @@ "timeUnixMs": 1633421854054, "relativeTimeMs": 6985054, "teamIds": [ - 17 + "59" ], "runIds": [ 571 @@ -57568,7 +57451,7 @@ "timeUnixMs": 1633421859042, "relativeTimeMs": 6990042, "teamIds": [ - 58 + "119" ], "runIds": [ 570 @@ -57586,7 +57469,7 @@ "timeUnixMs": 1633421862230, "relativeTimeMs": 6993230, "teamIds": [ - 28 + "112" ], "runIds": [ 572 @@ -57604,7 +57487,7 @@ "timeUnixMs": 1633421868308, "relativeTimeMs": 6999308, "teamIds": [ - 54 + "73" ], "runIds": [ 573 @@ -57622,7 +57505,7 @@ "timeUnixMs": 1633421868362, "relativeTimeMs": 6999362, "teamIds": [ - 28 + "112" ], "runIds": [ 572 @@ -57640,7 +57523,7 @@ "timeUnixMs": 1633421871105, "relativeTimeMs": 7002105, "teamIds": [ - 11 + "69" ], "runIds": [ 569 @@ -57658,7 +57541,7 @@ "timeUnixMs": 1633421888450, "relativeTimeMs": 7019450, "teamIds": [ - 34 + "37" ], "runIds": [ 575 @@ -57676,7 +57559,7 @@ "timeUnixMs": 1633421895004, "relativeTimeMs": 7026004, "teamIds": [ - 73 + "76" ], "runIds": [ 574 @@ -57694,7 +57577,7 @@ "timeUnixMs": 1633421902646, "relativeTimeMs": 7033646, "teamIds": [ - 14 + "60" ], "runIds": [ 577 @@ -57712,7 +57595,7 @@ "timeUnixMs": 1633421911626, "relativeTimeMs": 7042626, "teamIds": [ - 39 + "79" ], "runIds": [ 578 @@ -57730,7 +57613,7 @@ "timeUnixMs": 1633421912751, "relativeTimeMs": 7043751, "teamIds": [ - 80 + "83" ], "runIds": [ 576 @@ -57748,7 +57631,7 @@ "timeUnixMs": 1633421920063, "relativeTimeMs": 7051063, "teamIds": [ - 11 + "69" ], "runIds": [ 580 @@ -57766,7 +57649,7 @@ "timeUnixMs": 1633421921516, "relativeTimeMs": 7052516, "teamIds": [ - 91 + "54" ], "runIds": [ 579 @@ -57784,7 +57667,7 @@ "timeUnixMs": 1633421923812, "relativeTimeMs": 7054812, "teamIds": [ - 11 + "69" ], "runIds": [ 580 @@ -57802,7 +57685,7 @@ "timeUnixMs": 1633421957463, "relativeTimeMs": 7088463, "teamIds": [ - 72 + "13" ], "runIds": [ 581 @@ -57820,7 +57703,7 @@ "timeUnixMs": 1633421957619, "relativeTimeMs": 7088619, "teamIds": [ - 65 + "23" ], "runIds": [ 582 @@ -57838,7 +57721,7 @@ "timeUnixMs": 1633421970220, "relativeTimeMs": 7101220, "teamIds": [ - 10 + "47" ], "runIds": [ 583 @@ -57856,7 +57739,7 @@ "timeUnixMs": 1633421974476, "relativeTimeMs": 7105476, "teamIds": [ - 10 + "47" ], "runIds": [ 583 @@ -57874,7 +57757,7 @@ "timeUnixMs": 1633421981632, "relativeTimeMs": 7112632, "teamIds": [ - 30 + "7" ], "runIds": [ 584 @@ -57892,7 +57775,7 @@ "timeUnixMs": 1633421989744, "relativeTimeMs": 7120744, "teamIds": [ - 69 + "3" ], "runIds": [ 585 @@ -57910,7 +57793,7 @@ "timeUnixMs": 1633421999815, "relativeTimeMs": 7130815, "teamIds": [ - 43 + "92" ], "runIds": [ 586 @@ -57928,7 +57811,7 @@ "timeUnixMs": 1633422026801, "relativeTimeMs": 7157801, "teamIds": [ - 67 + "115" ], "runIds": [ 587 @@ -57946,7 +57829,7 @@ "timeUnixMs": 1633422027571, "relativeTimeMs": 7158571, "teamIds": [ - 86 + "38" ], "runIds": [ 588 @@ -57964,7 +57847,7 @@ "timeUnixMs": 1633422044391, "relativeTimeMs": 7175391, "teamIds": [ - 20 + "95" ], "runIds": [ 589 @@ -57982,7 +57865,7 @@ "timeUnixMs": 1633422049719, "relativeTimeMs": 7180719, "teamIds": [ - 75 + "48" ], "runIds": [ 590 @@ -58000,7 +57883,7 @@ "timeUnixMs": 1633422071569, "relativeTimeMs": 7202569, "teamIds": [ - 78 + "46" ], "runIds": [ 591 @@ -58018,7 +57901,7 @@ "timeUnixMs": 1633422080668, "relativeTimeMs": 7211668, "teamIds": [ - 112 + "14" ], "runIds": [ 592 @@ -58036,7 +57919,7 @@ "timeUnixMs": 1633422089266, "relativeTimeMs": 7220266, "teamIds": [ - 97 + "97" ], "runIds": [ 593 @@ -58054,7 +57937,7 @@ "timeUnixMs": 1633422098054, "relativeTimeMs": 7229054, "teamIds": [ - 19 + "91" ], "runIds": [ 594 @@ -58072,7 +57955,7 @@ "timeUnixMs": 1633422129809, "relativeTimeMs": 7260809, "teamIds": [ - 66 + "117" ], "runIds": [ 595 @@ -58090,7 +57973,7 @@ "timeUnixMs": 1633422146390, "relativeTimeMs": 7277390, "teamIds": [ - 58 + "119" ], "runIds": [ 596 @@ -58108,7 +57991,7 @@ "timeUnixMs": 1633422147982, "relativeTimeMs": 7278982, "teamIds": [ - 53 + "116" ], "runIds": [ 597 @@ -58126,7 +58009,7 @@ "timeUnixMs": 1633422158855, "relativeTimeMs": 7289855, "teamIds": [ - 95 + "30" ], "runIds": [ 598 @@ -58144,7 +58027,7 @@ "timeUnixMs": 1633422160232, "relativeTimeMs": 7291232, "teamIds": [ - 95 + "30" ], "runIds": [ 599 @@ -58162,7 +58045,7 @@ "timeUnixMs": 1633422176802, "relativeTimeMs": 7307802, "teamIds": [ - 111 + "41" ], "runIds": [ 601 @@ -58180,7 +58063,7 @@ "timeUnixMs": 1633422177826, "relativeTimeMs": 7308826, "teamIds": [ - 88 + "26" ], "runIds": [ 600 @@ -58198,7 +58081,7 @@ "timeUnixMs": 1633422181256, "relativeTimeMs": 7312256, "teamIds": [ - 21 + "104" ], "runIds": [ 602 @@ -58216,7 +58099,7 @@ "timeUnixMs": 1633422191422, "relativeTimeMs": 7322422, "teamIds": [ - 67 + "115" ], "runIds": [ 603 @@ -58234,7 +58117,7 @@ "timeUnixMs": 1633422192247, "relativeTimeMs": 7323247, "teamIds": [ - 95 + "30" ], "runIds": [ 604 @@ -58252,7 +58135,7 @@ "timeUnixMs": 1633422199660, "relativeTimeMs": 7330660, "teamIds": [ - 79 + "62" ], "runIds": [ 606 @@ -58270,7 +58153,7 @@ "timeUnixMs": 1633422202458, "relativeTimeMs": 7333458, "teamIds": [ - 69 + "3" ], "runIds": [ 605 @@ -58288,7 +58171,7 @@ "timeUnixMs": 1633422202490, "relativeTimeMs": 7333490, "teamIds": [ - 43 + "92" ], "runIds": [ 608 @@ -58306,7 +58189,7 @@ "timeUnixMs": 1633422203829, "relativeTimeMs": 7334829, "teamIds": [ - 9 + "114" ], "runIds": [ 609 @@ -58324,7 +58207,7 @@ "timeUnixMs": 1633422208551, "relativeTimeMs": 7339551, "teamIds": [ - 9 + "114" ], "runIds": [ 609 @@ -58342,7 +58225,7 @@ "timeUnixMs": 1633422212247, "relativeTimeMs": 7343247, "teamIds": [ - 113 + "82" ], "runIds": [ 610 @@ -58360,7 +58243,7 @@ "timeUnixMs": 1633422220476, "relativeTimeMs": 7351476, "teamIds": [ - 73 + "76" ], "runIds": [ 607 @@ -58378,7 +58261,7 @@ "timeUnixMs": 1633422225694, "relativeTimeMs": 7356694, "teamIds": [ - 89 + "21" ], "runIds": [ 611 @@ -58396,7 +58279,7 @@ "timeUnixMs": 1633422233553, "relativeTimeMs": 7364553, "teamIds": [ - 98 + "90" ], "runIds": [ 612 @@ -58414,7 +58297,7 @@ "timeUnixMs": 1633422238242, "relativeTimeMs": 7369242, "teamIds": [ - 69 + "3" ], "runIds": [ 613 @@ -58432,7 +58315,7 @@ "timeUnixMs": 1633422254302, "relativeTimeMs": 7385302, "teamIds": [ - 30 + "7" ], "runIds": [ 614 @@ -58450,7 +58333,7 @@ "timeUnixMs": 1633422255526, "relativeTimeMs": 7386526, "teamIds": [ - 35 + "32" ], "runIds": [ 615 @@ -58468,7 +58351,7 @@ "timeUnixMs": 1633422260759, "relativeTimeMs": 7391759, "teamIds": [ - 71 + "105" ], "runIds": [ 616 @@ -58486,7 +58369,7 @@ "timeUnixMs": 1633422263282, "relativeTimeMs": 7394282, "teamIds": [ - 23 + "108" ], "runIds": [ 617 @@ -58504,7 +58387,7 @@ "timeUnixMs": 1633422286118, "relativeTimeMs": 7417118, "teamIds": [ - 1 + "102" ], "runIds": [ 618 @@ -58522,7 +58405,7 @@ "timeUnixMs": 1633422289003, "relativeTimeMs": 7420003, "teamIds": [ - 17 + "59" ], "runIds": [ 620 @@ -58540,7 +58423,7 @@ "timeUnixMs": 1633422292861, "relativeTimeMs": 7423861, "teamIds": [ - 1 + "102" ], "runIds": [ 618 @@ -58558,7 +58441,7 @@ "timeUnixMs": 1633422295659, "relativeTimeMs": 7426659, "teamIds": [ - 100 + "77" ], "runIds": [ 619 @@ -58576,7 +58459,7 @@ "timeUnixMs": 1633422301891, "relativeTimeMs": 7432891, "teamIds": [ - 17 + "59" ], "runIds": [ 620 @@ -58594,7 +58477,7 @@ "timeUnixMs": 1633422301891, "relativeTimeMs": 7432891, "teamIds": [ - 17 + "59" ], "runIds": [ 620 @@ -58612,7 +58495,7 @@ "timeUnixMs": 1633422305491, "relativeTimeMs": 7436491, "teamIds": [ - 50 + "11" ], "runIds": [ 621 @@ -58630,7 +58513,7 @@ "timeUnixMs": 1633422307399, "relativeTimeMs": 7438399, "teamIds": [ - 40 + "87" ], "runIds": [ 622 @@ -58648,7 +58531,7 @@ "timeUnixMs": 1633422318965, "relativeTimeMs": 7449965, "teamIds": [ - 22 + "103" ], "runIds": [ 623 @@ -58666,7 +58549,7 @@ "timeUnixMs": 1633422324792, "relativeTimeMs": 7455792, "teamIds": [ - 22 + "103" ], "runIds": [ 623 @@ -58684,7 +58567,7 @@ "timeUnixMs": 1633422328307, "relativeTimeMs": 7459307, "teamIds": [ - 100 + "77" ], "runIds": [ 626 @@ -58702,7 +58585,7 @@ "timeUnixMs": 1633422330246, "relativeTimeMs": 7461246, "teamIds": [ - 99 + "17" ], "runIds": [ 624 @@ -58720,7 +58603,7 @@ "timeUnixMs": 1633422334886, "relativeTimeMs": 7465886, "teamIds": [ - 81 + "86" ], "runIds": [ 625 @@ -58738,7 +58621,7 @@ "timeUnixMs": 1633422342300, "relativeTimeMs": 7473300, "teamIds": [ - 42 + "12" ], "runIds": [ 628 @@ -58756,7 +58639,7 @@ "timeUnixMs": 1633422342808, "relativeTimeMs": 7473808, "teamIds": [ - 27 + "96" ], "runIds": [ 627 @@ -58774,7 +58657,7 @@ "timeUnixMs": 1633422356927, "relativeTimeMs": 7487927, "teamIds": [ - 87 + "66" ], "runIds": [ 629 @@ -58792,7 +58675,7 @@ "timeUnixMs": 1633422374679, "relativeTimeMs": 7505679, "teamIds": [ - 61 + "55" ], "runIds": [ 630 @@ -58810,7 +58693,7 @@ "timeUnixMs": 1633422380753, "relativeTimeMs": 7511753, "teamIds": [ - 82 + "118" ], "runIds": [ 631 @@ -58828,7 +58711,7 @@ "timeUnixMs": 1633422394387, "relativeTimeMs": 7525387, "teamIds": [ - 94 + "93" ], "runIds": [ 633 @@ -58846,7 +58729,7 @@ "timeUnixMs": 1633422397269, "relativeTimeMs": 7528269, "teamIds": [ - 81 + "86" ], "runIds": [ 632 @@ -58864,7 +58747,7 @@ "timeUnixMs": 1633422401133, "relativeTimeMs": 7532133, "teamIds": [ - 5 + "70" ], "runIds": [ 634 @@ -58882,7 +58765,7 @@ "timeUnixMs": 1633422404864, "relativeTimeMs": 7535864, "teamIds": [ - 6 + "19" ], "runIds": [ 635 @@ -58900,7 +58783,7 @@ "timeUnixMs": 1633422416246, "relativeTimeMs": 7547246, "teamIds": [ - 94 + "93" ], "runIds": [ 636 @@ -58918,7 +58801,7 @@ "timeUnixMs": 1633422421056, "relativeTimeMs": 7552056, "teamIds": [ - 53 + "116" ], "runIds": [ 637 @@ -58936,7 +58819,7 @@ "timeUnixMs": 1633422439233, "relativeTimeMs": 7570233, "teamIds": [ - 35 + "32" ], "runIds": [ 638 @@ -58954,7 +58837,7 @@ "timeUnixMs": 1633422439571, "relativeTimeMs": 7570571, "teamIds": [ - 65 + "23" ], "runIds": [ 639 @@ -58972,7 +58855,7 @@ "timeUnixMs": 1633422463648, "relativeTimeMs": 7594648, "teamIds": [ - 1 + "102" ], "runIds": [ 640 @@ -58990,7 +58873,7 @@ "timeUnixMs": 1633422468156, "relativeTimeMs": 7599156, "teamIds": [ - 1 + "102" ], "runIds": [ 640 @@ -59008,7 +58891,7 @@ "timeUnixMs": 1633422476221, "relativeTimeMs": 7607221, "teamIds": [ - 93 + "49" ], "runIds": [ 641 @@ -59026,7 +58909,7 @@ "timeUnixMs": 1633422480566, "relativeTimeMs": 7611566, "teamIds": [ - 20 + "95" ], "runIds": [ 642 @@ -59044,7 +58927,7 @@ "timeUnixMs": 1633422482499, "relativeTimeMs": 7613499, "teamIds": [ - 15 + "6" ], "runIds": [ 643 @@ -59062,7 +58945,7 @@ "timeUnixMs": 1633422489259, "relativeTimeMs": 7620259, "teamIds": [ - 29 + "10" ], "runIds": [ 644 @@ -59080,7 +58963,7 @@ "timeUnixMs": 1633422517028, "relativeTimeMs": 7648028, "teamIds": [ - 111 + "41" ], "runIds": [ 645 @@ -59098,7 +58981,7 @@ "timeUnixMs": 1633422523531, "relativeTimeMs": 7654531, "teamIds": [ - 60 + "31" ], "runIds": [ 646 @@ -59116,7 +58999,7 @@ "timeUnixMs": 1633422556665, "relativeTimeMs": 7687665, "teamIds": [ - 46 + "53" ], "runIds": [ 648 @@ -59134,7 +59017,7 @@ "timeUnixMs": 1633422556751, "relativeTimeMs": 7687751, "teamIds": [ - 114 + "88" ], "runIds": [ 647 @@ -59152,7 +59035,7 @@ "timeUnixMs": 1633422564907, "relativeTimeMs": 7695907, "teamIds": [ - 115 + "85" ], "runIds": [ 649 @@ -59170,7 +59053,7 @@ "timeUnixMs": 1633422572137, "relativeTimeMs": 7703137, "teamIds": [ - 4 + "50" ], "runIds": [ 650 @@ -59188,7 +59071,7 @@ "timeUnixMs": 1633422596170, "relativeTimeMs": 7727170, "teamIds": [ - 13 + "25" ], "runIds": [ 651 @@ -59206,7 +59089,7 @@ "timeUnixMs": 1633422606061, "relativeTimeMs": 7737061, "teamIds": [ - 54 + "73" ], "runIds": [ 652 @@ -59224,7 +59107,7 @@ "timeUnixMs": 1633422610058, "relativeTimeMs": 7741058, "teamIds": [ - 4 + "50" ], "runIds": [ 650 @@ -59242,7 +59125,7 @@ "timeUnixMs": 1633422621729, "relativeTimeMs": 7752729, "teamIds": [ - 8 + "29" ], "runIds": [ 653 @@ -59260,7 +59143,7 @@ "timeUnixMs": 1633422629063, "relativeTimeMs": 7760063, "teamIds": [ - 50 + "11" ], "runIds": [ 654 @@ -59278,7 +59161,7 @@ "timeUnixMs": 1633422633419, "relativeTimeMs": 7764419, "teamIds": [ - 53 + "116" ], "runIds": [ 655 @@ -59296,7 +59179,7 @@ "timeUnixMs": 1633422636366, "relativeTimeMs": 7767366, "teamIds": [ - 88 + "26" ], "runIds": [ 657 @@ -59314,7 +59197,7 @@ "timeUnixMs": 1633422640387, "relativeTimeMs": 7771387, "teamIds": [ - 115 + "85" ], "runIds": [ 658 @@ -59332,7 +59215,7 @@ "timeUnixMs": 1633422642440, "relativeTimeMs": 7773440, "teamIds": [ - 67 + "115" ], "runIds": [ 656 @@ -59350,7 +59233,7 @@ "timeUnixMs": 1633422647495, "relativeTimeMs": 7778495, "teamIds": [ - 63 + "42" ], "runIds": [ 659 @@ -59368,7 +59251,7 @@ "timeUnixMs": 1633422650160, "relativeTimeMs": 7781160, "teamIds": [ - 7 + "65" ], "runIds": [ 660 @@ -59386,7 +59269,7 @@ "timeUnixMs": 1633422654675, "relativeTimeMs": 7785675, "teamIds": [ - 7 + "65" ], "runIds": [ 660 @@ -59404,7 +59287,7 @@ "timeUnixMs": 1633422660432, "relativeTimeMs": 7791432, "teamIds": [ - 46 + "53" ], "runIds": [ 661 @@ -59422,7 +59305,7 @@ "timeUnixMs": 1633422678283, "relativeTimeMs": 7809283, "teamIds": [ - 29 + "10" ], "runIds": [ 662 @@ -59440,7 +59323,7 @@ "timeUnixMs": 1633422693947, "relativeTimeMs": 7824947, "teamIds": [ - 82 + "118" ], "runIds": [ 663 @@ -59458,7 +59341,7 @@ "timeUnixMs": 1633422695844, "relativeTimeMs": 7826844, "teamIds": [ - 75 + "48" ], "runIds": [ 664 @@ -59476,7 +59359,7 @@ "timeUnixMs": 1633422703327, "relativeTimeMs": 7834327, "teamIds": [ - 43 + "92" ], "runIds": [ 665 @@ -59494,7 +59377,7 @@ "timeUnixMs": 1633422722766, "relativeTimeMs": 7853766, "teamIds": [ - 65 + "23" ], "runIds": [ 666 @@ -59512,7 +59395,7 @@ "timeUnixMs": 1633422741494, "relativeTimeMs": 7872494, "teamIds": [ - 83 + "20" ], "runIds": [ 667 @@ -59530,7 +59413,7 @@ "timeUnixMs": 1633422744798, "relativeTimeMs": 7875798, "teamIds": [ - 64 + "4" ], "runIds": [ 668 @@ -59548,7 +59431,7 @@ "timeUnixMs": 1633422757428, "relativeTimeMs": 7888428, "teamIds": [ - 98 + "90" ], "runIds": [ 669 @@ -59566,7 +59449,7 @@ "timeUnixMs": 1633422767784, "relativeTimeMs": 7898784, "teamIds": [ - 72 + "13" ], "runIds": [ 670 @@ -59584,7 +59467,7 @@ "timeUnixMs": 1633422771328, "relativeTimeMs": 7902328, "teamIds": [ - 12 + "56" ], "runIds": [ 671 @@ -59602,7 +59485,7 @@ "timeUnixMs": 1633422775373, "relativeTimeMs": 7906373, "teamIds": [ - 34 + "37" ], "runIds": [ 672 @@ -59620,7 +59503,7 @@ "timeUnixMs": 1633422785405, "relativeTimeMs": 7916405, "teamIds": [ - 83 + "20" ], "runIds": [ 673 @@ -59638,7 +59521,7 @@ "timeUnixMs": 1633422810765, "relativeTimeMs": 7941765, "teamIds": [ - 16 + "109" ], "runIds": [ 674 @@ -59656,7 +59539,7 @@ "timeUnixMs": 1633422814202, "relativeTimeMs": 7945202, "teamIds": [ - 69 + "3" ], "runIds": [ 675 @@ -59674,7 +59557,7 @@ "timeUnixMs": 1633422834962, "relativeTimeMs": 7965962, "teamIds": [ - 3 + "67" ], "runIds": [ 676 @@ -59692,7 +59575,7 @@ "timeUnixMs": 1633422857424, "relativeTimeMs": 7988424, "teamIds": [ - 64 + "4" ], "runIds": [ 677 @@ -59710,7 +59593,7 @@ "timeUnixMs": 1633422860075, "relativeTimeMs": 7991075, "teamIds": [ - 104 + "84" ], "runIds": [ 678 @@ -59728,7 +59611,7 @@ "timeUnixMs": 1633422861248, "relativeTimeMs": 7992248, "teamIds": [ - 41 + "22" ], "runIds": [ 681 @@ -59746,7 +59629,7 @@ "timeUnixMs": 1633422870207, "relativeTimeMs": 8001207, "teamIds": [ - 48 + "106" ], "runIds": [ 680 @@ -59764,7 +59647,7 @@ "timeUnixMs": 1633422870216, "relativeTimeMs": 8001216, "teamIds": [ - 95 + "30" ], "runIds": [ 679 @@ -59782,7 +59665,7 @@ "timeUnixMs": 1633422872697, "relativeTimeMs": 8003697, "teamIds": [ - 41 + "22" ], "runIds": [ 681 @@ -59800,7 +59683,7 @@ "timeUnixMs": 1633422881311, "relativeTimeMs": 8012311, "teamIds": [ - 13 + "25" ], "runIds": [ 682 @@ -59818,7 +59701,7 @@ "timeUnixMs": 1633422900885, "relativeTimeMs": 8031885, "teamIds": [ - 16 + "109" ], "runIds": [ 683 @@ -59836,7 +59719,7 @@ "timeUnixMs": 1633422924971, "relativeTimeMs": 8055971, "teamIds": [ - 108 + "63" ], "runIds": [ 684 @@ -59854,7 +59737,7 @@ "timeUnixMs": 1633422931327, "relativeTimeMs": 8062327, "teamIds": [ - 75 + "48" ], "runIds": [ 685 @@ -59872,7 +59755,7 @@ "timeUnixMs": 1633422940311, "relativeTimeMs": 8071311, "teamIds": [ - 63 + "42" ], "runIds": [ 686 @@ -59890,7 +59773,7 @@ "timeUnixMs": 1633422942164, "relativeTimeMs": 8073164, "teamIds": [ - 2 + "101" ], "runIds": [ 688 @@ -59908,7 +59791,7 @@ "timeUnixMs": 1633422945516, "relativeTimeMs": 8076516, "teamIds": [ - 75 + "48" ], "runIds": [ 687 @@ -59926,7 +59809,7 @@ "timeUnixMs": 1633422946695, "relativeTimeMs": 8077695, "teamIds": [ - 2 + "101" ], "runIds": [ 688 @@ -59944,7 +59827,7 @@ "timeUnixMs": 1633422958430, "relativeTimeMs": 8089430, "teamIds": [ - 36 + "80" ], "runIds": [ 689 @@ -59962,7 +59845,7 @@ "timeUnixMs": 1633422988578, "relativeTimeMs": 8119578, "teamIds": [ - 76 + "9" ], "runIds": [ 690 @@ -59980,7 +59863,7 @@ "timeUnixMs": 1633423019010, "relativeTimeMs": 8150010, "teamIds": [ - 92 + "36" ], "runIds": [ 691 @@ -59998,7 +59881,7 @@ "timeUnixMs": 1633423043827, "relativeTimeMs": 8174827, "teamIds": [ - 39 + "79" ], "runIds": [ 693 @@ -60016,7 +59899,7 @@ "timeUnixMs": 1633423046427, "relativeTimeMs": 8177427, "teamIds": [ - 24 + "28" ], "runIds": [ 692 @@ -60034,7 +59917,7 @@ "timeUnixMs": 1633423046583, "relativeTimeMs": 8177583, "teamIds": [ - 88 + "26" ], "runIds": [ 695 @@ -60052,7 +59935,7 @@ "timeUnixMs": 1633423049118, "relativeTimeMs": 8180118, "teamIds": [ - 13 + "25" ], "runIds": [ 694 @@ -60070,7 +59953,7 @@ "timeUnixMs": 1633423063288, "relativeTimeMs": 8194288, "teamIds": [ - 36 + "80" ], "runIds": [ 696 @@ -60088,7 +59971,7 @@ "timeUnixMs": 1633423070151, "relativeTimeMs": 8201151, "teamIds": [ - 16 + "109" ], "runIds": [ 697 @@ -60106,7 +59989,7 @@ "timeUnixMs": 1633423090135, "relativeTimeMs": 8221135, "teamIds": [ - 64 + "4" ], "runIds": [ 698 @@ -60124,7 +60007,7 @@ "timeUnixMs": 1633423110770, "relativeTimeMs": 8241770, "teamIds": [ - 88 + "26" ], "runIds": [ 699 @@ -60142,7 +60025,7 @@ "timeUnixMs": 1633423116414, "relativeTimeMs": 8247414, "teamIds": [ - 61 + "55" ], "runIds": [ 700 @@ -60160,7 +60043,7 @@ "timeUnixMs": 1633423126916, "relativeTimeMs": 8257916, "teamIds": [ - 57 + "51" ], "runIds": [ 701 @@ -60178,7 +60061,7 @@ "timeUnixMs": 1633423129134, "relativeTimeMs": 8260134, "teamIds": [ - 36 + "80" ], "runIds": [ 702 @@ -60196,7 +60079,7 @@ "timeUnixMs": 1633423150058, "relativeTimeMs": 8281058, "teamIds": [ - 34 + "37" ], "runIds": [ 704 @@ -60214,7 +60097,7 @@ "timeUnixMs": 1633423160562, "relativeTimeMs": 8291562, "teamIds": [ - 16 + "109" ], "runIds": [ 703 @@ -60232,7 +60115,7 @@ "timeUnixMs": 1633423164101, "relativeTimeMs": 8295101, "teamIds": [ - 30 + "7" ], "runIds": [ 705 @@ -60250,7 +60133,7 @@ "timeUnixMs": 1633423170185, "relativeTimeMs": 8301185, "teamIds": [ - 38 + "113" ], "runIds": [ 706 @@ -60268,7 +60151,7 @@ "timeUnixMs": 1633423172860, "relativeTimeMs": 8303860, "teamIds": [ - 36 + "80" ], "runIds": [ 707 @@ -60286,7 +60169,7 @@ "timeUnixMs": 1633423175596, "relativeTimeMs": 8306596, "teamIds": [ - 31 + "33" ], "runIds": [ 709 @@ -60304,7 +60187,7 @@ "timeUnixMs": 1633423176609, "relativeTimeMs": 8307609, "teamIds": [ - 56 + "111" ], "runIds": [ 708 @@ -60322,7 +60205,7 @@ "timeUnixMs": 1633423194838, "relativeTimeMs": 8325838, "teamIds": [ - 47 + "99" ], "runIds": [ 710 @@ -60340,7 +60223,7 @@ "timeUnixMs": 1633423206098, "relativeTimeMs": 8337098, "teamIds": [ - 64 + "4" ], "runIds": [ 712 @@ -60358,7 +60241,7 @@ "timeUnixMs": 1633423213104, "relativeTimeMs": 8344104, "teamIds": [ - 108 + "63" ], "runIds": [ 711 @@ -60376,7 +60259,7 @@ "timeUnixMs": 1633423216526, "relativeTimeMs": 8347526, "teamIds": [ - 8 + "29" ], "runIds": [ 713 @@ -60394,7 +60277,7 @@ "timeUnixMs": 1633423226275, "relativeTimeMs": 8357275, "teamIds": [ - 25 + "94" ], "runIds": [ 714 @@ -60412,7 +60295,7 @@ "timeUnixMs": 1633423232833, "relativeTimeMs": 8363833, "teamIds": [ - 50 + "11" ], "runIds": [ 715 @@ -60430,7 +60313,7 @@ "timeUnixMs": 1633423258501, "relativeTimeMs": 8389501, "teamIds": [ - 53 + "116" ], "runIds": [ 717 @@ -60448,7 +60331,7 @@ "timeUnixMs": 1633423260150, "relativeTimeMs": 8391150, "teamIds": [ - 18 + "68" ], "runIds": [ 719 @@ -60466,7 +60349,7 @@ "timeUnixMs": 1633423260734, "relativeTimeMs": 8391734, "teamIds": [ - 43 + "92" ], "runIds": [ 718 @@ -60484,7 +60367,7 @@ "timeUnixMs": 1633423264515, "relativeTimeMs": 8395515, "teamIds": [ - 102 + "16" ], "runIds": [ 720 @@ -60502,7 +60385,7 @@ "timeUnixMs": 1633423268144, "relativeTimeMs": 8399144, "teamIds": [ - 87 + "66" ], "runIds": [ 716 @@ -60520,7 +60403,7 @@ "timeUnixMs": 1633423276933, "relativeTimeMs": 8407933, "teamIds": [ - 16 + "109" ], "runIds": [ 721 @@ -60538,7 +60421,7 @@ "timeUnixMs": 1633423281226, "relativeTimeMs": 8412226, "teamIds": [ - 61 + "55" ], "runIds": [ 722 @@ -60556,7 +60439,7 @@ "timeUnixMs": 1633423282565, "relativeTimeMs": 8413565, "teamIds": [ - 83 + "20" ], "runIds": [ 723 @@ -60574,7 +60457,7 @@ "timeUnixMs": 1633423294560, "relativeTimeMs": 8425560, "teamIds": [ - 65 + "23" ], "runIds": [ 724 @@ -60592,7 +60475,7 @@ "timeUnixMs": 1633423294990, "relativeTimeMs": 8425990, "teamIds": [ - 96 + "1" ], "runIds": [ 725 @@ -60610,7 +60493,7 @@ "timeUnixMs": 1633423311609, "relativeTimeMs": 8442609, "teamIds": [ - 7 + "65" ], "runIds": [ 727 @@ -60628,7 +60511,7 @@ "timeUnixMs": 1633423321178, "relativeTimeMs": 8452178, "teamIds": [ - 7 + "65" ], "runIds": [ 727 @@ -60646,7 +60529,7 @@ "timeUnixMs": 1633423322068, "relativeTimeMs": 8453068, "teamIds": [ - 30 + "7" ], "runIds": [ 726 @@ -60664,7 +60547,7 @@ "timeUnixMs": 1633423328074, "relativeTimeMs": 8459074, "teamIds": [ - 89 + "21" ], "runIds": [ 728 @@ -60682,7 +60565,7 @@ "timeUnixMs": 1633423334708, "relativeTimeMs": 8465708, "teamIds": [ - 111 + "41" ], "runIds": [ 729 @@ -60700,7 +60583,7 @@ "timeUnixMs": 1633423342204, "relativeTimeMs": 8473204, "teamIds": [ - 48 + "106" ], "runIds": [ 730 @@ -60718,7 +60601,7 @@ "timeUnixMs": 1633423350518, "relativeTimeMs": 8481518, "teamIds": [ - 37 + "27" ], "runIds": [ 731 @@ -60736,7 +60619,7 @@ "timeUnixMs": 1633423369871, "relativeTimeMs": 8500871, "teamIds": [ - 94 + "93" ], "runIds": [ 733 @@ -60754,7 +60637,7 @@ "timeUnixMs": 1633423372487, "relativeTimeMs": 8503487, "teamIds": [ - 21 + "104" ], "runIds": [ 732 @@ -60772,7 +60655,7 @@ "timeUnixMs": 1633423395329, "relativeTimeMs": 8526329, "teamIds": [ - 96 + "1" ], "runIds": [ 734 @@ -60790,7 +60673,7 @@ "timeUnixMs": 1633423401542, "relativeTimeMs": 8532542, "teamIds": [ - 74 + "78" ], "runIds": [ 735 @@ -60808,7 +60691,7 @@ "timeUnixMs": 1633423410138, "relativeTimeMs": 8541138, "teamIds": [ - 10 + "47" ], "runIds": [ 736 @@ -60826,7 +60709,7 @@ "timeUnixMs": 1633423414671, "relativeTimeMs": 8545671, "teamIds": [ - 61 + "55" ], "runIds": [ 737 @@ -60844,7 +60727,7 @@ "timeUnixMs": 1633423426578, "relativeTimeMs": 8557578, "teamIds": [ - 31 + "33" ], "runIds": [ 738 @@ -60862,7 +60745,7 @@ "timeUnixMs": 1633423441817, "relativeTimeMs": 8572817, "teamIds": [ - 59 + "71" ], "runIds": [ 739 @@ -60880,7 +60763,7 @@ "timeUnixMs": 1633423441969, "relativeTimeMs": 8572969, "teamIds": [ - 17 + "59" ], "runIds": [ 740 @@ -60898,7 +60781,7 @@ "timeUnixMs": 1633423445702, "relativeTimeMs": 8576702, "teamIds": [ - 17 + "59" ], "runIds": [ 740 @@ -60916,7 +60799,7 @@ "timeUnixMs": 1633423450539, "relativeTimeMs": 8581539, "teamIds": [ - 64 + "4" ], "runIds": [ 741 @@ -60934,7 +60817,7 @@ "timeUnixMs": 1633423461296, "relativeTimeMs": 8592296, "teamIds": [ - 28 + "112" ], "runIds": [ 742 @@ -60952,7 +60835,7 @@ "timeUnixMs": 1633423462472, "relativeTimeMs": 8593472, "teamIds": [ - 88 + "26" ], "runIds": [ 744 @@ -60970,7 +60853,7 @@ "timeUnixMs": 1633423469819, "relativeTimeMs": 8600819, "teamIds": [ - 16 + "109" ], "runIds": [ 743 @@ -60988,7 +60871,7 @@ "timeUnixMs": 1633423485642, "relativeTimeMs": 8616642, "teamIds": [ - 7 + "65" ], "runIds": [ 745 @@ -61006,7 +60889,7 @@ "timeUnixMs": 1633423491464, "relativeTimeMs": 8622464, "teamIds": [ - 42 + "12" ], "runIds": [ 747 @@ -61024,7 +60907,7 @@ "timeUnixMs": 1633423493168, "relativeTimeMs": 8624168, "teamIds": [ - 7 + "65" ], "runIds": [ 745 @@ -61042,7 +60925,7 @@ "timeUnixMs": 1633423499724, "relativeTimeMs": 8630724, "teamIds": [ - 16 + "109" ], "runIds": [ 746 @@ -61060,7 +60943,7 @@ "timeUnixMs": 1633423510545, "relativeTimeMs": 8641545, "teamIds": [ - 86 + "38" ], "runIds": [ 748 @@ -61078,7 +60961,7 @@ "timeUnixMs": 1633423517058, "relativeTimeMs": 8648058, "teamIds": [ - 17 + "59" ], "runIds": [ 750 @@ -61096,7 +60979,7 @@ "timeUnixMs": 1633423524786, "relativeTimeMs": 8655786, "teamIds": [ - 17 + "59" ], "runIds": [ 750 @@ -61114,7 +60997,7 @@ "timeUnixMs": 1633423527418, "relativeTimeMs": 8658418, "teamIds": [ - 21 + "104" ], "runIds": [ 749 @@ -61132,7 +61015,7 @@ "timeUnixMs": 1633423528486, "relativeTimeMs": 8659486, "teamIds": [ - 42 + "12" ], "runIds": [ 751 @@ -61150,7 +61033,7 @@ "timeUnixMs": 1633423531047, "relativeTimeMs": 8662047, "teamIds": [ - 94 + "93" ], "runIds": [ 752 @@ -61168,7 +61051,7 @@ "timeUnixMs": 1633423535709, "relativeTimeMs": 8666709, "teamIds": [ - 105 + "58" ], "runIds": [ 753 @@ -61186,7 +61069,7 @@ "timeUnixMs": 1633423547030, "relativeTimeMs": 8678030, "teamIds": [ - 89 + "21" ], "runIds": [ 754 @@ -61204,7 +61087,7 @@ "timeUnixMs": 1633423547378, "relativeTimeMs": 8678378, "teamIds": [ - 67 + "115" ], "runIds": [ 756 @@ -61222,7 +61105,7 @@ "timeUnixMs": 1633423552107, "relativeTimeMs": 8683107, "teamIds": [ - 67 + "115" ], "runIds": [ 755 @@ -61240,7 +61123,7 @@ "timeUnixMs": 1633423558990, "relativeTimeMs": 8689990, "teamIds": [ - 52 + "74" ], "runIds": [ 758 @@ -61258,7 +61141,7 @@ "timeUnixMs": 1633423562936, "relativeTimeMs": 8693936, "teamIds": [ - 23 + "108" ], "runIds": [ 759 @@ -61276,7 +61159,7 @@ "timeUnixMs": 1633423563911, "relativeTimeMs": 8694911, "teamIds": [ - 30 + "7" ], "runIds": [ 757 @@ -61294,7 +61177,7 @@ "timeUnixMs": 1633423570783, "relativeTimeMs": 8701783, "teamIds": [ - 54 + "73" ], "runIds": [ 760 @@ -61312,7 +61195,7 @@ "timeUnixMs": 1633423592504, "relativeTimeMs": 8723504, "teamIds": [ - 34 + "37" ], "runIds": [ 761 @@ -61330,7 +61213,7 @@ "timeUnixMs": 1633423594207, "relativeTimeMs": 8725207, "teamIds": [ - 69 + "3" ], "runIds": [ 762 @@ -61348,7 +61231,7 @@ "timeUnixMs": 1633423597782, "relativeTimeMs": 8728782, "teamIds": [ - 63 + "42" ], "runIds": [ 763 @@ -61366,7 +61249,7 @@ "timeUnixMs": 1633423602963, "relativeTimeMs": 8733963, "teamIds": [ - 56 + "111" ], "runIds": [ 764 @@ -61384,7 +61267,7 @@ "timeUnixMs": 1633423604980, "relativeTimeMs": 8735980, "teamIds": [ - 38 + "113" ], "runIds": [ 765 @@ -61402,7 +61285,7 @@ "timeUnixMs": 1633423613115, "relativeTimeMs": 8744115, "teamIds": [ - 14 + "60" ], "runIds": [ 766 @@ -61420,7 +61303,7 @@ "timeUnixMs": 1633423615805, "relativeTimeMs": 8746805, "teamIds": [ - 85 + "61" ], "runIds": [ 767 @@ -61438,7 +61321,7 @@ "timeUnixMs": 1633423623702, "relativeTimeMs": 8754702, "teamIds": [ - 102 + "16" ], "runIds": [ 768 @@ -61456,7 +61339,7 @@ "timeUnixMs": 1633423651426, "relativeTimeMs": 8782426, "teamIds": [ - 74 + "78" ], "runIds": [ 769 @@ -61474,7 +61357,7 @@ "timeUnixMs": 1633423666897, "relativeTimeMs": 8797897, "teamIds": [ - 106 + "110" ], "runIds": [ 771 @@ -61492,7 +61375,7 @@ "timeUnixMs": 1633423669993, "relativeTimeMs": 8800993, "teamIds": [ - 85 + "61" ], "runIds": [ 770 @@ -61510,7 +61393,7 @@ "timeUnixMs": 1633423688415, "relativeTimeMs": 8819415, "teamIds": [ - 48 + "106" ], "runIds": [ 772 @@ -61528,7 +61411,7 @@ "timeUnixMs": 1633423689795, "relativeTimeMs": 8820795, "teamIds": [ - 2 + "101" ], "runIds": [ 775 @@ -61546,7 +61429,7 @@ "timeUnixMs": 1633423690469, "relativeTimeMs": 8821469, "teamIds": [ - 79 + "62" ], "runIds": [ 773 @@ -61564,7 +61447,7 @@ "timeUnixMs": 1633423691046, "relativeTimeMs": 8822046, "teamIds": [ - 60 + "31" ], "runIds": [ 774 @@ -61582,7 +61465,7 @@ "timeUnixMs": 1633423697048, "relativeTimeMs": 8828048, "teamIds": [ - 2 + "101" ], "runIds": [ 775 @@ -61600,7 +61483,7 @@ "timeUnixMs": 1633423708102, "relativeTimeMs": 8839102, "teamIds": [ - 48 + "106" ], "runIds": [ 776 @@ -61618,7 +61501,7 @@ "timeUnixMs": 1633423714264, "relativeTimeMs": 8845264, "teamIds": [ - 21 + "104" ], "runIds": [ 777 @@ -61636,7 +61519,7 @@ "timeUnixMs": 1633423741672, "relativeTimeMs": 8872672, "teamIds": [ - 41 + "22" ], "runIds": [ 778 @@ -61654,7 +61537,7 @@ "timeUnixMs": 1633423746038, "relativeTimeMs": 8877038, "teamIds": [ - 41 + "22" ], "runIds": [ 778 @@ -61672,7 +61555,7 @@ "timeUnixMs": 1633423749619, "relativeTimeMs": 8880619, "teamIds": [ - 36 + "80" ], "runIds": [ 779 @@ -61690,7 +61573,7 @@ "timeUnixMs": 1633423752888, "relativeTimeMs": 8883888, "teamIds": [ - 10 + "47" ], "runIds": [ 782 @@ -61708,7 +61591,7 @@ "timeUnixMs": 1633423755095, "relativeTimeMs": 8886095, "teamIds": [ - 75 + "48" ], "runIds": [ 780 @@ -61726,7 +61609,7 @@ "timeUnixMs": 1633423761944, "relativeTimeMs": 8892944, "teamIds": [ - 10 + "47" ], "runIds": [ 782 @@ -61744,7 +61627,7 @@ "timeUnixMs": 1633423766876, "relativeTimeMs": 8897876, "teamIds": [ - 22 + "103" ], "runIds": [ 783 @@ -61762,7 +61645,7 @@ "timeUnixMs": 1633423771264, "relativeTimeMs": 8902264, "teamIds": [ - 53 + "116" ], "runIds": [ 781 @@ -61780,7 +61663,7 @@ "timeUnixMs": 1633423771461, "relativeTimeMs": 8902461, "teamIds": [ - 22 + "103" ], "runIds": [ 783 @@ -61798,7 +61681,7 @@ "timeUnixMs": 1633423779494, "relativeTimeMs": 8910494, "teamIds": [ - 86 + "38" ], "runIds": [ 785 @@ -61816,7 +61699,7 @@ "timeUnixMs": 1633423779967, "relativeTimeMs": 8910967, "teamIds": [ - 115 + "85" ], "runIds": [ 784 @@ -61834,7 +61717,7 @@ "timeUnixMs": 1633423806880, "relativeTimeMs": 8937880, "teamIds": [ - 26 + "64" ], "runIds": [ 786 @@ -61852,7 +61735,7 @@ "timeUnixMs": 1633423807752, "relativeTimeMs": 8938752, "teamIds": [ - 71 + "105" ], "runIds": [ 787 @@ -61870,7 +61753,7 @@ "timeUnixMs": 1633423843237, "relativeTimeMs": 8974237, "teamIds": [ - 22 + "103" ], "runIds": [ 789 @@ -61888,7 +61771,7 @@ "timeUnixMs": 1633423847208, "relativeTimeMs": 8978208, "teamIds": [ - 22 + "103" ], "runIds": [ 789 @@ -61906,7 +61789,7 @@ "timeUnixMs": 1633423880106, "relativeTimeMs": 9011106, "teamIds": [ - 29 + "10" ], "runIds": [ 788 @@ -61924,7 +61807,7 @@ "timeUnixMs": 1633423894818, "relativeTimeMs": 9025818, "teamIds": [ - 30 + "7" ], "runIds": [ 790 @@ -61942,7 +61825,7 @@ "timeUnixMs": 1633423901618, "relativeTimeMs": 9032618, "teamIds": [ - 3 + "67" ], "runIds": [ 791 @@ -61960,7 +61843,7 @@ "timeUnixMs": 1633423947450, "relativeTimeMs": 9078450, "teamIds": [ - 43 + "92" ], "runIds": [ 792 @@ -61978,7 +61861,7 @@ "timeUnixMs": 1633423974704, "relativeTimeMs": 9105704, "teamIds": [ - 35 + "32" ], "runIds": [ 793 @@ -61996,7 +61879,7 @@ "timeUnixMs": 1633423998029, "relativeTimeMs": 9129029, "teamIds": [ - 21 + "104" ], "runIds": [ 794 @@ -62014,7 +61897,7 @@ "timeUnixMs": 1633424023302, "relativeTimeMs": 9154302, "teamIds": [ - 60 + "31" ], "runIds": [ 795 @@ -62032,7 +61915,7 @@ "timeUnixMs": 1633424031564, "relativeTimeMs": 9162564, "teamIds": [ - 17 + "59" ], "runIds": [ 796 @@ -62050,7 +61933,7 @@ "timeUnixMs": 1633424037336, "relativeTimeMs": 9168336, "teamIds": [ - 17 + "59" ], "runIds": [ 796 @@ -62068,7 +61951,7 @@ "timeUnixMs": 1633424041406, "relativeTimeMs": 9172406, "teamIds": [ - 113 + "82" ], "runIds": [ 797 @@ -62086,7 +61969,7 @@ "timeUnixMs": 1633424052544, "relativeTimeMs": 9183544, "teamIds": [ - 29 + "10" ], "runIds": [ 798 @@ -62104,7 +61987,7 @@ "timeUnixMs": 1633424063231, "relativeTimeMs": 9194231, "teamIds": [ - 86 + "38" ], "runIds": [ 799 @@ -62122,7 +62005,7 @@ "timeUnixMs": 1633424070455, "relativeTimeMs": 9201455, "teamIds": [ - 12 + "56" ], "runIds": [ 800 @@ -62140,7 +62023,7 @@ "timeUnixMs": 1633424073110, "relativeTimeMs": 9204110, "teamIds": [ - 105 + "58" ], "runIds": [ 801 @@ -62158,7 +62041,7 @@ "timeUnixMs": 1633424079909, "relativeTimeMs": 9210909, "teamIds": [ - 21 + "104" ], "runIds": [ 802 @@ -62176,7 +62059,7 @@ "timeUnixMs": 1633424080383, "relativeTimeMs": 9211383, "teamIds": [ - 64 + "4" ], "runIds": [ 803 @@ -62194,7 +62077,7 @@ "timeUnixMs": 1633424082024, "relativeTimeMs": 9213024, "teamIds": [ - 41 + "22" ], "runIds": [ 804 @@ -62212,7 +62095,7 @@ "timeUnixMs": 1633424083154, "relativeTimeMs": 9214154, "teamIds": [ - 1 + "102" ], "runIds": [ 805 @@ -62230,7 +62113,7 @@ "timeUnixMs": 1633424085501, "relativeTimeMs": 9216501, "teamIds": [ - 41 + "22" ], "runIds": [ 804 @@ -62248,7 +62131,7 @@ "timeUnixMs": 1633424088266, "relativeTimeMs": 9219266, "teamIds": [ - 1 + "102" ], "runIds": [ 805 @@ -62266,7 +62149,7 @@ "timeUnixMs": 1633424110743, "relativeTimeMs": 9241743, "teamIds": [ - 4 + "50" ], "runIds": [ 806 @@ -62284,7 +62167,7 @@ "timeUnixMs": 1633424115904, "relativeTimeMs": 9246904, "teamIds": [ - 4 + "50" ], "runIds": [ 806 @@ -62302,7 +62185,7 @@ "timeUnixMs": 1633424125032, "relativeTimeMs": 9256032, "teamIds": [ - 3 + "67" ], "runIds": [ 807 @@ -62320,7 +62203,7 @@ "timeUnixMs": 1633424157338, "relativeTimeMs": 9288338, "teamIds": [ - 23 + "108" ], "runIds": [ 808 @@ -62338,7 +62221,7 @@ "timeUnixMs": 1633424170531, "relativeTimeMs": 9301531, "teamIds": [ - 60 + "31" ], "runIds": [ 809 @@ -62356,7 +62239,7 @@ "timeUnixMs": 1633424181759, "relativeTimeMs": 9312759, "teamIds": [ - 85 + "61" ], "runIds": [ 810 @@ -62374,7 +62257,7 @@ "timeUnixMs": 1633424202619, "relativeTimeMs": 9333619, "teamIds": [ - 47 + "99" ], "runIds": [ 811 @@ -62392,7 +62275,7 @@ "timeUnixMs": 1633424203324, "relativeTimeMs": 9334324, "teamIds": [ - 49 + "98" ], "runIds": [ 812 @@ -62410,7 +62293,7 @@ "timeUnixMs": 1633424231275, "relativeTimeMs": 9362275, "teamIds": [ - 41 + "22" ], "runIds": [ 813 @@ -62428,7 +62311,7 @@ "timeUnixMs": 1633424235435, "relativeTimeMs": 9366435, "teamIds": [ - 41 + "22" ], "runIds": [ 813 @@ -62446,7 +62329,7 @@ "timeUnixMs": 1633424243724, "relativeTimeMs": 9374724, "teamIds": [ - 47 + "99" ], "runIds": [ 814 @@ -62464,7 +62347,7 @@ "timeUnixMs": 1633424254551, "relativeTimeMs": 9385551, "teamIds": [ - 14 + "60" ], "runIds": [ 816 @@ -62482,7 +62365,7 @@ "timeUnixMs": 1633424256201, "relativeTimeMs": 9387201, "teamIds": [ - 88 + "26" ], "runIds": [ 815 @@ -62500,7 +62383,7 @@ "timeUnixMs": 1633424262936, "relativeTimeMs": 9393936, "teamIds": [ - 45 + "34" ], "runIds": [ 817 @@ -62518,7 +62401,7 @@ "timeUnixMs": 1633424268565, "relativeTimeMs": 9399565, "teamIds": [ - 55 + "43" ], "runIds": [ 818 @@ -62536,7 +62419,7 @@ "timeUnixMs": 1633424270256, "relativeTimeMs": 9401256, "teamIds": [ - 81 + "86" ], "runIds": [ 819 @@ -62554,7 +62437,7 @@ "timeUnixMs": 1633424270969, "relativeTimeMs": 9401969, "teamIds": [ - 22 + "103" ], "runIds": [ 821 @@ -62572,7 +62455,7 @@ "timeUnixMs": 1633424273321, "relativeTimeMs": 9404321, "teamIds": [ - 5 + "70" ], "runIds": [ 820 @@ -62590,7 +62473,7 @@ "timeUnixMs": 1633424276202, "relativeTimeMs": 9407202, "teamIds": [ - 22 + "103" ], "runIds": [ 821 @@ -62608,7 +62491,7 @@ "timeUnixMs": 1633424287602, "relativeTimeMs": 9418602, "teamIds": [ - 37 + "27" ], "runIds": [ 822 @@ -62626,7 +62509,7 @@ "timeUnixMs": 1633424304808, "relativeTimeMs": 9435808, "teamIds": [ - 84 + "40" ], "runIds": [ 823 @@ -62644,7 +62527,7 @@ "timeUnixMs": 1633424311411, "relativeTimeMs": 9442411, "teamIds": [ - 14 + "60" ], "runIds": [ 824 @@ -62662,7 +62545,7 @@ "timeUnixMs": 1633424325856, "relativeTimeMs": 9456856, "teamIds": [ - 7 + "65" ], "runIds": [ 825 @@ -62680,7 +62563,7 @@ "timeUnixMs": 1633424330818, "relativeTimeMs": 9461818, "teamIds": [ - 7 + "65" ], "runIds": [ 825 @@ -62698,7 +62581,7 @@ "timeUnixMs": 1633424333379, "relativeTimeMs": 9464379, "teamIds": [ - 12 + "56" ], "runIds": [ 826 @@ -62716,7 +62599,7 @@ "timeUnixMs": 1633424336679, "relativeTimeMs": 9467679, "teamIds": [ - 18 + "68" ], "runIds": [ 827 @@ -62734,7 +62617,7 @@ "timeUnixMs": 1633424340576, "relativeTimeMs": 9471576, "teamIds": [ - 106 + "110" ], "runIds": [ 828 @@ -62752,7 +62635,7 @@ "timeUnixMs": 1633424343259, "relativeTimeMs": 9474259, "teamIds": [ - 97 + "97" ], "runIds": [ 829 @@ -62770,7 +62653,7 @@ "timeUnixMs": 1633424345174, "relativeTimeMs": 9476174, "teamIds": [ - 91 + "54" ], "runIds": [ 830 @@ -62788,7 +62671,7 @@ "timeUnixMs": 1633424348373, "relativeTimeMs": 9479373, "teamIds": [ - 36 + "80" ], "runIds": [ 831 @@ -62806,7 +62689,7 @@ "timeUnixMs": 1633424354527, "relativeTimeMs": 9485527, "teamIds": [ - 5 + "70" ], "runIds": [ 832 @@ -62824,7 +62707,7 @@ "timeUnixMs": 1633424354655, "relativeTimeMs": 9485655, "teamIds": [ - 74 + "78" ], "runIds": [ 833 @@ -62842,7 +62725,7 @@ "timeUnixMs": 1633424361230, "relativeTimeMs": 9492230, "teamIds": [ - 68 + "107" ], "runIds": [ 835 @@ -62860,7 +62743,7 @@ "timeUnixMs": 1633424364543, "relativeTimeMs": 9495543, "teamIds": [ - 34 + "37" ], "runIds": [ 834 @@ -62878,7 +62761,7 @@ "timeUnixMs": 1633424370468, "relativeTimeMs": 9501468, "teamIds": [ - 29 + "10" ], "runIds": [ 836 @@ -62896,7 +62779,7 @@ "timeUnixMs": 1633424378269, "relativeTimeMs": 9509269, "teamIds": [ - 29 + "10" ], "runIds": [ 836 @@ -62914,7 +62797,7 @@ "timeUnixMs": 1633424384578, "relativeTimeMs": 9515578, "teamIds": [ - 84 + "40" ], "runIds": [ 837 @@ -62932,7 +62815,7 @@ "timeUnixMs": 1633424384964, "relativeTimeMs": 9515964, "teamIds": [ - 78 + "46" ], "runIds": [ 839 @@ -62950,7 +62833,7 @@ "timeUnixMs": 1633424385448, "relativeTimeMs": 9516448, "teamIds": [ - 91 + "54" ], "runIds": [ 838 @@ -62968,7 +62851,7 @@ "timeUnixMs": 1633424395580, "relativeTimeMs": 9526580, "teamIds": [ - 32 + "45" ], "runIds": [ 840 @@ -62986,7 +62869,7 @@ "timeUnixMs": 1633424409112, "relativeTimeMs": 9540112, "teamIds": [ - 81 + "86" ], "runIds": [ 841 @@ -63004,7 +62887,7 @@ "timeUnixMs": 1633424412344, "relativeTimeMs": 9543344, "teamIds": [ - 26 + "64" ], "runIds": [ 842 @@ -63022,7 +62905,7 @@ "timeUnixMs": 1633424426324, "relativeTimeMs": 9557324, "teamIds": [ - 15 + "6" ], "runIds": [ 844 @@ -63040,7 +62923,7 @@ "timeUnixMs": 1633424426474, "relativeTimeMs": 9557474, "teamIds": [ - 35 + "32" ], "runIds": [ 843 @@ -63058,7 +62941,7 @@ "timeUnixMs": 1633424436970, "relativeTimeMs": 9567970, "teamIds": [ - 104 + "84" ], "runIds": [ 845 @@ -63076,7 +62959,7 @@ "timeUnixMs": 1633424443182, "relativeTimeMs": 9574182, "teamIds": [ - 21 + "104" ], "runIds": [ 847 @@ -63094,7 +62977,7 @@ "timeUnixMs": 1633424444361, "relativeTimeMs": 9575361, "teamIds": [ - 2 + "101" ], "runIds": [ 848 @@ -63112,7 +62995,7 @@ "timeUnixMs": 1633424445150, "relativeTimeMs": 9576150, "teamIds": [ - 3 + "67" ], "runIds": [ 846 @@ -63130,7 +63013,7 @@ "timeUnixMs": 1633424449147, "relativeTimeMs": 9580147, "teamIds": [ - 63 + "42" ], "runIds": [ 849 @@ -63148,7 +63031,7 @@ "timeUnixMs": 1633424453359, "relativeTimeMs": 9584359, "teamIds": [ - 2 + "101" ], "runIds": [ 848 @@ -63166,7 +63049,7 @@ "timeUnixMs": 1633424456108, "relativeTimeMs": 9587108, "teamIds": [ - 68 + "107" ], "runIds": [ 851 @@ -63184,7 +63067,7 @@ "timeUnixMs": 1633424457337, "relativeTimeMs": 9588337, "teamIds": [ - 66 + "117" ], "runIds": [ 850 @@ -63202,7 +63085,7 @@ "timeUnixMs": 1633424464974, "relativeTimeMs": 9595974, "teamIds": [ - 20 + "95" ], "runIds": [ 852 @@ -63220,7 +63103,7 @@ "timeUnixMs": 1633424486417, "relativeTimeMs": 9617417, "teamIds": [ - 21 + "104" ], "runIds": [ 847 @@ -63238,7 +63121,7 @@ "timeUnixMs": 1633424488374, "relativeTimeMs": 9619374, "teamIds": [ - 32 + "45" ], "runIds": [ 853 @@ -63256,7 +63139,7 @@ "timeUnixMs": 1633424504621, "relativeTimeMs": 9635621, "teamIds": [ - 91 + "54" ], "runIds": [ 854 @@ -63274,7 +63157,7 @@ "timeUnixMs": 1633424507763, "relativeTimeMs": 9638763, "teamIds": [ - 22 + "103" ], "runIds": [ 856 @@ -63292,7 +63175,7 @@ "timeUnixMs": 1633424511219, "relativeTimeMs": 9642219, "teamIds": [ - 25 + "94" ], "runIds": [ 855 @@ -63310,7 +63193,7 @@ "timeUnixMs": 1633424515215, "relativeTimeMs": 9646215, "teamIds": [ - 22 + "103" ], "runIds": [ 856 @@ -63328,7 +63211,7 @@ "timeUnixMs": 1633424548545, "relativeTimeMs": 9679545, "teamIds": [ - 88 + "26" ], "runIds": [ 857 @@ -63346,7 +63229,7 @@ "timeUnixMs": 1633424551687, "relativeTimeMs": 9682687, "teamIds": [ - 74 + "78" ], "runIds": [ 858 @@ -63364,7 +63247,7 @@ "timeUnixMs": 1633424555317, "relativeTimeMs": 9686317, "teamIds": [ - 44 + "72" ], "runIds": [ 859 @@ -63382,7 +63265,7 @@ "timeUnixMs": 1633424557839, "relativeTimeMs": 9688839, "teamIds": [ - 60 + "31" ], "runIds": [ 861 @@ -63400,7 +63283,7 @@ "timeUnixMs": 1633424564907, "relativeTimeMs": 9695907, "teamIds": [ - 96 + "1" ], "runIds": [ 860 @@ -63418,7 +63301,7 @@ "timeUnixMs": 1633424579868, "relativeTimeMs": 9710868, "teamIds": [ - 18 + "68" ], "runIds": [ 862 @@ -63436,7 +63319,7 @@ "timeUnixMs": 1633424584815, "relativeTimeMs": 9715815, "teamIds": [ - 3 + "67" ], "runIds": [ 863 @@ -63454,7 +63337,7 @@ "timeUnixMs": 1633424589278, "relativeTimeMs": 9720278, "teamIds": [ - 45 + "34" ], "runIds": [ 864 @@ -63472,7 +63355,7 @@ "timeUnixMs": 1633424616885, "relativeTimeMs": 9747885, "teamIds": [ - 44 + "72" ], "runIds": [ 865 @@ -63490,7 +63373,7 @@ "timeUnixMs": 1633424651103, "relativeTimeMs": 9782103, "teamIds": [ - 78 + "46" ], "runIds": [ 867 @@ -63508,7 +63391,7 @@ "timeUnixMs": 1633424652483, "relativeTimeMs": 9783483, "teamIds": [ - 36 + "80" ], "runIds": [ 868 @@ -63526,7 +63409,7 @@ "timeUnixMs": 1633424652971, "relativeTimeMs": 9783971, "teamIds": [ - 23 + "108" ], "runIds": [ 866 @@ -63544,7 +63427,7 @@ "timeUnixMs": 1633424670561, "relativeTimeMs": 9801561, "teamIds": [ - 56 + "111" ], "runIds": [ 869 @@ -63562,7 +63445,7 @@ "timeUnixMs": 1633424704391, "relativeTimeMs": 9835391, "teamIds": [ - 14 + "60" ], "runIds": [ 870 @@ -63580,7 +63463,7 @@ "timeUnixMs": 1633424708443, "relativeTimeMs": 9839443, "teamIds": [ - 26 + "64" ], "runIds": [ 871 @@ -63598,7 +63481,7 @@ "timeUnixMs": 1633424755009, "relativeTimeMs": 9886009, "teamIds": [ - 68 + "107" ], "runIds": [ 872 @@ -63616,7 +63499,7 @@ "timeUnixMs": 1633424756044, "relativeTimeMs": 9887044, "teamIds": [ - 9 + "114" ], "runIds": [ 873 @@ -63634,7 +63517,7 @@ "timeUnixMs": 1633424760032, "relativeTimeMs": 9891032, "teamIds": [ - 9 + "114" ], "runIds": [ 873 @@ -63652,7 +63535,7 @@ "timeUnixMs": 1633424794973, "relativeTimeMs": 9925973, "teamIds": [ - 3 + "67" ], "runIds": [ 875 @@ -63670,7 +63553,7 @@ "timeUnixMs": 1633424797124, "relativeTimeMs": 9928124, "teamIds": [ - 16 + "109" ], "runIds": [ 874 @@ -63688,7 +63571,7 @@ "timeUnixMs": 1633424817668, "relativeTimeMs": 9948668, "teamIds": [ - 91 + "54" ], "runIds": [ 876 @@ -63706,7 +63589,7 @@ "timeUnixMs": 1633424833277, "relativeTimeMs": 9964277, "teamIds": [ - 16 + "109" ], "runIds": [ 877 @@ -63724,7 +63607,7 @@ "timeUnixMs": 1633424846798, "relativeTimeMs": 9977798, "teamIds": [ - 91 + "54" ], "runIds": [ 878 @@ -63742,7 +63625,7 @@ "timeUnixMs": 1633424855959, "relativeTimeMs": 9986959, "teamIds": [ - 43 + "92" ], "runIds": [ 879 @@ -63760,7 +63643,7 @@ "timeUnixMs": 1633424862226, "relativeTimeMs": 9993226, "teamIds": [ - 86 + "38" ], "runIds": [ 880 @@ -63778,7 +63661,7 @@ "timeUnixMs": 1633424864966, "relativeTimeMs": 9995966, "teamIds": [ - 38 + "113" ], "runIds": [ 881 @@ -63796,7 +63679,7 @@ "timeUnixMs": 1633424886048, "relativeTimeMs": 10017048, "teamIds": [ - 91 + "54" ], "runIds": [ 883 @@ -63814,7 +63697,7 @@ "timeUnixMs": 1633424886200, "relativeTimeMs": 10017200, "teamIds": [ - 73 + "76" ], "runIds": [ 882 @@ -63832,7 +63715,7 @@ "timeUnixMs": 1633424906207, "relativeTimeMs": 10037207, "teamIds": [ - 8 + "29" ], "runIds": [ 884 @@ -63850,7 +63733,7 @@ "timeUnixMs": 1633424914608, "relativeTimeMs": 10045608, "teamIds": [ - 84 + "40" ], "runIds": [ 886 @@ -63868,7 +63751,7 @@ "timeUnixMs": 1633424918661, "relativeTimeMs": 10049661, "teamIds": [ - 23 + "108" ], "runIds": [ 887 @@ -63886,7 +63769,7 @@ "timeUnixMs": 1633424919191, "relativeTimeMs": 10050191, "teamIds": [ - 20 + "95" ], "runIds": [ 885 @@ -63904,7 +63787,7 @@ "timeUnixMs": 1633424927987, "relativeTimeMs": 10058987, "teamIds": [ - 33 + "52" ], "runIds": [ 888 @@ -63922,7 +63805,7 @@ "timeUnixMs": 1633424933023, "relativeTimeMs": 10064023, "teamIds": [ - 33 + "52" ], "runIds": [ 888 @@ -63940,7 +63823,7 @@ "timeUnixMs": 1633424938625, "relativeTimeMs": 10069625, "teamIds": [ - 83 + "20" ], "runIds": [ 889 @@ -63958,7 +63841,7 @@ "timeUnixMs": 1633424941073, "relativeTimeMs": 10072073, "teamIds": [ - 95 + "30" ], "runIds": [ 890 @@ -63976,7 +63859,7 @@ "timeUnixMs": 1633424977802, "relativeTimeMs": 10108802, "teamIds": [ - 74 + "78" ], "runIds": [ 892 @@ -63994,7 +63877,7 @@ "timeUnixMs": 1633424982302, "relativeTimeMs": 10113302, "teamIds": [ - 72 + "13" ], "runIds": [ 891 @@ -64012,7 +63895,7 @@ "timeUnixMs": 1633424990294, "relativeTimeMs": 10121294, "teamIds": [ - 108 + "63" ], "runIds": [ 893 @@ -64030,7 +63913,7 @@ "timeUnixMs": 1633424991338, "relativeTimeMs": 10122338, "teamIds": [ - 46 + "53" ], "runIds": [ 894 @@ -64048,7 +63931,7 @@ "timeUnixMs": 1633425016267, "relativeTimeMs": 10147267, "teamIds": [ - 6 + "19" ], "runIds": [ 895 @@ -64066,7 +63949,7 @@ "timeUnixMs": 1633425026560, "relativeTimeMs": 10157560, "teamIds": [ - 25 + "94" ], "runIds": [ 897 @@ -64084,7 +63967,7 @@ "timeUnixMs": 1633425035074, "relativeTimeMs": 10166074, "teamIds": [ - 18 + "68" ], "runIds": [ 898 @@ -64102,7 +63985,7 @@ "timeUnixMs": 1633425037628, "relativeTimeMs": 10168628, "teamIds": [ - 26 + "64" ], "runIds": [ 899 @@ -64120,7 +64003,7 @@ "timeUnixMs": 1633425038330, "relativeTimeMs": 10169330, "teamIds": [ - 9 + "114" ], "runIds": [ 900 @@ -64138,7 +64021,7 @@ "timeUnixMs": 1633425039346, "relativeTimeMs": 10170346, "teamIds": [ - 16 + "109" ], "runIds": [ 896 @@ -64156,7 +64039,7 @@ "timeUnixMs": 1633425042059, "relativeTimeMs": 10173059, "teamIds": [ - 9 + "114" ], "runIds": [ 900 @@ -64174,7 +64057,7 @@ "timeUnixMs": 1633425062452, "relativeTimeMs": 10193452, "teamIds": [ - 11 + "69" ], "runIds": [ 902 @@ -64192,7 +64075,7 @@ "timeUnixMs": 1633425063848, "relativeTimeMs": 10194848, "teamIds": [ - 11 + "69" ], "runIds": [ 903 @@ -64210,7 +64093,7 @@ "timeUnixMs": 1633425069691, "relativeTimeMs": 10200691, "teamIds": [ - 11 + "69" ], "runIds": [ 903 @@ -64228,7 +64111,7 @@ "timeUnixMs": 1633425071983, "relativeTimeMs": 10202983, "teamIds": [ - 106 + "110" ], "runIds": [ 901 @@ -64246,7 +64129,7 @@ "timeUnixMs": 1633425074616, "relativeTimeMs": 10205616, "teamIds": [ - 11 + "69" ], "runIds": [ 902 @@ -64264,7 +64147,7 @@ "timeUnixMs": 1633425075162, "relativeTimeMs": 10206162, "teamIds": [ - 15 + "6" ], "runIds": [ 904 @@ -64282,7 +64165,7 @@ "timeUnixMs": 1633425081675, "relativeTimeMs": 10212675, "teamIds": [ - 50 + "11" ], "runIds": [ 905 @@ -64300,7 +64183,7 @@ "timeUnixMs": 1633425091603, "relativeTimeMs": 10222603, "teamIds": [ - 71 + "105" ], "runIds": [ 906 @@ -64318,7 +64201,7 @@ "timeUnixMs": 1633425097401, "relativeTimeMs": 10228401, "teamIds": [ - 58 + "119" ], "runIds": [ 908 @@ -64336,7 +64219,7 @@ "timeUnixMs": 1633425099195, "relativeTimeMs": 10230195, "teamIds": [ - 84 + "40" ], "runIds": [ 907 @@ -64354,7 +64237,7 @@ "timeUnixMs": 1633425103224, "relativeTimeMs": 10234224, "teamIds": [ - 69 + "3" ], "runIds": [ 909 @@ -64372,7 +64255,7 @@ "timeUnixMs": 1633425104541, "relativeTimeMs": 10235541, "teamIds": [ - 90 + "35" ], "runIds": [ 910 @@ -64390,7 +64273,7 @@ "timeUnixMs": 1633425105871, "relativeTimeMs": 10236871, "teamIds": [ - 74 + "78" ], "runIds": [ 911 @@ -64408,7 +64291,7 @@ "timeUnixMs": 1633425116787, "relativeTimeMs": 10247787, "teamIds": [ - 57 + "51" ], "runIds": [ 912 @@ -64426,7 +64309,7 @@ "timeUnixMs": 1633425148632, "relativeTimeMs": 10279632, "teamIds": [ - 103 + "24" ], "runIds": [ 913 @@ -64444,7 +64327,7 @@ "timeUnixMs": 1633425172364, "relativeTimeMs": 10303364, "teamIds": [ - 12 + "56" ], "runIds": [ 915 @@ -64462,7 +64345,7 @@ "timeUnixMs": 1633425174128, "relativeTimeMs": 10305128, "teamIds": [ - 91 + "54" ], "runIds": [ 914 @@ -64480,7 +64363,7 @@ "timeUnixMs": 1633425183784, "relativeTimeMs": 10314784, "teamIds": [ - 34 + "37" ], "runIds": [ 916 @@ -64498,7 +64381,7 @@ "timeUnixMs": 1633425185566, "relativeTimeMs": 10316566, "teamIds": [ - 41 + "22" ], "runIds": [ 917 @@ -64516,7 +64399,7 @@ "timeUnixMs": 1633425188988, "relativeTimeMs": 10319988, "teamIds": [ - 41 + "22" ], "runIds": [ 917 @@ -64534,7 +64417,7 @@ "timeUnixMs": 1633425194148, "relativeTimeMs": 10325148, "teamIds": [ - 111 + "41" ], "runIds": [ 918 @@ -64552,7 +64435,7 @@ "timeUnixMs": 1633425215016, "relativeTimeMs": 10346016, "teamIds": [ - 106 + "110" ], "runIds": [ 920 @@ -64570,7 +64453,7 @@ "timeUnixMs": 1633425215579, "relativeTimeMs": 10346579, "teamIds": [ - 23 + "108" ], "runIds": [ 919 @@ -64588,7 +64471,7 @@ "timeUnixMs": 1633425220097, "relativeTimeMs": 10351097, "teamIds": [ - 17 + "59" ], "runIds": [ 921 @@ -64606,7 +64489,7 @@ "timeUnixMs": 1633425224410, "relativeTimeMs": 10355410, "teamIds": [ - 17 + "59" ], "runIds": [ 921 @@ -64624,7 +64507,7 @@ "timeUnixMs": 1633425236846, "relativeTimeMs": 10367846, "teamIds": [ - 55 + "43" ], "runIds": [ 922 @@ -64642,7 +64525,7 @@ "timeUnixMs": 1633425241391, "relativeTimeMs": 10372391, "teamIds": [ - 58 + "119" ], "runIds": [ 923 @@ -64660,7 +64543,7 @@ "timeUnixMs": 1633425243367, "relativeTimeMs": 10374367, "teamIds": [ - 90 + "35" ], "runIds": [ 924 @@ -64678,7 +64561,7 @@ "timeUnixMs": 1633425244488, "relativeTimeMs": 10375488, "teamIds": [ - 80 + "83" ], "runIds": [ 925 @@ -64696,7 +64579,7 @@ "timeUnixMs": 1633425259294, "relativeTimeMs": 10390294, "teamIds": [ - 57 + "51" ], "runIds": [ 927 @@ -64714,7 +64597,7 @@ "timeUnixMs": 1633425261966, "relativeTimeMs": 10392966, "teamIds": [ - 66 + "117" ], "runIds": [ 926 @@ -64732,7 +64615,7 @@ "timeUnixMs": 1633425263619, "relativeTimeMs": 10394619, "teamIds": [ - 22 + "103" ], "runIds": [ 928 @@ -64750,7 +64633,7 @@ "timeUnixMs": 1633425268315, "relativeTimeMs": 10399315, "teamIds": [ - 22 + "103" ], "runIds": [ 928 @@ -64768,7 +64651,7 @@ "timeUnixMs": 1633425274738, "relativeTimeMs": 10405738, "teamIds": [ - 105 + "58" ], "runIds": [ 929 @@ -64786,7 +64669,7 @@ "timeUnixMs": 1633425275503, "relativeTimeMs": 10406503, "teamIds": [ - 22 + "103" ], "runIds": [ 931 @@ -64804,7 +64687,7 @@ "timeUnixMs": 1633425279380, "relativeTimeMs": 10410380, "teamIds": [ - 33 + "52" ], "runIds": [ 932 @@ -64822,7 +64705,7 @@ "timeUnixMs": 1633425282941, "relativeTimeMs": 10413941, "teamIds": [ - 22 + "103" ], "runIds": [ 931 @@ -64840,7 +64723,7 @@ "timeUnixMs": 1633425283822, "relativeTimeMs": 10414822, "teamIds": [ - 105 + "58" ], "runIds": [ 930 @@ -64858,7 +64741,7 @@ "timeUnixMs": 1633425284829, "relativeTimeMs": 10415829, "teamIds": [ - 33 + "52" ], "runIds": [ 932 @@ -64876,7 +64759,7 @@ "timeUnixMs": 1633425291725, "relativeTimeMs": 10422725, "teamIds": [ - 9 + "114" ], "runIds": [ 934 @@ -64894,7 +64777,7 @@ "timeUnixMs": 1633425292255, "relativeTimeMs": 10423255, "teamIds": [ - 32 + "45" ], "runIds": [ 933 @@ -64912,7 +64795,7 @@ "timeUnixMs": 1633425296077, "relativeTimeMs": 10427077, "teamIds": [ - 9 + "114" ], "runIds": [ 934 @@ -64930,7 +64813,7 @@ "timeUnixMs": 1633425306312, "relativeTimeMs": 10437312, "teamIds": [ - 69 + "3" ], "runIds": [ 935 @@ -64948,7 +64831,7 @@ "timeUnixMs": 1633425323802, "relativeTimeMs": 10454802, "teamIds": [ - 13 + "25" ], "runIds": [ 937 @@ -64966,7 +64849,7 @@ "timeUnixMs": 1633425324257, "relativeTimeMs": 10455257, "teamIds": [ - 9 + "114" ], "runIds": [ 939 @@ -64984,7 +64867,7 @@ "timeUnixMs": 1633425330317, "relativeTimeMs": 10461317, "teamIds": [ - 12 + "56" ], "runIds": [ 938 @@ -65002,7 +64885,7 @@ "timeUnixMs": 1633425330608, "relativeTimeMs": 10461608, "teamIds": [ - 26 + "64" ], "runIds": [ 936 @@ -65020,7 +64903,7 @@ "timeUnixMs": 1633425334102, "relativeTimeMs": 10465102, "teamIds": [ - 9 + "114" ], "runIds": [ 939 @@ -65038,7 +64921,7 @@ "timeUnixMs": 1633425407221, "relativeTimeMs": 10538221, "teamIds": [ - 33 + "52" ], "runIds": [ 941 @@ -65056,7 +64939,7 @@ "timeUnixMs": 1633425409240, "relativeTimeMs": 10540240, "teamIds": [ - 106 + "110" ], "runIds": [ 940 @@ -65074,7 +64957,7 @@ "timeUnixMs": 1633425416668, "relativeTimeMs": 10547668, "teamIds": [ - 5 + "70" ], "runIds": [ 942 @@ -65092,7 +64975,7 @@ "timeUnixMs": 1633425423953, "relativeTimeMs": 10554953, "teamIds": [ - 13 + "25" ], "runIds": [ 944 @@ -65110,7 +64993,7 @@ "timeUnixMs": 1633425424794, "relativeTimeMs": 10555794, "teamIds": [ - 33 + "52" ], "runIds": [ 941 @@ -65128,7 +65011,7 @@ "timeUnixMs": 1633425425156, "relativeTimeMs": 10556156, "teamIds": [ - 76 + "9" ], "runIds": [ 943 @@ -65146,7 +65029,7 @@ "timeUnixMs": 1633425438024, "relativeTimeMs": 10569024, "teamIds": [ - 13 + "25" ], "runIds": [ 945 @@ -65164,7 +65047,7 @@ "timeUnixMs": 1633425438211, "relativeTimeMs": 10569211, "teamIds": [ - 9 + "114" ], "runIds": [ 946 @@ -65182,7 +65065,7 @@ "timeUnixMs": 1633425442994, "relativeTimeMs": 10573994, "teamIds": [ - 9 + "114" ], "runIds": [ 946 @@ -65200,7 +65083,7 @@ "timeUnixMs": 1633425463054, "relativeTimeMs": 10594054, "teamIds": [ - 61 + "55" ], "runIds": [ 948 @@ -65218,7 +65101,7 @@ "timeUnixMs": 1633425464073, "relativeTimeMs": 10595073, "teamIds": [ - 27 + "96" ], "runIds": [ 947 @@ -65236,7 +65119,7 @@ "timeUnixMs": 1633425469125, "relativeTimeMs": 10600125, "teamIds": [ - 36 + "80" ], "runIds": [ 949 @@ -65254,7 +65137,7 @@ "timeUnixMs": 1633425476760, "relativeTimeMs": 10607760, "teamIds": [ - 96 + "1" ], "runIds": [ 950 @@ -65272,7 +65155,7 @@ "timeUnixMs": 1633425513335, "relativeTimeMs": 10644335, "teamIds": [ - 13 + "25" ], "runIds": [ 951 @@ -65290,7 +65173,7 @@ "timeUnixMs": 1633425520717, "relativeTimeMs": 10651717, "teamIds": [ - 77 + "5" ], "runIds": [ 952 @@ -65308,7 +65191,7 @@ "timeUnixMs": 1633425522250, "relativeTimeMs": 10653250, "teamIds": [ - 93 + "49" ], "runIds": [ 953 @@ -65326,7 +65209,7 @@ "timeUnixMs": 1633425542625, "relativeTimeMs": 10673625, "teamIds": [ - 69 + "3" ], "runIds": [ 954 @@ -65344,7 +65227,7 @@ "timeUnixMs": 1633425550975, "relativeTimeMs": 10681975, "teamIds": [ - 25 + "94" ], "runIds": [ 955 @@ -65362,7 +65245,7 @@ "timeUnixMs": 1633425553954, "relativeTimeMs": 10684954, "teamIds": [ - 68 + "107" ], "runIds": [ 956 @@ -65380,7 +65263,7 @@ "timeUnixMs": 1633425554919, "relativeTimeMs": 10685919, "teamIds": [ - 84 + "40" ], "runIds": [ 957 @@ -65398,7 +65281,7 @@ "timeUnixMs": 1633425587163, "relativeTimeMs": 10718163, "teamIds": [ - 111 + "41" ], "runIds": [ 958 @@ -65416,7 +65299,7 @@ "timeUnixMs": 1633425602068, "relativeTimeMs": 10733068, "teamIds": [ - 64 + "4" ], "runIds": [ 959 @@ -65434,7 +65317,7 @@ "timeUnixMs": 1633425620905, "relativeTimeMs": 10751905, "teamIds": [ - 86 + "38" ], "runIds": [ 960 @@ -65452,7 +65335,7 @@ "timeUnixMs": 1633425626322, "relativeTimeMs": 10757322, "teamIds": [ - 70 + "100" ], "runIds": [ 961 @@ -65470,7 +65353,7 @@ "timeUnixMs": 1633425633607, "relativeTimeMs": 10764607, "teamIds": [ - 46 + "53" ], "runIds": [ 962 @@ -65488,7 +65371,7 @@ "timeUnixMs": 1633425640178, "relativeTimeMs": 10771178, "teamIds": [ - 5 + "70" ], "runIds": [ 963 @@ -65506,7 +65389,7 @@ "timeUnixMs": 1633425648859, "relativeTimeMs": 10779859, "teamIds": [ - 91 + "54" ], "runIds": [ 965 @@ -65524,7 +65407,7 @@ "timeUnixMs": 1633425654114, "relativeTimeMs": 10785114, "teamIds": [ - 3 + "67" ], "runIds": [ 964 @@ -65542,7 +65425,7 @@ "timeUnixMs": 1633425672130, "relativeTimeMs": 10803130, "teamIds": [ - 14 + "60" ], "runIds": [ 966 @@ -65560,7 +65443,7 @@ "timeUnixMs": 1633425695068, "relativeTimeMs": 10826068, "teamIds": [ - 14 + "60" ], "runIds": [ 967 @@ -65578,7 +65461,7 @@ "timeUnixMs": 1633425700049, "relativeTimeMs": 10831049, "teamIds": [ - 22 + "103" ], "runIds": [ 968 @@ -65596,7 +65479,7 @@ "timeUnixMs": 1633425710407, "relativeTimeMs": 10841407, "teamIds": [ - 22 + "103" ], "runIds": [ 968 @@ -65614,7 +65497,7 @@ "timeUnixMs": 1633425752760, "relativeTimeMs": 10883760, "teamIds": [ - 57 + "51" ], "runIds": [ 969 @@ -65632,7 +65515,7 @@ "timeUnixMs": 1633425771903, "relativeTimeMs": 10902903, "teamIds": [ - 46 + "53" ], "runIds": [ 970 @@ -65650,7 +65533,7 @@ "timeUnixMs": 1633425776624, "relativeTimeMs": 10907624, "teamIds": [ - 12 + "56" ], "runIds": [ 971 @@ -65668,7 +65551,7 @@ "timeUnixMs": 1633425780504, "relativeTimeMs": 10911504, "teamIds": [ - 57 + "51" ], "runIds": [ 972 @@ -65686,7 +65569,7 @@ "timeUnixMs": 1633425791554, "relativeTimeMs": 10922554, "teamIds": [ - 77 + "5" ], "runIds": [ 973 @@ -65704,7 +65587,7 @@ "timeUnixMs": 1633425800939, "relativeTimeMs": 10931939, "teamIds": [ - 12 + "56" ], "runIds": [ 974 @@ -65722,7 +65605,7 @@ "timeUnixMs": 1633425825548, "relativeTimeMs": 10956548, "teamIds": [ - 13 + "25" ], "runIds": [ 977 @@ -65740,7 +65623,7 @@ "timeUnixMs": 1633425826268, "relativeTimeMs": 10957268, "teamIds": [ - 13 + "25" ], "runIds": [ 976 @@ -65758,7 +65641,7 @@ "timeUnixMs": 1633425834267, "relativeTimeMs": 10965267, "teamIds": [ - 59 + "71" ], "runIds": [ 975 @@ -65776,7 +65659,7 @@ "timeUnixMs": 1633425838624, "relativeTimeMs": 10969624, "teamIds": [ - 26 + "64" ], "runIds": [ 978 @@ -65794,7 +65677,7 @@ "timeUnixMs": 1633425845652, "relativeTimeMs": 10976652, "teamIds": [ - 41 + "22" ], "runIds": [ 979 @@ -65812,7 +65695,7 @@ "timeUnixMs": 1633425849152, "relativeTimeMs": 10980152, "teamIds": [ - 41 + "22" ], "runIds": [ 979 @@ -65830,7 +65713,7 @@ "timeUnixMs": 1633425853270, "relativeTimeMs": 10984270, "teamIds": [ - 57 + "51" ], "runIds": [ 980 @@ -65848,7 +65731,7 @@ "timeUnixMs": 1633425877330, "relativeTimeMs": 11008330, "teamIds": [ - 93 + "49" ], "runIds": [ 981 @@ -65866,7 +65749,7 @@ "timeUnixMs": 1633425899922, "relativeTimeMs": 11030922, "teamIds": [ - 36 + "80" ], "runIds": [ 982 @@ -65884,7 +65767,7 @@ "timeUnixMs": 1633425927981, "relativeTimeMs": 11058981, "teamIds": [ - 20 + "95" ], "runIds": [ 983 @@ -65902,7 +65785,7 @@ "timeUnixMs": 1633425930957, "relativeTimeMs": 11061957, "teamIds": [ - 48 + "106" ], "runIds": [ 984 @@ -65920,7 +65803,7 @@ "timeUnixMs": 1633425936914, "relativeTimeMs": 11067914, "teamIds": [ - 55 + "43" ], "runIds": [ 985 @@ -65938,7 +65821,7 @@ "timeUnixMs": 1633425940825, "relativeTimeMs": 11071825, "teamIds": [ - 113 + "82" ], "runIds": [ 986 @@ -65956,7 +65839,7 @@ "timeUnixMs": 1633425959318, "relativeTimeMs": 11090318, "teamIds": [ - 33 + "52" ], "runIds": [ 987 @@ -65974,7 +65857,7 @@ "timeUnixMs": 1633425966035, "relativeTimeMs": 11097035, "teamIds": [ - 33 + "52" ], "runIds": [ 987 @@ -65992,7 +65875,7 @@ "timeUnixMs": 1633425972257, "relativeTimeMs": 11103257, "teamIds": [ - 61 + "55" ], "runIds": [ 988 @@ -66010,7 +65893,7 @@ "timeUnixMs": 1633425978933, "relativeTimeMs": 11109933, "teamIds": [ - 9 + "114" ], "runIds": [ 991 @@ -66028,7 +65911,7 @@ "timeUnixMs": 1633425979453, "relativeTimeMs": 11110453, "teamIds": [ - 8 + "29" ], "runIds": [ 989 @@ -66046,7 +65929,7 @@ "timeUnixMs": 1633425980617, "relativeTimeMs": 11111617, "teamIds": [ - 61 + "55" ], "runIds": [ 988 @@ -66064,7 +65947,7 @@ "timeUnixMs": 1633425985399, "relativeTimeMs": 11116399, "teamIds": [ - 45 + "34" ], "runIds": [ 990 @@ -66082,7 +65965,7 @@ "timeUnixMs": 1633425986669, "relativeTimeMs": 11117669, "teamIds": [ - 9 + "114" ], "runIds": [ 991 @@ -66100,7 +65983,7 @@ "timeUnixMs": 1633425996951, "relativeTimeMs": 11127951, "teamIds": [ - 83 + "20" ], "runIds": [ 992 @@ -66118,7 +66001,7 @@ "timeUnixMs": 1633425997918, "relativeTimeMs": 11128918, "teamIds": [ - 95 + "30" ], "runIds": [ 993 @@ -66136,7 +66019,7 @@ "timeUnixMs": 1633426012179, "relativeTimeMs": 11143179, "teamIds": [ - 7 + "65" ], "runIds": [ 994 @@ -66154,7 +66037,7 @@ "timeUnixMs": 1633426017842, "relativeTimeMs": 11148842, "teamIds": [ - 7 + "65" ], "runIds": [ 994 @@ -66172,7 +66055,7 @@ "timeUnixMs": 1633426028739, "relativeTimeMs": 11159739, "teamIds": [ - 24 + "28" ], "runIds": [ 995 @@ -66190,7 +66073,7 @@ "timeUnixMs": 1633426034233, "relativeTimeMs": 11165233, "teamIds": [ - 9 + "114" ], "runIds": [ 996 @@ -66208,7 +66091,7 @@ "timeUnixMs": 1633426043136, "relativeTimeMs": 11174136, "teamIds": [ - 9 + "114" ], "runIds": [ 996 @@ -66226,7 +66109,7 @@ "timeUnixMs": 1633426045343, "relativeTimeMs": 11176343, "teamIds": [ - 63 + "42" ], "runIds": [ 997 @@ -66244,7 +66127,7 @@ "timeUnixMs": 1633426064065, "relativeTimeMs": 11195065, "teamIds": [ - 8 + "29" ], "runIds": [ 998 @@ -66262,7 +66145,7 @@ "timeUnixMs": 1633426070970, "relativeTimeMs": 11201970, "teamIds": [ - 34 + "37" ], "runIds": [ 999 @@ -66280,7 +66163,7 @@ "timeUnixMs": 1633426085019, "relativeTimeMs": 11216019, "teamIds": [ - 103 + "24" ], "runIds": [ 1000 @@ -66298,7 +66181,7 @@ "timeUnixMs": 1633426086882, "relativeTimeMs": 11217882, "teamIds": [ - 63 + "42" ], "runIds": [ 1002 @@ -66316,7 +66199,7 @@ "timeUnixMs": 1633426088812, "relativeTimeMs": 11219812, "teamIds": [ - 17 + "59" ], "runIds": [ 1003 @@ -66334,7 +66217,7 @@ "timeUnixMs": 1633426093317, "relativeTimeMs": 11224317, "teamIds": [ - 17 + "59" ], "runIds": [ 1003 @@ -66352,7 +66235,7 @@ "timeUnixMs": 1633426095495, "relativeTimeMs": 11226495, "teamIds": [ - 26 + "64" ], "runIds": [ 1001 @@ -66370,7 +66253,7 @@ "timeUnixMs": 1633426103163, "relativeTimeMs": 11234163, "teamIds": [ - 14 + "60" ], "runIds": [ 1005 @@ -66388,7 +66271,7 @@ "timeUnixMs": 1633426105102, "relativeTimeMs": 11236102, "teamIds": [ - 111 + "41" ], "runIds": [ 1006 @@ -66406,7 +66289,7 @@ "timeUnixMs": 1633426105124, "relativeTimeMs": 11236124, "teamIds": [ - 57 + "51" ], "runIds": [ 1004 @@ -66424,7 +66307,7 @@ "timeUnixMs": 1633426107523, "relativeTimeMs": 11238523, "teamIds": [ - 22 + "103" ], "runIds": [ 1007 @@ -66442,7 +66325,7 @@ "timeUnixMs": 1633426111583, "relativeTimeMs": 11242583, "teamIds": [ - 22 + "103" ], "runIds": [ 1007 @@ -66460,7 +66343,7 @@ "timeUnixMs": 1633426115329, "relativeTimeMs": 11246329, "teamIds": [ - 9 + "114" ], "runIds": [ 1008 @@ -66478,7 +66361,7 @@ "timeUnixMs": 1633426122899, "relativeTimeMs": 11253899, "teamIds": [ - 9 + "114" ], "runIds": [ 1008 @@ -66496,7 +66379,7 @@ "timeUnixMs": 1633426135323, "relativeTimeMs": 11266323, "teamIds": [ - 68 + "107" ], "runIds": [ 1009 @@ -66514,7 +66397,7 @@ "timeUnixMs": 1633426141313, "relativeTimeMs": 11272313, "teamIds": [ - 28 + "112" ], "runIds": [ 1011 @@ -66532,7 +66415,7 @@ "timeUnixMs": 1633426142282, "relativeTimeMs": 11273282, "teamIds": [ - 18 + "68" ], "runIds": [ 1010 @@ -66550,7 +66433,7 @@ "timeUnixMs": 1633426146868, "relativeTimeMs": 11277868, "teamIds": [ - 11 + "69" ], "runIds": [ 1013 @@ -66568,7 +66451,7 @@ "timeUnixMs": 1633426147816, "relativeTimeMs": 11278816, "teamIds": [ - 56 + "111" ], "runIds": [ 1012 @@ -66586,7 +66469,7 @@ "timeUnixMs": 1633426154715, "relativeTimeMs": 11285715, "teamIds": [ - 18 + "68" ], "runIds": [ 1014 @@ -66604,7 +66487,7 @@ "timeUnixMs": 1633426155220, "relativeTimeMs": 11286220, "teamIds": [ - 11 + "69" ], "runIds": [ 1013 @@ -66622,7 +66505,7 @@ "timeUnixMs": 1633426155220, "relativeTimeMs": 11286220, "teamIds": [ - 11 + "69" ], "runIds": [ 1013 @@ -66640,7 +66523,7 @@ "timeUnixMs": 1633426169063, "relativeTimeMs": 11300063, "teamIds": [ - 36 + "80" ], "runIds": [ 1015 @@ -66658,7 +66541,7 @@ "timeUnixMs": 1633426179780, "relativeTimeMs": 11310780, "teamIds": [ - 4 + "50" ], "runIds": [ 1019 @@ -66676,7 +66559,7 @@ "timeUnixMs": 1633426180985, "relativeTimeMs": 11311985, "teamIds": [ - 50 + "11" ], "runIds": [ 1016 @@ -66694,7 +66577,7 @@ "timeUnixMs": 1633426183284, "relativeTimeMs": 11314284, "teamIds": [ - 86 + "38" ], "runIds": [ 1018 @@ -66712,7 +66595,7 @@ "timeUnixMs": 1633426184007, "relativeTimeMs": 11315007, "teamIds": [ - 38 + "113" ], "runIds": [ 1017 @@ -66730,7 +66613,7 @@ "timeUnixMs": 1633426189622, "relativeTimeMs": 11320622, "teamIds": [ - 49 + "98" ], "runIds": [ 1020 @@ -66748,7 +66631,7 @@ "timeUnixMs": 1633426192023, "relativeTimeMs": 11323023, "teamIds": [ - 4 + "50" ], "runIds": [ 1019 @@ -66766,7 +66649,7 @@ "timeUnixMs": 1633426200052, "relativeTimeMs": 11331052, "teamIds": [ - 57 + "51" ], "runIds": [ 1021 @@ -66784,7 +66667,7 @@ "timeUnixMs": 1633426200805, "relativeTimeMs": 11331805, "teamIds": [ - 4 + "50" ], "runIds": [ 1022 @@ -66802,7 +66685,7 @@ "timeUnixMs": 1633426208120, "relativeTimeMs": 11339120, "teamIds": [ - 97 + "97" ], "runIds": [ 1023 @@ -66820,7 +66703,7 @@ "timeUnixMs": 1633426212466, "relativeTimeMs": 11343466, "teamIds": [ - 4 + "50" ], "runIds": [ 1022 @@ -66838,7 +66721,7 @@ "timeUnixMs": 1633426216349, "relativeTimeMs": 11347349, "teamIds": [ - 1 + "102" ], "runIds": [ 1024 @@ -66856,7 +66739,7 @@ "timeUnixMs": 1633426222071, "relativeTimeMs": 11353071, "teamIds": [ - 14 + "60" ], "runIds": [ 1025 @@ -66874,7 +66757,7 @@ "timeUnixMs": 1633426222272, "relativeTimeMs": 11353272, "teamIds": [ - 1 + "102" ], "runIds": [ 1024 @@ -66892,7 +66775,7 @@ "timeUnixMs": 1633426224519, "relativeTimeMs": 11355519, "teamIds": [ - 101 + "2" ], "runIds": [ 1026 @@ -66910,7 +66793,7 @@ "timeUnixMs": 1633426242418, "relativeTimeMs": 11373418, "teamIds": [ - 92 + "36" ], "runIds": [ 1027 @@ -66928,7 +66811,7 @@ "timeUnixMs": 1633426253289, "relativeTimeMs": 11384289, "teamIds": [ - 63 + "42" ], "runIds": [ 1028 @@ -66946,7 +66829,7 @@ "timeUnixMs": 1633426257886, "relativeTimeMs": 11388886, "teamIds": [ - 8 + "29" ], "runIds": [ 1029 @@ -66964,7 +66847,7 @@ "timeUnixMs": 1633426262409, "relativeTimeMs": 11393409, "teamIds": [ - 1 + "102" ], "runIds": [ 1031 @@ -66982,7 +66865,7 @@ "timeUnixMs": 1633426264718, "relativeTimeMs": 11395718, "teamIds": [ - 44 + "72" ], "runIds": [ 1030 @@ -67000,7 +66883,7 @@ "timeUnixMs": 1633426269727, "relativeTimeMs": 11400727, "teamIds": [ - 22 + "103" ], "runIds": [ 1034 @@ -67018,7 +66901,7 @@ "timeUnixMs": 1633426271674, "relativeTimeMs": 11402674, "teamIds": [ - 36 + "80" ], "runIds": [ 1032 @@ -67036,7 +66919,7 @@ "timeUnixMs": 1633426273640, "relativeTimeMs": 11404640, "teamIds": [ - 1 + "102" ], "runIds": [ 1031 @@ -67054,7 +66937,7 @@ "timeUnixMs": 1633426274162, "relativeTimeMs": 11405162, "teamIds": [ - 48 + "106" ], "runIds": [ 1035 @@ -67072,7 +66955,7 @@ "timeUnixMs": 1633426274426, "relativeTimeMs": 11405426, "teamIds": [ - 56 + "111" ], "runIds": [ 1036 @@ -67090,7 +66973,7 @@ "timeUnixMs": 1633426281159, "relativeTimeMs": 11412159, "teamIds": [ - 22 + "103" ], "runIds": [ 1034 @@ -67108,7 +66991,7 @@ "timeUnixMs": 1633426282704, "relativeTimeMs": 11413704, "teamIds": [ - 30 + "7" ], "runIds": [ 1033 @@ -67126,7 +67009,7 @@ "timeUnixMs": 1633426288003, "relativeTimeMs": 11419003, "teamIds": [ - 82 + "118" ], "runIds": [ 1037 @@ -67144,7 +67027,7 @@ "timeUnixMs": 1633426288551, "relativeTimeMs": 11419551, "teamIds": [ - 59 + "71" ], "runIds": [ 1038 @@ -67162,7 +67045,7 @@ "timeUnixMs": 1633426295252, "relativeTimeMs": 11426252, "teamIds": [ - 116 + "39" ], "runIds": [ 1039 @@ -67180,7 +67063,7 @@ "timeUnixMs": 1633426297980, "relativeTimeMs": 11428980, "teamIds": [ - 88 + "26" ], "runIds": [ 1040 @@ -67198,7 +67081,7 @@ "timeUnixMs": 1633426338499, "relativeTimeMs": 11469499, "teamIds": [ - 14 + "60" ], "runIds": [ 1041 @@ -67216,7 +67099,7 @@ "timeUnixMs": 1633426347020, "relativeTimeMs": 11478020, "teamIds": [ - 28 + "112" ], "runIds": [ 1042 @@ -67234,7 +67117,7 @@ "timeUnixMs": 1633426355607, "relativeTimeMs": 11486607, "teamIds": [ - 33 + "52" ], "runIds": [ 1043 @@ -67252,7 +67135,7 @@ "timeUnixMs": 1633426364079, "relativeTimeMs": 11495079, "teamIds": [ - 33 + "52" ], "runIds": [ 1043 @@ -67270,7 +67153,7 @@ "timeUnixMs": 1633426371562, "relativeTimeMs": 11502562, "teamIds": [ - 53 + "116" ], "runIds": [ 1044 @@ -67288,7 +67171,7 @@ "timeUnixMs": 1633426377367, "relativeTimeMs": 11508367, "teamIds": [ - 83 + "20" ], "runIds": [ 1045 @@ -67306,7 +67189,7 @@ "timeUnixMs": 1633426387596, "relativeTimeMs": 11518596, "teamIds": [ - 5 + "70" ], "runIds": [ 1046 @@ -67324,7 +67207,7 @@ "timeUnixMs": 1633426391208, "relativeTimeMs": 11522208, "teamIds": [ - 59 + "71" ], "runIds": [ 1047 @@ -67342,7 +67225,7 @@ "timeUnixMs": 1633426395202, "relativeTimeMs": 11526202, "teamIds": [ - 52 + "74" ], "runIds": [ 1048 @@ -67360,7 +67243,7 @@ "timeUnixMs": 1633426402155, "relativeTimeMs": 11533155, "teamIds": [ - 54 + "73" ], "runIds": [ 1049 @@ -67378,7 +67261,7 @@ "timeUnixMs": 1633426403157, "relativeTimeMs": 11534157, "teamIds": [ - 13 + "25" ], "runIds": [ 1050 @@ -67396,7 +67279,7 @@ "timeUnixMs": 1633426404657, "relativeTimeMs": 11535657, "teamIds": [ - 17 + "59" ], "runIds": [ 1051 @@ -67414,7 +67297,7 @@ "timeUnixMs": 1633426425998, "relativeTimeMs": 11556998, "teamIds": [ - 87 + "66" ], "runIds": [ 1052 @@ -67432,7 +67315,7 @@ "timeUnixMs": 1633426430156, "relativeTimeMs": 11561156, "teamIds": [ - 17 + "59" ], "runIds": [ 1051 @@ -67450,7 +67333,7 @@ "timeUnixMs": 1633426465104, "relativeTimeMs": 11596104, "teamIds": [ - 75 + "48" ], "runIds": [ 1053 @@ -67468,7 +67351,7 @@ "timeUnixMs": 1633426469511, "relativeTimeMs": 11600511, "teamIds": [ - 92 + "36" ], "runIds": [ 1054 @@ -67486,7 +67369,7 @@ "timeUnixMs": 1633426485058, "relativeTimeMs": 11616058, "teamIds": [ - 9 + "114" ], "runIds": [ 1056 @@ -67504,7 +67387,7 @@ "timeUnixMs": 1633426491302, "relativeTimeMs": 11622302, "teamIds": [ - 50 + "11" ], "runIds": [ 1057 @@ -67522,7 +67405,7 @@ "timeUnixMs": 1633426493123, "relativeTimeMs": 11624123, "teamIds": [ - 26 + "64" ], "runIds": [ 1055 @@ -67540,7 +67423,7 @@ "timeUnixMs": 1633426494147, "relativeTimeMs": 11625147, "teamIds": [ - 9 + "114" ], "runIds": [ 1056 @@ -67558,7 +67441,7 @@ "timeUnixMs": 1633426520860, "relativeTimeMs": 11651860, "teamIds": [ - 48 + "106" ], "runIds": [ 1059 @@ -67576,7 +67459,7 @@ "timeUnixMs": 1633426522061, "relativeTimeMs": 11653061, "teamIds": [ - 107 + "89" ], "runIds": [ 1060 @@ -67594,7 +67477,7 @@ "timeUnixMs": 1633426527744, "relativeTimeMs": 11658744, "teamIds": [ - 49 + "98" ], "runIds": [ 1062 @@ -67612,7 +67495,7 @@ "timeUnixMs": 1633426528054, "relativeTimeMs": 11659054, "teamIds": [ - 65 + "23" ], "runIds": [ 1063 @@ -67630,7 +67513,7 @@ "timeUnixMs": 1633426531715, "relativeTimeMs": 11662715, "teamIds": [ - 34 + "37" ], "runIds": [ 1061 @@ -67648,7 +67531,7 @@ "timeUnixMs": 1633426533599, "relativeTimeMs": 11664599, "teamIds": [ - 50 + "11" ], "runIds": [ 1058 @@ -67666,7 +67549,7 @@ "timeUnixMs": 1633426562631, "relativeTimeMs": 11693631, "teamIds": [ - 56 + "111" ], "runIds": [ 1064 @@ -67684,7 +67567,7 @@ "timeUnixMs": 1633426567376, "relativeTimeMs": 11698376, "teamIds": [ - 83 + "20" ], "runIds": [ 1066 @@ -67702,7 +67585,7 @@ "timeUnixMs": 1633426567506, "relativeTimeMs": 11698506, "teamIds": [ - 76 + "9" ], "runIds": [ 1065 @@ -67720,7 +67603,7 @@ "timeUnixMs": 1633426568981, "relativeTimeMs": 11699981, "teamIds": [ - 17 + "59" ], "runIds": [ 1067 @@ -67738,7 +67621,7 @@ "timeUnixMs": 1633426587818, "relativeTimeMs": 11718818, "teamIds": [ - 5 + "70" ], "runIds": [ 1068 @@ -67756,7 +67639,7 @@ "timeUnixMs": 1633426588391, "relativeTimeMs": 11719391, "teamIds": [ - 17 + "59" ], "runIds": [ 1067 @@ -67774,7 +67657,7 @@ "timeUnixMs": 1633426600124, "relativeTimeMs": 11731124, "teamIds": [ - 101 + "2" ], "runIds": [ 1069 @@ -67792,7 +67675,7 @@ "timeUnixMs": 1633426608201, "relativeTimeMs": 11739201, "teamIds": [ - 8 + "29" ], "runIds": [ 1070 @@ -67810,7 +67693,7 @@ "timeUnixMs": 1633426610752, "relativeTimeMs": 11741752, "teamIds": [ - 13 + "25" ], "runIds": [ 1071 @@ -67828,7 +67711,7 @@ "timeUnixMs": 1633426615619, "relativeTimeMs": 11746619, "teamIds": [ - 12 + "56" ], "runIds": [ 1072 @@ -67846,7 +67729,7 @@ "timeUnixMs": 1633426618935, "relativeTimeMs": 11749935, "teamIds": [ - 12 + "56" ], "runIds": [ 1072 @@ -67864,7 +67747,7 @@ "timeUnixMs": 1633426626089, "relativeTimeMs": 11757089, "teamIds": [ - 30 + "7" ], "runIds": [ 1073 @@ -67882,7 +67765,7 @@ "timeUnixMs": 1633426628940, "relativeTimeMs": 11759940, "teamIds": [ - 36 + "80" ], "runIds": [ 1074 @@ -67900,7 +67783,7 @@ "timeUnixMs": 1633426634129, "relativeTimeMs": 11765129, "teamIds": [ - 10 + "47" ], "runIds": [ 1076 @@ -67918,7 +67801,7 @@ "timeUnixMs": 1633426637912, "relativeTimeMs": 11768912, "teamIds": [ - 34 + "37" ], "runIds": [ 1075 @@ -67936,7 +67819,7 @@ "timeUnixMs": 1633426638830, "relativeTimeMs": 11769830, "teamIds": [ - 25 + "94" ], "runIds": [ 1077 @@ -67954,7 +67837,7 @@ "timeUnixMs": 1633426643176, "relativeTimeMs": 11774176, "teamIds": [ - 68 + "107" ], "runIds": [ 1078 @@ -67972,7 +67855,7 @@ "timeUnixMs": 1633426657920, "relativeTimeMs": 11788920, "teamIds": [ - 40 + "87" ], "runIds": [ 1080 @@ -67990,7 +67873,7 @@ "timeUnixMs": 1633426658827, "relativeTimeMs": 11789827, "teamIds": [ - 13 + "25" ], "runIds": [ 1079 @@ -68008,7 +67891,7 @@ "timeUnixMs": 1633426664168, "relativeTimeMs": 11795168, "teamIds": [ - 17 + "59" ], "runIds": [ 1083 @@ -68026,7 +67909,7 @@ "timeUnixMs": 1633426670594, "relativeTimeMs": 11801594, "teamIds": [ - 25 + "94" ], "runIds": [ 1082 @@ -68044,7 +67927,7 @@ "timeUnixMs": 1633426673159, "relativeTimeMs": 11804159, "teamIds": [ - 89 + "21" ], "runIds": [ 1081 @@ -68062,7 +67945,7 @@ "timeUnixMs": 1633426674749, "relativeTimeMs": 11805749, "teamIds": [ - 106 + "110" ], "runIds": [ 1084 @@ -68080,7 +67963,7 @@ "timeUnixMs": 1633426675442, "relativeTimeMs": 11806442, "teamIds": [ - 17 + "59" ], "runIds": [ 1083 @@ -68098,7 +67981,7 @@ "timeUnixMs": 1633426679792, "relativeTimeMs": 11810792, "teamIds": [ - 14 + "60" ], "runIds": [ 1086 @@ -68116,7 +67999,7 @@ "timeUnixMs": 1633426684810, "relativeTimeMs": 11815810, "teamIds": [ - 86 + "38" ], "runIds": [ 1087 @@ -68134,7 +68017,7 @@ "timeUnixMs": 1633426696599, "relativeTimeMs": 11827599, "teamIds": [ - 17 + "59" ], "runIds": [ 1085 @@ -68152,7 +68035,7 @@ "timeUnixMs": 1633426701882, "relativeTimeMs": 11832882, "teamIds": [ - 67 + "115" ], "runIds": [ 1089 @@ -68170,7 +68053,7 @@ "timeUnixMs": 1633426707523, "relativeTimeMs": 11838523, "teamIds": [ - 17 + "59" ], "runIds": [ 1088 @@ -68188,7 +68071,7 @@ "timeUnixMs": 1633426711867, "relativeTimeMs": 11842867, "teamIds": [ - 81 + "86" ], "runIds": [ 1090 @@ -68206,7 +68089,7 @@ "timeUnixMs": 1633426732983, "relativeTimeMs": 11863983, "teamIds": [ - 111 + "41" ], "runIds": [ 1093 @@ -68224,7 +68107,7 @@ "timeUnixMs": 1633426735074, "relativeTimeMs": 11866074, "teamIds": [ - 75 + "48" ], "runIds": [ 1092 @@ -68242,7 +68125,7 @@ "timeUnixMs": 1633426737926, "relativeTimeMs": 11868926, "teamIds": [ - 19 + "91" ], "runIds": [ 1094 @@ -68260,7 +68143,7 @@ "timeUnixMs": 1633426738175, "relativeTimeMs": 11869175, "teamIds": [ - 17 + "59" ], "runIds": [ 1095 @@ -68278,7 +68161,7 @@ "timeUnixMs": 1633426738285, "relativeTimeMs": 11869285, "teamIds": [ - 105 + "58" ], "runIds": [ 1091 @@ -68296,7 +68179,7 @@ "timeUnixMs": 1633426755707, "relativeTimeMs": 11886707, "teamIds": [ - 79 + "62" ], "runIds": [ 1096 @@ -68314,7 +68197,7 @@ "timeUnixMs": 1633426757681, "relativeTimeMs": 11888681, "teamIds": [ - 65 + "23" ], "runIds": [ 1097 @@ -68332,7 +68215,7 @@ "timeUnixMs": 1633426761141, "relativeTimeMs": 11892141, "teamIds": [ - 109 + "75" ], "runIds": [ 1098 @@ -68350,7 +68233,7 @@ "timeUnixMs": 1633426763614, "relativeTimeMs": 11894614, "teamIds": [ - 17 + "59" ], "runIds": [ 1095 @@ -68368,7 +68251,7 @@ "timeUnixMs": 1633426768621, "relativeTimeMs": 11899621, "teamIds": [ - 49 + "98" ], "runIds": [ 1099 @@ -68386,7 +68269,7 @@ "timeUnixMs": 1633426792797, "relativeTimeMs": 11923797, "teamIds": [ - 80 + "83" ], "runIds": [ 1102 @@ -68404,7 +68287,7 @@ "timeUnixMs": 1633426797749, "relativeTimeMs": 11928749, "teamIds": [ - 53 + "116" ], "runIds": [ 1100 @@ -68422,7 +68305,7 @@ "timeUnixMs": 1633426803252, "relativeTimeMs": 11934252, "teamIds": [ - 85 + "61" ], "runIds": [ 1101 @@ -68440,7 +68323,7 @@ "timeUnixMs": 1633426807409, "relativeTimeMs": 11938409, "teamIds": [ - 15 + "6" ], "runIds": [ 1103 @@ -68458,7 +68341,7 @@ "timeUnixMs": 1633426814912, "relativeTimeMs": 11945912, "teamIds": [ - 109 + "75" ], "runIds": [ 1104 @@ -68476,7 +68359,7 @@ "timeUnixMs": 1633426820085, "relativeTimeMs": 11951085, "teamIds": [ - 73 + "76" ], "runIds": [ 1105 @@ -68494,7 +68377,7 @@ "timeUnixMs": 1633426837605, "relativeTimeMs": 11968605, "teamIds": [ - 103 + "24" ], "runIds": [ 1106 @@ -68512,7 +68395,7 @@ "timeUnixMs": 1633426841331, "relativeTimeMs": 11972331, "teamIds": [ - 84 + "40" ], "runIds": [ 1108 @@ -68530,7 +68413,7 @@ "timeUnixMs": 1633426843320, "relativeTimeMs": 11974320, "teamIds": [ - 102 + "16" ], "runIds": [ 1107 @@ -68548,7 +68431,7 @@ "timeUnixMs": 1633426852828, "relativeTimeMs": 11983828, "teamIds": [ - 106 + "110" ], "runIds": [ 1109 @@ -68566,7 +68449,7 @@ "timeUnixMs": 1633426871288, "relativeTimeMs": 12002288, "teamIds": [ - 13 + "25" ], "runIds": [ 1110 @@ -68584,7 +68467,7 @@ "timeUnixMs": 1633426894486, "relativeTimeMs": 12025486, "teamIds": [ - 82 + "118" ], "runIds": [ 1111 @@ -68602,7 +68485,7 @@ "timeUnixMs": 1633426910179, "relativeTimeMs": 12041179, "teamIds": [ - 55 + "43" ], "runIds": [ 1112 @@ -68620,7 +68503,7 @@ "timeUnixMs": 1633426912674, "relativeTimeMs": 12043674, "teamIds": [ - 93 + "49" ], "runIds": [ 1113 @@ -68638,7 +68521,7 @@ "timeUnixMs": 1633426915707, "relativeTimeMs": 12046707, "teamIds": [ - 26 + "64" ], "runIds": [ 1114 @@ -68656,7 +68539,7 @@ "timeUnixMs": 1633426916234, "relativeTimeMs": 12047234, "teamIds": [ - 1 + "102" ], "runIds": [ 1116 @@ -68674,7 +68557,7 @@ "timeUnixMs": 1633426917570, "relativeTimeMs": 12048570, "teamIds": [ - 75 + "48" ], "runIds": [ 1115 @@ -68692,7 +68575,7 @@ "timeUnixMs": 1633426927298, "relativeTimeMs": 12058298, "teamIds": [ - 1 + "102" ], "runIds": [ 1116 @@ -68710,7 +68593,7 @@ "timeUnixMs": 1633426934686, "relativeTimeMs": 12065686, "teamIds": [ - 108 + "63" ], "runIds": [ 1117 @@ -68728,7 +68611,7 @@ "timeUnixMs": 1633426954655, "relativeTimeMs": 12085655, "teamIds": [ - 60 + "31" ], "runIds": [ 1119 @@ -68746,7 +68629,7 @@ "timeUnixMs": 1633426955569, "relativeTimeMs": 12086569, "teamIds": [ - 94 + "93" ], "runIds": [ 1118 @@ -68764,7 +68647,7 @@ "timeUnixMs": 1633426955782, "relativeTimeMs": 12086782, "teamIds": [ - 49 + "98" ], "runIds": [ 1120 @@ -68782,7 +68665,7 @@ "timeUnixMs": 1633426968531, "relativeTimeMs": 12099531, "teamIds": [ - 82 + "118" ], "runIds": [ 1121 @@ -68800,7 +68683,7 @@ "timeUnixMs": 1633426973430, "relativeTimeMs": 12104430, "teamIds": [ - 14 + "60" ], "runIds": [ 1122 @@ -68818,7 +68701,7 @@ "timeUnixMs": 1633426997726, "relativeTimeMs": 12128726, "teamIds": [ - 87 + "66" ], "runIds": [ 1123 @@ -68836,7 +68719,7 @@ "timeUnixMs": 1633427016581, "relativeTimeMs": 12147581, "teamIds": [ - 12 + "56" ], "runIds": [ 1124 @@ -68854,7 +68737,7 @@ "timeUnixMs": 1633427023503, "relativeTimeMs": 12154503, "teamIds": [ - 36 + "80" ], "runIds": [ 1125 @@ -68872,7 +68755,7 @@ "timeUnixMs": 1633427027396, "relativeTimeMs": 12158396, "teamIds": [ - 12 + "56" ], "runIds": [ 1124 @@ -68890,7 +68773,7 @@ "timeUnixMs": 1633427029769, "relativeTimeMs": 12160769, "teamIds": [ - 43 + "92" ], "runIds": [ 1126 @@ -68908,7 +68791,7 @@ "timeUnixMs": 1633427033460, "relativeTimeMs": 12164460, "teamIds": [ - 22 + "103" ], "runIds": [ 1127 @@ -68926,7 +68809,7 @@ "timeUnixMs": 1633427054078, "relativeTimeMs": 12185078, "teamIds": [ - 44 + "72" ], "runIds": [ 1128 @@ -68944,7 +68827,7 @@ "timeUnixMs": 1633427058484, "relativeTimeMs": 12189484, "teamIds": [ - 22 + "103" ], "runIds": [ 1127 @@ -68962,7 +68845,7 @@ "timeUnixMs": 1633427070055, "relativeTimeMs": 12201055, "teamIds": [ - 33 + "52" ], "runIds": [ 1132 @@ -68980,7 +68863,7 @@ "timeUnixMs": 1633427072938, "relativeTimeMs": 12203938, "teamIds": [ - 109 + "75" ], "runIds": [ 1129 @@ -68998,7 +68881,7 @@ "timeUnixMs": 1633427078195, "relativeTimeMs": 12209195, "teamIds": [ - 15 + "6" ], "runIds": [ 1130 @@ -69016,7 +68899,7 @@ "timeUnixMs": 1633427083568, "relativeTimeMs": 12214568, "teamIds": [ - 33 + "52" ], "runIds": [ 1132 @@ -69034,7 +68917,7 @@ "timeUnixMs": 1633427085029, "relativeTimeMs": 12216029, "teamIds": [ - 111 + "41" ], "runIds": [ 1133 @@ -69052,7 +68935,7 @@ "timeUnixMs": 1633427094643, "relativeTimeMs": 12225643, "teamIds": [ - 13 + "25" ], "runIds": [ 1134 @@ -69070,7 +68953,7 @@ "timeUnixMs": 1633427095359, "relativeTimeMs": 12226359, "teamIds": [ - 75 + "48" ], "runIds": [ 1135 @@ -69088,7 +68971,7 @@ "timeUnixMs": 1633427099130, "relativeTimeMs": 12230130, "teamIds": [ - 59 + "71" ], "runIds": [ 1131 @@ -69106,7 +68989,7 @@ "timeUnixMs": 1633427099457, "relativeTimeMs": 12230457, "teamIds": [ - 27 + "96" ], "runIds": [ 1137 @@ -69124,7 +69007,7 @@ "timeUnixMs": 1633427126655, "relativeTimeMs": 12257655, "teamIds": [ - 68 + "107" ], "runIds": [ 1136 @@ -69142,7 +69025,7 @@ "timeUnixMs": 1633427127886, "relativeTimeMs": 12258886, "teamIds": [ - 6 + "19" ], "runIds": [ 1138 @@ -69160,7 +69043,7 @@ "timeUnixMs": 1633427143460, "relativeTimeMs": 12274460, "teamIds": [ - 33 + "52" ], "runIds": [ 1140 @@ -69178,7 +69061,7 @@ "timeUnixMs": 1633427145219, "relativeTimeMs": 12276219, "teamIds": [ - 29 + "10" ], "runIds": [ 1141 @@ -69196,7 +69079,7 @@ "timeUnixMs": 1633427145335, "relativeTimeMs": 12276335, "teamIds": [ - 43 + "92" ], "runIds": [ 1139 @@ -69214,7 +69097,7 @@ "timeUnixMs": 1633427151582, "relativeTimeMs": 12282582, "teamIds": [ - 29 + "10" ], "runIds": [ 1141 @@ -69232,7 +69115,7 @@ "timeUnixMs": 1633427154552, "relativeTimeMs": 12285552, "teamIds": [ - 32 + "45" ], "runIds": [ 1142 @@ -69250,7 +69133,7 @@ "timeUnixMs": 1633427159240, "relativeTimeMs": 12290240, "teamIds": [ - 77 + "5" ], "runIds": [ 1143 @@ -69268,7 +69151,7 @@ "timeUnixMs": 1633427160793, "relativeTimeMs": 12291793, "teamIds": [ - 33 + "52" ], "runIds": [ 1140 @@ -69286,7 +69169,7 @@ "timeUnixMs": 1633427168008, "relativeTimeMs": 12299008, "teamIds": [ - 93 + "49" ], "runIds": [ 1144 @@ -69304,7 +69187,7 @@ "timeUnixMs": 1633427170323, "relativeTimeMs": 12301323, "teamIds": [ - 110 + "81" ], "runIds": [ 1145 @@ -69322,7 +69205,7 @@ "timeUnixMs": 1633427175630, "relativeTimeMs": 12306630, "teamIds": [ - 40 + "87" ], "runIds": [ 1146 @@ -69340,7 +69223,7 @@ "timeUnixMs": 1633427201122, "relativeTimeMs": 12332122, "teamIds": [ - 78 + "46" ], "runIds": [ 1147 @@ -69358,7 +69241,7 @@ "timeUnixMs": 1633427206495, "relativeTimeMs": 12337495, "teamIds": [ - 47 + "99" ], "runIds": [ 1148 @@ -69376,7 +69259,7 @@ "timeUnixMs": 1633427209723, "relativeTimeMs": 12340723, "teamIds": [ - 57 + "51" ], "runIds": [ 1149 @@ -69394,7 +69277,7 @@ "timeUnixMs": 1633427210807, "relativeTimeMs": 12341807, "teamIds": [ - 26 + "64" ], "runIds": [ 1150 @@ -69412,7 +69295,7 @@ "timeUnixMs": 1633427210971, "relativeTimeMs": 12341971, "teamIds": [ - 75 + "48" ], "runIds": [ 1151 @@ -69430,7 +69313,7 @@ "timeUnixMs": 1633427222280, "relativeTimeMs": 12353280, "teamIds": [ - 106 + "110" ], "runIds": [ 1152 @@ -69448,7 +69331,7 @@ "timeUnixMs": 1633427236864, "relativeTimeMs": 12367864, "teamIds": [ - 63 + "42" ], "runIds": [ 1153 @@ -69466,7 +69349,7 @@ "timeUnixMs": 1633427238517, "relativeTimeMs": 12369517, "teamIds": [ - 17 + "59" ], "runIds": [ 1154 @@ -69484,7 +69367,7 @@ "timeUnixMs": 1633427242908, "relativeTimeMs": 12373908, "teamIds": [ - 67 + "115" ], "runIds": [ 1155 @@ -69502,7 +69385,7 @@ "timeUnixMs": 1633427245699, "relativeTimeMs": 12376699, "teamIds": [ - 17 + "59" ], "runIds": [ 1154 @@ -69520,7 +69403,7 @@ "timeUnixMs": 1633427253538, "relativeTimeMs": 12384538, "teamIds": [ - 109 + "75" ], "runIds": [ 1156 @@ -69538,7 +69421,7 @@ "timeUnixMs": 1633427286075, "relativeTimeMs": 12417075, "teamIds": [ - 34 + "37" ], "runIds": [ 1157 @@ -69556,7 +69439,7 @@ "timeUnixMs": 1633427329084, "relativeTimeMs": 12460084, "teamIds": [ - 42 + "12" ], "runIds": [ 1158 @@ -69574,7 +69457,7 @@ "timeUnixMs": 1633427344312, "relativeTimeMs": 12475312, "teamIds": [ - 5 + "70" ], "runIds": [ 1159 @@ -69592,7 +69475,7 @@ "timeUnixMs": 1633427349239, "relativeTimeMs": 12480239, "teamIds": [ - 40 + "87" ], "runIds": [ 1161 @@ -69610,7 +69493,7 @@ "timeUnixMs": 1633427355196, "relativeTimeMs": 12486196, "teamIds": [ - 49 + "98" ], "runIds": [ 1160 @@ -69628,7 +69511,7 @@ "timeUnixMs": 1633427375835, "relativeTimeMs": 12506835, "teamIds": [ - 39 + "79" ], "runIds": [ 1162 @@ -69646,7 +69529,7 @@ "timeUnixMs": 1633427389230, "relativeTimeMs": 12520230, "teamIds": [ - 13 + "25" ], "runIds": [ 1163 @@ -69664,7 +69547,7 @@ "timeUnixMs": 1633427409060, "relativeTimeMs": 12540060, "teamIds": [ - 66 + "117" ], "runIds": [ 1165 @@ -69682,7 +69565,7 @@ "timeUnixMs": 1633427413790, "relativeTimeMs": 12544790, "teamIds": [ - 48 + "106" ], "runIds": [ 1164 @@ -69700,7 +69583,7 @@ "timeUnixMs": 1633427414691, "relativeTimeMs": 12545691, "teamIds": [ - 19 + "91" ], "runIds": [ 1166 @@ -69718,7 +69601,7 @@ "timeUnixMs": 1633427420059, "relativeTimeMs": 12551059, "teamIds": [ - 75 + "48" ], "runIds": [ 1167 @@ -69736,7 +69619,7 @@ "timeUnixMs": 1633427433288, "relativeTimeMs": 12564288, "teamIds": [ - 51 + "18" ], "runIds": [ 1168 @@ -69754,7 +69637,7 @@ "timeUnixMs": 1633427436747, "relativeTimeMs": 12567747, "teamIds": [ - 12 + "56" ], "runIds": [ 1169 @@ -69772,7 +69655,7 @@ "timeUnixMs": 1633427444038, "relativeTimeMs": 12575038, "teamIds": [ - 12 + "56" ], "runIds": [ 1169 @@ -69790,7 +69673,7 @@ "timeUnixMs": 1633427452219, "relativeTimeMs": 12583219, "teamIds": [ - 6 + "19" ], "runIds": [ 1171 @@ -69808,7 +69691,7 @@ "timeUnixMs": 1633427457305, "relativeTimeMs": 12588305, "teamIds": [ - 36 + "80" ], "runIds": [ 1170 @@ -69826,7 +69709,7 @@ "timeUnixMs": 1633427457308, "relativeTimeMs": 12588308, "teamIds": [ - 84 + "40" ], "runIds": [ 1172 @@ -69844,7 +69727,7 @@ "timeUnixMs": 1633427479678, "relativeTimeMs": 12610678, "teamIds": [ - 2 + "101" ], "runIds": [ 1173 @@ -69862,7 +69745,7 @@ "timeUnixMs": 1633427482916, "relativeTimeMs": 12613916, "teamIds": [ - 91 + "54" ], "runIds": [ 1174 @@ -69880,7 +69763,7 @@ "timeUnixMs": 1633427486560, "relativeTimeMs": 12617560, "teamIds": [ - 42 + "12" ], "runIds": [ 1175 @@ -69898,7 +69781,7 @@ "timeUnixMs": 1633427491040, "relativeTimeMs": 12622040, "teamIds": [ - 55 + "43" ], "runIds": [ 1176 @@ -69916,7 +69799,7 @@ "timeUnixMs": 1633427509111, "relativeTimeMs": 12640111, "teamIds": [ - 45 + "34" ], "runIds": [ 1177 @@ -69934,7 +69817,7 @@ "timeUnixMs": 1633427513464, "relativeTimeMs": 12644464, "teamIds": [ - 36 + "80" ], "runIds": [ 1178 @@ -69952,7 +69835,7 @@ "timeUnixMs": 1633427521322, "relativeTimeMs": 12652322, "teamIds": [ - 39 + "79" ], "runIds": [ 1179 @@ -69970,7 +69853,7 @@ "timeUnixMs": 1633427527061, "relativeTimeMs": 12658061, "teamIds": [ - 39 + "79" ], "runIds": [ 1181 @@ -69988,7 +69871,7 @@ "timeUnixMs": 1633427530463, "relativeTimeMs": 12661463, "teamIds": [ - 73 + "76" ], "runIds": [ 1180 @@ -70006,7 +69889,7 @@ "timeUnixMs": 1633427543296, "relativeTimeMs": 12674296, "teamIds": [ - 51 + "18" ], "runIds": [ 1183 @@ -70024,7 +69907,7 @@ "timeUnixMs": 1633427543618, "relativeTimeMs": 12674618, "teamIds": [ - 99 + "17" ], "runIds": [ 1182 @@ -70042,7 +69925,7 @@ "timeUnixMs": 1633427549851, "relativeTimeMs": 12680851, "teamIds": [ - 77 + "5" ], "runIds": [ 1184 @@ -70060,7 +69943,7 @@ "timeUnixMs": 1633427561195, "relativeTimeMs": 12692195, "teamIds": [ - 24 + "28" ], "runIds": [ 1185 @@ -70078,7 +69961,7 @@ "timeUnixMs": 1633427563441, "relativeTimeMs": 12694441, "teamIds": [ - 4 + "50" ], "runIds": [ 1187 @@ -70096,7 +69979,7 @@ "timeUnixMs": 1633427570866, "relativeTimeMs": 12701866, "teamIds": [ - 4 + "50" ], "runIds": [ 1187 @@ -70114,7 +69997,7 @@ "timeUnixMs": 1633427574479, "relativeTimeMs": 12705479, "teamIds": [ - 88 + "26" ], "runIds": [ 1188 @@ -70132,7 +70015,7 @@ "timeUnixMs": 1633427574494, "relativeTimeMs": 12705494, "teamIds": [ - 20 + "95" ], "runIds": [ 1186 @@ -70150,7 +70033,7 @@ "timeUnixMs": 1633427575614, "relativeTimeMs": 12706614, "teamIds": [ - 55 + "43" ], "runIds": [ 1189 @@ -70168,7 +70051,7 @@ "timeUnixMs": 1633427576407, "relativeTimeMs": 12707407, "teamIds": [ - 43 + "92" ], "runIds": [ 1190 @@ -70186,7 +70069,7 @@ "timeUnixMs": 1633427581758, "relativeTimeMs": 12712758, "teamIds": [ - 24 + "28" ], "runIds": [ 1191 @@ -70204,7 +70087,7 @@ "timeUnixMs": 1633427584496, "relativeTimeMs": 12715496, "teamIds": [ - 106 + "110" ], "runIds": [ 1193 @@ -70222,7 +70105,7 @@ "timeUnixMs": 1633427585078, "relativeTimeMs": 12716078, "teamIds": [ - 60 + "31" ], "runIds": [ 1192 @@ -70240,7 +70123,7 @@ "timeUnixMs": 1633427595566, "relativeTimeMs": 12726566, "teamIds": [ - 81 + "86" ], "runIds": [ 1194 @@ -70258,7 +70141,7 @@ "timeUnixMs": 1633427605305, "relativeTimeMs": 12736305, "teamIds": [ - 15 + "6" ], "runIds": [ 1195 @@ -70276,7 +70159,7 @@ "timeUnixMs": 1633427614786, "relativeTimeMs": 12745786, "teamIds": [ - 54 + "73" ], "runIds": [ 1196 @@ -70294,7 +70177,7 @@ "timeUnixMs": 1633427619503, "relativeTimeMs": 12750503, "teamIds": [ - 78 + "46" ], "runIds": [ 1197 @@ -70312,7 +70195,7 @@ "timeUnixMs": 1633427623268, "relativeTimeMs": 12754268, "teamIds": [ - 74 + "78" ], "runIds": [ 1198 @@ -70330,7 +70213,7 @@ "timeUnixMs": 1633427640235, "relativeTimeMs": 12771235, "teamIds": [ - 63 + "42" ], "runIds": [ 1199 @@ -70348,7 +70231,7 @@ "timeUnixMs": 1633427647696, "relativeTimeMs": 12778696, "teamIds": [ - 35 + "32" ], "runIds": [ 1200 @@ -70366,7 +70249,7 @@ "timeUnixMs": 1633427666846, "relativeTimeMs": 12797846, "teamIds": [ - 20 + "95" ], "runIds": [ 1201 @@ -70384,7 +70267,7 @@ "timeUnixMs": 1633427672526, "relativeTimeMs": 12803526, "teamIds": [ - 62 + "44" ], "runIds": [ 1202 @@ -70402,7 +70285,7 @@ "timeUnixMs": 1633427677303, "relativeTimeMs": 12808303, "teamIds": [ - 32 + "45" ], "runIds": [ 1203 @@ -70420,7 +70303,7 @@ "timeUnixMs": 1633427692863, "relativeTimeMs": 12823863, "teamIds": [ - 31 + "33" ], "runIds": [ 1204 @@ -70438,7 +70321,7 @@ "timeUnixMs": 1633427709726, "relativeTimeMs": 12840726, "teamIds": [ - 17 + "59" ], "runIds": [ 1205 @@ -70456,7 +70339,7 @@ "timeUnixMs": 1633427712717, "relativeTimeMs": 12843717, "teamIds": [ - 17 + "59" ], "runIds": [ 1205 @@ -70474,7 +70357,7 @@ "timeUnixMs": 1633427715441, "relativeTimeMs": 12846441, "teamIds": [ - 66 + "117" ], "runIds": [ 1207 @@ -70492,7 +70375,7 @@ "timeUnixMs": 1633427724279, "relativeTimeMs": 12855279, "teamIds": [ - 33 + "52" ], "runIds": [ 1208 @@ -70510,7 +70393,7 @@ "timeUnixMs": 1633427728993, "relativeTimeMs": 12859993, "teamIds": [ - 67 + "115" ], "runIds": [ 1209 @@ -70528,7 +70411,7 @@ "timeUnixMs": 1633427746262, "relativeTimeMs": 12877262, "teamIds": [ - 28 + "112" ], "runIds": [ 1206 @@ -70546,7 +70429,7 @@ "timeUnixMs": 1633427758103, "relativeTimeMs": 12889103, "teamIds": [ - 86 + "38" ], "runIds": [ 1210 @@ -70564,7 +70447,7 @@ "timeUnixMs": 1633427768610, "relativeTimeMs": 12899610, "teamIds": [ - 33 + "52" ], "runIds": [ 1208 @@ -70582,7 +70465,7 @@ "timeUnixMs": 1633427779858, "relativeTimeMs": 12910858, "teamIds": [ - 86 + "38" ], "runIds": [ 1211 @@ -70600,7 +70483,7 @@ "timeUnixMs": 1633427784085, "relativeTimeMs": 12915085, "teamIds": [ - 75 + "48" ], "runIds": [ 1212 @@ -70618,7 +70501,7 @@ "timeUnixMs": 1633427796562, "relativeTimeMs": 12927562, "teamIds": [ - 110 + "81" ], "runIds": [ 1213 @@ -70636,7 +70519,7 @@ "timeUnixMs": 1633427809338, "relativeTimeMs": 12940338, "teamIds": [ - 84 + "40" ], "runIds": [ 1214 @@ -70654,7 +70537,7 @@ "timeUnixMs": 1633427820109, "relativeTimeMs": 12951109, "teamIds": [ - 11 + "69" ], "runIds": [ 1215 @@ -70672,7 +70555,7 @@ "timeUnixMs": 1633427830288, "relativeTimeMs": 12961288, "teamIds": [ - 11 + "69" ], "runIds": [ 1215 @@ -70690,7 +70573,7 @@ "timeUnixMs": 1633427831732, "relativeTimeMs": 12962732, "teamIds": [ - 20 + "95" ], "runIds": [ 1216 @@ -70708,7 +70591,7 @@ "timeUnixMs": 1633427873547, "relativeTimeMs": 13004547, "teamIds": [ - 74 + "78" ], "runIds": [ 1217 @@ -70726,7 +70609,7 @@ "timeUnixMs": 1633427890124, "relativeTimeMs": 13021124, "teamIds": [ - 15 + "6" ], "runIds": [ 1218 @@ -70744,7 +70627,7 @@ "timeUnixMs": 1633427917719, "relativeTimeMs": 13048719, "teamIds": [ - 84 + "40" ], "runIds": [ 1219 @@ -70762,7 +70645,7 @@ "timeUnixMs": 1633427923195, "relativeTimeMs": 13054195, "teamIds": [ - 6 + "19" ], "runIds": [ 1220 @@ -70780,7 +70663,7 @@ "timeUnixMs": 1633427927423, "relativeTimeMs": 13058423, "teamIds": [ - 103 + "24" ], "runIds": [ 1221 @@ -70798,7 +70681,7 @@ "timeUnixMs": 1633427935673, "relativeTimeMs": 13066673, "teamIds": [ - 7 + "65" ], "runIds": [ 1222 @@ -70816,7 +70699,7 @@ "timeUnixMs": 1633427945316, "relativeTimeMs": 13076316, "teamIds": [ - 7 + "65" ], "runIds": [ 1222 @@ -70834,7 +70717,7 @@ "timeUnixMs": 1633427964614, "relativeTimeMs": 13095614, "teamIds": [ - 75 + "48" ], "runIds": [ 1223 @@ -70852,7 +70735,7 @@ "timeUnixMs": 1633427983490, "relativeTimeMs": 13114490, "teamIds": [ - 14 + "60" ], "runIds": [ 1224 @@ -70870,7 +70753,7 @@ "timeUnixMs": 1633427989274, "relativeTimeMs": 13120274, "teamIds": [ - 71 + "105" ], "runIds": [ 1225 @@ -70888,7 +70771,7 @@ "timeUnixMs": 1633428000196, "relativeTimeMs": 13131196, "teamIds": [ - 87 + "66" ], "runIds": [ 1226 @@ -70906,7 +70789,7 @@ "timeUnixMs": 1633428016122, "relativeTimeMs": 13147122, "teamIds": [ - 97 + "97" ], "runIds": [ 1227 @@ -70924,7 +70807,7 @@ "timeUnixMs": 1633428016577, "relativeTimeMs": 13147577, "teamIds": [ - 36 + "80" ], "runIds": [ 1228 @@ -70942,7 +70825,7 @@ "timeUnixMs": 1633428017961, "relativeTimeMs": 13148961, "teamIds": [ - 51 + "18" ], "runIds": [ 1229 @@ -70960,7 +70843,7 @@ "timeUnixMs": 1633428044792, "relativeTimeMs": 13175792, "teamIds": [ - 13 + "25" ], "runIds": [ 1230 @@ -70978,7 +70861,7 @@ "timeUnixMs": 1633428045989, "relativeTimeMs": 13176989, "teamIds": [ - 57 + "51" ], "runIds": [ 1231 @@ -70996,7 +70879,7 @@ "timeUnixMs": 1633428047714, "relativeTimeMs": 13178714, "teamIds": [ - 66 + "117" ], "runIds": [ 1232 @@ -71014,7 +70897,7 @@ "timeUnixMs": 1633428087119, "relativeTimeMs": 13218119, "teamIds": [ - 20 + "95" ], "runIds": [ 1233 @@ -71032,7 +70915,7 @@ "timeUnixMs": 1633428112516, "relativeTimeMs": 13243516, "teamIds": [ - 36 + "80" ], "runIds": [ 1234 @@ -71050,7 +70933,7 @@ "timeUnixMs": 1633428114581, "relativeTimeMs": 13245581, "teamIds": [ - 16 + "109" ], "runIds": [ 1235 @@ -71068,7 +70951,7 @@ "timeUnixMs": 1633428132721, "relativeTimeMs": 13263721, "teamIds": [ - 22 + "103" ], "runIds": [ 1237 @@ -71086,7 +70969,7 @@ "timeUnixMs": 1633428138954, "relativeTimeMs": 13269954, "teamIds": [ - 108 + "63" ], "runIds": [ 1236 @@ -71104,7 +70987,7 @@ "timeUnixMs": 1633428141783, "relativeTimeMs": 13272783, "teamIds": [ - 22 + "103" ], "runIds": [ 1237 @@ -71122,7 +71005,7 @@ "timeUnixMs": 1633428144249, "relativeTimeMs": 13275249, "teamIds": [ - 80 + "83" ], "runIds": [ 1238 @@ -71140,7 +71023,7 @@ "timeUnixMs": 1633428154556, "relativeTimeMs": 13285556, "teamIds": [ - 95 + "30" ], "runIds": [ 1240 @@ -71158,7 +71041,7 @@ "timeUnixMs": 1633428155580, "relativeTimeMs": 13286580, "teamIds": [ - 60 + "31" ], "runIds": [ 1239 @@ -71176,7 +71059,7 @@ "timeUnixMs": 1633428157322, "relativeTimeMs": 13288322, "teamIds": [ - 8 + "29" ], "runIds": [ 1241 @@ -71194,7 +71077,7 @@ "timeUnixMs": 1633428173846, "relativeTimeMs": 13304846, "teamIds": [ - 46 + "53" ], "runIds": [ 1243 @@ -71212,7 +71095,7 @@ "timeUnixMs": 1633428174993, "relativeTimeMs": 13305993, "teamIds": [ - 36 + "80" ], "runIds": [ 1244 @@ -71230,7 +71113,7 @@ "timeUnixMs": 1633428176030, "relativeTimeMs": 13307030, "teamIds": [ - 20 + "95" ], "runIds": [ 1242 @@ -71248,7 +71131,7 @@ "timeUnixMs": 1633428180839, "relativeTimeMs": 13311839, "teamIds": [ - 82 + "118" ], "runIds": [ 1245 @@ -71266,7 +71149,7 @@ "timeUnixMs": 1633428186083, "relativeTimeMs": 13317083, "teamIds": [ - 108 + "63" ], "runIds": [ 1246 @@ -71284,7 +71167,7 @@ "timeUnixMs": 1633428192136, "relativeTimeMs": 13323136, "teamIds": [ - 43 + "92" ], "runIds": [ 1247 @@ -71302,7 +71185,7 @@ "timeUnixMs": 1633428200567, "relativeTimeMs": 13331567, "teamIds": [ - 97 + "97" ], "runIds": [ 1248 @@ -71320,7 +71203,7 @@ "timeUnixMs": 1633428214840, "relativeTimeMs": 13345840, "teamIds": [ - 3 + "67" ], "runIds": [ 1249 @@ -71338,7 +71221,7 @@ "timeUnixMs": 1633428217116, "relativeTimeMs": 13348116, "teamIds": [ - 9 + "114" ], "runIds": [ 1250 @@ -71356,7 +71239,7 @@ "timeUnixMs": 1633428224667, "relativeTimeMs": 13355667, "teamIds": [ - 9 + "114" ], "runIds": [ 1250 @@ -71374,7 +71257,7 @@ "timeUnixMs": 1633428231883, "relativeTimeMs": 13362883, "teamIds": [ - 9 + "114" ], "runIds": [ 1252 @@ -71392,7 +71275,7 @@ "timeUnixMs": 1633428235103, "relativeTimeMs": 13366103, "teamIds": [ - 64 + "4" ], "runIds": [ 1251 @@ -71410,7 +71293,7 @@ "timeUnixMs": 1633428255076, "relativeTimeMs": 13386076, "teamIds": [ - 8 + "29" ], "runIds": [ 1254 @@ -71428,7 +71311,7 @@ "timeUnixMs": 1633428259770, "relativeTimeMs": 13390770, "teamIds": [ - 18 + "68" ], "runIds": [ 1255 @@ -71446,7 +71329,7 @@ "timeUnixMs": 1633428259890, "relativeTimeMs": 13390890, "teamIds": [ - 80 + "83" ], "runIds": [ 1253 @@ -71464,7 +71347,7 @@ "timeUnixMs": 1633428269369, "relativeTimeMs": 13400369, "teamIds": [ - 53 + "116" ], "runIds": [ 1256 @@ -71482,7 +71365,7 @@ "timeUnixMs": 1633428270199, "relativeTimeMs": 13401199, "teamIds": [ - 43 + "92" ], "runIds": [ 1257 @@ -71500,7 +71383,7 @@ "timeUnixMs": 1633428282470, "relativeTimeMs": 13413470, "teamIds": [ - 9 + "114" ], "runIds": [ 1252 @@ -71518,7 +71401,7 @@ "timeUnixMs": 1633428293296, "relativeTimeMs": 13424296, "teamIds": [ - 76 + "9" ], "runIds": [ 1258 @@ -71536,7 +71419,7 @@ "timeUnixMs": 1633428295603, "relativeTimeMs": 13426603, "teamIds": [ - 27 + "96" ], "runIds": [ 1259 @@ -71554,7 +71437,7 @@ "timeUnixMs": 1633428308396, "relativeTimeMs": 13439396, "teamIds": [ - 87 + "66" ], "runIds": [ 1260 @@ -71572,7 +71455,7 @@ "timeUnixMs": 1633428321228, "relativeTimeMs": 13452228, "teamIds": [ - 17 + "59" ], "runIds": [ 1261 @@ -71590,7 +71473,7 @@ "timeUnixMs": 1633428332504, "relativeTimeMs": 13463504, "teamIds": [ - 95 + "30" ], "runIds": [ 1262 @@ -71608,7 +71491,7 @@ "timeUnixMs": 1633428338611, "relativeTimeMs": 13469611, "teamIds": [ - 53 + "116" ], "runIds": [ 1264 @@ -71626,7 +71509,7 @@ "timeUnixMs": 1633428344113, "relativeTimeMs": 13475113, "teamIds": [ - 27 + "96" ], "runIds": [ 1263 @@ -71644,7 +71527,7 @@ "timeUnixMs": 1633428349186, "relativeTimeMs": 13480186, "teamIds": [ - 16 + "109" ], "runIds": [ 1265 @@ -71662,7 +71545,7 @@ "timeUnixMs": 1633428352459, "relativeTimeMs": 13483459, "teamIds": [ - 57 + "51" ], "runIds": [ 1266 @@ -71680,7 +71563,7 @@ "timeUnixMs": 1633428354096, "relativeTimeMs": 13485096, "teamIds": [ - 17 + "59" ], "runIds": [ 1261 @@ -71698,7 +71581,7 @@ "timeUnixMs": 1633428357159, "relativeTimeMs": 13488159, "teamIds": [ - 81 + "86" ], "runIds": [ 1267 @@ -71716,7 +71599,7 @@ "timeUnixMs": 1633428357935, "relativeTimeMs": 13488935, "teamIds": [ - 24 + "28" ], "runIds": [ 1268 @@ -71734,7 +71617,7 @@ "timeUnixMs": 1633428374689, "relativeTimeMs": 13505689, "teamIds": [ - 95 + "30" ], "runIds": [ 1269 @@ -71752,7 +71635,7 @@ "timeUnixMs": 1633428375316, "relativeTimeMs": 13506316, "teamIds": [ - 73 + "76" ], "runIds": [ 1270 @@ -71770,7 +71653,7 @@ "timeUnixMs": 1633428380583, "relativeTimeMs": 13511583, "teamIds": [ - 88 + "26" ], "runIds": [ 1271 @@ -71788,7 +71671,7 @@ "timeUnixMs": 1633428388483, "relativeTimeMs": 13519483, "teamIds": [ - 3 + "67" ], "runIds": [ 1272 @@ -71806,7 +71689,7 @@ "timeUnixMs": 1633428412568, "relativeTimeMs": 13543568, "teamIds": [ - 88 + "26" ], "runIds": [ 1273 @@ -71824,7 +71707,7 @@ "timeUnixMs": 1633428432820, "relativeTimeMs": 13563820, "teamIds": [ - 75 + "48" ], "runIds": [ 1274 @@ -71842,7 +71725,7 @@ "timeUnixMs": 1633428446658, "relativeTimeMs": 13577658, "teamIds": [ - 30 + "7" ], "runIds": [ 1275 @@ -71860,7 +71743,7 @@ "timeUnixMs": 1633428463057, "relativeTimeMs": 13594057, "teamIds": [ - 111 + "41" ], "runIds": [ 1276 @@ -71878,7 +71761,7 @@ "timeUnixMs": 1633428463461, "relativeTimeMs": 13594461, "teamIds": [ - 4 + "50" ], "runIds": [ 1278 @@ -71896,7 +71779,7 @@ "timeUnixMs": 1633428467263, "relativeTimeMs": 13598263, "teamIds": [ - 23 + "108" ], "runIds": [ 1277 @@ -71914,7 +71797,7 @@ "timeUnixMs": 1633428467853, "relativeTimeMs": 13598853, "teamIds": [ - 4 + "50" ], "runIds": [ 1278 @@ -71932,7 +71815,7 @@ "timeUnixMs": 1633428471493, "relativeTimeMs": 13602493, "teamIds": [ - 42 + "12" ], "runIds": [ 1279 @@ -71950,7 +71833,7 @@ "timeUnixMs": 1633428479510, "relativeTimeMs": 13610510, "teamIds": [ - 26 + "64" ], "runIds": [ 1280 @@ -71968,7 +71851,7 @@ "timeUnixMs": 1633428488186, "relativeTimeMs": 13619186, "teamIds": [ - 51 + "18" ], "runIds": [ 1282 @@ -71986,7 +71869,7 @@ "timeUnixMs": 1633428490635, "relativeTimeMs": 13621635, "teamIds": [ - 27 + "96" ], "runIds": [ 1281 @@ -72004,7 +71887,7 @@ "timeUnixMs": 1633428503672, "relativeTimeMs": 13634672, "teamIds": [ - 16 + "109" ], "runIds": [ 1284 @@ -72022,7 +71905,7 @@ "timeUnixMs": 1633428505881, "relativeTimeMs": 13636881, "teamIds": [ - 94 + "93" ], "runIds": [ 1283 @@ -72040,7 +71923,7 @@ "timeUnixMs": 1633428511920, "relativeTimeMs": 13642920, "teamIds": [ - 55 + "43" ], "runIds": [ 1285 @@ -72058,7 +71941,7 @@ "timeUnixMs": 1633428543444, "relativeTimeMs": 13674444, "teamIds": [ - 13 + "25" ], "runIds": [ 1286 @@ -72076,7 +71959,7 @@ "timeUnixMs": 1633428544279, "relativeTimeMs": 13675279, "teamIds": [ - 51 + "18" ], "runIds": [ 1287 @@ -72094,7 +71977,7 @@ "timeUnixMs": 1633428546371, "relativeTimeMs": 13677371, "teamIds": [ - 17 + "59" ], "runIds": [ 1288 @@ -72112,7 +71995,7 @@ "timeUnixMs": 1633428554699, "relativeTimeMs": 13685699, "teamIds": [ - 79 + "62" ], "runIds": [ 1289 @@ -72130,7 +72013,7 @@ "timeUnixMs": 1633428564564, "relativeTimeMs": 13695564, "teamIds": [ - 98 + "90" ], "runIds": [ 1291 @@ -72148,7 +72031,7 @@ "timeUnixMs": 1633428572254, "relativeTimeMs": 13703254, "teamIds": [ - 103 + "24" ], "runIds": [ 1290 @@ -72166,7 +72049,7 @@ "timeUnixMs": 1633428574971, "relativeTimeMs": 13705971, "teamIds": [ - 88 + "26" ], "runIds": [ 1292 @@ -72184,7 +72067,7 @@ "timeUnixMs": 1633428579174, "relativeTimeMs": 13710174, "teamIds": [ - 17 + "59" ], "runIds": [ 1288 @@ -72202,7 +72085,7 @@ "timeUnixMs": 1633428579514, "relativeTimeMs": 13710514, "teamIds": [ - 67 + "115" ], "runIds": [ 1293 @@ -72220,7 +72103,7 @@ "timeUnixMs": 1633428595055, "relativeTimeMs": 13726055, "teamIds": [ - 65 + "23" ], "runIds": [ 1296 @@ -72238,7 +72121,7 @@ "timeUnixMs": 1633428604117, "relativeTimeMs": 13735117, "teamIds": [ - 40 + "87" ], "runIds": [ 1295 @@ -72256,7 +72139,7 @@ "timeUnixMs": 1633428624207, "relativeTimeMs": 13755207, "teamIds": [ - 46 + "53" ], "runIds": [ 1294 @@ -72274,7 +72157,7 @@ "timeUnixMs": 1633428625747, "relativeTimeMs": 13756747, "teamIds": [ - 85 + "61" ], "runIds": [ 1297 @@ -72292,7 +72175,7 @@ "timeUnixMs": 1633428629913, "relativeTimeMs": 13760913, "teamIds": [ - 31 + "33" ], "runIds": [ 1298 @@ -72310,7 +72193,7 @@ "timeUnixMs": 1633428637404, "relativeTimeMs": 13768404, "teamIds": [ - 24 + "28" ], "runIds": [ 1300 @@ -72328,7 +72211,7 @@ "timeUnixMs": 1633428640021, "relativeTimeMs": 13771021, "teamIds": [ - 53 + "116" ], "runIds": [ 1299 @@ -72346,7 +72229,7 @@ "timeUnixMs": 1633428649655, "relativeTimeMs": 13780655, "teamIds": [ - 82 + "118" ], "runIds": [ 1301 @@ -72364,7 +72247,7 @@ "timeUnixMs": 1633428664141, "relativeTimeMs": 13795141, "teamIds": [ - 89 + "21" ], "runIds": [ 1302 @@ -72382,7 +72265,7 @@ "timeUnixMs": 1633428674651, "relativeTimeMs": 13805651, "teamIds": [ - 49 + "98" ], "runIds": [ 1303 @@ -72400,7 +72283,7 @@ "timeUnixMs": 1633428679878, "relativeTimeMs": 13810878, "teamIds": [ - 16 + "109" ], "runIds": [ 1304 @@ -72418,7 +72301,7 @@ "timeUnixMs": 1633428684908, "relativeTimeMs": 13815908, "teamIds": [ - 51 + "18" ], "runIds": [ 1305 @@ -72436,7 +72319,7 @@ "timeUnixMs": 1633428700561, "relativeTimeMs": 13831561, "teamIds": [ - 42 + "12" ], "runIds": [ 1306 @@ -72454,7 +72337,7 @@ "timeUnixMs": 1633428711358, "relativeTimeMs": 13842358, "teamIds": [ - 10 + "47" ], "runIds": [ 1308 @@ -72472,7 +72355,7 @@ "timeUnixMs": 1633428715154, "relativeTimeMs": 13846154, "teamIds": [ - 6 + "19" ], "runIds": [ 1307 @@ -72490,7 +72373,7 @@ "timeUnixMs": 1633428724914, "relativeTimeMs": 13855914, "teamIds": [ - 81 + "86" ], "runIds": [ 1310 @@ -72508,7 +72391,7 @@ "timeUnixMs": 1633428727119, "relativeTimeMs": 13858119, "teamIds": [ - 30 + "7" ], "runIds": [ 1311 @@ -72526,7 +72409,7 @@ "timeUnixMs": 1633428728772, "relativeTimeMs": 13859772, "teamIds": [ - 8 + "29" ], "runIds": [ 1309 @@ -72544,7 +72427,7 @@ "timeUnixMs": 1633428733829, "relativeTimeMs": 13864829, "teamIds": [ - 108 + "63" ], "runIds": [ 1312 @@ -72562,7 +72445,7 @@ "timeUnixMs": 1633428738463, "relativeTimeMs": 13869463, "teamIds": [ - 105 + "58" ], "runIds": [ 1313 @@ -72580,7 +72463,7 @@ "timeUnixMs": 1633428741472, "relativeTimeMs": 13872472, "teamIds": [ - 92 + "36" ], "runIds": [ 1314 @@ -72598,7 +72481,7 @@ "timeUnixMs": 1633428746394, "relativeTimeMs": 13877394, "teamIds": [ - 73 + "76" ], "runIds": [ 1315 @@ -72616,7 +72499,7 @@ "timeUnixMs": 1633428764240, "relativeTimeMs": 13895240, "teamIds": [ - 94 + "93" ], "runIds": [ 1316 @@ -72634,7 +72517,7 @@ "timeUnixMs": 1633428765566, "relativeTimeMs": 13896566, "teamIds": [ - 113 + "82" ], "runIds": [ 1317 @@ -72652,7 +72535,7 @@ "timeUnixMs": 1633428771679, "relativeTimeMs": 13902679, "teamIds": [ - 111 + "41" ], "runIds": [ 1318 @@ -72670,7 +72553,7 @@ "timeUnixMs": 1633428798780, "relativeTimeMs": 13929780, "teamIds": [ - 1 + "102" ], "runIds": [ 1321 @@ -72688,7 +72571,7 @@ "timeUnixMs": 1633428799653, "relativeTimeMs": 13930653, "teamIds": [ - 20 + "95" ], "runIds": [ 1319 @@ -72706,7 +72589,7 @@ "timeUnixMs": 1633428801022, "relativeTimeMs": 13932022, "teamIds": [ - 57 + "51" ], "runIds": [ 1320 @@ -72724,7 +72607,7 @@ "timeUnixMs": 1633428802973, "relativeTimeMs": 13933973, "teamIds": [ - 1 + "102" ], "runIds": [ 1321 @@ -72742,7 +72625,7 @@ "timeUnixMs": 1633428808460, "relativeTimeMs": 13939460, "teamIds": [ - 2 + "101" ], "runIds": [ 1322 @@ -72760,7 +72643,7 @@ "timeUnixMs": 1633428810179, "relativeTimeMs": 13941179, "teamIds": [ - 79 + "62" ], "runIds": [ 1323 @@ -72778,7 +72661,7 @@ "timeUnixMs": 1633428811449, "relativeTimeMs": 13942449, "teamIds": [ - 38 + "113" ], "runIds": [ 1324 @@ -72796,7 +72679,7 @@ "timeUnixMs": 1633428814975, "relativeTimeMs": 13945975, "teamIds": [ - 4 + "50" ], "runIds": [ 1325 @@ -72814,7 +72697,7 @@ "timeUnixMs": 1633428819409, "relativeTimeMs": 13950409, "teamIds": [ - 4 + "50" ], "runIds": [ 1325 @@ -72832,7 +72715,7 @@ "timeUnixMs": 1633428834512, "relativeTimeMs": 13965512, "teamIds": [ - 62 + "44" ], "runIds": [ 1326 @@ -72850,7 +72733,7 @@ "timeUnixMs": 1633428851346, "relativeTimeMs": 13982346, "teamIds": [ - 5 + "70" ], "runIds": [ 1329 @@ -72868,7 +72751,7 @@ "timeUnixMs": 1633428852660, "relativeTimeMs": 13983660, "teamIds": [ - 20 + "95" ], "runIds": [ 1330 @@ -72886,7 +72769,7 @@ "timeUnixMs": 1633428852956, "relativeTimeMs": 13983956, "teamIds": [ - 104 + "84" ], "runIds": [ 1327 @@ -72904,7 +72787,7 @@ "timeUnixMs": 1633428865219, "relativeTimeMs": 13996219, "teamIds": [ - 94 + "93" ], "runIds": [ 1328 @@ -72922,7 +72805,7 @@ "timeUnixMs": 1633428892825, "relativeTimeMs": 14023825, "teamIds": [ - 24 + "28" ], "runIds": [ 1331 @@ -72940,7 +72823,7 @@ "timeUnixMs": 1633428900399, "relativeTimeMs": 14031399, "teamIds": [ - 109 + "75" ], "runIds": [ 1332 @@ -72958,7 +72841,7 @@ "timeUnixMs": 1633428901631, "relativeTimeMs": 14032631, "teamIds": [ - 36 + "80" ], "runIds": [ 1333 @@ -72976,7 +72859,7 @@ "timeUnixMs": 1633428907255, "relativeTimeMs": 14038255, "teamIds": [ - 114 + "88" ], "runIds": [ 1334 @@ -72994,7 +72877,7 @@ "timeUnixMs": 1633428914678, "relativeTimeMs": 14045678, "teamIds": [ - 36 + "80" ], "runIds": [ 1335 @@ -73012,7 +72895,7 @@ "timeUnixMs": 1633428924069, "relativeTimeMs": 14055069, "teamIds": [ - 65 + "23" ], "runIds": [ 1336 @@ -73030,7 +72913,7 @@ "timeUnixMs": 1633428930329, "relativeTimeMs": 14061329, "teamIds": [ - 36 + "80" ], "runIds": [ 1337 @@ -73048,7 +72931,7 @@ "timeUnixMs": 1633428942088, "relativeTimeMs": 14073088, "teamIds": [ - 32 + "45" ], "runIds": [ 1338 @@ -73066,7 +72949,7 @@ "timeUnixMs": 1633428965031, "relativeTimeMs": 14096031, "teamIds": [ - 68 + "107" ], "runIds": [ 1339 @@ -73084,7 +72967,7 @@ "timeUnixMs": 1633428973407, "relativeTimeMs": 14104407, "teamIds": [ - 103 + "24" ], "runIds": [ 1340 @@ -73102,7 +72985,7 @@ "timeUnixMs": 1633428991001, "relativeTimeMs": 14122001, "teamIds": [ - 63 + "42" ], "runIds": [ 1341 @@ -73120,7 +73003,7 @@ "timeUnixMs": 1633429014617, "relativeTimeMs": 14145617, "teamIds": [ - 21 + "104" ], "runIds": [ 1343 @@ -73138,7 +73021,7 @@ "timeUnixMs": 1633429017113, "relativeTimeMs": 14148113, "teamIds": [ - 86 + "38" ], "runIds": [ 1342 @@ -73156,7 +73039,7 @@ "timeUnixMs": 1633429021486, "relativeTimeMs": 14152486, "teamIds": [ - 21 + "104" ], "runIds": [ 1343 @@ -73174,7 +73057,7 @@ "timeUnixMs": 1633429046936, "relativeTimeMs": 14177936, "teamIds": [ - 73 + "76" ], "runIds": [ 1345 @@ -73192,7 +73075,7 @@ "timeUnixMs": 1633429050699, "relativeTimeMs": 14181699, "teamIds": [ - 61 + "55" ], "runIds": [ 1346 @@ -73210,7 +73093,7 @@ "timeUnixMs": 1633429051389, "relativeTimeMs": 14182389, "teamIds": [ - 45 + "34" ], "runIds": [ 1344 @@ -73228,7 +73111,7 @@ "timeUnixMs": 1633429054419, "relativeTimeMs": 14185419, "teamIds": [ - 61 + "55" ], "runIds": [ 1346 @@ -73246,7 +73129,7 @@ "timeUnixMs": 1633429057631, "relativeTimeMs": 14188631, "teamIds": [ - 82 + "118" ], "runIds": [ 1347 @@ -73264,7 +73147,7 @@ "timeUnixMs": 1633429063270, "relativeTimeMs": 14194270, "teamIds": [ - 27 + "96" ], "runIds": [ 1348 @@ -73282,7 +73165,7 @@ "timeUnixMs": 1633429080267, "relativeTimeMs": 14211267, "teamIds": [ - 75 + "48" ], "runIds": [ 1349 @@ -73300,7 +73183,7 @@ "timeUnixMs": 1633429081617, "relativeTimeMs": 14212617, "teamIds": [ - 87 + "66" ], "runIds": [ 1350 @@ -73318,7 +73201,7 @@ "timeUnixMs": 1633429089748, "relativeTimeMs": 14220748, "teamIds": [ - 10 + "47" ], "runIds": [ 1353 @@ -73336,7 +73219,7 @@ "timeUnixMs": 1633429092092, "relativeTimeMs": 14223092, "teamIds": [ - 74 + "78" ], "runIds": [ 1351 @@ -73354,7 +73237,7 @@ "timeUnixMs": 1633429093854, "relativeTimeMs": 14224854, "teamIds": [ - 6 + "19" ], "runIds": [ 1352 @@ -73372,7 +73255,7 @@ "timeUnixMs": 1633429095494, "relativeTimeMs": 14226494, "teamIds": [ - 45 + "34" ], "runIds": [ 1354 @@ -73390,7 +73273,7 @@ "timeUnixMs": 1633429100803, "relativeTimeMs": 14231803, "teamIds": [ - 10 + "47" ], "runIds": [ 1353 @@ -73408,7 +73291,7 @@ "timeUnixMs": 1633429110231, "relativeTimeMs": 14241231, "teamIds": [ - 108 + "63" ], "runIds": [ 1355 @@ -73426,7 +73309,7 @@ "timeUnixMs": 1633429112279, "relativeTimeMs": 14243279, "teamIds": [ - 49 + "98" ], "runIds": [ 1356 @@ -73444,7 +73327,7 @@ "timeUnixMs": 1633429120656, "relativeTimeMs": 14251656, "teamIds": [ - 74 + "78" ], "runIds": [ 1357 @@ -73462,7 +73345,7 @@ "timeUnixMs": 1633429139818, "relativeTimeMs": 14270818, "teamIds": [ - 45 + "34" ], "runIds": [ 1358 @@ -73480,7 +73363,7 @@ "timeUnixMs": 1633429144712, "relativeTimeMs": 14275712, "teamIds": [ - 81 + "86" ], "runIds": [ 1359 @@ -73498,7 +73381,7 @@ "timeUnixMs": 1633429163420, "relativeTimeMs": 14294420, "teamIds": [ - 63 + "42" ], "runIds": [ 1360 @@ -73516,7 +73399,7 @@ "timeUnixMs": 1633429165731, "relativeTimeMs": 14296731, "teamIds": [ - 92 + "36" ], "runIds": [ 1361 @@ -73534,7 +73417,7 @@ "timeUnixMs": 1633429184361, "relativeTimeMs": 14315361, "teamIds": [ - 4 + "50" ], "runIds": [ 1363 @@ -73552,7 +73435,7 @@ "timeUnixMs": 1633429187259, "relativeTimeMs": 14318259, "teamIds": [ - 31 + "33" ], "runIds": [ 1362 @@ -73570,7 +73453,7 @@ "timeUnixMs": 1633429192167, "relativeTimeMs": 14323167, "teamIds": [ - 4 + "50" ], "runIds": [ 1363 @@ -73588,7 +73471,7 @@ "timeUnixMs": 1633429205560, "relativeTimeMs": 14336560, "teamIds": [ - 44 + "72" ], "runIds": [ 1365 @@ -73606,7 +73489,7 @@ "timeUnixMs": 1633429205933, "relativeTimeMs": 14336933, "teamIds": [ - 30 + "7" ], "runIds": [ 1364 @@ -73624,7 +73507,7 @@ "timeUnixMs": 1633429235876, "relativeTimeMs": 14366876, "teamIds": [ - 74 + "78" ], "runIds": [ 1368 @@ -73642,7 +73525,7 @@ "timeUnixMs": 1633429236406, "relativeTimeMs": 14367406, "teamIds": [ - 41 + "22" ], "runIds": [ 1367 @@ -73660,7 +73543,7 @@ "timeUnixMs": 1633429241618, "relativeTimeMs": 14372618, "teamIds": [ - 69 + "3" ], "runIds": [ 1366 @@ -73678,7 +73561,7 @@ "timeUnixMs": 1633429253158, "relativeTimeMs": 14384158, "teamIds": [ - 5 + "70" ], "runIds": [ 1369 @@ -73696,7 +73579,7 @@ "timeUnixMs": 1633429264691, "relativeTimeMs": 14395691, "teamIds": [ - 45 + "34" ], "runIds": [ 1370 diff --git a/src/cds/tests/testData/loaders/goldenData/clics202207.txt b/src/cds/tests/testData/loaders/goldenData/clics202207.txt index e13cac1b6..605492f08 100644 --- a/src/cds/tests/testData/loaders/goldenData/clics202207.txt +++ b/src/cds/tests/testData/loaders/goldenData/clics202207.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 4, + "id": "1", "name": "ETH Zürich: gETHyped", "shortName": "ETH Zürich: gETHyped", - "contestSystemId": "1", "groups": [ "23737", "CHE" @@ -177,10 +176,9 @@ } }, { - "id": 74, + "id": "2", "name": "Universidad Autónoma de Madrid: The Fan Team", "shortName": "UAM: The Fan Team", - "contestSystemId": "2", "groups": [ "23737", "ESP" @@ -200,10 +198,9 @@ } }, { - "id": 61, + "id": "3", "name": "Politecnico di Torino: Fallback Solutions", "shortName": "Polito: Fallback Solutions", - "contestSystemId": "3", "groups": [ "23737", "ITA" @@ -223,10 +220,9 @@ } }, { - "id": 71, + "id": "4", "name": "University of Haifa: Top Of The Mountain", "shortName": "U of Haifa: Top Of The Mountain", - "contestSystemId": "4", "groups": [ "23737", "ISR" @@ -246,10 +242,9 @@ } }, { - "id": 97, + "id": "5", "name": "Artois University: J'en perds deux", "shortName": "U-ARTOIS: J'en perds deux", - "contestSystemId": "5", "groups": [ "23737", "FRA" @@ -269,10 +264,9 @@ } }, { - "id": 15, + "id": "6", "name": "Università della Svizzera italiana: WalkLike3Egyptians", "shortName": "USI: WalkLike3Egyptians", - "contestSystemId": "6", "groups": [ "23737", "CHE" @@ -292,10 +286,9 @@ } }, { - "id": 16, + "id": "7", "name": "University of Padova: dQw4w9WgXcQ", "shortName": "UniPD: dQw4w9WgXcQ", - "contestSystemId": "7", "groups": [ "23737", "ITA" @@ -315,10 +308,9 @@ } }, { - "id": 75, + "id": "8", "name": "Universidad de Murcia: Greedy2SAES", "shortName": "UM: Greedy2SAES", - "contestSystemId": "8", "groups": [ "23737", "ESP" @@ -338,10 +330,9 @@ } }, { - "id": 118, + "id": "9", "name": "Universidade da Beira Interior: UBIdé", "shortName": "UBI: UBIdé", - "contestSystemId": "9", "groups": [ "23737", "PRT" @@ -361,10 +352,9 @@ } }, { - "id": 47, + "id": "10", "name": "École Normale Supérieure de Lyon: ENSLip", "shortName": "ENS - Lyon: ENSLip", - "contestSystemId": "10", "groups": [ "23737", "FRA" @@ -384,10 +374,9 @@ } }, { - "id": 56, + "id": "11", "name": "Tel Aviv University: Jokers", "shortName": "TAU: Jokers", - "contestSystemId": "11", "groups": [ "23737", "ISR" @@ -407,10 +396,9 @@ } }, { - "id": 112, + "id": "13", "name": "University of L'Aquila: CPU", "shortName": "UnivAQ: CPU", - "contestSystemId": "13", "groups": [ "23737", "ITA" @@ -430,10 +418,9 @@ } }, { - "id": 94, + "id": "14", "name": "Ecole Polytechnique: X Gonna Code It to Ya", "shortName": "EP: X Gonna Code It to Ya", - "contestSystemId": "14", "groups": [ "23737", "FRA" @@ -453,10 +440,9 @@ } }, { - "id": 119, + "id": "15", "name": "CUNEF Universidad: CUNEF-1", "shortName": "CUNEF: CUNEF-1", - "contestSystemId": "15", "groups": [ "23737", "ESP" @@ -476,10 +462,9 @@ } }, { - "id": 55, + "id": "16", "name": "Università degli Studi di Genova: Genova 1", "shortName": "Genova: Genova 1", - "contestSystemId": "16", "groups": [ "23737", "ITA" @@ -499,10 +484,9 @@ } }, { - "id": 109, + "id": "17", "name": "Université de Paris: JIS", "shortName": "UdP: JIS", - "contestSystemId": "17", "groups": [ "23737", "FRA" @@ -522,10 +506,9 @@ } }, { - "id": 91, + "id": "18", "name": "Universidade da Beira Interior: UBIk", "shortName": "UBI: UBIk", - "contestSystemId": "18", "groups": [ "23737", "PRT" @@ -545,10 +528,9 @@ } }, { - "id": 65, + "id": "19", "name": "Technion - Israel Institute of Technology: SIGKILL", "shortName": "TECHNION: SIGKILL", - "contestSystemId": "19", "groups": [ "23737", "ISR" @@ -568,10 +550,9 @@ } }, { - "id": 63, + "id": "20", "name": "Ecole Centrale de Lyon: ECL 1", "shortName": "EC-Lyon: ECL 1", - "contestSystemId": "20", "groups": [ "23737", "FRA" @@ -591,10 +572,9 @@ } }, { - "id": 14, + "id": "21", "name": "Università di Pisa: flag[11]", "shortName": "UNIPI: flag[11]", - "contestSystemId": "21", "groups": [ "23737", "ITA" @@ -614,10 +594,9 @@ } }, { - "id": 96, + "id": "22", "name": "Universidade do Porto: Rated C++", "shortName": "U Porto: Rated C++", - "contestSystemId": "22", "groups": [ "23737", "PRT" @@ -637,10 +616,9 @@ } }, { - "id": 18, + "id": "23", "name": "INSA de Lyon: INSA 1", "shortName": "INSA: INSA 1", - "contestSystemId": "23", "groups": [ "23737", "FRA" @@ -660,10 +638,9 @@ } }, { - "id": 38, + "id": "24", "name": "Universitat Politècnica de Catalunya: UPC-3", "shortName": "UP Catalunya: UPC-3", - "contestSystemId": "24", "groups": [ "23737", "ESP" @@ -683,10 +660,9 @@ } }, { - "id": 2, + "id": "25", "name": "Università di Pisa: flag[10]", "shortName": "UNIPI: flag[10]", - "contestSystemId": "25", "groups": [ "23737", "ITA" @@ -706,10 +682,9 @@ } }, { - "id": 105, + "id": "26", "name": "University of Rennes 1: DROP TABLE", "shortName": "UR1: DROP TABLE", - "contestSystemId": "26", "groups": [ "23737", "FRA" @@ -729,10 +704,9 @@ } }, { - "id": 67, + "id": "27", "name": "Polytech Paris Saclay: Polychotomy", "shortName": "PPS: Polychotomy", - "contestSystemId": "27", "groups": [ "23737", "FRA" @@ -752,10 +726,9 @@ } }, { - "id": 17, + "id": "28", "name": "Tel Aviv University: Bestagons", "shortName": "TAU: Bestagons", - "contestSystemId": "28", "groups": [ "23737", "ISR" @@ -775,10 +748,9 @@ } }, { - "id": 80, + "id": "29", "name": "University of Padova: CoffeLimitExceeded", "shortName": "UniPD: CoffeLimitExceeded", - "contestSystemId": "29", "groups": [ "23737", "ITA" @@ -798,10 +770,9 @@ } }, { - "id": 35, + "id": "30", "name": "Universidad Complutense de Madrid: Un CE más", "shortName": "UCM: Un CE más", - "contestSystemId": "30", "groups": [ "23737", "ESP" @@ -821,10 +792,9 @@ } }, { - "id": 104, + "id": "31", "name": "Sorbonne Université: Sorbonne Rouge", "shortName": "Sorbonne: Sorbonne Rouge", - "contestSystemId": "31", "groups": [ "23737", "FRA" @@ -844,10 +814,9 @@ } }, { - "id": 76, + "id": "32", "name": "INSA de Lyon: INSA 3", "shortName": "INSA: INSA 3", - "contestSystemId": "32", "groups": [ "23737", "FRA" @@ -867,10 +836,9 @@ } }, { - "id": 42, + "id": "33", "name": "Politecnico di Milano: team name goes here", "shortName": "Polimi: team name goes here", - "contestSystemId": "33", "groups": [ "23737", "ITA" @@ -890,10 +858,9 @@ } }, { - "id": 120, + "id": "34", "name": "CUNEF Universidad: CUNEF-A", "shortName": "CUNEF: CUNEF-A", - "contestSystemId": "34", "groups": [ "23737", "ESP" @@ -913,10 +880,9 @@ } }, { - "id": 57, + "id": "35", "name": "Technion - Israel Institute of Technology: Pr3s3nTati0n_3Rr0r", "shortName": "TECHNION: Pr3s3nTati0n_3Rr0r", - "contestSystemId": "35", "groups": [ "23737", "ISR" @@ -936,10 +902,9 @@ } }, { - "id": 66, + "id": "36", "name": "Politecnico di Torino: Toroidal Polihedrons", "shortName": "Polito: Toroidal Polihedrons", - "contestSystemId": "36", "groups": [ "23737", "ITA" @@ -959,10 +924,9 @@ } }, { - "id": 78, + "id": "37", "name": "Sorbonne Université: Sorbonne Blanc", "shortName": "Sorbonne: Sorbonne Blanc", - "contestSystemId": "37", "groups": [ "23737", "FRA" @@ -982,10 +946,9 @@ } }, { - "id": 100, + "id": "38", "name": "Ecole Polytechnique: In eXtremis", "shortName": "EP: In eXtremis", - "contestSystemId": "38", "groups": [ "23737", "FRA" @@ -1005,10 +968,9 @@ } }, { - "id": 50, + "id": "39", "name": "Harbour.Space University: x^3", "shortName": "HS: x^3", - "contestSystemId": "39", "groups": [ "23737", "ESP" @@ -1028,10 +990,9 @@ } }, { - "id": 90, + "id": "40", "name": "Università di Trento: UniTN MindsHub", "shortName": "TN: UniTN MindsHub", - "contestSystemId": "40", "groups": [ "23737", "ITA" @@ -1051,10 +1012,9 @@ } }, { - "id": 92, + "id": "41", "name": "Universidad Rey Juan Carlos: Hackbulla", "shortName": "U. Rey Juan Carlos: Hackbulla", - "contestSystemId": "41", "groups": [ "23737", "ESP" @@ -1074,10 +1034,9 @@ } }, { - "id": 58, + "id": "42", "name": "CentraleSupélec: Slippin' Jimmies", "shortName": "CentraleSupélec: Slippin' Jimmies", - "contestSystemId": "42", "groups": [ "23737", "FRA" @@ -1097,10 +1056,9 @@ } }, { - "id": 34, + "id": "43", "name": "École Nationale Supérieure d'électrotechnique, d'électronique, d'informatique, d'hydraulique et des Télécommunications: 7uring_net7", "shortName": "ENSEEIHT: 7uring_net7", - "contestSystemId": "43", "groups": [ "23737", "FRA" @@ -1120,10 +1078,9 @@ } }, { - "id": 43, + "id": "44", "name": "Politecnico di Milano: AFL", "shortName": "Polimi: AFL", - "contestSystemId": "44", "groups": [ "23737", "ITA" @@ -1143,10 +1100,9 @@ } }, { - "id": 53, + "id": "45", "name": "Universidad Autónoma de Madrid: de Morgan", "shortName": "UAM: de Morgan", - "contestSystemId": "45", "groups": [ "23737", "ESP" @@ -1166,10 +1122,9 @@ } }, { - "id": 1, + "id": "46", "name": "Tel Aviv University: TempName", "shortName": "TAU: TempName", - "contestSystemId": "46", "groups": [ "23737", "ISR" @@ -1189,10 +1144,9 @@ } }, { - "id": 60, + "id": "47", "name": "Télécom Paris: Télégendaire", "shortName": "TP: Télégendaire", - "contestSystemId": "47", "groups": [ "23737", "FRA" @@ -1212,10 +1166,9 @@ } }, { - "id": 87, + "id": "48", "name": "Università Degli Studi di Udine: Gli informagici", "shortName": "Universita' di Udine: Gli informagici", - "contestSystemId": "48", "groups": [ "23737", "ITA" @@ -1235,10 +1188,9 @@ } }, { - "id": 6, + "id": "49", "name": "Universitat Politècnica de Catalunya: UPC-1", "shortName": "UP Catalunya: UPC-1", - "contestSystemId": "49", "groups": [ "23737", "ESP" @@ -1258,10 +1210,9 @@ } }, { - "id": 19, + "id": "50", "name": "Ecole Polytechnique Fédérale de Lausanne: EPFL 1", "shortName": "EPFL: EPFL 1", - "contestSystemId": "50", "groups": [ "23737", "CHE" @@ -1281,10 +1232,9 @@ } }, { - "id": 3, + "id": "51", "name": "Università Degli Studi di Milano: LaStatale Blue", "shortName": "UNIMI: LaStatale Blue", - "contestSystemId": "51", "groups": [ "23737", "ITA" @@ -1304,10 +1254,9 @@ } }, { - "id": 24, + "id": "52", "name": "Instituto Superior Técnico: The Outlaws", "shortName": "IS Técnico: The Outlaws", - "contestSystemId": "52", "groups": [ "23737", "PRT" @@ -1327,10 +1276,9 @@ } }, { - "id": 113, + "id": "53", "name": "Sorbonne Université: Sorbonne Bleu", "shortName": "Sorbonne: Sorbonne Bleu", - "contestSystemId": "53", "groups": [ "23737", "FRA" @@ -1350,10 +1298,9 @@ } }, { - "id": 114, + "id": "54", "name": "Université de Paris: Overflow", "shortName": "UdP: Overflow", - "contestSystemId": "54", "groups": [ "23737", "FRA" @@ -1373,10 +1320,9 @@ } }, { - "id": 106, + "id": "55", "name": "Université Paris-Saclay: Javaman", "shortName": "Université Paris-Saclay: Javaman", - "contestSystemId": "55", "groups": [ "23737", "FRA" @@ -1396,10 +1342,9 @@ } }, { - "id": 72, + "id": "56", "name": "Universitat Politècnica de València: ETSINF-1", "shortName": "UPV: ETSINF-1", - "contestSystemId": "56", "groups": [ "23737", "ESP" @@ -1419,10 +1364,9 @@ } }, { - "id": 12, + "id": "57", "name": "Università di Trento: UniTN Fenwick Treento", "shortName": "TN: UniTN Fenwick Treento", - "contestSystemId": "57", "groups": [ "23737", "ITA" @@ -1442,10 +1386,9 @@ } }, { - "id": 69, + "id": "58", "name": "Università Degli Studi di Udine: MastersOfBreaks", "shortName": "Universita' di Udine: MastersOfBreaks", - "contestSystemId": "58", "groups": [ "23737", "ITA" @@ -1465,10 +1408,9 @@ } }, { - "id": 39, + "id": "59", "name": "University of the Basque Country: UPV-EHU-2", "shortName": "EHU: UPV-EHU-2", - "contestSystemId": "59", "groups": [ "23737", "ESP" @@ -1488,10 +1430,9 @@ } }, { - "id": 101, + "id": "60", "name": "École Normale Supérieure de Lyon: ENSheep", "shortName": "ENS - Lyon: ENSheep", - "contestSystemId": "60", "groups": [ "23737", "FRA" @@ -1511,10 +1452,9 @@ } }, { - "id": 41, + "id": "61", "name": "Ecole Polytechnique Fédérale de Lausanne: EPFL 2", "shortName": "EPFL: EPFL 2", - "contestSystemId": "61", "groups": [ "23737", "CHE" @@ -1534,10 +1474,9 @@ } }, { - "id": 32, + "id": "62", "name": "Universidad Rey Juan Carlos: pik2s", "shortName": "U. Rey Juan Carlos: pik2s", - "contestSystemId": "62", "groups": [ "23737", "ESP" @@ -1557,10 +1496,9 @@ } }, { - "id": 59, + "id": "63", "name": "Ca' Foscari University of Venice: Risi&&Bisi", "shortName": "Unive: Risi&&Bisi", - "contestSystemId": "63", "groups": [ "23737", "ITA" @@ -1580,10 +1518,9 @@ } }, { - "id": 84, + "id": "64", "name": "Artois University: Serge", "shortName": "U-ARTOIS: Serge", - "contestSystemId": "64", "groups": [ "23737", "FRA" @@ -1603,10 +1540,9 @@ } }, { - "id": 111, + "id": "65", "name": "Ecole Centrale de Lyon: ECL 2", "shortName": "EC-Lyon: ECL 2", - "contestSystemId": "65", "groups": [ "23737", "FRA" @@ -1626,10 +1562,9 @@ } }, { - "id": 108, + "id": "66", "name": "Università degli Studi di Genova: Genova 2", "shortName": "Genova: Genova 2", - "contestSystemId": "66", "groups": [ "23737", "ITA" @@ -1649,10 +1584,9 @@ } }, { - "id": 7, + "id": "67", "name": "Universitat Politècnica de Catalunya: UPC-2", "shortName": "UP Catalunya: UPC-2", - "contestSystemId": "67", "groups": [ "23737", "ESP" @@ -1672,10 +1606,9 @@ } }, { - "id": 73, + "id": "68", "name": "Université de Paris: SaintGermainDesPres1", "shortName": "UdP: SaintGermainDesPres1", - "contestSystemId": "68", "groups": [ "23737", "FRA" @@ -1695,10 +1628,9 @@ } }, { - "id": 9, + "id": "69", "name": "ETH Zürich: Save water - shower togETHer", "shortName": "ETH Zürich: Save water - shower togETHer", - "contestSystemId": "69", "groups": [ "23737", "CHE" @@ -1718,10 +1650,9 @@ } }, { - "id": 37, + "id": "70", "name": "Universidade do Porto: Heroes of the C", "shortName": "U Porto: Heroes of the C", - "contestSystemId": "70", "groups": [ "23737", "PRT" @@ -1741,10 +1672,9 @@ } }, { - "id": 95, + "id": "71", "name": "University of Verona: Code Force One", "shortName": "UniVerona: Code Force One", - "contestSystemId": "71", "groups": [ "23737", "ITA" @@ -1764,10 +1694,9 @@ } }, { - "id": 83, + "id": "72", "name": "University of Padova: bogosolving", "shortName": "UniPD: bogosolving", - "contestSystemId": "72", "groups": [ "23737", "ITA" @@ -1787,10 +1716,9 @@ } }, { - "id": 115, + "id": "73", "name": "Polytech Paris Saclay: error 2F4U", "shortName": "PPS: error 2F4U", - "contestSystemId": "73", "groups": [ "23737", "FRA" @@ -1810,10 +1738,9 @@ } }, { - "id": 20, + "id": "74", "name": "ENS d'Informatique et de Mathematiques Appliquees - Grenoble: ensipc", "shortName": "ENSIMAG: ensipc", - "contestSystemId": "74", "groups": [ "23737", "FRA" @@ -1833,10 +1760,9 @@ } }, { - "id": 93, + "id": "75", "name": "Universidade da Beira Interior: jUBIleu", "shortName": "UBI: jUBIleu", - "contestSystemId": "75", "groups": [ "23737", "PRT" @@ -1856,10 +1782,9 @@ } }, { - "id": 29, + "id": "76", "name": "University of the Basque Country: UPV-EHU-1", "shortName": "EHU: UPV-EHU-1", - "contestSystemId": "76", "groups": [ "23737", "ESP" @@ -1879,10 +1804,9 @@ } }, { - "id": 102, + "id": "77", "name": "Università Degli Studi di Udine: Quickbits", "shortName": "Universita' di Udine: Quickbits", - "contestSystemId": "77", "groups": [ "23737", "ITA" @@ -1902,10 +1826,9 @@ } }, { - "id": 49, + "id": "78", "name": "École Normale Supérieure de Paris: ENS Ulm 3", "shortName": "ENS Paris: ENS Ulm 3", - "contestSystemId": "78", "groups": [ "23737", "FRA" @@ -1925,10 +1848,9 @@ } }, { - "id": 51, + "id": "79", "name": "École Normale Supérieure de Lyon: E N S p a c e", "shortName": "ENS - Lyon: E N S p a c e", - "contestSystemId": "79", "groups": [ "23737", "FRA" @@ -1948,10 +1870,9 @@ } }, { - "id": 21, + "id": "80", "name": "Politecnico di Torino: Overkill", "shortName": "Polito: Overkill", - "contestSystemId": "80", "groups": [ "23737", "ITA" @@ -1971,10 +1892,9 @@ } }, { - "id": 44, + "id": "81", "name": "Ecole d'Ingénieurs Littoral Côte d'Opale: Brogrammers", "shortName": "EILCO: Brogrammers", - "contestSystemId": "81", "groups": [ "23737", "FRA" @@ -1994,10 +1914,9 @@ } }, { - "id": 85, + "id": "82", "name": "Universidad de Murcia: Don't you C?", "shortName": "UM: Don't you C?", - "contestSystemId": "82", "groups": [ "23737", "ESP" @@ -2017,10 +1936,9 @@ } }, { - "id": 40, + "id": "83", "name": "Instituto Superior Técnico: FantasticoDebug", "shortName": "IS Técnico: FantasticoDebug", - "contestSystemId": "83", "groups": [ "23737", "PRT" @@ -2040,10 +1958,9 @@ } }, { - "id": 11, + "id": "84", "name": "University of Bologna: UNIBOis", "shortName": "UNIBO: UNIBOis", - "contestSystemId": "84", "groups": [ "23737", "ITA" @@ -2063,10 +1980,9 @@ } }, { - "id": 25, + "id": "85", "name": "Università di Roma - La Sapienza: SapienzaWhite", "shortName": "Università di Roma 1: SapienzaWhite", - "contestSystemId": "85", "groups": [ "23737", "ITA" @@ -2086,10 +2002,9 @@ } }, { - "id": 99, + "id": "86", "name": "Télécom Paris: Telecoders", "shortName": "TP: Telecoders", - "contestSystemId": "86", "groups": [ "23737", "FRA" @@ -2109,10 +2024,9 @@ } }, { - "id": 77, + "id": "87", "name": "Università della Svizzera italiana: USInchronous", "shortName": "USI: USInchronous", - "contestSystemId": "87", "groups": [ "23737", "CHE" @@ -2132,10 +2046,9 @@ } }, { - "id": 45, + "id": "88", "name": "TELECOM Nancy: C--", "shortName": "TNCY: C--", - "contestSystemId": "88", "groups": [ "23737", "FRA" @@ -2155,10 +2068,9 @@ } }, { - "id": 10, + "id": "89", "name": "INSA de Lyon: INSA 2", "shortName": "INSA: INSA 2", - "contestSystemId": "89", "groups": [ "23737", "FRA" @@ -2178,10 +2090,9 @@ } }, { - "id": 70, + "id": "90", "name": "Università Degli Studi di Milano: LaStatale Green", "shortName": "UNIMI: LaStatale Green", - "contestSystemId": "90", "groups": [ "23737", "ITA" @@ -2201,10 +2112,9 @@ } }, { - "id": 13, + "id": "91", "name": "Harbour.Space University: I eat PHP for breakfast", "shortName": "HS: I eat PHP for breakfast", - "contestSystemId": "91", "groups": [ "23737", "ESP" @@ -2224,10 +2134,9 @@ } }, { - "id": 64, + "id": "92", "name": "Universidad Complutense de Madrid: Unidad Computacional de Macacos", "shortName": "UCM: Unidad Computacional de Macacos", - "contestSystemId": "92", "groups": [ "23737", "ESP" @@ -2247,10 +2156,9 @@ } }, { - "id": 79, + "id": "93", "name": "Politecnico di Milano: C_aramba", "shortName": "Polimi: C_aramba", - "contestSystemId": "93", "groups": [ "23737", "ITA" @@ -2270,10 +2178,9 @@ } }, { - "id": 54, + "id": "94", "name": "École Normale Supérieure de Paris-Saclay: Late submission", "shortName": "ENS de Paris-Saclay: Late submission", - "contestSystemId": "94", "groups": [ "23737", "FRA" @@ -2293,10 +2200,9 @@ } }, { - "id": 107, + "id": "95", "name": "Université de Montpellier: FDS-UM", "shortName": "U Montpellier: FDS-UM", - "contestSystemId": "95", "groups": [ "23737", "FRA" @@ -2316,10 +2222,9 @@ } }, { - "id": 86, + "id": "96", "name": "Università di Trento: UniTN Send Nodes", "shortName": "TN: UniTN Send Nodes", - "contestSystemId": "96", "groups": [ "23737", "ITA" @@ -2339,10 +2244,9 @@ } }, { - "id": 48, + "id": "97", "name": "University of Coimbra: 0xC0FFEE++", "shortName": "UC: 0xC0FFEE++", - "contestSystemId": "97", "groups": [ "23737", "PRT" @@ -2362,10 +2266,9 @@ } }, { - "id": 88, + "id": "98", "name": "Télécom Paris: Télécode of Duty", "shortName": "TP: Télécode of Duty", - "contestSystemId": "98", "groups": [ "23737", "FRA" @@ -2385,10 +2288,9 @@ } }, { - "id": 33, + "id": "99", "name": "Università di Roma - La Sapienza: SapienzaBlack", "shortName": "Università di Roma 1: SapienzaBlack", - "contestSystemId": "99", "groups": [ "23737", "ITA" @@ -2408,10 +2310,9 @@ } }, { - "id": 62, + "id": "100", "name": "Universidad Rey Juan Carlos: Teamto de Verano", "shortName": "U. Rey Juan Carlos: Teamto de Verano", - "contestSystemId": "100", "groups": [ "23737", "ESP" @@ -2431,10 +2332,9 @@ } }, { - "id": 8, + "id": "101", "name": "ENS d'Informatique et de Mathematiques Appliquees - Grenoble: ensipc2", "shortName": "ENSIMAG: ensipc2", - "contestSystemId": "101", "groups": [ "23737", "FRA" @@ -2454,10 +2354,9 @@ } }, { - "id": 28, + "id": "102", "name": "University of Bologna: UNIBOiis", "shortName": "UNIBO: UNIBOiis", - "contestSystemId": "102", "groups": [ "23737", "ITA" @@ -2477,10 +2376,9 @@ } }, { - "id": 27, + "id": "103", "name": "Universidad de Murcia: SWERC Chaos", "shortName": "UM: SWERC Chaos", - "contestSystemId": "103", "groups": [ "23737", "ESP" @@ -2500,10 +2398,9 @@ } }, { - "id": 103, + "id": "104", "name": "Ecole Centrale de Lyon: ECL 3", "shortName": "EC-Lyon: ECL 3", - "contestSystemId": "104", "groups": [ "23737", "FRA" @@ -2523,10 +2420,9 @@ } }, { - "id": 82, + "id": "105", "name": "Università Degli Studi di Milano: LaStatale Red", "shortName": "UNIMI: LaStatale Red", - "contestSystemId": "105", "groups": [ "23737", "ITA" @@ -2546,10 +2442,9 @@ } }, { - "id": 81, + "id": "106", "name": "University of Rennes 1: PBI", "shortName": "UR1: PBI", - "contestSystemId": "106", "groups": [ "23737", "FRA" @@ -2569,10 +2464,9 @@ } }, { - "id": 116, + "id": "107", "name": "Universitat Politècnica de València: ETSINF-2", "shortName": "UPV: ETSINF-2", - "contestSystemId": "107", "groups": [ "23737", "ESP" @@ -2592,10 +2486,9 @@ } }, { - "id": 23, + "id": "108", "name": "ETH Zürich: dETHerminant", "shortName": "ETH Zürich: dETHerminant", - "contestSystemId": "108", "groups": [ "23737", "CHE" @@ -2615,10 +2508,9 @@ } }, { - "id": 89, + "id": "109", "name": "University of Verona: SigSegv Squad", "shortName": "UniVerona: SigSegv Squad", - "contestSystemId": "109", "groups": [ "23737", "ITA" @@ -2638,10 +2530,9 @@ } }, { - "id": 98, + "id": "110", "name": "Universitat Pompeu Fabra: Boystdcouts", "shortName": "UPF: Boystdcouts", - "contestSystemId": "110", "groups": [ "23737", "ESP" @@ -2661,10 +2552,9 @@ } }, { - "id": 36, + "id": "111", "name": "École Normale Supérieure de Paris: ENS Ulm 1", "shortName": "ENS Paris: ENS Ulm 1", - "contestSystemId": "111", "groups": [ "23737", "FRA" @@ -2684,10 +2574,9 @@ } }, { - "id": 22, + "id": "112", "name": "University of Bologna: UNIBOiiis", "shortName": "UNIBO: UNIBOiiis", - "contestSystemId": "112", "groups": [ "23737", "ITA" @@ -2707,10 +2596,9 @@ } }, { - "id": 68, + "id": "113", "name": "Universitat Pompeu Fabra: Venta de pantalones", "shortName": "UPF: Venta de pantalones", - "contestSystemId": "113", "groups": [ "23737", "ESP" @@ -2730,10 +2618,9 @@ } }, { - "id": 110, + "id": "114", "name": "Polytech Paris Saclay: Polydata", "shortName": "PPS: Polydata", - "contestSystemId": "114", "groups": [ "23737", "FRA" @@ -2753,10 +2640,9 @@ } }, { - "id": 5, + "id": "115", "name": "Università della Svizzera italiana: fUSIlli", "shortName": "USI: fUSIlli", - "contestSystemId": "115", "groups": [ "23737", "CHE" @@ -2776,10 +2662,9 @@ } }, { - "id": 30, + "id": "116", "name": "Harbour.Space University: P+P+P", "shortName": "HS: P+P+P", - "contestSystemId": "116", "groups": [ "23737", "ESP" @@ -2799,10 +2684,9 @@ } }, { - "id": 46, + "id": "117", "name": "Università di Roma - La Sapienza: SapienzaRed", "shortName": "Università di Roma 1: SapienzaRed", - "contestSystemId": "117", "groups": [ "23737", "ITA" @@ -2822,10 +2706,9 @@ } }, { - "id": 26, + "id": "118", "name": "Scuola Normale Superiore: Carovana Fighters", "shortName": "SNS: Carovana Fighters", - "contestSystemId": "118", "groups": [ "23737", "ITA" @@ -2845,10 +2728,9 @@ } }, { - "id": 117, + "id": "119", "name": "Universitat Pompeu Fabra: GetName", "shortName": "UPF: GetName", - "contestSystemId": "119", "groups": [ "23737", "ESP" @@ -2868,10 +2750,9 @@ } }, { - "id": 52, + "id": "120", "name": "École Normale Supérieure de Paris: ENS Ulm 2", "shortName": "ENS Paris: ENS Ulm 2", - "contestSystemId": "120", "groups": [ "23737", "FRA" @@ -2891,10 +2772,9 @@ } }, { - "id": 31, + "id": "121", "name": "Artois University: Jean Perrin", "shortName": "U-ARTOIS: Jean Perrin", - "contestSystemId": "121", "groups": [ "23737", "FRA" @@ -3471,7 +3351,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 1, + "teamId": "46", "time": 239044, "featuredRunMedia": null, "reactionVideos": [], @@ -3489,7 +3369,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 2, + "teamId": "25", "time": 256196, "featuredRunMedia": null, "reactionVideos": [], @@ -3507,7 +3387,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 3, + "teamId": "51", "time": 284914, "featuredRunMedia": null, "reactionVideos": [], @@ -3525,7 +3405,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 4, + "teamId": "1", "time": 312219, "featuredRunMedia": null, "reactionVideos": [], @@ -3543,7 +3423,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 5, + "teamId": "115", "time": 342896, "featuredRunMedia": null, "reactionVideos": [], @@ -3561,7 +3441,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 6, + "teamId": "49", "time": 345455, "featuredRunMedia": null, "reactionVideos": [], @@ -3579,7 +3459,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 7, + "teamId": "67", "time": 354019, "featuredRunMedia": null, "reactionVideos": [], @@ -3597,7 +3477,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 8, + "teamId": "101", "time": 357523, "featuredRunMedia": null, "reactionVideos": [], @@ -3615,7 +3495,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 9, + "teamId": "69", "time": 363121, "featuredRunMedia": null, "reactionVideos": [], @@ -3633,7 +3513,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 10, + "teamId": "89", "time": 386474, "featuredRunMedia": null, "reactionVideos": [], @@ -3651,7 +3531,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 11, + "teamId": "84", "time": 396895, "featuredRunMedia": null, "reactionVideos": [], @@ -3669,7 +3549,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 12, + "teamId": "57", "time": 404172, "featuredRunMedia": null, "reactionVideos": [], @@ -3687,7 +3567,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 13, + "teamId": "91", "time": 416431, "featuredRunMedia": null, "reactionVideos": [], @@ -3705,7 +3585,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 14, + "teamId": "21", "time": 434631, "featuredRunMedia": null, "reactionVideos": [], @@ -3723,7 +3603,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 15, + "teamId": "6", "time": 440423, "featuredRunMedia": null, "reactionVideos": [], @@ -3741,7 +3621,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 16, + "teamId": "7", "time": 448157, "featuredRunMedia": null, "reactionVideos": [], @@ -3759,7 +3639,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 17, + "teamId": "28", "time": 459412, "featuredRunMedia": null, "reactionVideos": [], @@ -3777,7 +3657,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 18, + "teamId": "23", "time": 461011, "featuredRunMedia": null, "reactionVideos": [], @@ -3795,7 +3675,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 19, + "teamId": "50", "time": 472694, "featuredRunMedia": null, "reactionVideos": [], @@ -3813,7 +3693,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 20, + "teamId": "74", "time": 481169, "featuredRunMedia": null, "reactionVideos": [], @@ -3831,7 +3711,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 21, + "teamId": "80", "time": 487656, "featuredRunMedia": null, "reactionVideos": [], @@ -3849,7 +3729,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 22, + "teamId": "112", "time": 494329, "featuredRunMedia": null, "reactionVideos": [], @@ -3867,7 +3747,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 23, + "teamId": "108", "time": 497121, "featuredRunMedia": null, "reactionVideos": [], @@ -3885,7 +3765,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 24, + "teamId": "52", "time": 498925, "featuredRunMedia": null, "reactionVideos": [], @@ -3903,7 +3783,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 25, + "teamId": "85", "time": 505746, "featuredRunMedia": null, "reactionVideos": [], @@ -3921,7 +3801,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 26, + "teamId": "118", "time": 508729, "featuredRunMedia": null, "reactionVideos": [], @@ -3939,7 +3819,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 27, + "teamId": "103", "time": 523494, "featuredRunMedia": null, "reactionVideos": [], @@ -3957,7 +3837,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 28, + "teamId": "102", "time": 525904, "featuredRunMedia": null, "reactionVideos": [], @@ -3975,7 +3855,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 29, + "teamId": "76", "time": 528660, "featuredRunMedia": null, "reactionVideos": [], @@ -3993,7 +3873,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 30, + "teamId": "116", "time": 555308, "featuredRunMedia": null, "reactionVideos": [], @@ -4011,7 +3891,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 31, + "teamId": "121", "time": 556569, "featuredRunMedia": null, "reactionVideos": [], @@ -4029,7 +3909,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 32, + "teamId": "62", "time": 562663, "featuredRunMedia": null, "reactionVideos": [], @@ -4047,7 +3927,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 33, + "teamId": "99", "time": 571473, "featuredRunMedia": null, "reactionVideos": [], @@ -4065,7 +3945,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 34, + "teamId": "43", "time": 583425, "featuredRunMedia": null, "reactionVideos": [], @@ -4083,7 +3963,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 35, + "teamId": "30", "time": 586270, "featuredRunMedia": null, "reactionVideos": [], @@ -4101,7 +3981,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 36, + "teamId": "111", "time": 588963, "featuredRunMedia": null, "reactionVideos": [], @@ -4119,7 +3999,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 37, + "teamId": "70", "time": 598213, "featuredRunMedia": null, "reactionVideos": [], @@ -4137,7 +4017,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 38, + "teamId": "24", "time": 603925, "featuredRunMedia": null, "reactionVideos": [], @@ -4155,7 +4035,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 39, + "teamId": "59", "time": 608559, "featuredRunMedia": null, "reactionVideos": [], @@ -4173,7 +4053,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 40, + "teamId": "83", "time": 616555, "featuredRunMedia": null, "reactionVideos": [], @@ -4191,7 +4071,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 41, + "teamId": "61", "time": 620096, "featuredRunMedia": null, "reactionVideos": [], @@ -4209,7 +4089,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 42, + "teamId": "33", "time": 628765, "featuredRunMedia": null, "reactionVideos": [], @@ -4227,7 +4107,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 15, + "teamId": "6", "time": 630575, "featuredRunMedia": null, "reactionVideos": [], @@ -4245,7 +4125,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 27, + "teamId": "103", "time": 655543, "featuredRunMedia": null, "reactionVideos": [], @@ -4263,7 +4143,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 43, + "teamId": "44", "time": 667427, "featuredRunMedia": null, "reactionVideos": [], @@ -4281,7 +4161,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 44, + "teamId": "81", "time": 667621, "featuredRunMedia": null, "reactionVideos": [], @@ -4299,7 +4179,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 45, + "teamId": "88", "time": 677002, "featuredRunMedia": null, "reactionVideos": [], @@ -4317,7 +4197,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 36, + "teamId": "111", "time": 684056, "featuredRunMedia": null, "reactionVideos": [], @@ -4335,7 +4215,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 13, + "teamId": "91", "time": 689600, "featuredRunMedia": null, "reactionVideos": [], @@ -4353,7 +4233,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 46, + "teamId": "117", "time": 690960, "featuredRunMedia": null, "reactionVideos": [], @@ -4371,7 +4251,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 47, + "teamId": "10", "time": 691022, "featuredRunMedia": null, "reactionVideos": [], @@ -4389,7 +4269,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 48, + "teamId": "97", "time": 699963, "featuredRunMedia": null, "reactionVideos": [], @@ -4407,7 +4287,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 49, + "teamId": "78", "time": 700360, "featuredRunMedia": null, "reactionVideos": [], @@ -4425,7 +4305,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 39, + "teamId": "59", "time": 703882, "featuredRunMedia": null, "reactionVideos": [], @@ -4443,7 +4323,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 28, + "teamId": "102", "time": 711534, "featuredRunMedia": null, "reactionVideos": [], @@ -4461,7 +4341,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 50, + "teamId": "39", "time": 730413, "featuredRunMedia": null, "reactionVideos": [], @@ -4479,7 +4359,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 51, + "teamId": "79", "time": 763534, "featuredRunMedia": null, "reactionVideos": [], @@ -4497,7 +4377,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 31, + "teamId": "121", "time": 766487, "featuredRunMedia": null, "reactionVideos": [], @@ -4515,7 +4395,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 52, + "teamId": "120", "time": 778764, "featuredRunMedia": null, "reactionVideos": [], @@ -4533,7 +4413,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 53, + "teamId": "45", "time": 781663, "featuredRunMedia": null, "reactionVideos": [], @@ -4551,7 +4431,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 54, + "teamId": "94", "time": 788929, "featuredRunMedia": null, "reactionVideos": [], @@ -4569,7 +4449,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 55, + "teamId": "16", "time": 788959, "featuredRunMedia": null, "reactionVideos": [], @@ -4587,7 +4467,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 56, + "teamId": "11", "time": 793473, "featuredRunMedia": null, "reactionVideos": [], @@ -4605,7 +4485,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 4, + "teamId": "1", "time": 810497, "featuredRunMedia": null, "reactionVideos": [], @@ -4623,7 +4503,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 57, + "teamId": "35", "time": 818244, "featuredRunMedia": null, "reactionVideos": [], @@ -4641,7 +4521,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 58, + "teamId": "42", "time": 820812, "featuredRunMedia": null, "reactionVideos": [], @@ -4659,7 +4539,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 59, + "teamId": "63", "time": 825206, "featuredRunMedia": null, "reactionVideos": [], @@ -4677,7 +4557,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 60, + "teamId": "47", "time": 831500, "featuredRunMedia": null, "reactionVideos": [], @@ -4695,7 +4575,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 61, + "teamId": "3", "time": 835262, "featuredRunMedia": null, "reactionVideos": [], @@ -4713,7 +4593,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 20, + "teamId": "74", "time": 835855, "featuredRunMedia": null, "reactionVideos": [], @@ -4731,7 +4611,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 62, + "teamId": "100", "time": 846733, "featuredRunMedia": null, "reactionVideos": [], @@ -4749,7 +4629,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 51, + "teamId": "79", "time": 848099, "featuredRunMedia": null, "reactionVideos": [], @@ -4767,7 +4647,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 63, + "teamId": "20", "time": 851460, "featuredRunMedia": null, "reactionVideos": [], @@ -4785,7 +4665,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 64, + "teamId": "92", "time": 854272, "featuredRunMedia": null, "reactionVideos": [], @@ -4803,7 +4683,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 65, + "teamId": "19", "time": 865576, "featuredRunMedia": null, "reactionVideos": [], @@ -4821,7 +4701,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 66, + "teamId": "36", "time": 881797, "featuredRunMedia": null, "reactionVideos": [], @@ -4839,7 +4719,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 67, + "teamId": "27", "time": 885651, "featuredRunMedia": null, "reactionVideos": [], @@ -4857,7 +4737,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 68, + "teamId": "113", "time": 887640, "featuredRunMedia": null, "reactionVideos": [], @@ -4875,7 +4755,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 36, + "teamId": "111", "time": 888643, "featuredRunMedia": null, "reactionVideos": [], @@ -4893,7 +4773,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 51, + "teamId": "79", "time": 896608, "featuredRunMedia": null, "reactionVideos": [], @@ -4911,7 +4791,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 69, + "teamId": "58", "time": 899028, "featuredRunMedia": null, "reactionVideos": [], @@ -4929,7 +4809,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 30, + "teamId": "116", "time": 901028, "featuredRunMedia": null, "reactionVideos": [], @@ -4947,7 +4827,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 70, + "teamId": "90", "time": 926651, "featuredRunMedia": null, "reactionVideos": [], @@ -4965,7 +4845,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 54, + "teamId": "94", "time": 950261, "featuredRunMedia": null, "reactionVideos": [], @@ -4983,7 +4863,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 71, + "teamId": "4", "time": 965277, "featuredRunMedia": null, "reactionVideos": [], @@ -5001,7 +4881,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 72, + "teamId": "56", "time": 969422, "featuredRunMedia": null, "reactionVideos": [], @@ -5019,7 +4899,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 73, + "teamId": "68", "time": 974491, "featuredRunMedia": null, "reactionVideos": [], @@ -5037,7 +4917,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 2, + "teamId": "25", "time": 979537, "featuredRunMedia": null, "reactionVideos": [], @@ -5055,7 +4935,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 74, + "teamId": "2", "time": 1002295, "featuredRunMedia": null, "reactionVideos": [], @@ -5073,7 +4953,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 33, + "teamId": "99", "time": 1018243, "featuredRunMedia": null, "reactionVideos": [], @@ -5091,7 +4971,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 57, + "teamId": "35", "time": 1019148, "featuredRunMedia": null, "reactionVideos": [], @@ -5109,7 +4989,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 75, + "teamId": "8", "time": 1021624, "featuredRunMedia": null, "reactionVideos": [], @@ -5127,7 +5007,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 17, + "teamId": "28", "time": 1035383, "featuredRunMedia": null, "reactionVideos": [], @@ -5145,7 +5025,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 1, + "teamId": "46", "time": 1037230, "featuredRunMedia": null, "reactionVideos": [], @@ -5163,7 +5043,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 76, + "teamId": "32", "time": 1037821, "featuredRunMedia": null, "reactionVideos": [], @@ -5181,7 +5061,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 77, + "teamId": "87", "time": 1053830, "featuredRunMedia": null, "reactionVideos": [], @@ -5199,7 +5079,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 78, + "teamId": "37", "time": 1075312, "featuredRunMedia": null, "reactionVideos": [], @@ -5217,7 +5097,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 79, + "teamId": "93", "time": 1095387, "featuredRunMedia": null, "reactionVideos": [], @@ -5235,7 +5115,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 51, + "teamId": "79", "time": 1107492, "featuredRunMedia": null, "reactionVideos": [], @@ -5253,7 +5133,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 30, + "teamId": "116", "time": 1108687, "featuredRunMedia": null, "reactionVideos": [], @@ -5271,7 +5151,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 80, + "teamId": "29", "time": 1129953, "featuredRunMedia": null, "reactionVideos": [], @@ -5289,7 +5169,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 81, + "teamId": "106", "time": 1130761, "featuredRunMedia": null, "reactionVideos": [], @@ -5307,7 +5187,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 27, + "teamId": "103", "time": 1140529, "featuredRunMedia": null, "reactionVideos": [], @@ -5325,7 +5205,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 82, + "teamId": "105", "time": 1151007, "featuredRunMedia": null, "reactionVideos": [], @@ -5343,7 +5223,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 56, + "teamId": "11", "time": 1162918, "featuredRunMedia": null, "reactionVideos": [], @@ -5361,7 +5241,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 38, + "teamId": "24", "time": 1164982, "featuredRunMedia": null, "reactionVideos": [], @@ -5379,7 +5259,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 6, + "teamId": "49", "time": 1165811, "featuredRunMedia": null, "reactionVideos": [], @@ -5397,7 +5277,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 11, + "teamId": "84", "time": 1168390, "featuredRunMedia": null, "reactionVideos": [], @@ -5415,7 +5295,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 83, + "teamId": "72", "time": 1179057, "featuredRunMedia": null, "reactionVideos": [], @@ -5433,7 +5313,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 31, + "teamId": "121", "time": 1184812, "featuredRunMedia": null, "reactionVideos": [], @@ -5451,7 +5331,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 84, + "teamId": "64", "time": 1190983, "featuredRunMedia": null, "reactionVideos": [], @@ -5469,7 +5349,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 74, + "teamId": "2", "time": 1195051, "featuredRunMedia": null, "reactionVideos": [], @@ -5487,7 +5367,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 85, + "teamId": "82", "time": 1196072, "featuredRunMedia": null, "reactionVideos": [], @@ -5505,7 +5385,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 23, + "teamId": "108", "time": 1203849, "featuredRunMedia": null, "reactionVideos": [], @@ -5523,7 +5403,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 50, + "teamId": "39", "time": 1220162, "featuredRunMedia": null, "reactionVideos": [], @@ -5541,7 +5421,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 86, + "teamId": "96", "time": 1233975, "featuredRunMedia": null, "reactionVideos": [], @@ -5559,7 +5439,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 87, + "teamId": "48", "time": 1250337, "featuredRunMedia": null, "reactionVideos": [], @@ -5577,7 +5457,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 88, + "teamId": "98", "time": 1255076, "featuredRunMedia": null, "reactionVideos": [], @@ -5595,7 +5475,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 66, + "teamId": "36", "time": 1267947, "featuredRunMedia": null, "reactionVideos": [], @@ -5613,7 +5493,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 89, + "teamId": "109", "time": 1275604, "featuredRunMedia": null, "reactionVideos": [], @@ -5631,7 +5511,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 90, + "teamId": "40", "time": 1291385, "featuredRunMedia": null, "reactionVideos": [], @@ -5649,7 +5529,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 50, + "teamId": "39", "time": 1291760, "featuredRunMedia": null, "reactionVideos": [], @@ -5667,7 +5547,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 32, + "teamId": "62", "time": 1311975, "featuredRunMedia": null, "reactionVideos": [], @@ -5685,7 +5565,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 4, + "teamId": "1", "time": 1317489, "featuredRunMedia": null, "reactionVideos": [], @@ -5703,7 +5583,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 91, + "teamId": "18", "time": 1319281, "featuredRunMedia": null, "reactionVideos": [], @@ -5721,7 +5601,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 77, + "teamId": "87", "time": 1327898, "featuredRunMedia": null, "reactionVideos": [], @@ -5739,7 +5619,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 56, + "teamId": "11", "time": 1338174, "featuredRunMedia": null, "reactionVideos": [], @@ -5757,7 +5637,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 71, + "teamId": "4", "time": 1350681, "featuredRunMedia": null, "reactionVideos": [], @@ -5775,7 +5655,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 16, + "teamId": "7", "time": 1351746, "featuredRunMedia": null, "reactionVideos": [], @@ -5793,7 +5673,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 41, + "teamId": "61", "time": 1353356, "featuredRunMedia": null, "reactionVideos": [], @@ -5811,7 +5691,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 19, + "teamId": "50", "time": 1363395, "featuredRunMedia": null, "reactionVideos": [], @@ -5829,7 +5709,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 73, + "teamId": "68", "time": 1381201, "featuredRunMedia": null, "reactionVideos": [], @@ -5847,7 +5727,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 4, + "teamId": "1", "time": 1387605, "featuredRunMedia": null, "reactionVideos": [], @@ -5865,7 +5745,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 92, + "teamId": "41", "time": 1388976, "featuredRunMedia": null, "reactionVideos": [], @@ -5883,7 +5763,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 93, + "teamId": "75", "time": 1391772, "featuredRunMedia": null, "reactionVideos": [], @@ -5901,7 +5781,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 5, + "teamId": "115", "time": 1398237, "featuredRunMedia": null, "reactionVideos": [], @@ -5919,7 +5799,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 94, + "teamId": "14", "time": 1399440, "featuredRunMedia": null, "reactionVideos": [], @@ -5937,7 +5817,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 95, + "teamId": "71", "time": 1399647, "featuredRunMedia": null, "reactionVideos": [], @@ -5955,7 +5835,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 2, + "teamId": "25", "time": 1404617, "featuredRunMedia": null, "reactionVideos": [], @@ -5973,7 +5853,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 66, + "teamId": "36", "time": 1407310, "featuredRunMedia": null, "reactionVideos": [], @@ -5991,7 +5871,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 96, + "teamId": "22", "time": 1408375, "featuredRunMedia": null, "reactionVideos": [], @@ -6009,7 +5889,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 1, + "teamId": "46", "time": 1408614, "featuredRunMedia": null, "reactionVideos": [], @@ -6027,7 +5907,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 78, + "teamId": "37", "time": 1413880, "featuredRunMedia": null, "reactionVideos": [], @@ -6045,7 +5925,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 30, + "teamId": "116", "time": 1418505, "featuredRunMedia": null, "reactionVideos": [], @@ -6063,7 +5943,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 27, + "teamId": "103", "time": 1421380, "featuredRunMedia": null, "reactionVideos": [], @@ -6081,7 +5961,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 23, + "teamId": "108", "time": 1422467, "featuredRunMedia": null, "reactionVideos": [], @@ -6099,7 +5979,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 14, + "teamId": "21", "time": 1435123, "featuredRunMedia": null, "reactionVideos": [], @@ -6117,7 +5997,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 77, + "teamId": "87", "time": 1448172, "featuredRunMedia": null, "reactionVideos": [], @@ -6135,7 +6015,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 97, + "teamId": "5", "time": 1479199, "featuredRunMedia": null, "reactionVideos": [], @@ -6153,7 +6033,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 21, + "teamId": "80", "time": 1493846, "featuredRunMedia": null, "reactionVideos": [], @@ -6171,7 +6051,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 98, + "teamId": "110", "time": 1496341, "featuredRunMedia": null, "reactionVideos": [], @@ -6189,7 +6069,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 41, + "teamId": "61", "time": 1508915, "featuredRunMedia": null, "reactionVideos": [], @@ -6207,7 +6087,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 51, + "teamId": "79", "time": 1508954, "featuredRunMedia": null, "reactionVideos": [], @@ -6225,7 +6105,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 91, + "teamId": "18", "time": 1512286, "featuredRunMedia": null, "reactionVideos": [], @@ -6243,7 +6123,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 99, + "teamId": "86", "time": 1513798, "featuredRunMedia": null, "reactionVideos": [], @@ -6261,7 +6141,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 60, + "teamId": "47", "time": 1525830, "featuredRunMedia": null, "reactionVideos": [], @@ -6279,7 +6159,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 7, + "teamId": "67", "time": 1530486, "featuredRunMedia": null, "reactionVideos": [], @@ -6297,7 +6177,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 35, + "teamId": "30", "time": 1547308, "featuredRunMedia": null, "reactionVideos": [], @@ -6315,7 +6195,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 4, + "teamId": "1", "time": 1557109, "featuredRunMedia": null, "reactionVideos": [], @@ -6333,7 +6213,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 23, + "teamId": "108", "time": 1559693, "featuredRunMedia": null, "reactionVideos": [], @@ -6351,7 +6231,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 91, + "teamId": "18", "time": 1575186, "featuredRunMedia": null, "reactionVideos": [], @@ -6369,7 +6249,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 24, + "teamId": "52", "time": 1576082, "featuredRunMedia": null, "reactionVideos": [], @@ -6387,7 +6267,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 100, + "teamId": "38", "time": 1576664, "featuredRunMedia": null, "reactionVideos": [], @@ -6405,7 +6285,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 87, + "teamId": "48", "time": 1582489, "featuredRunMedia": null, "reactionVideos": [], @@ -6423,7 +6303,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 30, + "teamId": "116", "time": 1588134, "featuredRunMedia": null, "reactionVideos": [], @@ -6441,7 +6321,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 101, + "teamId": "60", "time": 1591756, "featuredRunMedia": null, "reactionVideos": [], @@ -6459,7 +6339,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 10, + "teamId": "89", "time": 1595824, "featuredRunMedia": null, "reactionVideos": [], @@ -6477,7 +6357,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 102, + "teamId": "77", "time": 1610738, "featuredRunMedia": null, "reactionVideos": [], @@ -6495,7 +6375,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 63, + "teamId": "20", "time": 1611681, "featuredRunMedia": null, "reactionVideos": [], @@ -6513,7 +6393,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 9, + "teamId": "69", "time": 1634354, "featuredRunMedia": null, "reactionVideos": [], @@ -6531,7 +6411,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 73, + "teamId": "68", "time": 1658317, "featuredRunMedia": null, "reactionVideos": [], @@ -6549,7 +6429,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 3, + "teamId": "51", "time": 1658349, "featuredRunMedia": null, "reactionVideos": [], @@ -6567,7 +6447,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 18, + "teamId": "23", "time": 1660970, "featuredRunMedia": null, "reactionVideos": [], @@ -6585,7 +6465,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 103, + "teamId": "104", "time": 1662049, "featuredRunMedia": null, "reactionVideos": [], @@ -6603,7 +6483,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 17, + "teamId": "28", "time": 1667013, "featuredRunMedia": null, "reactionVideos": [], @@ -6621,7 +6501,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 48, + "teamId": "97", "time": 1676043, "featuredRunMedia": null, "reactionVideos": [], @@ -6639,7 +6519,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 104, + "teamId": "31", "time": 1683306, "featuredRunMedia": null, "reactionVideos": [], @@ -6657,7 +6537,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 105, + "teamId": "26", "time": 1686412, "featuredRunMedia": null, "reactionVideos": [], @@ -6675,7 +6555,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 51, + "teamId": "79", "time": 1699899, "featuredRunMedia": null, "reactionVideos": [], @@ -6693,7 +6573,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 74, + "teamId": "2", "time": 1702420, "featuredRunMedia": null, "reactionVideos": [], @@ -6711,7 +6591,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 14, + "teamId": "21", "time": 1705170, "featuredRunMedia": null, "reactionVideos": [], @@ -6729,7 +6609,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 106, + "teamId": "55", "time": 1730060, "featuredRunMedia": null, "reactionVideos": [], @@ -6747,7 +6627,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 26, + "teamId": "118", "time": 1733130, "featuredRunMedia": null, "reactionVideos": [], @@ -6765,7 +6645,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 1749958, "featuredRunMedia": null, "reactionVideos": [], @@ -6783,7 +6663,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 11, + "teamId": "84", "time": 1751120, "featuredRunMedia": null, "reactionVideos": [], @@ -6801,7 +6681,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 42, + "teamId": "33", "time": 1762751, "featuredRunMedia": null, "reactionVideos": [], @@ -6819,7 +6699,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 104, + "teamId": "31", "time": 1786345, "featuredRunMedia": null, "reactionVideos": [], @@ -6837,7 +6717,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 39, + "teamId": "59", "time": 1796456, "featuredRunMedia": null, "reactionVideos": [], @@ -6855,7 +6735,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 22, + "teamId": "112", "time": 1801027, "featuredRunMedia": null, "reactionVideos": [], @@ -6873,7 +6753,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 58, + "teamId": "42", "time": 1809465, "featuredRunMedia": null, "reactionVideos": [], @@ -6891,7 +6771,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 97, + "teamId": "5", "time": 1812310, "featuredRunMedia": null, "reactionVideos": [], @@ -6909,7 +6789,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 107, + "teamId": "95", "time": 1822094, "featuredRunMedia": null, "reactionVideos": [], @@ -6927,7 +6807,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 79, + "teamId": "93", "time": 1834521, "featuredRunMedia": null, "reactionVideos": [], @@ -6945,7 +6825,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 108, + "teamId": "66", "time": 1847619, "featuredRunMedia": null, "reactionVideos": [], @@ -6963,7 +6843,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 101, + "teamId": "60", "time": 1853316, "featuredRunMedia": null, "reactionVideos": [], @@ -6981,7 +6861,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 109, + "teamId": "17", "time": 1863241, "featuredRunMedia": null, "reactionVideos": [], @@ -6999,7 +6879,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 65, + "teamId": "19", "time": 1865187, "featuredRunMedia": null, "reactionVideos": [], @@ -7017,7 +6897,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 6, + "teamId": "49", "time": 1866032, "featuredRunMedia": null, "reactionVideos": [], @@ -7035,7 +6915,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 1872357, "featuredRunMedia": null, "reactionVideos": [], @@ -7053,7 +6933,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 22, + "teamId": "112", "time": 1873296, "featuredRunMedia": null, "reactionVideos": [], @@ -7071,7 +6951,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 29, + "teamId": "76", "time": 1903530, "featuredRunMedia": null, "reactionVideos": [], @@ -7089,7 +6969,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 36, + "teamId": "111", "time": 1907063, "featuredRunMedia": null, "reactionVideos": [], @@ -7107,7 +6987,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 20, + "teamId": "74", "time": 1913248, "featuredRunMedia": null, "reactionVideos": [], @@ -7125,7 +7005,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 1, + "teamId": "46", "time": 1921682, "featuredRunMedia": null, "reactionVideos": [], @@ -7143,7 +7023,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 107, + "teamId": "95", "time": 1957012, "featuredRunMedia": null, "reactionVideos": [], @@ -7161,7 +7041,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 12, + "teamId": "57", "time": 1965219, "featuredRunMedia": null, "reactionVideos": [], @@ -7179,7 +7059,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 50, + "teamId": "39", "time": 1968411, "featuredRunMedia": null, "reactionVideos": [], @@ -7197,7 +7077,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 47, + "teamId": "10", "time": 1985502, "featuredRunMedia": null, "reactionVideos": [], @@ -7215,7 +7095,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 90, + "teamId": "40", "time": 1994273, "featuredRunMedia": null, "reactionVideos": [], @@ -7233,7 +7113,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 37, + "teamId": "70", "time": 1997744, "featuredRunMedia": null, "reactionVideos": [], @@ -7251,7 +7131,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 100, + "teamId": "38", "time": 1998903, "featuredRunMedia": null, "reactionVideos": [], @@ -7269,7 +7149,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 24, + "teamId": "52", "time": 2006095, "featuredRunMedia": null, "reactionVideos": [], @@ -7287,7 +7167,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 15, + "teamId": "6", "time": 2014532, "featuredRunMedia": null, "reactionVideos": [], @@ -7305,7 +7185,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 111, + "teamId": "65", "time": 2020006, "featuredRunMedia": null, "reactionVideos": [], @@ -7323,7 +7203,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 85, + "teamId": "82", "time": 2020051, "featuredRunMedia": null, "reactionVideos": [], @@ -7341,7 +7221,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 30, + "teamId": "116", "time": 2021040, "featuredRunMedia": null, "reactionVideos": [], @@ -7359,7 +7239,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 35, + "teamId": "30", "time": 2032736, "featuredRunMedia": null, "reactionVideos": [], @@ -7377,7 +7257,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 96, + "teamId": "22", "time": 2058391, "featuredRunMedia": null, "reactionVideos": [], @@ -7395,7 +7275,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 2061512, "featuredRunMedia": null, "reactionVideos": [], @@ -7413,7 +7293,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 71, + "teamId": "4", "time": 2069857, "featuredRunMedia": null, "reactionVideos": [], @@ -7431,7 +7311,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 1, + "teamId": "46", "time": 2073593, "featuredRunMedia": null, "reactionVideos": [], @@ -7449,7 +7329,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 104, + "teamId": "31", "time": 2077638, "featuredRunMedia": null, "reactionVideos": [], @@ -7467,7 +7347,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 23, + "teamId": "108", "time": 2084064, "featuredRunMedia": null, "reactionVideos": [], @@ -7485,7 +7365,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 40, + "teamId": "83", "time": 2084087, "featuredRunMedia": null, "reactionVideos": [], @@ -7503,7 +7383,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 36, + "teamId": "111", "time": 2087301, "featuredRunMedia": null, "reactionVideos": [], @@ -7521,7 +7401,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 112, + "teamId": "13", "time": 2090466, "featuredRunMedia": null, "reactionVideos": [], @@ -7539,7 +7419,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 26, + "teamId": "118", "time": 2111693, "featuredRunMedia": null, "reactionVideos": [], @@ -7557,7 +7437,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 113, + "teamId": "53", "time": 2143474, "featuredRunMedia": null, "reactionVideos": [], @@ -7575,7 +7455,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 14, + "teamId": "21", "time": 2146250, "featuredRunMedia": null, "reactionVideos": [], @@ -7593,7 +7473,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 21, + "teamId": "80", "time": 2157709, "featuredRunMedia": null, "reactionVideos": [], @@ -7611,7 +7491,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 109, + "teamId": "17", "time": 2161893, "featuredRunMedia": null, "reactionVideos": [], @@ -7629,7 +7509,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 69, + "teamId": "58", "time": 2173107, "featuredRunMedia": null, "reactionVideos": [], @@ -7647,7 +7527,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 98, + "teamId": "110", "time": 2176693, "featuredRunMedia": null, "reactionVideos": [], @@ -7665,7 +7545,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 62, + "teamId": "100", "time": 2193073, "featuredRunMedia": null, "reactionVideos": [], @@ -7683,7 +7563,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 27, + "teamId": "103", "time": 2204661, "featuredRunMedia": null, "reactionVideos": [], @@ -7701,7 +7581,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 19, + "teamId": "50", "time": 2204772, "featuredRunMedia": null, "reactionVideos": [], @@ -7719,7 +7599,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 4, + "teamId": "1", "time": 2227047, "featuredRunMedia": null, "reactionVideos": [], @@ -7737,7 +7617,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 114, + "teamId": "54", "time": 2248963, "featuredRunMedia": null, "reactionVideos": [], @@ -7755,7 +7635,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 8, + "teamId": "101", "time": 2249551, "featuredRunMedia": null, "reactionVideos": [], @@ -7773,7 +7653,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 91, + "teamId": "18", "time": 2259216, "featuredRunMedia": null, "reactionVideos": [], @@ -7791,7 +7671,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 54, + "teamId": "94", "time": 2262359, "featuredRunMedia": null, "reactionVideos": [], @@ -7809,7 +7689,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 67, + "teamId": "27", "time": 2272121, "featuredRunMedia": null, "reactionVideos": [], @@ -7827,7 +7707,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 42, + "teamId": "33", "time": 2284426, "featuredRunMedia": null, "reactionVideos": [], @@ -7845,7 +7725,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 81, + "teamId": "106", "time": 2301931, "featuredRunMedia": null, "reactionVideos": [], @@ -7863,7 +7743,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 55, + "teamId": "16", "time": 2335620, "featuredRunMedia": null, "reactionVideos": [], @@ -7881,7 +7761,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 81, + "teamId": "106", "time": 2336940, "featuredRunMedia": null, "reactionVideos": [], @@ -7899,7 +7779,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 111, + "teamId": "65", "time": 2344925, "featuredRunMedia": null, "reactionVideos": [], @@ -7917,7 +7797,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 24, + "teamId": "52", "time": 2356097, "featuredRunMedia": null, "reactionVideos": [], @@ -7935,7 +7815,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 52, + "teamId": "120", "time": 2359330, "featuredRunMedia": null, "reactionVideos": [], @@ -7953,7 +7833,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 4, + "teamId": "1", "time": 2361674, "featuredRunMedia": null, "reactionVideos": [], @@ -7971,7 +7851,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 16, + "teamId": "7", "time": 2365608, "featuredRunMedia": null, "reactionVideos": [], @@ -7989,7 +7869,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 31, + "teamId": "121", "time": 2375934, "featuredRunMedia": null, "reactionVideos": [], @@ -8007,7 +7887,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 36, + "teamId": "111", "time": 2376830, "featuredRunMedia": null, "reactionVideos": [], @@ -8025,7 +7905,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 22, + "teamId": "112", "time": 2382139, "featuredRunMedia": null, "reactionVideos": [], @@ -8043,7 +7923,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 68, + "teamId": "113", "time": 2383030, "featuredRunMedia": null, "reactionVideos": [], @@ -8061,7 +7941,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 11, + "teamId": "84", "time": 2383872, "featuredRunMedia": null, "reactionVideos": [], @@ -8079,7 +7959,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 56, + "teamId": "11", "time": 2386332, "featuredRunMedia": null, "reactionVideos": [], @@ -8097,7 +7977,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 2394228, "featuredRunMedia": null, "reactionVideos": [], @@ -8115,7 +7995,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 43, + "teamId": "44", "time": 2395562, "featuredRunMedia": null, "reactionVideos": [], @@ -8133,7 +8013,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 30, + "teamId": "116", "time": 2410187, "featuredRunMedia": null, "reactionVideos": [], @@ -8151,7 +8031,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 13, + "teamId": "91", "time": 2416078, "featuredRunMedia": null, "reactionVideos": [], @@ -8169,7 +8049,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 115, + "teamId": "73", "time": 2431762, "featuredRunMedia": null, "reactionVideos": [], @@ -8187,7 +8067,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 80, + "teamId": "29", "time": 2432743, "featuredRunMedia": null, "reactionVideos": [], @@ -8205,7 +8085,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 112, + "teamId": "13", "time": 2438206, "featuredRunMedia": null, "reactionVideos": [], @@ -8223,7 +8103,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 22, + "teamId": "112", "time": 2442164, "featuredRunMedia": null, "reactionVideos": [], @@ -8241,7 +8121,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 100, + "teamId": "38", "time": 2453384, "featuredRunMedia": null, "reactionVideos": [], @@ -8259,7 +8139,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 99, + "teamId": "86", "time": 2457262, "featuredRunMedia": null, "reactionVideos": [], @@ -8277,7 +8157,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 26, + "teamId": "118", "time": 2470997, "featuredRunMedia": null, "reactionVideos": [], @@ -8295,7 +8175,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 56, + "teamId": "11", "time": 2471555, "featuredRunMedia": null, "reactionVideos": [], @@ -8313,7 +8193,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 14, + "teamId": "21", "time": 2480804, "featuredRunMedia": null, "reactionVideos": [], @@ -8331,7 +8211,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 38, + "teamId": "24", "time": 2485182, "featuredRunMedia": null, "reactionVideos": [], @@ -8349,7 +8229,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 113, + "teamId": "53", "time": 2502460, "featuredRunMedia": null, "reactionVideos": [], @@ -8367,7 +8247,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 6, + "teamId": "49", "time": 2504485, "featuredRunMedia": null, "reactionVideos": [], @@ -8385,7 +8265,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 34, + "teamId": "43", "time": 2552768, "featuredRunMedia": null, "reactionVideos": [], @@ -8403,7 +8283,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 116, + "teamId": "107", "time": 2554518, "featuredRunMedia": null, "reactionVideos": [], @@ -8421,7 +8301,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 73, + "teamId": "68", "time": 2592395, "featuredRunMedia": null, "reactionVideos": [], @@ -8439,7 +8319,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 65, + "teamId": "19", "time": 2592559, "featuredRunMedia": null, "reactionVideos": [], @@ -8457,7 +8337,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 40, + "teamId": "83", "time": 2596303, "featuredRunMedia": null, "reactionVideos": [], @@ -8475,7 +8355,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 117, + "teamId": "119", "time": 2637771, "featuredRunMedia": null, "reactionVideos": [], @@ -8493,7 +8373,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 46, + "teamId": "117", "time": 2650064, "featuredRunMedia": null, "reactionVideos": [], @@ -8511,7 +8391,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 101, + "teamId": "60", "time": 2651311, "featuredRunMedia": null, "reactionVideos": [], @@ -8529,7 +8409,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 42, + "teamId": "33", "time": 2662199, "featuredRunMedia": null, "reactionVideos": [], @@ -8547,7 +8427,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 76, + "teamId": "32", "time": 2662955, "featuredRunMedia": null, "reactionVideos": [], @@ -8565,7 +8445,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 100, + "teamId": "38", "time": 2664591, "featuredRunMedia": null, "reactionVideos": [], @@ -8583,7 +8463,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 110, + "teamId": "114", "time": 2673804, "featuredRunMedia": null, "reactionVideos": [], @@ -8601,7 +8481,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 1, + "teamId": "46", "time": 2674023, "featuredRunMedia": null, "reactionVideos": [], @@ -8619,7 +8499,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 3, + "teamId": "51", "time": 2683736, "featuredRunMedia": null, "reactionVideos": [], @@ -8637,7 +8517,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 111, + "teamId": "65", "time": 2704152, "featuredRunMedia": null, "reactionVideos": [], @@ -8655,7 +8535,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 13, + "teamId": "91", "time": 2724306, "featuredRunMedia": null, "reactionVideos": [], @@ -8673,7 +8553,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 57, + "teamId": "35", "time": 2738473, "featuredRunMedia": null, "reactionVideos": [], @@ -8691,7 +8571,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 16, + "teamId": "7", "time": 2741447, "featuredRunMedia": null, "reactionVideos": [], @@ -8709,7 +8589,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 108, + "teamId": "66", "time": 2786489, "featuredRunMedia": null, "reactionVideos": [], @@ -8727,7 +8607,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 1, + "teamId": "46", "time": 2807519, "featuredRunMedia": null, "reactionVideos": [], @@ -8745,7 +8625,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 2809074, "featuredRunMedia": null, "reactionVideos": [], @@ -8763,7 +8643,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 118, + "teamId": "9", "time": 2827345, "featuredRunMedia": null, "reactionVideos": [], @@ -8781,7 +8661,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 34, + "teamId": "43", "time": 2833946, "featuredRunMedia": null, "reactionVideos": [], @@ -8799,7 +8679,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 21, + "teamId": "80", "time": 2842632, "featuredRunMedia": null, "reactionVideos": [], @@ -8817,7 +8697,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 5, + "teamId": "115", "time": 2852899, "featuredRunMedia": null, "reactionVideos": [], @@ -8835,7 +8715,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 12, + "teamId": "57", "time": 2862240, "featuredRunMedia": null, "reactionVideos": [], @@ -8853,7 +8733,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 49, + "teamId": "78", "time": 2865235, "featuredRunMedia": null, "reactionVideos": [], @@ -8871,7 +8751,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 55, + "teamId": "16", "time": 2866596, "featuredRunMedia": null, "reactionVideos": [], @@ -8889,7 +8769,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 2889717, "featuredRunMedia": null, "reactionVideos": [], @@ -8907,7 +8787,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 88, + "teamId": "98", "time": 2897875, "featuredRunMedia": null, "reactionVideos": [], @@ -8925,7 +8805,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 50, + "teamId": "39", "time": 2898261, "featuredRunMedia": null, "reactionVideos": [], @@ -8943,7 +8823,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 49, + "teamId": "78", "time": 2903755, "featuredRunMedia": null, "reactionVideos": [], @@ -8961,7 +8841,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 16, + "teamId": "7", "time": 2952871, "featuredRunMedia": null, "reactionVideos": [], @@ -8979,7 +8859,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 34, + "teamId": "43", "time": 2962351, "featuredRunMedia": null, "reactionVideos": [], @@ -8997,7 +8877,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 64, + "teamId": "92", "time": 2965599, "featuredRunMedia": null, "reactionVideos": [], @@ -9015,7 +8895,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 36, + "teamId": "111", "time": 2970377, "featuredRunMedia": null, "reactionVideos": [], @@ -9033,7 +8913,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 7, + "teamId": "67", "time": 2973923, "featuredRunMedia": null, "reactionVideos": [], @@ -9051,7 +8931,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 37, + "teamId": "70", "time": 2986871, "featuredRunMedia": null, "reactionVideos": [], @@ -9069,7 +8949,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 2991309, "featuredRunMedia": null, "reactionVideos": [], @@ -9087,7 +8967,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 69, + "teamId": "58", "time": 3030826, "featuredRunMedia": null, "reactionVideos": [], @@ -9105,7 +8985,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 19, + "teamId": "50", "time": 3036890, "featuredRunMedia": null, "reactionVideos": [], @@ -9123,7 +9003,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 75, + "teamId": "8", "time": 3037335, "featuredRunMedia": null, "reactionVideos": [], @@ -9141,7 +9021,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 52, + "teamId": "120", "time": 3047655, "featuredRunMedia": null, "reactionVideos": [], @@ -9159,7 +9039,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 61, + "teamId": "3", "time": 3066086, "featuredRunMedia": null, "reactionVideos": [], @@ -9177,7 +9057,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 105, + "teamId": "26", "time": 3073340, "featuredRunMedia": null, "reactionVideos": [], @@ -9195,7 +9075,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 28, + "teamId": "102", "time": 3076346, "featuredRunMedia": null, "reactionVideos": [], @@ -9213,7 +9093,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 89, + "teamId": "109", "time": 3086951, "featuredRunMedia": null, "reactionVideos": [], @@ -9231,7 +9111,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 80, + "teamId": "29", "time": 3087735, "featuredRunMedia": null, "reactionVideos": [], @@ -9249,7 +9129,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 34, + "teamId": "43", "time": 3098650, "featuredRunMedia": null, "reactionVideos": [], @@ -9267,7 +9147,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 94, + "teamId": "14", "time": 3104714, "featuredRunMedia": null, "reactionVideos": [], @@ -9285,7 +9165,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 13, + "teamId": "91", "time": 3117727, "featuredRunMedia": null, "reactionVideos": [], @@ -9303,7 +9183,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 119, + "teamId": "15", "time": 3140227, "featuredRunMedia": null, "reactionVideos": [], @@ -9321,7 +9201,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 96, + "teamId": "22", "time": 3148287, "featuredRunMedia": null, "reactionVideos": [], @@ -9339,7 +9219,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 115, + "teamId": "73", "time": 3173030, "featuredRunMedia": null, "reactionVideos": [], @@ -9357,7 +9237,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 1, + "teamId": "46", "time": 3180056, "featuredRunMedia": null, "reactionVideos": [], @@ -9375,7 +9255,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 17, + "teamId": "28", "time": 3192414, "featuredRunMedia": null, "reactionVideos": [], @@ -9393,7 +9273,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 2, + "teamId": "25", "time": 3203534, "featuredRunMedia": null, "reactionVideos": [], @@ -9411,7 +9291,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 89, + "teamId": "109", "time": 3207274, "featuredRunMedia": null, "reactionVideos": [], @@ -9429,7 +9309,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 70, + "teamId": "90", "time": 3208094, "featuredRunMedia": null, "reactionVideos": [], @@ -9447,7 +9327,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 16, + "teamId": "7", "time": 3211376, "featuredRunMedia": null, "reactionVideos": [], @@ -9465,7 +9345,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 118, + "teamId": "9", "time": 3215186, "featuredRunMedia": null, "reactionVideos": [], @@ -9483,7 +9363,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 117, + "teamId": "119", "time": 3230130, "featuredRunMedia": null, "reactionVideos": [], @@ -9501,7 +9381,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 96, + "teamId": "22", "time": 3254383, "featuredRunMedia": null, "reactionVideos": [], @@ -9519,7 +9399,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 3265505, "featuredRunMedia": null, "reactionVideos": [], @@ -9537,7 +9417,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 111, + "teamId": "65", "time": 3276895, "featuredRunMedia": null, "reactionVideos": [], @@ -9555,7 +9435,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 104, + "teamId": "31", "time": 3284259, "featuredRunMedia": null, "reactionVideos": [], @@ -9573,7 +9453,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 24, + "teamId": "52", "time": 3304666, "featuredRunMedia": null, "reactionVideos": [], @@ -9591,7 +9471,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 2, + "teamId": "25", "time": 3304823, "featuredRunMedia": null, "reactionVideos": [], @@ -9609,7 +9489,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 9, + "teamId": "69", "time": 3313320, "featuredRunMedia": null, "reactionVideos": [], @@ -9627,7 +9507,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 100, + "teamId": "38", "time": 3320761, "featuredRunMedia": null, "reactionVideos": [], @@ -9645,7 +9525,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 26, + "teamId": "118", "time": 3324553, "featuredRunMedia": null, "reactionVideos": [], @@ -9663,7 +9543,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 119, + "teamId": "15", "time": 3344554, "featuredRunMedia": null, "reactionVideos": [], @@ -9681,7 +9561,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 37, + "teamId": "70", "time": 3396098, "featuredRunMedia": null, "reactionVideos": [], @@ -9699,7 +9579,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 106, + "teamId": "55", "time": 3402873, "featuredRunMedia": null, "reactionVideos": [], @@ -9717,7 +9597,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 9, + "teamId": "69", "time": 3414473, "featuredRunMedia": null, "reactionVideos": [], @@ -9735,7 +9615,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 24, + "teamId": "52", "time": 3441146, "featuredRunMedia": null, "reactionVideos": [], @@ -9753,7 +9633,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 62, + "teamId": "100", "time": 3441978, "featuredRunMedia": null, "reactionVideos": [], @@ -9771,7 +9651,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 110, + "teamId": "114", "time": 3461377, "featuredRunMedia": null, "reactionVideos": [], @@ -9789,7 +9669,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 60, + "teamId": "47", "time": 3488502, "featuredRunMedia": null, "reactionVideos": [], @@ -9807,7 +9687,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 65, + "teamId": "19", "time": 3509280, "featuredRunMedia": null, "reactionVideos": [], @@ -9825,7 +9705,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 17, + "teamId": "28", "time": 3522959, "featuredRunMedia": null, "reactionVideos": [], @@ -9843,7 +9723,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 41, + "teamId": "61", "time": 3550529, "featuredRunMedia": null, "reactionVideos": [], @@ -9861,7 +9741,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 34, + "teamId": "43", "time": 3563167, "featuredRunMedia": null, "reactionVideos": [], @@ -9879,7 +9759,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 96, + "teamId": "22", "time": 3566303, "featuredRunMedia": null, "reactionVideos": [], @@ -9897,7 +9777,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 89, + "teamId": "109", "time": 3571216, "featuredRunMedia": null, "reactionVideos": [], @@ -9915,7 +9795,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 82, + "teamId": "105", "time": 3577412, "featuredRunMedia": null, "reactionVideos": [], @@ -9933,7 +9813,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 50, + "teamId": "39", "time": 3596583, "featuredRunMedia": null, "reactionVideos": [], @@ -9951,7 +9831,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 71, + "teamId": "4", "time": 3602524, "featuredRunMedia": null, "reactionVideos": [], @@ -9969,7 +9849,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 3609983, "featuredRunMedia": null, "reactionVideos": [], @@ -9987,7 +9867,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 38, + "teamId": "24", "time": 3627944, "featuredRunMedia": null, "reactionVideos": [], @@ -10005,7 +9885,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 69, + "teamId": "58", "time": 3633378, "featuredRunMedia": null, "reactionVideos": [], @@ -10023,7 +9903,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 3636342, "featuredRunMedia": null, "reactionVideos": [], @@ -10041,7 +9921,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 49, + "teamId": "78", "time": 3651430, "featuredRunMedia": null, "reactionVideos": [], @@ -10059,7 +9939,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 96, + "teamId": "22", "time": 3654813, "featuredRunMedia": null, "reactionVideos": [], @@ -10077,7 +9957,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 52, + "teamId": "120", "time": 3655633, "featuredRunMedia": null, "reactionVideos": [], @@ -10095,7 +9975,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 60, + "teamId": "47", "time": 3655925, "featuredRunMedia": null, "reactionVideos": [], @@ -10113,7 +9993,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 38, + "teamId": "24", "time": 3690312, "featuredRunMedia": null, "reactionVideos": [], @@ -10131,7 +10011,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 29, + "teamId": "76", "time": 3709345, "featuredRunMedia": null, "reactionVideos": [], @@ -10149,7 +10029,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 50, + "teamId": "39", "time": 3766563, "featuredRunMedia": null, "reactionVideos": [], @@ -10167,7 +10047,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 93, + "teamId": "75", "time": 3777990, "featuredRunMedia": null, "reactionVideos": [], @@ -10185,7 +10065,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 23, + "teamId": "108", "time": 3780691, "featuredRunMedia": null, "reactionVideos": [], @@ -10203,7 +10083,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 3, + "teamId": "51", "time": 3785309, "featuredRunMedia": null, "reactionVideos": [], @@ -10221,7 +10101,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 25, + "teamId": "85", "time": 3799389, "featuredRunMedia": null, "reactionVideos": [], @@ -10239,7 +10119,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 14, + "teamId": "21", "time": 3800076, "featuredRunMedia": null, "reactionVideos": [], @@ -10257,7 +10137,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 11, + "teamId": "84", "time": 3800187, "featuredRunMedia": null, "reactionVideos": [], @@ -10275,7 +10155,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 89, + "teamId": "109", "time": 3807944, "featuredRunMedia": null, "reactionVideos": [], @@ -10293,7 +10173,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 111, + "teamId": "65", "time": 3834805, "featuredRunMedia": null, "reactionVideos": [], @@ -10311,7 +10191,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 110, + "teamId": "114", "time": 3900270, "featuredRunMedia": null, "reactionVideos": [], @@ -10329,7 +10209,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 107, + "teamId": "95", "time": 3909868, "featuredRunMedia": null, "reactionVideos": [], @@ -10347,7 +10227,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 6, + "teamId": "49", "time": 3926784, "featuredRunMedia": null, "reactionVideos": [], @@ -10365,7 +10245,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 23, + "teamId": "108", "time": 3935505, "featuredRunMedia": null, "reactionVideos": [], @@ -10383,7 +10263,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 30, + "teamId": "116", "time": 3956999, "featuredRunMedia": null, "reactionVideos": [], @@ -10401,7 +10281,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 83, + "teamId": "72", "time": 3963928, "featuredRunMedia": null, "reactionVideos": [], @@ -10419,7 +10299,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 30, + "teamId": "116", "time": 3982587, "featuredRunMedia": null, "reactionVideos": [], @@ -10437,7 +10317,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 32, + "teamId": "62", "time": 3987852, "featuredRunMedia": null, "reactionVideos": [], @@ -10455,7 +10335,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 24, + "teamId": "52", "time": 4028190, "featuredRunMedia": null, "reactionVideos": [], @@ -10473,7 +10353,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 77, + "teamId": "87", "time": 4042417, "featuredRunMedia": null, "reactionVideos": [], @@ -10491,7 +10371,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 16, + "teamId": "7", "time": 4045977, "featuredRunMedia": null, "reactionVideos": [], @@ -10509,7 +10389,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 11, + "teamId": "84", "time": 4051661, "featuredRunMedia": null, "reactionVideos": [], @@ -10527,7 +10407,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 29, + "teamId": "76", "time": 4059746, "featuredRunMedia": null, "reactionVideos": [], @@ -10545,7 +10425,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 6, + "teamId": "49", "time": 4086845, "featuredRunMedia": null, "reactionVideos": [], @@ -10563,7 +10443,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 11, + "teamId": "84", "time": 4096741, "featuredRunMedia": null, "reactionVideos": [], @@ -10581,7 +10461,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 62, + "teamId": "100", "time": 4155785, "featuredRunMedia": null, "reactionVideos": [], @@ -10599,7 +10479,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 37, + "teamId": "70", "time": 4179744, "featuredRunMedia": null, "reactionVideos": [], @@ -10617,7 +10497,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 94, + "teamId": "14", "time": 4210414, "featuredRunMedia": null, "reactionVideos": [], @@ -10635,7 +10515,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 95, + "teamId": "71", "time": 4241117, "featuredRunMedia": null, "reactionVideos": [], @@ -10653,7 +10533,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 52, + "teamId": "120", "time": 4247914, "featuredRunMedia": null, "reactionVideos": [], @@ -10671,7 +10551,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 19, + "teamId": "50", "time": 4251256, "featuredRunMedia": null, "reactionVideos": [], @@ -10689,7 +10569,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 49, + "teamId": "78", "time": 4268079, "featuredRunMedia": null, "reactionVideos": [], @@ -10707,7 +10587,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 4287769, "featuredRunMedia": null, "reactionVideos": [], @@ -10725,7 +10605,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 120, + "teamId": "34", "time": 4290432, "featuredRunMedia": null, "reactionVideos": [], @@ -10743,7 +10623,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 77, + "teamId": "87", "time": 4291761, "featuredRunMedia": null, "reactionVideos": [], @@ -10761,7 +10641,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 55, + "teamId": "16", "time": 4292368, "featuredRunMedia": null, "reactionVideos": [], @@ -10779,7 +10659,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 31, + "teamId": "121", "time": 4302667, "featuredRunMedia": null, "reactionVideos": [], @@ -10797,7 +10677,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 5, + "teamId": "115", "time": 4304148, "featuredRunMedia": null, "reactionVideos": [], @@ -10815,7 +10695,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 28, + "teamId": "102", "time": 4322335, "featuredRunMedia": null, "reactionVideos": [], @@ -10833,7 +10713,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 76, + "teamId": "32", "time": 4329476, "featuredRunMedia": null, "reactionVideos": [], @@ -10851,7 +10731,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 12, + "teamId": "57", "time": 4363793, "featuredRunMedia": null, "reactionVideos": [], @@ -10869,7 +10749,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 8, + "teamId": "101", "time": 4372330, "featuredRunMedia": null, "reactionVideos": [], @@ -10887,7 +10767,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 4384010, "featuredRunMedia": null, "reactionVideos": [], @@ -10905,7 +10785,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 13, + "teamId": "91", "time": 4410392, "featuredRunMedia": null, "reactionVideos": [], @@ -10923,7 +10803,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 2, + "teamId": "25", "time": 4414298, "featuredRunMedia": null, "reactionVideos": [], @@ -10941,7 +10821,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 42, + "teamId": "33", "time": 4419451, "featuredRunMedia": null, "reactionVideos": [], @@ -10959,7 +10839,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 4421815, "featuredRunMedia": null, "reactionVideos": [], @@ -10977,7 +10857,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 70, + "teamId": "90", "time": 4423121, "featuredRunMedia": null, "reactionVideos": [], @@ -10995,7 +10875,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 33, + "teamId": "99", "time": 4448090, "featuredRunMedia": null, "reactionVideos": [], @@ -11013,7 +10893,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 94, + "teamId": "14", "time": 4448598, "featuredRunMedia": null, "reactionVideos": [], @@ -11031,7 +10911,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 11, + "teamId": "84", "time": 4451004, "featuredRunMedia": null, "reactionVideos": [], @@ -11049,7 +10929,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 66, + "teamId": "36", "time": 4471575, "featuredRunMedia": null, "reactionVideos": [], @@ -11067,7 +10947,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 80, + "teamId": "29", "time": 4482732, "featuredRunMedia": null, "reactionVideos": [], @@ -11085,7 +10965,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 23, + "teamId": "108", "time": 4498379, "featuredRunMedia": null, "reactionVideos": [], @@ -11103,7 +10983,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 10, + "teamId": "89", "time": 4541850, "featuredRunMedia": null, "reactionVideos": [], @@ -11121,7 +11001,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 67, + "teamId": "27", "time": 4547124, "featuredRunMedia": null, "reactionVideos": [], @@ -11139,7 +11019,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 119, + "teamId": "15", "time": 4597324, "featuredRunMedia": null, "reactionVideos": [], @@ -11157,7 +11037,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 42, + "teamId": "33", "time": 4603569, "featuredRunMedia": null, "reactionVideos": [], @@ -11175,7 +11055,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 4643662, "featuredRunMedia": null, "reactionVideos": [], @@ -11193,7 +11073,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 101, + "teamId": "60", "time": 4661920, "featuredRunMedia": null, "reactionVideos": [], @@ -11211,7 +11091,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 68, + "teamId": "113", "time": 4669046, "featuredRunMedia": null, "reactionVideos": [], @@ -11229,7 +11109,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 4670907, "featuredRunMedia": null, "reactionVideos": [], @@ -11247,7 +11127,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 14, + "teamId": "21", "time": 4678181, "featuredRunMedia": null, "reactionVideos": [], @@ -11265,7 +11145,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 18, + "teamId": "23", "time": 4678573, "featuredRunMedia": null, "reactionVideos": [], @@ -11283,7 +11163,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 107, + "teamId": "95", "time": 4689058, "featuredRunMedia": null, "reactionVideos": [], @@ -11301,7 +11181,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 79, + "teamId": "93", "time": 4695371, "featuredRunMedia": null, "reactionVideos": [], @@ -11319,7 +11199,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 3, + "teamId": "51", "time": 4701668, "featuredRunMedia": null, "reactionVideos": [], @@ -11337,7 +11217,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 68, + "teamId": "113", "time": 4712673, "featuredRunMedia": null, "reactionVideos": [], @@ -11355,7 +11235,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 40, + "teamId": "83", "time": 4729932, "featuredRunMedia": null, "reactionVideos": [], @@ -11373,7 +11253,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 4733983, "featuredRunMedia": null, "reactionVideos": [], @@ -11391,7 +11271,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 111, + "teamId": "65", "time": 4763376, "featuredRunMedia": null, "reactionVideos": [], @@ -11409,7 +11289,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 117, + "teamId": "119", "time": 4780961, "featuredRunMedia": null, "reactionVideos": [], @@ -11427,7 +11307,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 37, + "teamId": "70", "time": 4791826, "featuredRunMedia": null, "reactionVideos": [], @@ -11445,7 +11325,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 7, + "teamId": "67", "time": 4793062, "featuredRunMedia": null, "reactionVideos": [], @@ -11463,7 +11343,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 48, + "teamId": "97", "time": 4801540, "featuredRunMedia": null, "reactionVideos": [], @@ -11481,7 +11361,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 56, + "teamId": "11", "time": 4807846, "featuredRunMedia": null, "reactionVideos": [], @@ -11499,7 +11379,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 71, + "teamId": "4", "time": 4818024, "featuredRunMedia": null, "reactionVideos": [], @@ -11517,7 +11397,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 37, + "teamId": "70", "time": 4822823, "featuredRunMedia": null, "reactionVideos": [], @@ -11535,7 +11415,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 88, + "teamId": "98", "time": 4837001, "featuredRunMedia": null, "reactionVideos": [], @@ -11553,7 +11433,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 41, + "teamId": "61", "time": 4853480, "featuredRunMedia": null, "reactionVideos": [], @@ -11571,7 +11451,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 4868335, "featuredRunMedia": null, "reactionVideos": [], @@ -11589,7 +11469,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 64, + "teamId": "92", "time": 4870530, "featuredRunMedia": null, "reactionVideos": [], @@ -11607,7 +11487,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 5, + "teamId": "115", "time": 4874771, "featuredRunMedia": null, "reactionVideos": [], @@ -11625,7 +11505,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 114, + "teamId": "54", "time": 4880988, "featuredRunMedia": null, "reactionVideos": [], @@ -11643,7 +11523,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 104, + "teamId": "31", "time": 4900137, "featuredRunMedia": null, "reactionVideos": [], @@ -11661,7 +11541,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 49, + "teamId": "78", "time": 4901732, "featuredRunMedia": null, "reactionVideos": [], @@ -11679,7 +11559,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 4908135, "featuredRunMedia": null, "reactionVideos": [], @@ -11697,7 +11577,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 42, + "teamId": "33", "time": 4927750, "featuredRunMedia": null, "reactionVideos": [], @@ -11715,7 +11595,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 82, + "teamId": "105", "time": 4937687, "featuredRunMedia": null, "reactionVideos": [], @@ -11733,7 +11613,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 8, + "teamId": "101", "time": 4949616, "featuredRunMedia": null, "reactionVideos": [], @@ -11751,7 +11631,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 76, + "teamId": "32", "time": 4966546, "featuredRunMedia": null, "reactionVideos": [], @@ -11769,7 +11649,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 13, + "teamId": "91", "time": 4966936, "featuredRunMedia": null, "reactionVideos": [], @@ -11787,7 +11667,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 103, + "teamId": "104", "time": 4988520, "featuredRunMedia": null, "reactionVideos": [], @@ -11805,7 +11685,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 21, + "teamId": "80", "time": 5005286, "featuredRunMedia": null, "reactionVideos": [], @@ -11823,7 +11703,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 76, + "teamId": "32", "time": 5025173, "featuredRunMedia": null, "reactionVideos": [], @@ -11841,7 +11721,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 5034099, "featuredRunMedia": null, "reactionVideos": [], @@ -11859,7 +11739,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 5051087, "featuredRunMedia": null, "reactionVideos": [], @@ -11877,7 +11757,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 40, + "teamId": "83", "time": 5079633, "featuredRunMedia": null, "reactionVideos": [], @@ -11895,7 +11775,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 110, + "teamId": "114", "time": 5082451, "featuredRunMedia": null, "reactionVideos": [], @@ -11913,7 +11793,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 20, + "teamId": "74", "time": 5090492, "featuredRunMedia": null, "reactionVideos": [], @@ -11931,7 +11811,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 25, + "teamId": "85", "time": 5123954, "featuredRunMedia": null, "reactionVideos": [], @@ -11949,7 +11829,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 98, + "teamId": "110", "time": 5124743, "featuredRunMedia": null, "reactionVideos": [], @@ -11967,7 +11847,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 5213092, "featuredRunMedia": null, "reactionVideos": [], @@ -11985,7 +11865,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 99, + "teamId": "86", "time": 5220165, "featuredRunMedia": null, "reactionVideos": [], @@ -12003,7 +11883,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 72, + "teamId": "56", "time": 5238508, "featuredRunMedia": null, "reactionVideos": [], @@ -12021,7 +11901,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 35, + "teamId": "30", "time": 5247311, "featuredRunMedia": null, "reactionVideos": [], @@ -12039,7 +11919,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 5262307, "featuredRunMedia": null, "reactionVideos": [], @@ -12057,7 +11937,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 4, + "teamId": "1", "time": 5269286, "featuredRunMedia": null, "reactionVideos": [], @@ -12075,7 +11955,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 92, + "teamId": "41", "time": 5282357, "featuredRunMedia": null, "reactionVideos": [], @@ -12093,7 +11973,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 13, + "teamId": "91", "time": 5285165, "featuredRunMedia": null, "reactionVideos": [], @@ -12111,7 +11991,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 58, + "teamId": "42", "time": 5291962, "featuredRunMedia": null, "reactionVideos": [], @@ -12129,7 +12009,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 26, + "teamId": "118", "time": 5304503, "featuredRunMedia": null, "reactionVideos": [], @@ -12147,7 +12027,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 66, + "teamId": "36", "time": 5321368, "featuredRunMedia": null, "reactionVideos": [], @@ -12165,7 +12045,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 16, + "teamId": "7", "time": 5327711, "featuredRunMedia": null, "reactionVideos": [], @@ -12183,7 +12063,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 5331591, "featuredRunMedia": null, "reactionVideos": [], @@ -12201,7 +12081,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 38, + "teamId": "24", "time": 5342554, "featuredRunMedia": null, "reactionVideos": [], @@ -12219,7 +12099,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 15, + "teamId": "6", "time": 5348475, "featuredRunMedia": null, "reactionVideos": [], @@ -12237,7 +12117,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 40, + "teamId": "83", "time": 5352181, "featuredRunMedia": null, "reactionVideos": [], @@ -12255,7 +12135,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 62, + "teamId": "100", "time": 5355616, "featuredRunMedia": null, "reactionVideos": [], @@ -12273,7 +12153,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 78, + "teamId": "37", "time": 5389571, "featuredRunMedia": null, "reactionVideos": [], @@ -12291,7 +12171,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 5389913, "featuredRunMedia": null, "reactionVideos": [], @@ -12309,7 +12189,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 3, + "teamId": "51", "time": 5413390, "featuredRunMedia": null, "reactionVideos": [], @@ -12327,7 +12207,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 63, + "teamId": "20", "time": 5432010, "featuredRunMedia": null, "reactionVideos": [], @@ -12345,7 +12225,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 5441660, "featuredRunMedia": null, "reactionVideos": [], @@ -12363,7 +12243,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 3, + "teamId": "51", "time": 5450471, "featuredRunMedia": null, "reactionVideos": [], @@ -12381,7 +12261,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 49, + "teamId": "78", "time": 5455236, "featuredRunMedia": null, "reactionVideos": [], @@ -12399,7 +12279,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 50, + "teamId": "39", "time": 5479013, "featuredRunMedia": null, "reactionVideos": [], @@ -12417,7 +12297,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 27, + "teamId": "103", "time": 5484971, "featuredRunMedia": null, "reactionVideos": [], @@ -12435,7 +12315,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 1, + "teamId": "46", "time": 5491028, "featuredRunMedia": null, "reactionVideos": [], @@ -12453,7 +12333,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 87, + "teamId": "48", "time": 5493002, "featuredRunMedia": null, "reactionVideos": [], @@ -12471,7 +12351,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 24, + "teamId": "52", "time": 5497898, "featuredRunMedia": null, "reactionVideos": [], @@ -12489,7 +12369,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 60, + "teamId": "47", "time": 5498397, "featuredRunMedia": null, "reactionVideos": [], @@ -12507,7 +12387,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 47, + "teamId": "10", "time": 5498844, "featuredRunMedia": null, "reactionVideos": [], @@ -12525,7 +12405,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 50, + "teamId": "39", "time": 5507231, "featuredRunMedia": null, "reactionVideos": [], @@ -12543,7 +12423,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 18, + "teamId": "23", "time": 5522008, "featuredRunMedia": null, "reactionVideos": [], @@ -12561,7 +12441,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 94, + "teamId": "14", "time": 5558214, "featuredRunMedia": null, "reactionVideos": [], @@ -12579,7 +12459,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 79, + "teamId": "93", "time": 5573694, "featuredRunMedia": null, "reactionVideos": [], @@ -12597,7 +12477,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 19, + "teamId": "50", "time": 5602248, "featuredRunMedia": null, "reactionVideos": [], @@ -12615,7 +12495,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 100, + "teamId": "38", "time": 5605620, "featuredRunMedia": null, "reactionVideos": [], @@ -12633,7 +12513,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 3, + "teamId": "51", "time": 5611292, "featuredRunMedia": null, "reactionVideos": [], @@ -12651,7 +12531,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 9, + "teamId": "69", "time": 5611489, "featuredRunMedia": null, "reactionVideos": [], @@ -12669,7 +12549,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 25, + "teamId": "85", "time": 5615518, "featuredRunMedia": null, "reactionVideos": [], @@ -12687,7 +12567,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 5625162, "featuredRunMedia": null, "reactionVideos": [], @@ -12705,7 +12585,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 38, + "teamId": "24", "time": 5636327, "featuredRunMedia": null, "reactionVideos": [], @@ -12723,7 +12603,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 16, + "teamId": "7", "time": 5637443, "featuredRunMedia": null, "reactionVideos": [], @@ -12741,7 +12621,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 34, + "teamId": "43", "time": 5642106, "featuredRunMedia": null, "reactionVideos": [], @@ -12759,7 +12639,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 78, + "teamId": "37", "time": 5662928, "featuredRunMedia": null, "reactionVideos": [], @@ -12777,7 +12657,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 6, + "teamId": "49", "time": 5668385, "featuredRunMedia": null, "reactionVideos": [], @@ -12795,7 +12675,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 5694320, "featuredRunMedia": null, "reactionVideos": [], @@ -12813,7 +12693,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 7, + "teamId": "67", "time": 5705326, "featuredRunMedia": null, "reactionVideos": [], @@ -12831,7 +12711,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 106, + "teamId": "55", "time": 5730133, "featuredRunMedia": null, "reactionVideos": [], @@ -12849,7 +12729,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 38, + "teamId": "24", "time": 5746785, "featuredRunMedia": null, "reactionVideos": [], @@ -12867,7 +12747,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 17, + "teamId": "28", "time": 5751171, "featuredRunMedia": null, "reactionVideos": [], @@ -12885,7 +12765,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 5762355, "featuredRunMedia": null, "reactionVideos": [], @@ -12903,7 +12783,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 27, + "teamId": "103", "time": 5790314, "featuredRunMedia": null, "reactionVideos": [], @@ -12921,7 +12801,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 30, + "teamId": "116", "time": 5790728, "featuredRunMedia": null, "reactionVideos": [], @@ -12939,7 +12819,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 82, + "teamId": "105", "time": 5803401, "featuredRunMedia": null, "reactionVideos": [], @@ -12957,7 +12837,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 70, + "teamId": "90", "time": 5814552, "featuredRunMedia": null, "reactionVideos": [], @@ -12975,7 +12855,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 14, + "teamId": "21", "time": 5827857, "featuredRunMedia": null, "reactionVideos": [], @@ -12993,7 +12873,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 100, + "teamId": "38", "time": 5839785, "featuredRunMedia": null, "reactionVideos": [], @@ -13011,7 +12891,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 36, + "teamId": "111", "time": 5840200, "featuredRunMedia": null, "reactionVideos": [], @@ -13029,7 +12909,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 10, + "teamId": "89", "time": 5851664, "featuredRunMedia": null, "reactionVideos": [], @@ -13047,7 +12927,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 84, + "teamId": "64", "time": 5861386, "featuredRunMedia": null, "reactionVideos": [], @@ -13065,7 +12945,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 43, + "teamId": "44", "time": 5879074, "featuredRunMedia": null, "reactionVideos": [], @@ -13083,7 +12963,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 117, + "teamId": "119", "time": 5890605, "featuredRunMedia": null, "reactionVideos": [], @@ -13101,7 +12981,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 113, + "teamId": "53", "time": 5905580, "featuredRunMedia": null, "reactionVideos": [], @@ -13119,7 +12999,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 38, + "teamId": "24", "time": 5907960, "featuredRunMedia": null, "reactionVideos": [], @@ -13137,7 +13017,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 72, + "teamId": "56", "time": 5911849, "featuredRunMedia": null, "reactionVideos": [], @@ -13155,7 +13035,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 85, + "teamId": "82", "time": 5930251, "featuredRunMedia": null, "reactionVideos": [], @@ -13173,7 +13053,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 24, + "teamId": "52", "time": 5959275, "featuredRunMedia": null, "reactionVideos": [], @@ -13191,7 +13071,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 9, + "teamId": "69", "time": 5971098, "featuredRunMedia": null, "reactionVideos": [], @@ -13209,7 +13089,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 91, + "teamId": "18", "time": 5980930, "featuredRunMedia": null, "reactionVideos": [], @@ -13227,7 +13107,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 113, + "teamId": "53", "time": 5992579, "featuredRunMedia": null, "reactionVideos": [], @@ -13245,7 +13125,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 4, + "teamId": "1", "time": 6005816, "featuredRunMedia": null, "reactionVideos": [], @@ -13263,7 +13143,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 103, + "teamId": "104", "time": 6007842, "featuredRunMedia": null, "reactionVideos": [], @@ -13281,7 +13161,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 48, + "teamId": "97", "time": 6048561, "featuredRunMedia": null, "reactionVideos": [], @@ -13299,7 +13179,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 94, + "teamId": "14", "time": 6087873, "featuredRunMedia": null, "reactionVideos": [], @@ -13317,7 +13197,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 26, + "teamId": "118", "time": 6162494, "featuredRunMedia": null, "reactionVideos": [], @@ -13335,7 +13215,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 52, + "teamId": "120", "time": 6185250, "featuredRunMedia": null, "reactionVideos": [], @@ -13353,7 +13233,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 6187511, "featuredRunMedia": null, "reactionVideos": [], @@ -13371,7 +13251,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 54, + "teamId": "94", "time": 6206137, "featuredRunMedia": null, "reactionVideos": [], @@ -13389,7 +13269,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 23, + "teamId": "108", "time": 6221147, "featuredRunMedia": null, "reactionVideos": [], @@ -13407,7 +13287,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 59, + "teamId": "63", "time": 6224431, "featuredRunMedia": null, "reactionVideos": [], @@ -13425,7 +13305,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 72, + "teamId": "56", "time": 6292397, "featuredRunMedia": null, "reactionVideos": [], @@ -13443,7 +13323,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 78, + "teamId": "37", "time": 6307257, "featuredRunMedia": null, "reactionVideos": [], @@ -13461,7 +13341,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 21, + "teamId": "80", "time": 6318364, "featuredRunMedia": null, "reactionVideos": [], @@ -13479,7 +13359,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 6326942, "featuredRunMedia": null, "reactionVideos": [], @@ -13497,7 +13377,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 6340151, "featuredRunMedia": null, "reactionVideos": [], @@ -13515,7 +13395,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 90, + "teamId": "40", "time": 6356657, "featuredRunMedia": null, "reactionVideos": [], @@ -13533,7 +13413,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 40, + "teamId": "83", "time": 6371892, "featuredRunMedia": null, "reactionVideos": [], @@ -13551,7 +13431,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 71, + "teamId": "4", "time": 6390736, "featuredRunMedia": null, "reactionVideos": [], @@ -13569,7 +13449,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 5, + "teamId": "115", "time": 6429763, "featuredRunMedia": null, "reactionVideos": [], @@ -13587,7 +13467,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 52, + "teamId": "120", "time": 6470003, "featuredRunMedia": null, "reactionVideos": [], @@ -13605,7 +13485,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 3, + "teamId": "51", "time": 6500221, "featuredRunMedia": null, "reactionVideos": [], @@ -13623,7 +13503,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 6516871, "featuredRunMedia": null, "reactionVideos": [], @@ -13641,7 +13521,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 115, + "teamId": "73", "time": 6518365, "featuredRunMedia": null, "reactionVideos": [], @@ -13659,7 +13539,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 83, + "teamId": "72", "time": 6519555, "featuredRunMedia": null, "reactionVideos": [], @@ -13677,7 +13557,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 6524581, "featuredRunMedia": null, "reactionVideos": [], @@ -13695,7 +13575,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 98, + "teamId": "110", "time": 6529684, "featuredRunMedia": null, "reactionVideos": [], @@ -13713,7 +13593,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 5, + "teamId": "115", "time": 6534062, "featuredRunMedia": null, "reactionVideos": [], @@ -13731,7 +13611,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 67, + "teamId": "27", "time": 6536789, "featuredRunMedia": null, "reactionVideos": [], @@ -13749,7 +13629,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 35, + "teamId": "30", "time": 6542397, "featuredRunMedia": null, "reactionVideos": [], @@ -13767,7 +13647,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 90, + "teamId": "40", "time": 6543492, "featuredRunMedia": null, "reactionVideos": [], @@ -13785,7 +13665,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 111, + "teamId": "65", "time": 6553911, "featuredRunMedia": null, "reactionVideos": [], @@ -13803,7 +13683,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 63, + "teamId": "20", "time": 6598983, "featuredRunMedia": null, "reactionVideos": [], @@ -13821,7 +13701,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 104, + "teamId": "31", "time": 6627369, "featuredRunMedia": null, "reactionVideos": [], @@ -13839,7 +13719,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 42, + "teamId": "33", "time": 6632283, "featuredRunMedia": null, "reactionVideos": [], @@ -13857,7 +13737,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 55, + "teamId": "16", "time": 6661118, "featuredRunMedia": null, "reactionVideos": [], @@ -13875,7 +13755,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 1, + "teamId": "46", "time": 6673003, "featuredRunMedia": null, "reactionVideos": [], @@ -13893,7 +13773,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 6687962, "featuredRunMedia": null, "reactionVideos": [], @@ -13911,7 +13791,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 82, + "teamId": "105", "time": 6697913, "featuredRunMedia": null, "reactionVideos": [], @@ -13929,7 +13809,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 75, + "teamId": "8", "time": 6701525, "featuredRunMedia": null, "reactionVideos": [], @@ -13947,7 +13827,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 95, + "teamId": "71", "time": 6706388, "featuredRunMedia": null, "reactionVideos": [], @@ -13965,7 +13845,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 97, + "teamId": "5", "time": 6715677, "featuredRunMedia": null, "reactionVideos": [], @@ -13983,7 +13863,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 3, + "teamId": "51", "time": 6721586, "featuredRunMedia": null, "reactionVideos": [], @@ -14001,7 +13881,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 31, + "teamId": "121", "time": 6727410, "featuredRunMedia": null, "reactionVideos": [], @@ -14019,7 +13899,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 36, + "teamId": "111", "time": 6728299, "featuredRunMedia": null, "reactionVideos": [], @@ -14037,7 +13917,7 @@ "isFirstToSolveRun": false }, "problemId": "A-walking-dog-ALHMLZ", - "teamId": 111, + "teamId": "65", "time": 6737905, "featuredRunMedia": null, "reactionVideos": [], @@ -14055,7 +13935,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 14, + "teamId": "21", "time": 6756918, "featuredRunMedia": null, "reactionVideos": [], @@ -14073,7 +13953,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 56, + "teamId": "11", "time": 6761690, "featuredRunMedia": null, "reactionVideos": [], @@ -14091,7 +13971,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 33, + "teamId": "99", "time": 6779994, "featuredRunMedia": null, "reactionVideos": [], @@ -14109,7 +13989,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 15, + "teamId": "6", "time": 6785820, "featuredRunMedia": null, "reactionVideos": [], @@ -14127,7 +14007,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 64, + "teamId": "92", "time": 6808176, "featuredRunMedia": null, "reactionVideos": [], @@ -14145,7 +14025,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 7, + "teamId": "67", "time": 6808545, "featuredRunMedia": null, "reactionVideos": [], @@ -14163,7 +14043,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 21, + "teamId": "80", "time": 6826932, "featuredRunMedia": null, "reactionVideos": [], @@ -14181,7 +14061,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 111, + "teamId": "65", "time": 6873559, "featuredRunMedia": null, "reactionVideos": [], @@ -14199,7 +14079,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 53, + "teamId": "45", "time": 6886937, "featuredRunMedia": null, "reactionVideos": [], @@ -14217,7 +14097,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 21, + "teamId": "80", "time": 6894006, "featuredRunMedia": null, "reactionVideos": [], @@ -14235,7 +14115,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 105, + "teamId": "26", "time": 6903848, "featuredRunMedia": null, "reactionVideos": [], @@ -14253,7 +14133,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 88, + "teamId": "98", "time": 6903998, "featuredRunMedia": null, "reactionVideos": [], @@ -14271,7 +14151,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 59, + "teamId": "63", "time": 6918880, "featuredRunMedia": null, "reactionVideos": [], @@ -14289,7 +14169,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 28, + "teamId": "102", "time": 6942566, "featuredRunMedia": null, "reactionVideos": [], @@ -14307,7 +14187,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 13, + "teamId": "91", "time": 6951549, "featuredRunMedia": null, "reactionVideos": [], @@ -14325,7 +14205,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 15, + "teamId": "6", "time": 6965682, "featuredRunMedia": null, "reactionVideos": [], @@ -14343,7 +14223,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 20, + "teamId": "74", "time": 6985750, "featuredRunMedia": null, "reactionVideos": [], @@ -14361,7 +14241,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 7021279, "featuredRunMedia": null, "reactionVideos": [], @@ -14379,7 +14259,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 73, + "teamId": "68", "time": 7036863, "featuredRunMedia": null, "reactionVideos": [], @@ -14397,7 +14277,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 88, + "teamId": "98", "time": 7043952, "featuredRunMedia": null, "reactionVideos": [], @@ -14415,7 +14295,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 13, + "teamId": "91", "time": 7082943, "featuredRunMedia": null, "reactionVideos": [], @@ -14433,7 +14313,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 83, + "teamId": "72", "time": 7085122, "featuredRunMedia": null, "reactionVideos": [], @@ -14451,7 +14331,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 53, + "teamId": "45", "time": 7115667, "featuredRunMedia": null, "reactionVideos": [], @@ -14469,7 +14349,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 7117491, "featuredRunMedia": null, "reactionVideos": [], @@ -14487,7 +14367,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 61, + "teamId": "3", "time": 7146534, "featuredRunMedia": null, "reactionVideos": [], @@ -14505,7 +14385,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 91, + "teamId": "18", "time": 7166313, "featuredRunMedia": null, "reactionVideos": [], @@ -14523,7 +14403,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 7182931, "featuredRunMedia": null, "reactionVideos": [], @@ -14541,7 +14421,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 18, + "teamId": "23", "time": 7195410, "featuredRunMedia": null, "reactionVideos": [], @@ -14559,7 +14439,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 13, + "teamId": "91", "time": 7201321, "featuredRunMedia": null, "reactionVideos": [], @@ -14577,7 +14457,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 7202177, "featuredRunMedia": null, "reactionVideos": [], @@ -14595,7 +14475,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 86, + "teamId": "96", "time": 7204028, "featuredRunMedia": null, "reactionVideos": [], @@ -14613,7 +14493,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 107, + "teamId": "95", "time": 7212081, "featuredRunMedia": null, "reactionVideos": [], @@ -14631,7 +14511,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 59, + "teamId": "63", "time": 7254501, "featuredRunMedia": null, "reactionVideos": [], @@ -14649,7 +14529,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 59, + "teamId": "63", "time": 7316818, "featuredRunMedia": null, "reactionVideos": [], @@ -14667,7 +14547,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 6, + "teamId": "49", "time": 7347692, "featuredRunMedia": null, "reactionVideos": [], @@ -14685,7 +14565,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 118, + "teamId": "9", "time": 7400310, "featuredRunMedia": null, "reactionVideos": [], @@ -14703,7 +14583,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 9, + "teamId": "69", "time": 7418429, "featuredRunMedia": null, "reactionVideos": [], @@ -14721,7 +14601,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 33, + "teamId": "99", "time": 7425966, "featuredRunMedia": null, "reactionVideos": [], @@ -14739,7 +14619,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 7447837, "featuredRunMedia": null, "reactionVideos": [], @@ -14757,7 +14637,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 64, + "teamId": "92", "time": 7454170, "featuredRunMedia": null, "reactionVideos": [], @@ -14775,7 +14655,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 73, + "teamId": "68", "time": 7455766, "featuredRunMedia": null, "reactionVideos": [], @@ -14793,7 +14673,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 7463388, "featuredRunMedia": null, "reactionVideos": [], @@ -14811,7 +14691,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 85, + "teamId": "82", "time": 7498823, "featuredRunMedia": null, "reactionVideos": [], @@ -14829,7 +14709,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 72, + "teamId": "56", "time": 7539669, "featuredRunMedia": null, "reactionVideos": [], @@ -14847,7 +14727,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 21, + "teamId": "80", "time": 7560557, "featuredRunMedia": null, "reactionVideos": [], @@ -14865,7 +14745,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 103, + "teamId": "104", "time": 7561410, "featuredRunMedia": null, "reactionVideos": [], @@ -14883,7 +14763,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 37, + "teamId": "70", "time": 7584986, "featuredRunMedia": null, "reactionVideos": [], @@ -14901,7 +14781,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 51, + "teamId": "79", "time": 7594629, "featuredRunMedia": null, "reactionVideos": [], @@ -14919,7 +14799,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 9, + "teamId": "69", "time": 7594897, "featuredRunMedia": null, "reactionVideos": [], @@ -14937,7 +14817,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 7, + "teamId": "67", "time": 7665630, "featuredRunMedia": null, "reactionVideos": [], @@ -14955,7 +14835,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 107, + "teamId": "95", "time": 7681518, "featuredRunMedia": null, "reactionVideos": [], @@ -14973,7 +14853,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 63, + "teamId": "20", "time": 7691790, "featuredRunMedia": null, "reactionVideos": [], @@ -14991,7 +14871,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 7696213, "featuredRunMedia": null, "reactionVideos": [], @@ -15009,7 +14889,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 7712441, "featuredRunMedia": null, "reactionVideos": [], @@ -15027,7 +14907,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 60, + "teamId": "47", "time": 7718530, "featuredRunMedia": null, "reactionVideos": [], @@ -15045,7 +14925,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 26, + "teamId": "118", "time": 7746815, "featuredRunMedia": null, "reactionVideos": [], @@ -15063,7 +14943,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 69, + "teamId": "58", "time": 7760055, "featuredRunMedia": null, "reactionVideos": [], @@ -15081,7 +14961,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 25, + "teamId": "85", "time": 7762109, "featuredRunMedia": null, "reactionVideos": [], @@ -15099,7 +14979,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 79, + "teamId": "93", "time": 7793688, "featuredRunMedia": null, "reactionVideos": [], @@ -15117,7 +14997,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 4, + "teamId": "1", "time": 7795671, "featuredRunMedia": null, "reactionVideos": [], @@ -15135,7 +15015,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 54, + "teamId": "94", "time": 7801788, "featuredRunMedia": null, "reactionVideos": [], @@ -15153,7 +15033,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 19, + "teamId": "50", "time": 7802603, "featuredRunMedia": null, "reactionVideos": [], @@ -15171,7 +15051,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 70, + "teamId": "90", "time": 7823937, "featuredRunMedia": null, "reactionVideos": [], @@ -15189,7 +15069,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 76, + "teamId": "32", "time": 7840645, "featuredRunMedia": null, "reactionVideos": [], @@ -15207,7 +15087,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 61, + "teamId": "3", "time": 7867916, "featuredRunMedia": null, "reactionVideos": [], @@ -15225,7 +15105,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 56, + "teamId": "11", "time": 7875573, "featuredRunMedia": null, "reactionVideos": [], @@ -15243,7 +15123,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 17, + "teamId": "28", "time": 7895055, "featuredRunMedia": null, "reactionVideos": [], @@ -15261,7 +15141,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 7, + "teamId": "67", "time": 7900261, "featuredRunMedia": null, "reactionVideos": [], @@ -15279,7 +15159,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 92, + "teamId": "41", "time": 7953239, "featuredRunMedia": null, "reactionVideos": [], @@ -15297,7 +15177,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 45, + "teamId": "88", "time": 7970530, "featuredRunMedia": null, "reactionVideos": [], @@ -15315,7 +15195,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 93, + "teamId": "75", "time": 7972648, "featuredRunMedia": null, "reactionVideos": [], @@ -15333,7 +15213,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 70, + "teamId": "90", "time": 7999985, "featuredRunMedia": null, "reactionVideos": [], @@ -15351,7 +15231,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 80, + "teamId": "29", "time": 8032177, "featuredRunMedia": null, "reactionVideos": [], @@ -15369,7 +15249,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 23, + "teamId": "108", "time": 8045629, "featuredRunMedia": null, "reactionVideos": [], @@ -15387,7 +15267,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 72, + "teamId": "56", "time": 8045805, "featuredRunMedia": null, "reactionVideos": [], @@ -15405,7 +15285,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 27, + "teamId": "103", "time": 8121422, "featuredRunMedia": null, "reactionVideos": [], @@ -15423,7 +15303,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 63, + "teamId": "20", "time": 8124520, "featuredRunMedia": null, "reactionVideos": [], @@ -15441,7 +15321,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 54, + "teamId": "94", "time": 8134734, "featuredRunMedia": null, "reactionVideos": [], @@ -15459,7 +15339,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 92, + "teamId": "41", "time": 8142928, "featuredRunMedia": null, "reactionVideos": [], @@ -15477,7 +15357,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 56, + "teamId": "11", "time": 8176995, "featuredRunMedia": null, "reactionVideos": [], @@ -15495,7 +15375,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 109, + "teamId": "17", "time": 8277338, "featuredRunMedia": null, "reactionVideos": [], @@ -15513,7 +15393,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 49, + "teamId": "78", "time": 8353427, "featuredRunMedia": null, "reactionVideos": [], @@ -15531,7 +15411,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 19, + "teamId": "50", "time": 8411718, "featuredRunMedia": null, "reactionVideos": [], @@ -15549,7 +15429,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 97, + "teamId": "5", "time": 8418870, "featuredRunMedia": null, "reactionVideos": [], @@ -15567,7 +15447,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 33, + "teamId": "99", "time": 8423525, "featuredRunMedia": null, "reactionVideos": [], @@ -15585,7 +15465,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 114, + "teamId": "54", "time": 8461176, "featuredRunMedia": null, "reactionVideos": [], @@ -15603,7 +15483,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 47, + "teamId": "10", "time": 8462213, "featuredRunMedia": null, "reactionVideos": [], @@ -15621,7 +15501,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 63, + "teamId": "20", "time": 8473326, "featuredRunMedia": null, "reactionVideos": [], @@ -15639,7 +15519,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 96, + "teamId": "22", "time": 8474280, "featuredRunMedia": null, "reactionVideos": [], @@ -15657,7 +15537,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 51, + "teamId": "79", "time": 8474959, "featuredRunMedia": null, "reactionVideos": [], @@ -15675,7 +15555,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 8494063, "featuredRunMedia": null, "reactionVideos": [], @@ -15693,7 +15573,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 45, + "teamId": "88", "time": 8498678, "featuredRunMedia": null, "reactionVideos": [], @@ -15711,7 +15591,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 66, + "teamId": "36", "time": 8515488, "featuredRunMedia": null, "reactionVideos": [], @@ -15729,7 +15609,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 14, + "teamId": "21", "time": 8542456, "featuredRunMedia": null, "reactionVideos": [], @@ -15747,7 +15627,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 8542465, "featuredRunMedia": null, "reactionVideos": [], @@ -15765,7 +15645,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 21, + "teamId": "80", "time": 8548583, "featuredRunMedia": null, "reactionVideos": [], @@ -15783,7 +15663,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 8550812, "featuredRunMedia": null, "reactionVideos": [], @@ -15801,7 +15681,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 71, + "teamId": "4", "time": 8552505, "featuredRunMedia": null, "reactionVideos": [], @@ -15819,7 +15699,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 8572528, "featuredRunMedia": null, "reactionVideos": [], @@ -15837,7 +15717,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 8578545, "featuredRunMedia": null, "reactionVideos": [], @@ -15855,7 +15735,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 74, + "teamId": "2", "time": 8604210, "featuredRunMedia": null, "reactionVideos": [], @@ -15873,7 +15753,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 8607402, "featuredRunMedia": null, "reactionVideos": [], @@ -15891,7 +15771,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 8612472, "featuredRunMedia": null, "reactionVideos": [], @@ -15909,7 +15789,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 39, + "teamId": "59", "time": 8630897, "featuredRunMedia": null, "reactionVideos": [], @@ -15927,7 +15807,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 29, + "teamId": "76", "time": 8633254, "featuredRunMedia": null, "reactionVideos": [], @@ -15945,7 +15825,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 104, + "teamId": "31", "time": 8634301, "featuredRunMedia": null, "reactionVideos": [], @@ -15963,7 +15843,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 56, + "teamId": "11", "time": 8645950, "featuredRunMedia": null, "reactionVideos": [], @@ -15981,7 +15861,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 70, + "teamId": "90", "time": 8671120, "featuredRunMedia": null, "reactionVideos": [], @@ -15999,7 +15879,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 8697975, "featuredRunMedia": null, "reactionVideos": [], @@ -16017,7 +15897,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 79, + "teamId": "93", "time": 8702500, "featuredRunMedia": null, "reactionVideos": [], @@ -16035,7 +15915,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 99, + "teamId": "86", "time": 8731163, "featuredRunMedia": null, "reactionVideos": [], @@ -16053,7 +15933,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 8737875, "featuredRunMedia": null, "reactionVideos": [], @@ -16071,7 +15951,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 63, + "teamId": "20", "time": 8756507, "featuredRunMedia": null, "reactionVideos": [], @@ -16089,7 +15969,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 16, + "teamId": "7", "time": 8773746, "featuredRunMedia": null, "reactionVideos": [], @@ -16107,7 +15987,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 48, + "teamId": "97", "time": 8785110, "featuredRunMedia": null, "reactionVideos": [], @@ -16125,7 +16005,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 27, + "teamId": "103", "time": 8808687, "featuredRunMedia": null, "reactionVideos": [], @@ -16143,7 +16023,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 35, + "teamId": "30", "time": 8816323, "featuredRunMedia": null, "reactionVideos": [], @@ -16161,7 +16041,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 8825049, "featuredRunMedia": null, "reactionVideos": [], @@ -16179,7 +16059,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 8833928, "featuredRunMedia": null, "reactionVideos": [], @@ -16197,7 +16077,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 26, + "teamId": "118", "time": 8860898, "featuredRunMedia": null, "reactionVideos": [], @@ -16215,7 +16095,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 96, + "teamId": "22", "time": 8908598, "featuredRunMedia": null, "reactionVideos": [], @@ -16233,7 +16113,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 59, + "teamId": "63", "time": 8921710, "featuredRunMedia": null, "reactionVideos": [], @@ -16251,7 +16131,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 65, + "teamId": "19", "time": 8933613, "featuredRunMedia": null, "reactionVideos": [], @@ -16269,7 +16149,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 8957739, "featuredRunMedia": null, "reactionVideos": [], @@ -16287,7 +16167,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 62, + "teamId": "100", "time": 8973724, "featuredRunMedia": null, "reactionVideos": [], @@ -16305,7 +16185,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 40, + "teamId": "83", "time": 8997153, "featuredRunMedia": null, "reactionVideos": [], @@ -16323,7 +16203,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 5, + "teamId": "115", "time": 9002808, "featuredRunMedia": null, "reactionVideos": [], @@ -16341,7 +16221,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 2, + "teamId": "25", "time": 9012565, "featuredRunMedia": null, "reactionVideos": [], @@ -16359,7 +16239,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 33, + "teamId": "99", "time": 9024325, "featuredRunMedia": null, "reactionVideos": [], @@ -16377,7 +16257,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 58, + "teamId": "42", "time": 9030472, "featuredRunMedia": null, "reactionVideos": [], @@ -16395,7 +16275,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 9038257, "featuredRunMedia": null, "reactionVideos": [], @@ -16413,7 +16293,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 35, + "teamId": "30", "time": 9040199, "featuredRunMedia": null, "reactionVideos": [], @@ -16431,7 +16311,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 65, + "teamId": "19", "time": 9050720, "featuredRunMedia": null, "reactionVideos": [], @@ -16449,7 +16329,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 65, + "teamId": "19", "time": 9100900, "featuredRunMedia": null, "reactionVideos": [], @@ -16467,7 +16347,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 82, + "teamId": "105", "time": 9101446, "featuredRunMedia": null, "reactionVideos": [], @@ -16485,7 +16365,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 86, + "teamId": "96", "time": 9109033, "featuredRunMedia": null, "reactionVideos": [], @@ -16503,7 +16383,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 51, + "teamId": "79", "time": 9137952, "featuredRunMedia": null, "reactionVideos": [], @@ -16521,7 +16401,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 97, + "teamId": "5", "time": 9153813, "featuredRunMedia": null, "reactionVideos": [], @@ -16539,7 +16419,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 72, + "teamId": "56", "time": 9160852, "featuredRunMedia": null, "reactionVideos": [], @@ -16557,7 +16437,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 63, + "teamId": "20", "time": 9169311, "featuredRunMedia": null, "reactionVideos": [], @@ -16575,7 +16455,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 16, + "teamId": "7", "time": 9175788, "featuredRunMedia": null, "reactionVideos": [], @@ -16593,7 +16473,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 35, + "teamId": "30", "time": 9185814, "featuredRunMedia": null, "reactionVideos": [], @@ -16611,7 +16491,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 9208725, "featuredRunMedia": null, "reactionVideos": [], @@ -16629,7 +16509,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 9226478, "featuredRunMedia": null, "reactionVideos": [], @@ -16647,7 +16527,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 108, + "teamId": "66", "time": 9255634, "featuredRunMedia": null, "reactionVideos": [], @@ -16665,7 +16545,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 109, + "teamId": "17", "time": 9319535, "featuredRunMedia": null, "reactionVideos": [], @@ -16683,7 +16563,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 88, + "teamId": "98", "time": 9334139, "featuredRunMedia": null, "reactionVideos": [], @@ -16701,7 +16581,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 26, + "teamId": "118", "time": 9343245, "featuredRunMedia": null, "reactionVideos": [], @@ -16719,7 +16599,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 15, + "teamId": "6", "time": 9343327, "featuredRunMedia": null, "reactionVideos": [], @@ -16737,7 +16617,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 107, + "teamId": "95", "time": 9343357, "featuredRunMedia": null, "reactionVideos": [], @@ -16755,7 +16635,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 97, + "teamId": "5", "time": 9347941, "featuredRunMedia": null, "reactionVideos": [], @@ -16773,7 +16653,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 53, + "teamId": "45", "time": 9395506, "featuredRunMedia": null, "reactionVideos": [], @@ -16791,7 +16671,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 102, + "teamId": "77", "time": 9407298, "featuredRunMedia": null, "reactionVideos": [], @@ -16809,7 +16689,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 9437752, "featuredRunMedia": null, "reactionVideos": [], @@ -16827,7 +16707,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 108, + "teamId": "66", "time": 9473243, "featuredRunMedia": null, "reactionVideos": [], @@ -16845,7 +16725,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 97, + "teamId": "5", "time": 9507621, "featuredRunMedia": null, "reactionVideos": [], @@ -16863,7 +16743,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 9518004, "featuredRunMedia": null, "reactionVideos": [], @@ -16881,7 +16761,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 9560755, "featuredRunMedia": null, "reactionVideos": [], @@ -16899,7 +16779,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 62, + "teamId": "100", "time": 9583389, "featuredRunMedia": null, "reactionVideos": [], @@ -16917,7 +16797,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 4, + "teamId": "1", "time": 9589522, "featuredRunMedia": null, "reactionVideos": [], @@ -16935,7 +16815,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 39, + "teamId": "59", "time": 9593002, "featuredRunMedia": null, "reactionVideos": [], @@ -16953,7 +16833,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 65, + "teamId": "19", "time": 9643909, "featuredRunMedia": null, "reactionVideos": [], @@ -16971,7 +16851,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 64, + "teamId": "92", "time": 9649775, "featuredRunMedia": null, "reactionVideos": [], @@ -16989,7 +16869,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 60, + "teamId": "47", "time": 9671092, "featuredRunMedia": null, "reactionVideos": [], @@ -17007,7 +16887,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 24, + "teamId": "52", "time": 9674969, "featuredRunMedia": null, "reactionVideos": [], @@ -17025,7 +16905,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 102, + "teamId": "77", "time": 9681287, "featuredRunMedia": null, "reactionVideos": [], @@ -17043,7 +16923,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 93, + "teamId": "75", "time": 9689810, "featuredRunMedia": null, "reactionVideos": [], @@ -17061,7 +16941,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 113, + "teamId": "53", "time": 9718063, "featuredRunMedia": null, "reactionVideos": [], @@ -17079,7 +16959,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 22, + "teamId": "112", "time": 9747078, "featuredRunMedia": null, "reactionVideos": [], @@ -17097,7 +16977,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 44, + "teamId": "81", "time": 9780795, "featuredRunMedia": null, "reactionVideos": [], @@ -17115,7 +16995,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 9806006, "featuredRunMedia": null, "reactionVideos": [], @@ -17133,7 +17013,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 15, + "teamId": "6", "time": 9812304, "featuredRunMedia": null, "reactionVideos": [], @@ -17151,7 +17031,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 49, + "teamId": "78", "time": 9832474, "featuredRunMedia": null, "reactionVideos": [], @@ -17169,7 +17049,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 102, + "teamId": "77", "time": 9878909, "featuredRunMedia": null, "reactionVideos": [], @@ -17187,7 +17067,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 40, + "teamId": "83", "time": 9911374, "featuredRunMedia": null, "reactionVideos": [], @@ -17205,7 +17085,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 88, + "teamId": "98", "time": 9933904, "featuredRunMedia": null, "reactionVideos": [], @@ -17223,7 +17103,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 9944996, "featuredRunMedia": null, "reactionVideos": [], @@ -17241,7 +17121,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 39, + "teamId": "59", "time": 9945634, "featuredRunMedia": null, "reactionVideos": [], @@ -17259,7 +17139,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 9968582, "featuredRunMedia": null, "reactionVideos": [], @@ -17277,7 +17157,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 30, + "teamId": "116", "time": 9991749, "featuredRunMedia": null, "reactionVideos": [], @@ -17295,7 +17175,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 19, + "teamId": "50", "time": 9994748, "featuredRunMedia": null, "reactionVideos": [], @@ -17313,7 +17193,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 1, + "teamId": "46", "time": 10014105, "featuredRunMedia": null, "reactionVideos": [], @@ -17331,7 +17211,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 68, + "teamId": "113", "time": 10027299, "featuredRunMedia": null, "reactionVideos": [], @@ -17349,7 +17229,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 50, + "teamId": "39", "time": 10055661, "featuredRunMedia": null, "reactionVideos": [], @@ -17367,7 +17247,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 101, + "teamId": "60", "time": 10095308, "featuredRunMedia": null, "reactionVideos": [], @@ -17385,7 +17265,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 12, + "teamId": "57", "time": 10111613, "featuredRunMedia": null, "reactionVideos": [], @@ -17403,7 +17283,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 10145895, "featuredRunMedia": null, "reactionVideos": [], @@ -17421,7 +17301,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 39, + "teamId": "59", "time": 10199172, "featuredRunMedia": null, "reactionVideos": [], @@ -17439,7 +17319,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 107, + "teamId": "95", "time": 10216713, "featuredRunMedia": null, "reactionVideos": [], @@ -17457,7 +17337,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 66, + "teamId": "36", "time": 10243388, "featuredRunMedia": null, "reactionVideos": [], @@ -17475,7 +17355,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 49, + "teamId": "78", "time": 10244612, "featuredRunMedia": null, "reactionVideos": [], @@ -17493,7 +17373,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 92, + "teamId": "41", "time": 10263943, "featuredRunMedia": null, "reactionVideos": [], @@ -17511,7 +17391,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 10267252, "featuredRunMedia": null, "reactionVideos": [], @@ -17529,7 +17409,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 95, + "teamId": "71", "time": 10308255, "featuredRunMedia": null, "reactionVideos": [], @@ -17547,7 +17427,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 57, + "teamId": "35", "time": 10327135, "featuredRunMedia": null, "reactionVideos": [], @@ -17565,7 +17445,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 10336800, "featuredRunMedia": null, "reactionVideos": [], @@ -17583,7 +17463,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 102, + "teamId": "77", "time": 10339965, "featuredRunMedia": null, "reactionVideos": [], @@ -17601,7 +17481,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 111, + "teamId": "65", "time": 10346030, "featuredRunMedia": null, "reactionVideos": [], @@ -17619,7 +17499,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 71, + "teamId": "4", "time": 10369467, "featuredRunMedia": null, "reactionVideos": [], @@ -17637,7 +17517,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 58, + "teamId": "42", "time": 10373408, "featuredRunMedia": null, "reactionVideos": [], @@ -17655,7 +17535,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 11, + "teamId": "84", "time": 10385319, "featuredRunMedia": null, "reactionVideos": [], @@ -17673,7 +17553,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 58, + "teamId": "42", "time": 10393476, "featuredRunMedia": null, "reactionVideos": [], @@ -17691,7 +17571,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 94, + "teamId": "14", "time": 10419787, "featuredRunMedia": null, "reactionVideos": [], @@ -17709,7 +17589,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 88, + "teamId": "98", "time": 10451772, "featuredRunMedia": null, "reactionVideos": [], @@ -17727,7 +17607,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 2, + "teamId": "25", "time": 10468157, "featuredRunMedia": null, "reactionVideos": [], @@ -17745,7 +17625,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 10474839, "featuredRunMedia": null, "reactionVideos": [], @@ -17763,7 +17643,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 66, + "teamId": "36", "time": 10478974, "featuredRunMedia": null, "reactionVideos": [], @@ -17781,7 +17661,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 79, + "teamId": "93", "time": 10485979, "featuredRunMedia": null, "reactionVideos": [], @@ -17799,7 +17679,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 21, + "teamId": "80", "time": 10497191, "featuredRunMedia": null, "reactionVideos": [], @@ -17817,7 +17697,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 74, + "teamId": "2", "time": 10532672, "featuredRunMedia": null, "reactionVideos": [], @@ -17835,7 +17715,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 49, + "teamId": "78", "time": 10545552, "featuredRunMedia": null, "reactionVideos": [], @@ -17853,7 +17733,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 86, + "teamId": "96", "time": 10570090, "featuredRunMedia": null, "reactionVideos": [], @@ -17871,7 +17751,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 10596617, "featuredRunMedia": null, "reactionVideos": [], @@ -17889,7 +17769,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 27, + "teamId": "103", "time": 10601391, "featuredRunMedia": null, "reactionVideos": [], @@ -17907,7 +17787,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 83, + "teamId": "72", "time": 10603161, "featuredRunMedia": null, "reactionVideos": [], @@ -17925,7 +17805,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 85, + "teamId": "82", "time": 10661047, "featuredRunMedia": null, "reactionVideos": [], @@ -17943,7 +17823,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 108, + "teamId": "66", "time": 10718069, "featuredRunMedia": null, "reactionVideos": [], @@ -17961,7 +17841,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 118, + "teamId": "9", "time": 10742575, "featuredRunMedia": null, "reactionVideos": [], @@ -17979,7 +17859,7 @@ "isFirstToSolveRun": false }, "problemId": "D-railways-CLLTEH", - "teamId": 30, + "teamId": "116", "time": 10746404, "featuredRunMedia": null, "reactionVideos": [], @@ -17997,7 +17877,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 64, + "teamId": "92", "time": 10809014, "featuredRunMedia": null, "reactionVideos": [], @@ -18015,7 +17895,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 21, + "teamId": "80", "time": 10816361, "featuredRunMedia": null, "reactionVideos": [], @@ -18033,7 +17913,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 88, + "teamId": "98", "time": 10816435, "featuredRunMedia": null, "reactionVideos": [], @@ -18051,7 +17931,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 53, + "teamId": "45", "time": 10868672, "featuredRunMedia": null, "reactionVideos": [], @@ -18069,7 +17949,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 34, + "teamId": "43", "time": 10870284, "featuredRunMedia": null, "reactionVideos": [], @@ -18087,7 +17967,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 48, + "teamId": "97", "time": 10883441, "featuredRunMedia": null, "reactionVideos": [], @@ -18105,7 +17985,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 71, + "teamId": "4", "time": 10905080, "featuredRunMedia": null, "reactionVideos": [], @@ -18123,7 +18003,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 6, + "teamId": "49", "time": 10922514, "featuredRunMedia": null, "reactionVideos": [], @@ -18141,7 +18021,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 118, + "teamId": "9", "time": 10974681, "featuredRunMedia": null, "reactionVideos": [], @@ -18159,7 +18039,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 68, + "teamId": "113", "time": 10975999, "featuredRunMedia": null, "reactionVideos": [], @@ -18177,7 +18057,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 67, + "teamId": "27", "time": 10982223, "featuredRunMedia": null, "reactionVideos": [], @@ -18195,7 +18075,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 40, + "teamId": "83", "time": 10996838, "featuredRunMedia": null, "reactionVideos": [], @@ -18213,7 +18093,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 36, + "teamId": "111", "time": 11019611, "featuredRunMedia": null, "reactionVideos": [], @@ -18231,7 +18111,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 34, + "teamId": "43", "time": 11056652, "featuredRunMedia": null, "reactionVideos": [], @@ -18249,7 +18129,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 1, + "teamId": "46", "time": 11075883, "featuredRunMedia": null, "reactionVideos": [], @@ -18267,7 +18147,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 95, + "teamId": "71", "time": 11077375, "featuredRunMedia": null, "reactionVideos": [], @@ -18285,7 +18165,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 49, + "teamId": "78", "time": 11078325, "featuredRunMedia": null, "reactionVideos": [], @@ -18303,7 +18183,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 11088859, "featuredRunMedia": null, "reactionVideos": [], @@ -18321,7 +18201,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 83, + "teamId": "72", "time": 11145661, "featuredRunMedia": null, "reactionVideos": [], @@ -18339,7 +18219,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 90, + "teamId": "40", "time": 11151395, "featuredRunMedia": null, "reactionVideos": [], @@ -18357,7 +18237,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 24, + "teamId": "52", "time": 11165562, "featuredRunMedia": null, "reactionVideos": [], @@ -18375,7 +18255,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 11178181, "featuredRunMedia": null, "reactionVideos": [], @@ -18393,7 +18273,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 11211702, "featuredRunMedia": null, "reactionVideos": [], @@ -18411,7 +18291,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 56, + "teamId": "11", "time": 11219844, "featuredRunMedia": null, "reactionVideos": [], @@ -18429,7 +18309,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 11225403, "featuredRunMedia": null, "reactionVideos": [], @@ -18447,7 +18327,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 37, + "teamId": "70", "time": 11232853, "featuredRunMedia": null, "reactionVideos": [], @@ -18465,7 +18345,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 1, + "teamId": "46", "time": 11236604, "featuredRunMedia": null, "reactionVideos": [], @@ -18483,7 +18363,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 99, + "teamId": "86", "time": 11249168, "featuredRunMedia": null, "reactionVideos": [], @@ -18501,7 +18381,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 63, + "teamId": "20", "time": 11274949, "featuredRunMedia": null, "reactionVideos": [], @@ -18519,7 +18399,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 11287556, "featuredRunMedia": null, "reactionVideos": [], @@ -18537,7 +18417,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 11297129, "featuredRunMedia": null, "reactionVideos": [], @@ -18555,7 +18435,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 118, + "teamId": "9", "time": 11310213, "featuredRunMedia": null, "reactionVideos": [], @@ -18573,7 +18453,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 40, + "teamId": "83", "time": 11317067, "featuredRunMedia": null, "reactionVideos": [], @@ -18591,7 +18471,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 106, + "teamId": "55", "time": 11318740, "featuredRunMedia": null, "reactionVideos": [], @@ -18609,7 +18489,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 90, + "teamId": "40", "time": 11342098, "featuredRunMedia": null, "reactionVideos": [], @@ -18627,7 +18507,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 11351231, "featuredRunMedia": null, "reactionVideos": [], @@ -18645,7 +18525,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 2, + "teamId": "25", "time": 11374369, "featuredRunMedia": null, "reactionVideos": [], @@ -18663,7 +18543,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 104, + "teamId": "31", "time": 11432096, "featuredRunMedia": null, "reactionVideos": [], @@ -18681,7 +18561,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 11459642, "featuredRunMedia": null, "reactionVideos": [], @@ -18699,7 +18579,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 112, + "teamId": "13", "time": 11493486, "featuredRunMedia": null, "reactionVideos": [], @@ -18717,7 +18597,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 3, + "teamId": "51", "time": 11501321, "featuredRunMedia": null, "reactionVideos": [], @@ -18735,7 +18615,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 11509142, "featuredRunMedia": null, "reactionVideos": [], @@ -18753,7 +18633,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 63, + "teamId": "20", "time": 11538846, "featuredRunMedia": null, "reactionVideos": [], @@ -18771,7 +18651,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 83, + "teamId": "72", "time": 11541624, "featuredRunMedia": null, "reactionVideos": [], @@ -18789,7 +18669,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 11568623, "featuredRunMedia": null, "reactionVideos": [], @@ -18807,7 +18687,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 3, + "teamId": "51", "time": 11596960, "featuredRunMedia": null, "reactionVideos": [], @@ -18825,7 +18705,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 8, + "teamId": "101", "time": 11667845, "featuredRunMedia": null, "reactionVideos": [], @@ -18843,7 +18723,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 19, + "teamId": "50", "time": 11725161, "featuredRunMedia": null, "reactionVideos": [], @@ -18861,7 +18741,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 112, + "teamId": "13", "time": 11752683, "featuredRunMedia": null, "reactionVideos": [], @@ -18879,7 +18759,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 64, + "teamId": "92", "time": 11763250, "featuredRunMedia": null, "reactionVideos": [], @@ -18897,7 +18777,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 11783001, "featuredRunMedia": null, "reactionVideos": [], @@ -18915,7 +18795,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 76, + "teamId": "32", "time": 11850406, "featuredRunMedia": null, "reactionVideos": [], @@ -18933,7 +18813,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 11884324, "featuredRunMedia": null, "reactionVideos": [], @@ -18951,7 +18831,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 11886105, "featuredRunMedia": null, "reactionVideos": [], @@ -18969,7 +18849,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 3, + "teamId": "51", "time": 11893809, "featuredRunMedia": null, "reactionVideos": [], @@ -18987,7 +18867,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 86, + "teamId": "96", "time": 11918759, "featuredRunMedia": null, "reactionVideos": [], @@ -19005,7 +18885,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 17, + "teamId": "28", "time": 11926096, "featuredRunMedia": null, "reactionVideos": [], @@ -19023,7 +18903,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 52, + "teamId": "120", "time": 11927828, "featuredRunMedia": null, "reactionVideos": [], @@ -19041,7 +18921,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 11993443, "featuredRunMedia": null, "reactionVideos": [], @@ -19059,7 +18939,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 12039697, "featuredRunMedia": null, "reactionVideos": [], @@ -19077,7 +18957,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 37, + "teamId": "70", "time": 12044590, "featuredRunMedia": null, "reactionVideos": [], @@ -19095,7 +18975,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 23, + "teamId": "108", "time": 12048715, "featuredRunMedia": null, "reactionVideos": [], @@ -19113,7 +18993,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 117, + "teamId": "119", "time": 12054767, "featuredRunMedia": null, "reactionVideos": [], @@ -19131,7 +19011,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 63, + "teamId": "20", "time": 12072071, "featuredRunMedia": null, "reactionVideos": [], @@ -19149,7 +19029,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 30, + "teamId": "116", "time": 12158995, "featuredRunMedia": null, "reactionVideos": [], @@ -19167,7 +19047,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 85, + "teamId": "82", "time": 12170677, "featuredRunMedia": null, "reactionVideos": [], @@ -19185,7 +19065,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 35, + "teamId": "30", "time": 12177831, "featuredRunMedia": null, "reactionVideos": [], @@ -19203,7 +19083,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 94, + "teamId": "14", "time": 12184520, "featuredRunMedia": null, "reactionVideos": [], @@ -19221,7 +19101,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 115, + "teamId": "73", "time": 12184674, "featuredRunMedia": null, "reactionVideos": [], @@ -19239,7 +19119,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 12214035, "featuredRunMedia": null, "reactionVideos": [], @@ -19257,7 +19137,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 12260721, "featuredRunMedia": null, "reactionVideos": [], @@ -19275,7 +19155,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 12304524, "featuredRunMedia": null, "reactionVideos": [], @@ -19293,7 +19173,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 12330544, "featuredRunMedia": null, "reactionVideos": [], @@ -19311,7 +19191,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 56, + "teamId": "11", "time": 12332312, "featuredRunMedia": null, "reactionVideos": [], @@ -19329,7 +19209,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 30, + "teamId": "116", "time": 12340361, "featuredRunMedia": null, "reactionVideos": [], @@ -19347,7 +19227,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 65, + "teamId": "19", "time": 12342891, "featuredRunMedia": null, "reactionVideos": [], @@ -19365,7 +19245,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 93, + "teamId": "75", "time": 12347234, "featuredRunMedia": null, "reactionVideos": [], @@ -19383,7 +19263,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 2, + "teamId": "25", "time": 12361042, "featuredRunMedia": null, "reactionVideos": [], @@ -19401,7 +19281,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 76, + "teamId": "32", "time": 12388436, "featuredRunMedia": null, "reactionVideos": [], @@ -19419,7 +19299,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 115, + "teamId": "73", "time": 12407028, "featuredRunMedia": null, "reactionVideos": [], @@ -19437,7 +19317,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 116, + "teamId": "107", "time": 12490034, "featuredRunMedia": null, "reactionVideos": [], @@ -19455,7 +19335,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 61, + "teamId": "3", "time": 12507670, "featuredRunMedia": null, "reactionVideos": [], @@ -19473,7 +19353,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 96, + "teamId": "22", "time": 12513812, "featuredRunMedia": null, "reactionVideos": [], @@ -19491,7 +19371,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 26, + "teamId": "118", "time": 12531204, "featuredRunMedia": null, "reactionVideos": [], @@ -19509,7 +19389,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 12555838, "featuredRunMedia": null, "reactionVideos": [], @@ -19527,7 +19407,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 115, + "teamId": "73", "time": 12561472, "featuredRunMedia": null, "reactionVideos": [], @@ -19545,7 +19425,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 12579868, "featuredRunMedia": null, "reactionVideos": [], @@ -19563,7 +19443,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 112, + "teamId": "13", "time": 12598215, "featuredRunMedia": null, "reactionVideos": [], @@ -19581,7 +19461,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 12598941, "featuredRunMedia": null, "reactionVideos": [], @@ -19599,7 +19479,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 12615960, "featuredRunMedia": null, "reactionVideos": [], @@ -19617,7 +19497,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 12617352, "featuredRunMedia": null, "reactionVideos": [], @@ -19635,7 +19515,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 12634372, "featuredRunMedia": null, "reactionVideos": [], @@ -19653,7 +19533,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 112, + "teamId": "13", "time": 12635305, "featuredRunMedia": null, "reactionVideos": [], @@ -19671,7 +19551,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 12660787, "featuredRunMedia": null, "reactionVideos": [], @@ -19689,7 +19569,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 12694806, "featuredRunMedia": null, "reactionVideos": [], @@ -19707,7 +19587,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 102, + "teamId": "77", "time": 12700335, "featuredRunMedia": null, "reactionVideos": [], @@ -19725,7 +19605,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 12701352, "featuredRunMedia": null, "reactionVideos": [], @@ -19743,7 +19623,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 116, + "teamId": "107", "time": 12711404, "featuredRunMedia": null, "reactionVideos": [], @@ -19761,7 +19641,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 31, + "teamId": "121", "time": 12726223, "featuredRunMedia": null, "reactionVideos": [], @@ -19779,7 +19659,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 10, + "teamId": "89", "time": 12735820, "featuredRunMedia": null, "reactionVideos": [], @@ -19797,7 +19677,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 23, + "teamId": "108", "time": 12746582, "featuredRunMedia": null, "reactionVideos": [], @@ -19815,7 +19695,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 102, + "teamId": "77", "time": 12810536, "featuredRunMedia": null, "reactionVideos": [], @@ -19833,7 +19713,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 12810557, "featuredRunMedia": null, "reactionVideos": [], @@ -19851,7 +19731,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 31, + "teamId": "121", "time": 12855278, "featuredRunMedia": null, "reactionVideos": [], @@ -19869,7 +19749,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 12856998, "featuredRunMedia": null, "reactionVideos": [], @@ -19887,7 +19767,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 120, + "teamId": "34", "time": 12872761, "featuredRunMedia": null, "reactionVideos": [], @@ -19905,7 +19785,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 56, + "teamId": "11", "time": 12895209, "featuredRunMedia": null, "reactionVideos": [], @@ -19923,7 +19803,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 16, + "teamId": "7", "time": 12923335, "featuredRunMedia": null, "reactionVideos": [], @@ -19941,7 +19821,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 11, + "teamId": "84", "time": 12932811, "featuredRunMedia": null, "reactionVideos": [], @@ -19959,7 +19839,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 55, + "teamId": "16", "time": 12988071, "featuredRunMedia": null, "reactionVideos": [], @@ -19977,7 +19857,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 13, + "teamId": "91", "time": 12988176, "featuredRunMedia": null, "reactionVideos": [], @@ -19995,7 +19875,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 37, + "teamId": "70", "time": 13004025, "featuredRunMedia": null, "reactionVideos": [], @@ -20013,7 +19893,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 13023559, "featuredRunMedia": null, "reactionVideos": [], @@ -20031,7 +19911,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 13040910, "featuredRunMedia": null, "reactionVideos": [], @@ -20049,7 +19929,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 8, + "teamId": "101", "time": 13050062, "featuredRunMedia": null, "reactionVideos": [], @@ -20067,7 +19947,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 84, + "teamId": "64", "time": 13051356, "featuredRunMedia": null, "reactionVideos": [], @@ -20085,7 +19965,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13054818, "featuredRunMedia": null, "reactionVideos": [], @@ -20103,7 +19983,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 13062867, "featuredRunMedia": null, "reactionVideos": [], @@ -20121,7 +20001,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 7, + "teamId": "67", "time": 13077418, "featuredRunMedia": null, "reactionVideos": [], @@ -20139,7 +20019,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 13, + "teamId": "91", "time": 13086754, "featuredRunMedia": null, "reactionVideos": [], @@ -20157,7 +20037,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 58, + "teamId": "42", "time": 13125556, "featuredRunMedia": null, "reactionVideos": [], @@ -20175,7 +20055,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 13137474, "featuredRunMedia": null, "reactionVideos": [], @@ -20193,7 +20073,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 13145010, "featuredRunMedia": null, "reactionVideos": [], @@ -20211,7 +20091,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 48, + "teamId": "97", "time": 13149999, "featuredRunMedia": null, "reactionVideos": [], @@ -20229,7 +20109,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13151340, "featuredRunMedia": null, "reactionVideos": [], @@ -20247,7 +20127,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 79, + "teamId": "93", "time": 13156599, "featuredRunMedia": null, "reactionVideos": [], @@ -20265,7 +20145,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 41, + "teamId": "61", "time": 13191545, "featuredRunMedia": null, "reactionVideos": [], @@ -20283,7 +20163,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 1, + "teamId": "46", "time": 13195115, "featuredRunMedia": null, "reactionVideos": [], @@ -20301,7 +20181,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 109, + "teamId": "17", "time": 13205221, "featuredRunMedia": null, "reactionVideos": [], @@ -20319,7 +20199,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 31, + "teamId": "121", "time": 13208644, "featuredRunMedia": null, "reactionVideos": [], @@ -20337,7 +20217,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 20, + "teamId": "74", "time": 13244268, "featuredRunMedia": null, "reactionVideos": [], @@ -20355,7 +20235,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 30, + "teamId": "116", "time": 13269890, "featuredRunMedia": null, "reactionVideos": [], @@ -20373,7 +20253,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 119, + "teamId": "15", "time": 13272179, "featuredRunMedia": null, "reactionVideos": [], @@ -20391,7 +20271,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 56, + "teamId": "11", "time": 13286189, "featuredRunMedia": null, "reactionVideos": [], @@ -20409,7 +20289,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 115, + "teamId": "73", "time": 13287951, "featuredRunMedia": null, "reactionVideos": [], @@ -20427,7 +20307,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 13301652, "featuredRunMedia": null, "reactionVideos": [], @@ -20445,7 +20325,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 27, + "teamId": "103", "time": 13320801, "featuredRunMedia": null, "reactionVideos": [], @@ -20463,7 +20343,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 90, + "teamId": "40", "time": 13329560, "featuredRunMedia": null, "reactionVideos": [], @@ -20481,7 +20361,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 92, + "teamId": "41", "time": 13341510, "featuredRunMedia": null, "reactionVideos": [], @@ -20499,7 +20379,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 35, + "teamId": "30", "time": 13361254, "featuredRunMedia": null, "reactionVideos": [], @@ -20517,7 +20397,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 2, + "teamId": "25", "time": 13384566, "featuredRunMedia": null, "reactionVideos": [], @@ -20535,7 +20415,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 60, + "teamId": "47", "time": 13394212, "featuredRunMedia": null, "reactionVideos": [], @@ -20553,7 +20433,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13402370, "featuredRunMedia": null, "reactionVideos": [], @@ -20571,7 +20451,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 119, + "teamId": "15", "time": 13406719, "featuredRunMedia": null, "reactionVideos": [], @@ -20589,7 +20469,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13426813, "featuredRunMedia": null, "reactionVideos": [], @@ -20607,7 +20487,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 30, + "teamId": "116", "time": 13453139, "featuredRunMedia": null, "reactionVideos": [], @@ -20625,7 +20505,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13458417, "featuredRunMedia": null, "reactionVideos": [], @@ -20643,7 +20523,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 78, + "teamId": "37", "time": 13463316, "featuredRunMedia": null, "reactionVideos": [], @@ -20661,7 +20541,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 57, + "teamId": "35", "time": 13477746, "featuredRunMedia": null, "reactionVideos": [], @@ -20679,7 +20559,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 11, + "teamId": "84", "time": 13489420, "featuredRunMedia": null, "reactionVideos": [], @@ -20697,7 +20577,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 13, + "teamId": "91", "time": 13507569, "featuredRunMedia": null, "reactionVideos": [], @@ -20715,7 +20595,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 2, + "teamId": "25", "time": 13521141, "featuredRunMedia": null, "reactionVideos": [], @@ -20733,7 +20613,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 6, + "teamId": "49", "time": 13532212, "featuredRunMedia": null, "reactionVideos": [], @@ -20751,7 +20631,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 54, + "teamId": "94", "time": 13562446, "featuredRunMedia": null, "reactionVideos": [], @@ -20769,7 +20649,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 56, + "teamId": "11", "time": 13591494, "featuredRunMedia": null, "reactionVideos": [], @@ -20787,7 +20667,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 4, + "teamId": "1", "time": 13642737, "featuredRunMedia": null, "reactionVideos": [], @@ -20805,7 +20685,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 44, + "teamId": "81", "time": 13649510, "featuredRunMedia": null, "reactionVideos": [], @@ -20823,7 +20703,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 69, + "teamId": "58", "time": 13679270, "featuredRunMedia": null, "reactionVideos": [], @@ -20841,7 +20721,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 94, + "teamId": "14", "time": 13686109, "featuredRunMedia": null, "reactionVideos": [], @@ -20859,7 +20739,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 39, + "teamId": "59", "time": 13703336, "featuredRunMedia": null, "reactionVideos": [], @@ -20877,7 +20757,7 @@ "isFirstToSolveRun": false }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 38, + "teamId": "24", "time": 13716014, "featuredRunMedia": null, "reactionVideos": [], @@ -20895,7 +20775,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13727808, "featuredRunMedia": null, "reactionVideos": [], @@ -20913,7 +20793,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 72, + "teamId": "56", "time": 13735528, "featuredRunMedia": null, "reactionVideos": [], @@ -20931,7 +20811,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 13758123, "featuredRunMedia": null, "reactionVideos": [], @@ -20949,7 +20829,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 106, + "teamId": "55", "time": 13782457, "featuredRunMedia": null, "reactionVideos": [], @@ -20967,7 +20847,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 91, + "teamId": "18", "time": 13800743, "featuredRunMedia": null, "reactionVideos": [], @@ -20985,7 +20865,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 69, + "teamId": "58", "time": 13847088, "featuredRunMedia": null, "reactionVideos": [], @@ -21003,7 +20883,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 85, + "teamId": "82", "time": 13852467, "featuredRunMedia": null, "reactionVideos": [], @@ -21021,7 +20901,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 13856183, "featuredRunMedia": null, "reactionVideos": [], @@ -21039,7 +20919,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 72, + "teamId": "56", "time": 13863365, "featuredRunMedia": null, "reactionVideos": [], @@ -21057,7 +20937,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 13907994, "featuredRunMedia": null, "reactionVideos": [], @@ -21075,7 +20955,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 70, + "teamId": "90", "time": 13922456, "featuredRunMedia": null, "reactionVideos": [], @@ -21093,7 +20973,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 69, + "teamId": "58", "time": 13964628, "featuredRunMedia": null, "reactionVideos": [], @@ -21111,7 +20991,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 110, + "teamId": "114", "time": 13986358, "featuredRunMedia": null, "reactionVideos": [], @@ -21129,7 +21009,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 91, + "teamId": "18", "time": 13999292, "featuredRunMedia": null, "reactionVideos": [], @@ -21147,7 +21027,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 6, + "teamId": "49", "time": 14013400, "featuredRunMedia": null, "reactionVideos": [], @@ -21165,7 +21045,7 @@ "isFirstToSolveRun": false }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 26, + "teamId": "118", "time": 14036565, "featuredRunMedia": null, "reactionVideos": [], @@ -21183,7 +21063,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 31, + "teamId": "121", "time": 14050121, "featuredRunMedia": null, "reactionVideos": [], @@ -21201,7 +21081,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 57, + "teamId": "35", "time": 14089322, "featuredRunMedia": null, "reactionVideos": [], @@ -21219,7 +21099,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 106, + "teamId": "55", "time": 14100821, "featuredRunMedia": null, "reactionVideos": [], @@ -21237,7 +21117,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 17, + "teamId": "28", "time": 14117461, "featuredRunMedia": null, "reactionVideos": [], @@ -21255,7 +21135,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 33, + "teamId": "99", "time": 14119416, "featuredRunMedia": null, "reactionVideos": [], @@ -21273,7 +21153,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 42, + "teamId": "33", "time": 14122322, "featuredRunMedia": null, "reactionVideos": [], @@ -21291,7 +21171,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 101, + "teamId": "60", "time": 14127410, "featuredRunMedia": null, "reactionVideos": [], @@ -21309,7 +21189,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 106, + "teamId": "55", "time": 14139565, "featuredRunMedia": null, "reactionVideos": [], @@ -21327,7 +21207,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 2, + "teamId": "25", "time": 14153090, "featuredRunMedia": null, "reactionVideos": [], @@ -21345,7 +21225,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 14164477, "featuredRunMedia": null, "reactionVideos": [], @@ -21363,7 +21243,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 1, + "teamId": "46", "time": 14171474, "featuredRunMedia": null, "reactionVideos": [], @@ -21381,7 +21261,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 76, + "teamId": "32", "time": 14196161, "featuredRunMedia": null, "reactionVideos": [], @@ -21399,7 +21279,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 14, + "teamId": "21", "time": 14215449, "featuredRunMedia": null, "reactionVideos": [], @@ -21417,7 +21297,7 @@ "isFirstToSolveRun": false }, "problemId": "C-binary-string-HVFWFC", - "teamId": 100, + "teamId": "38", "time": 14254420, "featuredRunMedia": null, "reactionVideos": [], @@ -21435,7 +21315,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 14269789, "featuredRunMedia": null, "reactionVideos": [], @@ -21453,7 +21333,7 @@ "isFirstToSolveRun": false }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 95, + "teamId": "71", "time": 14306656, "featuredRunMedia": null, "reactionVideos": [], @@ -21471,7 +21351,7 @@ "isFirstToSolveRun": false }, "problemId": "F-chat-SEOHSI", - "teamId": 110, + "teamId": "114", "time": 14309092, "featuredRunMedia": null, "reactionVideos": [], @@ -21489,7 +21369,7 @@ "isFirstToSolveRun": false }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 41, + "teamId": "61", "time": 14316363, "featuredRunMedia": null, "reactionVideos": [], @@ -21507,7 +21387,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 102, + "teamId": "77", "time": 14328879, "featuredRunMedia": null, "reactionVideos": [], @@ -21525,7 +21405,7 @@ "isFirstToSolveRun": false }, "problemId": "G-tree-game-TNLSWY", - "teamId": 1, + "teamId": "46", "time": 14340735, "featuredRunMedia": null, "reactionVideos": [], @@ -21543,7 +21423,7 @@ "isFirstToSolveRun": false }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 82, + "teamId": "105", "time": 14360229, "featuredRunMedia": null, "reactionVideos": [], @@ -21561,7 +21441,7 @@ "isFirstToSolveRun": false }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 14369583, "featuredRunMedia": null, "reactionVideos": [], @@ -21579,7 +21459,7 @@ "isFirstToSolveRun": false }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 3, + "teamId": "51", "time": 14395750, "featuredRunMedia": null, "reactionVideos": [], @@ -21592,7 +21472,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 113, + "teamId": "53", "time": 14407803, "featuredRunMedia": null, "reactionVideos": [], @@ -21605,7 +21485,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 14603377, "featuredRunMedia": null, "reactionVideos": [], @@ -21618,7 +21498,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 99, + "teamId": "86", "time": 14637870, "featuredRunMedia": null, "reactionVideos": [], @@ -21631,7 +21511,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 73, + "teamId": "68", "time": 14649570, "featuredRunMedia": null, "reactionVideos": [], @@ -21644,7 +21524,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 14674820, "featuredRunMedia": null, "reactionVideos": [], @@ -21657,7 +21537,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 17, + "teamId": "28", "time": 14721379, "featuredRunMedia": null, "reactionVideos": [], @@ -21670,7 +21550,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 103, + "teamId": "104", "time": 14740552, "featuredRunMedia": null, "reactionVideos": [], @@ -21683,7 +21563,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 106, + "teamId": "55", "time": 14747829, "featuredRunMedia": null, "reactionVideos": [], @@ -21696,7 +21576,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 24, + "teamId": "52", "time": 14765496, "featuredRunMedia": null, "reactionVideos": [], @@ -21709,7 +21589,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 38, + "teamId": "24", "time": 14767770, "featuredRunMedia": null, "reactionVideos": [], @@ -21722,7 +21602,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 75, + "teamId": "8", "time": 14773654, "featuredRunMedia": null, "reactionVideos": [], @@ -21735,7 +21615,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 57, + "teamId": "35", "time": 14818752, "featuredRunMedia": null, "reactionVideos": [], @@ -21748,7 +21628,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 14819489, "featuredRunMedia": null, "reactionVideos": [], @@ -21761,7 +21641,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 83, + "teamId": "72", "time": 14821322, "featuredRunMedia": null, "reactionVideos": [], @@ -21774,7 +21654,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 115, + "teamId": "73", "time": 14849996, "featuredRunMedia": null, "reactionVideos": [], @@ -21787,7 +21667,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 14886035, "featuredRunMedia": null, "reactionVideos": [], @@ -21800,7 +21680,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 3, + "teamId": "51", "time": 14890642, "featuredRunMedia": null, "reactionVideos": [], @@ -21813,7 +21693,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 14891707, "featuredRunMedia": null, "reactionVideos": [], @@ -21826,7 +21706,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 79, + "teamId": "93", "time": 14926193, "featuredRunMedia": null, "reactionVideos": [], @@ -21839,7 +21719,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 56, + "teamId": "11", "time": 14932078, "featuredRunMedia": null, "reactionVideos": [], @@ -21852,7 +21732,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 3, + "teamId": "51", "time": 14975743, "featuredRunMedia": null, "reactionVideos": [], @@ -21865,7 +21745,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 72, + "teamId": "56", "time": 15037577, "featuredRunMedia": null, "reactionVideos": [], @@ -21878,7 +21758,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 4, + "teamId": "1", "time": 15045381, "featuredRunMedia": null, "reactionVideos": [], @@ -21891,7 +21771,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 75, + "teamId": "8", "time": 15045604, "featuredRunMedia": null, "reactionVideos": [], @@ -21904,7 +21784,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 16, + "teamId": "7", "time": 15048608, "featuredRunMedia": null, "reactionVideos": [], @@ -21917,7 +21797,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 110, + "teamId": "114", "time": 15055795, "featuredRunMedia": null, "reactionVideos": [], @@ -21930,7 +21810,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 25, + "teamId": "85", "time": 15072366, "featuredRunMedia": null, "reactionVideos": [], @@ -21943,7 +21823,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 112, + "teamId": "13", "time": 15075886, "featuredRunMedia": null, "reactionVideos": [], @@ -21956,7 +21836,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 15129417, "featuredRunMedia": null, "reactionVideos": [], @@ -21969,7 +21849,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 15156353, "featuredRunMedia": null, "reactionVideos": [], @@ -21982,7 +21862,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 52, + "teamId": "120", "time": 15192356, "featuredRunMedia": null, "reactionVideos": [], @@ -21995,7 +21875,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 84, + "teamId": "64", "time": 15204987, "featuredRunMedia": null, "reactionVideos": [], @@ -22008,7 +21888,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 23, + "teamId": "108", "time": 15206009, "featuredRunMedia": null, "reactionVideos": [], @@ -22021,7 +21901,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 99, + "teamId": "86", "time": 15213120, "featuredRunMedia": null, "reactionVideos": [], @@ -22034,7 +21914,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 103, + "teamId": "104", "time": 15239375, "featuredRunMedia": null, "reactionVideos": [], @@ -22047,7 +21927,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 69, + "teamId": "58", "time": 15260550, "featuredRunMedia": null, "reactionVideos": [], @@ -22060,7 +21940,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 48, + "teamId": "97", "time": 15276649, "featuredRunMedia": null, "reactionVideos": [], @@ -22073,7 +21953,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 76, + "teamId": "32", "time": 15276961, "featuredRunMedia": null, "reactionVideos": [], @@ -22086,7 +21966,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 82, + "teamId": "105", "time": 15277715, "featuredRunMedia": null, "reactionVideos": [], @@ -22099,7 +21979,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 15, + "teamId": "6", "time": 15293115, "featuredRunMedia": null, "reactionVideos": [], @@ -22112,7 +21992,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 15303725, "featuredRunMedia": null, "reactionVideos": [], @@ -22125,7 +22005,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 44, + "teamId": "81", "time": 15329115, "featuredRunMedia": null, "reactionVideos": [], @@ -22138,7 +22018,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 15336770, "featuredRunMedia": null, "reactionVideos": [], @@ -22151,7 +22031,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 36, + "teamId": "111", "time": 15345410, "featuredRunMedia": null, "reactionVideos": [], @@ -22164,7 +22044,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 36, + "teamId": "111", "time": 15394082, "featuredRunMedia": null, "reactionVideos": [], @@ -22177,7 +22057,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 19, + "teamId": "50", "time": 15402308, "featuredRunMedia": null, "reactionVideos": [], @@ -22190,7 +22070,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 13, + "teamId": "91", "time": 15408191, "featuredRunMedia": null, "reactionVideos": [], @@ -22203,7 +22083,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 63, + "teamId": "20", "time": 15420241, "featuredRunMedia": null, "reactionVideos": [], @@ -22216,7 +22096,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 19, + "teamId": "50", "time": 15430408, "featuredRunMedia": null, "reactionVideos": [], @@ -22229,7 +22109,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 15489964, "featuredRunMedia": null, "reactionVideos": [], @@ -22242,7 +22122,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 120, + "teamId": "34", "time": 15494098, "featuredRunMedia": null, "reactionVideos": [], @@ -22255,7 +22135,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 10, + "teamId": "89", "time": 15513415, "featuredRunMedia": null, "reactionVideos": [], @@ -22268,7 +22148,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 108, + "teamId": "66", "time": 15591807, "featuredRunMedia": null, "reactionVideos": [], @@ -22281,7 +22161,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 13, + "teamId": "91", "time": 15592901, "featuredRunMedia": null, "reactionVideos": [], @@ -22294,7 +22174,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 27, + "teamId": "103", "time": 15599944, "featuredRunMedia": null, "reactionVideos": [], @@ -22307,7 +22187,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 10, + "teamId": "89", "time": 15602009, "featuredRunMedia": null, "reactionVideos": [], @@ -22320,7 +22200,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 69, + "teamId": "58", "time": 15612040, "featuredRunMedia": null, "reactionVideos": [], @@ -22333,7 +22213,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 52, + "teamId": "120", "time": 15622848, "featuredRunMedia": null, "reactionVideos": [], @@ -22346,7 +22226,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 15633156, "featuredRunMedia": null, "reactionVideos": [], @@ -22359,7 +22239,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 75, + "teamId": "8", "time": 15634387, "featuredRunMedia": null, "reactionVideos": [], @@ -22372,7 +22252,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 92, + "teamId": "41", "time": 15661957, "featuredRunMedia": null, "reactionVideos": [], @@ -22385,7 +22265,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 32, + "teamId": "62", "time": 15692078, "featuredRunMedia": null, "reactionVideos": [], @@ -22398,7 +22278,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 44, + "teamId": "81", "time": 15714910, "featuredRunMedia": null, "reactionVideos": [], @@ -22411,7 +22291,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 118, + "teamId": "9", "time": 15733933, "featuredRunMedia": null, "reactionVideos": [], @@ -22424,7 +22304,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 15741101, "featuredRunMedia": null, "reactionVideos": [], @@ -22437,7 +22317,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 15781682, "featuredRunMedia": null, "reactionVideos": [], @@ -22450,7 +22330,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 8, + "teamId": "101", "time": 15858831, "featuredRunMedia": null, "reactionVideos": [], @@ -22463,7 +22343,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 6, + "teamId": "49", "time": 15868497, "featuredRunMedia": null, "reactionVideos": [], @@ -22476,7 +22356,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 15881871, "featuredRunMedia": null, "reactionVideos": [], @@ -22489,7 +22369,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 27, + "teamId": "103", "time": 15898687, "featuredRunMedia": null, "reactionVideos": [], @@ -22502,7 +22382,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 15906091, "featuredRunMedia": null, "reactionVideos": [], @@ -22515,7 +22395,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 56, + "teamId": "11", "time": 15907848, "featuredRunMedia": null, "reactionVideos": [], @@ -22528,7 +22408,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 15912030, "featuredRunMedia": null, "reactionVideos": [], @@ -22541,7 +22421,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 15913384, "featuredRunMedia": null, "reactionVideos": [], @@ -22554,7 +22434,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 93, + "teamId": "75", "time": 15946812, "featuredRunMedia": null, "reactionVideos": [], @@ -22567,7 +22447,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 5, + "teamId": "115", "time": 15976742, "featuredRunMedia": null, "reactionVideos": [], @@ -22580,7 +22460,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 116, + "teamId": "107", "time": 16007570, "featuredRunMedia": null, "reactionVideos": [], @@ -22593,7 +22473,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 46, + "teamId": "117", "time": 16009768, "featuredRunMedia": null, "reactionVideos": [], @@ -22606,7 +22486,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 14, + "teamId": "21", "time": 16021424, "featuredRunMedia": null, "reactionVideos": [], @@ -22619,7 +22499,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 16090389, "featuredRunMedia": null, "reactionVideos": [], @@ -22632,7 +22512,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 117, + "teamId": "119", "time": 16098236, "featuredRunMedia": null, "reactionVideos": [], @@ -22645,7 +22525,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 81, + "teamId": "106", "time": 16114768, "featuredRunMedia": null, "reactionVideos": [], @@ -22658,7 +22538,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 70, + "teamId": "90", "time": 16116333, "featuredRunMedia": null, "reactionVideos": [], @@ -22671,7 +22551,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 110, + "teamId": "114", "time": 16153444, "featuredRunMedia": null, "reactionVideos": [], @@ -22684,7 +22564,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 52, + "teamId": "120", "time": 16168667, "featuredRunMedia": null, "reactionVideos": [], @@ -22697,7 +22577,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 50, + "teamId": "39", "time": 16224490, "featuredRunMedia": null, "reactionVideos": [], @@ -22710,7 +22590,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 44, + "teamId": "81", "time": 16224708, "featuredRunMedia": null, "reactionVideos": [], @@ -22723,7 +22603,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 16241547, "featuredRunMedia": null, "reactionVideos": [], @@ -22736,7 +22616,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 7, + "teamId": "67", "time": 16255977, "featuredRunMedia": null, "reactionVideos": [], @@ -22749,7 +22629,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 93, + "teamId": "75", "time": 16275278, "featuredRunMedia": null, "reactionVideos": [], @@ -22762,7 +22642,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 58, + "teamId": "42", "time": 16304872, "featuredRunMedia": null, "reactionVideos": [], @@ -22775,7 +22655,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 92, + "teamId": "41", "time": 16307673, "featuredRunMedia": null, "reactionVideos": [], @@ -22788,7 +22668,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 26, + "teamId": "118", "time": 16317703, "featuredRunMedia": null, "reactionVideos": [], @@ -22801,7 +22681,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 3, + "teamId": "51", "time": 16356336, "featuredRunMedia": null, "reactionVideos": [], @@ -22814,7 +22694,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 32, + "teamId": "62", "time": 16387434, "featuredRunMedia": null, "reactionVideos": [], @@ -22827,7 +22707,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 16397569, "featuredRunMedia": null, "reactionVideos": [], @@ -22840,7 +22720,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 16402490, "featuredRunMedia": null, "reactionVideos": [], @@ -22853,7 +22733,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 119, + "teamId": "15", "time": 16403959, "featuredRunMedia": null, "reactionVideos": [], @@ -22866,7 +22746,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 110, + "teamId": "114", "time": 16406198, "featuredRunMedia": null, "reactionVideos": [], @@ -22879,7 +22759,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 16417739, "featuredRunMedia": null, "reactionVideos": [], @@ -22892,7 +22772,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 74, + "teamId": "2", "time": 16421596, "featuredRunMedia": null, "reactionVideos": [], @@ -22905,7 +22785,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 16450032, "featuredRunMedia": null, "reactionVideos": [], @@ -22918,7 +22798,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 38, + "teamId": "24", "time": 16461596, "featuredRunMedia": null, "reactionVideos": [], @@ -22931,7 +22811,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 59, + "teamId": "63", "time": 16467983, "featuredRunMedia": null, "reactionVideos": [], @@ -22944,7 +22824,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 68, + "teamId": "113", "time": 16474779, "featuredRunMedia": null, "reactionVideos": [], @@ -22957,7 +22837,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 56, + "teamId": "11", "time": 16488260, "featuredRunMedia": null, "reactionVideos": [], @@ -22970,7 +22850,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 77, + "teamId": "87", "time": 16500934, "featuredRunMedia": null, "reactionVideos": [], @@ -22983,7 +22863,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 9, + "teamId": "69", "time": 16585831, "featuredRunMedia": null, "reactionVideos": [], @@ -22996,7 +22876,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 2, + "teamId": "25", "time": 16601215, "featuredRunMedia": null, "reactionVideos": [], @@ -23009,7 +22889,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 103, + "teamId": "104", "time": 16606789, "featuredRunMedia": null, "reactionVideos": [], @@ -23022,7 +22902,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 74, + "teamId": "2", "time": 16617646, "featuredRunMedia": null, "reactionVideos": [], @@ -23035,7 +22915,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 16621982, "featuredRunMedia": null, "reactionVideos": [], @@ -23048,7 +22928,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 71, + "teamId": "4", "time": 16648744, "featuredRunMedia": null, "reactionVideos": [], @@ -23061,7 +22941,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 16, + "teamId": "7", "time": 16652833, "featuredRunMedia": null, "reactionVideos": [], @@ -23074,7 +22954,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 50, + "teamId": "39", "time": 16700877, "featuredRunMedia": null, "reactionVideos": [], @@ -23087,7 +22967,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 39, + "teamId": "59", "time": 16707828, "featuredRunMedia": null, "reactionVideos": [], @@ -23100,7 +22980,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 23, + "teamId": "108", "time": 16715947, "featuredRunMedia": null, "reactionVideos": [], @@ -23113,7 +22993,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 37, + "teamId": "70", "time": 16731745, "featuredRunMedia": null, "reactionVideos": [], @@ -23126,7 +23006,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 16755117, "featuredRunMedia": null, "reactionVideos": [], @@ -23139,7 +23019,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 101, + "teamId": "60", "time": 16757350, "featuredRunMedia": null, "reactionVideos": [], @@ -23152,7 +23032,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 16785531, "featuredRunMedia": null, "reactionVideos": [], @@ -23165,7 +23045,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 47, + "teamId": "10", "time": 16790134, "featuredRunMedia": null, "reactionVideos": [], @@ -23178,7 +23058,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 16851251, "featuredRunMedia": null, "reactionVideos": [], @@ -23191,7 +23071,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 16856947, "featuredRunMedia": null, "reactionVideos": [], @@ -23204,7 +23084,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 16862981, "featuredRunMedia": null, "reactionVideos": [], @@ -23217,7 +23097,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 1, + "teamId": "46", "time": 16890025, "featuredRunMedia": null, "reactionVideos": [], @@ -23230,7 +23110,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 16895098, "featuredRunMedia": null, "reactionVideos": [], @@ -23243,7 +23123,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 41, + "teamId": "61", "time": 16912345, "featuredRunMedia": null, "reactionVideos": [], @@ -23256,7 +23136,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 63, + "teamId": "20", "time": 16913781, "featuredRunMedia": null, "reactionVideos": [], @@ -23269,7 +23149,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 16934073, "featuredRunMedia": null, "reactionVideos": [], @@ -23282,7 +23162,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 16937268, "featuredRunMedia": null, "reactionVideos": [], @@ -23295,7 +23175,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 65, + "teamId": "19", "time": 16958196, "featuredRunMedia": null, "reactionVideos": [], @@ -23308,7 +23188,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 57, + "teamId": "35", "time": 16982256, "featuredRunMedia": null, "reactionVideos": [], @@ -23321,7 +23201,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 16982256, "featuredRunMedia": null, "reactionVideos": [], @@ -23334,7 +23214,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 50, + "teamId": "39", "time": 17011311, "featuredRunMedia": null, "reactionVideos": [], @@ -23347,7 +23227,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 52, + "teamId": "120", "time": 17034304, "featuredRunMedia": null, "reactionVideos": [], @@ -23360,7 +23240,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 17046221, "featuredRunMedia": null, "reactionVideos": [], @@ -23373,7 +23253,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 57, + "teamId": "35", "time": 17046427, "featuredRunMedia": null, "reactionVideos": [], @@ -23386,7 +23266,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 71, + "teamId": "4", "time": 17050740, "featuredRunMedia": null, "reactionVideos": [], @@ -23399,7 +23279,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17051206, "featuredRunMedia": null, "reactionVideos": [], @@ -23412,7 +23292,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 14, + "teamId": "21", "time": 17062884, "featuredRunMedia": null, "reactionVideos": [], @@ -23425,7 +23305,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 37, + "teamId": "70", "time": 17063283, "featuredRunMedia": null, "reactionVideos": [], @@ -23438,7 +23318,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 39, + "teamId": "59", "time": 17072476, "featuredRunMedia": null, "reactionVideos": [], @@ -23451,7 +23331,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 86, + "teamId": "96", "time": 17078425, "featuredRunMedia": null, "reactionVideos": [], @@ -23464,7 +23344,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 17121849, "featuredRunMedia": null, "reactionVideos": [], @@ -23477,7 +23357,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 100, + "teamId": "38", "time": 17123574, "featuredRunMedia": null, "reactionVideos": [], @@ -23490,7 +23370,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 89, + "teamId": "109", "time": 17125634, "featuredRunMedia": null, "reactionVideos": [], @@ -23503,7 +23383,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 21, + "teamId": "80", "time": 17130952, "featuredRunMedia": null, "reactionVideos": [], @@ -23516,7 +23396,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 87, + "teamId": "48", "time": 17131714, "featuredRunMedia": null, "reactionVideos": [], @@ -23529,7 +23409,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 117, + "teamId": "119", "time": 17155053, "featuredRunMedia": null, "reactionVideos": [], @@ -23542,7 +23422,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 54, + "teamId": "94", "time": 17175706, "featuredRunMedia": null, "reactionVideos": [], @@ -23555,7 +23435,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 24, + "teamId": "52", "time": 17176695, "featuredRunMedia": null, "reactionVideos": [], @@ -23568,7 +23448,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 17, + "teamId": "28", "time": 17176723, "featuredRunMedia": null, "reactionVideos": [], @@ -23581,7 +23461,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 3, + "teamId": "51", "time": 17257677, "featuredRunMedia": null, "reactionVideos": [], @@ -23594,7 +23474,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 54, + "teamId": "94", "time": 17265852, "featuredRunMedia": null, "reactionVideos": [], @@ -23607,7 +23487,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 58, + "teamId": "42", "time": 17272345, "featuredRunMedia": null, "reactionVideos": [], @@ -23620,7 +23500,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 65, + "teamId": "19", "time": 17284984, "featuredRunMedia": null, "reactionVideos": [], @@ -23633,7 +23513,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 57, + "teamId": "35", "time": 17292887, "featuredRunMedia": null, "reactionVideos": [], @@ -23646,7 +23526,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 17330116, "featuredRunMedia": null, "reactionVideos": [], @@ -23659,7 +23539,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 43, + "teamId": "44", "time": 17355330, "featuredRunMedia": null, "reactionVideos": [], @@ -23672,7 +23552,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 36, + "teamId": "111", "time": 17364874, "featuredRunMedia": null, "reactionVideos": [], @@ -23685,7 +23565,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 49, + "teamId": "78", "time": 17393263, "featuredRunMedia": null, "reactionVideos": [], @@ -23698,7 +23578,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 101, + "teamId": "60", "time": 17393959, "featuredRunMedia": null, "reactionVideos": [], @@ -23711,7 +23591,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 23, + "teamId": "108", "time": 17400022, "featuredRunMedia": null, "reactionVideos": [], @@ -23724,7 +23604,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 98, + "teamId": "110", "time": 17402621, "featuredRunMedia": null, "reactionVideos": [], @@ -23737,7 +23617,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 17405832, "featuredRunMedia": null, "reactionVideos": [], @@ -23750,7 +23630,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 69, + "teamId": "58", "time": 17408339, "featuredRunMedia": null, "reactionVideos": [], @@ -23763,7 +23643,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 4, + "teamId": "1", "time": 17422213, "featuredRunMedia": null, "reactionVideos": [], @@ -23776,7 +23656,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 17442252, "featuredRunMedia": null, "reactionVideos": [], @@ -23789,7 +23669,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 18, + "teamId": "23", "time": 17444015, "featuredRunMedia": null, "reactionVideos": [], @@ -23802,7 +23682,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 54, + "teamId": "94", "time": 17446470, "featuredRunMedia": null, "reactionVideos": [], @@ -23815,7 +23695,7 @@ "testedPart": 0.0 }, "problemId": "F-chat-SEOHSI", - "teamId": 97, + "teamId": "5", "time": 17449632, "featuredRunMedia": null, "reactionVideos": [], @@ -23828,7 +23708,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 67, + "teamId": "27", "time": 17482318, "featuredRunMedia": null, "reactionVideos": [], @@ -23841,7 +23721,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 8, + "teamId": "101", "time": 17494215, "featuredRunMedia": null, "reactionVideos": [], @@ -23854,7 +23734,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 59, + "teamId": "63", "time": 17495247, "featuredRunMedia": null, "reactionVideos": [], @@ -23867,7 +23747,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 101, + "teamId": "60", "time": 17497738, "featuredRunMedia": null, "reactionVideos": [], @@ -23880,7 +23760,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 58, + "teamId": "42", "time": 17524664, "featuredRunMedia": null, "reactionVideos": [], @@ -23893,7 +23773,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 25, + "teamId": "85", "time": 17525097, "featuredRunMedia": null, "reactionVideos": [], @@ -23906,7 +23786,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 8, + "teamId": "101", "time": 17548259, "featuredRunMedia": null, "reactionVideos": [], @@ -23919,7 +23799,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 17573728, "featuredRunMedia": null, "reactionVideos": [], @@ -23932,7 +23812,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 17579700, "featuredRunMedia": null, "reactionVideos": [], @@ -23945,7 +23825,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 84, + "teamId": "64", "time": 17584130, "featuredRunMedia": null, "reactionVideos": [], @@ -23958,7 +23838,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 14, + "teamId": "21", "time": 17585368, "featuredRunMedia": null, "reactionVideos": [], @@ -23971,7 +23851,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 24, + "teamId": "52", "time": 17609038, "featuredRunMedia": null, "reactionVideos": [], @@ -23984,7 +23864,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 30, + "teamId": "116", "time": 17620148, "featuredRunMedia": null, "reactionVideos": [], @@ -23997,7 +23877,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 65, + "teamId": "19", "time": 17623378, "featuredRunMedia": null, "reactionVideos": [], @@ -24010,7 +23890,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 4, + "teamId": "1", "time": 17637954, "featuredRunMedia": null, "reactionVideos": [], @@ -24023,7 +23903,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 8, + "teamId": "101", "time": 17647054, "featuredRunMedia": null, "reactionVideos": [], @@ -24036,7 +23916,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 27, + "teamId": "103", "time": 17653395, "featuredRunMedia": null, "reactionVideos": [], @@ -24049,7 +23929,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 56, + "teamId": "11", "time": 17655388, "featuredRunMedia": null, "reactionVideos": [], @@ -24062,7 +23942,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 110, + "teamId": "114", "time": 17668184, "featuredRunMedia": null, "reactionVideos": [], @@ -24075,7 +23955,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 17673193, "featuredRunMedia": null, "reactionVideos": [], @@ -24088,7 +23968,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 100, + "teamId": "38", "time": 17681818, "featuredRunMedia": null, "reactionVideos": [], @@ -24101,7 +23981,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 50, + "teamId": "39", "time": 17690974, "featuredRunMedia": null, "reactionVideos": [], @@ -24114,7 +23994,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 28, + "teamId": "102", "time": 17695604, "featuredRunMedia": null, "reactionVideos": [], @@ -24127,7 +24007,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 26, + "teamId": "118", "time": 17704660, "featuredRunMedia": null, "reactionVideos": [], @@ -24140,7 +24020,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 3, + "teamId": "51", "time": 17709752, "featuredRunMedia": null, "reactionVideos": [], @@ -24153,7 +24033,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 31, + "teamId": "121", "time": 17720879, "featuredRunMedia": null, "reactionVideos": [], @@ -24166,7 +24046,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 66, + "teamId": "36", "time": 17724946, "featuredRunMedia": null, "reactionVideos": [], @@ -24179,7 +24059,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 56, + "teamId": "11", "time": 17731289, "featuredRunMedia": null, "reactionVideos": [], @@ -24192,7 +24072,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 54, + "teamId": "94", "time": 17735183, "featuredRunMedia": null, "reactionVideos": [], @@ -24205,7 +24085,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 89, + "teamId": "109", "time": 17740646, "featuredRunMedia": null, "reactionVideos": [], @@ -24218,7 +24098,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17744034, "featuredRunMedia": null, "reactionVideos": [], @@ -24231,7 +24111,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 9, + "teamId": "69", "time": 17747843, "featuredRunMedia": null, "reactionVideos": [], @@ -24244,7 +24124,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 67, + "teamId": "27", "time": 17748436, "featuredRunMedia": null, "reactionVideos": [], @@ -24257,7 +24137,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 17749891, "featuredRunMedia": null, "reactionVideos": [], @@ -24270,7 +24150,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 18, + "teamId": "23", "time": 17751879, "featuredRunMedia": null, "reactionVideos": [], @@ -24283,7 +24163,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 17, + "teamId": "28", "time": 17766210, "featuredRunMedia": null, "reactionVideos": [], @@ -24296,7 +24176,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 17769402, "featuredRunMedia": null, "reactionVideos": [], @@ -24309,7 +24189,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 17775578, "featuredRunMedia": null, "reactionVideos": [], @@ -24322,7 +24202,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 113, + "teamId": "53", "time": 17778342, "featuredRunMedia": null, "reactionVideos": [], @@ -24335,7 +24215,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 50, + "teamId": "39", "time": 17783963, "featuredRunMedia": null, "reactionVideos": [], @@ -24348,7 +24228,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 92, + "teamId": "41", "time": 17787046, "featuredRunMedia": null, "reactionVideos": [], @@ -24361,7 +24241,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 89, + "teamId": "109", "time": 17804134, "featuredRunMedia": null, "reactionVideos": [], @@ -24374,7 +24254,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 113, + "teamId": "53", "time": 17809861, "featuredRunMedia": null, "reactionVideos": [], @@ -24387,7 +24267,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17812583, "featuredRunMedia": null, "reactionVideos": [], @@ -24400,7 +24280,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 48, + "teamId": "97", "time": 17814325, "featuredRunMedia": null, "reactionVideos": [], @@ -24413,7 +24293,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 46, + "teamId": "117", "time": 17815310, "featuredRunMedia": null, "reactionVideos": [], @@ -24426,7 +24306,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 69, + "teamId": "58", "time": 17818590, "featuredRunMedia": null, "reactionVideos": [], @@ -24439,7 +24319,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 94, + "teamId": "14", "time": 17822567, "featuredRunMedia": null, "reactionVideos": [], @@ -24452,7 +24332,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 46, + "teamId": "117", "time": 17827051, "featuredRunMedia": null, "reactionVideos": [], @@ -24465,7 +24345,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 26, + "teamId": "118", "time": 17827717, "featuredRunMedia": null, "reactionVideos": [], @@ -24478,7 +24358,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 89, + "teamId": "109", "time": 17828908, "featuredRunMedia": null, "reactionVideos": [], @@ -24491,7 +24371,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 50, + "teamId": "39", "time": 17830277, "featuredRunMedia": null, "reactionVideos": [], @@ -24504,7 +24384,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 17830608, "featuredRunMedia": null, "reactionVideos": [], @@ -24517,7 +24397,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 113, + "teamId": "53", "time": 17834713, "featuredRunMedia": null, "reactionVideos": [], @@ -24530,7 +24410,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 46, + "teamId": "117", "time": 17835167, "featuredRunMedia": null, "reactionVideos": [], @@ -24543,7 +24423,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 17, + "teamId": "28", "time": 17841579, "featuredRunMedia": null, "reactionVideos": [], @@ -24556,7 +24436,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 24, + "teamId": "52", "time": 17842122, "featuredRunMedia": null, "reactionVideos": [], @@ -24569,7 +24449,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 46, + "teamId": "117", "time": 17842955, "featuredRunMedia": null, "reactionVideos": [], @@ -24582,7 +24462,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 33, + "teamId": "99", "time": 17846075, "featuredRunMedia": null, "reactionVideos": [], @@ -24595,7 +24475,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 35, + "teamId": "30", "time": 17849122, "featuredRunMedia": null, "reactionVideos": [], @@ -24608,7 +24488,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 80, + "teamId": "29", "time": 17852937, "featuredRunMedia": null, "reactionVideos": [], @@ -24621,7 +24501,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 46, + "teamId": "117", "time": 17853132, "featuredRunMedia": null, "reactionVideos": [], @@ -24634,7 +24514,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17862499, "featuredRunMedia": null, "reactionVideos": [], @@ -24647,7 +24527,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 46, + "teamId": "117", "time": 17862838, "featuredRunMedia": null, "reactionVideos": [], @@ -24660,7 +24540,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 99, + "teamId": "86", "time": 17863258, "featuredRunMedia": null, "reactionVideos": [], @@ -24673,7 +24553,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 17867351, "featuredRunMedia": null, "reactionVideos": [], @@ -24686,7 +24566,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 46, + "teamId": "117", "time": 17872234, "featuredRunMedia": null, "reactionVideos": [], @@ -24699,7 +24579,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 113, + "teamId": "53", "time": 17876365, "featuredRunMedia": null, "reactionVideos": [], @@ -24712,7 +24592,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 33, + "teamId": "99", "time": 17877044, "featuredRunMedia": null, "reactionVideos": [], @@ -24725,7 +24605,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 46, + "teamId": "117", "time": 17879549, "featuredRunMedia": null, "reactionVideos": [], @@ -24738,7 +24618,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 37, + "teamId": "70", "time": 17881643, "featuredRunMedia": null, "reactionVideos": [], @@ -24751,7 +24631,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 100, + "teamId": "38", "time": 17886562, "featuredRunMedia": null, "reactionVideos": [], @@ -24764,7 +24644,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 50, + "teamId": "39", "time": 17887813, "featuredRunMedia": null, "reactionVideos": [], @@ -24777,7 +24657,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 33, + "teamId": "99", "time": 17889007, "featuredRunMedia": null, "reactionVideos": [], @@ -24790,7 +24670,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 10, + "teamId": "89", "time": 17899905, "featuredRunMedia": null, "reactionVideos": [], @@ -24803,7 +24683,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 52, + "teamId": "120", "time": 17900115, "featuredRunMedia": null, "reactionVideos": [], @@ -24816,7 +24696,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 100, + "teamId": "38", "time": 17900240, "featuredRunMedia": null, "reactionVideos": [], @@ -24829,7 +24709,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 110, + "teamId": "114", "time": 17904543, "featuredRunMedia": null, "reactionVideos": [], @@ -24842,7 +24722,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 19, + "teamId": "50", "time": 17904806, "featuredRunMedia": null, "reactionVideos": [], @@ -24855,7 +24735,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 11, + "teamId": "84", "time": 17911461, "featuredRunMedia": null, "reactionVideos": [], @@ -24868,7 +24748,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 2, + "teamId": "25", "time": 17917637, "featuredRunMedia": null, "reactionVideos": [], @@ -24881,7 +24761,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 10, + "teamId": "89", "time": 17917784, "featuredRunMedia": null, "reactionVideos": [], @@ -24894,7 +24774,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 35, + "teamId": "30", "time": 17919525, "featuredRunMedia": null, "reactionVideos": [], @@ -24907,7 +24787,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 64, + "teamId": "92", "time": 17921249, "featuredRunMedia": null, "reactionVideos": [], @@ -24920,7 +24800,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 101, + "teamId": "60", "time": 17925982, "featuredRunMedia": null, "reactionVideos": [], @@ -24933,7 +24813,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 41, + "teamId": "61", "time": 17928881, "featuredRunMedia": null, "reactionVideos": [], @@ -24946,7 +24826,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 17931247, "featuredRunMedia": null, "reactionVideos": [], @@ -24959,7 +24839,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 26, + "teamId": "118", "time": 17931940, "featuredRunMedia": null, "reactionVideos": [], @@ -24972,7 +24852,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 10, + "teamId": "89", "time": 17932291, "featuredRunMedia": null, "reactionVideos": [], @@ -24985,7 +24865,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 100, + "teamId": "38", "time": 17932532, "featuredRunMedia": null, "reactionVideos": [], @@ -24998,7 +24878,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 83, + "teamId": "72", "time": 17932659, "featuredRunMedia": null, "reactionVideos": [], @@ -25011,7 +24891,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 38, + "teamId": "24", "time": 17935192, "featuredRunMedia": null, "reactionVideos": [], @@ -25024,7 +24904,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 92, + "teamId": "41", "time": 17935734, "featuredRunMedia": null, "reactionVideos": [], @@ -25037,7 +24917,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 104, + "teamId": "31", "time": 17938077, "featuredRunMedia": null, "reactionVideos": [], @@ -25050,7 +24930,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 52, + "teamId": "120", "time": 17941943, "featuredRunMedia": null, "reactionVideos": [], @@ -25063,7 +24943,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 10, + "teamId": "89", "time": 17942858, "featuredRunMedia": null, "reactionVideos": [], @@ -25076,7 +24956,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 46, + "teamId": "117", "time": 17942869, "featuredRunMedia": null, "reactionVideos": [], @@ -25089,7 +24969,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 4, + "teamId": "1", "time": 17943546, "featuredRunMedia": null, "reactionVideos": [], @@ -25102,7 +24982,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 67, + "teamId": "27", "time": 17943612, "featuredRunMedia": null, "reactionVideos": [], @@ -25115,7 +24995,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 65, + "teamId": "19", "time": 17943875, "featuredRunMedia": null, "reactionVideos": [], @@ -25128,7 +25008,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 41, + "teamId": "61", "time": 17943993, "featuredRunMedia": null, "reactionVideos": [], @@ -25141,7 +25021,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 100, + "teamId": "38", "time": 17950204, "featuredRunMedia": null, "reactionVideos": [], @@ -25154,7 +25034,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 33, + "teamId": "99", "time": 17950588, "featuredRunMedia": null, "reactionVideos": [], @@ -25167,7 +25047,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 50, + "teamId": "39", "time": 17950987, "featuredRunMedia": null, "reactionVideos": [], @@ -25180,7 +25060,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 64, + "teamId": "92", "time": 17951130, "featuredRunMedia": null, "reactionVideos": [], @@ -25193,7 +25073,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 9, + "teamId": "69", "time": 17952227, "featuredRunMedia": null, "reactionVideos": [], @@ -25206,7 +25086,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 10, + "teamId": "89", "time": 17952862, "featuredRunMedia": null, "reactionVideos": [], @@ -25219,7 +25099,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 44, + "teamId": "81", "time": 17953067, "featuredRunMedia": null, "reactionVideos": [], @@ -25232,7 +25112,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 52, + "teamId": "120", "time": 17958990, "featuredRunMedia": null, "reactionVideos": [], @@ -25245,7 +25125,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17963046, "featuredRunMedia": null, "reactionVideos": [], @@ -25258,7 +25138,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 10, + "teamId": "89", "time": 17964226, "featuredRunMedia": null, "reactionVideos": [], @@ -25271,7 +25151,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 117, + "teamId": "119", "time": 17965318, "featuredRunMedia": null, "reactionVideos": [], @@ -25284,7 +25164,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 59, + "teamId": "63", "time": 17966645, "featuredRunMedia": null, "reactionVideos": [], @@ -25297,7 +25177,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 9, + "teamId": "69", "time": 17966666, "featuredRunMedia": null, "reactionVideos": [], @@ -25310,7 +25190,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 83, + "teamId": "72", "time": 17967113, "featuredRunMedia": null, "reactionVideos": [], @@ -25323,7 +25203,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 14, + "teamId": "21", "time": 17967607, "featuredRunMedia": null, "reactionVideos": [], @@ -25336,7 +25216,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 13, + "teamId": "91", "time": 17970187, "featuredRunMedia": null, "reactionVideos": [], @@ -25349,7 +25229,7 @@ "testedPart": 0.0 }, "problemId": "I-game-with-intervals-OVKMEY", - "teamId": 52, + "teamId": "120", "time": 17971700, "featuredRunMedia": null, "reactionVideos": [], @@ -25362,7 +25242,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 6, + "teamId": "49", "time": 17972467, "featuredRunMedia": null, "reactionVideos": [], @@ -25375,7 +25255,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 69, + "teamId": "58", "time": 17974967, "featuredRunMedia": null, "reactionVideos": [], @@ -25388,7 +25268,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 79, + "teamId": "93", "time": 17975410, "featuredRunMedia": null, "reactionVideos": [], @@ -25401,7 +25281,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 93, + "teamId": "75", "time": 17976523, "featuredRunMedia": null, "reactionVideos": [], @@ -25414,7 +25294,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 63, + "teamId": "20", "time": 17976836, "featuredRunMedia": null, "reactionVideos": [], @@ -25427,7 +25307,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 101, + "teamId": "60", "time": 17977725, "featuredRunMedia": null, "reactionVideos": [], @@ -25440,7 +25320,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 108, + "teamId": "66", "time": 17978193, "featuredRunMedia": null, "reactionVideos": [], @@ -25453,7 +25333,7 @@ "testedPart": 0.0 }, "problemId": "H-controller-VPDPII", - "teamId": 111, + "teamId": "65", "time": 17979093, "featuredRunMedia": null, "reactionVideos": [], @@ -25466,7 +25346,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 52, + "teamId": "120", "time": 17980594, "featuredRunMedia": null, "reactionVideos": [], @@ -25479,7 +25359,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 33, + "teamId": "99", "time": 17982094, "featuredRunMedia": null, "reactionVideos": [], @@ -25492,7 +25372,7 @@ "testedPart": 0.0 }, "problemId": "B-uniform-jumps-small-SRWPWS", - "teamId": 51, + "teamId": "79", "time": 17982527, "featuredRunMedia": null, "reactionVideos": [], @@ -25505,7 +25385,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 86, + "teamId": "96", "time": 17982967, "featuredRunMedia": null, "reactionVideos": [], @@ -25518,7 +25398,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 24, + "teamId": "52", "time": 17984214, "featuredRunMedia": null, "reactionVideos": [], @@ -25531,7 +25411,7 @@ "testedPart": 0.0 }, "problemId": "G-tree-game-TNLSWY", - "teamId": 3, + "teamId": "51", "time": 17984253, "featuredRunMedia": null, "reactionVideos": [], @@ -25544,7 +25424,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 16, + "teamId": "7", "time": 17986209, "featuredRunMedia": null, "reactionVideos": [], @@ -25557,7 +25437,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 11, + "teamId": "84", "time": 17987603, "featuredRunMedia": null, "reactionVideos": [], @@ -25570,7 +25450,7 @@ "testedPart": 0.0 }, "problemId": "J-italian-graph-RXDVPR", - "teamId": 100, + "teamId": "38", "time": 17988896, "featuredRunMedia": null, "reactionVideos": [], @@ -25583,7 +25463,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 64, + "teamId": "92", "time": 17989852, "featuredRunMedia": null, "reactionVideos": [], @@ -25596,7 +25476,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 28, + "teamId": "102", "time": 17992212, "featuredRunMedia": null, "reactionVideos": [], @@ -25609,7 +25489,7 @@ "testedPart": 0.0 }, "problemId": "D-railways-CLLTEH", - "teamId": 42, + "teamId": "33", "time": 17995019, "featuredRunMedia": null, "reactionVideos": [], @@ -25622,7 +25502,7 @@ "testedPart": 0.0 }, "problemId": "L-lego-tree-LEXJJO", - "teamId": 27, + "teamId": "103", "time": 17995614, "featuredRunMedia": null, "reactionVideos": [], @@ -25635,7 +25515,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 60, + "teamId": "47", "time": 17995710, "featuredRunMedia": null, "reactionVideos": [], @@ -25648,7 +25528,7 @@ "testedPart": 0.0 }, "problemId": "C-binary-string-HVFWFC", - "teamId": 7, + "teamId": "67", "time": 17997017, "featuredRunMedia": null, "reactionVideos": [], @@ -25661,7 +25541,7 @@ "testedPart": 0.0 }, "problemId": "K-graph-coloring-JXMMZU", - "teamId": 59, + "teamId": "63", "time": 17997901, "featuredRunMedia": null, "reactionVideos": [], @@ -25674,7 +25554,7 @@ "testedPart": 0.0 }, "problemId": "E-spinach-pizza-WAUHYC", - "teamId": 79, + "teamId": "93", "time": 17999873, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/ejudge.txt b/src/cds/tests/testData/loaders/goldenData/ejudge.txt index 92c3734bf..6a7f0a4f2 100644 --- a/src/cds/tests/testData/loaders/goldenData/ejudge.txt +++ b/src/cds/tests/testData/loaders/goldenData/ejudge.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 0, + "id": "135350", "name": "1580-1 \"Трое Архонтов\" (Заварин 11, Смирнов 11, Ван 11)", "shortName": "1580-1 \"Трое Архонтов\" (Заварин 11, Смирнов 11, Ван 11)", - "contestSystemId": "135350", "groups": [], "hashTag": null, "medias": {}, @@ -167,10 +166,9 @@ "customFields": {} }, { - "id": 1, + "id": "135351", "name": "179 Random People (Авдеев 10, Дубко 10, Некрасов 9)", "shortName": "179 Random People (Авдеев 10, Дубко 10, Некрасов 9)", - "contestSystemId": "135351", "groups": [], "hashTag": null, "medias": {}, @@ -180,10 +178,9 @@ "customFields": {} }, { - "id": 2, + "id": "135352", "name": "57 \"Конские хомуты\" (Лосев 9, Алексеев 10, Семенюк 9)", "shortName": "57 \"Конские хомуты\" (Лосев 9, Алексеев 10, Семенюк 9)", - "contestSystemId": "135352", "groups": [], "hashTag": null, "medias": {}, @@ -193,10 +190,9 @@ "customFields": {} }, { - "id": 3, + "id": "135353", "name": "Котики МШП (Шумов 11, Вовк 11, Авдеева 11)", "shortName": "Котики МШП (Шумов 11, Вовк 11, Авдеева 11)", - "contestSystemId": "135353", "groups": [], "hashTag": null, "medias": {}, @@ -206,10 +202,9 @@ "customFields": {} }, { - "id": 4, + "id": "135354", "name": "МШП-3 Ромашка (Саляхов 8, Фешин 11, Чистяков 11)", "shortName": "МШП-3 Ромашка (Саляхов 8, Фешин 11, Чистяков 11)", - "contestSystemId": "135354", "groups": [], "hashTag": null, "medias": {}, @@ -219,10 +214,9 @@ "customFields": {} }, { - "id": 5, + "id": "135355", "name": "ФТЛ \"и что в итоге?\" (Черепанов 9, Загоровский 9, Архипов 8)", "shortName": "ФТЛ \"и что в итоге?\" (Черепанов 9, Загоровский 9, Архипов 8)", - "contestSystemId": "135355", "groups": [], "hashTag": null, "medias": {}, @@ -232,10 +226,9 @@ "customFields": {} }, { - "id": 6, + "id": "135356", "name": "179 \"По приказу генерала Емакса\" (Марусев 8, Мусатов 9, Самойлов 9)", "shortName": "179 \"По приказу генерала Емакса\" (Марусев 8, Мусатов 9, Самойлов 9)", - "contestSystemId": "135356", "groups": [], "hashTag": null, "medias": {}, @@ -245,10 +238,9 @@ "customFields": {} }, { - "id": 7, + "id": "135357", "name": "179-Л2Ш-Летово MBI (Артюхов 8, Бернадский 8, Мусихин 8)", "shortName": "179-Л2Ш-Летово MBI (Артюхов 8, Бернадский 8, Мусихин 8)", - "contestSystemId": "135357", "groups": [], "hashTag": null, "medias": {}, @@ -258,10 +250,9 @@ "customFields": {} }, { - "id": 8, + "id": "135358", "name": "57 \"Леоны\" (Салыгин 10, Шкулёва 10, Беляев 10)", "shortName": "57 \"Леоны\" (Салыгин 10, Шкулёва 10, Беляев 10)", - "contestSystemId": "135358", "groups": [], "hashTag": null, "medias": {}, @@ -271,10 +262,9 @@ "customFields": {} }, { - "id": 9, + "id": "135359", "name": "Л2Ш \"Индюк, Койот и Пингвин\" (Ларичев 11, Важенин 11, Волков 10)", "shortName": "Л2Ш \"Индюк, Койот и Пингвин\" (Ларичев 11, Важенин 11, Волков 10)", - "contestSystemId": "135359", "groups": [], "hashTag": null, "medias": {}, @@ -284,10 +274,9 @@ "customFields": {} }, { - "id": 10, + "id": "135360", "name": "СУНЦ \"Булат Ибрагимович\" (Лузгов 10, Галявиев 10, Прыгунов 10)", "shortName": "СУНЦ \"Булат Ибрагимович\" (Лузгов 10, Галявиев 10, Прыгунов 10)", - "contestSystemId": "135360", "groups": [], "hashTag": null, "medias": {}, @@ -297,10 +286,9 @@ "customFields": {} }, { - "id": 11, + "id": "135361", "name": "ФТЛ + СП ФМЛ \"Бородинςкий хλеб\" (Белецкий 11, Сушин 11, Воронин 11)", "shortName": "ФТЛ + СП ФМЛ \"Бородинςкий хλеб\" (Белецкий 11, Сушин 11, Воронин 11)", - "contestSystemId": "135361", "groups": [], "hashTag": null, "medias": {}, @@ -310,10 +298,9 @@ "customFields": {} }, { - "id": 12, + "id": "135362", "name": "179 + 2007 \"Rio de Janeiro\" (Солунов 11, Татаркин 11, Поляков 11)", "shortName": "179 + 2007 \"Rio de Janeiro\" (Солунов 11, Татаркин 11, Поляков 11)", - "contestSystemId": "135362", "groups": [], "hashTag": null, "medias": {}, @@ -323,10 +310,9 @@ "customFields": {} }, { - "id": 13, + "id": "135363", "name": "179+57+518 Блин, сложно (Пахомов 11, Козлов 11, Чернов 11)", "shortName": "179+57+518 Блин, сложно (Пахомов 11, Козлов 11, Чернов 11)", - "contestSystemId": "135363", "groups": [], "hashTag": null, "medias": {}, @@ -336,10 +322,9 @@ "customFields": {} }, { - "id": 14, + "id": "135364", "name": "57 + 2086 + Летово «Голубые береты» (Краснов 10, Пискарев 10, Егоров 10)", "shortName": "57 + 2086 + Летово «Голубые береты» (Краснов 10, Пискарев 10, Егоров 10)", - "contestSystemId": "135364", "groups": [], "hashTag": null, "medias": {}, @@ -349,10 +334,9 @@ "customFields": {} }, { - "id": 15, + "id": "135365", "name": "Л2Ш \"Фарфоровые джентельмены\" (Битюков 11, Синицын 11, Волков 11)", "shortName": "Л2Ш \"Фарфоровые джентельмены\" (Битюков 11, Синицын 11, Волков 11)", - "contestSystemId": "135365", "groups": [], "hashTag": null, "medias": {}, @@ -362,10 +346,9 @@ "customFields": {} }, { - "id": 16, + "id": "135366", "name": "СУНЦ \"Герои N\" (Ковырзин 11, Горбатенков 11, Рахметов 11)", "shortName": "СУНЦ \"Герои N\" (Ковырзин 11, Горбатенков 11, Рахметов 11)", - "contestSystemId": "135366", "groups": [], "hashTag": null, "medias": {}, @@ -375,10 +358,9 @@ "customFields": {} }, { - "id": 17, + "id": "135367", "name": "ФТЛ-1 \"Ладно да\" (Мансурова 11, Чашников 11, Останин 11)", "shortName": "ФТЛ-1 \"Ладно да\" (Мансурова 11, Чашников 11, Останин 11)", - "contestSystemId": "135367", "groups": [], "hashTag": null, "medias": {}, @@ -388,10 +370,9 @@ "customFields": {} }, { - "id": 18, + "id": "135368", "name": "179 абобры (Волошко 8, Бельских 7, Сацкий 9)", "shortName": "179 абобры (Волошко 8, Бельских 7, Сацкий 9)", - "contestSystemId": "135368", "groups": [], "hashTag": null, "medias": {}, @@ -401,10 +382,9 @@ "customFields": {} }, { - "id": 19, + "id": "135369", "name": "179+Воробьевы горы \"Редиска 4\" (Клейменов 10, Ильин 10, Мордакин 10)", "shortName": "179+Воробьевы горы \"Редиска 4\" (Клейменов 10, Ильин 10, Мордакин 10)", - "contestSystemId": "135369", "groups": [], "hashTag": null, "medias": {}, @@ -414,10 +394,9 @@ "customFields": {} }, { - "id": 20, + "id": "135370", "name": "57-√-1 Врата Штерна (Кузнецов 11, Евстигнеев 11, Калугин 11)", "shortName": "57-√-1 Врата Штерна (Кузнецов 11, Евстигнеев 11, Калугин 11)", - "contestSystemId": "135370", "groups": [], "hashTag": null, "medias": {}, @@ -427,10 +406,9 @@ "customFields": {} }, { - "id": 21, + "id": "135371", "name": "Л2Ш-444-17 \"Ледокол\" (Коробейников 9, Осипов 9, Лазарев 9)", "shortName": "Л2Ш-444-17 \"Ледокол\" (Коробейников 9, Осипов 9, Лазарев 9)", - "contestSystemId": "135371", "groups": [], "hashTag": null, "medias": {}, @@ -440,10 +418,9 @@ "customFields": {} }, { - "id": 22, + "id": "135372", "name": "СУНЦ \"Зачем?\" (Волков 10, Осокин 10, Белоусько 10)", "shortName": "СУНЦ \"Зачем?\" (Волков 10, Осокин 10, Белоусько 10)", - "contestSystemId": "135372", "groups": [], "hashTag": null, "medias": {}, @@ -453,10 +430,9 @@ "customFields": {} }, { - "id": 23, + "id": "135373", "name": "ФТЛ-3 “Sintec” (Доронин 10, Кобзев 10, Антонова 10)", "shortName": "ФТЛ-3 “Sintec” (Доронин 10, Кобзев 10, Антонова 10)", - "contestSystemId": "135373", "groups": [], "hashTag": null, "medias": {}, @@ -466,10 +442,9 @@ "customFields": {} }, { - "id": 24, + "id": "135374", "name": "179 бестиков дергея (Маляровский 11, Лупилцев 11, Орехов 11)", "shortName": "179 бестиков дергея (Маляровский 11, Лупилцев 11, Орехов 11)", - "contestSystemId": "135374", "groups": [], "hashTag": null, "medias": {}, @@ -479,10 +454,9 @@ "customFields": {} }, { - "id": 25, + "id": "135375", "name": "179+Летово+Силаэдр Процион (Устименко 8, Застрожная 8, Мухлисуллин 8)", "shortName": "179+Летово+Силаэдр Процион (Устименко 8, Застрожная 8, Мухлисуллин 8)", - "contestSystemId": "135375", "groups": [], "hashTag": null, "medias": {}, @@ -492,10 +466,9 @@ "customFields": {} }, { - "id": 26, + "id": "135376", "name": "57-19 “MK-37” (Сыздыков 10, Журавлев 10, Новгородцев 10)", "shortName": "57-19 “MK-37” (Сыздыков 10, Журавлев 10, Новгородцев 10)", - "contestSystemId": "135376", "groups": [], "hashTag": null, "medias": {}, @@ -505,10 +478,9 @@ "customFields": {} }, { - "id": 27, + "id": "135377", "name": "Л2Ш+1558+СУНЦ \"Три товарища без фантазии\" (Сергеев 10, Копылов 11, Кухаренко 10)", "shortName": "Л2Ш+1558+СУНЦ \"Три товарища без фантазии\" (Сергеев 10, Копылов 11, Кухаренко 10)", - "contestSystemId": "135377", "groups": [], "hashTag": null, "medias": {}, @@ -518,10 +490,9 @@ "customFields": {} }, { - "id": 28, + "id": "135378", "name": "СУНЦ \"Квадрат зайдет?\" (Боровлев 11, Сомкин 11, Баданов 11)", "shortName": "СУНЦ \"Квадрат зайдет?\" (Боровлев 11, Сомкин 11, Баданов 11)", - "contestSystemId": "135378", "groups": [], "hashTag": null, "medias": {}, @@ -531,10 +502,9 @@ "customFields": {} }, { - "id": 29, + "id": "135379", "name": "ФТЛ-8 Путешественники (Лещинский 10, Лязер 10, Фомин 10)", "shortName": "ФТЛ-8 Путешественники (Лещинский 10, Лязер 10, Фомин 10)", - "contestSystemId": "135379", "groups": [], "hashTag": null, "medias": {}, @@ -544,10 +514,9 @@ "customFields": {} }, { - "id": 30, + "id": "135380", "name": "179 Жёлтый кактус (Бурмистров 10, Шумилов 10, Шамсутдинов 10)", "shortName": "179 Жёлтый кактус (Бурмистров 10, Шумилов 10, Шамсутдинов 10)", - "contestSystemId": "135380", "groups": [], "hashTag": null, "medias": {}, @@ -557,10 +526,9 @@ "customFields": {} }, { - "id": 31, + "id": "135381", "name": "179+ЦПМ+СУНЦ \"К У П И Т Ь | ЫМ ИЛАБЛОД АРБУЗ\" (Возмилов 10, Терентьева 11, Матюпатенко 10)", "shortName": "179+ЦПМ+СУНЦ \"К У П И Т Ь | ЫМ ИЛАБЛОД АРБУЗ\" (Возмилов 10, Терентьева 11, Матюпатенко 10)", - "contestSystemId": "135381", "groups": [], "hashTag": null, "medias": {}, @@ -570,10 +538,9 @@ "customFields": {} }, { - "id": 32, + "id": "135382", "name": "57, Воробьевы горы \"10 негритят без права переписки\" (Кравченко 7, Балакин 8, Бурлаков 8)", "shortName": "57, Воробьевы горы \"10 негритят без права переписки\" (Кравченко 7, Балакин 8, Бурлаков 8)", - "contestSystemId": "135382", "groups": [], "hashTag": null, "medias": {}, @@ -583,10 +550,9 @@ "customFields": {} }, { - "id": 33, + "id": "135383", "name": "Л2Ш+57 Мейби бейби такая зайка (Степанов 11, Климчук 11, Васильев 11)", "shortName": "Л2Ш+57 Мейби бейби такая зайка (Степанов 11, Климчук 11, Васильев 11)", - "contestSystemId": "135383", "groups": [], "hashTag": null, "medias": {}, @@ -596,10 +562,9 @@ "customFields": {} }, { - "id": 34, + "id": "135384", "name": "СУНЦ \"Фан-клуб Анны Щербаковой\" (Горохов 11, Канухин 11, Первутинский 11)", "shortName": "СУНЦ \"Фан-клуб Анны Щербаковой\" (Горохов 11, Канухин 11, Первутинский 11)", - "contestSystemId": "135384", "groups": [], "hashTag": null, "medias": {}, @@ -609,10 +574,9 @@ "customFields": {} }, { - "id": 35, + "id": "135385", "name": "ЦПМ+ВШЭ \"Пылающие манулы\" (Вигалок 10, Калугин 10, Ефимов 10)", "shortName": "ЦПМ+ВШЭ \"Пылающие манулы\" (Вигалок 10, Калугин 10, Ефимов 10)", - "contestSystemId": "135385", "groups": [], "hashTag": null, "medias": {}, @@ -622,10 +586,9 @@ "customFields": {} }, { - "id": 36, + "id": "135386", "name": "179 Здравствуй, небо в облаках! (Черный 11, Громак 11, Устименко 10)", "shortName": "179 Здравствуй, небо в облаках! (Черный 11, Громак 11, Устименко 10)", - "contestSystemId": "135386", "groups": [], "hashTag": null, "medias": {}, @@ -635,10 +598,9 @@ "customFields": {} }, { - "id": 37, + "id": "135387", "name": "2007 \"Random name\" (Елисеев 11, Маланьин 11, Лишманова 10)", "shortName": "2007 \"Random name\" (Елисеев 11, Маланьин 11, Лишманова 10)", - "contestSystemId": "135387", "groups": [], "hashTag": null, "medias": {}, @@ -648,10 +610,9 @@ "customFields": {} }, { - "id": 38, + "id": "135388", "name": "57, ШЦПМ, Летово \"Клуб ценителей фонка\" (Валиуллин 9, Шейкис 9, Адаменко 9)", "shortName": "57, ШЦПМ, Летово \"Клуб ценителей фонка\" (Валиуллин 9, Шейкис 9, Адаменко 9)", - "contestSystemId": "135388", "groups": [], "hashTag": null, "medias": {}, @@ -661,10 +622,9 @@ "customFields": {} }, { - "id": 39, + "id": "135389", "name": "Летово \"123\" (Грицаев 10, Курлаев 10, Яременко 10)", "shortName": "Летово \"123\" (Грицаев 10, Курлаев 10, Яременко 10)", - "contestSystemId": "135389", "groups": [], "hashTag": null, "medias": {}, @@ -674,10 +634,9 @@ "customFields": {} }, { - "id": 40, + "id": "135390", "name": "СУНЦ \"Meow\" (Алексеев 11, Рагулин 11, Зотова 11)", "shortName": "СУНЦ \"Meow\" (Алексеев 11, Рагулин 11, Зотова 11)", - "contestSystemId": "135390", "groups": [], "hashTag": null, "medias": {}, @@ -687,10 +646,9 @@ "customFields": {} }, { - "id": 41, + "id": "135391", "name": "179 сладкие (Сергиенко 11, Губарев 11, Бурков 11)", "shortName": "179 сладкие (Сергиенко 11, Губарев 11, Бурков 11)", - "contestSystemId": "135391", "groups": [], "hashTag": null, "medias": {}, @@ -700,10 +658,9 @@ "customFields": {} }, { - "id": 42, + "id": "135392", "name": "2007+57 дружки-пирожки (Душенков 10, Дрожецкий 10, Скрипник 10)", "shortName": "2007+57 дружки-пирожки (Душенков 10, Дрожецкий 10, Скрипник 10)", - "contestSystemId": "135392", "groups": [], "hashTag": null, "medias": {}, @@ -713,10 +670,9 @@ "customFields": {} }, { - "id": 43, + "id": "135393", "name": "57+Л2Ш \"No chances, they are asians\" (Насретдинов 10, Крылыков 10, Хо 10)", "shortName": "57+Л2Ш \"No chances, they are asians\" (Насретдинов 10, Крылыков 10, Хо 10)", - "contestSystemId": "135393", "groups": [], "hashTag": null, "medias": {}, @@ -726,10 +682,9 @@ "customFields": {} }, { - "id": 44, + "id": "135394", "name": "Летово \"кислые мармеладки\" (Макнил 9, Равнушкин 9, Громыко 9)", "shortName": "Летово \"кислые мармеладки\" (Макнил 9, Равнушкин 9, Громыко 9)", - "contestSystemId": "135394", "groups": [], "hashTag": null, "medias": {}, @@ -739,10 +694,9 @@ "customFields": {} }, { - "id": 45, + "id": "135395", "name": "СУНЦ %team_name% (Михайлов 11, Ларин 11, Вараксин 11)", "shortName": "СУНЦ %team_name% (Михайлов 11, Ларин 11, Вараксин 11)", - "contestSystemId": "135395", "groups": [], "hashTag": null, "medias": {}, @@ -752,10 +706,9 @@ "customFields": {} }, { - "id": 46, + "id": "135396", "name": "179 Ущемлённые уточки (Черников 9, Маевский 9, Малышев 9)", "shortName": "179 Ущемлённые уточки (Черников 9, Маевский 9, Малышев 9)", - "contestSystemId": "135396", "groups": [], "hashTag": null, "medias": {}, @@ -765,10 +718,9 @@ "customFields": {} }, { - "id": 47, + "id": "135397", "name": "2086-1 \"Хеши в толстовке\" (Редько 10, Илаев 10, Иванов 10)", "shortName": "2086-1 \"Хеши в толстовке\" (Редько 10, Илаев 10, Иванов 10)", - "contestSystemId": "135397", "groups": [], "hashTag": null, "medias": {}, @@ -778,10 +730,9 @@ "customFields": {} }, { - "id": 48, + "id": "135398", "name": "57+ЦПМ Джаханпахлаван (Янбухтин 10, Жиляев 10, Медведев 10)", "shortName": "57+ЦПМ Джаханпахлаван (Янбухтин 10, Жиляев 10, Медведев 10)", - "contestSystemId": "135398", "groups": [], "hashTag": null, "medias": {}, @@ -791,10 +742,9 @@ "customFields": {} }, { - "id": 49, + "id": "135399", "name": "Летово \"Стардасты\" (Акулов 9, Личманов 9, Хазеев 9)", "shortName": "Летово \"Стардасты\" (Акулов 9, Личманов 9, Хазеев 9)", - "contestSystemId": "135399", "groups": [], "hashTag": null, "medias": {}, @@ -804,10 +754,9 @@ "customFields": {} }, { - "id": 50, + "id": "135400", "name": "СУНЦ Бум зука искряка (Никифоров 10, Газизов 10, Жуланов 10)", "shortName": "СУНЦ Бум зука искряка (Никифоров 10, Газизов 10, Жуланов 10)", - "contestSystemId": "135400", "groups": [], "hashTag": null, "medias": {}, @@ -817,10 +766,9 @@ "customFields": {} }, { - "id": 51, + "id": "135401", "name": "179 IQ (Шиловский 9, Чуркина 9, Турундаев 9)", "shortName": "179 IQ (Шиловский 9, Чуркина 9, Турундаев 9)", - "contestSystemId": "135401", "groups": [], "hashTag": null, "medias": {}, @@ -830,10 +778,9 @@ "customFields": {} }, { - "id": 52, + "id": "135402", "name": "57 \"2^82589933 - 1\" (Чистяков 10, Хесин 10, Яковлев 10)", "shortName": "57 \"2^82589933 - 1\" (Чистяков 10, Хесин 10, Яковлев 10)", - "contestSystemId": "135402", "groups": [], "hashTag": null, "medias": {}, @@ -843,10 +790,9 @@ "customFields": {} }, { - "id": 53, + "id": "135403", "name": "Акулы МШП (Широковских 11, Паркина 11, Сильвестров 11)", "shortName": "Акулы МШП (Широковских 11, Паркина 11, Сильвестров 11)", - "contestSystemId": "135403", "groups": [], "hashTag": null, "medias": {}, @@ -856,10 +802,9 @@ "customFields": {} }, { - "id": 54, + "id": "135404", "name": "Летово-1 \"Их было трое\" (Маглыш 10, Лобанов 9, Колобаев 11)", "shortName": "Летово-1 \"Их было трое\" (Маглыш 10, Лобанов 9, Колобаев 11)", - "contestSystemId": "135404", "groups": [], "hashTag": null, "medias": {}, @@ -869,10 +814,9 @@ "customFields": {} }, { - "id": 55, + "id": "135405", "name": "Три лицея, \"Попытка - не пытка\" (Гомзин 8, Шарапов 8, Алтынов 9)", "shortName": "Три лицея, \"Попытка - не пытка\" (Гомзин 8, Шарапов 8, Алтынов 9)", - "contestSystemId": "135405", "groups": [], "hashTag": null, "medias": {}, @@ -903,7 +847,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 4, + "teamId": "135354", "time": 161087, "featuredRunMedia": null, "reactionVideos": [], @@ -921,7 +865,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "135359", "time": 290473, "featuredRunMedia": null, "reactionVideos": [], @@ -939,7 +883,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 39, + "teamId": "135389", "time": 327417, "featuredRunMedia": null, "reactionVideos": [], @@ -957,7 +901,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 44, + "teamId": "135394", "time": 369304, "featuredRunMedia": null, "reactionVideos": [], @@ -975,7 +919,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 44, + "teamId": "135394", "time": 400306, "featuredRunMedia": null, "reactionVideos": [], @@ -993,7 +937,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "135384", "time": 406143, "featuredRunMedia": null, "reactionVideos": [], @@ -1011,7 +955,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 29, + "teamId": "135379", "time": 416242, "featuredRunMedia": null, "reactionVideos": [], @@ -1029,7 +973,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "135404", "time": 416884, "featuredRunMedia": null, "reactionVideos": [], @@ -1047,7 +991,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "135386", "time": 425828, "featuredRunMedia": null, "reactionVideos": [], @@ -1065,7 +1009,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "135382", "time": 523597, "featuredRunMedia": null, "reactionVideos": [], @@ -1083,7 +1027,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 14, + "teamId": "135364", "time": 564439, "featuredRunMedia": null, "reactionVideos": [], @@ -1101,7 +1045,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "135404", "time": 574801, "featuredRunMedia": null, "reactionVideos": [], @@ -1119,7 +1063,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "135391", "time": 601151, "featuredRunMedia": null, "reactionVideos": [], @@ -1137,7 +1081,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 33, + "teamId": "135383", "time": 606632, "featuredRunMedia": null, "reactionVideos": [], @@ -1155,7 +1099,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "135369", "time": 619145, "featuredRunMedia": null, "reactionVideos": [], @@ -1173,7 +1117,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 33, + "teamId": "135383", "time": 624968, "featuredRunMedia": null, "reactionVideos": [], @@ -1191,7 +1135,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "135381", "time": 641523, "featuredRunMedia": null, "reactionVideos": [], @@ -1209,7 +1153,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "135359", "time": 666179, "featuredRunMedia": null, "reactionVideos": [], @@ -1227,7 +1171,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 667799, "featuredRunMedia": null, "reactionVideos": [], @@ -1245,7 +1189,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 679291, "featuredRunMedia": null, "reactionVideos": [], @@ -1263,7 +1207,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 11, + "teamId": "135361", "time": 703112, "featuredRunMedia": null, "reactionVideos": [], @@ -1281,7 +1225,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "135385", "time": 717451, "featuredRunMedia": null, "reactionVideos": [], @@ -1299,7 +1243,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "135369", "time": 717756, "featuredRunMedia": null, "reactionVideos": [], @@ -1317,7 +1261,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "135380", "time": 718268, "featuredRunMedia": null, "reactionVideos": [], @@ -1335,7 +1279,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 738448, "featuredRunMedia": null, "reactionVideos": [], @@ -1353,7 +1297,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 33, + "teamId": "135383", "time": 739426, "featuredRunMedia": null, "reactionVideos": [], @@ -1371,7 +1315,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "135393", "time": 742383, "featuredRunMedia": null, "reactionVideos": [], @@ -1389,7 +1333,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 749633, "featuredRunMedia": null, "reactionVideos": [], @@ -1407,7 +1351,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 10, + "teamId": "135360", "time": 806428, "featuredRunMedia": null, "reactionVideos": [], @@ -1425,7 +1369,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 41, + "teamId": "135391", "time": 826040, "featuredRunMedia": null, "reactionVideos": [], @@ -1443,7 +1387,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "135358", "time": 850326, "featuredRunMedia": null, "reactionVideos": [], @@ -1461,7 +1405,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "135353", "time": 872246, "featuredRunMedia": null, "reactionVideos": [], @@ -1479,7 +1423,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "135399", "time": 905814, "featuredRunMedia": null, "reactionVideos": [], @@ -1497,7 +1441,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "135386", "time": 910882, "featuredRunMedia": null, "reactionVideos": [], @@ -1515,7 +1459,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "135370", "time": 932188, "featuredRunMedia": null, "reactionVideos": [], @@ -1533,7 +1477,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "135392", "time": 947771, "featuredRunMedia": null, "reactionVideos": [], @@ -1551,7 +1495,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 33, + "teamId": "135383", "time": 948114, "featuredRunMedia": null, "reactionVideos": [], @@ -1569,7 +1513,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 32, + "teamId": "135382", "time": 959484, "featuredRunMedia": null, "reactionVideos": [], @@ -1587,7 +1531,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "135359", "time": 973214, "featuredRunMedia": null, "reactionVideos": [], @@ -1605,7 +1549,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 50, + "teamId": "135400", "time": 1007755, "featuredRunMedia": null, "reactionVideos": [], @@ -1623,7 +1567,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "135364", "time": 1016018, "featuredRunMedia": null, "reactionVideos": [], @@ -1641,7 +1585,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "135368", "time": 1028817, "featuredRunMedia": null, "reactionVideos": [], @@ -1659,7 +1603,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 30, + "teamId": "135380", "time": 1038933, "featuredRunMedia": null, "reactionVideos": [], @@ -1677,7 +1621,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "135362", "time": 1049174, "featuredRunMedia": null, "reactionVideos": [], @@ -1695,7 +1639,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "135368", "time": 1061576, "featuredRunMedia": null, "reactionVideos": [], @@ -1713,7 +1657,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 51, + "teamId": "135401", "time": 1061952, "featuredRunMedia": null, "reactionVideos": [], @@ -1731,7 +1675,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "135380", "time": 1078621, "featuredRunMedia": null, "reactionVideos": [], @@ -1749,7 +1693,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 45, + "teamId": "135395", "time": 1092267, "featuredRunMedia": null, "reactionVideos": [], @@ -1767,7 +1711,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "135368", "time": 1105666, "featuredRunMedia": null, "reactionVideos": [], @@ -1785,7 +1729,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "135402", "time": 1110823, "featuredRunMedia": null, "reactionVideos": [], @@ -1803,7 +1747,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 40, + "teamId": "135390", "time": 1135882, "featuredRunMedia": null, "reactionVideos": [], @@ -1821,7 +1765,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "135403", "time": 1159470, "featuredRunMedia": null, "reactionVideos": [], @@ -1839,7 +1783,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "135368", "time": 1191396, "featuredRunMedia": null, "reactionVideos": [], @@ -1857,7 +1801,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 0, + "teamId": "135350", "time": 1208254, "featuredRunMedia": null, "reactionVideos": [], @@ -1875,7 +1819,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 33, + "teamId": "135383", "time": 1212926, "featuredRunMedia": null, "reactionVideos": [], @@ -1893,7 +1837,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "135381", "time": 1225061, "featuredRunMedia": null, "reactionVideos": [], @@ -1911,7 +1855,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 2, + "teamId": "135352", "time": 1227119, "featuredRunMedia": null, "reactionVideos": [], @@ -1929,7 +1873,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "135394", "time": 1227805, "featuredRunMedia": null, "reactionVideos": [], @@ -1947,7 +1891,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 51, + "teamId": "135401", "time": 1236963, "featuredRunMedia": null, "reactionVideos": [], @@ -1965,7 +1909,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 1243417, "featuredRunMedia": null, "reactionVideos": [], @@ -1983,7 +1927,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "135353", "time": 1252844, "featuredRunMedia": null, "reactionVideos": [], @@ -2001,7 +1945,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "135402", "time": 1269622, "featuredRunMedia": null, "reactionVideos": [], @@ -2019,7 +1963,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "135358", "time": 1305154, "featuredRunMedia": null, "reactionVideos": [], @@ -2037,7 +1981,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "135388", "time": 1313755, "featuredRunMedia": null, "reactionVideos": [], @@ -2055,7 +1999,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 51, + "teamId": "135401", "time": 1317812, "featuredRunMedia": null, "reactionVideos": [], @@ -2073,7 +2017,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "135384", "time": 1332493, "featuredRunMedia": null, "reactionVideos": [], @@ -2091,7 +2035,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "135375", "time": 1340975, "featuredRunMedia": null, "reactionVideos": [], @@ -2109,7 +2053,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "135404", "time": 1353962, "featuredRunMedia": null, "reactionVideos": [], @@ -2127,7 +2071,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 30, + "teamId": "135380", "time": 1383714, "featuredRunMedia": null, "reactionVideos": [], @@ -2145,7 +2089,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 1384298, "featuredRunMedia": null, "reactionVideos": [], @@ -2163,7 +2107,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "135391", "time": 1401863, "featuredRunMedia": null, "reactionVideos": [], @@ -2181,7 +2125,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "135375", "time": 1403931, "featuredRunMedia": null, "reactionVideos": [], @@ -2199,7 +2143,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "135364", "time": 1447557, "featuredRunMedia": null, "reactionVideos": [], @@ -2217,7 +2161,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 21, + "teamId": "135371", "time": 1472519, "featuredRunMedia": null, "reactionVideos": [], @@ -2235,7 +2179,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "135387", "time": 1479326, "featuredRunMedia": null, "reactionVideos": [], @@ -2253,7 +2197,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 9, + "teamId": "135359", "time": 1486628, "featuredRunMedia": null, "reactionVideos": [], @@ -2271,7 +2215,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "135400", "time": 1495588, "featuredRunMedia": null, "reactionVideos": [], @@ -2289,7 +2233,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "135363", "time": 1515785, "featuredRunMedia": null, "reactionVideos": [], @@ -2307,7 +2251,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 45, + "teamId": "135395", "time": 1535922, "featuredRunMedia": null, "reactionVideos": [], @@ -2325,7 +2269,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 51, + "teamId": "135401", "time": 1542546, "featuredRunMedia": null, "reactionVideos": [], @@ -2343,7 +2287,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "135386", "time": 1600629, "featuredRunMedia": null, "reactionVideos": [], @@ -2361,7 +2305,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 30, + "teamId": "135380", "time": 1635586, "featuredRunMedia": null, "reactionVideos": [], @@ -2379,7 +2323,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "135367", "time": 1643798, "featuredRunMedia": null, "reactionVideos": [], @@ -2397,7 +2341,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "135358", "time": 1646439, "featuredRunMedia": null, "reactionVideos": [], @@ -2415,7 +2359,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "135374", "time": 1654329, "featuredRunMedia": null, "reactionVideos": [], @@ -2433,7 +2377,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "135354", "time": 1677411, "featuredRunMedia": null, "reactionVideos": [], @@ -2451,7 +2395,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "135388", "time": 1704506, "featuredRunMedia": null, "reactionVideos": [], @@ -2469,7 +2413,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 1722649, "featuredRunMedia": null, "reactionVideos": [], @@ -2487,7 +2431,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 42, + "teamId": "135392", "time": 1767775, "featuredRunMedia": null, "reactionVideos": [], @@ -2505,7 +2449,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "135360", "time": 1803214, "featuredRunMedia": null, "reactionVideos": [], @@ -2523,7 +2467,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "135379", "time": 1803704, "featuredRunMedia": null, "reactionVideos": [], @@ -2541,7 +2485,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "135388", "time": 1822705, "featuredRunMedia": null, "reactionVideos": [], @@ -2559,7 +2503,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "135404", "time": 1828352, "featuredRunMedia": null, "reactionVideos": [], @@ -2577,7 +2521,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "135404", "time": 1856313, "featuredRunMedia": null, "reactionVideos": [], @@ -2595,7 +2539,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "135399", "time": 1865641, "featuredRunMedia": null, "reactionVideos": [], @@ -2613,7 +2557,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 6, + "teamId": "135356", "time": 1883859, "featuredRunMedia": null, "reactionVideos": [], @@ -2631,7 +2575,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 24, + "teamId": "135374", "time": 1903031, "featuredRunMedia": null, "reactionVideos": [], @@ -2649,7 +2593,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 16, + "teamId": "135366", "time": 1909361, "featuredRunMedia": null, "reactionVideos": [], @@ -2667,7 +2611,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "135378", "time": 1910869, "featuredRunMedia": null, "reactionVideos": [], @@ -2685,7 +2629,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "135396", "time": 1922488, "featuredRunMedia": null, "reactionVideos": [], @@ -2703,7 +2647,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "135395", "time": 1923166, "featuredRunMedia": null, "reactionVideos": [], @@ -2721,7 +2665,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 25, + "teamId": "135375", "time": 1928005, "featuredRunMedia": null, "reactionVideos": [], @@ -2739,7 +2683,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 11, + "teamId": "135361", "time": 1929679, "featuredRunMedia": null, "reactionVideos": [], @@ -2757,7 +2701,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "135363", "time": 1935976, "featuredRunMedia": null, "reactionVideos": [], @@ -2775,7 +2719,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "135393", "time": 1941021, "featuredRunMedia": null, "reactionVideos": [], @@ -2793,7 +2737,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 1943411, "featuredRunMedia": null, "reactionVideos": [], @@ -2811,7 +2755,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "135384", "time": 1945107, "featuredRunMedia": null, "reactionVideos": [], @@ -2829,7 +2773,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "135394", "time": 1947464, "featuredRunMedia": null, "reactionVideos": [], @@ -2847,7 +2791,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "135391", "time": 1951059, "featuredRunMedia": null, "reactionVideos": [], @@ -2865,7 +2809,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "135389", "time": 1964322, "featuredRunMedia": null, "reactionVideos": [], @@ -2883,7 +2827,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "135394", "time": 1970112, "featuredRunMedia": null, "reactionVideos": [], @@ -2901,7 +2845,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "135357", "time": 1972785, "featuredRunMedia": null, "reactionVideos": [], @@ -2919,7 +2863,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 12, + "teamId": "135362", "time": 1979947, "featuredRunMedia": null, "reactionVideos": [], @@ -2937,7 +2881,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 37, + "teamId": "135387", "time": 1994479, "featuredRunMedia": null, "reactionVideos": [], @@ -2955,7 +2899,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 2000284, "featuredRunMedia": null, "reactionVideos": [], @@ -2973,7 +2917,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 4, + "teamId": "135354", "time": 2022207, "featuredRunMedia": null, "reactionVideos": [], @@ -2991,7 +2935,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 35, + "teamId": "135385", "time": 2077268, "featuredRunMedia": null, "reactionVideos": [], @@ -3009,7 +2953,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "135361", "time": 2079226, "featuredRunMedia": null, "reactionVideos": [], @@ -3027,7 +2971,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 20, + "teamId": "135370", "time": 2089491, "featuredRunMedia": null, "reactionVideos": [], @@ -3045,7 +2989,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 5, + "teamId": "135355", "time": 2098690, "featuredRunMedia": null, "reactionVideos": [], @@ -3063,7 +3007,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 15, + "teamId": "135365", "time": 2099271, "featuredRunMedia": null, "reactionVideos": [], @@ -3081,7 +3025,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 4, + "teamId": "135354", "time": 2105118, "featuredRunMedia": null, "reactionVideos": [], @@ -3099,7 +3043,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "135369", "time": 2108932, "featuredRunMedia": null, "reactionVideos": [], @@ -3117,7 +3061,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "135403", "time": 2110920, "featuredRunMedia": null, "reactionVideos": [], @@ -3135,7 +3079,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "135400", "time": 2111529, "featuredRunMedia": null, "reactionVideos": [], @@ -3153,7 +3097,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "135404", "time": 2196848, "featuredRunMedia": null, "reactionVideos": [], @@ -3171,7 +3115,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "135351", "time": 2218374, "featuredRunMedia": null, "reactionVideos": [], @@ -3189,7 +3133,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "135404", "time": 2233302, "featuredRunMedia": null, "reactionVideos": [], @@ -3207,7 +3151,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "135391", "time": 2258990, "featuredRunMedia": null, "reactionVideos": [], @@ -3225,7 +3169,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 31, + "teamId": "135381", "time": 2261099, "featuredRunMedia": null, "reactionVideos": [], @@ -3243,7 +3187,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 2262289, "featuredRunMedia": null, "reactionVideos": [], @@ -3261,7 +3205,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "135384", "time": 2275468, "featuredRunMedia": null, "reactionVideos": [], @@ -3279,7 +3223,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "135367", "time": 2279551, "featuredRunMedia": null, "reactionVideos": [], @@ -3297,7 +3241,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 2, + "teamId": "135352", "time": 2295277, "featuredRunMedia": null, "reactionVideos": [], @@ -3315,7 +3259,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "135354", "time": 2308073, "featuredRunMedia": null, "reactionVideos": [], @@ -3333,7 +3277,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "135397", "time": 2308658, "featuredRunMedia": null, "reactionVideos": [], @@ -3351,7 +3295,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "135388", "time": 2312149, "featuredRunMedia": null, "reactionVideos": [], @@ -3369,7 +3313,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 35, + "teamId": "135385", "time": 2324966, "featuredRunMedia": null, "reactionVideos": [], @@ -3387,7 +3331,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 24, + "teamId": "135374", "time": 2405784, "featuredRunMedia": null, "reactionVideos": [], @@ -3405,7 +3349,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 48, + "teamId": "135398", "time": 2417738, "featuredRunMedia": null, "reactionVideos": [], @@ -3423,7 +3367,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "135400", "time": 2417845, "featuredRunMedia": null, "reactionVideos": [], @@ -3441,7 +3385,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 33, + "teamId": "135383", "time": 2429511, "featuredRunMedia": null, "reactionVideos": [], @@ -3459,7 +3403,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 48, + "teamId": "135398", "time": 2435174, "featuredRunMedia": null, "reactionVideos": [], @@ -3477,7 +3421,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 36, + "teamId": "135386", "time": 2441776, "featuredRunMedia": null, "reactionVideos": [], @@ -3495,7 +3439,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 2468689, "featuredRunMedia": null, "reactionVideos": [], @@ -3513,7 +3457,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 11, + "teamId": "135361", "time": 2477539, "featuredRunMedia": null, "reactionVideos": [], @@ -3531,7 +3475,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 32, + "teamId": "135382", "time": 2491868, "featuredRunMedia": null, "reactionVideos": [], @@ -3549,7 +3493,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 1, + "teamId": "135351", "time": 2507679, "featuredRunMedia": null, "reactionVideos": [], @@ -3567,7 +3511,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 2, + "teamId": "135352", "time": 2508840, "featuredRunMedia": null, "reactionVideos": [], @@ -3585,7 +3529,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "135368", "time": 2527407, "featuredRunMedia": null, "reactionVideos": [], @@ -3603,7 +3547,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 12, + "teamId": "135362", "time": 2532512, "featuredRunMedia": null, "reactionVideos": [], @@ -3621,7 +3565,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 2544960, "featuredRunMedia": null, "reactionVideos": [], @@ -3639,7 +3583,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 15, + "teamId": "135365", "time": 2562811, "featuredRunMedia": null, "reactionVideos": [], @@ -3657,7 +3601,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "135371", "time": 2565477, "featuredRunMedia": null, "reactionVideos": [], @@ -3675,7 +3619,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 40, + "teamId": "135390", "time": 2591049, "featuredRunMedia": null, "reactionVideos": [], @@ -3693,7 +3637,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "135354", "time": 2618678, "featuredRunMedia": null, "reactionVideos": [], @@ -3711,7 +3655,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "135373", "time": 2619278, "featuredRunMedia": null, "reactionVideos": [], @@ -3729,7 +3673,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "135404", "time": 2656995, "featuredRunMedia": null, "reactionVideos": [], @@ -3747,7 +3691,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "135404", "time": 2676068, "featuredRunMedia": null, "reactionVideos": [], @@ -3765,7 +3709,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 27, + "teamId": "135377", "time": 2689209, "featuredRunMedia": null, "reactionVideos": [], @@ -3783,7 +3727,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 2696051, "featuredRunMedia": null, "reactionVideos": [], @@ -3801,7 +3745,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "135404", "time": 2709605, "featuredRunMedia": null, "reactionVideos": [], @@ -3819,7 +3763,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 15, + "teamId": "135365", "time": 2711168, "featuredRunMedia": null, "reactionVideos": [], @@ -3837,7 +3781,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "135390", "time": 2717660, "featuredRunMedia": null, "reactionVideos": [], @@ -3855,7 +3799,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "135363", "time": 2720185, "featuredRunMedia": null, "reactionVideos": [], @@ -3873,7 +3817,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "135363", "time": 2732343, "featuredRunMedia": null, "reactionVideos": [], @@ -3891,7 +3835,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "135392", "time": 2760377, "featuredRunMedia": null, "reactionVideos": [], @@ -3909,7 +3853,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 2775116, "featuredRunMedia": null, "reactionVideos": [], @@ -3927,7 +3871,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "135384", "time": 2817890, "featuredRunMedia": null, "reactionVideos": [], @@ -3945,7 +3889,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "135400", "time": 2823975, "featuredRunMedia": null, "reactionVideos": [], @@ -3963,7 +3907,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 38, + "teamId": "135388", "time": 2845852, "featuredRunMedia": null, "reactionVideos": [], @@ -3981,7 +3925,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "135404", "time": 2847164, "featuredRunMedia": null, "reactionVideos": [], @@ -3999,7 +3943,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 2849732, "featuredRunMedia": null, "reactionVideos": [], @@ -4017,7 +3961,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 28, + "teamId": "135378", "time": 2870166, "featuredRunMedia": null, "reactionVideos": [], @@ -4035,7 +3979,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 45, + "teamId": "135395", "time": 2871708, "featuredRunMedia": null, "reactionVideos": [], @@ -4053,7 +3997,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 48, + "teamId": "135398", "time": 2934887, "featuredRunMedia": null, "reactionVideos": [], @@ -4071,7 +4015,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 2945885, "featuredRunMedia": null, "reactionVideos": [], @@ -4089,7 +4033,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 4, + "teamId": "135354", "time": 2986932, "featuredRunMedia": null, "reactionVideos": [], @@ -4107,7 +4051,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "135404", "time": 3004229, "featuredRunMedia": null, "reactionVideos": [], @@ -4125,7 +4069,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 46, + "teamId": "135396", "time": 3079451, "featuredRunMedia": null, "reactionVideos": [], @@ -4143,7 +4087,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "135398", "time": 3087961, "featuredRunMedia": null, "reactionVideos": [], @@ -4161,7 +4105,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 3093109, "featuredRunMedia": null, "reactionVideos": [], @@ -4179,7 +4123,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 14, + "teamId": "135364", "time": 3096419, "featuredRunMedia": null, "reactionVideos": [], @@ -4197,7 +4141,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "135389", "time": 3117792, "featuredRunMedia": null, "reactionVideos": [], @@ -4215,7 +4159,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "135401", "time": 3118652, "featuredRunMedia": null, "reactionVideos": [], @@ -4233,7 +4177,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "135370", "time": 3144114, "featuredRunMedia": null, "reactionVideos": [], @@ -4251,7 +4195,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "135357", "time": 3149013, "featuredRunMedia": null, "reactionVideos": [], @@ -4269,7 +4213,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "135388", "time": 3164613, "featuredRunMedia": null, "reactionVideos": [], @@ -4287,7 +4231,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "135376", "time": 3185356, "featuredRunMedia": null, "reactionVideos": [], @@ -4305,7 +4249,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "135352", "time": 3216842, "featuredRunMedia": null, "reactionVideos": [], @@ -4323,7 +4267,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "135387", "time": 3220385, "featuredRunMedia": null, "reactionVideos": [], @@ -4341,7 +4285,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "135402", "time": 3308898, "featuredRunMedia": null, "reactionVideos": [], @@ -4359,7 +4303,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 14, + "teamId": "135364", "time": 3317256, "featuredRunMedia": null, "reactionVideos": [], @@ -4377,7 +4321,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "135405", "time": 3331601, "featuredRunMedia": null, "reactionVideos": [], @@ -4395,7 +4339,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "135390", "time": 3336461, "featuredRunMedia": null, "reactionVideos": [], @@ -4413,7 +4357,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 33, + "teamId": "135383", "time": 3337757, "featuredRunMedia": null, "reactionVideos": [], @@ -4431,7 +4375,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 21, + "teamId": "135371", "time": 3377714, "featuredRunMedia": null, "reactionVideos": [], @@ -4449,7 +4393,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 0, + "teamId": "135350", "time": 3403694, "featuredRunMedia": null, "reactionVideos": [], @@ -4467,7 +4411,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 15, + "teamId": "135365", "time": 3414040, "featuredRunMedia": null, "reactionVideos": [], @@ -4485,7 +4429,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 38, + "teamId": "135388", "time": 3440137, "featuredRunMedia": null, "reactionVideos": [], @@ -4503,7 +4447,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 13, + "teamId": "135363", "time": 3440362, "featuredRunMedia": null, "reactionVideos": [], @@ -4521,7 +4465,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 36, + "teamId": "135386", "time": 3460052, "featuredRunMedia": null, "reactionVideos": [], @@ -4539,7 +4483,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "135397", "time": 3460471, "featuredRunMedia": null, "reactionVideos": [], @@ -4557,7 +4501,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "135360", "time": 3461784, "featuredRunMedia": null, "reactionVideos": [], @@ -4575,7 +4519,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 41, + "teamId": "135391", "time": 3501931, "featuredRunMedia": null, "reactionVideos": [], @@ -4593,7 +4537,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "135397", "time": 3507445, "featuredRunMedia": null, "reactionVideos": [], @@ -4611,7 +4555,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 27, + "teamId": "135377", "time": 3519547, "featuredRunMedia": null, "reactionVideos": [], @@ -4629,7 +4573,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 42, + "teamId": "135392", "time": 3520298, "featuredRunMedia": null, "reactionVideos": [], @@ -4647,7 +4591,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 41, + "teamId": "135391", "time": 3529855, "featuredRunMedia": null, "reactionVideos": [], @@ -4665,7 +4609,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "135377", "time": 3548314, "featuredRunMedia": null, "reactionVideos": [], @@ -4683,7 +4627,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "135397", "time": 3567445, "featuredRunMedia": null, "reactionVideos": [], @@ -4701,7 +4645,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 31, + "teamId": "135381", "time": 3574523, "featuredRunMedia": null, "reactionVideos": [], @@ -4719,7 +4663,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "135375", "time": 3583980, "featuredRunMedia": null, "reactionVideos": [], @@ -4737,7 +4681,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "135370", "time": 3596005, "featuredRunMedia": null, "reactionVideos": [], @@ -4755,7 +4699,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "135382", "time": 3636142, "featuredRunMedia": null, "reactionVideos": [], @@ -4773,7 +4717,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "135357", "time": 3636762, "featuredRunMedia": null, "reactionVideos": [], @@ -4791,7 +4735,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 3654552, "featuredRunMedia": null, "reactionVideos": [], @@ -4809,7 +4753,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 3655287, "featuredRunMedia": null, "reactionVideos": [], @@ -4827,7 +4771,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 31, + "teamId": "135381", "time": 3656844, "featuredRunMedia": null, "reactionVideos": [], @@ -4845,7 +4789,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 13, + "teamId": "135363", "time": 3662081, "featuredRunMedia": null, "reactionVideos": [], @@ -4863,7 +4807,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 2, + "teamId": "135352", "time": 3673669, "featuredRunMedia": null, "reactionVideos": [], @@ -4881,7 +4825,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "135401", "time": 3689549, "featuredRunMedia": null, "reactionVideos": [], @@ -4899,7 +4843,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "135356", "time": 3690488, "featuredRunMedia": null, "reactionVideos": [], @@ -4917,7 +4861,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "135382", "time": 3693194, "featuredRunMedia": null, "reactionVideos": [], @@ -4935,7 +4879,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "135355", "time": 3708108, "featuredRunMedia": null, "reactionVideos": [], @@ -4953,7 +4897,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 13, + "teamId": "135363", "time": 3717198, "featuredRunMedia": null, "reactionVideos": [], @@ -4971,7 +4915,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 3786212, "featuredRunMedia": null, "reactionVideos": [], @@ -4989,7 +4933,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 50, + "teamId": "135400", "time": 3860972, "featuredRunMedia": null, "reactionVideos": [], @@ -5007,7 +4951,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 23, + "teamId": "135373", "time": 3869323, "featuredRunMedia": null, "reactionVideos": [], @@ -5025,7 +4969,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "135404", "time": 3897085, "featuredRunMedia": null, "reactionVideos": [], @@ -5043,7 +4987,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "135386", "time": 3904056, "featuredRunMedia": null, "reactionVideos": [], @@ -5061,7 +5005,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 24, + "teamId": "135374", "time": 3911907, "featuredRunMedia": null, "reactionVideos": [], @@ -5079,7 +5023,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 46, + "teamId": "135396", "time": 3954199, "featuredRunMedia": null, "reactionVideos": [], @@ -5097,7 +5041,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 2, + "teamId": "135352", "time": 3960277, "featuredRunMedia": null, "reactionVideos": [], @@ -5115,7 +5059,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "135404", "time": 3964188, "featuredRunMedia": null, "reactionVideos": [], @@ -5133,7 +5077,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 19, + "teamId": "135369", "time": 3979663, "featuredRunMedia": null, "reactionVideos": [], @@ -5151,7 +5095,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 4000010, "featuredRunMedia": null, "reactionVideos": [], @@ -5169,7 +5113,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 8, + "teamId": "135358", "time": 4029917, "featuredRunMedia": null, "reactionVideos": [], @@ -5187,7 +5131,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 20, + "teamId": "135370", "time": 4046011, "featuredRunMedia": null, "reactionVideos": [], @@ -5205,7 +5149,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 4077268, "featuredRunMedia": null, "reactionVideos": [], @@ -5223,7 +5167,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 0, + "teamId": "135350", "time": 4098908, "featuredRunMedia": null, "reactionVideos": [], @@ -5241,7 +5185,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "135350", "time": 4107226, "featuredRunMedia": null, "reactionVideos": [], @@ -5259,7 +5203,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 38, + "teamId": "135388", "time": 4108647, "featuredRunMedia": null, "reactionVideos": [], @@ -5277,7 +5221,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 1, + "teamId": "135351", "time": 4115776, "featuredRunMedia": null, "reactionVideos": [], @@ -5295,7 +5239,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 4142228, "featuredRunMedia": null, "reactionVideos": [], @@ -5313,7 +5257,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 6, + "teamId": "135356", "time": 4173000, "featuredRunMedia": null, "reactionVideos": [], @@ -5331,7 +5275,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 4195017, "featuredRunMedia": null, "reactionVideos": [], @@ -5349,7 +5293,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "135373", "time": 4227684, "featuredRunMedia": null, "reactionVideos": [], @@ -5367,7 +5311,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 37, + "teamId": "135387", "time": 4229649, "featuredRunMedia": null, "reactionVideos": [], @@ -5385,7 +5329,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 4239287, "featuredRunMedia": null, "reactionVideos": [], @@ -5403,7 +5347,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 24, + "teamId": "135374", "time": 4256268, "featuredRunMedia": null, "reactionVideos": [], @@ -5421,7 +5365,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 48, + "teamId": "135398", "time": 4273260, "featuredRunMedia": null, "reactionVideos": [], @@ -5439,7 +5383,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "135373", "time": 4282637, "featuredRunMedia": null, "reactionVideos": [], @@ -5457,7 +5401,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 4283569, "featuredRunMedia": null, "reactionVideos": [], @@ -5475,7 +5419,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "135365", "time": 4288337, "featuredRunMedia": null, "reactionVideos": [], @@ -5493,7 +5437,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "135367", "time": 4336421, "featuredRunMedia": null, "reactionVideos": [], @@ -5511,7 +5455,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 44, + "teamId": "135394", "time": 4344049, "featuredRunMedia": null, "reactionVideos": [], @@ -5529,7 +5473,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 46, + "teamId": "135396", "time": 4344784, "featuredRunMedia": null, "reactionVideos": [], @@ -5547,7 +5491,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "135397", "time": 4353341, "featuredRunMedia": null, "reactionVideos": [], @@ -5565,7 +5509,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "135375", "time": 4385481, "featuredRunMedia": null, "reactionVideos": [], @@ -5583,7 +5527,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 4399958, "featuredRunMedia": null, "reactionVideos": [], @@ -5601,7 +5545,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 44, + "teamId": "135394", "time": 4411308, "featuredRunMedia": null, "reactionVideos": [], @@ -5619,7 +5563,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 4490936, "featuredRunMedia": null, "reactionVideos": [], @@ -5637,7 +5581,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 4502213, "featuredRunMedia": null, "reactionVideos": [], @@ -5655,7 +5599,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 1, + "teamId": "135351", "time": 4553825, "featuredRunMedia": null, "reactionVideos": [], @@ -5673,7 +5617,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "135373", "time": 4565647, "featuredRunMedia": null, "reactionVideos": [], @@ -5691,7 +5635,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 26, + "teamId": "135376", "time": 4566433, "featuredRunMedia": null, "reactionVideos": [], @@ -5709,7 +5653,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 45, + "teamId": "135395", "time": 4585327, "featuredRunMedia": null, "reactionVideos": [], @@ -5727,7 +5671,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 40, + "teamId": "135390", "time": 4611690, "featuredRunMedia": null, "reactionVideos": [], @@ -5745,7 +5689,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 37, + "teamId": "135387", "time": 4620716, "featuredRunMedia": null, "reactionVideos": [], @@ -5763,7 +5707,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "135353", "time": 4623566, "featuredRunMedia": null, "reactionVideos": [], @@ -5781,7 +5725,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "135353", "time": 4653877, "featuredRunMedia": null, "reactionVideos": [], @@ -5799,7 +5743,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 40, + "teamId": "135390", "time": 4666261, "featuredRunMedia": null, "reactionVideos": [], @@ -5817,7 +5761,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 48, + "teamId": "135398", "time": 4681682, "featuredRunMedia": null, "reactionVideos": [], @@ -5835,7 +5779,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 8, + "teamId": "135358", "time": 4716052, "featuredRunMedia": null, "reactionVideos": [], @@ -5853,7 +5797,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "135373", "time": 4748656, "featuredRunMedia": null, "reactionVideos": [], @@ -5871,7 +5815,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 0, + "teamId": "135350", "time": 4771927, "featuredRunMedia": null, "reactionVideos": [], @@ -5889,7 +5833,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 41, + "teamId": "135391", "time": 4782480, "featuredRunMedia": null, "reactionVideos": [], @@ -5907,7 +5851,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "135392", "time": 4794135, "featuredRunMedia": null, "reactionVideos": [], @@ -5925,7 +5869,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 15, + "teamId": "135365", "time": 4836857, "featuredRunMedia": null, "reactionVideos": [], @@ -5943,7 +5887,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "135384", "time": 4879118, "featuredRunMedia": null, "reactionVideos": [], @@ -5961,7 +5905,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 40, + "teamId": "135390", "time": 4957283, "featuredRunMedia": null, "reactionVideos": [], @@ -5979,7 +5923,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 5, + "teamId": "135355", "time": 4996737, "featuredRunMedia": null, "reactionVideos": [], @@ -5997,7 +5941,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 9, + "teamId": "135359", "time": 5017623, "featuredRunMedia": null, "reactionVideos": [], @@ -6015,7 +5959,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "135375", "time": 5032072, "featuredRunMedia": null, "reactionVideos": [], @@ -6033,7 +5977,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 41, + "teamId": "135391", "time": 5039059, "featuredRunMedia": null, "reactionVideos": [], @@ -6051,7 +5995,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 53, + "teamId": "135403", "time": 5058084, "featuredRunMedia": null, "reactionVideos": [], @@ -6069,7 +6013,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 5132306, "featuredRunMedia": null, "reactionVideos": [], @@ -6087,7 +6031,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "135379", "time": 5200862, "featuredRunMedia": null, "reactionVideos": [], @@ -6105,7 +6049,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 26, + "teamId": "135376", "time": 5213319, "featuredRunMedia": null, "reactionVideos": [], @@ -6123,7 +6067,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 52, + "teamId": "135402", "time": 5215829, "featuredRunMedia": null, "reactionVideos": [], @@ -6141,7 +6085,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 5233042, "featuredRunMedia": null, "reactionVideos": [], @@ -6159,7 +6103,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 5261081, "featuredRunMedia": null, "reactionVideos": [], @@ -6177,7 +6121,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 5280694, "featuredRunMedia": null, "reactionVideos": [], @@ -6195,7 +6139,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 5290629, "featuredRunMedia": null, "reactionVideos": [], @@ -6213,7 +6157,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 5298440, "featuredRunMedia": null, "reactionVideos": [], @@ -6231,7 +6175,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 48, + "teamId": "135398", "time": 5313243, "featuredRunMedia": null, "reactionVideos": [], @@ -6249,7 +6193,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 2, + "teamId": "135352", "time": 5318372, "featuredRunMedia": null, "reactionVideos": [], @@ -6267,7 +6211,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 5336574, "featuredRunMedia": null, "reactionVideos": [], @@ -6285,7 +6229,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 31, + "teamId": "135381", "time": 5403494, "featuredRunMedia": null, "reactionVideos": [], @@ -6303,7 +6247,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 5437699, "featuredRunMedia": null, "reactionVideos": [], @@ -6321,7 +6265,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 27, + "teamId": "135377", "time": 5510446, "featuredRunMedia": null, "reactionVideos": [], @@ -6339,7 +6283,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 34, + "teamId": "135384", "time": 5514331, "featuredRunMedia": null, "reactionVideos": [], @@ -6357,7 +6301,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 27, + "teamId": "135377", "time": 5545271, "featuredRunMedia": null, "reactionVideos": [], @@ -6375,7 +6319,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 30, + "teamId": "135380", "time": 5560018, "featuredRunMedia": null, "reactionVideos": [], @@ -6393,7 +6337,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 45, + "teamId": "135395", "time": 5582262, "featuredRunMedia": null, "reactionVideos": [], @@ -6411,7 +6355,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 34, + "teamId": "135384", "time": 5606364, "featuredRunMedia": null, "reactionVideos": [], @@ -6429,7 +6373,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 35, + "teamId": "135385", "time": 5643340, "featuredRunMedia": null, "reactionVideos": [], @@ -6447,7 +6391,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 20, + "teamId": "135370", "time": 5668673, "featuredRunMedia": null, "reactionVideos": [], @@ -6465,7 +6409,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 30, + "teamId": "135380", "time": 5681659, "featuredRunMedia": null, "reactionVideos": [], @@ -6483,7 +6427,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 43, + "teamId": "135393", "time": 5837028, "featuredRunMedia": null, "reactionVideos": [], @@ -6501,7 +6445,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 40, + "teamId": "135390", "time": 5848310, "featuredRunMedia": null, "reactionVideos": [], @@ -6519,7 +6463,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 41, + "teamId": "135391", "time": 5863292, "featuredRunMedia": null, "reactionVideos": [], @@ -6537,7 +6481,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "135379", "time": 5877032, "featuredRunMedia": null, "reactionVideos": [], @@ -6555,7 +6499,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 21, + "teamId": "135371", "time": 5879756, "featuredRunMedia": null, "reactionVideos": [], @@ -6573,7 +6517,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "135403", "time": 5900505, "featuredRunMedia": null, "reactionVideos": [], @@ -6591,7 +6535,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 22, + "teamId": "135372", "time": 5905924, "featuredRunMedia": null, "reactionVideos": [], @@ -6609,7 +6553,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 2, + "teamId": "135352", "time": 5962249, "featuredRunMedia": null, "reactionVideos": [], @@ -6627,7 +6571,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "135395", "time": 5963974, "featuredRunMedia": null, "reactionVideos": [], @@ -6645,7 +6589,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 5978984, "featuredRunMedia": null, "reactionVideos": [], @@ -6663,7 +6607,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 14, + "teamId": "135364", "time": 5995072, "featuredRunMedia": null, "reactionVideos": [], @@ -6681,7 +6625,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 6011056, "featuredRunMedia": null, "reactionVideos": [], @@ -6699,7 +6643,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 6044277, "featuredRunMedia": null, "reactionVideos": [], @@ -6717,7 +6661,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 47, + "teamId": "135397", "time": 6059045, "featuredRunMedia": null, "reactionVideos": [], @@ -6735,7 +6679,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 18, + "teamId": "135368", "time": 6079674, "featuredRunMedia": null, "reactionVideos": [], @@ -6753,7 +6697,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 14, + "teamId": "135364", "time": 6085197, "featuredRunMedia": null, "reactionVideos": [], @@ -6771,7 +6715,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "135399", "time": 6089343, "featuredRunMedia": null, "reactionVideos": [], @@ -6789,7 +6733,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 6130596, "featuredRunMedia": null, "reactionVideos": [], @@ -6807,7 +6751,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 28, + "teamId": "135378", "time": 6137586, "featuredRunMedia": null, "reactionVideos": [], @@ -6825,7 +6769,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "135403", "time": 6161349, "featuredRunMedia": null, "reactionVideos": [], @@ -6843,7 +6787,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 13, + "teamId": "135363", "time": 6163840, "featuredRunMedia": null, "reactionVideos": [], @@ -6861,7 +6805,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "135351", "time": 6186536, "featuredRunMedia": null, "reactionVideos": [], @@ -6879,7 +6823,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 6231760, "featuredRunMedia": null, "reactionVideos": [], @@ -6897,7 +6841,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "135351", "time": 6281995, "featuredRunMedia": null, "reactionVideos": [], @@ -6915,7 +6859,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 40, + "teamId": "135390", "time": 6283718, "featuredRunMedia": null, "reactionVideos": [], @@ -6933,7 +6877,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 28, + "teamId": "135378", "time": 6310516, "featuredRunMedia": null, "reactionVideos": [], @@ -6951,7 +6895,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 9, + "teamId": "135359", "time": 6326470, "featuredRunMedia": null, "reactionVideos": [], @@ -6969,7 +6913,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 15, + "teamId": "135365", "time": 6349084, "featuredRunMedia": null, "reactionVideos": [], @@ -6987,7 +6931,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 48, + "teamId": "135398", "time": 6353664, "featuredRunMedia": null, "reactionVideos": [], @@ -7005,7 +6949,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 0, + "teamId": "135350", "time": 6372407, "featuredRunMedia": null, "reactionVideos": [], @@ -7023,7 +6967,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 33, + "teamId": "135383", "time": 6403020, "featuredRunMedia": null, "reactionVideos": [], @@ -7041,7 +6985,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 22, + "teamId": "135372", "time": 6428699, "featuredRunMedia": null, "reactionVideos": [], @@ -7059,7 +7003,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "135388", "time": 6436523, "featuredRunMedia": null, "reactionVideos": [], @@ -7077,7 +7021,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 6467105, "featuredRunMedia": null, "reactionVideos": [], @@ -7095,7 +7039,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 6478060, "featuredRunMedia": null, "reactionVideos": [], @@ -7113,7 +7057,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 26, + "teamId": "135376", "time": 6489287, "featuredRunMedia": null, "reactionVideos": [], @@ -7131,7 +7075,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "135393", "time": 6504580, "featuredRunMedia": null, "reactionVideos": [], @@ -7149,7 +7093,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 6505633, "featuredRunMedia": null, "reactionVideos": [], @@ -7167,7 +7111,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "135358", "time": 6529732, "featuredRunMedia": null, "reactionVideos": [], @@ -7185,7 +7129,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "135402", "time": 6545560, "featuredRunMedia": null, "reactionVideos": [], @@ -7203,7 +7147,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 51, + "teamId": "135401", "time": 6555006, "featuredRunMedia": null, "reactionVideos": [], @@ -7221,7 +7165,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "135405", "time": 6555047, "featuredRunMedia": null, "reactionVideos": [], @@ -7239,7 +7183,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "135405", "time": 6639504, "featuredRunMedia": null, "reactionVideos": [], @@ -7257,7 +7201,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 9, + "teamId": "135359", "time": 6651914, "featuredRunMedia": null, "reactionVideos": [], @@ -7275,7 +7219,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "135395", "time": 6669041, "featuredRunMedia": null, "reactionVideos": [], @@ -7293,7 +7237,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "135395", "time": 6688026, "featuredRunMedia": null, "reactionVideos": [], @@ -7311,7 +7255,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 15, + "teamId": "135365", "time": 6703414, "featuredRunMedia": null, "reactionVideos": [], @@ -7329,7 +7273,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 11, + "teamId": "135361", "time": 6709560, "featuredRunMedia": null, "reactionVideos": [], @@ -7347,7 +7291,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 33, + "teamId": "135383", "time": 6715840, "featuredRunMedia": null, "reactionVideos": [], @@ -7365,7 +7309,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "135374", "time": 6740112, "featuredRunMedia": null, "reactionVideos": [], @@ -7383,7 +7327,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 40, + "teamId": "135390", "time": 6766760, "featuredRunMedia": null, "reactionVideos": [], @@ -7401,7 +7345,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 51, + "teamId": "135401", "time": 6791335, "featuredRunMedia": null, "reactionVideos": [], @@ -7419,7 +7363,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 12, + "teamId": "135362", "time": 6812643, "featuredRunMedia": null, "reactionVideos": [], @@ -7437,7 +7381,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 15, + "teamId": "135365", "time": 6818735, "featuredRunMedia": null, "reactionVideos": [], @@ -7455,7 +7399,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "135395", "time": 6819984, "featuredRunMedia": null, "reactionVideos": [], @@ -7473,7 +7417,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 6, + "teamId": "135356", "time": 6855291, "featuredRunMedia": null, "reactionVideos": [], @@ -7491,7 +7435,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 6860107, "featuredRunMedia": null, "reactionVideos": [], @@ -7509,7 +7453,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 46, + "teamId": "135396", "time": 6894508, "featuredRunMedia": null, "reactionVideos": [], @@ -7527,7 +7471,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 6898282, "featuredRunMedia": null, "reactionVideos": [], @@ -7545,7 +7489,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 47, + "teamId": "135397", "time": 6921187, "featuredRunMedia": null, "reactionVideos": [], @@ -7563,7 +7507,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "135363", "time": 6962804, "featuredRunMedia": null, "reactionVideos": [], @@ -7581,7 +7525,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 26, + "teamId": "135376", "time": 6972390, "featuredRunMedia": null, "reactionVideos": [], @@ -7599,7 +7543,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 46, + "teamId": "135396", "time": 6976906, "featuredRunMedia": null, "reactionVideos": [], @@ -7617,7 +7561,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 3, + "teamId": "135353", "time": 7042899, "featuredRunMedia": null, "reactionVideos": [], @@ -7635,7 +7579,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "135355", "time": 7059724, "featuredRunMedia": null, "reactionVideos": [], @@ -7653,7 +7597,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 7066577, "featuredRunMedia": null, "reactionVideos": [], @@ -7671,7 +7615,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 7110031, "featuredRunMedia": null, "reactionVideos": [], @@ -7689,7 +7633,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "135355", "time": 7148885, "featuredRunMedia": null, "reactionVideos": [], @@ -7707,7 +7651,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 7150007, "featuredRunMedia": null, "reactionVideos": [], @@ -7725,7 +7669,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "135395", "time": 7151373, "featuredRunMedia": null, "reactionVideos": [], @@ -7743,7 +7687,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 7253712, "featuredRunMedia": null, "reactionVideos": [], @@ -7761,7 +7705,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "135370", "time": 7268494, "featuredRunMedia": null, "reactionVideos": [], @@ -7779,7 +7723,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 36, + "teamId": "135386", "time": 7342941, "featuredRunMedia": null, "reactionVideos": [], @@ -7797,7 +7741,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 7372106, "featuredRunMedia": null, "reactionVideos": [], @@ -7815,7 +7759,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 7395943, "featuredRunMedia": null, "reactionVideos": [], @@ -7833,7 +7777,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 38, + "teamId": "135388", "time": 7413659, "featuredRunMedia": null, "reactionVideos": [], @@ -7851,7 +7795,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 7438182, "featuredRunMedia": null, "reactionVideos": [], @@ -7869,7 +7813,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 33, + "teamId": "135383", "time": 7475693, "featuredRunMedia": null, "reactionVideos": [], @@ -7887,7 +7831,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 36, + "teamId": "135386", "time": 7479852, "featuredRunMedia": null, "reactionVideos": [], @@ -7905,7 +7849,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 50, + "teamId": "135400", "time": 7496799, "featuredRunMedia": null, "reactionVideos": [], @@ -7923,7 +7867,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "135390", "time": 7498636, "featuredRunMedia": null, "reactionVideos": [], @@ -7941,7 +7885,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 14, + "teamId": "135364", "time": 7550098, "featuredRunMedia": null, "reactionVideos": [], @@ -7959,7 +7903,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 26, + "teamId": "135376", "time": 7559195, "featuredRunMedia": null, "reactionVideos": [], @@ -7977,7 +7921,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 7587832, "featuredRunMedia": null, "reactionVideos": [], @@ -7995,7 +7939,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 10, + "teamId": "135360", "time": 7597418, "featuredRunMedia": null, "reactionVideos": [], @@ -8013,7 +7957,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 27, + "teamId": "135377", "time": 7606999, "featuredRunMedia": null, "reactionVideos": [], @@ -8031,7 +7975,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 54, + "teamId": "135404", "time": 7627747, "featuredRunMedia": null, "reactionVideos": [], @@ -8049,7 +7993,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 49, + "teamId": "135399", "time": 7628796, "featuredRunMedia": null, "reactionVideos": [], @@ -8067,7 +8011,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 30, + "teamId": "135380", "time": 7665387, "featuredRunMedia": null, "reactionVideos": [], @@ -8085,7 +8029,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 30, + "teamId": "135380", "time": 7698306, "featuredRunMedia": null, "reactionVideos": [], @@ -8103,7 +8047,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 27, + "teamId": "135377", "time": 7715412, "featuredRunMedia": null, "reactionVideos": [], @@ -8121,7 +8065,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 54, + "teamId": "135404", "time": 7741138, "featuredRunMedia": null, "reactionVideos": [], @@ -8139,7 +8083,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "135369", "time": 7745022, "featuredRunMedia": null, "reactionVideos": [], @@ -8157,7 +8101,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 7763394, "featuredRunMedia": null, "reactionVideos": [], @@ -8175,7 +8119,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 27, + "teamId": "135377", "time": 7819677, "featuredRunMedia": null, "reactionVideos": [], @@ -8193,7 +8137,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 7895448, "featuredRunMedia": null, "reactionVideos": [], @@ -8211,7 +8155,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 30, + "teamId": "135380", "time": 7900740, "featuredRunMedia": null, "reactionVideos": [], @@ -8229,7 +8173,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 43, + "teamId": "135393", "time": 7913284, "featuredRunMedia": null, "reactionVideos": [], @@ -8247,7 +8191,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 7926568, "featuredRunMedia": null, "reactionVideos": [], @@ -8265,7 +8209,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 43, + "teamId": "135393", "time": 7944924, "featuredRunMedia": null, "reactionVideos": [], @@ -8283,7 +8227,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 7956668, "featuredRunMedia": null, "reactionVideos": [], @@ -8301,7 +8245,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 7958655, "featuredRunMedia": null, "reactionVideos": [], @@ -8319,7 +8263,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 7963954, "featuredRunMedia": null, "reactionVideos": [], @@ -8337,7 +8281,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 9, + "teamId": "135359", "time": 7970749, "featuredRunMedia": null, "reactionVideos": [], @@ -8355,7 +8299,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 7974441, "featuredRunMedia": null, "reactionVideos": [], @@ -8373,7 +8317,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 29, + "teamId": "135379", "time": 7979078, "featuredRunMedia": null, "reactionVideos": [], @@ -8391,7 +8335,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 15, + "teamId": "135365", "time": 7983172, "featuredRunMedia": null, "reactionVideos": [], @@ -8409,7 +8353,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 7996177, "featuredRunMedia": null, "reactionVideos": [], @@ -8427,7 +8371,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8010052, "featuredRunMedia": null, "reactionVideos": [], @@ -8445,7 +8389,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 30, + "teamId": "135380", "time": 8018083, "featuredRunMedia": null, "reactionVideos": [], @@ -8463,7 +8407,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8027675, "featuredRunMedia": null, "reactionVideos": [], @@ -8481,7 +8425,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "135351", "time": 8031060, "featuredRunMedia": null, "reactionVideos": [], @@ -8499,7 +8443,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8043224, "featuredRunMedia": null, "reactionVideos": [], @@ -8517,7 +8461,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "135369", "time": 8049124, "featuredRunMedia": null, "reactionVideos": [], @@ -8535,7 +8479,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 15, + "teamId": "135365", "time": 8056838, "featuredRunMedia": null, "reactionVideos": [], @@ -8553,7 +8497,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8070188, "featuredRunMedia": null, "reactionVideos": [], @@ -8571,7 +8515,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 8072994, "featuredRunMedia": null, "reactionVideos": [], @@ -8589,7 +8533,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8086696, "featuredRunMedia": null, "reactionVideos": [], @@ -8607,7 +8551,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 29, + "teamId": "135379", "time": 8102187, "featuredRunMedia": null, "reactionVideos": [], @@ -8625,7 +8569,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 8117178, "featuredRunMedia": null, "reactionVideos": [], @@ -8643,7 +8587,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 9, + "teamId": "135359", "time": 8118201, "featuredRunMedia": null, "reactionVideos": [], @@ -8661,7 +8605,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 15, + "teamId": "135365", "time": 8120297, "featuredRunMedia": null, "reactionVideos": [], @@ -8679,7 +8623,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 35, + "teamId": "135385", "time": 8122776, "featuredRunMedia": null, "reactionVideos": [], @@ -8697,7 +8641,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 8127675, "featuredRunMedia": null, "reactionVideos": [], @@ -8715,7 +8659,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8138804, "featuredRunMedia": null, "reactionVideos": [], @@ -8733,7 +8677,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 49, + "teamId": "135399", "time": 8164672, "featuredRunMedia": null, "reactionVideos": [], @@ -8751,7 +8695,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 29, + "teamId": "135379", "time": 8170703, "featuredRunMedia": null, "reactionVideos": [], @@ -8769,7 +8713,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8172352, "featuredRunMedia": null, "reactionVideos": [], @@ -8787,7 +8731,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 35, + "teamId": "135385", "time": 8174705, "featuredRunMedia": null, "reactionVideos": [], @@ -8805,7 +8749,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8180239, "featuredRunMedia": null, "reactionVideos": [], @@ -8823,7 +8767,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 32, + "teamId": "135382", "time": 8181555, "featuredRunMedia": null, "reactionVideos": [], @@ -8841,7 +8785,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 16, + "teamId": "135366", "time": 8189820, "featuredRunMedia": null, "reactionVideos": [], @@ -8859,7 +8803,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 8198639, "featuredRunMedia": null, "reactionVideos": [], @@ -8877,7 +8821,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 8234236, "featuredRunMedia": null, "reactionVideos": [], @@ -8895,7 +8839,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 8243773, "featuredRunMedia": null, "reactionVideos": [], @@ -8913,7 +8857,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 32, + "teamId": "135382", "time": 8244170, "featuredRunMedia": null, "reactionVideos": [], @@ -8931,7 +8875,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 8248478, "featuredRunMedia": null, "reactionVideos": [], @@ -8949,7 +8893,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 35, + "teamId": "135385", "time": 8273965, "featuredRunMedia": null, "reactionVideos": [], @@ -8967,7 +8911,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "135369", "time": 8321210, "featuredRunMedia": null, "reactionVideos": [], @@ -8985,7 +8929,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8328787, "featuredRunMedia": null, "reactionVideos": [], @@ -9003,7 +8947,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 50, + "teamId": "135400", "time": 8343897, "featuredRunMedia": null, "reactionVideos": [], @@ -9021,7 +8965,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 10, + "teamId": "135360", "time": 8361749, "featuredRunMedia": null, "reactionVideos": [], @@ -9039,7 +8983,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 8378524, "featuredRunMedia": null, "reactionVideos": [], @@ -9057,7 +9001,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 8442073, "featuredRunMedia": null, "reactionVideos": [], @@ -9075,7 +9019,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 49, + "teamId": "135399", "time": 8451939, "featuredRunMedia": null, "reactionVideos": [], @@ -9093,7 +9037,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 8477558, "featuredRunMedia": null, "reactionVideos": [], @@ -9111,7 +9055,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 8484492, "featuredRunMedia": null, "reactionVideos": [], @@ -9129,7 +9073,7 @@ "isFirstToSolveRun": false }, "problemId": "5", - "teamId": 16, + "teamId": "135366", "time": 8492735, "featuredRunMedia": null, "reactionVideos": [], @@ -9147,7 +9091,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 10, + "teamId": "135360", "time": 8536670, "featuredRunMedia": null, "reactionVideos": [], @@ -9165,7 +9109,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 8555699, "featuredRunMedia": null, "reactionVideos": [], @@ -9183,7 +9127,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 35, + "teamId": "135385", "time": 8557152, "featuredRunMedia": null, "reactionVideos": [], @@ -9201,7 +9145,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8566684, "featuredRunMedia": null, "reactionVideos": [], @@ -9219,7 +9163,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 17, + "teamId": "135367", "time": 8599787, "featuredRunMedia": null, "reactionVideos": [], @@ -9237,7 +9181,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 2, + "teamId": "135352", "time": 8613624, "featuredRunMedia": null, "reactionVideos": [], @@ -9255,7 +9199,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 8619438, "featuredRunMedia": null, "reactionVideos": [], @@ -9273,7 +9217,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8675244, "featuredRunMedia": null, "reactionVideos": [], @@ -9291,7 +9235,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "135405", "time": 8687451, "featuredRunMedia": null, "reactionVideos": [], @@ -9309,7 +9253,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "135386", "time": 8699182, "featuredRunMedia": null, "reactionVideos": [], @@ -9327,7 +9271,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8730466, "featuredRunMedia": null, "reactionVideos": [], @@ -9345,7 +9289,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 49, + "teamId": "135399", "time": 8760992, "featuredRunMedia": null, "reactionVideos": [], @@ -9363,7 +9307,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 8761018, "featuredRunMedia": null, "reactionVideos": [], @@ -9381,7 +9325,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 8768617, "featuredRunMedia": null, "reactionVideos": [], @@ -9399,7 +9343,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 8777274, "featuredRunMedia": null, "reactionVideos": [], @@ -9417,7 +9361,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8794164, "featuredRunMedia": null, "reactionVideos": [], @@ -9435,7 +9379,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 8821070, "featuredRunMedia": null, "reactionVideos": [], @@ -9453,7 +9397,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 17, + "teamId": "135367", "time": 8839652, "featuredRunMedia": null, "reactionVideos": [], @@ -9471,7 +9415,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 28, + "teamId": "135378", "time": 8839712, "featuredRunMedia": null, "reactionVideos": [], @@ -9489,7 +9433,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8842501, "featuredRunMedia": null, "reactionVideos": [], @@ -9507,7 +9451,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 45, + "teamId": "135395", "time": 8858967, "featuredRunMedia": null, "reactionVideos": [], @@ -9525,7 +9469,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 8868438, "featuredRunMedia": null, "reactionVideos": [], @@ -9543,7 +9487,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 8877978, "featuredRunMedia": null, "reactionVideos": [], @@ -9561,7 +9505,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 8879667, "featuredRunMedia": null, "reactionVideos": [], @@ -9579,7 +9523,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 45, + "teamId": "135395", "time": 8891671, "featuredRunMedia": null, "reactionVideos": [], @@ -9597,7 +9541,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 8894293, "featuredRunMedia": null, "reactionVideos": [], @@ -9615,7 +9559,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 8907273, "featuredRunMedia": null, "reactionVideos": [], @@ -9633,7 +9577,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 8911374, "featuredRunMedia": null, "reactionVideos": [], @@ -9651,7 +9595,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 8921721, "featuredRunMedia": null, "reactionVideos": [], @@ -9669,7 +9613,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 8930760, "featuredRunMedia": null, "reactionVideos": [], @@ -9687,7 +9631,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 8932044, "featuredRunMedia": null, "reactionVideos": [], @@ -9705,7 +9649,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 39, + "teamId": "135389", "time": 8973515, "featuredRunMedia": null, "reactionVideos": [], @@ -9723,7 +9667,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 8980938, "featuredRunMedia": null, "reactionVideos": [], @@ -9741,7 +9685,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 9026950, "featuredRunMedia": null, "reactionVideos": [], @@ -9759,7 +9703,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 9034107, "featuredRunMedia": null, "reactionVideos": [], @@ -9777,7 +9721,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 9043391, "featuredRunMedia": null, "reactionVideos": [], @@ -9795,7 +9739,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 45, + "teamId": "135395", "time": 9046002, "featuredRunMedia": null, "reactionVideos": [], @@ -9813,7 +9757,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 9063997, "featuredRunMedia": null, "reactionVideos": [], @@ -9831,7 +9775,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "135402", "time": 9072436, "featuredRunMedia": null, "reactionVideos": [], @@ -9849,7 +9793,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "135397", "time": 9073336, "featuredRunMedia": null, "reactionVideos": [], @@ -9867,7 +9811,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 14, + "teamId": "135364", "time": 9101257, "featuredRunMedia": null, "reactionVideos": [], @@ -9885,7 +9829,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 28, + "teamId": "135378", "time": 9115483, "featuredRunMedia": null, "reactionVideos": [], @@ -9903,7 +9847,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9118060, "featuredRunMedia": null, "reactionVideos": [], @@ -9921,7 +9865,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 14, + "teamId": "135364", "time": 9121790, "featuredRunMedia": null, "reactionVideos": [], @@ -9939,7 +9883,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 9130739, "featuredRunMedia": null, "reactionVideos": [], @@ -9957,7 +9901,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9145649, "featuredRunMedia": null, "reactionVideos": [], @@ -9975,7 +9919,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 9162692, "featuredRunMedia": null, "reactionVideos": [], @@ -9993,7 +9937,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 9174313, "featuredRunMedia": null, "reactionVideos": [], @@ -10011,7 +9955,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 9191405, "featuredRunMedia": null, "reactionVideos": [], @@ -10029,7 +9973,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 27, + "teamId": "135377", "time": 9211901, "featuredRunMedia": null, "reactionVideos": [], @@ -10047,7 +9991,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9246197, "featuredRunMedia": null, "reactionVideos": [], @@ -10065,7 +10009,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 28, + "teamId": "135378", "time": 9247385, "featuredRunMedia": null, "reactionVideos": [], @@ -10083,7 +10027,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 9250257, "featuredRunMedia": null, "reactionVideos": [], @@ -10101,7 +10045,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 9250726, "featuredRunMedia": null, "reactionVideos": [], @@ -10119,7 +10063,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 9261409, "featuredRunMedia": null, "reactionVideos": [], @@ -10137,7 +10081,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "135359", "time": 9270270, "featuredRunMedia": null, "reactionVideos": [], @@ -10155,7 +10099,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 9285317, "featuredRunMedia": null, "reactionVideos": [], @@ -10173,7 +10117,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 18, + "teamId": "135368", "time": 9300673, "featuredRunMedia": null, "reactionVideos": [], @@ -10191,7 +10135,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 53, + "teamId": "135403", "time": 9312309, "featuredRunMedia": null, "reactionVideos": [], @@ -10209,7 +10153,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 9313946, "featuredRunMedia": null, "reactionVideos": [], @@ -10227,7 +10171,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 9337281, "featuredRunMedia": null, "reactionVideos": [], @@ -10245,7 +10189,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "135359", "time": 9355154, "featuredRunMedia": null, "reactionVideos": [], @@ -10263,7 +10207,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9384365, "featuredRunMedia": null, "reactionVideos": [], @@ -10281,7 +10225,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9398436, "featuredRunMedia": null, "reactionVideos": [], @@ -10299,7 +10243,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 25, + "teamId": "135375", "time": 9414161, "featuredRunMedia": null, "reactionVideos": [], @@ -10317,7 +10261,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 9438734, "featuredRunMedia": null, "reactionVideos": [], @@ -10335,7 +10279,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "135367", "time": 9453964, "featuredRunMedia": null, "reactionVideos": [], @@ -10353,7 +10297,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 3, + "teamId": "135353", "time": 9474603, "featuredRunMedia": null, "reactionVideos": [], @@ -10371,7 +10315,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 9494195, "featuredRunMedia": null, "reactionVideos": [], @@ -10389,7 +10333,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 25, + "teamId": "135375", "time": 9499683, "featuredRunMedia": null, "reactionVideos": [], @@ -10407,7 +10351,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 22, + "teamId": "135372", "time": 9509104, "featuredRunMedia": null, "reactionVideos": [], @@ -10425,7 +10369,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 9529582, "featuredRunMedia": null, "reactionVideos": [], @@ -10443,7 +10387,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 9556790, "featuredRunMedia": null, "reactionVideos": [], @@ -10461,7 +10405,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 32, + "teamId": "135382", "time": 9577808, "featuredRunMedia": null, "reactionVideos": [], @@ -10479,7 +10423,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 50, + "teamId": "135400", "time": 9588425, "featuredRunMedia": null, "reactionVideos": [], @@ -10497,7 +10441,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "135387", "time": 9622669, "featuredRunMedia": null, "reactionVideos": [], @@ -10515,7 +10459,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "135381", "time": 9626365, "featuredRunMedia": null, "reactionVideos": [], @@ -10533,7 +10477,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 14, + "teamId": "135364", "time": 9644744, "featuredRunMedia": null, "reactionVideos": [], @@ -10551,7 +10495,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 49, + "teamId": "135399", "time": 9668454, "featuredRunMedia": null, "reactionVideos": [], @@ -10569,7 +10513,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 9720920, "featuredRunMedia": null, "reactionVideos": [], @@ -10587,7 +10531,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 9767261, "featuredRunMedia": null, "reactionVideos": [], @@ -10605,7 +10549,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 9768258, "featuredRunMedia": null, "reactionVideos": [], @@ -10623,7 +10567,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "135369", "time": 9775222, "featuredRunMedia": null, "reactionVideos": [], @@ -10641,7 +10585,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 4, + "teamId": "135354", "time": 9781559, "featuredRunMedia": null, "reactionVideos": [], @@ -10659,7 +10603,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 27, + "teamId": "135377", "time": 9805201, "featuredRunMedia": null, "reactionVideos": [], @@ -10677,7 +10621,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 4, + "teamId": "135354", "time": 9827581, "featuredRunMedia": null, "reactionVideos": [], @@ -10695,7 +10639,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "135369", "time": 9830281, "featuredRunMedia": null, "reactionVideos": [], @@ -10713,7 +10657,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 25, + "teamId": "135375", "time": 9830438, "featuredRunMedia": null, "reactionVideos": [], @@ -10731,7 +10675,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 8, + "teamId": "135358", "time": 9843342, "featuredRunMedia": null, "reactionVideos": [], @@ -10749,7 +10693,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 54, + "teamId": "135404", "time": 9853842, "featuredRunMedia": null, "reactionVideos": [], @@ -10767,7 +10711,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "135372", "time": 9859659, "featuredRunMedia": null, "reactionVideos": [], @@ -10785,7 +10729,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "135383", "time": 9882436, "featuredRunMedia": null, "reactionVideos": [], @@ -10803,7 +10747,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 9, + "teamId": "135359", "time": 9905090, "featuredRunMedia": null, "reactionVideos": [], @@ -10821,7 +10765,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 4, + "teamId": "135354", "time": 9947589, "featuredRunMedia": null, "reactionVideos": [], @@ -10839,7 +10783,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 9977681, "featuredRunMedia": null, "reactionVideos": [], @@ -10857,7 +10801,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 9997171, "featuredRunMedia": null, "reactionVideos": [], @@ -10875,7 +10819,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "135384", "time": 10011084, "featuredRunMedia": null, "reactionVideos": [], @@ -10893,7 +10837,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 41, + "teamId": "135391", "time": 10086821, "featuredRunMedia": null, "reactionVideos": [], @@ -10911,7 +10855,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 10111908, "featuredRunMedia": null, "reactionVideos": [], @@ -10929,7 +10873,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10187865, "featuredRunMedia": null, "reactionVideos": [], @@ -10947,7 +10891,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 14, + "teamId": "135364", "time": 10223151, "featuredRunMedia": null, "reactionVideos": [], @@ -10965,7 +10909,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 10281546, "featuredRunMedia": null, "reactionVideos": [], @@ -10983,7 +10927,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 1, + "teamId": "135351", "time": 10315433, "featuredRunMedia": null, "reactionVideos": [], @@ -11001,7 +10945,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 49, + "teamId": "135399", "time": 10390740, "featuredRunMedia": null, "reactionVideos": [], @@ -11019,7 +10963,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "135368", "time": 10398106, "featuredRunMedia": null, "reactionVideos": [], @@ -11037,7 +10981,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 1, + "teamId": "135351", "time": 10406796, "featuredRunMedia": null, "reactionVideos": [], @@ -11055,7 +10999,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 10419762, "featuredRunMedia": null, "reactionVideos": [], @@ -11073,7 +11017,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "135381", "time": 10435346, "featuredRunMedia": null, "reactionVideos": [], @@ -11091,7 +11035,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 10447756, "featuredRunMedia": null, "reactionVideos": [], @@ -11109,7 +11053,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 53, + "teamId": "135403", "time": 10483070, "featuredRunMedia": null, "reactionVideos": [], @@ -11127,7 +11071,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10508834, "featuredRunMedia": null, "reactionVideos": [], @@ -11145,7 +11089,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 10513178, "featuredRunMedia": null, "reactionVideos": [], @@ -11163,7 +11107,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 29, + "teamId": "135379", "time": 10513704, "featuredRunMedia": null, "reactionVideos": [], @@ -11181,7 +11125,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "135368", "time": 10521020, "featuredRunMedia": null, "reactionVideos": [], @@ -11199,7 +11143,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 10540888, "featuredRunMedia": null, "reactionVideos": [], @@ -11217,7 +11161,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 20, + "teamId": "135370", "time": 10574908, "featuredRunMedia": null, "reactionVideos": [], @@ -11235,7 +11179,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "135360", "time": 10583224, "featuredRunMedia": null, "reactionVideos": [], @@ -11253,7 +11197,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10586615, "featuredRunMedia": null, "reactionVideos": [], @@ -11271,7 +11215,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 10591569, "featuredRunMedia": null, "reactionVideos": [], @@ -11289,7 +11233,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 35, + "teamId": "135385", "time": 10615338, "featuredRunMedia": null, "reactionVideos": [], @@ -11307,7 +11251,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 10622796, "featuredRunMedia": null, "reactionVideos": [], @@ -11325,7 +11269,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 10633827, "featuredRunMedia": null, "reactionVideos": [], @@ -11343,7 +11287,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 23, + "teamId": "135373", "time": 10679765, "featuredRunMedia": null, "reactionVideos": [], @@ -11361,7 +11305,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10702002, "featuredRunMedia": null, "reactionVideos": [], @@ -11379,7 +11323,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "135383", "time": 10707226, "featuredRunMedia": null, "reactionVideos": [], @@ -11397,7 +11341,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 10786930, "featuredRunMedia": null, "reactionVideos": [], @@ -11415,7 +11359,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 29, + "teamId": "135379", "time": 10805653, "featuredRunMedia": null, "reactionVideos": [], @@ -11433,7 +11377,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10813103, "featuredRunMedia": null, "reactionVideos": [], @@ -11451,7 +11395,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 10825477, "featuredRunMedia": null, "reactionVideos": [], @@ -11469,7 +11413,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "135403", "time": 10843786, "featuredRunMedia": null, "reactionVideos": [], @@ -11487,7 +11431,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 10844721, "featuredRunMedia": null, "reactionVideos": [], @@ -11505,7 +11449,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 10869577, "featuredRunMedia": null, "reactionVideos": [], @@ -11523,7 +11467,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "135379", "time": 10911685, "featuredRunMedia": null, "reactionVideos": [], @@ -11541,7 +11485,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 10922247, "featuredRunMedia": null, "reactionVideos": [], @@ -11559,7 +11503,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 10922626, "featuredRunMedia": null, "reactionVideos": [], @@ -11577,7 +11521,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 10951956, "featuredRunMedia": null, "reactionVideos": [], @@ -11595,7 +11539,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 10974042, "featuredRunMedia": null, "reactionVideos": [], @@ -11613,7 +11557,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "135391", "time": 11004850, "featuredRunMedia": null, "reactionVideos": [], @@ -11631,7 +11575,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 11005425, "featuredRunMedia": null, "reactionVideos": [], @@ -11649,7 +11593,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 54, + "teamId": "135404", "time": 11011100, "featuredRunMedia": null, "reactionVideos": [], @@ -11667,7 +11611,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 11025468, "featuredRunMedia": null, "reactionVideos": [], @@ -11685,7 +11629,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 11025825, "featuredRunMedia": null, "reactionVideos": [], @@ -11703,7 +11647,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 8, + "teamId": "135358", "time": 11038787, "featuredRunMedia": null, "reactionVideos": [], @@ -11721,7 +11665,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 11046105, "featuredRunMedia": null, "reactionVideos": [], @@ -11739,7 +11683,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 45, + "teamId": "135395", "time": 11086805, "featuredRunMedia": null, "reactionVideos": [], @@ -11757,7 +11701,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "135400", "time": 11151281, "featuredRunMedia": null, "reactionVideos": [], @@ -11775,7 +11719,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 20, + "teamId": "135370", "time": 11160411, "featuredRunMedia": null, "reactionVideos": [], @@ -11793,7 +11737,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 11184054, "featuredRunMedia": null, "reactionVideos": [], @@ -11811,7 +11755,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 11184908, "featuredRunMedia": null, "reactionVideos": [], @@ -11829,7 +11773,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "135364", "time": 11185655, "featuredRunMedia": null, "reactionVideos": [], @@ -11847,7 +11791,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 26, + "teamId": "135376", "time": 11204050, "featuredRunMedia": null, "reactionVideos": [], @@ -11865,7 +11809,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 11223817, "featuredRunMedia": null, "reactionVideos": [], @@ -11883,7 +11827,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 26, + "teamId": "135376", "time": 11237966, "featuredRunMedia": null, "reactionVideos": [], @@ -11901,7 +11845,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "135393", "time": 11263099, "featuredRunMedia": null, "reactionVideos": [], @@ -11919,7 +11863,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 5, + "teamId": "135355", "time": 11291034, "featuredRunMedia": null, "reactionVideos": [], @@ -11937,7 +11881,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 30, + "teamId": "135380", "time": 11301567, "featuredRunMedia": null, "reactionVideos": [], @@ -11955,7 +11899,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 11355790, "featuredRunMedia": null, "reactionVideos": [], @@ -11973,7 +11917,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 11364058, "featuredRunMedia": null, "reactionVideos": [], @@ -11991,7 +11935,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "135366", "time": 11366677, "featuredRunMedia": null, "reactionVideos": [], @@ -12009,7 +11953,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 5, + "teamId": "135355", "time": 11430541, "featuredRunMedia": null, "reactionVideos": [], @@ -12027,7 +11971,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 39, + "teamId": "135389", "time": 11431204, "featuredRunMedia": null, "reactionVideos": [], @@ -12045,7 +11989,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "135366", "time": 11470515, "featuredRunMedia": null, "reactionVideos": [], @@ -12063,7 +12007,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 38, + "teamId": "135388", "time": 11486600, "featuredRunMedia": null, "reactionVideos": [], @@ -12081,7 +12025,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 38, + "teamId": "135388", "time": 11513980, "featuredRunMedia": null, "reactionVideos": [], @@ -12099,7 +12043,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 11562025, "featuredRunMedia": null, "reactionVideos": [], @@ -12117,7 +12061,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "135386", "time": 11562274, "featuredRunMedia": null, "reactionVideos": [], @@ -12135,7 +12079,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 11594098, "featuredRunMedia": null, "reactionVideos": [], @@ -12153,7 +12097,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 11599527, "featuredRunMedia": null, "reactionVideos": [], @@ -12171,7 +12115,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 11688631, "featuredRunMedia": null, "reactionVideos": [], @@ -12189,7 +12133,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 5, + "teamId": "135355", "time": 11693296, "featuredRunMedia": null, "reactionVideos": [], @@ -12207,7 +12151,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 11706009, "featuredRunMedia": null, "reactionVideos": [], @@ -12225,7 +12169,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "135386", "time": 11711947, "featuredRunMedia": null, "reactionVideos": [], @@ -12243,7 +12187,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 11719524, "featuredRunMedia": null, "reactionVideos": [], @@ -12261,7 +12205,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 30, + "teamId": "135380", "time": 11728766, "featuredRunMedia": null, "reactionVideos": [], @@ -12279,7 +12223,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 15, + "teamId": "135365", "time": 11729700, "featuredRunMedia": null, "reactionVideos": [], @@ -12297,7 +12241,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 2, + "teamId": "135352", "time": 11733615, "featuredRunMedia": null, "reactionVideos": [], @@ -12315,7 +12259,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "135383", "time": 11747971, "featuredRunMedia": null, "reactionVideos": [], @@ -12333,7 +12277,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 0, + "teamId": "135350", "time": 11756339, "featuredRunMedia": null, "reactionVideos": [], @@ -12351,7 +12295,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 30, + "teamId": "135380", "time": 11761644, "featuredRunMedia": null, "reactionVideos": [], @@ -12369,7 +12313,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 11799914, "featuredRunMedia": null, "reactionVideos": [], @@ -12387,7 +12331,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 0, + "teamId": "135350", "time": 11800053, "featuredRunMedia": null, "reactionVideos": [], @@ -12405,7 +12349,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 24, + "teamId": "135374", "time": 11848197, "featuredRunMedia": null, "reactionVideos": [], @@ -12423,7 +12367,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 38, + "teamId": "135388", "time": 11901239, "featuredRunMedia": null, "reactionVideos": [], @@ -12441,7 +12385,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 25, + "teamId": "135375", "time": 11934550, "featuredRunMedia": null, "reactionVideos": [], @@ -12459,7 +12403,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 5, + "teamId": "135355", "time": 11952916, "featuredRunMedia": null, "reactionVideos": [], @@ -12477,7 +12421,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "135388", "time": 12038785, "featuredRunMedia": null, "reactionVideos": [], @@ -12495,7 +12439,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 28, + "teamId": "135378", "time": 12050921, "featuredRunMedia": null, "reactionVideos": [], @@ -12513,7 +12457,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 12066105, "featuredRunMedia": null, "reactionVideos": [], @@ -12531,7 +12475,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 19, + "teamId": "135369", "time": 12078422, "featuredRunMedia": null, "reactionVideos": [], @@ -12549,7 +12493,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 45, + "teamId": "135395", "time": 12088548, "featuredRunMedia": null, "reactionVideos": [], @@ -12567,7 +12511,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 12099355, "featuredRunMedia": null, "reactionVideos": [], @@ -12585,7 +12529,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "135402", "time": 12149461, "featuredRunMedia": null, "reactionVideos": [], @@ -12603,7 +12547,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 12159046, "featuredRunMedia": null, "reactionVideos": [], @@ -12621,7 +12565,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 12169819, "featuredRunMedia": null, "reactionVideos": [], @@ -12639,7 +12583,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 25, + "teamId": "135375", "time": 12194765, "featuredRunMedia": null, "reactionVideos": [], @@ -12657,7 +12601,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 48, + "teamId": "135398", "time": 12222138, "featuredRunMedia": null, "reactionVideos": [], @@ -12675,7 +12619,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 12244650, "featuredRunMedia": null, "reactionVideos": [], @@ -12693,7 +12637,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 12244715, "featuredRunMedia": null, "reactionVideos": [], @@ -12711,7 +12655,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 30, + "teamId": "135380", "time": 12256528, "featuredRunMedia": null, "reactionVideos": [], @@ -12729,7 +12673,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "135395", "time": 12261377, "featuredRunMedia": null, "reactionVideos": [], @@ -12747,7 +12691,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 19, + "teamId": "135369", "time": 12278682, "featuredRunMedia": null, "reactionVideos": [], @@ -12765,7 +12709,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 12394008, "featuredRunMedia": null, "reactionVideos": [], @@ -12783,7 +12727,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 12403468, "featuredRunMedia": null, "reactionVideos": [], @@ -12801,7 +12745,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 25, + "teamId": "135375", "time": 12450885, "featuredRunMedia": null, "reactionVideos": [], @@ -12819,7 +12763,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 12475563, "featuredRunMedia": null, "reactionVideos": [], @@ -12837,7 +12781,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "135368", "time": 12491209, "featuredRunMedia": null, "reactionVideos": [], @@ -12855,7 +12799,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 12500328, "featuredRunMedia": null, "reactionVideos": [], @@ -12873,7 +12817,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 31, + "teamId": "135381", "time": 12505384, "featuredRunMedia": null, "reactionVideos": [], @@ -12891,7 +12835,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 49, + "teamId": "135399", "time": 12524325, "featuredRunMedia": null, "reactionVideos": [], @@ -12909,7 +12853,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 12525777, "featuredRunMedia": null, "reactionVideos": [], @@ -12927,7 +12871,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 12536797, "featuredRunMedia": null, "reactionVideos": [], @@ -12945,7 +12889,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 7, + "teamId": "135357", "time": 12537484, "featuredRunMedia": null, "reactionVideos": [], @@ -12963,7 +12907,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 0, + "teamId": "135350", "time": 12565381, "featuredRunMedia": null, "reactionVideos": [], @@ -12981,7 +12925,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 12565971, "featuredRunMedia": null, "reactionVideos": [], @@ -12999,7 +12943,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "135368", "time": 12589229, "featuredRunMedia": null, "reactionVideos": [], @@ -13017,7 +12961,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 12618641, "featuredRunMedia": null, "reactionVideos": [], @@ -13035,7 +12979,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 12635729, "featuredRunMedia": null, "reactionVideos": [], @@ -13053,7 +12997,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 25, + "teamId": "135375", "time": 12647160, "featuredRunMedia": null, "reactionVideos": [], @@ -13071,7 +13015,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 12715506, "featuredRunMedia": null, "reactionVideos": [], @@ -13089,7 +13033,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 12719193, "featuredRunMedia": null, "reactionVideos": [], @@ -13107,7 +13051,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 12748044, "featuredRunMedia": null, "reactionVideos": [], @@ -13125,7 +13069,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 12766708, "featuredRunMedia": null, "reactionVideos": [], @@ -13143,7 +13087,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 34, + "teamId": "135384", "time": 12773481, "featuredRunMedia": null, "reactionVideos": [], @@ -13161,7 +13105,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "135382", "time": 12779482, "featuredRunMedia": null, "reactionVideos": [], @@ -13179,7 +13123,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 40, + "teamId": "135390", "time": 12912588, "featuredRunMedia": null, "reactionVideos": [], @@ -13197,7 +13141,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 31, + "teamId": "135381", "time": 12917352, "featuredRunMedia": null, "reactionVideos": [], @@ -13215,7 +13159,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 12968187, "featuredRunMedia": null, "reactionVideos": [], @@ -13233,7 +13177,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 12970163, "featuredRunMedia": null, "reactionVideos": [], @@ -13251,7 +13195,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 24, + "teamId": "135374", "time": 13012735, "featuredRunMedia": null, "reactionVideos": [], @@ -13269,7 +13213,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13020749, "featuredRunMedia": null, "reactionVideos": [], @@ -13287,7 +13231,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 20, + "teamId": "135370", "time": 13020917, "featuredRunMedia": null, "reactionVideos": [], @@ -13305,7 +13249,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 20, + "teamId": "135370", "time": 13059780, "featuredRunMedia": null, "reactionVideos": [], @@ -13323,7 +13267,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "135394", "time": 13067593, "featuredRunMedia": null, "reactionVideos": [], @@ -13341,7 +13285,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 27, + "teamId": "135377", "time": 13073773, "featuredRunMedia": null, "reactionVideos": [], @@ -13359,7 +13303,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 13079331, "featuredRunMedia": null, "reactionVideos": [], @@ -13377,7 +13321,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 13093931, "featuredRunMedia": null, "reactionVideos": [], @@ -13395,7 +13339,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 24, + "teamId": "135374", "time": 13103991, "featuredRunMedia": null, "reactionVideos": [], @@ -13413,7 +13357,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13106884, "featuredRunMedia": null, "reactionVideos": [], @@ -13431,7 +13375,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 11, + "teamId": "135361", "time": 13107350, "featuredRunMedia": null, "reactionVideos": [], @@ -13449,7 +13393,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "135394", "time": 13112466, "featuredRunMedia": null, "reactionVideos": [], @@ -13467,7 +13411,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 13123488, "featuredRunMedia": null, "reactionVideos": [], @@ -13485,7 +13429,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 27, + "teamId": "135377", "time": 13136327, "featuredRunMedia": null, "reactionVideos": [], @@ -13503,7 +13447,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13154746, "featuredRunMedia": null, "reactionVideos": [], @@ -13521,7 +13465,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 13178399, "featuredRunMedia": null, "reactionVideos": [], @@ -13539,7 +13483,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 13233582, "featuredRunMedia": null, "reactionVideos": [], @@ -13557,7 +13501,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 13252898, "featuredRunMedia": null, "reactionVideos": [], @@ -13575,7 +13519,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 13269303, "featuredRunMedia": null, "reactionVideos": [], @@ -13593,7 +13537,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 40, + "teamId": "135390", "time": 13332364, "featuredRunMedia": null, "reactionVideos": [], @@ -13611,7 +13555,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13341949, "featuredRunMedia": null, "reactionVideos": [], @@ -13629,7 +13573,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 13384977, "featuredRunMedia": null, "reactionVideos": [], @@ -13647,7 +13591,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 13408491, "featuredRunMedia": null, "reactionVideos": [], @@ -13665,7 +13609,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 13415688, "featuredRunMedia": null, "reactionVideos": [], @@ -13683,7 +13627,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13430547, "featuredRunMedia": null, "reactionVideos": [], @@ -13701,7 +13645,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 13465224, "featuredRunMedia": null, "reactionVideos": [], @@ -13719,7 +13663,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 13499651, "featuredRunMedia": null, "reactionVideos": [], @@ -13737,7 +13681,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "135389", "time": 13501623, "featuredRunMedia": null, "reactionVideos": [], @@ -13755,7 +13699,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 13529925, "featuredRunMedia": null, "reactionVideos": [], @@ -13773,7 +13717,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "135389", "time": 13530941, "featuredRunMedia": null, "reactionVideos": [], @@ -13791,7 +13735,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13576386, "featuredRunMedia": null, "reactionVideos": [], @@ -13809,7 +13753,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 55, + "teamId": "135405", "time": 13640057, "featuredRunMedia": null, "reactionVideos": [], @@ -13827,7 +13771,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 13648474, "featuredRunMedia": null, "reactionVideos": [], @@ -13845,7 +13789,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "135365", "time": 13667543, "featuredRunMedia": null, "reactionVideos": [], @@ -13863,7 +13807,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13676575, "featuredRunMedia": null, "reactionVideos": [], @@ -13881,7 +13825,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "135378", "time": 13691540, "featuredRunMedia": null, "reactionVideos": [], @@ -13899,7 +13843,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13696718, "featuredRunMedia": null, "reactionVideos": [], @@ -13917,7 +13861,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 13706198, "featuredRunMedia": null, "reactionVideos": [], @@ -13935,7 +13879,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13722746, "featuredRunMedia": null, "reactionVideos": [], @@ -13953,7 +13897,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "135380", "time": 13725708, "featuredRunMedia": null, "reactionVideos": [], @@ -13971,7 +13915,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 24, + "teamId": "135374", "time": 13735598, "featuredRunMedia": null, "reactionVideos": [], @@ -13989,7 +13933,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13754799, "featuredRunMedia": null, "reactionVideos": [], @@ -14007,7 +13951,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 13775226, "featuredRunMedia": null, "reactionVideos": [], @@ -14025,7 +13969,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13782709, "featuredRunMedia": null, "reactionVideos": [], @@ -14043,7 +13987,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 13787889, "featuredRunMedia": null, "reactionVideos": [], @@ -14061,7 +14005,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 13805871, "featuredRunMedia": null, "reactionVideos": [], @@ -14079,7 +14023,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 13819023, "featuredRunMedia": null, "reactionVideos": [], @@ -14097,7 +14041,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 13856954, "featuredRunMedia": null, "reactionVideos": [], @@ -14115,7 +14059,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 13973672, "featuredRunMedia": null, "reactionVideos": [], @@ -14133,7 +14077,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 17, + "teamId": "135367", "time": 14039213, "featuredRunMedia": null, "reactionVideos": [], @@ -14151,7 +14095,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14052941, "featuredRunMedia": null, "reactionVideos": [], @@ -14169,7 +14113,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "135352", "time": 14066816, "featuredRunMedia": null, "reactionVideos": [], @@ -14187,7 +14131,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 9, + "teamId": "135359", "time": 14066958, "featuredRunMedia": null, "reactionVideos": [], @@ -14205,7 +14149,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 14152056, "featuredRunMedia": null, "reactionVideos": [], @@ -14223,7 +14167,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 27, + "teamId": "135377", "time": 14156644, "featuredRunMedia": null, "reactionVideos": [], @@ -14241,7 +14185,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 26, + "teamId": "135376", "time": 14163125, "featuredRunMedia": null, "reactionVideos": [], @@ -14259,7 +14203,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 14163375, "featuredRunMedia": null, "reactionVideos": [], @@ -14277,7 +14221,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 14176861, "featuredRunMedia": null, "reactionVideos": [], @@ -14295,7 +14239,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 35, + "teamId": "135385", "time": 14178579, "featuredRunMedia": null, "reactionVideos": [], @@ -14313,7 +14257,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 14189310, "featuredRunMedia": null, "reactionVideos": [], @@ -14331,7 +14275,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 14195565, "featuredRunMedia": null, "reactionVideos": [], @@ -14349,7 +14293,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 14198072, "featuredRunMedia": null, "reactionVideos": [], @@ -14367,7 +14311,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 26, + "teamId": "135376", "time": 14217047, "featuredRunMedia": null, "reactionVideos": [], @@ -14385,7 +14329,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "135403", "time": 14231112, "featuredRunMedia": null, "reactionVideos": [], @@ -14403,7 +14347,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 33, + "teamId": "135383", "time": 14234459, "featuredRunMedia": null, "reactionVideos": [], @@ -14421,7 +14365,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 14248272, "featuredRunMedia": null, "reactionVideos": [], @@ -14439,7 +14383,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 35, + "teamId": "135385", "time": 14259462, "featuredRunMedia": null, "reactionVideos": [], @@ -14457,7 +14401,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 14270354, "featuredRunMedia": null, "reactionVideos": [], @@ -14475,7 +14419,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 32, + "teamId": "135382", "time": 14338191, "featuredRunMedia": null, "reactionVideos": [], @@ -14493,7 +14437,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 14340999, "featuredRunMedia": null, "reactionVideos": [], @@ -14511,7 +14455,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 15, + "teamId": "135365", "time": 14367436, "featuredRunMedia": null, "reactionVideos": [], @@ -14529,7 +14473,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 14368013, "featuredRunMedia": null, "reactionVideos": [], @@ -14547,7 +14491,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 14390852, "featuredRunMedia": null, "reactionVideos": [], @@ -14565,7 +14509,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 14406578, "featuredRunMedia": null, "reactionVideos": [], @@ -14583,7 +14527,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 0, + "teamId": "135350", "time": 14427218, "featuredRunMedia": null, "reactionVideos": [], @@ -14601,7 +14545,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 14431364, "featuredRunMedia": null, "reactionVideos": [], @@ -14619,7 +14563,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14434477, "featuredRunMedia": null, "reactionVideos": [], @@ -14637,7 +14581,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 14451491, "featuredRunMedia": null, "reactionVideos": [], @@ -14655,7 +14599,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 14452836, "featuredRunMedia": null, "reactionVideos": [], @@ -14673,7 +14617,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 0, + "teamId": "135350", "time": 14477341, "featuredRunMedia": null, "reactionVideos": [], @@ -14691,7 +14635,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 0, + "teamId": "135350", "time": 14499328, "featuredRunMedia": null, "reactionVideos": [], @@ -14709,7 +14653,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 15, + "teamId": "135365", "time": 14531372, "featuredRunMedia": null, "reactionVideos": [], @@ -14727,7 +14671,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 35, + "teamId": "135385", "time": 14538970, "featuredRunMedia": null, "reactionVideos": [], @@ -14745,7 +14689,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14623531, "featuredRunMedia": null, "reactionVideos": [], @@ -14763,7 +14707,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 14639807, "featuredRunMedia": null, "reactionVideos": [], @@ -14781,7 +14725,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 32, + "teamId": "135382", "time": 14642936, "featuredRunMedia": null, "reactionVideos": [], @@ -14799,7 +14743,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14651262, "featuredRunMedia": null, "reactionVideos": [], @@ -14817,7 +14761,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 14652717, "featuredRunMedia": null, "reactionVideos": [], @@ -14835,7 +14779,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 48, + "teamId": "135398", "time": 14682862, "featuredRunMedia": null, "reactionVideos": [], @@ -14853,7 +14797,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 14711279, "featuredRunMedia": null, "reactionVideos": [], @@ -14871,7 +14815,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 14716148, "featuredRunMedia": null, "reactionVideos": [], @@ -14889,7 +14833,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 14716190, "featuredRunMedia": null, "reactionVideos": [], @@ -14907,7 +14851,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 14719028, "featuredRunMedia": null, "reactionVideos": [], @@ -14925,7 +14869,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "135363", "time": 14747626, "featuredRunMedia": null, "reactionVideos": [], @@ -14943,7 +14887,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 27, + "teamId": "135377", "time": 14765256, "featuredRunMedia": null, "reactionVideos": [], @@ -14961,7 +14905,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 49, + "teamId": "135399", "time": 14780916, "featuredRunMedia": null, "reactionVideos": [], @@ -14979,7 +14923,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 14802987, "featuredRunMedia": null, "reactionVideos": [], @@ -14997,7 +14941,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 3, + "teamId": "135353", "time": 14804482, "featuredRunMedia": null, "reactionVideos": [], @@ -15015,7 +14959,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 14817776, "featuredRunMedia": null, "reactionVideos": [], @@ -15033,7 +14977,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 27, + "teamId": "135377", "time": 14822826, "featuredRunMedia": null, "reactionVideos": [], @@ -15051,7 +14995,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 14887121, "featuredRunMedia": null, "reactionVideos": [], @@ -15069,7 +15013,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 31, + "teamId": "135381", "time": 14903880, "featuredRunMedia": null, "reactionVideos": [], @@ -15087,7 +15031,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14922418, "featuredRunMedia": null, "reactionVideos": [], @@ -15105,7 +15049,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 11, + "teamId": "135361", "time": 14928099, "featuredRunMedia": null, "reactionVideos": [], @@ -15123,7 +15067,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 14937351, "featuredRunMedia": null, "reactionVideos": [], @@ -15141,7 +15085,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 14941192, "featuredRunMedia": null, "reactionVideos": [], @@ -15159,7 +15103,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 14959883, "featuredRunMedia": null, "reactionVideos": [], @@ -15177,7 +15121,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 14975939, "featuredRunMedia": null, "reactionVideos": [], @@ -15195,7 +15139,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 14985516, "featuredRunMedia": null, "reactionVideos": [], @@ -15213,7 +15157,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 15003078, "featuredRunMedia": null, "reactionVideos": [], @@ -15231,7 +15175,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15039267, "featuredRunMedia": null, "reactionVideos": [], @@ -15249,7 +15193,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15046918, "featuredRunMedia": null, "reactionVideos": [], @@ -15267,7 +15211,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 15050043, "featuredRunMedia": null, "reactionVideos": [], @@ -15285,7 +15229,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 15056509, "featuredRunMedia": null, "reactionVideos": [], @@ -15303,7 +15247,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15086555, "featuredRunMedia": null, "reactionVideos": [], @@ -15321,7 +15265,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 20, + "teamId": "135370", "time": 15090604, "featuredRunMedia": null, "reactionVideos": [], @@ -15339,7 +15283,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "135355", "time": 15113375, "featuredRunMedia": null, "reactionVideos": [], @@ -15357,7 +15301,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "135395", "time": 15149023, "featuredRunMedia": null, "reactionVideos": [], @@ -15375,7 +15319,7 @@ "isFirstToSolveRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "135371", "time": 15179857, "featuredRunMedia": null, "reactionVideos": [], @@ -15393,7 +15337,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "135358", "time": 15221307, "featuredRunMedia": null, "reactionVideos": [], @@ -15411,7 +15355,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "135352", "time": 15232657, "featuredRunMedia": null, "reactionVideos": [], @@ -15429,7 +15373,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 15242153, "featuredRunMedia": null, "reactionVideos": [], @@ -15447,7 +15391,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 15246227, "featuredRunMedia": null, "reactionVideos": [], @@ -15465,7 +15409,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "135383", "time": 15255475, "featuredRunMedia": null, "reactionVideos": [], @@ -15483,7 +15427,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 19, + "teamId": "135369", "time": 15260450, "featuredRunMedia": null, "reactionVideos": [], @@ -15501,7 +15445,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "135383", "time": 15267700, "featuredRunMedia": null, "reactionVideos": [], @@ -15519,7 +15463,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15273221, "featuredRunMedia": null, "reactionVideos": [], @@ -15537,7 +15481,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 15282590, "featuredRunMedia": null, "reactionVideos": [], @@ -15555,7 +15499,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 15300905, "featuredRunMedia": null, "reactionVideos": [], @@ -15573,7 +15517,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 15308488, "featuredRunMedia": null, "reactionVideos": [], @@ -15591,7 +15535,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 15313350, "featuredRunMedia": null, "reactionVideos": [], @@ -15609,7 +15553,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "135352", "time": 15321229, "featuredRunMedia": null, "reactionVideos": [], @@ -15627,7 +15571,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 15323846, "featuredRunMedia": null, "reactionVideos": [], @@ -15645,7 +15589,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 15348380, "featuredRunMedia": null, "reactionVideos": [], @@ -15663,7 +15607,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 1, + "teamId": "135351", "time": 15354288, "featuredRunMedia": null, "reactionVideos": [], @@ -15681,7 +15625,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 15358772, "featuredRunMedia": null, "reactionVideos": [], @@ -15699,7 +15643,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "135364", "time": 15413008, "featuredRunMedia": null, "reactionVideos": [], @@ -15717,7 +15661,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 25, + "teamId": "135375", "time": 15466251, "featuredRunMedia": null, "reactionVideos": [], @@ -15735,7 +15679,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 15474293, "featuredRunMedia": null, "reactionVideos": [], @@ -15753,7 +15697,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 15474951, "featuredRunMedia": null, "reactionVideos": [], @@ -15771,7 +15715,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "135404", "time": 15475257, "featuredRunMedia": null, "reactionVideos": [], @@ -15789,7 +15733,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 15488257, "featuredRunMedia": null, "reactionVideos": [], @@ -15807,7 +15751,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 15491788, "featuredRunMedia": null, "reactionVideos": [], @@ -15825,7 +15769,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "135404", "time": 15499080, "featuredRunMedia": null, "reactionVideos": [], @@ -15843,7 +15787,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 1, + "teamId": "135351", "time": 15559910, "featuredRunMedia": null, "reactionVideos": [], @@ -15861,7 +15805,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 15775985, "featuredRunMedia": null, "reactionVideos": [], @@ -15879,7 +15823,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 19, + "teamId": "135369", "time": 15784343, "featuredRunMedia": null, "reactionVideos": [], @@ -15897,7 +15841,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "135377", "time": 15786940, "featuredRunMedia": null, "reactionVideos": [], @@ -15915,7 +15859,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "135352", "time": 15792148, "featuredRunMedia": null, "reactionVideos": [], @@ -15933,7 +15877,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 15801524, "featuredRunMedia": null, "reactionVideos": [], @@ -15951,7 +15895,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 43, + "teamId": "135393", "time": 15803088, "featuredRunMedia": null, "reactionVideos": [], @@ -15969,7 +15913,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 15809504, "featuredRunMedia": null, "reactionVideos": [], @@ -15987,7 +15931,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15814008, "featuredRunMedia": null, "reactionVideos": [], @@ -16005,7 +15949,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 15835292, "featuredRunMedia": null, "reactionVideos": [], @@ -16023,7 +15967,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 15847498, "featuredRunMedia": null, "reactionVideos": [], @@ -16041,7 +15985,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 15856741, "featuredRunMedia": null, "reactionVideos": [], @@ -16059,7 +16003,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 15860066, "featuredRunMedia": null, "reactionVideos": [], @@ -16077,7 +16021,7 @@ "isFirstToSolveRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "135357", "time": 15861824, "featuredRunMedia": null, "reactionVideos": [], @@ -16095,7 +16039,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 19, + "teamId": "135369", "time": 15930165, "featuredRunMedia": null, "reactionVideos": [], @@ -16113,7 +16057,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "135403", "time": 15957576, "featuredRunMedia": null, "reactionVideos": [], @@ -16131,7 +16075,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "135363", "time": 15967753, "featuredRunMedia": null, "reactionVideos": [], @@ -16149,7 +16093,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 19, + "teamId": "135369", "time": 15976531, "featuredRunMedia": null, "reactionVideos": [], @@ -16167,7 +16111,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16030919, "featuredRunMedia": null, "reactionVideos": [], @@ -16185,7 +16129,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 16051856, "featuredRunMedia": null, "reactionVideos": [], @@ -16203,7 +16147,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 47, + "teamId": "135397", "time": 16089143, "featuredRunMedia": null, "reactionVideos": [], @@ -16221,7 +16165,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16130713, "featuredRunMedia": null, "reactionVideos": [], @@ -16239,7 +16183,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "135368", "time": 16130968, "featuredRunMedia": null, "reactionVideos": [], @@ -16257,7 +16201,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "135368", "time": 16137838, "featuredRunMedia": null, "reactionVideos": [], @@ -16275,7 +16219,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16161557, "featuredRunMedia": null, "reactionVideos": [], @@ -16293,7 +16237,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16181595, "featuredRunMedia": null, "reactionVideos": [], @@ -16311,7 +16255,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16181924, "featuredRunMedia": null, "reactionVideos": [], @@ -16329,7 +16273,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 50, + "teamId": "135400", "time": 16191087, "featuredRunMedia": null, "reactionVideos": [], @@ -16347,7 +16291,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16205133, "featuredRunMedia": null, "reactionVideos": [], @@ -16365,7 +16309,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 50, + "teamId": "135400", "time": 16220773, "featuredRunMedia": null, "reactionVideos": [], @@ -16383,7 +16327,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16224528, "featuredRunMedia": null, "reactionVideos": [], @@ -16401,7 +16345,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16242078, "featuredRunMedia": null, "reactionVideos": [], @@ -16419,7 +16363,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16246774, "featuredRunMedia": null, "reactionVideos": [], @@ -16437,7 +16381,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16273472, "featuredRunMedia": null, "reactionVideos": [], @@ -16455,7 +16399,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "135403", "time": 16285901, "featuredRunMedia": null, "reactionVideos": [], @@ -16473,7 +16417,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "135385", "time": 16286362, "featuredRunMedia": null, "reactionVideos": [], @@ -16491,7 +16435,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 16289964, "featuredRunMedia": null, "reactionVideos": [], @@ -16509,7 +16453,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 16292810, "featuredRunMedia": null, "reactionVideos": [], @@ -16527,7 +16471,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 26, + "teamId": "135376", "time": 16294807, "featuredRunMedia": null, "reactionVideos": [], @@ -16545,7 +16489,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "135358", "time": 16297308, "featuredRunMedia": null, "reactionVideos": [], @@ -16563,7 +16507,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "135374", "time": 16320942, "featuredRunMedia": null, "reactionVideos": [], @@ -16581,7 +16525,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 31, + "teamId": "135381", "time": 16329907, "featuredRunMedia": null, "reactionVideos": [], @@ -16599,7 +16543,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "135350", "time": 16349771, "featuredRunMedia": null, "reactionVideos": [], @@ -16617,7 +16561,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 28, + "teamId": "135378", "time": 16352213, "featuredRunMedia": null, "reactionVideos": [], @@ -16635,7 +16579,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 22, + "teamId": "135372", "time": 16379604, "featuredRunMedia": null, "reactionVideos": [], @@ -16653,7 +16597,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16392873, "featuredRunMedia": null, "reactionVideos": [], @@ -16671,7 +16615,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 16409354, "featuredRunMedia": null, "reactionVideos": [], @@ -16689,7 +16633,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 42, + "teamId": "135392", "time": 16426393, "featuredRunMedia": null, "reactionVideos": [], @@ -16707,7 +16651,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16469801, "featuredRunMedia": null, "reactionVideos": [], @@ -16725,7 +16669,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 16500094, "featuredRunMedia": null, "reactionVideos": [], @@ -16743,7 +16687,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 55, + "teamId": "135405", "time": 16509762, "featuredRunMedia": null, "reactionVideos": [], @@ -16761,7 +16705,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 22, + "teamId": "135372", "time": 16512734, "featuredRunMedia": null, "reactionVideos": [], @@ -16779,7 +16723,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 16532843, "featuredRunMedia": null, "reactionVideos": [], @@ -16797,7 +16741,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 16534200, "featuredRunMedia": null, "reactionVideos": [], @@ -16815,7 +16759,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 16536850, "featuredRunMedia": null, "reactionVideos": [], @@ -16833,7 +16777,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16550791, "featuredRunMedia": null, "reactionVideos": [], @@ -16851,7 +16795,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 16551887, "featuredRunMedia": null, "reactionVideos": [], @@ -16869,7 +16813,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 16578815, "featuredRunMedia": null, "reactionVideos": [], @@ -16887,7 +16831,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 16592516, "featuredRunMedia": null, "reactionVideos": [], @@ -16905,7 +16849,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16594450, "featuredRunMedia": null, "reactionVideos": [], @@ -16923,7 +16867,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "135396", "time": 16601997, "featuredRunMedia": null, "reactionVideos": [], @@ -16941,7 +16885,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 16615942, "featuredRunMedia": null, "reactionVideos": [], @@ -16959,7 +16903,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 16634187, "featuredRunMedia": null, "reactionVideos": [], @@ -16977,7 +16921,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 16634992, "featuredRunMedia": null, "reactionVideos": [], @@ -16995,7 +16939,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 16641891, "featuredRunMedia": null, "reactionVideos": [], @@ -17013,7 +16957,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 16652944, "featuredRunMedia": null, "reactionVideos": [], @@ -17031,7 +16975,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 16662160, "featuredRunMedia": null, "reactionVideos": [], @@ -17049,7 +16993,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 16680691, "featuredRunMedia": null, "reactionVideos": [], @@ -17067,7 +17011,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 16694820, "featuredRunMedia": null, "reactionVideos": [], @@ -17085,7 +17029,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "135362", "time": 16705006, "featuredRunMedia": null, "reactionVideos": [], @@ -17103,7 +17047,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 16708003, "featuredRunMedia": null, "reactionVideos": [], @@ -17121,7 +17065,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 16718220, "featuredRunMedia": null, "reactionVideos": [], @@ -17139,7 +17083,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "135358", "time": 16748164, "featuredRunMedia": null, "reactionVideos": [], @@ -17157,7 +17101,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16758498, "featuredRunMedia": null, "reactionVideos": [], @@ -17175,7 +17119,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 16766726, "featuredRunMedia": null, "reactionVideos": [], @@ -17193,7 +17137,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "135374", "time": 16774157, "featuredRunMedia": null, "reactionVideos": [], @@ -17211,7 +17155,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 20, + "teamId": "135370", "time": 16775994, "featuredRunMedia": null, "reactionVideos": [], @@ -17229,7 +17173,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "135358", "time": 16794490, "featuredRunMedia": null, "reactionVideos": [], @@ -17247,7 +17191,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 16806436, "featuredRunMedia": null, "reactionVideos": [], @@ -17265,7 +17209,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 28, + "teamId": "135378", "time": 16814495, "featuredRunMedia": null, "reactionVideos": [], @@ -17283,7 +17227,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 16838327, "featuredRunMedia": null, "reactionVideos": [], @@ -17301,7 +17245,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16839656, "featuredRunMedia": null, "reactionVideos": [], @@ -17319,7 +17263,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 49, + "teamId": "135399", "time": 16855524, "featuredRunMedia": null, "reactionVideos": [], @@ -17337,7 +17281,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 16861828, "featuredRunMedia": null, "reactionVideos": [], @@ -17355,7 +17299,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 16880900, "featuredRunMedia": null, "reactionVideos": [], @@ -17373,7 +17317,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 16885333, "featuredRunMedia": null, "reactionVideos": [], @@ -17391,7 +17335,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 34, + "teamId": "135384", "time": 16888153, "featuredRunMedia": null, "reactionVideos": [], @@ -17409,7 +17353,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 16888909, "featuredRunMedia": null, "reactionVideos": [], @@ -17427,7 +17371,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16891256, "featuredRunMedia": null, "reactionVideos": [], @@ -17445,7 +17389,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 16899166, "featuredRunMedia": null, "reactionVideos": [], @@ -17463,7 +17407,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 16908683, "featuredRunMedia": null, "reactionVideos": [], @@ -17481,7 +17425,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16923875, "featuredRunMedia": null, "reactionVideos": [], @@ -17499,7 +17443,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 26, + "teamId": "135376", "time": 16946775, "featuredRunMedia": null, "reactionVideos": [], @@ -17517,7 +17461,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 16950665, "featuredRunMedia": null, "reactionVideos": [], @@ -17535,7 +17479,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "135395", "time": 16961312, "featuredRunMedia": null, "reactionVideos": [], @@ -17553,7 +17497,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 16989216, "featuredRunMedia": null, "reactionVideos": [], @@ -17571,7 +17515,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 17005989, "featuredRunMedia": null, "reactionVideos": [], @@ -17589,7 +17533,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17010564, "featuredRunMedia": null, "reactionVideos": [], @@ -17607,7 +17551,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17013934, "featuredRunMedia": null, "reactionVideos": [], @@ -17625,7 +17569,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "135353", "time": 17034114, "featuredRunMedia": null, "reactionVideos": [], @@ -17643,7 +17587,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 17034316, "featuredRunMedia": null, "reactionVideos": [], @@ -17661,7 +17605,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 17054157, "featuredRunMedia": null, "reactionVideos": [], @@ -17679,7 +17623,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 17070201, "featuredRunMedia": null, "reactionVideos": [], @@ -17697,7 +17641,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17083802, "featuredRunMedia": null, "reactionVideos": [], @@ -17715,7 +17659,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 17095604, "featuredRunMedia": null, "reactionVideos": [], @@ -17733,7 +17677,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 17117066, "featuredRunMedia": null, "reactionVideos": [], @@ -17751,7 +17695,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "135362", "time": 17126403, "featuredRunMedia": null, "reactionVideos": [], @@ -17769,7 +17713,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "135392", "time": 17136325, "featuredRunMedia": null, "reactionVideos": [], @@ -17787,7 +17731,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 10, + "teamId": "135360", "time": 17143030, "featuredRunMedia": null, "reactionVideos": [], @@ -17805,7 +17749,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "135394", "time": 17170311, "featuredRunMedia": null, "reactionVideos": [], @@ -17823,7 +17767,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "135390", "time": 17185155, "featuredRunMedia": null, "reactionVideos": [], @@ -17841,7 +17785,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17186269, "featuredRunMedia": null, "reactionVideos": [], @@ -17859,7 +17803,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 17191013, "featuredRunMedia": null, "reactionVideos": [], @@ -17877,7 +17821,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "135390", "time": 17202839, "featuredRunMedia": null, "reactionVideos": [], @@ -17895,7 +17839,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "135362", "time": 17227653, "featuredRunMedia": null, "reactionVideos": [], @@ -17913,7 +17857,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17229948, "featuredRunMedia": null, "reactionVideos": [], @@ -17931,7 +17875,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17236956, "featuredRunMedia": null, "reactionVideos": [], @@ -17949,7 +17893,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 17245244, "featuredRunMedia": null, "reactionVideos": [], @@ -17967,7 +17911,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17252133, "featuredRunMedia": null, "reactionVideos": [], @@ -17985,7 +17929,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17253315, "featuredRunMedia": null, "reactionVideos": [], @@ -18003,7 +17947,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17256681, "featuredRunMedia": null, "reactionVideos": [], @@ -18021,7 +17965,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "135383", "time": 17259954, "featuredRunMedia": null, "reactionVideos": [], @@ -18039,7 +17983,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17263301, "featuredRunMedia": null, "reactionVideos": [], @@ -18057,7 +18001,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 17269178, "featuredRunMedia": null, "reactionVideos": [], @@ -18075,7 +18019,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "135350", "time": 17289806, "featuredRunMedia": null, "reactionVideos": [], @@ -18093,7 +18037,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 26, + "teamId": "135376", "time": 17303382, "featuredRunMedia": null, "reactionVideos": [], @@ -18111,7 +18055,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17318595, "featuredRunMedia": null, "reactionVideos": [], @@ -18129,7 +18073,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17336970, "featuredRunMedia": null, "reactionVideos": [], @@ -18147,7 +18091,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 17348146, "featuredRunMedia": null, "reactionVideos": [], @@ -18165,7 +18109,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 55, + "teamId": "135405", "time": 17370818, "featuredRunMedia": null, "reactionVideos": [], @@ -18183,7 +18127,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "135393", "time": 17375297, "featuredRunMedia": null, "reactionVideos": [], @@ -18201,7 +18145,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17376189, "featuredRunMedia": null, "reactionVideos": [], @@ -18219,7 +18163,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "135373", "time": 17386546, "featuredRunMedia": null, "reactionVideos": [], @@ -18237,7 +18181,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17391355, "featuredRunMedia": null, "reactionVideos": [], @@ -18255,7 +18199,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "135373", "time": 17401159, "featuredRunMedia": null, "reactionVideos": [], @@ -18273,7 +18217,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17402521, "featuredRunMedia": null, "reactionVideos": [], @@ -18291,7 +18235,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "135382", "time": 17413133, "featuredRunMedia": null, "reactionVideos": [], @@ -18309,7 +18253,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17413492, "featuredRunMedia": null, "reactionVideos": [], @@ -18327,7 +18271,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17417166, "featuredRunMedia": null, "reactionVideos": [], @@ -18345,7 +18289,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17439065, "featuredRunMedia": null, "reactionVideos": [], @@ -18363,7 +18307,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 9, + "teamId": "135359", "time": 17443357, "featuredRunMedia": null, "reactionVideos": [], @@ -18381,7 +18325,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17451075, "featuredRunMedia": null, "reactionVideos": [], @@ -18399,7 +18343,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 17451534, "featuredRunMedia": null, "reactionVideos": [], @@ -18417,7 +18361,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17458527, "featuredRunMedia": null, "reactionVideos": [], @@ -18435,7 +18379,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17471721, "featuredRunMedia": null, "reactionVideos": [], @@ -18453,7 +18397,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17482653, "featuredRunMedia": null, "reactionVideos": [], @@ -18471,7 +18415,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 22, + "teamId": "135372", "time": 17485291, "featuredRunMedia": null, "reactionVideos": [], @@ -18489,7 +18433,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17501624, "featuredRunMedia": null, "reactionVideos": [], @@ -18507,7 +18451,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17504391, "featuredRunMedia": null, "reactionVideos": [], @@ -18525,7 +18469,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17512487, "featuredRunMedia": null, "reactionVideos": [], @@ -18543,7 +18487,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17513123, "featuredRunMedia": null, "reactionVideos": [], @@ -18561,7 +18505,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17514753, "featuredRunMedia": null, "reactionVideos": [], @@ -18579,7 +18523,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 49, + "teamId": "135399", "time": 17519731, "featuredRunMedia": null, "reactionVideos": [], @@ -18597,7 +18541,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "135362", "time": 17532861, "featuredRunMedia": null, "reactionVideos": [], @@ -18615,7 +18559,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "135373", "time": 17535977, "featuredRunMedia": null, "reactionVideos": [], @@ -18633,7 +18577,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17540068, "featuredRunMedia": null, "reactionVideos": [], @@ -18651,7 +18595,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "135387", "time": 17553439, "featuredRunMedia": null, "reactionVideos": [], @@ -18669,7 +18613,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17561069, "featuredRunMedia": null, "reactionVideos": [], @@ -18687,7 +18631,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 17562419, "featuredRunMedia": null, "reactionVideos": [], @@ -18705,7 +18649,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17564214, "featuredRunMedia": null, "reactionVideos": [], @@ -18723,7 +18667,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 18, + "teamId": "135368", "time": 17578580, "featuredRunMedia": null, "reactionVideos": [], @@ -18741,7 +18685,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17581246, "featuredRunMedia": null, "reactionVideos": [], @@ -18759,7 +18703,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17584021, "featuredRunMedia": null, "reactionVideos": [], @@ -18777,7 +18721,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17595782, "featuredRunMedia": null, "reactionVideos": [], @@ -18795,7 +18739,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17595818, "featuredRunMedia": null, "reactionVideos": [], @@ -18813,7 +18757,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17606501, "featuredRunMedia": null, "reactionVideos": [], @@ -18831,7 +18775,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17616727, "featuredRunMedia": null, "reactionVideos": [], @@ -18849,7 +18793,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17617275, "featuredRunMedia": null, "reactionVideos": [], @@ -18867,7 +18811,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17623715, "featuredRunMedia": null, "reactionVideos": [], @@ -18885,7 +18829,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17626586, "featuredRunMedia": null, "reactionVideos": [], @@ -18903,7 +18847,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17626910, "featuredRunMedia": null, "reactionVideos": [], @@ -18921,7 +18865,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17635914, "featuredRunMedia": null, "reactionVideos": [], @@ -18939,7 +18883,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17653185, "featuredRunMedia": null, "reactionVideos": [], @@ -18957,7 +18901,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17665954, "featuredRunMedia": null, "reactionVideos": [], @@ -18975,7 +18919,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17672458, "featuredRunMedia": null, "reactionVideos": [], @@ -18993,7 +18937,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17672934, "featuredRunMedia": null, "reactionVideos": [], @@ -19011,7 +18955,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17688835, "featuredRunMedia": null, "reactionVideos": [], @@ -19029,7 +18973,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17691004, "featuredRunMedia": null, "reactionVideos": [], @@ -19047,7 +18991,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17713009, "featuredRunMedia": null, "reactionVideos": [], @@ -19065,7 +19009,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17716710, "featuredRunMedia": null, "reactionVideos": [], @@ -19083,7 +19027,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "135391", "time": 17723549, "featuredRunMedia": null, "reactionVideos": [], @@ -19101,7 +19045,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17724706, "featuredRunMedia": null, "reactionVideos": [], @@ -19119,7 +19063,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17726366, "featuredRunMedia": null, "reactionVideos": [], @@ -19137,7 +19081,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 35, + "teamId": "135385", "time": 17730689, "featuredRunMedia": null, "reactionVideos": [], @@ -19155,7 +19099,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17731321, "featuredRunMedia": null, "reactionVideos": [], @@ -19173,7 +19117,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17735983, "featuredRunMedia": null, "reactionVideos": [], @@ -19191,7 +19135,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "135391", "time": 17742758, "featuredRunMedia": null, "reactionVideos": [], @@ -19209,7 +19153,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17746644, "featuredRunMedia": null, "reactionVideos": [], @@ -19227,7 +19171,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17750920, "featuredRunMedia": null, "reactionVideos": [], @@ -19245,7 +19189,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17753693, "featuredRunMedia": null, "reactionVideos": [], @@ -19263,7 +19207,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "135391", "time": 17754358, "featuredRunMedia": null, "reactionVideos": [], @@ -19281,7 +19225,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 29, + "teamId": "135379", "time": 17763422, "featuredRunMedia": null, "reactionVideos": [], @@ -19299,7 +19243,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17766318, "featuredRunMedia": null, "reactionVideos": [], @@ -19317,7 +19261,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 17770410, "featuredRunMedia": null, "reactionVideos": [], @@ -19335,7 +19279,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "135383", "time": 17778808, "featuredRunMedia": null, "reactionVideos": [], @@ -19353,7 +19297,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17787497, "featuredRunMedia": null, "reactionVideos": [], @@ -19371,7 +19315,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 22, + "teamId": "135372", "time": 17788336, "featuredRunMedia": null, "reactionVideos": [], @@ -19389,7 +19333,7 @@ "isFirstToSolveRun": false }, "problemId": "9", - "teamId": 52, + "teamId": "135402", "time": 17788941, "featuredRunMedia": null, "reactionVideos": [], @@ -19407,7 +19351,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 17792044, "featuredRunMedia": null, "reactionVideos": [], @@ -19425,7 +19369,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17802618, "featuredRunMedia": null, "reactionVideos": [], @@ -19443,7 +19387,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "135351", "time": 17807762, "featuredRunMedia": null, "reactionVideos": [], @@ -19461,7 +19405,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 23, + "teamId": "135373", "time": 17807982, "featuredRunMedia": null, "reactionVideos": [], @@ -19479,7 +19423,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 17819194, "featuredRunMedia": null, "reactionVideos": [], @@ -19497,7 +19441,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17821276, "featuredRunMedia": null, "reactionVideos": [], @@ -19515,7 +19459,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "135389", "time": 17822042, "featuredRunMedia": null, "reactionVideos": [], @@ -19533,7 +19477,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17825549, "featuredRunMedia": null, "reactionVideos": [], @@ -19551,7 +19495,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17826924, "featuredRunMedia": null, "reactionVideos": [], @@ -19569,7 +19513,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 40, + "teamId": "135390", "time": 17831788, "featuredRunMedia": null, "reactionVideos": [], @@ -19587,7 +19531,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "135403", "time": 17831957, "featuredRunMedia": null, "reactionVideos": [], @@ -19605,7 +19549,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 23, + "teamId": "135373", "time": 17832388, "featuredRunMedia": null, "reactionVideos": [], @@ -19623,7 +19567,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "135390", "time": 17834901, "featuredRunMedia": null, "reactionVideos": [], @@ -19641,7 +19585,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17836686, "featuredRunMedia": null, "reactionVideos": [], @@ -19659,7 +19603,7 @@ "isFirstToSolveRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "135390", "time": 17837634, "featuredRunMedia": null, "reactionVideos": [], @@ -19677,7 +19621,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 23, + "teamId": "135373", "time": 17838334, "featuredRunMedia": null, "reactionVideos": [], @@ -19695,7 +19639,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17838748, "featuredRunMedia": null, "reactionVideos": [], @@ -19713,7 +19657,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 7, + "teamId": "135357", "time": 17839633, "featuredRunMedia": null, "reactionVideos": [], @@ -19731,7 +19675,7 @@ "isFirstToSolveRun": false }, "problemId": "12", - "teamId": 40, + "teamId": "135390", "time": 17840118, "featuredRunMedia": null, "reactionVideos": [], @@ -19749,7 +19693,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 22, + "teamId": "135372", "time": 17843949, "featuredRunMedia": null, "reactionVideos": [], @@ -19767,7 +19711,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "135387", "time": 17847026, "featuredRunMedia": null, "reactionVideos": [], @@ -19785,7 +19729,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 17847906, "featuredRunMedia": null, "reactionVideos": [], @@ -19803,7 +19747,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 23, + "teamId": "135373", "time": 17848386, "featuredRunMedia": null, "reactionVideos": [], @@ -19821,7 +19765,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17849609, "featuredRunMedia": null, "reactionVideos": [], @@ -19839,7 +19783,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17849698, "featuredRunMedia": null, "reactionVideos": [], @@ -19857,7 +19801,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17850546, "featuredRunMedia": null, "reactionVideos": [], @@ -19875,7 +19819,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17866255, "featuredRunMedia": null, "reactionVideos": [], @@ -19893,7 +19837,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17866406, "featuredRunMedia": null, "reactionVideos": [], @@ -19911,7 +19855,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17868079, "featuredRunMedia": null, "reactionVideos": [], @@ -19929,7 +19873,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17869085, "featuredRunMedia": null, "reactionVideos": [], @@ -19947,7 +19891,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "135397", "time": 17878640, "featuredRunMedia": null, "reactionVideos": [], @@ -19965,7 +19909,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17890245, "featuredRunMedia": null, "reactionVideos": [], @@ -19983,7 +19927,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17898604, "featuredRunMedia": null, "reactionVideos": [], @@ -20001,7 +19945,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17905010, "featuredRunMedia": null, "reactionVideos": [], @@ -20019,7 +19963,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17906125, "featuredRunMedia": null, "reactionVideos": [], @@ -20037,7 +19981,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "135359", "time": 17912611, "featuredRunMedia": null, "reactionVideos": [], @@ -20055,7 +19999,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 7, + "teamId": "135357", "time": 17913058, "featuredRunMedia": null, "reactionVideos": [], @@ -20073,7 +20017,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17914731, "featuredRunMedia": null, "reactionVideos": [], @@ -20091,7 +20035,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 17917404, "featuredRunMedia": null, "reactionVideos": [], @@ -20109,7 +20053,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "135403", "time": 17920243, "featuredRunMedia": null, "reactionVideos": [], @@ -20127,7 +20071,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 7, + "teamId": "135357", "time": 17928556, "featuredRunMedia": null, "reactionVideos": [], @@ -20145,7 +20089,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 22, + "teamId": "135372", "time": 17929247, "featuredRunMedia": null, "reactionVideos": [], @@ -20163,7 +20107,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17930671, "featuredRunMedia": null, "reactionVideos": [], @@ -20181,7 +20125,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17938143, "featuredRunMedia": null, "reactionVideos": [], @@ -20199,7 +20143,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "135365", "time": 17938790, "featuredRunMedia": null, "reactionVideos": [], @@ -20217,7 +20161,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 17939872, "featuredRunMedia": null, "reactionVideos": [], @@ -20235,7 +20179,7 @@ "isFirstToSolveRun": false }, "problemId": "11", - "teamId": 7, + "teamId": "135357", "time": 17940543, "featuredRunMedia": null, "reactionVideos": [], @@ -20253,7 +20197,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "135362", "time": 17944340, "featuredRunMedia": null, "reactionVideos": [], @@ -20271,7 +20215,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "135405", "time": 17947154, "featuredRunMedia": null, "reactionVideos": [], @@ -20289,7 +20233,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "135362", "time": 17952610, "featuredRunMedia": null, "reactionVideos": [], @@ -20307,7 +20251,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "135370", "time": 17953101, "featuredRunMedia": null, "reactionVideos": [], @@ -20325,7 +20269,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17953911, "featuredRunMedia": null, "reactionVideos": [], @@ -20343,7 +20287,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17954078, "featuredRunMedia": null, "reactionVideos": [], @@ -20361,7 +20305,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17954817, "featuredRunMedia": null, "reactionVideos": [], @@ -20379,7 +20323,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17961141, "featuredRunMedia": null, "reactionVideos": [], @@ -20397,7 +20341,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 34, + "teamId": "135384", "time": 17962228, "featuredRunMedia": null, "reactionVideos": [], @@ -20415,7 +20359,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "135394", "time": 17964287, "featuredRunMedia": null, "reactionVideos": [], @@ -20433,7 +20377,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "135363", "time": 17964486, "featuredRunMedia": null, "reactionVideos": [], @@ -20451,7 +20395,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 25, + "teamId": "135375", "time": 17966261, "featuredRunMedia": null, "reactionVideos": [], @@ -20469,7 +20413,7 @@ "isFirstToSolveRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "135364", "time": 17966819, "featuredRunMedia": null, "reactionVideos": [], @@ -20487,7 +20431,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17967715, "featuredRunMedia": null, "reactionVideos": [], @@ -20505,7 +20449,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "135376", "time": 17968675, "featuredRunMedia": null, "reactionVideos": [], @@ -20523,7 +20467,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17969451, "featuredRunMedia": null, "reactionVideos": [], @@ -20541,7 +20485,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17970710, "featuredRunMedia": null, "reactionVideos": [], @@ -20559,7 +20503,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 39, + "teamId": "135389", "time": 17979656, "featuredRunMedia": null, "reactionVideos": [], @@ -20577,7 +20521,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17980026, "featuredRunMedia": null, "reactionVideos": [], @@ -20595,7 +20539,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "135386", "time": 17980736, "featuredRunMedia": null, "reactionVideos": [], @@ -20613,7 +20557,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "135362", "time": 17982119, "featuredRunMedia": null, "reactionVideos": [], @@ -20631,7 +20575,7 @@ "isFirstToSolveRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "135376", "time": 17982559, "featuredRunMedia": null, "reactionVideos": [], @@ -20649,7 +20593,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "135403", "time": 17987265, "featuredRunMedia": null, "reactionVideos": [], @@ -20667,7 +20611,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "135393", "time": 17988883, "featuredRunMedia": null, "reactionVideos": [], @@ -20685,7 +20629,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "135377", "time": 17989225, "featuredRunMedia": null, "reactionVideos": [], @@ -20703,7 +20647,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "135352", "time": 17991482, "featuredRunMedia": null, "reactionVideos": [], @@ -20721,7 +20665,7 @@ "isFirstToSolveRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "135391", "time": 17993590, "featuredRunMedia": null, "reactionVideos": [], @@ -20739,7 +20683,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "135362", "time": 17994681, "featuredRunMedia": null, "reactionVideos": [], @@ -20757,7 +20701,7 @@ "isFirstToSolveRun": false }, "problemId": "10", - "teamId": 28, + "teamId": "135378", "time": 17995015, "featuredRunMedia": null, "reactionVideos": [], @@ -20775,7 +20719,7 @@ "isFirstToSolveRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "135396", "time": 17997159, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/ejudgeTwoDays.txt b/src/cds/tests/testData/loaders/goldenData/ejudgeTwoDays.txt index 18c9e831f..68d52b5b5 100644 --- a/src/cds/tests/testData/loaders/goldenData/ejudgeTwoDays.txt +++ b/src/cds/tests/testData/loaders/goldenData/ejudgeTwoDays.txt @@ -106,10 +106,9 @@ ], "teams": [ { - "id": 0, + "id": "144070", "name": "Абатуров Артём (11, Екатеринбург)", "shortName": "Абатуров Артём (11, Екатеринбург)", - "contestSystemId": "144070", "groups": [], "hashTag": null, "medias": {}, @@ -119,10 +118,9 @@ "customFields": {} }, { - "id": 1, + "id": "144071", "name": "Абдуллин Гимран (9, Казань)", "shortName": "Абдуллин Гимран (9, Казань)", - "contestSystemId": "144071", "groups": [], "hashTag": null, "medias": {}, @@ -132,10 +130,9 @@ "customFields": {} }, { - "id": 2, + "id": "144072", "name": "Авдеев Дмитрий (10, Москва)", "shortName": "Авдеев Дмитрий (10, Москва)", - "contestSystemId": "144072", "groups": [], "hashTag": null, "medias": {}, @@ -145,10 +142,9 @@ "customFields": {} }, { - "id": 3, + "id": "144073", "name": "Аверин Вадим (11, Москва)", "shortName": "Аверин Вадим (11, Москва)", - "contestSystemId": "144073", "groups": [], "hashTag": null, "medias": {}, @@ -158,10 +154,9 @@ "customFields": {} }, { - "id": 4, + "id": "144074", "name": "Агафонов Артём (11, Томск)", "shortName": "Агафонов Артём (11, Томск)", - "contestSystemId": "144074", "groups": [], "hashTag": null, "medias": {}, @@ -171,10 +166,9 @@ "customFields": {} }, { - "id": 5, + "id": "144075", "name": "Адамов Артур (10, Челябинск)", "shortName": "Адамов Артур (10, Челябинск)", - "contestSystemId": "144075", "groups": [], "hashTag": null, "medias": {}, @@ -184,10 +178,9 @@ "customFields": {} }, { - "id": 6, + "id": "144076", "name": "Акимов Артём (11, Саранск)", "shortName": "Акимов Артём (11, Саранск)", - "contestSystemId": "144076", "groups": [], "hashTag": null, "medias": {}, @@ -197,10 +190,9 @@ "customFields": {} }, { - "id": 7, + "id": "144077", "name": "Акритов Андрей (10, Ставрополь)", "shortName": "Акритов Андрей (10, Ставрополь)", - "contestSystemId": "144077", "groups": [], "hashTag": null, "medias": {}, @@ -210,10 +202,9 @@ "customFields": {} }, { - "id": 8, + "id": "144078", "name": "Алексеев Артём (10, Москва)", "shortName": "Алексеев Артём (10, Москва)", - "contestSystemId": "144078", "groups": [], "hashTag": null, "medias": {}, @@ -223,10 +214,9 @@ "customFields": {} }, { - "id": 9, + "id": "144079", "name": "Алексеев Станислав (11, Москва)", "shortName": "Алексеев Станислав (11, Москва)", - "contestSystemId": "144079", "groups": [], "hashTag": null, "medias": {}, @@ -236,10 +226,9 @@ "customFields": {} }, { - "id": 10, + "id": "144080", "name": "Алексеева Полина (11, Москва)", "shortName": "Алексеева Полина (11, Москва)", - "contestSystemId": "144080", "groups": [], "hashTag": null, "medias": {}, @@ -249,10 +238,9 @@ "customFields": {} }, { - "id": 11, + "id": "144081", "name": "Алешин Иван (9, Москва)", "shortName": "Алешин Иван (9, Москва)", - "contestSystemId": "144081", "groups": [], "hashTag": null, "medias": {}, @@ -262,10 +250,9 @@ "customFields": {} }, { - "id": 12, + "id": "144082", "name": "Алешина Валерия (11, Санкт-Петербург)", "shortName": "Алешина Валерия (11, Санкт-Петербург)", - "contestSystemId": "144082", "groups": [], "hashTag": null, "medias": {}, @@ -275,10 +262,9 @@ "customFields": {} }, { - "id": 13, + "id": "144083", "name": "Андреев Григорий (11, Москва)", "shortName": "Андреев Григорий (11, Москва)", - "contestSystemId": "144083", "groups": [], "hashTag": null, "medias": {}, @@ -288,10 +274,9 @@ "customFields": {} }, { - "id": 14, + "id": "144084", "name": "Андреева Дарья (11, Витебск)", "shortName": "Андреева Дарья (11, Витебск)", - "contestSystemId": "144084", "groups": [], "hashTag": null, "medias": {}, @@ -301,10 +286,9 @@ "customFields": {} }, { - "id": 15, + "id": "144085", "name": "Андрийчук Михаил (11, Москва)", "shortName": "Андрийчук Михаил (11, Москва)", - "contestSystemId": "144085", "groups": [], "hashTag": null, "medias": {}, @@ -314,10 +298,9 @@ "customFields": {} }, { - "id": 16, + "id": "144086", "name": "Анташкевич Дмитрий (11, Могилёв)", "shortName": "Анташкевич Дмитрий (11, Могилёв)", - "contestSystemId": "144086", "groups": [], "hashTag": null, "medias": {}, @@ -327,10 +310,9 @@ "customFields": {} }, { - "id": 17, + "id": "144087", "name": "Афанасенко Григорий (11, Минск)", "shortName": "Афанасенко Григорий (11, Минск)", - "contestSystemId": "144087", "groups": [], "hashTag": null, "medias": {}, @@ -340,10 +322,9 @@ "customFields": {} }, { - "id": 18, + "id": "144088", "name": "Баданов Чингис (11, Улан-Удэ)", "shortName": "Баданов Чингис (11, Улан-Удэ)", - "contestSystemId": "144088", "groups": [], "hashTag": null, "medias": {}, @@ -353,10 +334,9 @@ "customFields": {} }, { - "id": 19, + "id": "144089", "name": "Байдаков Кирилл (11, Могилёв)", "shortName": "Байдаков Кирилл (11, Могилёв)", - "contestSystemId": "144089", "groups": [], "hashTag": null, "medias": {}, @@ -366,10 +346,9 @@ "customFields": {} }, { - "id": 20, + "id": "144090", "name": "Бакакин Валерий (11, Москва)", "shortName": "Бакакин Валерий (11, Москва)", - "contestSystemId": "144090", "groups": [], "hashTag": null, "medias": {}, @@ -379,10 +358,9 @@ "customFields": {} }, { - "id": 21, + "id": "144091", "name": "Балабекян Андрей (11, Сызрань)", "shortName": "Балабекян Андрей (11, Сызрань)", - "contestSystemId": "144091", "groups": [], "hashTag": null, "medias": {}, @@ -392,10 +370,9 @@ "customFields": {} }, { - "id": 22, + "id": "144092", "name": "Балакирев Максим (9, Белгород)", "shortName": "Балакирев Максим (9, Белгород)", - "contestSystemId": "144092", "groups": [], "hashTag": null, "medias": {}, @@ -405,10 +382,9 @@ "customFields": {} }, { - "id": 23, + "id": "144093", "name": "Барсуков Борис (11, Тула)", "shortName": "Барсуков Борис (11, Тула)", - "contestSystemId": "144093", "groups": [], "hashTag": null, "medias": {}, @@ -418,10 +394,9 @@ "customFields": {} }, { - "id": 24, + "id": "144094", "name": "Белецкий Иван (11, Краснодар)", "shortName": "Белецкий Иван (11, Краснодар)", - "contestSystemId": "144094", "groups": [], "hashTag": null, "medias": {}, @@ -431,10 +406,9 @@ "customFields": {} }, { - "id": 25, + "id": "144095", "name": "Белоусов Лев (10, Алматы)", "shortName": "Белоусов Лев (10, Алматы)", - "contestSystemId": "144095", "groups": [], "hashTag": null, "medias": {}, @@ -444,10 +418,9 @@ "customFields": {} }, { - "id": 26, + "id": "144096", "name": "Белоусько Константин (10, Москва)", "shortName": "Белоусько Константин (10, Москва)", - "contestSystemId": "144096", "groups": [], "hashTag": null, "medias": {}, @@ -457,10 +430,9 @@ "customFields": {} }, { - "id": 27, + "id": "144097", "name": "Бельский Артём (11, Витебск)", "shortName": "Бельский Артём (11, Витебск)", - "contestSystemId": "144097", "groups": [], "hashTag": null, "medias": {}, @@ -470,10 +442,9 @@ "customFields": {} }, { - "id": 28, + "id": "144098", "name": "Бельских Александр (7, Москва)", "shortName": "Бельских Александр (7, Москва)", - "contestSystemId": "144098", "groups": [], "hashTag": null, "medias": {}, @@ -483,10 +454,9 @@ "customFields": {} }, { - "id": 29, + "id": "144099", "name": "Беляев Даниил (10, Москва)", "shortName": "Беляев Даниил (10, Москва)", - "contestSystemId": "144099", "groups": [], "hashTag": null, "medias": {}, @@ -496,10 +466,9 @@ "customFields": {} }, { - "id": 30, + "id": "144100", "name": "Беляков Матвей (11, Санкт-Петербург)", "shortName": "Беляков Матвей (11, Санкт-Петербург)", - "contestSystemId": "144100", "groups": [], "hashTag": null, "medias": {}, @@ -509,10 +478,9 @@ "customFields": {} }, { - "id": 31, + "id": "144101", "name": "Бенца Даниил (11, Москва)", "shortName": "Бенца Даниил (11, Москва)", - "contestSystemId": "144101", "groups": [], "hashTag": null, "medias": {}, @@ -522,10 +490,9 @@ "customFields": {} }, { - "id": 32, + "id": "144102", "name": "Бердников Николай (11, Мытищи)", "shortName": "Бердников Николай (11, Мытищи)", - "contestSystemId": "144102", "groups": [], "hashTag": null, "medias": {}, @@ -535,10 +502,9 @@ "customFields": {} }, { - "id": 33, + "id": "144103", "name": "Бицюк Андрей (11, Тверь)", "shortName": "Бицюк Андрей (11, Тверь)", - "contestSystemId": "144103", "groups": [], "hashTag": null, "medias": {}, @@ -548,10 +514,9 @@ "customFields": {} }, { - "id": 34, + "id": "144104", "name": "Бията Матвей (10, Москва)", "shortName": "Бията Матвей (10, Москва)", - "contestSystemId": "144104", "groups": [], "hashTag": null, "medias": {}, @@ -561,10 +526,9 @@ "customFields": {} }, { - "id": 35, + "id": "144105", "name": "Бовкун Тимофей (9, Уфа)", "shortName": "Бовкун Тимофей (9, Уфа)", - "contestSystemId": "144105", "groups": [], "hashTag": null, "medias": {}, @@ -574,10 +538,9 @@ "customFields": {} }, { - "id": 36, + "id": "144106", "name": "Богачёв Роман (9, Витебск)", "shortName": "Богачёв Роман (9, Витебск)", - "contestSystemId": "144106", "groups": [], "hashTag": null, "medias": {}, @@ -587,10 +550,9 @@ "customFields": {} }, { - "id": 37, + "id": "144107", "name": "Богер Юрий (11, Москва)", "shortName": "Богер Юрий (11, Москва)", - "contestSystemId": "144107", "groups": [], "hashTag": null, "medias": {}, @@ -600,10 +562,9 @@ "customFields": {} }, { - "id": 38, + "id": "144108", "name": "Боровлев Пётр (11, Москва)", "shortName": "Боровлев Пётр (11, Москва)", - "contestSystemId": "144108", "groups": [], "hashTag": null, "medias": {}, @@ -613,10 +574,9 @@ "customFields": {} }, { - "id": 39, + "id": "144109", "name": "Бородатов Егор (11, Томск)", "shortName": "Бородатов Егор (11, Томск)", - "contestSystemId": "144109", "groups": [], "hashTag": null, "medias": {}, @@ -626,10 +586,9 @@ "customFields": {} }, { - "id": 40, + "id": "144110", "name": "Борцов Евгений (11, Ижевск)", "shortName": "Борцов Евгений (11, Ижевск)", - "contestSystemId": "144110", "groups": [], "hashTag": null, "medias": {}, @@ -639,10 +598,9 @@ "customFields": {} }, { - "id": 41, + "id": "144111", "name": "Борчук Дмитрий (11, Витебск)", "shortName": "Борчук Дмитрий (11, Витебск)", - "contestSystemId": "144111", "groups": [], "hashTag": null, "medias": {}, @@ -652,10 +610,9 @@ "customFields": {} }, { - "id": 42, + "id": "144112", "name": "Бродын Богдан (11, Красноярск)", "shortName": "Бродын Богдан (11, Красноярск)", - "contestSystemId": "144112", "groups": [], "hashTag": null, "medias": {}, @@ -665,10 +622,9 @@ "customFields": {} }, { - "id": 43, + "id": "144113", "name": "Брыкульская Мария (11, Мозырь)", "shortName": "Брыкульская Мария (11, Мозырь)", - "contestSystemId": "144113", "groups": [], "hashTag": null, "medias": {}, @@ -678,10 +634,9 @@ "customFields": {} }, { - "id": 44, + "id": "144114", "name": "Бугрышев Михаил (10, Екатеринбург)", "shortName": "Бугрышев Михаил (10, Екатеринбург)", - "contestSystemId": "144114", "groups": [], "hashTag": null, "medias": {}, @@ -691,10 +646,9 @@ "customFields": {} }, { - "id": 45, + "id": "144115", "name": "Бульбенков Александр (11, Калининград)", "shortName": "Бульбенков Александр (11, Калининград)", - "contestSystemId": "144115", "groups": [], "hashTag": null, "medias": {}, @@ -704,10 +658,9 @@ "customFields": {} }, { - "id": 46, + "id": "144116", "name": "Бурков Илья (11, Москва)", "shortName": "Бурков Илья (11, Москва)", - "contestSystemId": "144116", "groups": [], "hashTag": null, "medias": {}, @@ -717,10 +670,9 @@ "customFields": {} }, { - "id": 47, + "id": "144117", "name": "Бурмистров Владислав (10, Москва)", "shortName": "Бурмистров Владислав (10, Москва)", - "contestSystemId": "144117", "groups": [], "hashTag": null, "medias": {}, @@ -730,10 +682,9 @@ "customFields": {} }, { - "id": 48, + "id": "144118", "name": "Бутаку Роман (11, Рыбница)", "shortName": "Бутаку Роман (11, Рыбница)", - "contestSystemId": "144118", "groups": [], "hashTag": null, "medias": {}, @@ -743,10 +694,9 @@ "customFields": {} }, { - "id": 49, + "id": "144119", "name": "Быльнов Никита (10, Казань)", "shortName": "Быльнов Никита (10, Казань)", - "contestSystemId": "144119", "groups": [], "hashTag": null, "medias": {}, @@ -756,10 +706,9 @@ "customFields": {} }, { - "id": 50, + "id": "144120", "name": "Бычик Игорь (10, Мозырь)", "shortName": "Бычик Игорь (10, Мозырь)", - "contestSystemId": "144120", "groups": [], "hashTag": null, "medias": {}, @@ -769,10 +718,9 @@ "customFields": {} }, { - "id": 51, + "id": "144121", "name": "Вадченко Андрей (11, Самара)", "shortName": "Вадченко Андрей (11, Самара)", - "contestSystemId": "144121", "groups": [], "hashTag": null, "medias": {}, @@ -782,10 +730,9 @@ "customFields": {} }, { - "id": 52, + "id": "144122", "name": "Важенин Юрий (11, Москва)", "shortName": "Важенин Юрий (11, Москва)", - "contestSystemId": "144122", "groups": [], "hashTag": null, "medias": {}, @@ -795,10 +742,9 @@ "customFields": {} }, { - "id": 53, + "id": "144123", "name": "Вараксин Арсений (11, Москва)", "shortName": "Вараксин Арсений (11, Москва)", - "contestSystemId": "144123", "groups": [], "hashTag": null, "medias": {}, @@ -808,10 +754,9 @@ "customFields": {} }, { - "id": 54, + "id": "144124", "name": "Василев Явор (8, Шумен)", "shortName": "Василев Явор (8, Шумен)", - "contestSystemId": "144124", "groups": [], "hashTag": null, "medias": {}, @@ -821,10 +766,9 @@ "customFields": {} }, { - "id": 55, + "id": "144125", "name": "Васильев Алексей (11, Москва)", "shortName": "Васильев Алексей (11, Москва)", - "contestSystemId": "144125", "groups": [], "hashTag": null, "medias": {}, @@ -834,10 +778,9 @@ "customFields": {} }, { - "id": 56, + "id": "144126", "name": "Вдовин Георгий (11, Москва)", "shortName": "Вдовин Георгий (11, Москва)", - "contestSystemId": "144126", "groups": [], "hashTag": null, "medias": {}, @@ -847,10 +790,9 @@ "customFields": {} }, { - "id": 57, + "id": "144127", "name": "Вежновец Александр (9, Москва)", "shortName": "Вежновец Александр (9, Москва)", - "contestSystemId": "144127", "groups": [], "hashTag": null, "medias": {}, @@ -860,10 +802,9 @@ "customFields": {} }, { - "id": 58, + "id": "144128", "name": "Венидиктов Тимофей (9, Челябинск )", "shortName": "Венидиктов Тимофей (9, Челябинск )", - "contestSystemId": "144128", "groups": [], "hashTag": null, "medias": {}, @@ -873,10 +814,9 @@ "customFields": {} }, { - "id": 59, + "id": "144129", "name": "Вертинский Александр (11, Минск)", "shortName": "Вертинский Александр (11, Минск)", - "contestSystemId": "144129", "groups": [], "hashTag": null, "medias": {}, @@ -886,10 +826,9 @@ "customFields": {} }, { - "id": 60, + "id": "144130", "name": "Вильданов Руслан (11, Казань)", "shortName": "Вильданов Руслан (11, Казань)", - "contestSystemId": "144130", "groups": [], "hashTag": null, "medias": {}, @@ -899,10 +838,9 @@ "customFields": {} }, { - "id": 61, + "id": "144131", "name": "Виноградов Сергей (11, Воронеж)", "shortName": "Виноградов Сергей (11, Воронеж)", - "contestSystemId": "144131", "groups": [], "hashTag": null, "medias": {}, @@ -912,10 +850,9 @@ "customFields": {} }, { - "id": 62, + "id": "144132", "name": "Виноградов Илья (11, Череповец)", "shortName": "Виноградов Илья (11, Череповец)", - "contestSystemId": "144132", "groups": [], "hashTag": null, "medias": {}, @@ -925,10 +862,9 @@ "customFields": {} }, { - "id": 63, + "id": "144133", "name": "Витюк Антон (11, Липецк)", "shortName": "Витюк Антон (11, Липецк)", - "contestSystemId": "144133", "groups": [], "hashTag": null, "medias": {}, @@ -938,10 +874,9 @@ "customFields": {} }, { - "id": 64, + "id": "144134", "name": "Возмилов Георгий (10, Москва)", "shortName": "Возмилов Георгий (10, Москва)", - "contestSystemId": "144134", "groups": [], "hashTag": null, "medias": {}, @@ -951,10 +886,9 @@ "customFields": {} }, { - "id": 65, + "id": "144135", "name": "Волков Михаил (10, Москва)", "shortName": "Волков Михаил (10, Москва)", - "contestSystemId": "144135", "groups": [], "hashTag": null, "medias": {}, @@ -964,10 +898,9 @@ "customFields": {} }, { - "id": 66, + "id": "144136", "name": "Воронин Григорий (11, Сергиев Посад)", "shortName": "Воронин Григорий (11, Сергиев Посад)", - "contestSystemId": "144136", "groups": [], "hashTag": null, "medias": {}, @@ -977,10 +910,9 @@ "customFields": {} }, { - "id": 67, + "id": "144137", "name": "Воропаев Никита (11, Могилев)", "shortName": "Воропаев Никита (11, Могилев)", - "contestSystemId": "144137", "groups": [], "hashTag": null, "medias": {}, @@ -990,10 +922,9 @@ "customFields": {} }, { - "id": 68, + "id": "144138", "name": "Галявиев Арслан (10, Москва)", "shortName": "Галявиев Арслан (10, Москва)", - "contestSystemId": "144138", "groups": [], "hashTag": null, "medias": {}, @@ -1003,10 +934,9 @@ "customFields": {} }, { - "id": 69, + "id": "144139", "name": "Геворгян Гагик (10, Ереван)", "shortName": "Геворгян Гагик (10, Ереван)", - "contestSystemId": "144139", "groups": [], "hashTag": null, "medias": {}, @@ -1016,10 +946,9 @@ "customFields": {} }, { - "id": 70, + "id": "144140", "name": "Геикян Филя (10, Ереван)", "shortName": "Геикян Филя (10, Ереван)", - "contestSystemId": "144140", "groups": [], "hashTag": null, "medias": {}, @@ -1029,10 +958,9 @@ "customFields": {} }, { - "id": 71, + "id": "144141", "name": "Герасиков Владимир (10, Челябинск)", "shortName": "Герасиков Владимир (10, Челябинск)", - "contestSystemId": "144141", "groups": [], "hashTag": null, "medias": {}, @@ -1042,10 +970,9 @@ "customFields": {} }, { - "id": 72, + "id": "144142", "name": "Гжибовский Арсений (10, Петрозаводск)", "shortName": "Гжибовский Арсений (10, Петрозаводск)", - "contestSystemId": "144142", "groups": [], "hashTag": null, "medias": {}, @@ -1055,10 +982,9 @@ "customFields": {} }, { - "id": 73, + "id": "144143", "name": "Гимадеев Амир (8, Казань)", "shortName": "Гимадеев Амир (8, Казань)", - "contestSystemId": "144143", "groups": [], "hashTag": null, "medias": {}, @@ -1068,10 +994,9 @@ "customFields": {} }, { - "id": 74, + "id": "144144", "name": "Глазков Владислав (11, Москва)", "shortName": "Глазков Владислав (11, Москва)", - "contestSystemId": "144144", "groups": [], "hashTag": null, "medias": {}, @@ -1081,10 +1006,9 @@ "customFields": {} }, { - "id": 75, + "id": "144145", "name": "Голов Андрей (11, Саранск)", "shortName": "Голов Андрей (11, Саранск)", - "contestSystemId": "144145", "groups": [], "hashTag": null, "medias": {}, @@ -1094,10 +1018,9 @@ "customFields": {} }, { - "id": 76, + "id": "144146", "name": "Голубев Владимир (11, Саранск)", "shortName": "Голубев Владимир (11, Саранск)", - "contestSystemId": "144146", "groups": [], "hashTag": null, "medias": {}, @@ -1107,10 +1030,9 @@ "customFields": {} }, { - "id": 77, + "id": "144147", "name": "Горохов Дмитрий (11, Великий Новгород)", "shortName": "Горохов Дмитрий (11, Великий Новгород)", - "contestSystemId": "144147", "groups": [], "hashTag": null, "medias": {}, @@ -1120,10 +1042,9 @@ "customFields": {} }, { - "id": 78, + "id": "144148", "name": "Гребень Никита (11, Санкт-Петербург)", "shortName": "Гребень Никита (11, Санкт-Петербург)", - "contestSystemId": "144148", "groups": [], "hashTag": null, "medias": {}, @@ -1133,10 +1054,9 @@ "customFields": {} }, { - "id": 79, + "id": "144149", "name": "Грекова Дарья (9, Москва)", "shortName": "Грекова Дарья (9, Москва)", - "contestSystemId": "144149", "groups": [], "hashTag": null, "medias": {}, @@ -1146,10 +1066,9 @@ "customFields": {} }, { - "id": 80, + "id": "144150", "name": "Грибакин Михаил (11, Челябинск)", "shortName": "Грибакин Михаил (11, Челябинск)", - "contestSystemId": "144150", "groups": [], "hashTag": null, "medias": {}, @@ -1159,10 +1078,9 @@ "customFields": {} }, { - "id": 81, + "id": "144151", "name": "Григоржевский Владислав (11, Московская область, город Люберцы)", "shortName": "Григоржевский Владислав (11, Московская область, город Люберцы)", - "contestSystemId": "144151", "groups": [], "hashTag": null, "medias": {}, @@ -1172,10 +1090,9 @@ "customFields": {} }, { - "id": 82, + "id": "144152", "name": "Григорьев Даниил (11, Санкт-Петербург)", "shortName": "Григорьев Даниил (11, Санкт-Петербург)", - "contestSystemId": "144152", "groups": [], "hashTag": null, "medias": {}, @@ -1185,10 +1102,9 @@ "customFields": {} }, { - "id": 83, + "id": "144153", "name": "Григорьева Ирина (8, Челябинск)", "shortName": "Григорьева Ирина (8, Челябинск)", - "contestSystemId": "144153", "groups": [], "hashTag": null, "medias": {}, @@ -1198,10 +1114,9 @@ "customFields": {} }, { - "id": 84, + "id": "144154", "name": "Грицаев Андрей (10, Москва)", "shortName": "Грицаев Андрей (10, Москва)", - "contestSystemId": "144154", "groups": [], "hashTag": null, "medias": {}, @@ -1211,10 +1126,9 @@ "customFields": {} }, { - "id": 85, + "id": "144155", "name": "Гришко Дмитрий (8, Москва)", "shortName": "Гришко Дмитрий (8, Москва)", - "contestSystemId": "144155", "groups": [], "hashTag": null, "medias": {}, @@ -1224,10 +1138,9 @@ "customFields": {} }, { - "id": 86, + "id": "144156", "name": "Гронский Иван (9, Химки)", "shortName": "Гронский Иван (9, Химки)", - "contestSystemId": "144156", "groups": [], "hashTag": null, "medias": {}, @@ -1237,10 +1150,9 @@ "customFields": {} }, { - "id": 87, + "id": "144157", "name": "Губарев Александр (11, Москва )", "shortName": "Губарев Александр (11, Москва )", - "contestSystemId": "144157", "groups": [], "hashTag": null, "medias": {}, @@ -1250,10 +1162,9 @@ "customFields": {} }, { - "id": 88, + "id": "144158", "name": "Гудов Дмитрий (11, Москва)", "shortName": "Гудов Дмитрий (11, Москва)", - "contestSystemId": "144158", "groups": [], "hashTag": null, "medias": {}, @@ -1263,10 +1174,9 @@ "customFields": {} }, { - "id": 89, + "id": "144159", "name": "Гусев Григорий (11, Мытищи)", "shortName": "Гусев Григорий (11, Мытищи)", - "contestSystemId": "144159", "groups": [], "hashTag": null, "medias": {}, @@ -1276,10 +1186,9 @@ "customFields": {} }, { - "id": 90, + "id": "144160", "name": "Гърков Велислав (11, София)", "shortName": "Гърков Велислав (11, София)", - "contestSystemId": "144160", "groups": [], "hashTag": null, "medias": {}, @@ -1289,10 +1198,9 @@ "customFields": {} }, { - "id": 91, + "id": "144161", "name": "Даминов Камиль (10, Москва (Янаул, Республика Башкортостан))", "shortName": "Даминов Камиль (10, Москва (Янаул, Республика Башкортостан))", - "contestSystemId": "144161", "groups": [], "hashTag": null, "medias": {}, @@ -1302,10 +1210,9 @@ "customFields": {} }, { - "id": 92, + "id": "144162", "name": "Дегтярь Тимур (11, Кишинёв)", "shortName": "Дегтярь Тимур (11, Кишинёв)", - "contestSystemId": "144162", "groups": [], "hashTag": null, "medias": {}, @@ -1315,10 +1222,9 @@ "customFields": {} }, { - "id": 93, + "id": "144163", "name": "Дмитриев Максим (11, Москва)", "shortName": "Дмитриев Максим (11, Москва)", - "contestSystemId": "144163", "groups": [], "hashTag": null, "medias": {}, @@ -1328,10 +1234,9 @@ "customFields": {} }, { - "id": 94, + "id": "144164", "name": "Доронин Фёдор (10, Обнинск)", "shortName": "Доронин Фёдор (10, Обнинск)", - "contestSystemId": "144164", "groups": [], "hashTag": null, "medias": {}, @@ -1341,10 +1246,9 @@ "customFields": {} }, { - "id": 95, + "id": "144165", "name": "Доросев Антон (11, г. Санкт-Петербург)", "shortName": "Доросев Антон (11, г. Санкт-Петербург)", - "contestSystemId": "144165", "groups": [], "hashTag": null, "medias": {}, @@ -1354,10 +1258,9 @@ "customFields": {} }, { - "id": 96, + "id": "144166", "name": "Дрожецкий Ян (10, Москва )", "shortName": "Дрожецкий Ян (10, Москва )", - "contestSystemId": "144166", "groups": [], "hashTag": null, "medias": {}, @@ -1367,10 +1270,9 @@ "customFields": {} }, { - "id": 97, + "id": "144167", "name": "Душенков Сергей (10, Москва)", "shortName": "Душенков Сергей (10, Москва)", - "contestSystemId": "144167", "groups": [], "hashTag": null, "medias": {}, @@ -1380,10 +1282,9 @@ "customFields": {} }, { - "id": 98, + "id": "144168", "name": "Дьяконов Сергей (8, Казань)", "shortName": "Дьяконов Сергей (8, Казань)", - "contestSystemId": "144168", "groups": [], "hashTag": null, "medias": {}, @@ -1393,10 +1294,9 @@ "customFields": {} }, { - "id": 99, + "id": "144169", "name": "Егоров Антон (10, Москва)", "shortName": "Егоров Антон (10, Москва)", - "contestSystemId": "144169", "groups": [], "hashTag": null, "medias": {}, @@ -1406,10 +1306,9 @@ "customFields": {} }, { - "id": 100, + "id": "144170", "name": "Егоров Дмитрий (7, Челябинск)", "shortName": "Егоров Дмитрий (7, Челябинск)", - "contestSystemId": "144170", "groups": [], "hashTag": null, "medias": {}, @@ -1419,10 +1318,9 @@ "customFields": {} }, { - "id": 101, + "id": "144171", "name": "Емельянов Алексей (11, Москва)", "shortName": "Емельянов Алексей (11, Москва)", - "contestSystemId": "144171", "groups": [], "hashTag": null, "medias": {}, @@ -1432,10 +1330,9 @@ "customFields": {} }, { - "id": 102, + "id": "144172", "name": "Еремина Ксения (11, Саратов)", "shortName": "Еремина Ксения (11, Саратов)", - "contestSystemId": "144172", "groups": [], "hashTag": null, "medias": {}, @@ -1445,10 +1342,9 @@ "customFields": {} }, { - "id": 103, + "id": "144173", "name": "Ермачков Ярослав (11, Москва)", "shortName": "Ермачков Ярослав (11, Москва)", - "contestSystemId": "144173", "groups": [], "hashTag": null, "medias": {}, @@ -1458,10 +1354,9 @@ "customFields": {} }, { - "id": 104, + "id": "144174", "name": "Ермолов Егор (11, Липецк)", "shortName": "Ермолов Егор (11, Липецк)", - "contestSystemId": "144174", "groups": [], "hashTag": null, "medias": {}, @@ -1471,10 +1366,9 @@ "customFields": {} }, { - "id": 105, + "id": "144175", "name": "Ермошкин Артём (10, Москва)", "shortName": "Ермошкин Артём (10, Москва)", - "contestSystemId": "144175", "groups": [], "hashTag": null, "medias": {}, @@ -1484,10 +1378,9 @@ "customFields": {} }, { - "id": 106, + "id": "144176", "name": "Ефимов Павел (10, Москва)", "shortName": "Ефимов Павел (10, Москва)", - "contestSystemId": "144176", "groups": [], "hashTag": null, "medias": {}, @@ -1497,10 +1390,9 @@ "customFields": {} }, { - "id": 107, + "id": "144177", "name": "Ефременко Валерий (10, Барановичи)", "shortName": "Ефременко Валерий (10, Барановичи)", - "contestSystemId": "144177", "groups": [], "hashTag": null, "medias": {}, @@ -1510,10 +1402,9 @@ "customFields": {} }, { - "id": 108, + "id": "144178", "name": "Жеглов Александр (10, Воронеж)", "shortName": "Жеглов Александр (10, Воронеж)", - "contestSystemId": "144178", "groups": [], "hashTag": null, "medias": {}, @@ -1523,10 +1414,9 @@ "customFields": {} }, { - "id": 109, + "id": "144179", "name": "Желтовский Владислав (9, Казань)", "shortName": "Желтовский Владислав (9, Казань)", - "contestSystemId": "144179", "groups": [], "hashTag": null, "medias": {}, @@ -1536,10 +1426,9 @@ "customFields": {} }, { - "id": 110, + "id": "144180", "name": "Жерневский Михаил (10, Ростов-на-Дону)", "shortName": "Жерневский Михаил (10, Ростов-на-Дону)", - "contestSystemId": "144180", "groups": [], "hashTag": null, "medias": {}, @@ -1549,10 +1438,9 @@ "customFields": {} }, { - "id": 111, + "id": "144181", "name": "Жиганов Владислав (8, Екатеринбург)", "shortName": "Жиганов Владислав (8, Екатеринбург)", - "contestSystemId": "144181", "groups": [], "hashTag": null, "medias": {}, @@ -1562,10 +1450,9 @@ "customFields": {} }, { - "id": 112, + "id": "144182", "name": "Жигулин Глеб (10, Новомосковск)", "shortName": "Жигулин Глеб (10, Новомосковск)", - "contestSystemId": "144182", "groups": [], "hashTag": null, "medias": {}, @@ -1575,10 +1462,9 @@ "customFields": {} }, { - "id": 113, + "id": "144183", "name": "Жилина Дарья (9, Улан-Удэ)", "shortName": "Жилина Дарья (9, Улан-Удэ)", - "contestSystemId": "144183", "groups": [], "hashTag": null, "medias": {}, @@ -1588,10 +1474,9 @@ "customFields": {} }, { - "id": 114, + "id": "144184", "name": "Жуков Иван (10, Мозырь)", "shortName": "Жуков Иван (10, Мозырь)", - "contestSystemId": "144184", "groups": [], "hashTag": null, "medias": {}, @@ -1601,10 +1486,9 @@ "customFields": {} }, { - "id": 115, + "id": "144185", "name": "Жучков Павел (10, Калужская область, Дзержинский район, п. Товарково)", "shortName": "Жучков Павел (10, Калужская область, Дзержинский район, п. Товарково)", - "contestSystemId": "144185", "groups": [], "hashTag": null, "medias": {}, @@ -1614,10 +1498,9 @@ "customFields": {} }, { - "id": 116, + "id": "144186", "name": "Заварин Александр (11, Москва)", "shortName": "Заварин Александр (11, Москва)", - "contestSystemId": "144186", "groups": [], "hashTag": null, "medias": {}, @@ -1627,10 +1510,9 @@ "customFields": {} }, { - "id": 117, + "id": "144187", "name": "Загоровский Владимир (9, Долгопрудный)", "shortName": "Загоровский Владимир (9, Долгопрудный)", - "contestSystemId": "144187", "groups": [], "hashTag": null, "medias": {}, @@ -1640,10 +1522,9 @@ "customFields": {} }, { - "id": 118, + "id": "144188", "name": "Зайцев Михаил (9, Витебск)", "shortName": "Зайцев Михаил (9, Витебск)", - "contestSystemId": "144188", "groups": [], "hashTag": null, "medias": {}, @@ -1653,10 +1534,9 @@ "customFields": {} }, { - "id": 119, + "id": "144189", "name": "Зайцев Дмитрий (11, Екатеринбург)", "shortName": "Зайцев Дмитрий (11, Екатеринбург)", - "contestSystemId": "144189", "groups": [], "hashTag": null, "medias": {}, @@ -1666,10 +1546,9 @@ "customFields": {} }, { - "id": 120, + "id": "144190", "name": "Закиров Амирхан (8, Казань)", "shortName": "Закиров Амирхан (8, Казань)", - "contestSystemId": "144190", "groups": [], "hashTag": null, "medias": {}, @@ -1679,10 +1558,9 @@ "customFields": {} }, { - "id": 121, + "id": "144191", "name": "Замешаев Михаил (11, Красноярск )", "shortName": "Замешаев Михаил (11, Красноярск )", - "contestSystemId": "144191", "groups": [], "hashTag": null, "medias": {}, @@ -1692,10 +1570,9 @@ "customFields": {} }, { - "id": 122, + "id": "144192", "name": "Зарубин Егор (10, Челябинск)", "shortName": "Зарубин Егор (10, Челябинск)", - "contestSystemId": "144192", "groups": [], "hashTag": null, "medias": {}, @@ -1705,10 +1582,9 @@ "customFields": {} }, { - "id": 123, + "id": "144193", "name": "Звездин Владимир (8, Челябинск)", "shortName": "Звездин Владимир (8, Челябинск)", - "contestSystemId": "144193", "groups": [], "hashTag": null, "medias": {}, @@ -1718,10 +1594,9 @@ "customFields": {} }, { - "id": 124, + "id": "144194", "name": "Зедгенизова Маргарита (9, Новосибирск)", "shortName": "Зедгенизова Маргарита (9, Новосибирск)", - "contestSystemId": "144194", "groups": [], "hashTag": null, "medias": {}, @@ -1731,10 +1606,9 @@ "customFields": {} }, { - "id": 125, + "id": "144195", "name": "Зибницкий Никита (11, Челябинск)", "shortName": "Зибницкий Никита (11, Челябинск)", - "contestSystemId": "144195", "groups": [], "hashTag": null, "medias": {}, @@ -1744,10 +1618,9 @@ "customFields": {} }, { - "id": 126, + "id": "144196", "name": "Злотникова Таисия (10, Дубна)", "shortName": "Злотникова Таисия (10, Дубна)", - "contestSystemId": "144196", "groups": [], "hashTag": null, "medias": {}, @@ -1757,10 +1630,9 @@ "customFields": {} }, { - "id": 127, + "id": "144197", "name": "Зорин Михаил (11, Екатеринбург)", "shortName": "Зорин Михаил (11, Екатеринбург)", - "contestSystemId": "144197", "groups": [], "hashTag": null, "medias": {}, @@ -1770,10 +1642,9 @@ "customFields": {} }, { - "id": 128, + "id": "144198", "name": "Зотова Софья (11, Москва)", "shortName": "Зотова Софья (11, Москва)", - "contestSystemId": "144198", "groups": [], "hashTag": null, "medias": {}, @@ -1783,10 +1654,9 @@ "customFields": {} }, { - "id": 129, + "id": "144199", "name": "Зырянова Ольга (9, Челябинск)", "shortName": "Зырянова Ольга (9, Челябинск)", - "contestSystemId": "144199", "groups": [], "hashTag": null, "medias": {}, @@ -1796,10 +1666,9 @@ "customFields": {} }, { - "id": 130, + "id": "144200", "name": "Зюбин Константин (11, Томск)", "shortName": "Зюбин Константин (11, Томск)", - "contestSystemId": "144200", "groups": [], "hashTag": null, "medias": {}, @@ -1809,10 +1678,9 @@ "customFields": {} }, { - "id": 131, + "id": "144201", "name": "Ибрагимов Булат (10, Казань)", "shortName": "Ибрагимов Булат (10, Казань)", - "contestSystemId": "144201", "groups": [], "hashTag": null, "medias": {}, @@ -1822,10 +1690,9 @@ "customFields": {} }, { - "id": 132, + "id": "144202", "name": "Иванов Дмитрий (11, Ярославль)", "shortName": "Иванов Дмитрий (11, Ярославль)", - "contestSystemId": "144202", "groups": [], "hashTag": null, "medias": {}, @@ -1835,10 +1702,9 @@ "customFields": {} }, { - "id": 133, + "id": "144203", "name": "Иванов Нил (9, Москва)", "shortName": "Иванов Нил (9, Москва)", - "contestSystemId": "144203", "groups": [], "hashTag": null, "medias": {}, @@ -1848,10 +1714,9 @@ "customFields": {} }, { - "id": 134, + "id": "144204", "name": "Иванов Иво (8, Шумен)", "shortName": "Иванов Иво (8, Шумен)", - "contestSystemId": "144204", "groups": [], "hashTag": null, "medias": {}, @@ -1861,10 +1726,9 @@ "customFields": {} }, { - "id": 135, + "id": "144205", "name": "Иванова Алена (9, Ярославль )", "shortName": "Иванова Алена (9, Ярославль )", - "contestSystemId": "144205", "groups": [], "hashTag": null, "medias": {}, @@ -1874,10 +1738,9 @@ "customFields": {} }, { - "id": 136, + "id": "144206", "name": "Иголкин Прохор (10, Челябинск)", "shortName": "Иголкин Прохор (10, Челябинск)", - "contestSystemId": "144206", "groups": [], "hashTag": null, "medias": {}, @@ -1887,10 +1750,9 @@ "customFields": {} }, { - "id": 137, + "id": "144207", "name": "Ижицкий Тимофей (10, Севастополь)", "shortName": "Ижицкий Тимофей (10, Севастополь)", - "contestSystemId": "144207", "groups": [], "hashTag": null, "medias": {}, @@ -1900,10 +1762,9 @@ "customFields": {} }, { - "id": 138, + "id": "144208", "name": "Илаев Алексей (10, Москва)", "shortName": "Илаев Алексей (10, Москва)", - "contestSystemId": "144208", "groups": [], "hashTag": null, "medias": {}, @@ -1913,10 +1774,9 @@ "customFields": {} }, { - "id": 139, + "id": "144209", "name": "Ильин Артём (11, Москва)", "shortName": "Ильин Артём (11, Москва)", - "contestSystemId": "144209", "groups": [], "hashTag": null, "medias": {}, @@ -1926,10 +1786,9 @@ "customFields": {} }, { - "id": 140, + "id": "144210", "name": "Ильин Михаил (10, Москва)", "shortName": "Ильин Михаил (10, Москва)", - "contestSystemId": "144210", "groups": [], "hashTag": null, "medias": {}, @@ -1939,10 +1798,9 @@ "customFields": {} }, { - "id": 141, + "id": "144211", "name": "Казаков Иван (11, Лобня)", "shortName": "Казаков Иван (11, Лобня)", - "contestSystemId": "144211", "groups": [], "hashTag": null, "medias": {}, @@ -1952,10 +1810,9 @@ "customFields": {} }, { - "id": 142, + "id": "144212", "name": "Казанцев Евгений (9, Москва)", "shortName": "Казанцев Евгений (9, Москва)", - "contestSystemId": "144212", "groups": [], "hashTag": null, "medias": {}, @@ -1965,10 +1822,9 @@ "customFields": {} }, { - "id": 143, + "id": "144213", "name": "Казанцев Владислав (11, Тюмень)", "shortName": "Казанцев Владислав (11, Тюмень)", - "contestSystemId": "144213", "groups": [], "hashTag": null, "medias": {}, @@ -1978,10 +1834,9 @@ "customFields": {} }, { - "id": 144, + "id": "144214", "name": "Казенин Владимир (11, Великий Новгород)", "shortName": "Казенин Владимир (11, Великий Новгород)", - "contestSystemId": "144214", "groups": [], "hashTag": null, "medias": {}, @@ -1991,10 +1846,9 @@ "customFields": {} }, { - "id": 145, + "id": "144215", "name": "Калугин Дмитрий (10, Москва)", "shortName": "Калугин Дмитрий (10, Москва)", - "contestSystemId": "144215", "groups": [], "hashTag": null, "medias": {}, @@ -2004,10 +1858,9 @@ "customFields": {} }, { - "id": 146, + "id": "144216", "name": "Калугин Павел (11, Москва)", "shortName": "Калугин Павел (11, Москва)", - "contestSystemId": "144216", "groups": [], "hashTag": null, "medias": {}, @@ -2017,10 +1870,9 @@ "customFields": {} }, { - "id": 147, + "id": "144217", "name": "Калугин Алексей (11, Москва)", "shortName": "Калугин Алексей (11, Москва)", - "contestSystemId": "144217", "groups": [], "hashTag": null, "medias": {}, @@ -2030,10 +1882,9 @@ "customFields": {} }, { - "id": 148, + "id": "144218", "name": "Каримов Ренат (10, Казань )", "shortName": "Каримов Ренат (10, Казань )", - "contestSystemId": "144218", "groups": [], "hashTag": null, "medias": {}, @@ -2043,10 +1894,9 @@ "customFields": {} }, { - "id": 149, + "id": "144219", "name": "Карлов Николай (11, Долгопрудный)", "shortName": "Карлов Николай (11, Долгопрудный)", - "contestSystemId": "144219", "groups": [], "hashTag": null, "medias": {}, @@ -2056,10 +1906,9 @@ "customFields": {} }, { - "id": 150, + "id": "144220", "name": "Карнаухов Георгий (11, Казань)", "shortName": "Карнаухов Георгий (11, Казань)", - "contestSystemId": "144220", "groups": [], "hashTag": null, "medias": {}, @@ -2069,10 +1918,9 @@ "customFields": {} }, { - "id": 151, + "id": "144221", "name": "Катасонов Роман (9, Москва)", "shortName": "Катасонов Роман (9, Москва)", - "contestSystemId": "144221", "groups": [], "hashTag": null, "medias": {}, @@ -2082,10 +1930,9 @@ "customFields": {} }, { - "id": 152, + "id": "144222", "name": "Килин Андрей (11, Ижевск )", "shortName": "Килин Андрей (11, Ижевск )", - "contestSystemId": "144222", "groups": [], "hashTag": null, "medias": {}, @@ -2095,10 +1942,9 @@ "customFields": {} }, { - "id": 153, + "id": "144223", "name": "Клигунов Илья (11, г.Москва)", "shortName": "Клигунов Илья (11, г.Москва)", - "contestSystemId": "144223", "groups": [], "hashTag": null, "medias": {}, @@ -2108,10 +1954,9 @@ "customFields": {} }, { - "id": 154, + "id": "144224", "name": "Климчук Александр (11, Москва)", "shortName": "Климчук Александр (11, Москва)", - "contestSystemId": "144224", "groups": [], "hashTag": null, "medias": {}, @@ -2121,10 +1966,9 @@ "customFields": {} }, { - "id": 155, + "id": "144225", "name": "Кожевников Антон (11, Таганрог)", "shortName": "Кожевников Антон (11, Таганрог)", - "contestSystemId": "144225", "groups": [], "hashTag": null, "medias": {}, @@ -2134,10 +1978,9 @@ "customFields": {} }, { - "id": 156, + "id": "144226", "name": "Козлов Максим (11, Москва)", "shortName": "Козлов Максим (11, Москва)", - "contestSystemId": "144226", "groups": [], "hashTag": null, "medias": {}, @@ -2147,10 +1990,9 @@ "customFields": {} }, { - "id": 157, + "id": "144227", "name": "Козлов Максим (11, Москва)", "shortName": "Козлов Максим (11, Москва)", - "contestSystemId": "144227", "groups": [], "hashTag": null, "medias": {}, @@ -2160,10 +2002,9 @@ "customFields": {} }, { - "id": 158, + "id": "144228", "name": "Козлова Анастасия (10, Витебск)", "shortName": "Козлова Анастасия (10, Витебск)", - "contestSystemId": "144228", "groups": [], "hashTag": null, "medias": {}, @@ -2173,10 +2014,9 @@ "customFields": {} }, { - "id": 159, + "id": "144229", "name": "Колесников Денис (11, Рязань)", "shortName": "Колесников Денис (11, Рязань)", - "contestSystemId": "144229", "groups": [], "hashTag": null, "medias": {}, @@ -2186,10 +2026,9 @@ "customFields": {} }, { - "id": 160, + "id": "144230", "name": "Колесников Андрей (11, Москва)", "shortName": "Колесников Андрей (11, Москва)", - "contestSystemId": "144230", "groups": [], "hashTag": null, "medias": {}, @@ -2199,10 +2038,9 @@ "customFields": {} }, { - "id": 161, + "id": "144231", "name": "Колобаев Егор (11, Москва)", "shortName": "Колобаев Егор (11, Москва)", - "contestSystemId": "144231", "groups": [], "hashTag": null, "medias": {}, @@ -2212,10 +2050,9 @@ "customFields": {} }, { - "id": 162, + "id": "144232", "name": "Колоколов Александр (10, Екатеринбург)", "shortName": "Колоколов Александр (10, Екатеринбург)", - "contestSystemId": "144232", "groups": [], "hashTag": null, "medias": {}, @@ -2225,10 +2062,9 @@ "customFields": {} }, { - "id": 163, + "id": "144233", "name": "Коломиец Игорь (10, Курск)", "shortName": "Коломиец Игорь (10, Курск)", - "contestSystemId": "144233", "groups": [], "hashTag": null, "medias": {}, @@ -2238,10 +2074,9 @@ "customFields": {} }, { - "id": 164, + "id": "144234", "name": "Кондаков Илья (11, Белград)", "shortName": "Кондаков Илья (11, Белград)", - "contestSystemId": "144234", "groups": [], "hashTag": null, "medias": {}, @@ -2251,10 +2086,9 @@ "customFields": {} }, { - "id": 165, + "id": "144235", "name": "Коновалов Ярослав (9, Екатеринбург)", "shortName": "Коновалов Ярослав (9, Екатеринбург)", - "contestSystemId": "144235", "groups": [], "hashTag": null, "medias": {}, @@ -2264,10 +2098,9 @@ "customFields": {} }, { - "id": 166, + "id": "144236", "name": "Кононов Олег (10, Москва)", "shortName": "Кононов Олег (10, Москва)", - "contestSystemId": "144236", "groups": [], "hashTag": null, "medias": {}, @@ -2277,10 +2110,9 @@ "customFields": {} }, { - "id": 167, + "id": "144237", "name": "Конык Егор (11, Ноябрьск)", "shortName": "Конык Егор (11, Ноябрьск)", - "contestSystemId": "144237", "groups": [], "hashTag": null, "medias": {}, @@ -2290,10 +2122,9 @@ "customFields": {} }, { - "id": 168, + "id": "144238", "name": "Коптев Дмитрий (11, Москва)", "shortName": "Коптев Дмитрий (11, Москва)", - "contestSystemId": "144238", "groups": [], "hashTag": null, "medias": {}, @@ -2303,10 +2134,9 @@ "customFields": {} }, { - "id": 169, + "id": "144239", "name": "Копылов Сергей (11, Москва)", "shortName": "Копылов Сергей (11, Москва)", - "contestSystemId": "144239", "groups": [], "hashTag": null, "medias": {}, @@ -2316,10 +2146,9 @@ "customFields": {} }, { - "id": 170, + "id": "144240", "name": "Косов Филимон (11, Москва)", "shortName": "Косов Филимон (11, Москва)", - "contestSystemId": "144240", "groups": [], "hashTag": null, "medias": {}, @@ -2329,10 +2158,9 @@ "customFields": {} }, { - "id": 171, + "id": "144241", "name": "Костерин Антон (11, Мытищи)", "shortName": "Костерин Антон (11, Мытищи)", - "contestSystemId": "144241", "groups": [], "hashTag": null, "medias": {}, @@ -2342,10 +2170,9 @@ "customFields": {} }, { - "id": 172, + "id": "144242", "name": "Костылев Глеб (11, Челябинск)", "shortName": "Костылев Глеб (11, Челябинск)", - "contestSystemId": "144242", "groups": [], "hashTag": null, "medias": {}, @@ -2355,10 +2182,9 @@ "customFields": {} }, { - "id": 173, + "id": "144243", "name": "Кочнев Елисей (10, Екатеринбург)", "shortName": "Кочнев Елисей (10, Екатеринбург)", - "contestSystemId": "144243", "groups": [], "hashTag": null, "medias": {}, @@ -2368,10 +2194,9 @@ "customFields": {} }, { - "id": 174, + "id": "144244", "name": "Кошман Григорий (11, Мозырь)", "shortName": "Кошман Григорий (11, Мозырь)", - "contestSystemId": "144244", "groups": [], "hashTag": null, "medias": {}, @@ -2381,10 +2206,9 @@ "customFields": {} }, { - "id": 175, + "id": "144245", "name": "Кравченко Максим (7, Москва)", "shortName": "Кравченко Максим (7, Москва)", - "contestSystemId": "144245", "groups": [], "hashTag": null, "medias": {}, @@ -2394,10 +2218,9 @@ "customFields": {} }, { - "id": 176, + "id": "144246", "name": "Краснов Илья (10, Москва)", "shortName": "Краснов Илья (10, Москва)", - "contestSystemId": "144246", "groups": [], "hashTag": null, "medias": {}, @@ -2407,10 +2230,9 @@ "customFields": {} }, { - "id": 177, + "id": "144247", "name": "Крешетов Михаил (10, Челябинск)", "shortName": "Крешетов Михаил (10, Челябинск)", - "contestSystemId": "144247", "groups": [], "hashTag": null, "medias": {}, @@ -2420,10 +2242,9 @@ "customFields": {} }, { - "id": 178, + "id": "144248", "name": "Кривецкий Илья (11, Брест)", "shortName": "Кривецкий Илья (11, Брест)", - "contestSystemId": "144248", "groups": [], "hashTag": null, "medias": {}, @@ -2433,10 +2254,9 @@ "customFields": {} }, { - "id": 179, + "id": "144249", "name": "Кривов Георгий (9, Ижевск)", "shortName": "Кривов Георгий (9, Ижевск)", - "contestSystemId": "144249", "groups": [], "hashTag": null, "medias": {}, @@ -2446,10 +2266,9 @@ "customFields": {} }, { - "id": 180, + "id": "144250", "name": "Кривощеков Виктор (11, Екатеринбург)", "shortName": "Кривощеков Виктор (11, Екатеринбург)", - "contestSystemId": "144250", "groups": [], "hashTag": null, "medias": {}, @@ -2459,10 +2278,9 @@ "customFields": {} }, { - "id": 181, + "id": "144251", "name": "Кривощёков Андрей (11, Кирово-Чепецк)", "shortName": "Кривощёков Андрей (11, Кирово-Чепецк)", - "contestSystemId": "144251", "groups": [], "hashTag": null, "medias": {}, @@ -2472,10 +2290,9 @@ "customFields": {} }, { - "id": 182, + "id": "144252", "name": "Крылыков Максим (10, Москва)", "shortName": "Крылыков Максим (10, Москва)", - "contestSystemId": "144252", "groups": [], "hashTag": null, "medias": {}, @@ -2485,10 +2302,9 @@ "customFields": {} }, { - "id": 183, + "id": "144253", "name": "Кудашев Фёдор (9, Москва )", "shortName": "Кудашев Фёдор (9, Москва )", - "contestSystemId": "144253", "groups": [], "hashTag": null, "medias": {}, @@ -2498,10 +2314,9 @@ "customFields": {} }, { - "id": 184, + "id": "144254", "name": "Кудряшов Алексей (10, Санкт-Петербург)", "shortName": "Кудряшов Алексей (10, Санкт-Петербург)", - "contestSystemId": "144254", "groups": [], "hashTag": null, "medias": {}, @@ -2511,10 +2326,9 @@ "customFields": {} }, { - "id": 185, + "id": "144255", "name": "Кузиванов Андрей (10, Екатеринбург)", "shortName": "Кузиванов Андрей (10, Екатеринбург)", - "contestSystemId": "144255", "groups": [], "hashTag": null, "medias": {}, @@ -2524,10 +2338,9 @@ "customFields": {} }, { - "id": 186, + "id": "144256", "name": "Кузнецов Степан (11, Нижний Новгород)", "shortName": "Кузнецов Степан (11, Нижний Новгород)", - "contestSystemId": "144256", "groups": [], "hashTag": null, "medias": {}, @@ -2537,10 +2350,9 @@ "customFields": {} }, { - "id": 187, + "id": "144257", "name": "Кузнецов Никифор (11, Москва)", "shortName": "Кузнецов Никифор (11, Москва)", - "contestSystemId": "144257", "groups": [], "hashTag": null, "medias": {}, @@ -2550,10 +2362,9 @@ "customFields": {} }, { - "id": 188, + "id": "144258", "name": "Кузнецов Иван (8, Санкт-Петербург)", "shortName": "Кузнецов Иван (8, Санкт-Петербург)", - "contestSystemId": "144258", "groups": [], "hashTag": null, "medias": {}, @@ -2563,10 +2374,9 @@ "customFields": {} }, { - "id": 189, + "id": "144259", "name": "Кузнецова Дарья (11, Москва)", "shortName": "Кузнецова Дарья (11, Москва)", - "contestSystemId": "144259", "groups": [], "hashTag": null, "medias": {}, @@ -2576,10 +2386,9 @@ "customFields": {} }, { - "id": 190, + "id": "144260", "name": "Кузьмин Клим (10, Сибай)", "shortName": "Кузьмин Клим (10, Сибай)", - "contestSystemId": "144260", "groups": [], "hashTag": null, "medias": {}, @@ -2589,10 +2398,9 @@ "customFields": {} }, { - "id": 191, + "id": "144261", "name": "Кузьмицкий Максим (9, Молодечно)", "shortName": "Кузьмицкий Максим (9, Молодечно)", - "contestSystemId": "144261", "groups": [], "hashTag": null, "medias": {}, @@ -2602,10 +2410,9 @@ "customFields": {} }, { - "id": 192, + "id": "144262", "name": "Кулаков Андрей (9, Екатеринбург)", "shortName": "Кулаков Андрей (9, Екатеринбург)", - "contestSystemId": "144262", "groups": [], "hashTag": null, "medias": {}, @@ -2615,10 +2422,9 @@ "customFields": {} }, { - "id": 193, + "id": "144263", "name": "Кулин Егор (11, Тамбов)", "shortName": "Кулин Егор (11, Тамбов)", - "contestSystemId": "144263", "groups": [], "hashTag": null, "medias": {}, @@ -2628,10 +2434,9 @@ "customFields": {} }, { - "id": 194, + "id": "144264", "name": "Кулинич Матвей (11, Брест)", "shortName": "Кулинич Матвей (11, Брест)", - "contestSystemId": "144264", "groups": [], "hashTag": null, "medias": {}, @@ -2641,10 +2446,9 @@ "customFields": {} }, { - "id": 195, + "id": "144265", "name": "Кунакбаев Родион (10, Москва)", "shortName": "Кунакбаев Родион (10, Москва)", - "contestSystemId": "144265", "groups": [], "hashTag": null, "medias": {}, @@ -2654,10 +2458,9 @@ "customFields": {} }, { - "id": 196, + "id": "144266", "name": "Куслин Глеб (9, Саранск)", "shortName": "Куслин Глеб (9, Саранск)", - "contestSystemId": "144266", "groups": [], "hashTag": null, "medias": {}, @@ -2667,10 +2470,9 @@ "customFields": {} }, { - "id": 197, + "id": "144267", "name": "Кутузов Артём (11, Екатеринбург)", "shortName": "Кутузов Артём (11, Екатеринбург)", - "contestSystemId": "144267", "groups": [], "hashTag": null, "medias": {}, @@ -2680,10 +2482,9 @@ "customFields": {} }, { - "id": 198, + "id": "144268", "name": "Кутьенкова Мария (11, Шафраново)", "shortName": "Кутьенкова Мария (11, Шафраново)", - "contestSystemId": "144268", "groups": [], "hashTag": null, "medias": {}, @@ -2693,10 +2494,9 @@ "customFields": {} }, { - "id": 199, + "id": "144269", "name": "Кухаренко Семён (10, Москва)", "shortName": "Кухаренко Семён (10, Москва)", - "contestSystemId": "144269", "groups": [], "hashTag": null, "medias": {}, @@ -2706,10 +2506,9 @@ "customFields": {} }, { - "id": 200, + "id": "144270", "name": "Лазо Арсений (11, Санкт-Петербург)", "shortName": "Лазо Арсений (11, Санкт-Петербург)", - "contestSystemId": "144270", "groups": [], "hashTag": null, "medias": {}, @@ -2719,10 +2518,9 @@ "customFields": {} }, { - "id": 201, + "id": "144271", "name": "Ларин Иван (11, Москва)", "shortName": "Ларин Иван (11, Москва)", - "contestSystemId": "144271", "groups": [], "hashTag": null, "medias": {}, @@ -2732,10 +2530,9 @@ "customFields": {} }, { - "id": 202, + "id": "144272", "name": "Ларин Илья (11, Москва)", "shortName": "Ларин Илья (11, Москва)", - "contestSystemId": "144272", "groups": [], "hashTag": null, "medias": {}, @@ -2745,10 +2542,9 @@ "customFields": {} }, { - "id": 203, + "id": "144273", "name": "Ларин Сергей (11, Екатеринбург)", "shortName": "Ларин Сергей (11, Екатеринбург)", - "contestSystemId": "144273", "groups": [], "hashTag": null, "medias": {}, @@ -2758,10 +2554,9 @@ "customFields": {} }, { - "id": 204, + "id": "144274", "name": "Ларичев Прохор (11, Москва)", "shortName": "Ларичев Прохор (11, Москва)", - "contestSystemId": "144274", "groups": [], "hashTag": null, "medias": {}, @@ -2771,10 +2566,9 @@ "customFields": {} }, { - "id": 205, + "id": "144275", "name": "Левина Мария (9, Челябинск)", "shortName": "Левина Мария (9, Челябинск)", - "contestSystemId": "144275", "groups": [], "hashTag": null, "medias": {}, @@ -2784,10 +2578,9 @@ "customFields": {} }, { - "id": 206, + "id": "144276", "name": "Леденёв Михаил (10, Волжский)", "shortName": "Леденёв Михаил (10, Волжский)", - "contestSystemId": "144276", "groups": [], "hashTag": null, "medias": {}, @@ -2797,10 +2590,9 @@ "customFields": {} }, { - "id": 207, + "id": "144277", "name": "Лежнев Владимир (11, поселок сан. им. Герцена)", "shortName": "Лежнев Владимир (11, поселок сан. им. Герцена)", - "contestSystemId": "144277", "groups": [], "hashTag": null, "medias": {}, @@ -2810,10 +2602,9 @@ "customFields": {} }, { - "id": 208, + "id": "144278", "name": "Лескова Анастасия (10, Екатеринбург)", "shortName": "Лескова Анастасия (10, Екатеринбург)", - "contestSystemId": "144278", "groups": [], "hashTag": null, "medias": {}, @@ -2823,10 +2614,9 @@ "customFields": {} }, { - "id": 209, + "id": "144279", "name": "Лесник Георгий (11, г. Санкт-Петербург)", "shortName": "Лесник Георгий (11, г. Санкт-Петербург)", - "contestSystemId": "144279", "groups": [], "hashTag": null, "medias": {}, @@ -2836,10 +2626,9 @@ "customFields": {} }, { - "id": 210, + "id": "144280", "name": "Линьков Иван (11, Москва)", "shortName": "Линьков Иван (11, Москва)", - "contestSystemId": "144280", "groups": [], "hashTag": null, "medias": {}, @@ -2849,10 +2638,9 @@ "customFields": {} }, { - "id": 211, + "id": "144281", "name": "Лобанов Серафим (9, Москва)", "shortName": "Лобанов Серафим (9, Москва)", - "contestSystemId": "144281", "groups": [], "hashTag": null, "medias": {}, @@ -2862,10 +2650,9 @@ "customFields": {} }, { - "id": 212, + "id": "144282", "name": "Логинов Илья (11, Новосибирск)", "shortName": "Логинов Илья (11, Новосибирск)", - "contestSystemId": "144282", "groups": [], "hashTag": null, "medias": {}, @@ -2875,10 +2662,9 @@ "customFields": {} }, { - "id": 213, + "id": "144283", "name": "Ломакин Максим (10, Москва)", "shortName": "Ломакин Максим (10, Москва)", - "contestSystemId": "144283", "groups": [], "hashTag": null, "medias": {}, @@ -2888,10 +2674,9 @@ "customFields": {} }, { - "id": 214, + "id": "144284", "name": "Ломаченко Олег (11, Москва)", "shortName": "Ломаченко Олег (11, Москва)", - "contestSystemId": "144284", "groups": [], "hashTag": null, "medias": {}, @@ -2901,10 +2686,9 @@ "customFields": {} }, { - "id": 215, + "id": "144285", "name": "Лосев Пётр (9, Видное)", "shortName": "Лосев Пётр (9, Видное)", - "contestSystemId": "144285", "groups": [], "hashTag": null, "medias": {}, @@ -2914,10 +2698,9 @@ "customFields": {} }, { - "id": 216, + "id": "144286", "name": "Лузгов Тимур (10, Тетюши)", "shortName": "Лузгов Тимур (10, Тетюши)", - "contestSystemId": "144286", "groups": [], "hashTag": null, "medias": {}, @@ -2927,10 +2710,9 @@ "customFields": {} }, { - "id": 217, + "id": "144287", "name": "Лупильцев Георгий (11, Москва)", "shortName": "Лупильцев Георгий (11, Москва)", - "contestSystemId": "144287", "groups": [], "hashTag": null, "medias": {}, @@ -2940,10 +2722,9 @@ "customFields": {} }, { - "id": 218, + "id": "144288", "name": "Лупов Иван (11, Варна)", "shortName": "Лупов Иван (11, Варна)", - "contestSystemId": "144288", "groups": [], "hashTag": null, "medias": {}, @@ -2953,10 +2734,9 @@ "customFields": {} }, { - "id": 219, + "id": "144289", "name": "Любин Михаил (10, Москва)", "shortName": "Любин Михаил (10, Москва)", - "contestSystemId": "144289", "groups": [], "hashTag": null, "medias": {}, @@ -2966,10 +2746,9 @@ "customFields": {} }, { - "id": 220, + "id": "144290", "name": "Люцко Матфей (9, Москва)", "shortName": "Люцко Матфей (9, Москва)", - "contestSystemId": "144290", "groups": [], "hashTag": null, "medias": {}, @@ -2979,10 +2758,9 @@ "customFields": {} }, { - "id": 221, + "id": "144291", "name": "Лямзин Александр (9, г Москва )", "shortName": "Лямзин Александр (9, г Москва )", - "contestSystemId": "144291", "groups": [], "hashTag": null, "medias": {}, @@ -2992,10 +2770,9 @@ "customFields": {} }, { - "id": 222, + "id": "144292", "name": "Ляхович Яков (10, Могилев)", "shortName": "Ляхович Яков (10, Могилев)", - "contestSystemId": "144292", "groups": [], "hashTag": null, "medias": {}, @@ -3005,10 +2782,9 @@ "customFields": {} }, { - "id": 223, + "id": "144293", "name": "Маглыш Кирилл (10, Москва)", "shortName": "Маглыш Кирилл (10, Москва)", - "contestSystemId": "144293", "groups": [], "hashTag": null, "medias": {}, @@ -3018,10 +2794,9 @@ "customFields": {} }, { - "id": 224, + "id": "144294", "name": "Мазитов Тимур (10, Казань)", "shortName": "Мазитов Тимур (10, Казань)", - "contestSystemId": "144294", "groups": [], "hashTag": null, "medias": {}, @@ -3031,10 +2806,9 @@ "customFields": {} }, { - "id": 225, + "id": "144295", "name": "Макаров Матвей (8, Нижний Новгород)", "shortName": "Макаров Матвей (8, Нижний Новгород)", - "contestSystemId": "144295", "groups": [], "hashTag": null, "medias": {}, @@ -3044,10 +2818,9 @@ "customFields": {} }, { - "id": 226, + "id": "144296", "name": "Макаров Михаил (8, Ижевск)", "shortName": "Макаров Михаил (8, Ижевск)", - "contestSystemId": "144296", "groups": [], "hashTag": null, "medias": {}, @@ -3057,10 +2830,9 @@ "customFields": {} }, { - "id": 227, + "id": "144297", "name": "Макнил Александр (9, Москва)", "shortName": "Макнил Александр (9, Москва)", - "contestSystemId": "144297", "groups": [], "hashTag": null, "medias": {}, @@ -3070,10 +2842,9 @@ "customFields": {} }, { - "id": 228, + "id": "144298", "name": "Максимов Александр (11, Долгопрудный)", "shortName": "Максимов Александр (11, Долгопрудный)", - "contestSystemId": "144298", "groups": [], "hashTag": null, "medias": {}, @@ -3083,10 +2854,9 @@ "customFields": {} }, { - "id": 229, + "id": "144299", "name": "Маланьин Антон (11, Москва)", "shortName": "Маланьин Антон (11, Москва)", - "contestSystemId": "144299", "groups": [], "hashTag": null, "medias": {}, @@ -3096,10 +2866,9 @@ "customFields": {} }, { - "id": 230, + "id": "144300", "name": "Малин Яков (11, Екатеринбург )", "shortName": "Малин Яков (11, Екатеринбург )", - "contestSystemId": "144300", "groups": [], "hashTag": null, "medias": {}, @@ -3109,10 +2878,9 @@ "customFields": {} }, { - "id": 231, + "id": "144301", "name": "Малиновский Илья (11, Ивье)", "shortName": "Малиновский Илья (11, Ивье)", - "contestSystemId": "144301", "groups": [], "hashTag": null, "medias": {}, @@ -3122,10 +2890,9 @@ "customFields": {} }, { - "id": 232, + "id": "144302", "name": "Малов Владимир (11, Казань)", "shortName": "Малов Владимир (11, Казань)", - "contestSystemId": "144302", "groups": [], "hashTag": null, "medias": {}, @@ -3135,10 +2902,9 @@ "customFields": {} }, { - "id": 233, + "id": "144303", "name": "Маляровский Степан (11, Москва)", "shortName": "Маляровский Степан (11, Москва)", - "contestSystemId": "144303", "groups": [], "hashTag": null, "medias": {}, @@ -3148,10 +2914,9 @@ "customFields": {} }, { - "id": 234, + "id": "144304", "name": "Мансурова Алина (11, Долгопрудный )", "shortName": "Мансурова Алина (11, Долгопрудный )", - "contestSystemId": "144304", "groups": [], "hashTag": null, "medias": {}, @@ -3161,10 +2926,9 @@ "customFields": {} }, { - "id": 235, + "id": "144305", "name": "Маренков Алексей (11, Москва)", "shortName": "Маренков Алексей (11, Москва)", - "contestSystemId": "144305", "groups": [], "hashTag": null, "medias": {}, @@ -3174,10 +2938,9 @@ "customFields": {} }, { - "id": 236, + "id": "144306", "name": "Маркина Анна (11, Минск)", "shortName": "Маркина Анна (11, Минск)", - "contestSystemId": "144306", "groups": [], "hashTag": null, "medias": {}, @@ -3187,10 +2950,9 @@ "customFields": {} }, { - "id": 237, + "id": "144307", "name": "Мартынов Антон (8, Санкт-Петербург)", "shortName": "Мартынов Антон (8, Санкт-Петербург)", - "contestSystemId": "144307", "groups": [], "hashTag": null, "medias": {}, @@ -3200,10 +2962,9 @@ "customFields": {} }, { - "id": 238, + "id": "144308", "name": "Матюпатенко Максим (10, Москва)", "shortName": "Матюпатенко Максим (10, Москва)", - "contestSystemId": "144308", "groups": [], "hashTag": null, "medias": {}, @@ -3213,10 +2974,9 @@ "customFields": {} }, { - "id": 239, + "id": "144309", "name": "Махлин Мирон (11, Москва)", "shortName": "Махлин Мирон (11, Москва)", - "contestSystemId": "144309", "groups": [], "hashTag": null, "medias": {}, @@ -3226,10 +2986,9 @@ "customFields": {} }, { - "id": 240, + "id": "144310", "name": "Медведев Михаил (10, Москва)", "shortName": "Медведев Михаил (10, Москва)", - "contestSystemId": "144310", "groups": [], "hashTag": null, "medias": {}, @@ -3239,10 +2998,9 @@ "customFields": {} }, { - "id": 241, + "id": "144311", "name": "Меленцов Дмитрий (11, Екатеринбург)", "shortName": "Меленцов Дмитрий (11, Екатеринбург)", - "contestSystemId": "144311", "groups": [], "hashTag": null, "medias": {}, @@ -3252,10 +3010,9 @@ "customFields": {} }, { - "id": 242, + "id": "144312", "name": "Меленяко Кирилл (11, Минск)", "shortName": "Меленяко Кирилл (11, Минск)", - "contestSystemId": "144312", "groups": [], "hashTag": null, "medias": {}, @@ -3265,10 +3022,9 @@ "customFields": {} }, { - "id": 243, + "id": "144313", "name": "Меликов Марат (11, Мытищи)", "shortName": "Меликов Марат (11, Мытищи)", - "contestSystemId": "144313", "groups": [], "hashTag": null, "medias": {}, @@ -3278,10 +3034,9 @@ "customFields": {} }, { - "id": 244, + "id": "144314", "name": "Миатов Александр (11, Жуковский )", "shortName": "Миатов Александр (11, Жуковский )", - "contestSystemId": "144314", "groups": [], "hashTag": null, "medias": {}, @@ -3291,10 +3046,9 @@ "customFields": {} }, { - "id": 245, + "id": "144315", "name": "Мингазов Артем (10, Уфа)", "shortName": "Мингазов Артем (10, Уфа)", - "contestSystemId": "144315", "groups": [], "hashTag": null, "medias": {}, @@ -3304,10 +3058,9 @@ "customFields": {} }, { - "id": 246, + "id": "144316", "name": "Мисюкевич Илья (11, Лида)", "shortName": "Мисюкевич Илья (11, Лида)", - "contestSystemId": "144316", "groups": [], "hashTag": null, "medias": {}, @@ -3317,10 +3070,9 @@ "customFields": {} }, { - "id": 247, + "id": "144317", "name": "Михайлов Андрей (11, Ярославль)", "shortName": "Михайлов Андрей (11, Ярославль)", - "contestSystemId": "144317", "groups": [], "hashTag": null, "medias": {}, @@ -3330,10 +3082,9 @@ "customFields": {} }, { - "id": 248, + "id": "144318", "name": "Михайлов Леонид (11, Санкт-Петербург)", "shortName": "Михайлов Леонид (11, Санкт-Петербург)", - "contestSystemId": "144318", "groups": [], "hashTag": null, "medias": {}, @@ -3343,10 +3094,9 @@ "customFields": {} }, { - "id": 249, + "id": "144319", "name": "Михов Борис (10, София)", "shortName": "Михов Борис (10, София)", - "contestSystemId": "144319", "groups": [], "hashTag": null, "medias": {}, @@ -3356,10 +3106,9 @@ "customFields": {} }, { - "id": 250, + "id": "144320", "name": "Михов Петър (10, София)", "shortName": "Михов Петър (10, София)", - "contestSystemId": "144320", "groups": [], "hashTag": null, "medias": {}, @@ -3369,10 +3118,9 @@ "customFields": {} }, { - "id": 251, + "id": "144321", "name": "Мордакин Антон (10, Москва)", "shortName": "Мордакин Антон (10, Москва)", - "contestSystemId": "144321", "groups": [], "hashTag": null, "medias": {}, @@ -3382,10 +3130,9 @@ "customFields": {} }, { - "id": 252, + "id": "144322", "name": "Морев Георгий (11, Москва)", "shortName": "Морев Георгий (11, Москва)", - "contestSystemId": "144322", "groups": [], "hashTag": null, "medias": {}, @@ -3395,10 +3142,9 @@ "customFields": {} }, { - "id": 253, + "id": "144323", "name": "Мороз Игорь (11, Минск)", "shortName": "Мороз Игорь (11, Минск)", - "contestSystemId": "144323", "groups": [], "hashTag": null, "medias": {}, @@ -3408,10 +3154,9 @@ "customFields": {} }, { - "id": 254, + "id": "144324", "name": "Морозов Владимир (11, Минск)", "shortName": "Морозов Владимир (11, Минск)", - "contestSystemId": "144324", "groups": [], "hashTag": null, "medias": {}, @@ -3421,10 +3166,9 @@ "customFields": {} }, { - "id": 255, + "id": "144325", "name": "Мотыгуллин Карим (10, Казань)", "shortName": "Мотыгуллин Карим (10, Казань)", - "contestSystemId": "144325", "groups": [], "hashTag": null, "medias": {}, @@ -3434,10 +3178,9 @@ "customFields": {} }, { - "id": 256, + "id": "144326", "name": "Назаров Аркадий (11, Ставрополь)", "shortName": "Назаров Аркадий (11, Ставрополь)", - "contestSystemId": "144326", "groups": [], "hashTag": null, "medias": {}, @@ -3447,10 +3190,9 @@ "customFields": {} }, { - "id": 257, + "id": "144327", "name": "Наседкин Дмитрий (10, Кемерово)", "shortName": "Наседкин Дмитрий (10, Кемерово)", - "contestSystemId": "144327", "groups": [], "hashTag": null, "medias": {}, @@ -3460,10 +3202,9 @@ "customFields": {} }, { - "id": 258, + "id": "144328", "name": "Насретдинов Амир (10, Москва)", "shortName": "Насретдинов Амир (10, Москва)", - "contestSystemId": "144328", "groups": [], "hashTag": null, "medias": {}, @@ -3473,10 +3214,9 @@ "customFields": {} }, { - "id": 259, + "id": "144329", "name": "Неганов Дмитрий (11, Пермь)", "shortName": "Неганов Дмитрий (11, Пермь)", - "contestSystemId": "144329", "groups": [], "hashTag": null, "medias": {}, @@ -3486,10 +3226,9 @@ "customFields": {} }, { - "id": 260, + "id": "144330", "name": "Некрасов Станислав (11, Воронеж)", "shortName": "Некрасов Станислав (11, Воронеж)", - "contestSystemId": "144330", "groups": [], "hashTag": null, "medias": {}, @@ -3499,10 +3238,9 @@ "customFields": {} }, { - "id": 261, + "id": "144331", "name": "Нестерук Владислав (11, Брест)", "shortName": "Нестерук Владислав (11, Брест)", - "contestSystemId": "144331", "groups": [], "hashTag": null, "medias": {}, @@ -3512,10 +3250,9 @@ "customFields": {} }, { - "id": 262, + "id": "144332", "name": "Низамутдинов Азат (10, Уфа)", "shortName": "Низамутдинов Азат (10, Уфа)", - "contestSystemId": "144332", "groups": [], "hashTag": null, "medias": {}, @@ -3525,10 +3262,9 @@ "customFields": {} }, { - "id": 263, + "id": "144333", "name": "Никифоров Антон (10, Москва)", "shortName": "Никифоров Антон (10, Москва)", - "contestSystemId": "144333", "groups": [], "hashTag": null, "medias": {}, @@ -3538,10 +3274,9 @@ "customFields": {} }, { - "id": 264, + "id": "144334", "name": "Никифоров Дмитрий (11, Зеленоград)", "shortName": "Никифоров Дмитрий (11, Зеленоград)", - "contestSystemId": "144334", "groups": [], "hashTag": null, "medias": {}, @@ -3551,10 +3286,9 @@ "customFields": {} }, { - "id": 265, + "id": "144335", "name": "Никурадзе Дмитрий (10, Тула)", "shortName": "Никурадзе Дмитрий (10, Тула)", - "contestSystemId": "144335", "groups": [], "hashTag": null, "medias": {}, @@ -3564,10 +3298,9 @@ "customFields": {} }, { - "id": 266, + "id": "144336", "name": "Новгородцев Григорий (10, Москва)", "shortName": "Новгородцев Григорий (10, Москва)", - "contestSystemId": "144336", "groups": [], "hashTag": null, "medias": {}, @@ -3577,10 +3310,9 @@ "customFields": {} }, { - "id": 267, + "id": "144337", "name": "Ноздрин Ярослав (10, с. Тоцкое-Второе)", "shortName": "Ноздрин Ярослав (10, с. Тоцкое-Второе)", - "contestSystemId": "144337", "groups": [], "hashTag": null, "medias": {}, @@ -3590,10 +3322,9 @@ "customFields": {} }, { - "id": 268, + "id": "144338", "name": "Ныйкин Антон (10, Москва)", "shortName": "Ныйкин Антон (10, Москва)", - "contestSystemId": "144338", "groups": [], "hashTag": null, "medias": {}, @@ -3603,10 +3334,9 @@ "customFields": {} }, { - "id": 269, + "id": "144339", "name": "Обухов Георгий (11, г Санкт-Петербург)", "shortName": "Обухов Георгий (11, г Санкт-Петербург)", - "contestSystemId": "144339", "groups": [], "hashTag": null, "medias": {}, @@ -3616,10 +3346,9 @@ "customFields": {} }, { - "id": 270, + "id": "144340", "name": "Овчаров Иван (10, Пермь)", "shortName": "Овчаров Иван (10, Пермь)", - "contestSystemId": "144340", "groups": [], "hashTag": null, "medias": {}, @@ -3629,10 +3358,9 @@ "customFields": {} }, { - "id": 271, + "id": "144341", "name": "Оголихин Артемий (10, Минск)", "shortName": "Оголихин Артемий (10, Минск)", - "contestSystemId": "144341", "groups": [], "hashTag": null, "medias": {}, @@ -3642,10 +3370,9 @@ "customFields": {} }, { - "id": 272, + "id": "144342", "name": "Орехов Савва (11, Москва)", "shortName": "Орехов Савва (11, Москва)", - "contestSystemId": "144342", "groups": [], "hashTag": null, "medias": {}, @@ -3655,10 +3382,9 @@ "customFields": {} }, { - "id": 273, + "id": "144343", "name": "Осипенко Иван (10, Москва)", "shortName": "Осипенко Иван (10, Москва)", - "contestSystemId": "144343", "groups": [], "hashTag": null, "medias": {}, @@ -3668,10 +3394,9 @@ "customFields": {} }, { - "id": 274, + "id": "144344", "name": "Останин Андрей (11, Долгопрудный)", "shortName": "Останин Андрей (11, Долгопрудный)", - "contestSystemId": "144344", "groups": [], "hashTag": null, "medias": {}, @@ -3681,10 +3406,9 @@ "customFields": {} }, { - "id": 275, + "id": "144345", "name": "Павлов Андрей (10, Оренбург)", "shortName": "Павлов Андрей (10, Оренбург)", - "contestSystemId": "144345", "groups": [], "hashTag": null, "medias": {}, @@ -3694,10 +3418,9 @@ "customFields": {} }, { - "id": 276, + "id": "144346", "name": "Падалко Александр (9, Челябинск)", "shortName": "Падалко Александр (9, Челябинск)", - "contestSystemId": "144346", "groups": [], "hashTag": null, "medias": {}, @@ -3707,10 +3430,9 @@ "customFields": {} }, { - "id": 277, + "id": "144347", "name": "Пакканен Мария (11, Казань)", "shortName": "Пакканен Мария (11, Казань)", - "contestSystemId": "144347", "groups": [], "hashTag": null, "medias": {}, @@ -3720,10 +3442,9 @@ "customFields": {} }, { - "id": 278, + "id": "144348", "name": "Панов Богдан (10, Новосибирск)", "shortName": "Панов Богдан (10, Новосибирск)", - "contestSystemId": "144348", "groups": [], "hashTag": null, "medias": {}, @@ -3733,10 +3454,9 @@ "customFields": {} }, { - "id": 279, + "id": "144349", "name": "Паркина Ульяна (11, Раменское)", "shortName": "Паркина Ульяна (11, Раменское)", - "contestSystemId": "144349", "groups": [], "hashTag": null, "medias": {}, @@ -3746,10 +3466,9 @@ "customFields": {} }, { - "id": 280, + "id": "144350", "name": "Парнюков Даниил (11, Санкт-Петербург)", "shortName": "Парнюков Даниил (11, Санкт-Петербург)", - "contestSystemId": "144350", "groups": [], "hashTag": null, "medias": {}, @@ -3759,10 +3478,9 @@ "customFields": {} }, { - "id": 281, + "id": "144351", "name": "Пархаев Андрей (10, Москва)", "shortName": "Пархаев Андрей (10, Москва)", - "contestSystemId": "144351", "groups": [], "hashTag": null, "medias": {}, @@ -3772,10 +3490,9 @@ "customFields": {} }, { - "id": 282, + "id": "144352", "name": "Паршин Данил (11, Екатеринбург)", "shortName": "Паршин Данил (11, Екатеринбург)", - "contestSystemId": "144352", "groups": [], "hashTag": null, "medias": {}, @@ -3785,10 +3502,9 @@ "customFields": {} }, { - "id": 283, + "id": "144353", "name": "Пахомов Евгений (11, Москва)", "shortName": "Пахомов Евгений (11, Москва)", - "contestSystemId": "144353", "groups": [], "hashTag": null, "medias": {}, @@ -3798,10 +3514,9 @@ "customFields": {} }, { - "id": 284, + "id": "144354", "name": "Первутинский Роман (11, Москва)", "shortName": "Первутинский Роман (11, Москва)", - "contestSystemId": "144354", "groups": [], "hashTag": null, "medias": {}, @@ -3811,10 +3526,9 @@ "customFields": {} }, { - "id": 285, + "id": "144355", "name": "Перелайко Андрей (11, д. Житомля)", "shortName": "Перелайко Андрей (11, д. Житомля)", - "contestSystemId": "144355", "groups": [], "hashTag": null, "medias": {}, @@ -3824,10 +3538,9 @@ "customFields": {} }, { - "id": 286, + "id": "144356", "name": "Перепечаев Виктор (10, Москва)", "shortName": "Перепечаев Виктор (10, Москва)", - "contestSystemId": "144356", "groups": [], "hashTag": null, "medias": {}, @@ -3837,10 +3550,9 @@ "customFields": {} }, { - "id": 287, + "id": "144357", "name": "Периков Михаил (11, Санкт-Петербург)", "shortName": "Периков Михаил (11, Санкт-Петербург)", - "contestSystemId": "144357", "groups": [], "hashTag": null, "medias": {}, @@ -3850,10 +3562,9 @@ "customFields": {} }, { - "id": 288, + "id": "144358", "name": "Перри Егор (9, Молодечно)", "shortName": "Перри Егор (9, Молодечно)", - "contestSystemId": "144358", "groups": [], "hashTag": null, "medias": {}, @@ -3863,10 +3574,9 @@ "customFields": {} }, { - "id": 289, + "id": "144359", "name": "Петренко Софья (11, Екатеринбург)", "shortName": "Петренко Софья (11, Екатеринбург)", - "contestSystemId": "144359", "groups": [], "hashTag": null, "medias": {}, @@ -3876,10 +3586,9 @@ "customFields": {} }, { - "id": 290, + "id": "144360", "name": "Петровская Алёна (10, Москва)", "shortName": "Петровская Алёна (10, Москва)", - "contestSystemId": "144360", "groups": [], "hashTag": null, "medias": {}, @@ -3889,10 +3598,9 @@ "customFields": {} }, { - "id": 291, + "id": "144361", "name": "Писарев Егор (10, Москва)", "shortName": "Писарев Егор (10, Москва)", - "contestSystemId": "144361", "groups": [], "hashTag": null, "medias": {}, @@ -3902,10 +3610,9 @@ "customFields": {} }, { - "id": 292, + "id": "144362", "name": "Пискарев Иван (10, Москва)", "shortName": "Пискарев Иван (10, Москва)", - "contestSystemId": "144362", "groups": [], "hashTag": null, "medias": {}, @@ -3915,10 +3622,9 @@ "customFields": {} }, { - "id": 293, + "id": "144363", "name": "Плюснин Антон (11, Новосибирск)", "shortName": "Плюснин Антон (11, Новосибирск)", - "contestSystemId": "144363", "groups": [], "hashTag": null, "medias": {}, @@ -3928,10 +3634,9 @@ "customFields": {} }, { - "id": 294, + "id": "144364", "name": "Подворный Иван (11, Москва)", "shortName": "Подворный Иван (11, Москва)", - "contestSystemId": "144364", "groups": [], "hashTag": null, "medias": {}, @@ -3941,10 +3646,9 @@ "customFields": {} }, { - "id": 295, + "id": "144365", "name": "Поливин Никита (11, Казань)", "shortName": "Поливин Никита (11, Казань)", - "contestSystemId": "144365", "groups": [], "hashTag": null, "medias": {}, @@ -3954,10 +3658,9 @@ "customFields": {} }, { - "id": 296, + "id": "144366", "name": "Полынь Станислав (11, Мозырь)", "shortName": "Полынь Станислав (11, Мозырь)", - "contestSystemId": "144366", "groups": [], "hashTag": null, "medias": {}, @@ -3967,10 +3670,9 @@ "customFields": {} }, { - "id": 297, + "id": "144367", "name": "Понкратов Александр (11, Москва)", "shortName": "Понкратов Александр (11, Москва)", - "contestSystemId": "144367", "groups": [], "hashTag": null, "medias": {}, @@ -3980,10 +3682,9 @@ "customFields": {} }, { - "id": 298, + "id": "144368", "name": "Пономарев Егор (11, Москва)", "shortName": "Пономарев Егор (11, Москва)", - "contestSystemId": "144368", "groups": [], "hashTag": null, "medias": {}, @@ -3993,10 +3694,9 @@ "customFields": {} }, { - "id": 299, + "id": "144369", "name": "Пономарев Иван (10, Екатеринбург)", "shortName": "Пономарев Иван (10, Екатеринбург)", - "contestSystemId": "144369", "groups": [], "hashTag": null, "medias": {}, @@ -4006,10 +3706,9 @@ "customFields": {} }, { - "id": 300, + "id": "144370", "name": "Порхунов Арсений (10, Москва)", "shortName": "Порхунов Арсений (10, Москва)", - "contestSystemId": "144370", "groups": [], "hashTag": null, "medias": {}, @@ -4019,10 +3718,9 @@ "customFields": {} }, { - "id": 301, + "id": "144371", "name": "Поярков Андрей (10, Москва)", "shortName": "Поярков Андрей (10, Москва)", - "contestSystemId": "144371", "groups": [], "hashTag": null, "medias": {}, @@ -4032,10 +3730,9 @@ "customFields": {} }, { - "id": 302, + "id": "144372", "name": "Приводнов Марк (7, Новосибирск )", "shortName": "Приводнов Марк (7, Новосибирск )", - "contestSystemId": "144372", "groups": [], "hashTag": null, "medias": {}, @@ -4045,10 +3742,9 @@ "customFields": {} }, { - "id": 303, + "id": "144373", "name": "Проскуряков Роман (11, Санкт-Петербург)", "shortName": "Проскуряков Роман (11, Санкт-Петербург)", - "contestSystemId": "144373", "groups": [], "hashTag": null, "medias": {}, @@ -4058,10 +3754,9 @@ "customFields": {} }, { - "id": 304, + "id": "144374", "name": "Процкий Андрей (9, Гомель)", "shortName": "Процкий Андрей (9, Гомель)", - "contestSystemId": "144374", "groups": [], "hashTag": null, "medias": {}, @@ -4071,10 +3766,9 @@ "customFields": {} }, { - "id": 305, + "id": "144375", "name": "Прыгунов Ярослав (10, Москва)", "shortName": "Прыгунов Ярослав (10, Москва)", - "contestSystemId": "144375", "groups": [], "hashTag": null, "medias": {}, @@ -4084,10 +3778,9 @@ "customFields": {} }, { - "id": 306, + "id": "144376", "name": "Равнушкин Тимофей (9, Москва)", "shortName": "Равнушкин Тимофей (9, Москва)", - "contestSystemId": "144376", "groups": [], "hashTag": null, "medias": {}, @@ -4097,10 +3790,9 @@ "customFields": {} }, { - "id": 307, + "id": "144377", "name": "Рагулин Владимир (11, Москва)", "shortName": "Рагулин Владимир (11, Москва)", - "contestSystemId": "144377", "groups": [], "hashTag": null, "medias": {}, @@ -4110,10 +3802,9 @@ "customFields": {} }, { - "id": 308, + "id": "144378", "name": "Радошко Альберт (11, Минск)", "shortName": "Радошко Альберт (11, Минск)", - "contestSystemId": "144378", "groups": [], "hashTag": null, "medias": {}, @@ -4123,10 +3814,9 @@ "customFields": {} }, { - "id": 309, + "id": "144379", "name": "Разухин Александр (11, Чебоксары)", "shortName": "Разухин Александр (11, Чебоксары)", - "contestSystemId": "144379", "groups": [], "hashTag": null, "medias": {}, @@ -4136,10 +3826,9 @@ "customFields": {} }, { - "id": 310, + "id": "144380", "name": "Рашид Серкан (8, Шумен)", "shortName": "Рашид Серкан (8, Шумен)", - "contestSystemId": "144380", "groups": [], "hashTag": null, "medias": {}, @@ -4149,10 +3838,9 @@ "customFields": {} }, { - "id": 311, + "id": "144381", "name": "Редько Григорий (10, Москва)", "shortName": "Редько Григорий (10, Москва)", - "contestSystemId": "144381", "groups": [], "hashTag": null, "medias": {}, @@ -4162,10 +3850,9 @@ "customFields": {} }, { - "id": 312, + "id": "144382", "name": "Резниченко Александр (11, Новоуральск)", "shortName": "Резниченко Александр (11, Новоуральск)", - "contestSystemId": "144382", "groups": [], "hashTag": null, "medias": {}, @@ -4175,10 +3862,9 @@ "customFields": {} }, { - "id": 313, + "id": "144383", "name": "Ремпель Дмитрий (11, Санкт-Петербург)", "shortName": "Ремпель Дмитрий (11, Санкт-Петербург)", - "contestSystemId": "144383", "groups": [], "hashTag": null, "medias": {}, @@ -4188,10 +3874,9 @@ "customFields": {} }, { - "id": 314, + "id": "144384", "name": "Ржевин Андрей (10, Липецк)", "shortName": "Ржевин Андрей (10, Липецк)", - "contestSystemId": "144384", "groups": [], "hashTag": null, "medias": {}, @@ -4201,10 +3886,9 @@ "customFields": {} }, { - "id": 315, + "id": "144385", "name": "Родионов Валерий (11, Казань)", "shortName": "Родионов Валерий (11, Казань)", - "contestSystemId": "144385", "groups": [], "hashTag": null, "medias": {}, @@ -4214,10 +3898,9 @@ "customFields": {} }, { - "id": 316, + "id": "144386", "name": "Романова Анна (8, Москва)", "shortName": "Романова Анна (8, Москва)", - "contestSystemId": "144386", "groups": [], "hashTag": null, "medias": {}, @@ -4227,10 +3910,9 @@ "customFields": {} }, { - "id": 317, + "id": "144387", "name": "Рубиш Артур (10, Витебск)", "shortName": "Рубиш Артур (10, Витебск)", - "contestSystemId": "144387", "groups": [], "hashTag": null, "medias": {}, @@ -4240,10 +3922,9 @@ "customFields": {} }, { - "id": 318, + "id": "144388", "name": "Руженцев Демид (11, Москва)", "shortName": "Руженцев Демид (11, Москва)", - "contestSystemId": "144388", "groups": [], "hashTag": null, "medias": {}, @@ -4253,10 +3934,9 @@ "customFields": {} }, { - "id": 319, + "id": "144389", "name": "Рутковский Алексей (11, Жуковский)", "shortName": "Рутковский Алексей (11, Жуковский)", - "contestSystemId": "144389", "groups": [], "hashTag": null, "medias": {}, @@ -4266,10 +3946,9 @@ "customFields": {} }, { - "id": 320, + "id": "144390", "name": "Рысков Максим (11, Санкт Петербург)", "shortName": "Рысков Максим (11, Санкт Петербург)", - "contestSystemId": "144390", "groups": [], "hashTag": null, "medias": {}, @@ -4279,10 +3958,9 @@ "customFields": {} }, { - "id": 321, + "id": "144391", "name": "Рябов Владимир (11, Ижевск)", "shortName": "Рябов Владимир (11, Ижевск)", - "contestSystemId": "144391", "groups": [], "hashTag": null, "medias": {}, @@ -4292,10 +3970,9 @@ "customFields": {} }, { - "id": 322, + "id": "144392", "name": "Савич Артём (11, Беларусь, Минск)", "shortName": "Савич Артём (11, Беларусь, Минск)", - "contestSystemId": "144392", "groups": [], "hashTag": null, "medias": {}, @@ -4305,10 +3982,9 @@ "customFields": {} }, { - "id": 323, + "id": "144393", "name": "Саитов Дамир (11, Казань)", "shortName": "Саитов Дамир (11, Казань)", - "contestSystemId": "144393", "groups": [], "hashTag": null, "medias": {}, @@ -4318,10 +3994,9 @@ "customFields": {} }, { - "id": 324, + "id": "144394", "name": "Салыгин Егор (10, Москва)", "shortName": "Салыгин Егор (10, Москва)", - "contestSystemId": "144394", "groups": [], "hashTag": null, "medias": {}, @@ -4331,10 +4006,9 @@ "customFields": {} }, { - "id": 325, + "id": "144395", "name": "Саляхов Марк (8, Москва)", "shortName": "Саляхов Марк (8, Москва)", - "contestSystemId": "144395", "groups": [], "hashTag": null, "medias": {}, @@ -4344,10 +4018,9 @@ "customFields": {} }, { - "id": 326, + "id": "144396", "name": "Сапегин Андрей (10, Пермь)", "shortName": "Сапегин Андрей (10, Пермь)", - "contestSystemId": "144396", "groups": [], "hashTag": null, "medias": {}, @@ -4357,10 +4030,9 @@ "customFields": {} }, { - "id": 327, + "id": "144397", "name": "Саранчина Анастасия (9, Москва)", "shortName": "Саранчина Анастасия (9, Москва)", - "contestSystemId": "144397", "groups": [], "hashTag": null, "medias": {}, @@ -4370,10 +4042,9 @@ "customFields": {} }, { - "id": 328, + "id": "144398", "name": "Сафиуллин Азат (11, Казань)", "shortName": "Сафиуллин Азат (11, Казань)", - "contestSystemId": "144398", "groups": [], "hashTag": null, "medias": {}, @@ -4383,10 +4054,9 @@ "customFields": {} }, { - "id": 329, + "id": "144399", "name": "Сафронов Александр (11, Екатеринбург)", "shortName": "Сафронов Александр (11, Екатеринбург)", - "contestSystemId": "144399", "groups": [], "hashTag": null, "medias": {}, @@ -4396,10 +4066,9 @@ "customFields": {} }, { - "id": 330, + "id": "144400", "name": "Свешников Борис (10, Екатеринбург)", "shortName": "Свешников Борис (10, Екатеринбург)", - "contestSystemId": "144400", "groups": [], "hashTag": null, "medias": {}, @@ -4409,10 +4078,9 @@ "customFields": {} }, { - "id": 331, + "id": "144401", "name": "Свирин Артём (11, Ухта)", "shortName": "Свирин Артём (11, Ухта)", - "contestSystemId": "144401", "groups": [], "hashTag": null, "medias": {}, @@ -4422,10 +4090,9 @@ "customFields": {} }, { - "id": 332, + "id": "144402", "name": "Семенюк Ярослав (9, Москва)", "shortName": "Семенюк Ярослав (9, Москва)", - "contestSystemId": "144402", "groups": [], "hashTag": null, "medias": {}, @@ -4435,10 +4102,9 @@ "customFields": {} }, { - "id": 333, + "id": "144403", "name": "Сергеев Родион (10, Москва)", "shortName": "Сергеев Родион (10, Москва)", - "contestSystemId": "144403", "groups": [], "hashTag": null, "medias": {}, @@ -4448,10 +4114,9 @@ "customFields": {} }, { - "id": 334, + "id": "144404", "name": "Сергиенко Дмитрий (11, Москва)", "shortName": "Сергиенко Дмитрий (11, Москва)", - "contestSystemId": "144404", "groups": [], "hashTag": null, "medias": {}, @@ -4461,10 +4126,9 @@ "customFields": {} }, { - "id": 335, + "id": "144405", "name": "Серебренников Дан (11, Ижевск)", "shortName": "Серебренников Дан (11, Ижевск)", - "contestSystemId": "144405", "groups": [], "hashTag": null, "medias": {}, @@ -4474,10 +4138,9 @@ "customFields": {} }, { - "id": 336, + "id": "144406", "name": "Сильвестров Василий (11, Москва )", "shortName": "Сильвестров Василий (11, Москва )", - "contestSystemId": "144406", "groups": [], "hashTag": null, "medias": {}, @@ -4487,10 +4150,9 @@ "customFields": {} }, { - "id": 337, + "id": "144407", "name": "Сиомаш Иван (11, Москва)", "shortName": "Сиомаш Иван (11, Москва)", - "contestSystemId": "144407", "groups": [], "hashTag": null, "medias": {}, @@ -4500,10 +4162,9 @@ "customFields": {} }, { - "id": 338, + "id": "144408", "name": "Сиразеев Ильяс (8, Казань)", "shortName": "Сиразеев Ильяс (8, Казань)", - "contestSystemId": "144408", "groups": [], "hashTag": null, "medias": {}, @@ -4513,10 +4174,9 @@ "customFields": {} }, { - "id": 339, + "id": "144409", "name": "Ситдиков Дамир (10, Казань)", "shortName": "Ситдиков Дамир (10, Казань)", - "contestSystemId": "144409", "groups": [], "hashTag": null, "medias": {}, @@ -4526,10 +4186,9 @@ "customFields": {} }, { - "id": 340, + "id": "144410", "name": "Скобелин Павел (11, Екатеринбург)", "shortName": "Скобелин Павел (11, Екатеринбург)", - "contestSystemId": "144410", "groups": [], "hashTag": null, "medias": {}, @@ -4539,10 +4198,9 @@ "customFields": {} }, { - "id": 341, + "id": "144411", "name": "Скороходов Андрей (11, Тверь)", "shortName": "Скороходов Андрей (11, Тверь)", - "contestSystemId": "144411", "groups": [], "hashTag": null, "medias": {}, @@ -4552,10 +4210,9 @@ "customFields": {} }, { - "id": 342, + "id": "144412", "name": "Слоневский Никита (9, Малорита)", "shortName": "Слоневский Никита (9, Малорита)", - "contestSystemId": "144412", "groups": [], "hashTag": null, "medias": {}, @@ -4565,10 +4222,9 @@ "customFields": {} }, { - "id": 343, + "id": "144413", "name": "Смирнов Максим (11, Москва)", "shortName": "Смирнов Максим (11, Москва)", - "contestSystemId": "144413", "groups": [], "hashTag": null, "medias": {}, @@ -4578,10 +4234,9 @@ "customFields": {} }, { - "id": 344, + "id": "144414", "name": "Смирнов Егор (10, Москва)", "shortName": "Смирнов Егор (10, Москва)", - "contestSystemId": "144414", "groups": [], "hashTag": null, "medias": {}, @@ -4591,10 +4246,9 @@ "customFields": {} }, { - "id": 345, + "id": "144415", "name": "Соболев Олег (10, Новосибирск)", "shortName": "Соболев Олег (10, Новосибирск)", - "contestSystemId": "144415", "groups": [], "hashTag": null, "medias": {}, @@ -4604,10 +4258,9 @@ "customFields": {} }, { - "id": 346, + "id": "144416", "name": "Соболенко Андрей (10, Витебск)", "shortName": "Соболенко Андрей (10, Витебск)", - "contestSystemId": "144416", "groups": [], "hashTag": null, "medias": {}, @@ -4617,10 +4270,9 @@ "customFields": {} }, { - "id": 347, + "id": "144417", "name": "Сокольников Алексей (9, Омск)", "shortName": "Сокольников Алексей (9, Омск)", - "contestSystemId": "144417", "groups": [], "hashTag": null, "medias": {}, @@ -4630,10 +4282,9 @@ "customFields": {} }, { - "id": 348, + "id": "144418", "name": "Солунов Данила (11, Москва)", "shortName": "Солунов Данила (11, Москва)", - "contestSystemId": "144418", "groups": [], "hashTag": null, "medias": {}, @@ -4643,10 +4294,9 @@ "customFields": {} }, { - "id": 349, + "id": "144419", "name": "Сомкин Артем (11, Москва)", "shortName": "Сомкин Артем (11, Москва)", - "contestSystemId": "144419", "groups": [], "hashTag": null, "medias": {}, @@ -4656,10 +4306,9 @@ "customFields": {} }, { - "id": 350, + "id": "144420", "name": "Стасевич Дарина (11, Брест)", "shortName": "Стасевич Дарина (11, Брест)", - "contestSystemId": "144420", "groups": [], "hashTag": null, "medias": {}, @@ -4669,10 +4318,9 @@ "customFields": {} }, { - "id": 351, + "id": "144421", "name": "Стасюкевич Пётр (9, Минск)", "shortName": "Стасюкевич Пётр (9, Минск)", - "contestSystemId": "144421", "groups": [], "hashTag": null, "medias": {}, @@ -4682,10 +4330,9 @@ "customFields": {} }, { - "id": 352, + "id": "144422", "name": "Степаненко Александр (11, Челябинск)", "shortName": "Степаненко Александр (11, Челябинск)", - "contestSystemId": "144422", "groups": [], "hashTag": null, "medias": {}, @@ -4695,10 +4342,9 @@ "customFields": {} }, { - "id": 353, + "id": "144423", "name": "Степанов Антон (11, Москва)", "shortName": "Степанов Антон (11, Москва)", - "contestSystemId": "144423", "groups": [], "hashTag": null, "medias": {}, @@ -4708,10 +4354,9 @@ "customFields": {} }, { - "id": 354, + "id": "144424", "name": "Степанян Георгий (10, Санкт-Петербург)", "shortName": "Степанян Георгий (10, Санкт-Петербург)", - "contestSystemId": "144424", "groups": [], "hashTag": null, "medias": {}, @@ -4721,10 +4366,9 @@ "customFields": {} }, { - "id": 355, + "id": "144425", "name": "Степнов Кирилл (11, Владимир)", "shortName": "Степнов Кирилл (11, Владимир)", - "contestSystemId": "144425", "groups": [], "hashTag": null, "medias": {}, @@ -4734,10 +4378,9 @@ "customFields": {} }, { - "id": 356, + "id": "144426", "name": "Стоянов Стефан (11, Шумен)", "shortName": "Стоянов Стефан (11, Шумен)", - "contestSystemId": "144426", "groups": [], "hashTag": null, "medias": {}, @@ -4747,10 +4390,9 @@ "customFields": {} }, { - "id": 357, + "id": "144427", "name": "Строков Арсений (11, Черемушки (Саяногорск))", "shortName": "Строков Арсений (11, Черемушки (Саяногорск))", - "contestSystemId": "144427", "groups": [], "hashTag": null, "medias": {}, @@ -4760,10 +4402,9 @@ "customFields": {} }, { - "id": 358, + "id": "144428", "name": "Сулейманов Карам (10, Уфа)", "shortName": "Сулейманов Карам (10, Уфа)", - "contestSystemId": "144428", "groups": [], "hashTag": null, "medias": {}, @@ -4773,10 +4414,9 @@ "customFields": {} }, { - "id": 359, + "id": "144429", "name": "Суринов Илья (9, Саранск)", "shortName": "Суринов Илья (9, Саранск)", - "contestSystemId": "144429", "groups": [], "hashTag": null, "medias": {}, @@ -4786,10 +4426,9 @@ "customFields": {} }, { - "id": 360, + "id": "144430", "name": "Сушин Александр (11, Долгопрудный)", "shortName": "Сушин Александр (11, Долгопрудный)", - "contestSystemId": "144430", "groups": [], "hashTag": null, "medias": {}, @@ -4799,10 +4438,9 @@ "customFields": {} }, { - "id": 361, + "id": "144431", "name": "Сычёв Даниил (10, Москва)", "shortName": "Сычёв Даниил (10, Москва)", - "contestSystemId": "144431", "groups": [], "hashTag": null, "medias": {}, @@ -4812,10 +4450,9 @@ "customFields": {} }, { - "id": 362, + "id": "144432", "name": "Телелюхин Артем (11, Тамбов)", "shortName": "Телелюхин Артем (11, Тамбов)", - "contestSystemId": "144432", "groups": [], "hashTag": null, "medias": {}, @@ -4825,10 +4462,9 @@ "customFields": {} }, { - "id": 363, + "id": "144433", "name": "Терентьев Владимир (11, Москва)", "shortName": "Терентьев Владимир (11, Москва)", - "contestSystemId": "144433", "groups": [], "hashTag": null, "medias": {}, @@ -4838,10 +4474,9 @@ "customFields": {} }, { - "id": 364, + "id": "144434", "name": "Терентьева Мария (11, Самара)", "shortName": "Терентьева Мария (11, Самара)", - "contestSystemId": "144434", "groups": [], "hashTag": null, "medias": {}, @@ -4851,10 +4486,9 @@ "customFields": {} }, { - "id": 365, + "id": "144435", "name": "Тестова Мария (10, Саранск)", "shortName": "Тестова Мария (10, Саранск)", - "contestSystemId": "144435", "groups": [], "hashTag": null, "medias": {}, @@ -4864,10 +4498,9 @@ "customFields": {} }, { - "id": 366, + "id": "144436", "name": "Тимофеев Кирилл (8, Казань)", "shortName": "Тимофеев Кирилл (8, Казань)", - "contestSystemId": "144436", "groups": [], "hashTag": null, "medias": {}, @@ -4877,10 +4510,9 @@ "customFields": {} }, { - "id": 367, + "id": "144437", "name": "Тимофеева Ксения (10, Саранск)", "shortName": "Тимофеева Ксения (10, Саранск)", - "contestSystemId": "144437", "groups": [], "hashTag": null, "medias": {}, @@ -4890,10 +4522,9 @@ "customFields": {} }, { - "id": 368, + "id": "144438", "name": "Титов Фёдор (11, Долгопрудный)", "shortName": "Титов Фёдор (11, Долгопрудный)", - "contestSystemId": "144438", "groups": [], "hashTag": null, "medias": {}, @@ -4903,10 +4534,9 @@ "customFields": {} }, { - "id": 369, + "id": "144439", "name": "Тищенко Владислав (8, Барановичи)", "shortName": "Тищенко Владислав (8, Барановичи)", - "contestSystemId": "144439", "groups": [], "hashTag": null, "medias": {}, @@ -4916,10 +4546,9 @@ "customFields": {} }, { - "id": 370, + "id": "144440", "name": "Толмачев Александр (10, Екатеринбург)", "shortName": "Толмачев Александр (10, Екатеринбург)", - "contestSystemId": "144440", "groups": [], "hashTag": null, "medias": {}, @@ -4929,10 +4558,9 @@ "customFields": {} }, { - "id": 371, + "id": "144441", "name": "Трапезников Роман (11, Казань)", "shortName": "Трапезников Роман (11, Казань)", - "contestSystemId": "144441", "groups": [], "hashTag": null, "medias": {}, @@ -4942,10 +4570,9 @@ "customFields": {} }, { - "id": 372, + "id": "144442", "name": "Трофимов Иван (11, Новосибирск)", "shortName": "Трофимов Иван (11, Новосибирск)", - "contestSystemId": "144442", "groups": [], "hashTag": null, "medias": {}, @@ -4955,10 +4582,9 @@ "customFields": {} }, { - "id": 373, + "id": "144443", "name": "Трофимов Глеб (8, Челябинск)", "shortName": "Трофимов Глеб (8, Челябинск)", - "contestSystemId": "144443", "groups": [], "hashTag": null, "medias": {}, @@ -4968,10 +4594,9 @@ "customFields": {} }, { - "id": 374, + "id": "144444", "name": "Трусов Дмитрий (10, Тула)", "shortName": "Трусов Дмитрий (10, Тула)", - "contestSystemId": "144444", "groups": [], "hashTag": null, "medias": {}, @@ -4981,10 +4606,9 @@ "customFields": {} }, { - "id": 375, + "id": "144445", "name": "Туисов Егор (11, Екатеринбург)", "shortName": "Туисов Егор (11, Екатеринбург)", - "contestSystemId": "144445", "groups": [], "hashTag": null, "medias": {}, @@ -4994,10 +4618,9 @@ "customFields": {} }, { - "id": 376, + "id": "144446", "name": "Туревич Артём (10, Москва)", "shortName": "Туревич Артём (10, Москва)", - "contestSystemId": "144446", "groups": [], "hashTag": null, "medias": {}, @@ -5007,10 +4630,9 @@ "customFields": {} }, { - "id": 377, + "id": "144447", "name": "Туров Макар (10, Пермь)", "shortName": "Туров Макар (10, Пермь)", - "contestSystemId": "144447", "groups": [], "hashTag": null, "medias": {}, @@ -5020,10 +4642,9 @@ "customFields": {} }, { - "id": 378, + "id": "144448", "name": "Устименко Глеб (10, Москва )", "shortName": "Устименко Глеб (10, Москва )", - "contestSystemId": "144448", "groups": [], "hashTag": null, "medias": {}, @@ -5033,10 +4654,9 @@ "customFields": {} }, { - "id": 379, + "id": "144449", "name": "Федоров Николай (11, Москва)", "shortName": "Федоров Николай (11, Москва)", - "contestSystemId": "144449", "groups": [], "hashTag": null, "medias": {}, @@ -5046,10 +4666,9 @@ "customFields": {} }, { - "id": 380, + "id": "144450", "name": "Федоров Никита (11, Тверь)", "shortName": "Федоров Никита (11, Тверь)", - "contestSystemId": "144450", "groups": [], "hashTag": null, "medias": {}, @@ -5059,10 +4678,9 @@ "customFields": {} }, { - "id": 381, + "id": "144451", "name": "Фешин Дмитрий (11, Королёв)", "shortName": "Фешин Дмитрий (11, Королёв)", - "contestSystemId": "144451", "groups": [], "hashTag": null, "medias": {}, @@ -5072,10 +4690,9 @@ "customFields": {} }, { - "id": 382, + "id": "144452", "name": "Филиппович Мария (11, Минск)", "shortName": "Филиппович Мария (11, Минск)", - "contestSystemId": "144452", "groups": [], "hashTag": null, "medias": {}, @@ -5085,10 +4702,9 @@ "customFields": {} }, { - "id": 383, + "id": "144453", "name": "Фокин Степан (11, Томск)", "shortName": "Фокин Степан (11, Томск)", - "contestSystemId": "144453", "groups": [], "hashTag": null, "medias": {}, @@ -5098,10 +4714,9 @@ "customFields": {} }, { - "id": 384, + "id": "144454", "name": "Фортунатов Василий (9, Саратов)", "shortName": "Фортунатов Василий (9, Саратов)", - "contestSystemId": "144454", "groups": [], "hashTag": null, "medias": {}, @@ -5111,10 +4726,9 @@ "customFields": {} }, { - "id": 385, + "id": "144455", "name": "Хаджи-Манич Деян (11, Варна)", "shortName": "Хаджи-Манич Деян (11, Варна)", - "contestSystemId": "144455", "groups": [], "hashTag": null, "medias": {}, @@ -5124,10 +4738,9 @@ "customFields": {} }, { - "id": 386, + "id": "144456", "name": "Хадзакос Николай (11, Ставрополь)", "shortName": "Хадзакос Николай (11, Ставрополь)", - "contestSystemId": "144456", "groups": [], "hashTag": null, "medias": {}, @@ -5137,10 +4750,9 @@ "customFields": {} }, { - "id": 387, + "id": "144457", "name": "Хаев Булат (10, Казань)", "shortName": "Хаев Булат (10, Казань)", - "contestSystemId": "144457", "groups": [], "hashTag": null, "medias": {}, @@ -5150,10 +4762,9 @@ "customFields": {} }, { - "id": 388, + "id": "144458", "name": "Хазеев Ильгизар (9, Москва)", "shortName": "Хазеев Ильгизар (9, Москва)", - "contestSystemId": "144458", "groups": [], "hashTag": null, "medias": {}, @@ -5163,10 +4774,9 @@ "customFields": {} }, { - "id": 389, + "id": "144459", "name": "Хамзин Рамиль (11, Казань)", "shortName": "Хамзин Рамиль (11, Казань)", - "contestSystemId": "144459", "groups": [], "hashTag": null, "medias": {}, @@ -5176,10 +4786,9 @@ "customFields": {} }, { - "id": 390, + "id": "144460", "name": "Хамитов Галим (9, Казань)", "shortName": "Хамитов Галим (9, Казань)", - "contestSystemId": "144460", "groups": [], "hashTag": null, "medias": {}, @@ -5189,10 +4798,9 @@ "customFields": {} }, { - "id": 391, + "id": "144461", "name": "Хамитов Хаким (9, Казань)", "shortName": "Хамитов Хаким (9, Казань)", - "contestSystemId": "144461", "groups": [], "hashTag": null, "medias": {}, @@ -5202,10 +4810,9 @@ "customFields": {} }, { - "id": 392, + "id": "144462", "name": "Хасанов Айдар (10, Москва)", "shortName": "Хасанов Айдар (10, Москва)", - "contestSystemId": "144462", "groups": [], "hashTag": null, "medias": {}, @@ -5215,10 +4822,9 @@ "customFields": {} }, { - "id": 393, + "id": "144463", "name": "Хо Данг Зунг (10, Москва)", "shortName": "Хо Данг Зунг (10, Москва)", - "contestSystemId": "144463", "groups": [], "hashTag": null, "medias": {}, @@ -5228,10 +4834,9 @@ "customFields": {} }, { - "id": 394, + "id": "144464", "name": "Ходыкин Тимофей (9, Санкт-Петербург)", "shortName": "Ходыкин Тимофей (9, Санкт-Петербург)", - "contestSystemId": "144464", "groups": [], "hashTag": null, "medias": {}, @@ -5241,10 +4846,9 @@ "customFields": {} }, { - "id": 395, + "id": "144465", "name": "Хоссейн Екатерина (11, Москва)", "shortName": "Хоссейн Екатерина (11, Москва)", - "contestSystemId": "144465", "groups": [], "hashTag": null, "medias": {}, @@ -5254,10 +4858,9 @@ "customFields": {} }, { - "id": 396, + "id": "144466", "name": "Христова Симона (8, Шумен)", "shortName": "Христова Симона (8, Шумен)", - "contestSystemId": "144466", "groups": [], "hashTag": null, "medias": {}, @@ -5267,10 +4870,9 @@ "customFields": {} }, { - "id": 397, + "id": "144467", "name": "Хромов Адам (11, Липецк)", "shortName": "Хромов Адам (11, Липецк)", - "contestSystemId": "144467", "groups": [], "hashTag": null, "medias": {}, @@ -5280,10 +4882,9 @@ "customFields": {} }, { - "id": 398, + "id": "144468", "name": "Хуснуллин Асгат (11, Казань)", "shortName": "Хуснуллин Асгат (11, Казань)", - "contestSystemId": "144468", "groups": [], "hashTag": null, "medias": {}, @@ -5293,10 +4894,9 @@ "customFields": {} }, { - "id": 399, + "id": "144469", "name": "Цвирко Захар (10, Барановичи)", "shortName": "Цвирко Захар (10, Барановичи)", - "contestSystemId": "144469", "groups": [], "hashTag": null, "medias": {}, @@ -5306,10 +4906,9 @@ "customFields": {} }, { - "id": 400, + "id": "144470", "name": "Цыбань Лев (8, Екатеринбург)", "shortName": "Цыбань Лев (8, Екатеринбург)", - "contestSystemId": "144470", "groups": [], "hashTag": null, "medias": {}, @@ -5319,10 +4918,9 @@ "customFields": {} }, { - "id": 401, + "id": "144471", "name": "Цыплякова Ксения (11, Липецк)", "shortName": "Цыплякова Ксения (11, Липецк)", - "contestSystemId": "144471", "groups": [], "hashTag": null, "medias": {}, @@ -5332,10 +4930,9 @@ "customFields": {} }, { - "id": 402, + "id": "144472", "name": "Чванов Федор (10, Екатеринбург)", "shortName": "Чванов Федор (10, Екатеринбург)", - "contestSystemId": "144472", "groups": [], "hashTag": null, "medias": {}, @@ -5345,10 +4942,9 @@ "customFields": {} }, { - "id": 403, + "id": "144473", "name": "Чекардов Михаил (11, Казань)", "shortName": "Чекардов Михаил (11, Казань)", - "contestSystemId": "144473", "groups": [], "hashTag": null, "medias": {}, @@ -5358,10 +4954,9 @@ "customFields": {} }, { - "id": 404, + "id": "144474", "name": "Чернецов Кирилл (11, Москва)", "shortName": "Чернецов Кирилл (11, Москва)", - "contestSystemId": "144474", "groups": [], "hashTag": null, "medias": {}, @@ -5371,10 +4966,9 @@ "customFields": {} }, { - "id": 405, + "id": "144475", "name": "Черников Владислав (9, Москва)", "shortName": "Черников Владислав (9, Москва)", - "contestSystemId": "144475", "groups": [], "hashTag": null, "medias": {}, @@ -5384,10 +4978,9 @@ "customFields": {} }, { - "id": 406, + "id": "144476", "name": "Чернов Тимофей (11, Королев)", "shortName": "Чернов Тимофей (11, Королев)", - "contestSystemId": "144476", "groups": [], "hashTag": null, "medias": {}, @@ -5397,10 +4990,9 @@ "customFields": {} }, { - "id": 407, + "id": "144477", "name": "Черный Антон (11, Москва)", "shortName": "Черный Антон (11, Москва)", - "contestSystemId": "144477", "groups": [], "hashTag": null, "medias": {}, @@ -5410,10 +5002,9 @@ "customFields": {} }, { - "id": 408, + "id": "144478", "name": "Чернышов Игнат (10, Екатеринбург)", "shortName": "Чернышов Игнат (10, Екатеринбург)", - "contestSystemId": "144478", "groups": [], "hashTag": null, "medias": {}, @@ -5423,10 +5014,9 @@ "customFields": {} }, { - "id": 409, + "id": "144479", "name": "Чирков Иван (11, Краснодар)", "shortName": "Чирков Иван (11, Краснодар)", - "contestSystemId": "144479", "groups": [], "hashTag": null, "medias": {}, @@ -5436,10 +5026,9 @@ "customFields": {} }, { - "id": 410, + "id": "144480", "name": "Чистяков Никита (11, Королёв)", "shortName": "Чистяков Никита (11, Королёв)", - "contestSystemId": "144480", "groups": [], "hashTag": null, "medias": {}, @@ -5449,10 +5038,9 @@ "customFields": {} }, { - "id": 411, + "id": "144481", "name": "Чистяков Александр (11, Ярославль)", "shortName": "Чистяков Александр (11, Ярославль)", - "contestSystemId": "144481", "groups": [], "hashTag": null, "medias": {}, @@ -5462,10 +5050,9 @@ "customFields": {} }, { - "id": 412, + "id": "144482", "name": "Чичерин Тимофей (8, Сергиев Посад)", "shortName": "Чичерин Тимофей (8, Сергиев Посад)", - "contestSystemId": "144482", "groups": [], "hashTag": null, "medias": {}, @@ -5475,10 +5062,9 @@ "customFields": {} }, { - "id": 413, + "id": "144483", "name": "Шабуров Павел (11, Раменское)", "shortName": "Шабуров Павел (11, Раменское)", - "contestSystemId": "144483", "groups": [], "hashTag": null, "medias": {}, @@ -5488,10 +5074,9 @@ "customFields": {} }, { - "id": 414, + "id": "144484", "name": "Шамсемухаметов Радмир (11, Нижнекамск)", "shortName": "Шамсемухаметов Радмир (11, Нижнекамск)", - "contestSystemId": "144484", "groups": [], "hashTag": null, "medias": {}, @@ -5501,10 +5086,9 @@ "customFields": {} }, { - "id": 415, + "id": "144485", "name": "Шатохин Фёдор (10, Оренбург)", "shortName": "Шатохин Фёдор (10, Оренбург)", - "contestSystemId": "144485", "groups": [], "hashTag": null, "medias": {}, @@ -5514,10 +5098,9 @@ "customFields": {} }, { - "id": 416, + "id": "144486", "name": "Шафранов Артем (10, Москва)", "shortName": "Шафранов Артем (10, Москва)", - "contestSystemId": "144486", "groups": [], "hashTag": null, "medias": {}, @@ -5527,10 +5110,9 @@ "customFields": {} }, { - "id": 417, + "id": "144487", "name": "Шварц Антон (11, г. Санкт-Петербург)", "shortName": "Шварц Антон (11, г. Санкт-Петербург)", - "contestSystemId": "144487", "groups": [], "hashTag": null, "medias": {}, @@ -5540,10 +5122,9 @@ "customFields": {} }, { - "id": 418, + "id": "144488", "name": "Шебанин Фёдор (10, Екатеринбург)", "shortName": "Шебанин Фёдор (10, Екатеринбург)", - "contestSystemId": "144488", "groups": [], "hashTag": null, "medias": {}, @@ -5553,10 +5134,9 @@ "customFields": {} }, { - "id": 419, + "id": "144489", "name": "Шевнин Даниил (11, Ставрополь)", "shortName": "Шевнин Даниил (11, Ставрополь)", - "contestSystemId": "144489", "groups": [], "hashTag": null, "medias": {}, @@ -5566,10 +5146,9 @@ "customFields": {} }, { - "id": 420, + "id": "144490", "name": "Шекера Анастасия (11, Долгопрудный)", "shortName": "Шекера Анастасия (11, Долгопрудный)", - "contestSystemId": "144490", "groups": [], "hashTag": null, "medias": {}, @@ -5579,10 +5158,9 @@ "customFields": {} }, { - "id": 421, + "id": "144491", "name": "Широковских Александр (11, Мытищи)", "shortName": "Широковских Александр (11, Мытищи)", - "contestSystemId": "144491", "groups": [], "hashTag": null, "medias": {}, @@ -5592,10 +5170,9 @@ "customFields": {} }, { - "id": 422, + "id": "144492", "name": "Шкулева Ксения (10, Москва)", "shortName": "Шкулева Ксения (10, Москва)", - "contestSystemId": "144492", "groups": [], "hashTag": null, "medias": {}, @@ -5605,10 +5182,9 @@ "customFields": {} }, { - "id": 423, + "id": "144493", "name": "Шкуринский Алексей (11, Светлогорск)", "shortName": "Шкуринский Алексей (11, Светлогорск)", - "contestSystemId": "144493", "groups": [], "hashTag": null, "medias": {}, @@ -5618,10 +5194,9 @@ "customFields": {} }, { - "id": 424, + "id": "144494", "name": "Шмурыгин Владислав (8, Омск)", "shortName": "Шмурыгин Владислав (8, Омск)", - "contestSystemId": "144494", "groups": [], "hashTag": null, "medias": {}, @@ -5631,10 +5206,9 @@ "customFields": {} }, { - "id": 425, + "id": "144495", "name": "Шумов Андрей (11, Москва)", "shortName": "Шумов Андрей (11, Москва)", - "contestSystemId": "144495", "groups": [], "hashTag": null, "medias": {}, @@ -5644,10 +5218,9 @@ "customFields": {} }, { - "id": 426, + "id": "144496", "name": "Щавелев Павел (8, Подольск)", "shortName": "Щавелев Павел (8, Подольск)", - "contestSystemId": "144496", "groups": [], "hashTag": null, "medias": {}, @@ -5657,10 +5230,9 @@ "customFields": {} }, { - "id": 427, + "id": "144497", "name": "Юлин Егор (11, Нижний Новгород )", "shortName": "Юлин Егор (11, Нижний Новгород )", - "contestSystemId": "144497", "groups": [], "hashTag": null, "medias": {}, @@ -5670,10 +5242,9 @@ "customFields": {} }, { - "id": 428, + "id": "144498", "name": "Юнусов Булат (11, Ульяновск)", "shortName": "Юнусов Булат (11, Ульяновск)", - "contestSystemId": "144498", "groups": [], "hashTag": null, "medias": {}, @@ -5683,10 +5254,9 @@ "customFields": {} }, { - "id": 429, + "id": "144499", "name": "Юркин Евгений (11, Москва)", "shortName": "Юркин Евгений (11, Москва)", - "contestSystemId": "144499", "groups": [], "hashTag": null, "medias": {}, @@ -5696,10 +5266,9 @@ "customFields": {} }, { - "id": 430, + "id": "144500", "name": "Яковлева Тамара (11, Ульяновск)", "shortName": "Яковлева Тамара (11, Ульяновск)", - "contestSystemId": "144500", "groups": [], "hashTag": null, "medias": {}, @@ -5709,10 +5278,9 @@ "customFields": {} }, { - "id": 431, + "id": "144501", "name": "Янко Анастасия (9, Липецк)", "shortName": "Янко Анастасия (9, Липецк)", - "contestSystemId": "144501", "groups": [], "hashTag": null, "medias": {}, @@ -5722,10 +5290,9 @@ "customFields": {} }, { - "id": 432, + "id": "144502", "name": "Ярыкин Евгений (10, Москва)", "shortName": "Ярыкин Евгений (10, Москва)", - "contestSystemId": "144502", "groups": [], "hashTag": null, "medias": {}, @@ -5735,10 +5302,9 @@ "customFields": {} }, { - "id": 433, + "id": "144503", "name": "Ятчений Арсений (10, Челябинск)", "shortName": "Ятчений Арсений (10, Челябинск)", - "contestSystemId": "144503", "groups": [], "hashTag": null, "medias": {}, @@ -5748,10 +5314,9 @@ "customFields": {} }, { - "id": 434, + "id": "144504", "name": "Abelyan Samvel (11, Yerevan)", "shortName": "Abelyan Samvel (11, Yerevan)", - "contestSystemId": "144504", "groups": [], "hashTag": null, "medias": {}, @@ -5761,10 +5326,9 @@ "customFields": {} }, { - "id": 435, + "id": "144505", "name": "Aleksiev Damyan (12, Shumen)", "shortName": "Aleksiev Damyan (12, Shumen)", - "contestSystemId": "144505", "groups": [], "hashTag": null, "medias": {}, @@ -5774,10 +5338,9 @@ "customFields": {} }, { - "id": 436, + "id": "144506", "name": "Angelov Dobromir (10, Varna)", "shortName": "Angelov Dobromir (10, Varna)", - "contestSystemId": "144506", "groups": [], "hashTag": null, "medias": {}, @@ -5787,10 +5350,9 @@ "customFields": {} }, { - "id": 437, + "id": "144507", "name": "Dimitrova Niya (12, Shumen )", "shortName": "Dimitrova Niya (12, Shumen )", - "contestSystemId": "144507", "groups": [], "hashTag": null, "medias": {}, @@ -5800,10 +5362,9 @@ "customFields": {} }, { - "id": 438, + "id": "144508", "name": "Gatev Alexander (10, Sofia)", "shortName": "Gatev Alexander (10, Sofia)", - "contestSystemId": "144508", "groups": [], "hashTag": null, "medias": {}, @@ -5813,10 +5374,9 @@ "customFields": {} }, { - "id": 439, + "id": "144509", "name": "Georgiev Aleksandar (9, Varna)", "shortName": "Georgiev Aleksandar (9, Varna)", - "contestSystemId": "144509", "groups": [], "hashTag": null, "medias": {}, @@ -5826,10 +5386,9 @@ "customFields": {} }, { - "id": 440, + "id": "144510", "name": "Gerova Trayana (12, Shumen)", "shortName": "Gerova Trayana (12, Shumen)", - "contestSystemId": "144510", "groups": [], "hashTag": null, "medias": {}, @@ -5839,10 +5398,9 @@ "customFields": {} }, { - "id": 441, + "id": "144511", "name": "Idiriz Nermin (8, Shumen)", "shortName": "Idiriz Nermin (8, Shumen)", - "contestSystemId": "144511", "groups": [], "hashTag": null, "medias": {}, @@ -5852,10 +5410,9 @@ "customFields": {} }, { - "id": 442, + "id": "144512", "name": "Kostov Vladislav (9, Shumen)", "shortName": "Kostov Vladislav (9, Shumen)", - "contestSystemId": "144512", "groups": [], "hashTag": null, "medias": {}, @@ -5865,10 +5422,9 @@ "customFields": {} }, { - "id": 443, + "id": "144513", "name": "Koynov Daniel (10, Shumen)", "shortName": "Koynov Daniel (10, Shumen)", - "contestSystemId": "144513", "groups": [], "hashTag": null, "medias": {}, @@ -5878,10 +5434,9 @@ "customFields": {} }, { - "id": 444, + "id": "144514", "name": "Markovich Vesselin (9, Varna, Bulgaria)", "shortName": "Markovich Vesselin (9, Varna, Bulgaria)", - "contestSystemId": "144514", "groups": [], "hashTag": null, "medias": {}, @@ -5891,10 +5446,9 @@ "customFields": {} }, { - "id": 445, + "id": "144515", "name": "Penchev Jasen (11, Gabrovo)", "shortName": "Penchev Jasen (11, Gabrovo)", - "contestSystemId": "144515", "groups": [], "hashTag": null, "medias": {}, @@ -5904,10 +5458,9 @@ "customFields": {} }, { - "id": 446, + "id": "144516", "name": "Yankova Denitsa (12, Shumen)", "shortName": "Yankova Denitsa (12, Shumen)", - "contestSystemId": "144516", "groups": [], "hashTag": null, "medias": {}, @@ -5917,10 +5470,9 @@ "customFields": {} }, { - "id": 447, + "id": "144517", "name": "Бессолицын Максим (9, Екатеринбург)", "shortName": "Бессолицын Максим (9, Екатеринбург)", - "contestSystemId": "144517", "groups": [], "hashTag": null, "medias": {}, @@ -5930,10 +5482,9 @@ "customFields": {} }, { - "id": 448, + "id": "144518", "name": "Пугачев Дмитрий (11, Москва)", "shortName": "Пугачев Дмитрий (11, Москва)", - "contestSystemId": "144518", "groups": [], "hashTag": null, "medias": {}, @@ -5943,10 +5494,9 @@ "customFields": {} }, { - "id": 449, + "id": "144519", "name": "open-2023-450", "shortName": "open-2023-450", - "contestSystemId": "144519", "groups": [], "hashTag": null, "medias": {}, @@ -5956,10 +5506,9 @@ "customFields": {} }, { - "id": 450, + "id": "144520", "name": "open-2023-451", "shortName": "open-2023-451", - "contestSystemId": "144520", "groups": [], "hashTag": null, "medias": {}, @@ -5969,10 +5518,9 @@ "customFields": {} }, { - "id": 451, + "id": "144521", "name": "open-2023-452", "shortName": "open-2023-452", - "contestSystemId": "144521", "groups": [], "hashTag": null, "medias": {}, @@ -5982,10 +5530,9 @@ "customFields": {} }, { - "id": 452, + "id": "144522", "name": "open-2023-453", "shortName": "open-2023-453", - "contestSystemId": "144522", "groups": [], "hashTag": null, "medias": {}, @@ -5995,10 +5542,9 @@ "customFields": {} }, { - "id": 453, + "id": "144523", "name": "open-2023-454", "shortName": "open-2023-454", - "contestSystemId": "144523", "groups": [], "hashTag": null, "medias": {}, @@ -6008,10 +5554,9 @@ "customFields": {} }, { - "id": 454, + "id": "144524", "name": "open-2023-455", "shortName": "open-2023-455", - "contestSystemId": "144524", "groups": [], "hashTag": null, "medias": {}, @@ -6021,10 +5566,9 @@ "customFields": {} }, { - "id": 455, + "id": "144525", "name": "open-2023-456", "shortName": "open-2023-456", - "contestSystemId": "144525", "groups": [], "hashTag": null, "medias": {}, @@ -6034,10 +5578,9 @@ "customFields": {} }, { - "id": 456, + "id": "144526", "name": "open-2023-457", "shortName": "open-2023-457", - "contestSystemId": "144526", "groups": [], "hashTag": null, "medias": {}, @@ -6047,10 +5590,9 @@ "customFields": {} }, { - "id": 457, + "id": "144527", "name": "open-2023-458", "shortName": "open-2023-458", - "contestSystemId": "144527", "groups": [], "hashTag": null, "medias": {}, @@ -6060,10 +5602,9 @@ "customFields": {} }, { - "id": 458, + "id": "144528", "name": "open-2023-459", "shortName": "open-2023-459", - "contestSystemId": "144528", "groups": [], "hashTag": null, "medias": {}, @@ -6073,10 +5614,9 @@ "customFields": {} }, { - "id": 459, + "id": "144529", "name": "open-2023-460", "shortName": "open-2023-460", - "contestSystemId": "144529", "groups": [], "hashTag": null, "medias": {}, @@ -6086,10 +5626,9 @@ "customFields": {} }, { - "id": 460, + "id": "144530", "name": "open-2023-461", "shortName": "open-2023-461", - "contestSystemId": "144530", "groups": [], "hashTag": null, "medias": {}, @@ -6099,10 +5638,9 @@ "customFields": {} }, { - "id": 461, + "id": "144531", "name": "open-2023-462", "shortName": "open-2023-462", - "contestSystemId": "144531", "groups": [], "hashTag": null, "medias": {}, @@ -6112,10 +5650,9 @@ "customFields": {} }, { - "id": 462, + "id": "144532", "name": "open-2023-463", "shortName": "open-2023-463", - "contestSystemId": "144532", "groups": [], "hashTag": null, "medias": {}, @@ -6125,10 +5662,9 @@ "customFields": {} }, { - "id": 463, + "id": "144533", "name": "open-2023-464", "shortName": "open-2023-464", - "contestSystemId": "144533", "groups": [], "hashTag": null, "medias": {}, @@ -6138,10 +5674,9 @@ "customFields": {} }, { - "id": 464, + "id": "144534", "name": "open-2023-465", "shortName": "open-2023-465", - "contestSystemId": "144534", "groups": [], "hashTag": null, "medias": {}, @@ -6151,10 +5686,9 @@ "customFields": {} }, { - "id": 465, + "id": "144535", "name": "open-2023-466", "shortName": "open-2023-466", - "contestSystemId": "144535", "groups": [], "hashTag": null, "medias": {}, @@ -6164,10 +5698,9 @@ "customFields": {} }, { - "id": 466, + "id": "144536", "name": "open-2023-467", "shortName": "open-2023-467", - "contestSystemId": "144536", "groups": [], "hashTag": null, "medias": {}, @@ -6177,10 +5710,9 @@ "customFields": {} }, { - "id": 467, + "id": "144537", "name": "open-2023-468", "shortName": "open-2023-468", - "contestSystemId": "144537", "groups": [], "hashTag": null, "medias": {}, @@ -6190,10 +5722,9 @@ "customFields": {} }, { - "id": 468, + "id": "144538", "name": "open-2023-469", "shortName": "open-2023-469", - "contestSystemId": "144538", "groups": [], "hashTag": null, "medias": {}, @@ -6203,10 +5734,9 @@ "customFields": {} }, { - "id": 469, + "id": "144539", "name": "open-2023-470", "shortName": "open-2023-470", - "contestSystemId": "144539", "groups": [], "hashTag": null, "medias": {}, @@ -6216,10 +5746,9 @@ "customFields": {} }, { - "id": 470, + "id": "144540", "name": "open-2023-471", "shortName": "open-2023-471", - "contestSystemId": "144540", "groups": [], "hashTag": null, "medias": {}, @@ -6229,10 +5758,9 @@ "customFields": {} }, { - "id": 471, + "id": "144541", "name": "open-2023-472", "shortName": "open-2023-472", - "contestSystemId": "144541", "groups": [], "hashTag": null, "medias": {}, @@ -6242,10 +5770,9 @@ "customFields": {} }, { - "id": 472, + "id": "144542", "name": "open-2023-473", "shortName": "open-2023-473", - "contestSystemId": "144542", "groups": [], "hashTag": null, "medias": {}, @@ -6255,10 +5782,9 @@ "customFields": {} }, { - "id": 473, + "id": "144543", "name": "open-2023-474", "shortName": "open-2023-474", - "contestSystemId": "144543", "groups": [], "hashTag": null, "medias": {}, @@ -6268,10 +5794,9 @@ "customFields": {} }, { - "id": 474, + "id": "144544", "name": "open-2023-475", "shortName": "open-2023-475", - "contestSystemId": "144544", "groups": [], "hashTag": null, "medias": {}, @@ -6281,10 +5806,9 @@ "customFields": {} }, { - "id": 475, + "id": "144545", "name": "open-2023-476", "shortName": "open-2023-476", - "contestSystemId": "144545", "groups": [], "hashTag": null, "medias": {}, @@ -6294,10 +5818,9 @@ "customFields": {} }, { - "id": 476, + "id": "144546", "name": "open-2023-477", "shortName": "open-2023-477", - "contestSystemId": "144546", "groups": [], "hashTag": null, "medias": {}, @@ -6307,10 +5830,9 @@ "customFields": {} }, { - "id": 477, + "id": "144547", "name": "open-2023-478", "shortName": "open-2023-478", - "contestSystemId": "144547", "groups": [], "hashTag": null, "medias": {}, @@ -6320,10 +5842,9 @@ "customFields": {} }, { - "id": 478, + "id": "144548", "name": "open-2023-479", "shortName": "open-2023-479", - "contestSystemId": "144548", "groups": [], "hashTag": null, "medias": {}, @@ -6333,10 +5854,9 @@ "customFields": {} }, { - "id": 479, + "id": "144549", "name": "open-2023-480", "shortName": "open-2023-480", - "contestSystemId": "144549", "groups": [], "hashTag": null, "medias": {}, @@ -6346,10 +5866,9 @@ "customFields": {} }, { - "id": 480, + "id": "144550", "name": "open-2023-481", "shortName": "open-2023-481", - "contestSystemId": "144550", "groups": [], "hashTag": null, "medias": {}, @@ -6359,10 +5878,9 @@ "customFields": {} }, { - "id": 481, + "id": "144551", "name": "open-2023-482", "shortName": "open-2023-482", - "contestSystemId": "144551", "groups": [], "hashTag": null, "medias": {}, @@ -6372,10 +5890,9 @@ "customFields": {} }, { - "id": 482, + "id": "144552", "name": "open-2023-483", "shortName": "open-2023-483", - "contestSystemId": "144552", "groups": [], "hashTag": null, "medias": {}, @@ -6385,10 +5902,9 @@ "customFields": {} }, { - "id": 483, + "id": "144553", "name": "open-2023-484", "shortName": "open-2023-484", - "contestSystemId": "144553", "groups": [], "hashTag": null, "medias": {}, @@ -6398,10 +5914,9 @@ "customFields": {} }, { - "id": 484, + "id": "144554", "name": "open-2023-485", "shortName": "open-2023-485", - "contestSystemId": "144554", "groups": [], "hashTag": null, "medias": {}, @@ -6411,10 +5926,9 @@ "customFields": {} }, { - "id": 485, + "id": "144555", "name": "open-2023-486", "shortName": "open-2023-486", - "contestSystemId": "144555", "groups": [], "hashTag": null, "medias": {}, @@ -6424,10 +5938,9 @@ "customFields": {} }, { - "id": 486, + "id": "144556", "name": "open-2023-487", "shortName": "open-2023-487", - "contestSystemId": "144556", "groups": [], "hashTag": null, "medias": {}, @@ -6437,10 +5950,9 @@ "customFields": {} }, { - "id": 487, + "id": "144557", "name": "open-2023-488", "shortName": "open-2023-488", - "contestSystemId": "144557", "groups": [], "hashTag": null, "medias": {}, @@ -6450,10 +5962,9 @@ "customFields": {} }, { - "id": 488, + "id": "144558", "name": "open-2023-489", "shortName": "open-2023-489", - "contestSystemId": "144558", "groups": [], "hashTag": null, "medias": {}, @@ -6463,10 +5974,9 @@ "customFields": {} }, { - "id": 489, + "id": "144559", "name": "open-2023-490", "shortName": "open-2023-490", - "contestSystemId": "144559", "groups": [], "hashTag": null, "medias": {}, @@ -6476,10 +5986,9 @@ "customFields": {} }, { - "id": 490, + "id": "144560", "name": "open-2023-491", "shortName": "open-2023-491", - "contestSystemId": "144560", "groups": [], "hashTag": null, "medias": {}, @@ -6489,10 +5998,9 @@ "customFields": {} }, { - "id": 491, + "id": "144561", "name": "open-2023-492", "shortName": "open-2023-492", - "contestSystemId": "144561", "groups": [], "hashTag": null, "medias": {}, @@ -6502,10 +6010,9 @@ "customFields": {} }, { - "id": 492, + "id": "144562", "name": "open-2023-493", "shortName": "open-2023-493", - "contestSystemId": "144562", "groups": [], "hashTag": null, "medias": {}, @@ -6515,10 +6022,9 @@ "customFields": {} }, { - "id": 493, + "id": "144563", "name": "open-2023-494", "shortName": "open-2023-494", - "contestSystemId": "144563", "groups": [], "hashTag": null, "medias": {}, @@ -6528,10 +6034,9 @@ "customFields": {} }, { - "id": 494, + "id": "144564", "name": "open-2023-495", "shortName": "open-2023-495", - "contestSystemId": "144564", "groups": [], "hashTag": null, "medias": {}, @@ -6541,10 +6046,9 @@ "customFields": {} }, { - "id": 495, + "id": "144565", "name": "open-2023-496", "shortName": "open-2023-496", - "contestSystemId": "144565", "groups": [], "hashTag": null, "medias": {}, @@ -6554,10 +6058,9 @@ "customFields": {} }, { - "id": 496, + "id": "144566", "name": "open-2023-497", "shortName": "open-2023-497", - "contestSystemId": "144566", "groups": [], "hashTag": null, "medias": {}, @@ -6567,10 +6070,9 @@ "customFields": {} }, { - "id": 497, + "id": "144567", "name": "open-2023-498", "shortName": "open-2023-498", - "contestSystemId": "144567", "groups": [], "hashTag": null, "medias": {}, @@ -6580,10 +6082,9 @@ "customFields": {} }, { - "id": 498, + "id": "144568", "name": "open-2023-499", "shortName": "open-2023-499", - "contestSystemId": "144568", "groups": [], "hashTag": null, "medias": {}, @@ -6593,10 +6094,9 @@ "customFields": {} }, { - "id": 499, + "id": "144569", "name": "open-2023-500", "shortName": "open-2023-500", - "contestSystemId": "144569", "groups": [], "hashTag": null, "medias": {}, @@ -6629,14 +6129,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 33, + "id": 2, "result": { "type": "IOI", "score": [ @@ -6649,18 +6149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 118, + "id": 3, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6669,18 +6169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 135, + "id": 4, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6689,18 +6189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 145, + "id": 5, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6709,18 +6209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 160, + "id": 6, "result": { "type": "IOI", "score": [ - 50.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6729,18 +6229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 178, + "id": 7, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6749,38 +6249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 374, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2071, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 374, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2141, + "id": 8, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6788,19 +6268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2184, + "id": 9, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6808,19 +6288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2258, + "id": 10, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6828,19 +6308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2332, + "id": 11, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6848,19 +6328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2345, + "id": 12, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6868,19 +6348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2384, + "id": 13, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6888,19 +6368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2410, + "id": 14, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6908,19 +6388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2454, + "id": 15, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -6928,39 +6408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3596, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3629, + "id": 16, "result": { "type": "IOI", "score": [ @@ -6972,59 +6428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3693, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 374, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3812, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.1", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3822, + "id": 17, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7032,19 +6448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3885, + "id": 18, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7052,19 +6468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4051, + "id": 19, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7072,19 +6488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4400, + "id": 20, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7092,19 +6508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7784, + "id": 21, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7112,19 +6528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10063, + "id": 22, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7132,19 +6548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11272, + "id": 23, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7152,15 +6568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11679, + "id": 24, "result": { "type": "IOI", "score": [ @@ -7173,18 +6589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 374, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11810, + "id": 25, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7192,43 +6608,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11875, + "id": 26, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12079, + "id": 27, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7236,15 +6648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 374, + "problemId": "d1.4", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2, + "id": 28, "result": { "type": "IOI", "score": [ @@ -7257,18 +6669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 62, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 143, + "id": 29, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7276,19 +6688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 235, + "id": 30, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7296,19 +6708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 385, + "id": 31, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7316,19 +6728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 417, + "id": 32, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7336,19 +6748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 456, + "id": 33, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7356,19 +6768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 485, + "id": 34, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7376,15 +6788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 535, + "id": 35, "result": { "type": "IOI", "score": [ @@ -7396,19 +6808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1054, + "id": 36, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7416,19 +6828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1089, + "id": 37, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7436,15 +6848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1181, + "id": 38, "result": { "type": "IOI", "score": [ @@ -7456,15 +6868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1485, + "id": 39, "result": { "type": "IOI", "score": [ @@ -7476,19 +6888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1565, + "id": 40, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7496,19 +6908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1658, + "id": 41, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7516,19 +6928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1733, + "id": 42, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7536,19 +6948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1975, + "id": 43, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7556,19 +6968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2001, + "id": 44, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7576,19 +6988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2101, + "id": 45, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7596,15 +7008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2161, + "id": 46, "result": { "type": "IOI", "score": [ @@ -7616,19 +7028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2177, + "id": 47, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7636,19 +7048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2362, + "id": 48, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7656,19 +7068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2390, + "id": 49, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7676,19 +7088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2427, + "id": 50, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7696,15 +7108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4227, + "id": 51, "result": { "type": "IOI", "score": [ @@ -7717,18 +7129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4259, + "id": 52, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7737,58 +7149,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4407, + "id": 53, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 62, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4451, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4457, + "id": 54, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7797,18 +7193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4754, + "id": 55, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7816,19 +7212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4797, + "id": 56, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7836,19 +7232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4814, + "id": 57, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7856,15 +7252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4838, + "id": 58, "result": { "type": "IOI", "score": [ @@ -7876,19 +7272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.1", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5098, + "id": 59, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7896,19 +7292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5137, + "id": 60, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7916,19 +7312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5237, + "id": 61, "result": { "type": "IOI", "score": [ - 16.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7936,19 +7332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5432, + "id": 62, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7956,19 +7352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7444, + "id": 63, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7976,19 +7372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7862, + "id": 64, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -7996,19 +7392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8002, + "id": 65, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8016,39 +7412,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10558, + "id": 66, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10675, + "id": 67, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8056,39 +7456,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10727, + "id": 68, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10962, + "id": 69, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8096,19 +7500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10983, + "id": 70, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8116,39 +7520,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11055, + "id": 71, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.3", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11064, + "id": 72, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8156,19 +7564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11152, + "id": 73, "result": { "type": "IOI", "score": [ - 57.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8176,19 +7584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11161, + "id": 74, "result": { "type": "IOI", "score": [ - 57.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8196,19 +7604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11606, + "id": 75, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8216,19 +7624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11644, + "id": 76, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8236,19 +7644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11717, + "id": 77, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8256,19 +7664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11856, + "id": 78, "result": { "type": "IOI", "score": [ - 10.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8276,19 +7684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11890, + "id": 79, "result": { "type": "IOI", "score": [ - 10.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8297,14 +7705,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12046, + "id": 80, "result": { "type": "IOI", "score": [ @@ -8317,18 +7725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 62, + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12095, + "id": 81, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8336,15 +7744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 62, + "problemId": "d1.4", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3, + "id": 82, "result": { "type": "IOI", "score": [ @@ -8357,18 +7765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 19, + "id": 83, "result": { "type": "IOI", "score": [ - 9.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8377,18 +7785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 48, + "id": 84, "result": { "type": "IOI", "score": [ - 9.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8396,8 +7804,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 180, + "problemId": "d1.1", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8417,158 +7825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 186, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1230, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1585, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1620, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1674, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1681, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1962, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2025, + "id": 86, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8577,18 +7845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2097, + "id": 87, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8597,18 +7865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2335, + "id": 88, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8617,42 +7885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2895, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2898, + "id": 89, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8661,18 +7905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3214, + "id": 90, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8681,14 +7925,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3535, + "id": 91, "result": { "type": "IOI", "score": [ @@ -8700,79 +7944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3579, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3920, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3997, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 180, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4087, + "id": 92, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8781,162 +7965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 180, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6015, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6152, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6252, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7208, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7365, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7501, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7532, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7556, + "id": 93, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8945,18 +7985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7623, + "id": 94, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -8965,14 +8005,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7728, + "id": 95, "result": { "type": "IOI", "score": [ @@ -8985,18 +8025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7755, + "id": 96, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9005,18 +8045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7799, + "id": 97, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9025,14 +8065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7830, + "id": 98, "result": { "type": "IOI", "score": [ @@ -9045,18 +8085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7840, + "id": 99, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9065,18 +8105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7868, + "id": 100, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9085,18 +8125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7899, + "id": 101, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9105,14 +8145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7923, + "id": 102, "result": { "type": "IOI", "score": [ @@ -9124,19 +8164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 180, + "problemId": "d1.1", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7970, + "id": 103, "result": { "type": "IOI", "score": [ - 21.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9145,18 +8185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8066, + "id": 104, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9165,18 +8205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8093, + "id": 105, "result": { "type": "IOI", "score": [ - 21.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9185,14 +8225,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8188, + "id": 106, "result": { "type": "IOI", "score": [ @@ -9205,18 +8245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8277, + "id": 107, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9224,19 +8264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 180, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8348, + "id": 108, "result": { "type": "IOI", "score": [ - 38.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9245,18 +8285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8373, + "id": 109, "result": { "type": "IOI", "score": [ - 50.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9265,18 +8305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8493, + "id": 110, "result": { "type": "IOI", "score": [ - 50.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9285,18 +8325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8911, + "id": 111, "result": { "type": "IOI", "score": [ - 63.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9305,18 +8345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9021, + "id": 112, "result": { "type": "IOI", "score": [ - 50.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9325,18 +8365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9075, + "id": 113, "result": { "type": "IOI", "score": [ - 63.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9345,34 +8385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11620, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 180, + "teamId": "144401", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11912, + "id": 114, "result": { "type": "IOI", "score": [ @@ -9389,18 +8409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 180, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4, + "id": 115, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9408,19 +8428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 448, + "problemId": "d1.1", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 30, + "id": 116, "result": { "type": "IOI", "score": [ - 27.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9429,18 +8449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 448, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 62, + "id": 117, "result": { "type": "IOI", "score": [ - 9.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9449,18 +8469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 448, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 81, + "id": 118, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9469,18 +8489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 448, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 97, + "id": 119, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9489,54 +8509,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 448, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 671, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1258, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1827, + "id": 120, "result": { "type": "IOI", "score": [ @@ -9548,303 +8528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3427, - "result": { - "type": "IOI", - "score": [ - 70.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4252, - "result": { - "type": "IOI", - "score": [ - 20.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4349, - "result": { - "type": "IOI", - "score": [ - 20.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4398, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4467, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4471, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4497, - "result": { - "type": "IOI", - "score": [ - 20.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4561, - "result": { - "type": "IOI", - "score": [ - 20.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5319, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5619, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5658, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5758, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5777, - "result": { - "type": "IOI", - "score": [ - 70.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5816, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5838, + "id": 121, "result": { "type": "IOI", "score": [ @@ -9856,79 +8548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9042, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9437, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 448, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10091, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10214, + "id": 122, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -9936,15 +8568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 448, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10495, + "id": 123, "result": { "type": "IOI", "score": [ @@ -9956,99 +8588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10646, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11160, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 448, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11373, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 448, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 25, + "id": 124, "result": { "type": "IOI", "score": [ - 23.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -10057,354 +8609,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 477, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 491, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 574, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 590, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 603, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 645, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 662, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 679, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 723, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 786, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 884, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 947, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 994, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1005, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1018, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1045, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1169, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1203, + "id": 125, "result": { "type": "IOI", "score": [ @@ -10417,98 +8629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4193, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4504, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6102, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6879, - "result": { - "type": "IOI", - "score": [ - 50.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6926, + "id": 126, "result": { "type": "IOI", "score": [ - 21.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -10517,14 +8649,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 131, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6978, + "id": 127, "result": { "type": "IOI", "score": [ @@ -10536,159 +8668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6999, - "result": { - "type": "IOI", - "score": [ - 21.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7044, - "result": { - "type": "IOI", - "score": [ - 29.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7078, - "result": { - "type": "IOI", - "score": [ - 29.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7130, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7139, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7323, - "result": { - "type": "IOI", - "score": [ - 29.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7361, - "result": { - "type": "IOI", - "score": [ - 29.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 131, + "problemId": "d1.1", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7407, + "id": 128, "result": { "type": "IOI", "score": [ - 50.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -10697,18 +8689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 131, + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7471, + "id": 129, "result": { "type": "IOI", "score": [ - 50.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -10717,578 +8709,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7635, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7669, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7725, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7842, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7914, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7933, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7988, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8250, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8443, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8578, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8641, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8661, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8677, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8692, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8823, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8896, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8969, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9252, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9344, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9418, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9468, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9659, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10573, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10728, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10823, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10990, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11137, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11221, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11237, + "id": 130, "result": { "type": "IOI", "score": [ @@ -11300,19 +8728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 131, + "problemId": "d1.1", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11621, + "id": 131, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11320,15 +8748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 131, + "problemId": "d1.4", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11648, + "id": 132, "result": { "type": "IOI", "score": [ @@ -11340,15 +8768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 131, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11927, + "id": 133, "result": { "type": "IOI", "score": [ @@ -11360,68 +8788,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11945, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 12097, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 131, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11441,18 +8809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 128, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1509, + "id": 135, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11461,14 +8829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 128, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1988, + "id": 136, "result": { "type": "IOI", "score": [ @@ -11480,15 +8848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2039, + "id": 137, "result": { "type": "IOI", "score": [ @@ -11501,18 +8869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 128, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2067, + "id": 138, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11520,19 +8888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3696, + "id": 139, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11540,19 +8908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144270", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4543, + "id": 140, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11560,15 +8928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4607, + "id": 141, "result": { "type": "IOI", "score": [ @@ -11580,19 +8948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4689, + "id": 142, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11600,19 +8968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5273, + "id": 143, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11620,19 +8988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5312, + "id": 144, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11640,19 +9008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6784, + "id": 145, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11660,19 +9028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6963, + "id": 146, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11680,19 +9048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7006, + "id": 147, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11700,19 +9068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7077, + "id": 148, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11720,19 +9088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7222, + "id": 149, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11740,19 +9108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7267, + "id": 150, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11760,43 +9128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7382, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7410, + "id": 151, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11804,19 +9148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7503, + "id": 152, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11825,18 +9169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 128, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7876, + "id": 153, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11844,19 +9188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8025, + "id": 154, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11864,19 +9208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8469, + "id": 155, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11884,19 +9228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8648, + "id": 156, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11904,19 +9248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8764, + "id": 157, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11924,19 +9268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8923, + "id": 158, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11944,19 +9288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9583, + "id": 159, "result": { "type": "IOI", "score": [ - 16.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11964,19 +9308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9671, + "id": 160, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -11984,19 +9328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9956, + "id": 161, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12004,19 +9348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10056, + "id": 162, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12024,19 +9368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10144, + "id": 163, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12044,19 +9388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10235, + "id": 164, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12064,19 +9408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10425, + "id": 165, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12084,15 +9428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 128, + "problemId": "d1.4", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7, + "id": 166, "result": { "type": "IOI", "score": [ @@ -12105,18 +9449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 79, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11, + "id": 167, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12124,15 +9468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 79, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 93, + "id": 168, "result": { "type": "IOI", "score": [ @@ -12145,14 +9489,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 79, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 880, + "id": 169, "result": { "type": "IOI", "score": [ @@ -12164,19 +9508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1051, + "id": 170, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12184,19 +9528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1862, + "id": 171, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12204,19 +9548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2009, + "id": 172, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12224,19 +9568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2093, + "id": 173, "result": { "type": "IOI", "score": [ - 0.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12244,15 +9588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2123, + "id": 174, "result": { "type": "IOI", "score": [ @@ -12264,39 +9608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2142, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2170, + "id": 175, "result": { "type": "IOI", "score": [ - 69.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12304,19 +9628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2541, + "id": 176, "result": { "type": "IOI", "score": [ - 37.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12324,19 +9648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2558, + "id": 177, "result": { "type": "IOI", "score": [ - 37.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12344,19 +9668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3403, + "id": 178, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12364,19 +9688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3434, + "id": 179, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12384,19 +9708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3563, + "id": 180, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12404,19 +9728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4021, + "id": 181, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12424,19 +9748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4060, + "id": 182, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12444,19 +9768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4977, + "id": 183, "result": { "type": "IOI", "score": [ - 36.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12464,19 +9788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5166, + "id": 184, "result": { "type": "IOI", "score": [ - 67.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12484,19 +9808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5327, + "id": 185, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12504,19 +9828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7235, + "id": 186, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12524,19 +9848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7859, + "id": 187, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12545,18 +9869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 79, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8004, + "id": 188, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12564,19 +9888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9223, + "id": 189, "result": { "type": "IOI", "score": [ - 57.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12584,19 +9908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9279, + "id": 190, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12604,19 +9928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9878, + "id": 191, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12624,15 +9948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10011, + "id": 192, "result": { "type": "IOI", "score": [ @@ -12644,19 +9968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10064, + "id": 193, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12664,19 +9988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10966, + "id": 194, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12684,19 +10008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 79, + "problemId": "d1.4", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8, + "id": 195, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12705,18 +10029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 299, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 142, + "id": 196, "result": { "type": "IOI", "score": [ - 100.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12725,18 +10049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 299, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2150, + "id": 197, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12744,19 +10068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2183, + "id": 198, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12764,19 +10088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2438, + "id": 199, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12784,19 +10108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2493, + "id": 200, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12804,19 +10128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2600, + "id": 201, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12824,19 +10148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2663, + "id": 202, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12845,18 +10169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 299, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2708, + "id": 203, "result": { "type": "IOI", "score": [ - 12.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12864,19 +10188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2947, + "id": 204, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12884,19 +10208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2979, + "id": 205, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12905,14 +10229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 299, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3025, + "id": 206, "result": { "type": "IOI", "score": [ @@ -12925,18 +10249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 299, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3074, + "id": 207, "result": { "type": "IOI", "score": [ - 25.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12944,43 +10268,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5578, + "id": 208, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5618, + "id": 209, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -12988,19 +10308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 299, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6855, + "id": 210, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13008,19 +10328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7096, + "id": 211, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13028,15 +10348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7193, + "id": 212, "result": { "type": "IOI", "score": [ @@ -13048,19 +10368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7808, + "id": 213, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13068,19 +10388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8135, + "id": 214, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13088,15 +10408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8601, + "id": 215, "result": { "type": "IOI", "score": [ @@ -13108,19 +10428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9108, + "id": 216, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13128,19 +10448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9414, + "id": 217, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13148,19 +10468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9689, + "id": 218, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13168,19 +10488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10388, + "id": 219, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13188,15 +10508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.1", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11578, + "id": 220, "result": { "type": "IOI", "score": [ @@ -13208,19 +10528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 299, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9, + "id": 221, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13229,18 +10549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 275, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 17, + "id": 222, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13249,18 +10569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 275, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 31, + "id": 223, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13269,18 +10589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 275, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 109, + "id": 224, "result": { "type": "IOI", "score": [ - 21.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13289,18 +10609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 275, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 156, + "id": 225, "result": { "type": "IOI", "score": [ - 21.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13308,19 +10628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 192, + "id": 226, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13328,19 +10648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 709, + "id": 227, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13348,19 +10668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1262, + "id": 228, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13368,19 +10688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1285, + "id": 229, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13388,19 +10708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1357, + "id": 230, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13408,19 +10728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1633, + "id": 231, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13428,15 +10748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1812, + "id": 232, "result": { "type": "IOI", "score": [ @@ -13448,15 +10768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1928, + "id": 233, "result": { "type": "IOI", "score": [ @@ -13468,19 +10788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2253, + "id": 234, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13488,15 +10808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2267, + "id": 235, "result": { "type": "IOI", "score": [ @@ -13509,18 +10829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 275, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2333, + "id": 236, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13528,15 +10848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2361, + "id": 237, "result": { "type": "IOI", "score": [ @@ -13548,19 +10868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2417, + "id": 238, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13568,19 +10888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2609, + "id": 239, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13588,19 +10908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2661, + "id": 240, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13608,19 +10928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3577, + "id": 241, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13628,15 +10948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3580, + "id": 242, "result": { "type": "IOI", "score": [ @@ -13649,18 +10969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3603, + "id": 243, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13668,19 +10988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3619, + "id": 244, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13688,19 +11008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3638, + "id": 245, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13708,19 +11028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3659, + "id": 246, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13728,19 +11048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3711, + "id": 247, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13748,19 +11068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3747, + "id": 248, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13768,19 +11088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3808, + "id": 249, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13788,15 +11108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3869, + "id": 250, "result": { "type": "IOI", "score": [ @@ -13808,35 +11128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3904, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4112, + "id": 251, "result": { "type": "IOI", "score": [ @@ -13849,18 +11149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4166, + "id": 252, "result": { "type": "IOI", "score": [ - 47.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13868,19 +11168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4421, + "id": 253, "result": { "type": "IOI", "score": [ - 57.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13888,19 +11188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4470, + "id": 254, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13908,35 +11208,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4742, + "id": 255, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5163, + "id": 256, "result": { "type": "IOI", "score": [ @@ -13949,18 +11253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5356, + "id": 257, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13969,18 +11273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5541, + "id": 258, "result": { "type": "IOI", "score": [ - 46.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -13988,19 +11292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5650, + "id": 259, "result": { "type": "IOI", "score": [ - 46.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14009,18 +11313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5744, + "id": 260, "result": { "type": "IOI", "score": [ - 68.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14028,19 +11332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5786, + "id": 261, "result": { "type": "IOI", "score": [ - 68.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14049,18 +11353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5993, + "id": 262, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14069,18 +11373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 275, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7010, + "id": 263, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14088,19 +11392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7048, + "id": 264, "result": { "type": "IOI", "score": [ - 47.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14108,15 +11412,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7388, + "id": 265, "result": { "type": "IOI", "score": [ @@ -14128,35 +11432,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7420, + "id": 266, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8534, + "id": 267, "result": { "type": "IOI", "score": [ @@ -14168,19 +11476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8645, + "id": 268, "result": { "type": "IOI", "score": [ - 20.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14188,19 +11496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8711, + "id": 269, "result": { "type": "IOI", "score": [ - 57.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14208,39 +11516,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9163, + "id": 270, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9766, + "id": 271, "result": { "type": "IOI", "score": [ - 32.0 + 13.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14248,15 +11560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10753, + "id": 272, "result": { "type": "IOI", "score": [ @@ -14268,15 +11580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10907, + "id": 273, "result": { "type": "IOI", "score": [ @@ -14289,18 +11601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 275, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11330, + "id": 274, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14308,15 +11620,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11485, + "id": 275, "result": { "type": "IOI", "score": [ @@ -14328,19 +11640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11614, + "id": 276, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14348,39 +11660,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11954, + "id": 277, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11990, + "id": 278, "result": { "type": "IOI", "score": [ @@ -14392,19 +11700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 275, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10, + "id": 279, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14413,18 +11721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 313, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 32, + "id": 280, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14433,18 +11741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 313, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 442, + "id": 281, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14452,19 +11760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 487, + "id": 282, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14473,18 +11781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 510, + "id": 283, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14492,19 +11800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 812, + "id": 284, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14512,19 +11820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144081", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 873, + "id": 285, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14532,19 +11840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1385, + "id": 286, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14552,15 +11860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1399, + "id": 287, "result": { "type": "IOI", "score": [ @@ -14572,19 +11880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1416, + "id": 288, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14592,19 +11900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1498, + "id": 289, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14612,19 +11920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1590, + "id": 290, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14633,38 +11941,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1668, + "id": 291, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1842, + "id": 292, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14672,19 +11984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1924, + "id": 293, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14692,19 +12004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2053, + "id": 294, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14712,19 +12024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2108, + "id": 295, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14732,15 +12044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2133, + "id": 296, "result": { "type": "IOI", "score": [ @@ -14753,18 +12065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2160, + "id": 297, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14772,19 +12084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2403, + "id": 298, "result": { "type": "IOI", "score": [ - 10.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14792,19 +12104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2437, + "id": 299, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14813,18 +12125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2545, + "id": 300, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14833,18 +12145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2553, + "id": 301, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14852,19 +12164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2648, + "id": 302, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14872,19 +12184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2850, + "id": 303, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14892,19 +12204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2883, + "id": 304, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14912,19 +12224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144270", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2914, + "id": 305, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14932,19 +12244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3029, + "id": 306, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14952,19 +12264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3087, + "id": 307, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14972,19 +12284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3372, + "id": 308, "result": { "type": "IOI", "score": [ - 12.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -14992,19 +12304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3424, + "id": 309, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15012,19 +12324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3545, + "id": 310, "result": { "type": "IOI", "score": [ - 35.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15032,19 +12344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3617, + "id": 311, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15053,18 +12365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3805, + "id": 312, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15073,18 +12385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3895, + "id": 313, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15092,19 +12404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3962, + "id": 314, "result": { "type": "IOI", "score": [ - 22.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15112,19 +12424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4022, + "id": 315, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15132,19 +12444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4109, + "id": 316, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15152,19 +12464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4234, + "id": 317, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15172,19 +12484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4281, + "id": 318, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15193,18 +12505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4301, + "id": 319, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15213,18 +12525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4339, + "id": 320, "result": { "type": "IOI", "score": [ - 35.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15232,19 +12544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4399, + "id": 321, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15252,19 +12564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4408, + "id": 322, "result": { "type": "IOI", "score": [ - 22.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15272,19 +12584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4460, + "id": 323, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15293,18 +12605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5515, + "id": 324, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15312,19 +12624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5765, + "id": 325, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15332,19 +12644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5985, + "id": 326, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15352,19 +12664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6567, + "id": 327, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15372,19 +12684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6673, + "id": 328, "result": { "type": "IOI", "score": [ - 47.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15392,15 +12704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6898, + "id": 329, "result": { "type": "IOI", "score": [ @@ -15412,19 +12724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6952, + "id": 330, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15432,19 +12744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7024, + "id": 331, "result": { "type": "IOI", "score": [ - 12.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15452,19 +12764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7244, + "id": 332, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15472,19 +12784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7362, + "id": 333, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15492,19 +12804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7626, + "id": 334, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15512,19 +12824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7871, + "id": 335, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15532,19 +12844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7929, + "id": 336, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15552,19 +12864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8030, + "id": 337, "result": { "type": "IOI", "score": [ - 12.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15572,15 +12884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8116, + "id": 338, "result": { "type": "IOI", "score": [ @@ -15592,19 +12904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8186, + "id": 339, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15612,19 +12924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8312, + "id": 340, "result": { "type": "IOI", "score": [ - 12.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15632,39 +12944,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 313, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9048, + "id": 341, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9203, + "id": 342, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15673,18 +12989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9349, + "id": 343, "result": { "type": "IOI", "score": [ - 37.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15693,18 +13009,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9407, + "id": 344, "result": { "type": "IOI", "score": [ - 35.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15712,19 +13028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9474, + "id": 345, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15733,18 +13049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9507, + "id": 346, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15753,18 +13069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9624, + "id": 347, "result": { "type": "IOI", "score": [ - 47.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15773,18 +13089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9684, + "id": 348, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15792,19 +13108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9704, + "id": 349, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15812,19 +13128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9764, + "id": 350, "result": { "type": "IOI", "score": [ - 58.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15833,18 +13149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 313, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9793, + "id": 351, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15852,19 +13168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10013, + "id": 352, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15872,15 +13188,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10129, + "id": 353, "result": { "type": "IOI", "score": [ @@ -15892,19 +13208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10349, + "id": 354, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15912,19 +13228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10464, + "id": 355, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15932,19 +13248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10561, + "id": 356, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15952,19 +13268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10935, + "id": 357, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15972,19 +13288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11181, + "id": 358, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -15992,19 +13308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11690, + "id": 359, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16012,19 +13328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11764, + "id": 360, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16032,15 +13348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11864, + "id": 361, "result": { "type": "IOI", "score": [ @@ -16052,19 +13368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11921, + "id": 362, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16072,19 +13388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11982, + "id": 363, "result": { "type": "IOI", "score": [ - 32.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16092,15 +13408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 313, + "problemId": "d1.4", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12, + "id": 364, "result": { "type": "IOI", "score": [ @@ -16112,19 +13428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 47, + "id": 365, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16132,19 +13448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 692, + "id": 366, "result": { "type": "IOI", "score": [ - 12.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16152,19 +13468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 803, + "id": 367, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16173,18 +13489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 425, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2408, + "id": 368, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16193,18 +13509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2455, + "id": 369, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16212,19 +13528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 425, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2563, + "id": 370, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16233,18 +13549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2593, + "id": 371, "result": { "type": "IOI", "score": [ - 23.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16253,14 +13569,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2760, + "id": 372, "result": { "type": "IOI", "score": [ @@ -16273,18 +13589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2785, + "id": 373, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16292,19 +13608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3092, + "id": 374, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16313,18 +13629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3134, + "id": 375, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16333,18 +13649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 425, + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3361, + "id": 376, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16352,19 +13668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3422, + "id": 377, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16372,19 +13688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3445, + "id": 378, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16392,19 +13708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3523, + "id": 379, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16412,19 +13728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3731, + "id": 380, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16432,15 +13748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3777, + "id": 381, "result": { "type": "IOI", "score": [ @@ -16452,15 +13768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3834, + "id": 382, "result": { "type": "IOI", "score": [ @@ -16472,15 +13788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3985, + "id": 383, "result": { "type": "IOI", "score": [ @@ -16492,19 +13808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4017, + "id": 384, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16512,15 +13828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4077, + "id": 385, "result": { "type": "IOI", "score": [ @@ -16532,15 +13848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4107, + "id": 386, "result": { "type": "IOI", "score": [ @@ -16552,19 +13868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4120, + "id": 387, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16572,19 +13888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4158, + "id": 388, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16592,19 +13908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4224, + "id": 389, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16612,19 +13928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4344, + "id": 390, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16632,19 +13948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4415, + "id": 391, "result": { "type": "IOI", "score": [ - 31.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16652,19 +13968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4477, + "id": 392, "result": { "type": "IOI", "score": [ - 31.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16672,19 +13988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4969, + "id": 393, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16692,15 +14008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5017, + "id": 394, "result": { "type": "IOI", "score": [ @@ -16713,18 +14029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5048, + "id": 395, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16733,18 +14049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5127, + "id": 396, "result": { "type": "IOI", "score": [ - 10.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16752,19 +14068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5192, + "id": 397, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16772,19 +14088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5247, + "id": 398, "result": { "type": "IOI", "score": [ - 10.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16792,19 +14108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5283, + "id": 399, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16813,18 +14129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5326, + "id": 400, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16832,19 +14148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5536, + "id": 401, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16852,19 +14168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5557, + "id": 402, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16873,18 +14189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5661, + "id": 403, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16893,14 +14209,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5778, + "id": 404, "result": { "type": "IOI", "score": [ @@ -16913,18 +14229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5810, + "id": 405, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16932,19 +14248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5823, + "id": 406, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16953,18 +14269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5879, + "id": 407, "result": { "type": "IOI", "score": [ - 31.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16972,19 +14288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5917, + "id": 408, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -16992,19 +14308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5948, + "id": 409, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17013,18 +14329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 425, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5997, + "id": 410, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17032,19 +14348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6097, + "id": 411, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17052,19 +14368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7536, + "id": 412, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17072,19 +14388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7684, + "id": 413, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17092,19 +14408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7753, + "id": 414, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17112,19 +14428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7981, + "id": 415, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17132,19 +14448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8139, + "id": 416, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17152,43 +14468,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8522, + "id": 417, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 425, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9129, + "id": 418, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17196,19 +14508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9200, + "id": 419, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17216,19 +14528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9243, + "id": 420, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17236,19 +14548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9341, + "id": 421, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17256,19 +14568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9415, + "id": 422, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17276,19 +14588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9429, + "id": 423, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17296,19 +14608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9463, + "id": 424, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17316,43 +14628,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.2", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9786, + "id": 425, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9819, + "id": 426, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17360,19 +14668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9860, + "id": 427, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17380,19 +14688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9911, + "id": 428, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17400,19 +14708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9972, + "id": 429, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17420,19 +14728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9999, + "id": 430, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17440,19 +14748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10034, + "id": 431, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17460,43 +14768,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10186, + "id": 432, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10209, + "id": 433, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17504,19 +14808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10428, + "id": 434, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17524,19 +14828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10492, + "id": 435, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17544,19 +14848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10810, + "id": 436, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17564,19 +14868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10853, + "id": 437, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17584,19 +14888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10892, + "id": 438, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17604,39 +14908,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10982, + "id": 439, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11076, + "id": 440, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17644,15 +14952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11354, + "id": 441, "result": { "type": "IOI", "score": [ @@ -17669,18 +14977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11392, + "id": 442, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17689,18 +14997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 425, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11469, + "id": 443, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17708,19 +15016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 425, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11972, + "id": 444, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17728,19 +15036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 425, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 13, + "id": 445, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17749,18 +15057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144081", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1460, + "id": 446, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17768,19 +15076,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 242, + "problemId": "d1.1", + "teamId": "144318", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1518, + "id": 447, "result": { "type": "IOI", "score": [ - 21.0 + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144432", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 448, + "result": { + "type": "IOI", + "score": [ + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17789,18 +15117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2289, + "id": 449, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17808,15 +15136,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2364, + "id": 450, "result": { "type": "IOI", "score": [ @@ -17829,14 +15157,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2371, + "id": 451, "result": { "type": "IOI", "score": [ @@ -17849,14 +15177,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2400, + "id": 452, "result": { "type": "IOI", "score": [ @@ -17869,14 +15197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2435, + "id": 453, "result": { "type": "IOI", "score": [ @@ -17889,18 +15217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2589, + "id": 454, "result": { "type": "IOI", "score": [ - 34.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17909,14 +15237,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2667, + "id": 455, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144256", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 456, "result": { "type": "IOI", "score": [ @@ -17928,19 +15276,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144132", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 457, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 458, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2778, + "id": 459, "result": { "type": "IOI", "score": [ - 34.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17949,18 +15337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2815, + "id": 460, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17969,18 +15357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2996, + "id": 461, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -17989,18 +15377,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3013, + "id": 462, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144292", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 463, + "result": { + "type": "IOI", + "score": [ + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18009,18 +15417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3031, + "id": 464, "result": { "type": "IOI", "score": [ - 9.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18029,14 +15437,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3102, + "id": 465, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144135", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 466, "result": { "type": "IOI", "score": [ @@ -18049,14 +15477,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3117, + "id": 467, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144288", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 468, "result": { "type": "IOI", "score": [ @@ -18068,19 +15516,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144404", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 469, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3169, + "id": 470, "result": { "type": "IOI", "score": [ - 9.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18089,18 +15561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3274, + "id": 471, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18109,18 +15581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3301, + "id": 472, "result": { "type": "IOI", "score": [ - 34.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18129,18 +15601,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3322, + "id": 473, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144223", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 474, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18149,18 +15641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3352, + "id": 475, "result": { "type": "IOI", "score": [ - 34.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18169,18 +15661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3355, + "id": 476, "result": { "type": "IOI", "score": [ - 100.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18189,14 +15681,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 242, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3593, + "id": 477, "result": { "type": "IOI", "score": [ @@ -18208,15 +15700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3676, + "id": 478, "result": { "type": "IOI", "score": [ @@ -18229,14 +15721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4013, + "id": 479, "result": { "type": "IOI", "score": [ @@ -18248,15 +15740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4137, + "id": 480, "result": { "type": "IOI", "score": [ @@ -18269,14 +15761,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4215, + "id": 481, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144421", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 482, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144225", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 483, "result": { "type": "IOI", "score": [ @@ -18289,14 +15821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4879, + "id": 484, "result": { "type": "IOI", "score": [ @@ -18308,15 +15840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5037, + "id": 485, "result": { "type": "IOI", "score": [ @@ -18329,18 +15861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 242, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5317, + "id": 486, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18348,19 +15880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6005, + "id": 487, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18368,19 +15900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6180, + "id": 488, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18388,19 +15920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6271, + "id": 489, "result": { "type": "IOI", "score": [ - 16.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18408,19 +15940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6554, + "id": 490, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18429,18 +15961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6655, + "id": 491, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18449,18 +15981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 242, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6723, + "id": 492, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18468,19 +16000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6738, + "id": 493, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18488,19 +16020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6829, + "id": 494, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18508,19 +16040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7413, + "id": 495, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18528,19 +16060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8046, + "id": 496, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18549,18 +16081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8350, + "id": 497, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18569,18 +16101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8388, + "id": 498, "result": { "type": "IOI", "score": [ - 10.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18588,19 +16120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8406, + "id": 499, "result": { "type": "IOI", "score": [ - 10.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18608,19 +16140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8458, + "id": 500, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18628,19 +16160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8498, + "id": 501, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18648,19 +16180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8540, + "id": 502, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18668,19 +16200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8616, + "id": 503, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18688,19 +16220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8637, + "id": 504, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18709,18 +16241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 242, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9307, + "id": 505, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18728,19 +16260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9332, + "id": 506, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18749,18 +16281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 242, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10098, + "id": 507, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18768,19 +16300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10191, + "id": 508, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18788,19 +16320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11748, + "id": 509, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18808,15 +16340,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 242, + "problemId": "d1.4", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11926, + "id": 510, "result": { "type": "IOI", "score": [ @@ -18828,19 +16360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 242, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 14, + "id": 511, "result": { "type": "IOI", "score": [ - 24.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18849,18 +16381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 124, + "id": 512, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18869,14 +16401,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 221, + "id": 513, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144513", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 514, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144277", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 515, "result": { "type": "IOI", "score": [ @@ -18889,18 +16461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 571, + "id": 516, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18909,18 +16481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 869, + "id": 517, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18929,18 +16501,98 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 891, + "id": 518, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144135", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 519, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144213", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 520, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144223", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 521, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144134", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 522, + "result": { + "type": "IOI", + "score": [ + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18949,14 +16601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144401", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 899, + "id": 523, "result": { "type": "IOI", "score": [ @@ -18969,18 +16621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 920, + "id": 524, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -18989,14 +16641,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1088, + "id": 525, "result": { "type": "IOI", "score": [ @@ -19009,18 +16661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1270, + "id": 526, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19029,18 +16681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1758, + "id": 527, "result": { "type": "IOI", "score": [ - 50.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19049,18 +16701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1980, + "id": 528, "result": { "type": "IOI", "score": [ - 50.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19069,14 +16721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2072, + "id": 529, "result": { "type": "IOI", "score": [ @@ -19089,18 +16741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 114, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6166, + "id": 530, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19108,19 +16760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6507, + "id": 531, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19128,19 +16780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7740, + "id": 532, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19148,15 +16800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7777, + "id": 533, "result": { "type": "IOI", "score": [ @@ -19168,15 +16820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7835, + "id": 534, "result": { "type": "IOI", "score": [ @@ -19188,15 +16840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7916, + "id": 535, "result": { "type": "IOI", "score": [ @@ -19209,18 +16861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 114, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8140, + "id": 536, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19228,19 +16880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8239, + "id": 537, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19248,15 +16900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8316, + "id": 538, "result": { "type": "IOI", "score": [ @@ -19268,19 +16920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8619, + "id": 539, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19288,19 +16940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8665, + "id": 540, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19308,15 +16960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8699, + "id": 541, "result": { "type": "IOI", "score": [ @@ -19328,15 +16980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9502, + "id": 542, "result": { "type": "IOI", "score": [ @@ -19348,35 +17000,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9548, + "id": 543, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9571, + "id": 544, "result": { "type": "IOI", "score": [ @@ -19388,19 +17044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9622, + "id": 545, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19408,19 +17064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9688, + "id": 546, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19428,15 +17084,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9734, + "id": 547, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144178", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 548, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144335", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 549, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144077", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 550, "result": { "type": "IOI", "score": [ @@ -19448,15 +17168,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9791, + "id": 551, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144357", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 552, "result": { "type": "IOI", "score": [ @@ -19468,15 +17208,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9808, + "id": 553, + "result": { + "type": "IOI", + "score": [ + 50.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144364", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 554, "result": { "type": "IOI", "score": [ @@ -19488,15 +17248,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9829, + "id": 555, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144111", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 556, "result": { "type": "IOI", "score": [ @@ -19508,15 +17288,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9917, + "id": 557, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144407", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 558, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144291", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 559, "result": { "type": "IOI", "score": [ @@ -19528,15 +17348,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10331, + "id": 560, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 561, "result": { "type": "IOI", "score": [ @@ -19548,15 +17388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10413, + "id": 562, "result": { "type": "IOI", "score": [ @@ -19568,15 +17408,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10605, + "id": 563, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144513", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 564, "result": { "type": "IOI", "score": [ @@ -19588,15 +17448,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10725, + "id": 565, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144100", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 566, "result": { "type": "IOI", "score": [ @@ -19609,18 +17489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 114, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10864, + "id": 567, "result": { "type": "IOI", "score": [ - 16.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19628,15 +17508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10972, + "id": 568, "result": { "type": "IOI", "score": [ @@ -19648,19 +17528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11151, + "id": 569, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19668,15 +17548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 114, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 15, + "id": 570, "result": { "type": "IOI", "score": [ @@ -19689,14 +17569,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 184, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 194, + "id": 571, "result": { "type": "IOI", "score": [ @@ -19709,18 +17589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 184, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 293, + "id": 572, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19729,14 +17609,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 184, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1586, + "id": 573, + "result": { + "type": "IOI", + "score": [ + 21.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144246", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 574, "result": { "type": "IOI", "score": [ @@ -19748,43 +17648,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2833, + "id": 575, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2858, + "id": 576, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19792,19 +17688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2962, + "id": 577, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19812,19 +17708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3009, + "id": 578, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19832,19 +17728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3011, + "id": 579, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19852,19 +17748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3075, + "id": 580, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19872,19 +17768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3150, + "id": 581, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19892,19 +17788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3258, + "id": 582, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19912,19 +17808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3356, + "id": 583, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19932,19 +17828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3417, + "id": 584, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19952,19 +17848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3472, + "id": 585, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19972,19 +17868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3488, + "id": 586, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -19992,19 +17888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3547, + "id": 587, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20012,19 +17908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3566, + "id": 588, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20032,15 +17928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4960, + "id": 589, "result": { "type": "IOI", "score": [ @@ -20053,14 +17949,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4967, + "id": 590, "result": { "type": "IOI", "score": [ @@ -20072,15 +17968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5583, + "id": 591, "result": { "type": "IOI", "score": [ @@ -20093,18 +17989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5675, + "id": 592, "result": { "type": "IOI", "score": [ - 25.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20112,15 +18008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5902, + "id": 593, "result": { "type": "IOI", "score": [ @@ -20133,14 +18029,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6009, + "id": 594, "result": { "type": "IOI", "score": [ @@ -20152,15 +18048,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6043, + "id": 595, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144364", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 596, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144285", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 597, "result": { "type": "IOI", "score": [ @@ -20172,19 +18108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6065, + "id": 598, "result": { "type": "IOI", "score": [ - 12.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20192,19 +18128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6111, + "id": 599, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20212,19 +18148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6136, + "id": 600, "result": { "type": "IOI", "score": [ - 25.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20232,19 +18168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6185, + "id": 601, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20253,18 +18189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6230, + "id": 602, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20272,15 +18208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144401", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6649, + "id": 603, "result": { "type": "IOI", "score": [ @@ -20293,14 +18229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 184, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6698, + "id": 604, "result": { "type": "IOI", "score": [ @@ -20312,15 +18248,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6783, + "id": 605, "result": { "type": "IOI", "score": [ @@ -20332,15 +18268,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6869, + "id": 606, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144192", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 607, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144423", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 608, "result": { "type": "IOI", "score": [ @@ -20353,14 +18329,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 184, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6948, + "id": 609, "result": { "type": "IOI", "score": [ @@ -20372,15 +18348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7123, + "id": 610, "result": { "type": "IOI", "score": [ @@ -20392,15 +18368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7446, + "id": 611, "result": { "type": "IOI", "score": [ @@ -20412,19 +18388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7569, + "id": 612, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20433,14 +18409,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 184, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7577, + "id": 613, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144322", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 614, "result": { "type": "IOI", "score": [ @@ -20452,15 +18448,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8173, + "id": 615, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144319", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 616, "result": { "type": "IOI", "score": [ @@ -20472,15 +18488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8325, + "id": 617, "result": { "type": "IOI", "score": [ @@ -20492,15 +18508,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8508, + "id": 618, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144447", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 619, "result": { "type": "IOI", "score": [ @@ -20512,15 +18548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8622, + "id": 620, "result": { "type": "IOI", "score": [ @@ -20532,15 +18568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8734, + "id": 621, "result": { "type": "IOI", "score": [ @@ -20552,19 +18588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9187, + "id": 622, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20572,19 +18608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9326, + "id": 623, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20592,19 +18628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9377, + "id": 624, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20612,15 +18648,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 184, + "problemId": "d1.1", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10107, + "id": 625, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144513", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 626, "result": { "type": "IOI", "score": [ @@ -20633,14 +18689,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 184, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10161, + "id": 627, "result": { "type": "IOI", "score": [ @@ -20653,18 +18709,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 184, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10707, + "id": 628, "result": { "type": "IOI", "score": [ - 25.0 + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144499", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 629, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20673,14 +18749,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10884, + "id": 630, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144194", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 631, "result": { "type": "IOI", "score": [ @@ -20697,18 +18793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144340", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10926, + "id": 632, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20717,18 +18813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10938, + "id": 633, "result": { "type": "IOI", "score": [ - 25.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20736,15 +18832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11035, + "id": 634, "result": { "type": "IOI", "score": [ @@ -20757,18 +18853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11075, + "id": 635, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20776,19 +18872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11093, + "id": 636, "result": { "type": "IOI", "score": [ - 0.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20796,19 +18892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11332, + "id": 637, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20817,18 +18913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11458, + "id": 638, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20836,15 +18932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11991, + "id": 639, "result": { "type": "IOI", "score": [ @@ -20857,14 +18953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12011, + "id": 640, "result": { "type": "IOI", "score": [ @@ -20877,18 +18973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 184, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12108, + "id": 641, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20896,19 +18992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 184, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 16, + "id": 642, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20917,18 +19013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 317, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 29, + "id": 643, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20937,18 +19033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 317, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 769, + "id": 644, "result": { "type": "IOI", "score": [ - 31.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -20956,15 +19052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1414, + "id": 645, "result": { "type": "IOI", "score": [ @@ -20977,14 +19073,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 317, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1503, + "id": 646, "result": { "type": "IOI", "score": [ @@ -20996,15 +19092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1572, + "id": 647, "result": { "type": "IOI", "score": [ @@ -21016,19 +19112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1597, + "id": 648, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21036,19 +19132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1744, + "id": 649, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21056,15 +19152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1802, + "id": 650, "result": { "type": "IOI", "score": [ @@ -21076,19 +19172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144340", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1847, + "id": 651, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21096,19 +19192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2228, + "id": 652, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21117,18 +19213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 317, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2351, + "id": 653, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21137,18 +19233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 317, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2457, + "id": 654, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21156,19 +19252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2980, + "id": 655, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21176,15 +19272,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3407, + "id": 656, "result": { "type": "IOI", "score": [ @@ -21201,38 +19297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 317, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3431, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 317, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3503, + "id": 657, "result": { "type": "IOI", "score": [ - 50.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21241,18 +19317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 317, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3983, + "id": 658, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21260,19 +19336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 317, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4073, + "id": 659, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21280,19 +19356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4189, + "id": 660, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21300,19 +19376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4196, + "id": 661, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21320,15 +19396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4283, + "id": 662, "result": { "type": "IOI", "score": [ @@ -21341,18 +19417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 317, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4362, + "id": 663, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21360,19 +19436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4446, + "id": 664, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21380,19 +19456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4495, + "id": 665, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21400,19 +19476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.1", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4597, + "id": 666, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21421,38 +19497,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 317, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4598, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 317, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4702, + "id": 667, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21460,19 +19516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4778, + "id": 668, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21480,19 +19536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5179, + "id": 669, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21500,19 +19556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6583, + "id": 670, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21521,18 +19577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 317, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8398, + "id": 671, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21540,19 +19596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9336, + "id": 672, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21560,19 +19616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 317, + "problemId": "d1.4", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 18, + "id": 673, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21581,18 +19637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 163, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 393, + "id": 674, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21600,15 +19656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 745, + "id": 675, "result": { "type": "IOI", "score": [ @@ -21621,34 +19677,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 163, + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1709, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 163, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2432, + "id": 676, "result": { "type": "IOI", "score": [ @@ -21660,35 +19696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2819, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 163, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3555, + "id": 677, "result": { "type": "IOI", "score": [ @@ -21701,14 +19717,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 163, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3926, + "id": 678, "result": { "type": "IOI", "score": [ @@ -21721,14 +19737,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 163, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4020, + "id": 679, "result": { "type": "IOI", "score": [ @@ -21741,18 +19757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 163, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4562, + "id": 680, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21760,19 +19776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4964, + "id": 681, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21780,19 +19796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5415, + "id": 682, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21800,19 +19816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5540, + "id": 683, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21820,19 +19836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5752, + "id": 684, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21840,19 +19856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5795, + "id": 685, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21861,18 +19877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 163, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5916, + "id": 686, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21880,19 +19896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5996, + "id": 687, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21900,19 +19916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6154, + "id": 688, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21920,19 +19936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6198, + "id": 689, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21940,19 +19956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6427, + "id": 690, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21960,19 +19976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7157, + "id": 691, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -21980,19 +19996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7314, + "id": 692, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22000,19 +20016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7415, + "id": 693, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22020,19 +20036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8043, + "id": 694, "result": { "type": "IOI", "score": [ - 47.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22040,19 +20056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9995, + "id": 695, "result": { "type": "IOI", "score": [ - 37.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22060,19 +20076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10125, + "id": 696, "result": { "type": "IOI", "score": [ - 47.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22080,19 +20096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 163, + "problemId": "d1.4", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10387, + "id": 697, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22101,18 +20117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 163, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10485, + "id": 698, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22121,18 +20137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 163, + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10643, + "id": 699, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22141,34 +20157,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 163, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 20, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 3, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 372, + "id": 700, "result": { "type": "IOI", "score": [ @@ -22180,19 +20176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 3, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 777, + "id": 701, "result": { "type": "IOI", "score": [ - 27.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22201,18 +20197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 3, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 841, + "id": 702, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22220,19 +20216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 3, + "problemId": "d1.1", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1379, + "id": 703, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22240,15 +20236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 3, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2129, + "id": 704, "result": { "type": "IOI", "score": [ @@ -22260,19 +20256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 3, + "problemId": "d1.1", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4641, + "id": 705, "result": { "type": "IOI", "score": [ - 48.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22281,18 +20277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 3, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4933, + "id": 706, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22301,18 +20297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 3, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6041, + "id": 707, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22320,19 +20316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 3, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6913, + "id": 708, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22340,19 +20336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 3, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7552, + "id": 709, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22361,18 +20357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 3, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9084, + "id": 710, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22381,18 +20377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 3, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9667, + "id": 711, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22401,18 +20397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 3, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9973, + "id": 712, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22421,18 +20417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 3, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10750, + "id": 713, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22441,18 +20437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 3, + "teamId": "144318", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 21, + "id": 714, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22460,19 +20456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 425, + "id": 715, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22481,18 +20477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 482, + "id": 716, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22500,15 +20496,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 523, + "id": 717, "result": { "type": "IOI", "score": [ @@ -22521,38 +20517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 546, - "result": { - "type": "IOI", - "score": [ - 15.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 155, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 567, + "id": 718, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22560,15 +20536,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 155, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 965, + "id": 719, "result": { "type": "IOI", "score": [ @@ -22581,18 +20557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 984, + "id": 720, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22601,18 +20577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1028, + "id": 721, "result": { "type": "IOI", "score": [ - 76.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22621,14 +20597,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1111, + "id": 722, "result": { "type": "IOI", "score": [ @@ -22641,18 +20617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1174, + "id": 723, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22660,19 +20636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 155, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1237, + "id": 724, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22681,18 +20657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 155, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2336, + "id": 725, "result": { "type": "IOI", "score": [ - 37.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22700,19 +20676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 155, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2575, + "id": 726, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22720,19 +20696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5016, + "id": 727, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22740,15 +20716,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5252, + "id": 728, "result": { "type": "IOI", "score": [ @@ -22760,19 +20736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5655, + "id": 729, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22780,19 +20756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5911, + "id": 730, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22800,15 +20776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6890, + "id": 731, "result": { "type": "IOI", "score": [ @@ -22820,19 +20796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6982, + "id": 732, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22840,15 +20816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7060, + "id": 733, "result": { "type": "IOI", "score": [ @@ -22861,14 +20837,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 155, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7343, + "id": 734, "result": { "type": "IOI", "score": [ @@ -22880,59 +20856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7466, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7759, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7903, + "id": 735, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22941,18 +20877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 155, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8095, + "id": 736, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22960,19 +20896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8418, + "id": 737, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -22980,19 +20916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8482, + "id": 738, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23000,15 +20936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8724, + "id": 739, "result": { "type": "IOI", "score": [ @@ -23020,15 +20956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8747, + "id": 740, "result": { "type": "IOI", "score": [ @@ -23040,15 +20976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8800, + "id": 741, "result": { "type": "IOI", "score": [ @@ -23061,14 +20997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 155, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8852, + "id": 742, "result": { "type": "IOI", "score": [ @@ -23081,18 +21017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 155, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9029, + "id": 743, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23100,19 +21036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9209, + "id": 744, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23120,19 +21056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9259, + "id": 745, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23140,19 +21076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9351, + "id": 746, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23160,19 +21096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9383, + "id": 747, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23181,38 +21117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 155, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9608, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9640, + "id": 748, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23221,18 +21137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 155, + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9768, + "id": 749, "result": { "type": "IOI", "score": [ - 47.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23240,19 +21156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10159, + "id": 750, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23260,15 +21176,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.4", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10361, + "id": 751, "result": { "type": "IOI", "score": [ @@ -23280,59 +21196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10547, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 155, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10609, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10667, + "id": 752, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23340,19 +21216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11446, + "id": 753, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23360,19 +21236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11835, + "id": 754, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23380,39 +21256,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11905, + "id": 755, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11940, + "id": 756, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23420,19 +21300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 155, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 22, + "id": 757, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23441,18 +21321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 40, + "id": 758, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23460,19 +21340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 59, + "id": 759, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23481,38 +21361,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 75, + "id": 760, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 95, + "id": 761, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23521,18 +21405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 365, + "id": 762, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23541,18 +21425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144401", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 498, + "id": 763, "result": { "type": "IOI", "score": [ - 27.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23561,18 +21445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 511, + "id": 764, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23580,8 +21464,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23601,18 +21485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 71, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1853, + "id": 766, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23620,19 +21504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1859, + "id": 767, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23640,15 +21524,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1903, + "id": 768, "result": { "type": "IOI", "score": [ @@ -23660,19 +21544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2014, + "id": 769, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23680,19 +21564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.2", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2064, + "id": 770, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23700,15 +21584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2068, + "id": 771, "result": { "type": "IOI", "score": [ @@ -23721,18 +21605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 71, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2079, + "id": 772, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23740,19 +21624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2140, + "id": 773, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23760,19 +21644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2148, + "id": 774, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23780,15 +21664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2669, + "id": 775, "result": { "type": "IOI", "score": [ @@ -23800,179 +21684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2702, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2838, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3051, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3771, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4727, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5052, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6189, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6622, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6711, + "id": 776, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -23980,19 +21704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6789, + "id": 777, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24000,19 +21724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6833, + "id": 778, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24020,19 +21744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7030, + "id": 779, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24040,19 +21764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7490, + "id": 780, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24060,19 +21784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7723, + "id": 781, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24080,19 +21804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7770, + "id": 782, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24100,19 +21824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7804, + "id": 783, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24120,19 +21844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7963, + "id": 784, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24140,68 +21864,40 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8013, + "id": 785, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8033, + "id": 786, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8058, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -24209,18 +21905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 71, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8533, + "id": 787, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24229,18 +21925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 71, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8572, + "id": 788, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24248,19 +21944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10105, + "id": 789, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24268,15 +21964,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10238, + "id": 790, "result": { "type": "IOI", "score": [ @@ -24292,119 +21988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10253, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11269, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11336, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11634, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 71, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11695, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11722, + "id": 791, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24412,19 +22008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 71, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 23, + "id": 792, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24433,18 +22029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 360, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 140, + "id": 793, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24452,19 +22048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 360, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 182, + "id": 794, "result": { "type": "IOI", "score": [ - 9.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24473,18 +22069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 360, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 694, + "id": 795, "result": { "type": "IOI", "score": [ - 61.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24493,18 +22089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 360, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 879, + "id": 796, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24513,18 +22109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 360, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1336, + "id": 797, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24532,19 +22128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 360, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1510, + "id": 798, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24552,19 +22148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 360, + "problemId": "d1.1", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1560, + "id": 799, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24572,15 +22168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1995, + "id": 800, "result": { "type": "IOI", "score": [ @@ -24592,39 +22188,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2420, + "id": 801, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2522, + "id": 802, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24633,18 +22233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 360, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3104, + "id": 803, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24652,19 +22252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3203, + "id": 804, "result": { "type": "IOI", "score": [ - 37.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24673,14 +22273,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 360, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3479, + "id": 805, "result": { "type": "IOI", "score": [ @@ -24693,14 +22293,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 360, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3613, + "id": 806, "result": { "type": "IOI", "score": [ @@ -24713,18 +22313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 360, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3651, + "id": 807, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24732,19 +22332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3842, + "id": 808, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24752,19 +22352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6260, + "id": 809, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24772,19 +22372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 360, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6395, + "id": 810, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24793,18 +22393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 360, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7454, + "id": 811, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24812,19 +22412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7562, + "id": 812, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24833,18 +22433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 360, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8015, + "id": 813, "result": { "type": "IOI", "score": [ - 10.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24852,19 +22452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8924, + "id": 814, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24872,19 +22472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9309, + "id": 815, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24892,19 +22492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9331, + "id": 816, "result": { "type": "IOI", "score": [ - 35.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24912,15 +22512,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 360, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 24, + "id": 817, "result": { "type": "IOI", "score": [ @@ -24933,18 +22533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 127, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 28, + "id": 818, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24953,14 +22553,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 104, + "id": 819, "result": { "type": "IOI", "score": [ @@ -24973,18 +22573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 153, + "id": 820, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -24993,18 +22593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 527, + "id": 821, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25012,19 +22612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1180, + "id": 822, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25032,15 +22632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1405, + "id": 823, "result": { "type": "IOI", "score": [ @@ -25052,19 +22652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1412, + "id": 824, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25072,19 +22672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1423, + "id": 825, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25092,19 +22692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1433, + "id": 826, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25112,19 +22712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1448, + "id": 827, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25132,43 +22732,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2828, + "id": 828, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2908, + "id": 829, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25177,18 +22773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4360, + "id": 830, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25197,18 +22793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4952, + "id": 831, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25217,18 +22813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 127, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6915, + "id": 832, "result": { "type": "IOI", "score": [ - 0.0 + 40.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25236,19 +22832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 127, + "problemId": "d1.4", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10420, + "id": 833, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25256,15 +22852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11111, + "id": 834, "result": { "type": "IOI", "score": [ @@ -25276,39 +22872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11196, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11422, + "id": 835, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25316,43 +22892,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11759, + "id": 836, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11795, + "id": 837, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25360,19 +22932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11820, + "id": 838, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25380,19 +22952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 127, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 26, + "id": 839, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25400,15 +22972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 222, + "id": 840, "result": { "type": "IOI", "score": [ @@ -25421,18 +22993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 276, + "id": 841, "result": { "type": "IOI", "score": [ - 24.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25441,18 +23013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 303, + "id": 842, "result": { "type": "IOI", "score": [ - 9.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25461,18 +23033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 845, + "id": 843, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25481,14 +23053,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 309, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 885, + "id": 844, "result": { "type": "IOI", "score": [ @@ -25500,19 +23072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 916, + "id": 845, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25521,14 +23093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 309, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1790, + "id": 846, "result": { "type": "IOI", "score": [ @@ -25540,19 +23112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2109, + "id": 847, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25561,14 +23133,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2426, + "id": 848, "result": { "type": "IOI", "score": [ @@ -25581,18 +23153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2822, + "id": 849, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25601,18 +23173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2941, + "id": 850, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25620,19 +23192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3272, + "id": 851, "result": { "type": "IOI", "score": [ - 14.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25641,18 +23213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3362, + "id": 852, "result": { "type": "IOI", "score": [ - 38.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25660,15 +23232,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.2", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3979, + "id": 853, "result": { "type": "IOI", "score": [ @@ -25680,15 +23252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4145, + "id": 854, "result": { "type": "IOI", "score": [ @@ -25701,14 +23273,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4429, + "id": 855, "result": { "type": "IOI", "score": [ @@ -25720,15 +23292,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4784, + "id": 856, "result": { "type": "IOI", "score": [ @@ -25741,18 +23313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4788, + "id": 857, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25760,19 +23332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5311, + "id": 858, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25780,19 +23352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6161, + "id": 859, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25801,18 +23373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6564, + "id": 860, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25820,19 +23392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6703, + "id": 861, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25840,19 +23412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6753, + "id": 862, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25860,19 +23432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6777, + "id": 863, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25881,18 +23453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6781, + "id": 864, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25900,19 +23472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6884, + "id": 865, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25920,19 +23492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6957, + "id": 866, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25940,19 +23512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7111, + "id": 867, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25960,19 +23532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7403, + "id": 868, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -25980,19 +23552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7511, + "id": 869, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26000,19 +23572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7567, + "id": 870, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26021,18 +23593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7832, + "id": 871, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26040,19 +23612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8104, + "id": 872, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26060,19 +23632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8438, + "id": 873, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26080,19 +23652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8453, + "id": 874, "result": { "type": "IOI", "score": [ - 38.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26100,19 +23672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8477, + "id": 875, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26120,19 +23692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8491, + "id": 876, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26140,19 +23712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8547, + "id": 877, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26161,18 +23733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8577, + "id": 878, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26180,19 +23752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8597, + "id": 879, "result": { "type": "IOI", "score": [ - 38.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26201,18 +23773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8865, + "id": 880, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26220,19 +23792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8871, + "id": 881, "result": { "type": "IOI", "score": [ - 14.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26241,18 +23813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8959, + "id": 882, "result": { "type": "IOI", "score": [ - 14.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26261,18 +23833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 309, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8966, + "id": 883, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26280,19 +23852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8973, + "id": 884, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26300,19 +23872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9656, + "id": 885, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26320,19 +23892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10401, + "id": 886, "result": { "type": "IOI", "score": [ - 16.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26340,19 +23912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10886, + "id": 887, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26360,19 +23932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11015, + "id": 888, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26380,19 +23952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11116, + "id": 889, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26401,18 +23973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11416, + "id": 890, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26421,18 +23993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 309, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11692, + "id": 891, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26440,19 +24012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11707, + "id": 892, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26460,15 +24032,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 309, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 27, + "id": 893, "result": { "type": "IOI", "score": [ @@ -26481,14 +24053,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 283, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 751, + "id": 894, "result": { "type": "IOI", "score": [ @@ -26501,14 +24073,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 283, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 883, + "id": 895, "result": { "type": "IOI", "score": [ @@ -26520,19 +24092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144340", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1023, + "id": 896, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26540,19 +24112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2261, + "id": 897, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26560,19 +24132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2363, + "id": 898, "result": { "type": "IOI", "score": [ - 19.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26580,19 +24152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2447, + "id": 899, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26600,19 +24172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2467, + "id": 900, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26620,19 +24192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2587, + "id": 901, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26640,19 +24212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2710, + "id": 902, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26661,18 +24233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 283, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2780, + "id": 903, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26680,19 +24252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3069, + "id": 904, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26700,19 +24272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3093, + "id": 905, "result": { "type": "IOI", "score": [ - 67.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26720,19 +24292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3098, + "id": 906, "result": { "type": "IOI", "score": [ - 67.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26740,19 +24312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3197, + "id": 907, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26760,19 +24332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3243, + "id": 908, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26780,19 +24352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3341, + "id": 909, "result": { "type": "IOI", "score": [ - 81.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26800,15 +24372,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3498, + "id": 910, "result": { "type": "IOI", "score": [ @@ -26820,15 +24392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3512, + "id": 911, "result": { "type": "IOI", "score": [ @@ -26841,18 +24413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3575, + "id": 912, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26861,18 +24433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4405, + "id": 913, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26880,15 +24452,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4904, + "id": 914, "result": { "type": "IOI", "score": [ @@ -26901,14 +24473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4929, + "id": 915, "result": { "type": "IOI", "score": [ @@ -26920,19 +24492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4993, + "id": 916, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -26941,14 +24513,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5011, + "id": 917, "result": { "type": "IOI", "score": [ @@ -26961,38 +24533,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5018, + "id": 918, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5077, + "id": 919, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27000,43 +24576,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5114, + "id": 920, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5123, + "id": 921, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27044,19 +24616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5162, + "id": 922, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27064,19 +24636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5388, + "id": 923, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27084,19 +24656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5424, + "id": 924, "result": { "type": "IOI", "score": [ - 37.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27104,19 +24676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144401", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5651, + "id": 925, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27124,15 +24696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5757, + "id": 926, "result": { "type": "IOI", "score": [ @@ -27145,18 +24717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5915, + "id": 927, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27164,15 +24736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5934, + "id": 928, "result": { "type": "IOI", "score": [ @@ -27189,14 +24761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5947, + "id": 929, "result": { "type": "IOI", "score": [ @@ -27208,19 +24780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5971, + "id": 930, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27229,14 +24801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6007, + "id": 931, "result": { "type": "IOI", "score": [ @@ -27249,18 +24821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6093, + "id": 932, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27269,18 +24841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6103, + "id": 933, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27289,38 +24861,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6223, + "id": 934, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6292, + "id": 935, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27329,18 +24905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6324, + "id": 936, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27349,18 +24925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6333, + "id": 937, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27368,19 +24944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6433, + "id": 938, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27389,38 +24965,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 283, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7429, + "id": 939, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7791, + "id": 940, "result": { "type": "IOI", "score": [ - 67.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27428,19 +25008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.2", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7809, + "id": 941, "result": { "type": "IOI", "score": [ - 67.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27448,19 +25028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8629, + "id": 942, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27468,19 +25048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8675, + "id": 943, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27488,19 +25068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8996, + "id": 944, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27508,19 +25088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10106, + "id": 945, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27528,19 +25108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10277, + "id": 946, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27548,19 +25128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10470, + "id": 947, "result": { "type": "IOI", "score": [ - 53.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27568,19 +25148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11157, + "id": 948, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27588,19 +25168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11171, + "id": 949, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27609,14 +25189,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 283, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11224, + "id": 950, "result": { "type": "IOI", "score": [ @@ -27628,15 +25208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11234, + "id": 951, "result": { "type": "IOI", "score": [ @@ -27648,19 +25228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11256, + "id": 952, "result": { "type": "IOI", "score": [ - 69.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27668,19 +25248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.3", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11265, + "id": 953, "result": { "type": "IOI", "score": [ - 69.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27688,19 +25268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11315, + "id": 954, "result": { "type": "IOI", "score": [ - 69.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27708,19 +25288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11323, + "id": 955, "result": { "type": "IOI", "score": [ - 69.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27728,19 +25308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11352, + "id": 956, "result": { "type": "IOI", "score": [ - 69.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27748,19 +25328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11359, + "id": 957, "result": { "type": "IOI", "score": [ - 69.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27768,19 +25348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11404, + "id": 958, "result": { "type": "IOI", "score": [ - 69.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27788,19 +25368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11417, + "id": 959, "result": { "type": "IOI", "score": [ - 69.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27808,19 +25388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 283, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11822, + "id": 960, "result": { "type": "IOI", "score": [ - 33.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27828,19 +25408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 283, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 34, + "id": 961, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27848,19 +25428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2086, + "id": 962, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27868,19 +25448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2912, + "id": 963, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27888,19 +25468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3021, + "id": 964, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27908,19 +25488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3170, + "id": 965, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27928,15 +25508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4170, + "id": 966, "result": { "type": "IOI", "score": [ @@ -27948,19 +25528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4236, + "id": 967, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27968,19 +25548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4328, + "id": 968, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -27988,19 +25568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4584, + "id": 969, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28008,19 +25588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4753, + "id": 970, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28028,15 +25608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4839, + "id": 971, "result": { "type": "IOI", "score": [ @@ -28048,15 +25628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4868, + "id": 972, "result": { "type": "IOI", "score": [ @@ -28068,19 +25648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4922, + "id": 973, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28088,19 +25668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5010, + "id": 974, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28108,15 +25688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5059, + "id": 975, "result": { "type": "IOI", "score": [ @@ -28128,19 +25708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5108, + "id": 976, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28148,19 +25728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5373, + "id": 977, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28168,19 +25748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5443, + "id": 978, "result": { "type": "IOI", "score": [ - 47.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28188,15 +25768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5516, + "id": 979, "result": { "type": "IOI", "score": [ @@ -28209,14 +25789,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 1, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5550, + "id": 980, "result": { "type": "IOI", "score": [ @@ -28228,15 +25808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5662, + "id": 981, "result": { "type": "IOI", "score": [ @@ -28248,19 +25828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6599, + "id": 982, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28268,19 +25848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6735, + "id": 983, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28288,19 +25868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.1", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7535, + "id": 984, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28308,19 +25888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9095, + "id": 985, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28328,19 +25908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9775, + "id": 986, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28348,19 +25928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9832, + "id": 987, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28369,18 +25949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 1, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9909, + "id": 988, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28388,19 +25968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 1, + "problemId": "d1.2", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10814, + "id": 989, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28408,19 +25988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11033, + "id": 990, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28428,19 +26008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11415, + "id": 991, "result": { "type": "IOI", "score": [ - 25.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28448,19 +26028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11650, + "id": 992, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28469,18 +26049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 1, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11706, + "id": 993, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28488,15 +26068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 1, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11983, + "id": 994, "result": { "type": "IOI", "score": [ @@ -28508,19 +26088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 1, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12071, + "id": 995, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28529,14 +26109,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 1, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 35, + "id": 996, "result": { "type": "IOI", "score": [ @@ -28548,19 +26128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 60, + "id": 997, "result": { "type": "IOI", "score": [ - 14.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28568,19 +26148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 560, + "id": 998, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28588,19 +26168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 659, + "id": 999, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28609,18 +26189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 729, + "id": 1000, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28628,19 +26208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 753, + "id": 1001, "result": { "type": "IOI", "score": [ - 25.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28648,19 +26228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1014, + "id": 1002, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28669,18 +26249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1070, + "id": 1003, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28689,18 +26269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1184, + "id": 1004, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28709,34 +26289,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1722, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 433, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1792, + "id": 1005, "result": { "type": "IOI", "score": [ @@ -28748,15 +26308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1804, + "id": 1006, "result": { "type": "IOI", "score": [ @@ -28768,19 +26328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1845, + "id": 1007, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28788,19 +26348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2063, + "id": 1008, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28808,19 +26368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2087, + "id": 1009, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28829,18 +26389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2102, + "id": 1010, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28849,14 +26409,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2181, + "id": 1011, "result": { "type": "IOI", "score": [ @@ -28868,15 +26428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2203, + "id": 1012, "result": { "type": "IOI", "score": [ @@ -28888,15 +26448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2221, + "id": 1013, "result": { "type": "IOI", "score": [ @@ -28909,18 +26469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2274, + "id": 1014, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28929,18 +26489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2292, + "id": 1015, "result": { "type": "IOI", "score": [ - 57.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28948,43 +26508,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2450, + "id": 1016, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2462, + "id": 1017, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -28992,15 +26548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2494, + "id": 1018, "result": { "type": "IOI", "score": [ @@ -29012,19 +26568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2548, + "id": 1019, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29033,18 +26589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2585, + "id": 1020, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29053,18 +26609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2606, + "id": 1021, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29072,15 +26628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2703, + "id": 1022, "result": { "type": "IOI", "score": [ @@ -29092,19 +26648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2821, + "id": 1023, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29112,19 +26668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2851, + "id": 1024, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29133,18 +26689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 433, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3142, + "id": 1025, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29152,19 +26708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3485, + "id": 1026, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29172,19 +26728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3601, + "id": 1027, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29192,19 +26748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3626, + "id": 1028, "result": { "type": "IOI", "score": [ - 12.0 + 76.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29212,19 +26768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3739, + "id": 1029, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29232,19 +26788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3768, + "id": 1030, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29252,19 +26808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3809, + "id": 1031, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29272,19 +26828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3835, + "id": 1032, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29292,15 +26848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3878, + "id": 1033, "result": { "type": "IOI", "score": [ @@ -29312,15 +26868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3912, + "id": 1034, "result": { "type": "IOI", "score": [ @@ -29332,19 +26888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3980, + "id": 1035, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29352,15 +26908,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4007, + "id": 1036, "result": { "type": "IOI", "score": [ @@ -29372,19 +26928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4026, + "id": 1037, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29392,19 +26948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4072, + "id": 1038, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29412,19 +26968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4076, + "id": 1039, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29433,18 +26989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 433, + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4080, + "id": 1040, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29452,19 +27008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4340, + "id": 1041, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29472,15 +27028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4412, + "id": 1042, "result": { "type": "IOI", "score": [ @@ -29492,15 +27048,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4427, + "id": 1043, "result": { "type": "IOI", "score": [ @@ -29513,18 +27069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 433, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4454, + "id": 1044, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29532,15 +27088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4501, + "id": 1045, "result": { "type": "IOI", "score": [ @@ -29553,18 +27109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 433, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4521, + "id": 1046, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29572,19 +27128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 433, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4777, + "id": 1047, "result": { "type": "IOI", "score": [ - 23.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29593,18 +27149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4811, + "id": 1048, "result": { "type": "IOI", "score": [ - 23.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29613,18 +27169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4840, + "id": 1049, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29632,19 +27188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4942, + "id": 1050, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29652,19 +27208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4990, + "id": 1051, "result": { "type": "IOI", "score": [ - 23.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29672,19 +27228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5046, + "id": 1052, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29692,19 +27248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5062, + "id": 1053, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29712,19 +27268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5264, + "id": 1054, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29732,19 +27288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5303, + "id": 1055, "result": { "type": "IOI", "score": [ - 9.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29752,19 +27308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6075, + "id": 1056, "result": { "type": "IOI", "score": [ - 9.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29773,18 +27329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6239, + "id": 1057, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29793,18 +27349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6277, + "id": 1058, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29812,19 +27368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6287, + "id": 1059, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29832,19 +27388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6445, + "id": 1060, "result": { "type": "IOI", "score": [ - 34.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29853,18 +27409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6486, + "id": 1061, "result": { "type": "IOI", "score": [ - 9.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29873,18 +27429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6697, + "id": 1062, "result": { "type": "IOI", "score": [ - 34.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29892,19 +27448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6772, + "id": 1063, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29912,19 +27468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6856, + "id": 1064, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29932,19 +27488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6946, + "id": 1065, "result": { "type": "IOI", "score": [ - 34.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29952,19 +27508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6986, + "id": 1066, "result": { "type": "IOI", "score": [ - 34.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29973,18 +27529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7025, + "id": 1067, "result": { "type": "IOI", "score": [ - 21.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -29993,18 +27549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7051, + "id": 1068, "result": { "type": "IOI", "score": [ - 21.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30012,19 +27568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7136, + "id": 1069, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30032,19 +27588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7380, + "id": 1070, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30052,19 +27608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7508, + "id": 1071, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30073,18 +27629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7638, + "id": 1072, "result": { "type": "IOI", "score": [ - 9.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30093,18 +27649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7655, + "id": 1073, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30113,18 +27669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7724, + "id": 1074, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30132,19 +27688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7989, + "id": 1075, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30152,15 +27708,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8021, + "id": 1076, "result": { "type": "IOI", "score": [ @@ -30177,18 +27733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8027, + "id": 1077, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30196,15 +27752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8094, + "id": 1078, "result": { "type": "IOI", "score": [ @@ -30216,19 +27772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8329, + "id": 1079, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30236,19 +27792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8532, + "id": 1080, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30256,19 +27812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8549, + "id": 1081, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30276,19 +27832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8571, + "id": 1082, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30297,18 +27853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8603, + "id": 1083, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30316,19 +27872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8628, + "id": 1084, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30337,18 +27893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9044, + "id": 1085, "result": { "type": "IOI", "score": [ - 48.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30357,18 +27913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9074, + "id": 1086, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30376,19 +27932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9098, + "id": 1087, "result": { "type": "IOI", "score": [ - 9.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30396,19 +27952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9125, + "id": 1088, "result": { "type": "IOI", "score": [ - 61.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30417,18 +27973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9184, + "id": 1089, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30436,19 +27992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9211, + "id": 1090, "result": { "type": "IOI", "score": [ - 61.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30457,38 +28013,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9284, + "id": 1091, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9337, + "id": 1092, "result": { "type": "IOI", "score": [ - 61.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30497,18 +28057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9479, + "id": 1093, "result": { "type": "IOI", "score": [ - 9.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30517,18 +28077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9521, + "id": 1094, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30536,19 +28096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9551, + "id": 1095, "result": { "type": "IOI", "score": [ - 61.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30557,18 +28117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9703, + "id": 1096, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30576,19 +28136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9759, + "id": 1097, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30596,19 +28156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9788, + "id": 1098, "result": { "type": "IOI", "score": [ - 9.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30616,43 +28176,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9833, + "id": 1099, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9835, + "id": 1100, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30660,19 +28216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9895, + "id": 1101, "result": { "type": "IOI", "score": [ - 9.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30680,19 +28236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9919, + "id": 1102, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30700,19 +28256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10015, + "id": 1103, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30720,19 +28276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10055, + "id": 1104, "result": { "type": "IOI", "score": [ - 21.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30741,18 +28297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10081, + "id": 1105, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30760,19 +28316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10135, + "id": 1106, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30780,19 +28336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.2", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10164, + "id": 1107, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30800,19 +28356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10205, + "id": 1108, "result": { "type": "IOI", "score": [ - 21.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30821,18 +28377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10225, + "id": 1109, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30840,19 +28396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10339, + "id": 1110, "result": { "type": "IOI", "score": [ - 36.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30861,18 +28417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10423, + "id": 1111, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30881,18 +28437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10508, + "id": 1112, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30900,19 +28456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10543, + "id": 1113, "result": { "type": "IOI", "score": [ - 76.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30921,18 +28477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10714, + "id": 1114, "result": { "type": "IOI", "score": [ - 9.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30941,18 +28497,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10837, + "id": 1115, "result": { "type": "IOI", "score": [ - 9.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30961,18 +28517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10858, + "id": 1116, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -30981,18 +28537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10922, + "id": 1117, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31000,15 +28556,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11009, + "id": 1118, "result": { "type": "IOI", "score": [ @@ -31021,66 +28577,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11124, + "id": 1119, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11141, + "id": 1120, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11150, + "id": 1121, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31088,43 +28636,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11466, + "id": 1122, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11475, + "id": 1123, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31132,19 +28676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11635, + "id": 1124, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31152,19 +28696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11889, + "id": 1125, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31173,18 +28717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 433, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11939, + "id": 1126, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31192,19 +28736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 433, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 36, + "id": 1127, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31212,15 +28756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 986, + "id": 1128, "result": { "type": "IOI", "score": [ @@ -31232,15 +28776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1021, + "id": 1129, "result": { "type": "IOI", "score": [ @@ -31252,39 +28796,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.2", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1290, + "id": 1130, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1308, + "id": 1131, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31292,15 +28840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1369, + "id": 1132, "result": { "type": "IOI", "score": [ @@ -31313,18 +28861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 80, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1895, + "id": 1133, "result": { "type": "IOI", "score": [ - 51.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31333,18 +28881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 80, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1998, + "id": 1134, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31352,19 +28900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2701, + "id": 1135, "result": { "type": "IOI", "score": [ - 63.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31373,18 +28921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 80, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2863, + "id": 1136, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31392,19 +28940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3153, + "id": 1137, "result": { "type": "IOI", "score": [ - 63.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31413,18 +28961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 80, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3738, + "id": 1138, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31432,19 +28980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6483, + "id": 1139, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31452,19 +29000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 80, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7138, + "id": 1140, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31472,19 +29020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7864, + "id": 1141, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31492,19 +29040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8053, + "id": 1142, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31512,19 +29060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8868, + "id": 1143, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31532,15 +29080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9268, + "id": 1144, "result": { "type": "IOI", "score": [ @@ -31552,19 +29100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9330, + "id": 1145, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31572,19 +29120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.4", + "teamId": "144281", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9519, + "id": 1146, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31592,15 +29140,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9939, + "id": 1147, "result": { "type": "IOI", "score": [ @@ -31612,19 +29160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.2", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10060, + "id": 1148, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31632,19 +29180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.2", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10134, + "id": 1149, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31652,19 +29200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10368, + "id": 1150, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31673,18 +29221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 80, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11050, + "id": 1151, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31692,15 +29240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.4", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11509, + "id": 1152, "result": { "type": "IOI", "score": [ @@ -31712,19 +29260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 80, + "problemId": "d1.1", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 37, + "id": 1153, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31732,19 +29280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 26, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 507, + "id": 1154, "result": { "type": "IOI", "score": [ - 27.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31752,19 +29300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 26, + "problemId": "d1.2", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 592, + "id": 1155, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31772,19 +29320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 26, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2900, + "id": 1156, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31792,19 +29340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 26, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4268, + "id": 1157, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31812,19 +29360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 26, + "problemId": "d1.4", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4287, + "id": 1158, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31833,18 +29381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 26, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4644, + "id": 1159, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31853,14 +29401,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 26, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6831, + "id": 1160, "result": { "type": "IOI", "score": [ @@ -31872,19 +29420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 26, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7073, + "id": 1161, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31892,19 +29440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 26, + "problemId": "d1.4", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10140, + "id": 1162, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31913,18 +29461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 26, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12068, + "id": 1163, "result": { "type": "IOI", "score": [ - 31.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31932,19 +29480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 26, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 38, + "id": 1164, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -31953,14 +29501,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 91, + "id": 1165, "result": { "type": "IOI", "score": [ @@ -31972,15 +29520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 278, + "id": 1166, "result": { "type": "IOI", "score": [ @@ -31993,18 +29541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 296, + "id": 1167, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32013,14 +29561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 319, + "id": 1168, "result": { "type": "IOI", "score": [ @@ -32032,15 +29580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 381, + "id": 1169, "result": { "type": "IOI", "score": [ @@ -32052,19 +29600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 394, + "id": 1170, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32072,19 +29620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 426, + "id": 1171, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32092,15 +29640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 444, + "id": 1172, "result": { "type": "IOI", "score": [ @@ -32113,18 +29661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 784, + "id": 1173, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32132,19 +29680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 823, + "id": 1174, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32152,19 +29700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 876, + "id": 1175, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32172,19 +29720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 911, + "id": 1176, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32192,19 +29740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 938, + "id": 1177, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32212,15 +29760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 948, + "id": 1178, "result": { "type": "IOI", "score": [ @@ -32232,19 +29780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1138, + "id": 1179, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32252,19 +29800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1370, + "id": 1180, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32272,19 +29820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1661, + "id": 1181, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32292,19 +29840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1906, + "id": 1182, "result": { "type": "IOI", "score": [ - 10.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32312,19 +29860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1968, + "id": 1183, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32332,19 +29880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2000, + "id": 1184, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32353,18 +29901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2182, + "id": 1185, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32372,19 +29920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2201, + "id": 1186, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32393,18 +29941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2342, + "id": 1187, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32412,15 +29960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2619, + "id": 1188, "result": { "type": "IOI", "score": [ @@ -32433,18 +29981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2645, + "id": 1189, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32453,18 +30001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3323, + "id": 1190, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32472,15 +30020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3454, + "id": 1191, "result": { "type": "IOI", "score": [ @@ -32492,19 +30040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3507, + "id": 1192, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32512,19 +30060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3697, + "id": 1193, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32532,15 +30080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3755, + "id": 1194, "result": { "type": "IOI", "score": [ @@ -32553,58 +30101,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3774, + "id": 1195, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 405, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4011, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4148, + "id": 1196, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32612,19 +30144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4314, + "id": 1197, "result": { "type": "IOI", "score": [ - 23.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32633,18 +30165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4388, + "id": 1198, "result": { "type": "IOI", "score": [ - 38.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32653,14 +30185,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4544, + "id": 1199, "result": { "type": "IOI", "score": [ @@ -32673,18 +30205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4720, + "id": 1200, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32692,15 +30224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4795, + "id": 1201, "result": { "type": "IOI", "score": [ @@ -32713,34 +30245,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5155, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 405, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5181, + "id": 1202, "result": { "type": "IOI", "score": [ @@ -32753,78 +30265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5568, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 405, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5589, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 405, + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5635, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 405, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5667, + "id": 1203, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32832,19 +30284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5719, + "id": 1204, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32852,19 +30304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5791, + "id": 1205, "result": { "type": "IOI", "score": [ - 22.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32872,19 +30324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5853, + "id": 1206, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32893,14 +30345,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5919, + "id": 1207, "result": { "type": "IOI", "score": [ @@ -32913,18 +30365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6089, + "id": 1208, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32932,39 +30384,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6437, + "id": 1209, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6479, + "id": 1210, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32973,18 +30429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6754, + "id": 1211, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -32993,38 +30449,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 405, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7124, + "id": 1212, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7554, + "id": 1213, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33032,19 +30492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7831, + "id": 1214, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33052,43 +30512,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8595, + "id": 1215, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8606, + "id": 1216, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33097,18 +30553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8634, + "id": 1217, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33117,18 +30573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8895, + "id": 1218, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33136,19 +30592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9121, + "id": 1219, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33156,19 +30612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9166, + "id": 1220, "result": { "type": "IOI", "score": [ - 10.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33176,19 +30632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9175, + "id": 1221, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33197,18 +30653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9190, + "id": 1222, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33217,18 +30673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9371, + "id": 1223, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33236,19 +30692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9399, + "id": 1224, "result": { "type": "IOI", "score": [ - 22.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33256,19 +30712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9477, + "id": 1225, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33277,18 +30733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9544, + "id": 1226, "result": { "type": "IOI", "score": [ - 35.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33296,19 +30752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9682, + "id": 1227, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33317,18 +30773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 405, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9763, + "id": 1228, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33336,19 +30792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9798, + "id": 1229, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33356,19 +30812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9827, + "id": 1230, "result": { "type": "IOI", "score": [ - 35.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33376,19 +30832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9859, + "id": 1231, "result": { "type": "IOI", "score": [ - 22.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33396,19 +30852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9902, + "id": 1232, "result": { "type": "IOI", "score": [ - 22.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33416,19 +30872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144281", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9931, + "id": 1233, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33436,63 +30892,63 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10000, + "id": 1234, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 405, + "problemId": "d1.4", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10445, + "id": 1235, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 405, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10478, + "id": 1236, "result": { "type": "IOI", "score": [ - 38.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33501,18 +30957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10672, + "id": 1237, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33521,14 +30977,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10799, + "id": 1238, "result": { "type": "IOI", "score": [ @@ -33541,18 +30997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 405, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10950, + "id": 1239, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33560,19 +31016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 405, + "problemId": "d1.2", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11066, + "id": 1240, "result": { "type": "IOI", "score": [ - 38.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33580,19 +31036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 405, + "problemId": "d1.1", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 39, + "id": 1241, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33601,14 +31057,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 33, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 399, + "id": 1242, "result": { "type": "IOI", "score": [ @@ -33621,14 +31077,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 33, + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1256, + "id": 1243, "result": { "type": "IOI", "score": [ @@ -33640,19 +31096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1328, + "id": 1244, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33660,19 +31116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1755, + "id": 1245, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33680,19 +31136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2134, + "id": 1246, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33701,14 +31157,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 33, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2920, + "id": 1247, "result": { "type": "IOI", "score": [ @@ -33720,19 +31176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2991, + "id": 1248, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33740,19 +31196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3082, + "id": 1249, "result": { "type": "IOI", "score": [ - 9.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33761,18 +31217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 33, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3977, + "id": 1250, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33781,18 +31237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 33, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4058, + "id": 1251, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33801,18 +31257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 33, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4160, + "id": 1252, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33821,14 +31277,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 33, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4851, + "id": 1253, "result": { "type": "IOI", "score": [ @@ -33840,19 +31296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6752, + "id": 1254, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33860,19 +31316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6871, + "id": 1255, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33880,15 +31336,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6933, + "id": 1256, "result": { "type": "IOI", "score": [ @@ -33900,19 +31356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7121, + "id": 1257, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33920,19 +31376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 33, + "problemId": "d1.3", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8965, + "id": 1258, "result": { "type": "IOI", "score": [ - 38.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33940,19 +31396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9183, + "id": 1259, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33960,19 +31416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9221, + "id": 1260, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -33980,19 +31436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9323, + "id": 1261, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34000,19 +31456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9390, + "id": 1262, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34020,19 +31476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9436, + "id": 1263, "result": { "type": "IOI", "score": [ - 22.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34040,19 +31496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9506, + "id": 1264, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34061,18 +31517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 33, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9520, + "id": 1265, "result": { "type": "IOI", "score": [ - 22.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34080,19 +31536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9607, + "id": 1266, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34100,19 +31556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9717, + "id": 1267, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34121,18 +31577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 33, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9856, + "id": 1268, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34140,15 +31596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 33, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10824, + "id": 1269, "result": { "type": "IOI", "score": [ @@ -34160,19 +31616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11163, + "id": 1270, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34180,19 +31636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11407, + "id": 1271, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34201,42 +31657,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 33, + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11418, + "id": 1272, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11425, + "id": 1273, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34244,15 +31696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.2", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11573, + "id": 1274, "result": { "type": "IOI", "score": [ @@ -34264,15 +31716,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11738, + "id": 1275, "result": { "type": "IOI", "score": [ @@ -34284,19 +31736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 33, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 41, + "id": 1276, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34304,8 +31756,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 87, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34325,18 +31777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 87, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1330, + "id": 1278, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34344,43 +31796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1374, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1393, + "id": 1279, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34388,15 +31816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1431, + "id": 1280, "result": { "type": "IOI", "score": [ @@ -34409,18 +31837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 87, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1544, + "id": 1281, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34428,19 +31856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1632, + "id": 1282, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34448,19 +31876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1776, + "id": 1283, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34468,15 +31896,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1819, + "id": 1284, "result": { "type": "IOI", "score": [ @@ -34488,39 +31916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1870, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1938, + "id": 1285, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34528,15 +31936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1978, + "id": 1286, "result": { "type": "IOI", "score": [ @@ -34549,18 +31957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 87, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2048, + "id": 1287, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34568,19 +31976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2084, + "id": 1288, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34588,19 +31996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2190, + "id": 1289, "result": { "type": "IOI", "score": [ - 37.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34608,19 +32016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2985, + "id": 1290, "result": { "type": "IOI", "score": [ - 37.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34628,19 +32036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3028, + "id": 1291, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34649,18 +32057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 87, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5395, + "id": 1292, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34669,18 +32077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 87, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5445, + "id": 1293, "result": { "type": "IOI", "score": [ - 31.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34688,19 +32096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5481, + "id": 1294, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34708,19 +32116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6139, + "id": 1295, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34728,19 +32136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6424, + "id": 1296, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34748,15 +32156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6449, + "id": 1297, "result": { "type": "IOI", "score": [ @@ -34769,18 +32177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 87, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6529, + "id": 1298, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34788,19 +32196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6543, + "id": 1299, "result": { "type": "IOI", "score": [ - 16.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34808,19 +32216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6656, + "id": 1300, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34828,19 +32236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6692, + "id": 1301, "result": { "type": "IOI", "score": [ - 33.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34848,19 +32256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7043, + "id": 1302, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34868,19 +32276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7091, + "id": 1303, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34888,19 +32296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7110, + "id": 1304, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34908,19 +32316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7204, + "id": 1305, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34928,19 +32336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7289, + "id": 1306, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34949,18 +32357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 87, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10136, + "id": 1307, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34968,19 +32376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10237, + "id": 1308, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -34988,19 +32396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10549, + "id": 1309, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35008,19 +32416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.3", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10732, + "id": 1310, "result": { "type": "IOI", "score": [ - 57.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35028,19 +32436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10943, + "id": 1311, "result": { "type": "IOI", "score": [ - 57.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35048,19 +32456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11179, + "id": 1312, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35068,15 +32476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11241, + "id": 1313, "result": { "type": "IOI", "score": [ @@ -35088,19 +32496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11440, + "id": 1314, "result": { "type": "IOI", "score": [ - 41.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35108,19 +32516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.4", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11581, + "id": 1315, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35128,19 +32536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11708, + "id": 1316, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35148,35 +32556,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 87, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 42, + "id": 1317, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 411, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 44, + "id": 1318, "result": { "type": "IOI", "score": [ @@ -35189,14 +32601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 411, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1559, + "id": 1319, "result": { "type": "IOI", "score": [ @@ -35209,38 +32621,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 411, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1797, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 411, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1805, + "id": 1320, "result": { "type": "IOI", "score": [ @@ -35253,18 +32641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 411, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1899, + "id": 1321, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35272,19 +32660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2042, + "id": 1322, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35292,19 +32680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2881, + "id": 1323, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35312,15 +32700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3088, + "id": 1324, "result": { "type": "IOI", "score": [ @@ -35333,18 +32721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 411, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3138, + "id": 1325, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35352,15 +32740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3239, + "id": 1326, "result": { "type": "IOI", "score": [ @@ -35372,19 +32760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3353, + "id": 1327, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35392,19 +32780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 411, + "problemId": "d1.2", + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5189, + "id": 1328, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35413,14 +32801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5291, + "id": 1329, "result": { "type": "IOI", "score": [ @@ -35432,15 +32820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 411, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5570, + "id": 1330, "result": { "type": "IOI", "score": [ @@ -35453,18 +32841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5732, + "id": 1331, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35472,19 +32860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5847, + "id": 1332, "result": { "type": "IOI", "score": [ - 47.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35492,19 +32880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6081, + "id": 1333, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35512,19 +32900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6244, + "id": 1334, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35532,19 +32920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6335, + "id": 1335, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35552,19 +32940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6408, + "id": 1336, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35572,15 +32960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.3", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7867, + "id": 1337, "result": { "type": "IOI", "score": [ @@ -35592,19 +32980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8474, + "id": 1338, "result": { "type": "IOI", "score": [ - 12.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35612,19 +33000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8746, + "id": 1339, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35632,19 +33020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8893, + "id": 1340, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35652,19 +33040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9115, + "id": 1341, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35672,15 +33060,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9874, + "id": 1342, "result": { "type": "IOI", "score": [ @@ -35692,19 +33080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 411, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9969, + "id": 1343, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35713,18 +33101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10075, + "id": 1344, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35733,38 +33121,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10358, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 411, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10379, + "id": 1345, "result": { "type": "IOI", "score": [ @@ -35777,18 +33141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 411, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10660, + "id": 1346, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35797,18 +33161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 411, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10801, + "id": 1347, "result": { "type": "IOI", "score": [ - 16.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35816,19 +33180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 411, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11038, + "id": 1348, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35836,19 +33200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 411, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11112, + "id": 1349, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35857,18 +33221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 411, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11445, + "id": 1350, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35877,42 +33241,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11528, + "id": 1351, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 411, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11670, + "id": 1352, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35920,19 +33280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 411, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 43, + "id": 1353, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35940,19 +33300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 315, + "problemId": "d1.2", + "teamId": "144358", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 685, + "id": 1354, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35960,19 +33320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 315, + "problemId": "d1.1", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 997, + "id": 1355, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -35981,18 +33341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 315, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1257, + "id": 1356, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36000,19 +33360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1958, + "id": 1357, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36020,19 +33380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 315, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2449, + "id": 1358, "result": { "type": "IOI", "score": [ - 25.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36040,19 +33400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144281", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3508, + "id": 1359, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36061,18 +33421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 315, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3578, + "id": 1360, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36080,19 +33440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 315, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3880, + "id": 1361, "result": { "type": "IOI", "score": [ - 58.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36100,19 +33460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3944, + "id": 1362, "result": { "type": "IOI", "score": [ - 58.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36121,18 +33481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 315, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4018, + "id": 1363, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36140,19 +33500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 315, + "problemId": "d1.2", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5216, + "id": 1364, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36160,19 +33520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5722, + "id": 1365, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36180,19 +33540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6434, + "id": 1366, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36200,19 +33560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6651, + "id": 1367, "result": { "type": "IOI", "score": [ - 69.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36220,15 +33580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7308, + "id": 1368, "result": { "type": "IOI", "score": [ @@ -36240,19 +33600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7327, + "id": 1369, "result": { "type": "IOI", "score": [ - 100.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36260,19 +33620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 315, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9189, + "id": 1370, "result": { "type": "IOI", "score": [ - 68.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36281,18 +33641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 315, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 45, + "id": 1371, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36301,18 +33661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 141, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 76, + "id": 1372, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36320,19 +33680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 141, + "problemId": "d1.2", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 198, + "id": 1373, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36340,39 +33700,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1057, + "id": 1374, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1489, + "id": 1375, "result": { "type": "IOI", "score": [ - 27.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36381,18 +33745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 141, + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1871, + "id": 1376, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36400,19 +33764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2386, + "id": 1377, "result": { "type": "IOI", "score": [ - 0.0 + 41.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36420,19 +33784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2503, + "id": 1378, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36440,19 +33804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2720, + "id": 1379, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36460,19 +33824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3402, + "id": 1380, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36480,15 +33844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6312, + "id": 1381, "result": { "type": "IOI", "score": [ @@ -36500,19 +33864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6508, + "id": 1382, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36520,19 +33884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6578, + "id": 1383, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36540,19 +33904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7107, + "id": 1384, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36560,19 +33924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7140, + "id": 1385, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36580,15 +33944,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8620, + "id": 1386, "result": { "type": "IOI", "score": [ @@ -36600,19 +33964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8889, + "id": 1387, "result": { "type": "IOI", "score": [ - 12.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36620,15 +33984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 141, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9560, + "id": 1388, "result": { "type": "IOI", "score": [ @@ -36640,19 +34004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 141, + "problemId": "d1.2", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9614, + "id": 1389, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36661,18 +34025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 141, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9773, + "id": 1390, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36680,19 +34044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 141, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10287, + "id": 1391, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36700,19 +34064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10915, + "id": 1392, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36720,15 +34084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11936, + "id": 1393, "result": { "type": "IOI", "score": [ @@ -36740,19 +34104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12027, + "id": 1394, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36760,15 +34124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 141, + "problemId": "d1.1", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 46, + "id": 1395, "result": { "type": "IOI", "score": [ @@ -36781,18 +34145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 92, + "id": 1396, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36800,19 +34164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 120, + "id": 1397, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36821,18 +34185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 171, + "id": 1398, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36840,19 +34204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 350, + "id": 1399, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36861,18 +34225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 484, + "id": 1400, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36881,18 +34245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 215, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 596, + "id": 1401, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36900,19 +34264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 215, + "problemId": "d1.2", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 633, + "id": 1402, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36920,19 +34284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 682, + "id": 1403, "result": { "type": "IOI", "score": [ - 100.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36941,18 +34305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 215, + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1745, + "id": 1404, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36960,19 +34324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2341, + "id": 1405, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -36980,19 +34344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2407, + "id": 1406, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37000,15 +34364,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2622, + "id": 1407, "result": { "type": "IOI", "score": [ @@ -37020,15 +34384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2636, + "id": 1408, "result": { "type": "IOI", "score": [ @@ -37040,19 +34404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2705, + "id": 1409, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37060,19 +34424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2784, + "id": 1410, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37080,19 +34444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2817, + "id": 1411, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37101,18 +34465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 215, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2956, + "id": 1412, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37120,19 +34484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3588, + "id": 1413, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37140,15 +34504,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3923, + "id": 1414, "result": { "type": "IOI", "score": [ @@ -37160,19 +34524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4276, + "id": 1415, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37180,15 +34544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4381, + "id": 1416, "result": { "type": "IOI", "score": [ @@ -37201,18 +34565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4452, + "id": 1417, "result": { "type": "IOI", "score": [ - 57.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37220,15 +34584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4529, + "id": 1418, "result": { "type": "IOI", "score": [ @@ -37241,18 +34605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4576, + "id": 1419, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37261,18 +34625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4659, + "id": 1420, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37281,18 +34645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4853, + "id": 1421, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37300,15 +34664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5038, + "id": 1422, "result": { "type": "IOI", "score": [ @@ -37320,19 +34684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5056, + "id": 1423, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37340,19 +34704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5477, + "id": 1424, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37360,19 +34724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.2", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5653, + "id": 1425, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37380,15 +34744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 215, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5781, + "id": 1426, "result": { "type": "IOI", "score": [ @@ -37405,18 +34769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5801, + "id": 1427, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37425,18 +34789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 215, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7474, + "id": 1428, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37444,15 +34808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7574, + "id": 1429, "result": { "type": "IOI", "score": [ @@ -37464,15 +34828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7606, + "id": 1430, "result": { "type": "IOI", "score": [ @@ -37484,19 +34848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7631, + "id": 1431, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37504,19 +34868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7697, + "id": 1432, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37524,19 +34888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8657, + "id": 1433, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37544,19 +34908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8750, + "id": 1434, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37564,19 +34928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.3", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8873, + "id": 1435, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37585,18 +34949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 215, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8891, + "id": 1436, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37604,19 +34968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9116, + "id": 1437, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37625,18 +34989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 215, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9140, + "id": 1438, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37644,19 +35008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9165, + "id": 1439, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37665,18 +35029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 215, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9316, + "id": 1440, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37684,43 +35048,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9541, + "id": 1441, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 215, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9562, + "id": 1442, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37728,19 +35088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9602, + "id": 1443, "result": { "type": "IOI", "score": [ - 47.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37748,19 +35108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9623, + "id": 1444, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37768,19 +35128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.4", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11381, + "id": 1445, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37788,19 +35148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11398, + "id": 1446, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37808,19 +35168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 215, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 49, + "id": 1447, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37829,18 +35189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 69, + "id": 1448, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37849,18 +35209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 72, + "id": 1449, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37869,18 +35229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 100, + "id": 1450, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37888,19 +35248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 297, + "problemId": "d1.1", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 354, + "id": 1451, "result": { "type": "IOI", "score": [ - 14.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37909,18 +35269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 366, + "id": 1452, "result": { "type": "IOI", "score": [ - 27.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37928,19 +35288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 436, + "id": 1453, "result": { "type": "IOI", "score": [ - 38.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37949,18 +35309,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 454, + "id": 1454, "result": { "type": "IOI", "score": [ - 63.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37969,18 +35329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 720, + "id": 1455, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -37989,18 +35349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 297, + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1553, + "id": 1456, "result": { "type": "IOI", "score": [ - 31.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38008,19 +35368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2205, + "id": 1457, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38029,14 +35389,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2347, + "id": 1458, "result": { "type": "IOI", "score": [ @@ -38048,19 +35408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2599, + "id": 1459, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38068,19 +35428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2684, + "id": 1460, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38088,15 +35448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3364, + "id": 1461, "result": { "type": "IOI", "score": [ @@ -38108,15 +35468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3410, + "id": 1462, "result": { "type": "IOI", "score": [ @@ -38128,19 +35488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3439, + "id": 1463, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38149,18 +35509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3453, + "id": 1464, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38168,15 +35528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3557, + "id": 1465, "result": { "type": "IOI", "score": [ @@ -38189,18 +35549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3685, + "id": 1466, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38208,19 +35568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3765, + "id": 1467, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38228,19 +35588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3856, + "id": 1468, "result": { "type": "IOI", "score": [ - 10.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38248,35 +35608,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4310, + "id": 1469, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144242", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1470, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4492, + "id": 1471, "result": { "type": "IOI", "score": [ @@ -38289,18 +35673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4602, + "id": 1472, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38308,19 +35692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4648, + "id": 1473, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38328,15 +35712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5324, + "id": 1474, "result": { "type": "IOI", "score": [ @@ -38348,15 +35732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5509, + "id": 1475, "result": { "type": "IOI", "score": [ @@ -38368,15 +35752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5743, + "id": 1476, "result": { "type": "IOI", "score": [ @@ -38388,19 +35772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 297, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5776, + "id": 1477, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38409,18 +35793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 297, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7094, + "id": 1478, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38428,19 +35812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7976, + "id": 1479, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38448,19 +35832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8136, + "id": 1480, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38469,38 +35853,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 297, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8564, + "id": 1481, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8588, + "id": 1482, "result": { "type": "IOI", "score": [ @@ -38513,14 +35893,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8967, + "id": 1483, "result": { "type": "IOI", "score": [ @@ -38533,18 +35913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9260, + "id": 1484, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38553,18 +35933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 297, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9312, + "id": 1485, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38572,15 +35952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10650, + "id": 1486, "result": { "type": "IOI", "score": [ @@ -38592,19 +35972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10716, + "id": 1487, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38612,15 +35992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10916, + "id": 1488, "result": { "type": "IOI", "score": [ @@ -38632,19 +36012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10992, + "id": 1489, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38652,19 +36032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11420, + "id": 1490, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38672,15 +36052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11549, + "id": 1491, "result": { "type": "IOI", "score": [ @@ -38692,19 +36072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11646, + "id": 1492, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38712,19 +36092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11942, + "id": 1493, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38732,19 +36112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 297, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 50, + "id": 1494, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38752,19 +36132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 102, + "problemId": "d1.2", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 176, + "id": 1495, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38772,19 +36152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 102, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 532, + "id": 1496, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38792,15 +36172,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 102, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1418, + "id": 1497, "result": { "type": "IOI", "score": [ @@ -38812,15 +36192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1562, + "id": 1498, "result": { "type": "IOI", "score": [ @@ -38833,18 +36213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1654, + "id": 1499, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38852,19 +36232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.2", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1672, + "id": 1500, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38873,18 +36253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1692, + "id": 1501, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38892,19 +36272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.3", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1717, + "id": 1502, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38912,19 +36292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1729, + "id": 1503, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38932,19 +36312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1734, + "id": 1504, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38952,15 +36332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2145, + "id": 1505, "result": { "type": "IOI", "score": [ @@ -38973,18 +36353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2180, + "id": 1506, "result": { "type": "IOI", "score": [ - 12.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -38992,19 +36372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2199, + "id": 1507, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39012,19 +36392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3212, + "id": 1508, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39033,18 +36413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 102, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3248, + "id": 1509, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39052,19 +36432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3390, + "id": 1510, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39072,19 +36452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 102, + "problemId": "d1.3", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3433, + "id": 1511, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39093,18 +36473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 102, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3466, + "id": 1512, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39112,15 +36492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 102, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3495, + "id": 1513, "result": { "type": "IOI", "score": [ @@ -39133,14 +36513,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 102, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3581, + "id": 1514, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144087", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1515, "result": { "type": "IOI", "score": [ @@ -39153,18 +36553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4551, + "id": 1516, "result": { "type": "IOI", "score": [ - 32.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39172,19 +36572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4698, + "id": 1517, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39192,19 +36592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 102, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4824, + "id": 1518, "result": { "type": "IOI", "score": [ - 32.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39212,19 +36612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4886, + "id": 1519, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39233,18 +36633,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5154, + "id": 1520, "result": { "type": "IOI", "score": [ - 32.0 + 50.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144419", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1521, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144143", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1522, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39253,18 +36693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5523, + "id": 1523, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39273,18 +36713,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5534, + "id": 1524, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144079", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1525, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39293,18 +36753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5733, + "id": 1526, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39313,14 +36773,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7572, + "id": 1527, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144310", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1528, "result": { "type": "IOI", "score": [ @@ -39333,14 +36813,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7854, + "id": 1529, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144191", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1530, "result": { "type": "IOI", "score": [ @@ -39353,14 +36853,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7894, + "id": 1531, + "result": { + "type": "IOI", + "score": [ + 50.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144419", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1532, "result": { "type": "IOI", "score": [ @@ -39373,18 +36893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 102, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8586, + "id": 1533, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39392,19 +36912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 102, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8669, + "id": 1534, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39412,19 +36932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 102, + "problemId": "d1.4", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8681, + "id": 1535, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39433,18 +36953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8772, + "id": 1536, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39453,18 +36973,138 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8883, + "id": 1537, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144365", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1538, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144153", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1539, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144498", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1540, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144362", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1541, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144162", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1542, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144143", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1543, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39473,14 +37113,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 102, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 51, + "id": 1544, "result": { "type": "IOI", "score": [ @@ -39493,18 +37133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 56, + "id": 1545, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39513,38 +37153,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 422, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1209, + "id": 1546, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144354", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1547, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144261", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1548, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1218, + "id": 1549, "result": { "type": "IOI", "score": [ @@ -39556,19 +37232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1235, + "id": 1550, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39576,15 +37252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1425, + "id": 1551, "result": { "type": "IOI", "score": [ @@ -39597,18 +37273,118 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1551, + "id": 1552, "result": { "type": "IOI", "score": [ - 32.0 + 61.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144296", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1553, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144367", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1554, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144403", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1555, + "result": { + "type": "IOI", + "score": [ + 62.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144457", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1556, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144204", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1557, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39617,7 +37393,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39637,18 +37413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1573, + "id": 1559, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39656,15 +37432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1645, + "id": 1560, "result": { "type": "IOI", "score": [ @@ -39677,18 +37453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1660, + "id": 1561, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39696,19 +37472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1720, + "id": 1562, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39716,19 +37492,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1730, + "id": 1563, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144438", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1564, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144362", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1565, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39737,18 +37553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3847, + "id": 1566, "result": { "type": "IOI", "score": [ - 31.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39756,19 +37572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3955, + "id": 1567, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39776,19 +37592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4474, + "id": 1568, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39796,15 +37612,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5097, + "id": 1569, "result": { "type": "IOI", "score": [ @@ -39817,18 +37633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5886, + "id": 1570, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39837,14 +37653,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6140, + "id": 1571, "result": { "type": "IOI", "score": [ @@ -39857,18 +37673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 422, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6142, + "id": 1572, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39876,19 +37692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6478, + "id": 1573, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39896,19 +37712,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6547, + "id": 1574, "result": { "type": "IOI", "score": [ - 47.0 + 50.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144419", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1575, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39917,18 +37753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 422, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6557, + "id": 1576, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39937,14 +37773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 422, + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6562, + "id": 1577, "result": { "type": "IOI", "score": [ @@ -39956,15 +37792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6620, + "id": 1578, "result": { "type": "IOI", "score": [ @@ -39976,19 +37812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6667, + "id": 1579, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -39996,19 +37832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6691, + "id": 1580, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40016,19 +37852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6733, + "id": 1581, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40036,19 +37872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6809, + "id": 1582, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40057,18 +37893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 422, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6813, + "id": 1583, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40077,18 +37913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 422, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7161, + "id": 1584, "result": { "type": "IOI", "score": [ - 35.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40097,18 +37933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7198, + "id": 1585, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40117,18 +37953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7473, + "id": 1586, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40136,19 +37972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7516, + "id": 1587, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40157,14 +37993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7627, + "id": 1588, "result": { "type": "IOI", "score": [ @@ -40177,18 +38013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7633, + "id": 1589, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40197,18 +38033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7766, + "id": 1590, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40217,18 +38053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7823, + "id": 1591, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40236,19 +38072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7841, + "id": 1592, "result": { "type": "IOI", "score": [ - 57.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40257,18 +38093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9465, + "id": 1593, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40277,18 +38113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9518, + "id": 1594, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40296,39 +38132,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9636, + "id": 1595, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9711, + "id": 1596, "result": { "type": "IOI", "score": [ - 57.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40336,19 +38176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9811, + "id": 1597, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40356,19 +38196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9828, + "id": 1598, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40376,19 +38216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9868, + "id": 1599, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40396,19 +38236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9904, + "id": 1600, "result": { "type": "IOI", "score": [ - 57.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40416,19 +38256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9935, + "id": 1601, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40436,19 +38276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9943, + "id": 1602, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40456,39 +38296,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10357, + "id": 1603, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10376, + "id": 1604, "result": { "type": "IOI", "score": [ - 57.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40496,19 +38340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10416, + "id": 1605, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40516,19 +38360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10505, + "id": 1606, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40537,18 +38381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 422, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10534, + "id": 1607, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40556,19 +38400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10562, + "id": 1608, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40576,19 +38420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10673, + "id": 1609, "result": { "type": "IOI", "score": [ - 57.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40596,19 +38440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10726, + "id": 1610, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40616,19 +38460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10754, + "id": 1611, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40636,19 +38480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10833, + "id": 1612, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40656,19 +38500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11086, + "id": 1613, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40676,19 +38520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11204, + "id": 1614, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40696,19 +38540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11222, + "id": 1615, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40716,19 +38560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11317, + "id": 1616, "result": { "type": "IOI", "score": [ - 47.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40736,19 +38580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11329, + "id": 1617, "result": { "type": "IOI", "score": [ - 48.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40756,19 +38600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11790, + "id": 1618, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40776,19 +38620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11806, + "id": 1619, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40796,19 +38640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11821, + "id": 1620, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40816,19 +38660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11970, + "id": 1621, "result": { "type": "IOI", "score": [ - 57.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40836,19 +38680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12004, + "id": 1622, "result": { "type": "IOI", "score": [ - 57.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40856,19 +38700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12066, + "id": 1623, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40876,19 +38720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 422, + "problemId": "d1.1", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 52, + "id": 1624, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40896,19 +38740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 79, + "id": 1625, "result": { "type": "IOI", "score": [ - 37.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40916,19 +38760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 421, + "id": 1626, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40937,18 +38781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 558, + "id": 1627, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40957,18 +38801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1435, + "id": 1628, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40976,19 +38820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1513, + "id": 1629, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -40996,15 +38840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2290, + "id": 1630, "result": { "type": "IOI", "score": [ @@ -41016,19 +38860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2504, + "id": 1631, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41036,15 +38880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2643, + "id": 1632, "result": { "type": "IOI", "score": [ @@ -41056,15 +38900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2831, + "id": 1633, "result": { "type": "IOI", "score": [ @@ -41077,14 +38921,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 221, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2916, + "id": 1634, "result": { "type": "IOI", "score": [ @@ -41096,19 +38940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3059, + "id": 1635, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41116,15 +38960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3111, + "id": 1636, "result": { "type": "IOI", "score": [ @@ -41137,18 +38981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 221, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3178, + "id": 1637, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41156,19 +39000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.2", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3224, + "id": 1638, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41177,18 +39021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 221, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3518, + "id": 1639, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41196,19 +39040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3568, + "id": 1640, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41216,19 +39060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3669, + "id": 1641, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41237,18 +39081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 221, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3929, + "id": 1642, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41256,19 +39100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3947, + "id": 1643, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41276,15 +39120,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 221, + "problemId": "d1.2", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4756, + "id": 1644, "result": { "type": "IOI", "score": [ @@ -41297,18 +39141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5362, + "id": 1645, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41316,19 +39160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6266, + "id": 1646, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41336,19 +39180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6337, + "id": 1647, "result": { "type": "IOI", "score": [ - 25.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41357,14 +39201,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7775, + "id": 1648, "result": { "type": "IOI", "score": [ @@ -41376,15 +39220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7937, + "id": 1649, "result": { "type": "IOI", "score": [ @@ -41396,19 +39240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 221, + "problemId": "d1.3", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8121, + "id": 1650, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41417,18 +39261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 221, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8174, + "id": 1651, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41437,18 +39281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8454, + "id": 1652, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41457,18 +39301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8590, + "id": 1653, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41477,18 +39321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8934, + "id": 1654, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41496,19 +39340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9147, + "id": 1655, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41516,19 +39360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 221, + "problemId": "d1.1", + "teamId": "144131", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9441, + "id": 1656, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41536,15 +39380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 221, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10329, + "id": 1657, "result": { "type": "IOI", "score": [ @@ -41557,18 +39401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10443, + "id": 1658, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41576,15 +39420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10559, + "id": 1659, "result": { "type": "IOI", "score": [ @@ -41596,15 +39440,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.2", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10781, + "id": 1660, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144492", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1661, "result": { "type": "IOI", "score": [ @@ -41617,14 +39481,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10904, + "id": 1662, "result": { "type": "IOI", "score": [ @@ -41637,18 +39501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 221, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11476, + "id": 1663, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41656,39 +39520,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 221, + "problemId": "d1.4", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 53, + "id": 1664, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 133, + "id": 1665, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1666, "result": { "type": "IOI", "score": [ @@ -41700,19 +39580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 219, + "id": 1667, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41721,14 +39601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 247, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1106, + "id": 1668, "result": { "type": "IOI", "score": [ @@ -41740,15 +39620,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1129, + "id": 1669, "result": { "type": "IOI", "score": [ @@ -41760,19 +39640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1272, + "id": 1670, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41780,19 +39660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1292, + "id": 1671, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41801,18 +39681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 247, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1578, + "id": 1672, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41821,14 +39701,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 247, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1583, + "id": 1673, "result": { "type": "IOI", "score": [ @@ -41841,14 +39721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 247, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1673, + "id": 1674, "result": { "type": "IOI", "score": [ @@ -41860,19 +39740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1861, + "id": 1675, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41880,15 +39760,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2041, + "id": 1676, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144511", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1677, "result": { "type": "IOI", "score": [ @@ -41904,19 +39804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2082, + "id": 1678, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41924,15 +39824,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5626, + "id": 1679, "result": { "type": "IOI", "score": [ @@ -41944,19 +39844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5697, + "id": 1680, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -41964,15 +39864,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6332, + "id": 1681, "result": { "type": "IOI", "score": [ @@ -41984,15 +39884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6539, + "id": 1682, "result": { "type": "IOI", "score": [ @@ -42004,67 +39904,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6780, + "id": 1683, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144340", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6791, + "id": 1684, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6814, + "id": 1685, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42072,15 +39964,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6881, + "id": 1686, "result": { "type": "IOI", "score": [ @@ -42092,19 +39984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7055, + "id": 1687, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42112,19 +40004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8056, + "id": 1688, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42132,15 +40024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8267, + "id": 1689, "result": { "type": "IOI", "score": [ @@ -42152,15 +40044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144112", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8543, + "id": 1690, "result": { "type": "IOI", "score": [ @@ -42172,19 +40064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8610, + "id": 1691, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42192,19 +40084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8880, + "id": 1692, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42212,19 +40104,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8920, + "id": 1693, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144267", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1694, + "result": { + "type": "IOI", + "score": [ + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42233,18 +40149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 247, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9569, + "id": 1695, "result": { "type": "IOI", "score": [ - 9.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42253,18 +40169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 247, + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9675, + "id": 1696, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42272,19 +40188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.3", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9849, + "id": 1697, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42292,43 +40208,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10448, + "id": 1698, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10506, + "id": 1699, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42336,19 +40248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10819, + "id": 1700, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42356,39 +40268,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10979, + "id": 1701, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 247, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11057, + "id": 1702, "result": { "type": "IOI", "score": [ @@ -42400,15 +40308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.2", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11541, + "id": 1703, "result": { "type": "IOI", "score": [ @@ -42421,38 +40329,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 247, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11699, + "id": 1704, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.2", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11768, + "id": 1705, "result": { "type": "IOI", "score": [ @@ -42469,14 +40373,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 247, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11832, + "id": 1706, "result": { "type": "IOI", "score": [ @@ -42488,15 +40392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 247, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11955, + "id": 1707, "result": { "type": "IOI", "score": [ @@ -42509,18 +40413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 247, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 54, + "id": 1708, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42528,19 +40432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 409, + "id": 1709, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42549,34 +40453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 4, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 795, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 4, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2173, + "id": 1710, "result": { "type": "IOI", "score": [ @@ -42589,14 +40473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 4, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2247, + "id": 1711, "result": { "type": "IOI", "score": [ @@ -42609,38 +40493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 4, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2287, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 4, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2421, + "id": 1712, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42649,14 +40513,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 4, + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2872, + "id": 1713, "result": { "type": "IOI", "score": [ @@ -42669,38 +40533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 4, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2880, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 4, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3151, + "id": 1714, "result": { "type": "IOI", "score": [ - 47.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42708,19 +40552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3474, + "id": 1715, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42728,19 +40572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4291, + "id": 1716, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42749,14 +40593,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 4, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5208, + "id": 1717, "result": { "type": "IOI", "score": [ @@ -42768,19 +40612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 4, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5480, + "id": 1718, "result": { "type": "IOI", "score": [ - 66.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42788,19 +40632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5972, + "id": 1719, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42809,14 +40653,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 4, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6224, + "id": 1720, "result": { "type": "IOI", "score": [ @@ -42829,18 +40673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 4, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6763, + "id": 1721, "result": { "type": "IOI", "score": [ - 70.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42848,19 +40692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 4, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6885, + "id": 1722, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42868,19 +40712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 4, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7001, + "id": 1723, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42888,19 +40732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.3", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7252, + "id": 1724, "result": { "type": "IOI", "score": [ - 47.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42908,19 +40752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7364, + "id": 1725, "result": { "type": "IOI", "score": [ - 82.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42928,19 +40772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7463, + "id": 1726, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42949,18 +40793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 4, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7715, + "id": 1727, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42969,18 +40813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 4, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7844, + "id": 1728, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -42988,19 +40832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7897, + "id": 1729, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43009,18 +40853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 4, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7940, + "id": 1730, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43028,19 +40872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7955, + "id": 1731, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43048,19 +40892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.4", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8014, + "id": 1732, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43068,19 +40912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 4, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 55, + "id": 1733, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43088,19 +40932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 375, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 185, + "id": 1734, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43108,19 +40952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 761, + "id": 1735, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43129,14 +40973,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 375, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1306, + "id": 1736, "result": { "type": "IOI", "score": [ @@ -43149,18 +40993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1656, + "id": 1737, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43169,14 +41013,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3140, + "id": 1738, "result": { "type": "IOI", "score": [ @@ -43188,19 +41032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3350, + "id": 1739, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43208,19 +41052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 375, + "problemId": "d1.3", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3870, + "id": 1740, "result": { "type": "IOI", "score": [ - 31.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43228,19 +41072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3919, + "id": 1741, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43248,19 +41092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4738, + "id": 1742, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43269,18 +41113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4808, + "id": 1743, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43288,19 +41132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4876, + "id": 1744, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43309,18 +41153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4981, + "id": 1745, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43328,19 +41172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5204, + "id": 1746, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43348,19 +41192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5476, + "id": 1747, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43368,19 +41212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5674, + "id": 1748, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43389,18 +41233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6912, + "id": 1749, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43408,19 +41252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7310, + "id": 1750, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43428,19 +41272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7678, + "id": 1751, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43449,14 +41293,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 375, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7704, + "id": 1752, "result": { "type": "IOI", "score": [ @@ -43468,19 +41312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 375, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7845, + "id": 1753, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43488,15 +41332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 375, + "problemId": "d1.3", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8041, + "id": 1754, "result": { "type": "IOI", "score": [ @@ -43508,19 +41352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8225, + "id": 1755, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43528,19 +41372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8268, + "id": 1756, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43548,19 +41392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8294, + "id": 1757, "result": { "type": "IOI", "score": [ - 16.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43569,18 +41413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8314, + "id": 1758, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43588,15 +41432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8403, + "id": 1759, "result": { "type": "IOI", "score": [ @@ -43609,18 +41453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8730, + "id": 1760, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43628,19 +41472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8818, + "id": 1761, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43648,19 +41492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8975, + "id": 1762, "result": { "type": "IOI", "score": [ - 16.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43668,15 +41512,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9032, + "id": 1763, "result": { "type": "IOI", "score": [ @@ -43689,18 +41533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9305, + "id": 1764, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43708,15 +41552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.4", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10570, + "id": 1765, "result": { "type": "IOI", "score": [ @@ -43729,18 +41573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 375, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10901, + "id": 1766, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43749,18 +41593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10985, + "id": 1767, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43768,19 +41612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 375, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11254, + "id": 1768, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43789,18 +41633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11341, + "id": 1769, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43809,38 +41653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 375, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 57, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 173, + "id": 1770, "result": { "type": "IOI", "score": [ - 83.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43848,19 +41672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 254, + "problemId": "d1.4", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 611, + "id": 1771, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43869,18 +41693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 254, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 693, + "id": 1772, "result": { "type": "IOI", "score": [ - 27.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43888,19 +41712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 942, + "id": 1773, "result": { "type": "IOI", "score": [ - 14.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43909,18 +41733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 254, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1665, + "id": 1774, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43928,43 +41752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2632, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 254, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2646, + "id": 1775, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -43973,14 +41773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 254, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2978, + "id": 1776, "result": { "type": "IOI", "score": [ @@ -43992,15 +41792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3038, + "id": 1777, "result": { "type": "IOI", "score": [ @@ -44012,55 +41812,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3121, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3158, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3229, + "id": 1778, "result": { "type": "IOI", "score": [ @@ -44072,15 +41832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3279, + "id": 1779, "result": { "type": "IOI", "score": [ @@ -44092,19 +41852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 254, + "problemId": "d1.2", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3287, + "id": 1780, "result": { "type": "IOI", "score": [ - 55.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44113,18 +41873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 254, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3358, + "id": 1781, "result": { "type": "IOI", "score": [ - 55.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44133,18 +41893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 254, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3464, + "id": 1782, "result": { "type": "IOI", "score": [ - 100.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44153,34 +41913,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 254, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4476, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4572, + "id": 1783, "result": { "type": "IOI", "score": [ @@ -44192,79 +41932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4638, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4701, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4825, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4871, + "id": 1784, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44272,19 +41952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5022, + "id": 1785, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44292,15 +41972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5241, + "id": 1786, "result": { "type": "IOI", "score": [ @@ -44312,39 +41992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5365, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5446, + "id": 1787, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44352,19 +42012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5828, + "id": 1788, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44372,19 +42032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5905, + "id": 1789, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44392,19 +42052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6290, + "id": 1790, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44412,19 +42072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6374, + "id": 1791, "result": { "type": "IOI", "score": [ - 83.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44433,18 +42093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 254, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6425, + "id": 1792, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44452,15 +42112,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 254, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6851, + "id": 1793, "result": { "type": "IOI", "score": [ @@ -44472,15 +42132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6956, + "id": 1794, "result": { "type": "IOI", "score": [ @@ -44496,59 +42156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7018, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7469, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 254, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9561, + "id": 1795, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44557,18 +42177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 254, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10354, + "id": 1796, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44577,14 +42197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 254, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10629, + "id": 1797, "result": { "type": "IOI", "score": [ @@ -44601,134 +42221,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 254, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10703, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10738, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10756, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10771, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10792, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10805, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10882, + "id": 1798, "result": { "type": "IOI", "score": [ @@ -44740,75 +42240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11136, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11178, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11225, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11376, + "id": 1799, "result": { "type": "IOI", "score": [ @@ -44820,39 +42260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11495, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11515, + "id": 1800, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44860,19 +42280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11586, + "id": 1801, "result": { "type": "IOI", "score": [ - 41.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44880,15 +42300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11630, + "id": 1802, "result": { "type": "IOI", "score": [ @@ -44900,15 +42320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11694, + "id": 1803, "result": { "type": "IOI", "score": [ @@ -44920,19 +42340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.4", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11788, + "id": 1804, "result": { "type": "IOI", "score": [ - 41.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44941,18 +42361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 254, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12009, + "id": 1805, "result": { "type": "IOI", "score": [ - 82.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -44961,14 +42381,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 254, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12078, + "id": 1806, "result": { "type": "IOI", "score": [ @@ -44981,18 +42401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 254, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12107, + "id": 1807, "result": { "type": "IOI", "score": [ - 12.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45000,15 +42420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 254, + "problemId": "d1.4", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 58, + "id": 1808, "result": { "type": "IOI", "score": [ @@ -45020,35 +42440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 162, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 80, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 951, + "id": 1809, "result": { "type": "IOI", "score": [ @@ -45061,14 +42461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 162, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1049, + "id": 1810, "result": { "type": "IOI", "score": [ @@ -45080,19 +42480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.1", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1728, + "id": 1811, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45100,15 +42500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1789, + "id": 1812, "result": { "type": "IOI", "score": [ @@ -45121,14 +42521,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 162, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1863, + "id": 1813, "result": { "type": "IOI", "score": [ @@ -45140,15 +42540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.2", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2156, + "id": 1814, "result": { "type": "IOI", "score": [ @@ -45160,19 +42560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2322, + "id": 1815, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45180,15 +42580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3576, + "id": 1816, "result": { "type": "IOI", "score": [ @@ -45201,18 +42601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 162, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3790, + "id": 1817, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45221,18 +42621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 162, + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7085, + "id": 1818, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45240,15 +42640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9837, + "id": 1819, "result": { "type": "IOI", "score": [ @@ -45260,19 +42660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9893, + "id": 1820, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45281,18 +42681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 162, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10553, + "id": 1821, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45300,19 +42700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 162, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11829, + "id": 1822, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45321,34 +42721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 162, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 61, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 40, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 161, + "id": 1823, "result": { "type": "IOI", "score": [ @@ -45361,14 +42741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 40, + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 400, + "id": 1824, "result": { "type": "IOI", "score": [ @@ -45380,39 +42760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 40, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 420, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 40, + "problemId": "d1.1", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1271, + "id": 1825, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45421,18 +42781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 40, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4354, + "id": 1826, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45441,18 +42801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 40, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4934, + "id": 1827, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45461,34 +42821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 40, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7485, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 40, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8425, + "id": 1828, "result": { "type": "IOI", "score": [ @@ -45500,19 +42840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 40, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8487, + "id": 1829, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45521,14 +42861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 40, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10545, + "id": 1830, "result": { "type": "IOI", "score": [ @@ -45540,39 +42880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 40, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10557, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 40, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11049, + "id": 1831, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45580,15 +42900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 40, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11148, + "id": 1832, "result": { "type": "IOI", "score": [ @@ -45601,38 +42921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 40, + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 63, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 263, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 290, + "id": 1833, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45640,19 +42940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 457, + "id": 1834, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45660,15 +42960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 678, + "id": 1835, "result": { "type": "IOI", "score": [ @@ -45680,15 +42980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 700, + "id": 1836, "result": { "type": "IOI", "score": [ @@ -45701,18 +43001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 741, + "id": 1837, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45720,15 +43020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 742, + "id": 1838, "result": { "type": "IOI", "score": [ @@ -45740,15 +43040,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 821, + "id": 1839, "result": { "type": "IOI", "score": [ @@ -45761,18 +43061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 834, + "id": 1840, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45780,15 +43080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 915, + "id": 1841, "result": { "type": "IOI", "score": [ @@ -45800,15 +43100,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 925, + "id": 1842, "result": { "type": "IOI", "score": [ @@ -45820,8 +43120,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45841,18 +43141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 263, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1972, + "id": 1844, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45860,19 +43160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2174, + "id": 1845, "result": { "type": "IOI", "score": [ - 35.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45880,19 +43180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2307, + "id": 1846, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45900,15 +43200,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2480, + "id": 1847, "result": { "type": "IOI", "score": [ @@ -45921,18 +43221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2689, + "id": 1848, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45940,19 +43240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2961, + "id": 1849, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45960,19 +43260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2972, + "id": 1850, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -45980,15 +43280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3163, + "id": 1851, "result": { "type": "IOI", "score": [ @@ -46001,14 +43301,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3448, + "id": 1852, "result": { "type": "IOI", "score": [ @@ -46020,15 +43320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3598, + "id": 1853, "result": { "type": "IOI", "score": [ @@ -46041,18 +43341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3633, + "id": 1854, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46060,19 +43360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3686, + "id": 1855, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46081,14 +43381,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5043, + "id": 1856, "result": { "type": "IOI", "score": [ @@ -46100,15 +43400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5109, + "id": 1857, "result": { "type": "IOI", "score": [ @@ -46120,15 +43420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5156, + "id": 1858, "result": { "type": "IOI", "score": [ @@ -46144,15 +43444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5171, + "id": 1859, "result": { "type": "IOI", "score": [ @@ -46164,19 +43464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5195, + "id": 1860, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46184,19 +43484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5444, + "id": 1861, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46205,14 +43505,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 263, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5774, + "id": 1862, "result": { "type": "IOI", "score": [ @@ -46225,14 +43525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 263, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5798, + "id": 1863, "result": { "type": "IOI", "score": [ @@ -46244,19 +43544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5830, + "id": 1864, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46264,43 +43564,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5890, + "id": 1865, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5918, + "id": 1866, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46308,19 +43604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5936, + "id": 1867, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46328,19 +43624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6377, + "id": 1868, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46348,15 +43644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6465, + "id": 1869, "result": { "type": "IOI", "score": [ @@ -46369,18 +43665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6565, + "id": 1870, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46388,19 +43684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6792, + "id": 1871, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46408,19 +43704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6827, + "id": 1872, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46428,19 +43724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6870, + "id": 1873, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46448,19 +43744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6936, + "id": 1874, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46468,19 +43764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6965, + "id": 1875, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46489,18 +43785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6977, + "id": 1876, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46508,19 +43804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 263, + "problemId": "d1.1", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7014, + "id": 1877, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46529,18 +43825,78 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7195, + "id": 1878, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144363", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1879, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144113", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1880, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144309", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1881, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46549,14 +43905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7300, + "id": 1882, "result": { "type": "IOI", "score": [ @@ -46573,18 +43929,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7346, + "id": 1883, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144511", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1884, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144196", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1885, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46593,18 +43989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 263, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8810, + "id": 1886, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46612,19 +44008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8830, + "id": 1887, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46632,19 +44028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8851, + "id": 1888, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46652,19 +44048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9215, + "id": 1889, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46672,19 +44068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9256, + "id": 1890, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46692,19 +44088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9387, + "id": 1891, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46713,18 +44109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 263, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9403, + "id": 1892, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46733,18 +44129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 263, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9434, + "id": 1893, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46752,19 +44148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9443, + "id": 1894, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46772,19 +44168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9471, + "id": 1895, "result": { "type": "IOI", "score": [ - 35.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46792,19 +44188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9534, + "id": 1896, "result": { "type": "IOI", "score": [ - 35.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46812,19 +44208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9596, + "id": 1897, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46833,18 +44229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 263, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9626, + "id": 1898, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46853,18 +44249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 263, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9700, + "id": 1899, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46872,19 +44268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9715, + "id": 1900, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46892,19 +44288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.2", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10451, + "id": 1901, "result": { "type": "IOI", "score": [ - 47.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46912,19 +44308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10499, + "id": 1902, "result": { "type": "IOI", "score": [ - 57.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46932,19 +44328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.4", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10520, + "id": 1903, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46952,19 +44348,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 263, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10592, + "id": 1904, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144286", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1905, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144078", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1906, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46973,18 +44409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 263, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 64, + "id": 1907, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -46993,14 +44429,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 364, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 183, + "id": 1908, "result": { "type": "IOI", "score": [ @@ -47013,14 +44449,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 364, + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2934, + "id": 1909, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144335", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1910, "result": { "type": "IOI", "score": [ @@ -47032,15 +44492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3034, + "id": 1911, "result": { "type": "IOI", "score": [ @@ -47052,15 +44512,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3694, + "id": 1912, "result": { "type": "IOI", "score": [ @@ -47072,19 +44532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3761, + "id": 1913, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47092,19 +44552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.4", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4699, + "id": 1914, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47112,19 +44572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4734, + "id": 1915, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47133,18 +44593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 364, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4897, + "id": 1916, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47152,19 +44612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4943, + "id": 1917, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47172,19 +44632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4986, + "id": 1918, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47192,19 +44652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5078, + "id": 1919, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47212,19 +44672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5203, + "id": 1920, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47232,15 +44692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5353, + "id": 1921, "result": { "type": "IOI", "score": [ @@ -47252,15 +44712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5526, + "id": 1922, "result": { "type": "IOI", "score": [ @@ -47272,19 +44732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5622, + "id": 1923, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47292,15 +44752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7000, + "id": 1924, "result": { "type": "IOI", "score": [ @@ -47313,14 +44773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 364, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7079, + "id": 1925, "result": { "type": "IOI", "score": [ @@ -47333,34 +44793,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 364, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7313, + "id": 1926, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 364, + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7425, + "id": 1927, "result": { "type": "IOI", "score": [ @@ -47373,18 +44837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 364, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7772, + "id": 1928, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47392,19 +44856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7900, + "id": 1929, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47412,19 +44876,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8215, + "id": 1930, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144414", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1931, + "result": { + "type": "IOI", + "score": [ + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47432,19 +44920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8646, + "id": 1932, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47453,14 +44941,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 364, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9040, + "id": 1933, "result": { "type": "IOI", "score": [ @@ -47472,15 +44960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9214, + "id": 1934, "result": { "type": "IOI", "score": [ @@ -47492,19 +44980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 364, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9285, + "id": 1935, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47513,14 +45001,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 364, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9625, + "id": 1936, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1937, "result": { "type": "IOI", "score": [ @@ -47533,14 +45041,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 364, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10088, + "id": 1938, "result": { "type": "IOI", "score": [ @@ -47552,19 +45060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10254, + "id": 1939, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47573,18 +45081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 364, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10942, + "id": 1940, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47592,19 +45100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 364, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11325, + "id": 1941, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47612,19 +45120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11608, + "id": 1942, "result": { "type": "IOI", "score": [ - 16.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47632,15 +45140,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 364, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11844, + "id": 1943, "result": { "type": "IOI", "score": [ @@ -47653,18 +45161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 364, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 65, + "id": 1944, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47673,18 +45181,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 74, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 89, + "id": 1945, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144414", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1946, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47692,15 +45224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 74, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1486, + "id": 1947, "result": { "type": "IOI", "score": [ @@ -47712,15 +45244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 74, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1838, + "id": 1948, "result": { "type": "IOI", "score": [ @@ -47732,15 +45264,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144109", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1949, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 74, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1890, + "id": 1950, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144167", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1951, "result": { "type": "IOI", "score": [ @@ -47752,8 +45324,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 74, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47773,14 +45345,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 74, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2144, + "id": 1953, "result": { "type": "IOI", "score": [ @@ -47793,18 +45365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 74, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2425, + "id": 1954, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47812,19 +45384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 74, + "problemId": "d1.4", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2502, + "id": 1955, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47832,19 +45404,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 74, + "problemId": "d1.3", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2722, + "id": 1956, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144190", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1957, + "result": { + "type": "IOI", + "score": [ + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47853,18 +45445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 74, + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5298, + "id": 1958, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47872,19 +45464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 74, + "problemId": "d1.1", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6369, + "id": 1959, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47892,19 +45484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 74, + "problemId": "d1.1", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6922, + "id": 1960, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47913,18 +45505,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 74, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7013, + "id": 1961, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144203", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1962, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144250", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1963, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47933,18 +45565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 74, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7811, + "id": 1964, "result": { "type": "IOI", "score": [ - 37.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -47952,15 +45584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 74, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7926, + "id": 1965, "result": { "type": "IOI", "score": [ @@ -47973,14 +45605,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 74, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7954, + "id": 1966, "result": { "type": "IOI", "score": [ @@ -47992,39 +45624,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 74, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7998, + "id": 1967, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 74, + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8020, + "id": 1968, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48033,18 +45669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 74, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8073, + "id": 1969, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48052,15 +45688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 74, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8235, + "id": 1970, "result": { "type": "IOI", "score": [ @@ -48072,15 +45708,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 74, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8299, + "id": 1971, "result": { "type": "IOI", "score": [ @@ -48093,18 +45729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 74, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8386, + "id": 1972, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48112,19 +45748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 74, + "problemId": "d1.4", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11110, + "id": 1973, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48132,67 +45768,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 74, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 66, + "id": 1974, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 68, + "id": 1975, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 82, + "id": 1976, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48200,19 +45828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 112, + "id": 1977, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48221,18 +45849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 0, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 238, + "id": 1978, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48240,15 +45868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6916, + "id": 1979, "result": { "type": "IOI", "score": [ @@ -48260,19 +45888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7095, + "id": 1980, "result": { "type": "IOI", "score": [ - 12.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48280,19 +45908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7292, + "id": 1981, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48300,15 +45928,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8770, + "id": 1982, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144302", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1983, "result": { "type": "IOI", "score": [ @@ -48320,19 +45968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8786, + "id": 1984, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48340,19 +45988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9294, + "id": 1985, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48360,19 +46008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9444, + "id": 1986, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48380,43 +46028,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9621, + "id": 1987, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144111", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 1988, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9633, + "id": 1989, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48424,19 +46088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9756, + "id": 1990, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48444,15 +46108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9964, + "id": 1991, "result": { "type": "IOI", "score": [ @@ -48465,18 +46129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 0, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10048, + "id": 1992, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48484,19 +46148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10359, + "id": 1993, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48504,19 +46168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10591, + "id": 1994, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48524,19 +46188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10777, + "id": 1995, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48544,19 +46208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10949, + "id": 1996, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48564,19 +46228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11096, + "id": 1997, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48584,19 +46248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11190, + "id": 1998, "result": { "type": "IOI", "score": [ - 31.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48604,19 +46268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11226, + "id": 1999, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48624,19 +46288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11299, + "id": 2000, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48644,15 +46308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11442, + "id": 2001, "result": { "type": "IOI", "score": [ @@ -48664,19 +46328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11571, + "id": 2002, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48684,19 +46348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11652, + "id": 2003, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48704,19 +46368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12073, + "id": 2004, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48724,19 +46388,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 0, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 67, + "id": 2005, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144364", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2006, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48745,18 +46429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 119, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7008, + "id": 2007, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48765,18 +46449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 119, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9061, + "id": 2008, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48784,19 +46468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 119, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9169, + "id": 2009, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48804,15 +46488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 119, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9269, + "id": 2010, "result": { "type": "IOI", "score": [ @@ -48824,19 +46508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 119, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9295, + "id": 2011, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48844,15 +46528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 119, + "problemId": "d1.1", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 70, + "id": 2012, "result": { "type": "IOI", "score": [ @@ -48865,14 +46549,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 205, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 154, + "id": 2013, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144299", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2014, "result": { "type": "IOI", "score": [ @@ -48884,19 +46588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 205, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 217, + "id": 2015, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48904,19 +46608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 205, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 463, + "id": 2016, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48925,18 +46629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 205, + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1454, + "id": 2017, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48944,15 +46648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 205, + "problemId": "d1.2", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4425, + "id": 2018, "result": { "type": "IOI", "score": [ @@ -48964,19 +46668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4505, + "id": 2019, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -48984,43 +46688,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 205, + "problemId": "d1.2", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5080, + "id": 2020, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 205, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5094, + "id": 2021, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49028,19 +46728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5452, + "id": 2022, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49049,14 +46749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 205, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7299, + "id": 2023, "result": { "type": "IOI", "score": [ @@ -49069,14 +46769,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 205, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7392, + "id": 2024, "result": { "type": "IOI", "score": [ @@ -49088,15 +46788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 205, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7971, + "id": 2025, "result": { "type": "IOI", "score": [ @@ -49108,19 +46808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8360, + "id": 2026, "result": { "type": "IOI", "score": [ - 0.0 + 13.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49128,19 +46828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8607, + "id": 2027, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49148,19 +46848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 205, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9008, + "id": 2028, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49168,15 +46868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9556, + "id": 2029, "result": { "type": "IOI", "score": [ @@ -49189,14 +46889,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 205, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9597, + "id": 2030, "result": { "type": "IOI", "score": [ @@ -49208,19 +46908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9619, + "id": 2031, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49228,15 +46928,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.2", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9677, + "id": 2032, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144114", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2033, "result": { "type": "IOI", "score": [ @@ -49248,19 +46968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.1", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9713, + "id": 2034, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49268,19 +46988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10021, + "id": 2035, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49288,15 +47008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.4", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10126, + "id": 2036, "result": { "type": "IOI", "score": [ @@ -49309,14 +47029,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 205, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11724, + "id": 2037, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144113", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2038, "result": { "type": "IOI", "score": [ @@ -49329,14 +47069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 205, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11789, + "id": 2039, "result": { "type": "IOI", "score": [ @@ -49348,15 +47088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.1", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11948, + "id": 2040, "result": { "type": "IOI", "score": [ @@ -49368,15 +47108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 205, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 71, + "id": 2041, "result": { "type": "IOI", "score": [ @@ -49392,15 +47132,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 343, + "problemId": "d1.2", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 969, + "id": 2042, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144481", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2043, "result": { "type": "IOI", "score": [ @@ -49413,14 +47173,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 343, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1011, + "id": 2044, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144364", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2045, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144087", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2046, "result": { "type": "IOI", "score": [ @@ -49433,14 +47233,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 343, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1058, + "id": 2047, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144362", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2048, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144157", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2049, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144267", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2050, "result": { "type": "IOI", "score": [ @@ -49453,18 +47313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 343, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5086, + "id": 2051, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49472,19 +47332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 343, + "problemId": "d1.1", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5494, + "id": 2052, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49492,19 +47352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 343, + "problemId": "d1.2", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7251, + "id": 2053, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49512,19 +47372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 343, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8890, + "id": 2054, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49533,14 +47393,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 343, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10456, + "id": 2055, "result": { "type": "IOI", "score": [ @@ -49552,15 +47412,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144180", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2056, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 343, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10702, + "id": 2057, "result": { "type": "IOI", "score": [ @@ -49572,43 +47452,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144175", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2058, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 343, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10871, + "id": 2059, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 343, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10924, + "id": 2060, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49616,19 +47512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 343, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 73, + "id": 2061, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49636,19 +47532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 386, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 199, + "id": 2062, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49657,18 +47553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 386, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 234, + "id": 2063, "result": { "type": "IOI", "score": [ - 38.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49676,15 +47572,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 386, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 814, + "id": 2064, "result": { "type": "IOI", "score": [ @@ -49697,18 +47593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 890, + "id": 2065, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49716,15 +47612,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.4", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 902, + "id": 2066, "result": { "type": "IOI", "score": [ @@ -49737,14 +47633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 980, + "id": 2067, "result": { "type": "IOI", "score": [ @@ -49756,15 +47652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.1", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1022, + "id": 2068, "result": { "type": "IOI", "score": [ @@ -49777,18 +47673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1043, + "id": 2069, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49796,19 +47692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.4", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1381, + "id": 2070, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49817,14 +47713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1496, + "id": 2071, "result": { "type": "IOI", "score": [ @@ -49837,18 +47733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1591, + "id": 2072, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49856,15 +47752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.4", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3233, + "id": 2073, "result": { "type": "IOI", "score": [ @@ -49876,19 +47772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 386, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3487, + "id": 2074, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49896,19 +47792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 386, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3538, + "id": 2075, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49917,18 +47813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 386, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5133, + "id": 2076, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49937,14 +47833,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 386, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5784, + "id": 2077, "result": { "type": "IOI", "score": [ @@ -49956,19 +47852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5825, + "id": 2078, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -49977,14 +47873,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5994, + "id": 2079, "result": { "type": "IOI", "score": [ @@ -49997,18 +47893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6011, + "id": 2080, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50017,18 +47913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 386, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6593, + "id": 2081, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50036,19 +47932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 386, + "problemId": "d1.4", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11741, + "id": 2082, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50056,19 +47952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 386, + "problemId": "d1.2", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 74, + "id": 2083, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50076,19 +47972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.1", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1857, + "id": 2084, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50097,14 +47993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 156, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1976, + "id": 2085, "result": { "type": "IOI", "score": [ @@ -50117,18 +48013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 156, + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3667, + "id": 2086, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50136,19 +48032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3778, + "id": 2087, "result": { "type": "IOI", "score": [ - 38.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50156,19 +48052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5422, + "id": 2088, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50176,19 +48072,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5448, + "id": 2089, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144210", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2090, + "result": { + "type": "IOI", + "score": [ + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50197,18 +48113,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 156, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10121, + "id": 2091, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144378", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2092, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144087", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2093, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50217,14 +48173,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 156, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10264, + "id": 2094, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144297", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2095, "result": { "type": "IOI", "score": [ @@ -50237,18 +48213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 156, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10740, + "id": 2096, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50256,19 +48232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 156, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11640, + "id": 2097, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50277,18 +48253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 156, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11661, + "id": 2098, "result": { "type": "IOI", "score": [ - 38.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50296,19 +48272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.2", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11841, + "id": 2099, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50316,19 +48292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.2", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11895, + "id": 2100, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50336,19 +48312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 156, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 77, + "id": 2101, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50356,19 +48332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 99, + "id": 2102, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50376,19 +48352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 180, + "id": 2103, "result": { "type": "IOI", "score": [ - 14.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50397,18 +48373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 283, + "id": 2104, "result": { "type": "IOI", "score": [ - 14.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50417,14 +48393,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 310, + "id": 2105, "result": { "type": "IOI", "score": [ @@ -50437,18 +48413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 336, + "id": 2106, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50456,19 +48432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 348, + "id": 2107, "result": { "type": "IOI", "score": [ - 14.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50476,15 +48452,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 471, + "id": 2108, "result": { "type": "IOI", "score": [ @@ -50496,15 +48472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 559, + "id": 2109, "result": { "type": "IOI", "score": [ @@ -50517,14 +48493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 653, + "id": 2110, "result": { "type": "IOI", "score": [ @@ -50536,19 +48512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1156, + "id": 2111, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50557,18 +48533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1238, + "id": 2112, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50576,19 +48552,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1305, + "id": 2113, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144335", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2114, + "result": { + "type": "IOI", + "score": [ + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50597,18 +48593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1852, + "id": 2115, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50617,14 +48613,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1855, + "id": 2116, "result": { "type": "IOI", "score": [ @@ -50637,18 +48633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2489, + "id": 2117, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50656,15 +48652,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4094, + "id": 2118, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144386", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2119, "result": { "type": "IOI", "score": [ @@ -50677,18 +48693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 268, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4264, + "id": 2120, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50696,15 +48712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4304, + "id": 2121, "result": { "type": "IOI", "score": [ @@ -50717,14 +48733,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 268, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4506, + "id": 2122, "result": { "type": "IOI", "score": [ @@ -50736,19 +48752,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144267", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2123, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 268, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4515, + "id": 2124, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50757,14 +48793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 268, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5401, + "id": 2125, "result": { "type": "IOI", "score": [ @@ -50776,15 +48812,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144228", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2126, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 268, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5474, + "id": 2127, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144392", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2128, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144493", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2129, "result": { "type": "IOI", "score": [ @@ -50796,19 +48896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5565, + "id": 2130, "result": { "type": "IOI", "score": [ - 25.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50816,19 +48916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5607, + "id": 2131, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50836,15 +48936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5676, + "id": 2132, "result": { "type": "IOI", "score": [ @@ -50861,18 +48961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 268, + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5861, + "id": 2133, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50881,18 +48981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 268, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5920, + "id": 2134, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50901,18 +49001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 268, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5957, + "id": 2135, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50920,15 +49020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6560, + "id": 2136, "result": { "type": "IOI", "score": [ @@ -50940,19 +49040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6726, + "id": 2137, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50960,19 +49060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6850, + "id": 2138, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -50980,19 +49080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7217, + "id": 2139, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51000,19 +49100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7258, + "id": 2140, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51020,19 +49120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7551, + "id": 2141, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51040,19 +49140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7599, + "id": 2142, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51060,19 +49160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7790, + "id": 2143, "result": { "type": "IOI", "score": [ - 38.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51080,19 +49180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7793, + "id": 2144, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51100,19 +49200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7797, + "id": 2145, "result": { "type": "IOI", "score": [ - 38.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51120,19 +49220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7807, + "id": 2146, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51140,19 +49240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8583, + "id": 2147, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51160,19 +49260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8706, + "id": 2148, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51181,18 +49281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8733, + "id": 2149, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51200,15 +49300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.4", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8749, + "id": 2150, "result": { "type": "IOI", "score": [ @@ -51220,19 +49320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8863, + "id": 2151, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51240,19 +49340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9000, + "id": 2152, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51261,18 +49361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9027, + "id": 2153, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51280,19 +49380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9148, + "id": 2154, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51301,18 +49401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9235, + "id": 2155, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51320,19 +49420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9547, + "id": 2156, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51341,18 +49441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9590, + "id": 2157, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51360,19 +49460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9737, + "id": 2158, "result": { "type": "IOI", "score": [ - 32.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51380,19 +49480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.4", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9994, + "id": 2159, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51400,19 +49500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10099, + "id": 2160, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51420,19 +49520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10255, + "id": 2161, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51441,18 +49541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 268, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10340, + "id": 2162, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51460,15 +49560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10465, + "id": 2163, "result": { "type": "IOI", "score": [ @@ -51481,18 +49581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10575, + "id": 2164, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51500,19 +49600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10579, + "id": 2165, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51520,19 +49620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10587, + "id": 2166, "result": { "type": "IOI", "score": [ - 38.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51541,18 +49641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10589, + "id": 2167, "result": { "type": "IOI", "score": [ - 38.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51561,18 +49661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10594, + "id": 2168, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51580,19 +49680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10601, + "id": 2169, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51600,19 +49700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11095, + "id": 2170, "result": { "type": "IOI", "score": [ - 27.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51620,19 +49720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11227, + "id": 2171, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51640,19 +49740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11483, + "id": 2172, "result": { "type": "IOI", "score": [ - 63.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51661,18 +49761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11555, + "id": 2173, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51680,19 +49780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11559, + "id": 2174, "result": { "type": "IOI", "score": [ - 63.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51700,19 +49800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11569, + "id": 2175, "result": { "type": "IOI", "score": [ - 63.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51721,18 +49821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11576, + "id": 2176, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51741,18 +49841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11587, + "id": 2177, "result": { "type": "IOI", "score": [ - 63.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51760,19 +49860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11595, + "id": 2178, "result": { "type": "IOI", "score": [ - 63.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51781,18 +49881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 268, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11605, + "id": 2179, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51800,19 +49900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11627, + "id": 2180, "result": { "type": "IOI", "score": [ - 42.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51820,19 +49920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12093, + "id": 2181, "result": { "type": "IOI", "score": [ - 42.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51840,19 +49940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 268, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 78, + "id": 2182, "result": { "type": "IOI", "score": [ - 15.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51860,19 +49960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 380, + "id": 2183, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51880,19 +49980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1047, + "id": 2184, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51900,43 +50000,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1076, + "id": 2185, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1090, + "id": 2186, "result": { "type": "IOI", "score": [ - 50.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51944,19 +50040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1163, + "id": 2187, "result": { "type": "IOI", "score": [ - 61.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51965,18 +50061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 301, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1175, + "id": 2188, "result": { "type": "IOI", "score": [ - 63.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -51984,19 +50080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1182, + "id": 2189, "result": { "type": "IOI", "score": [ - 63.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52004,19 +50100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1283, + "id": 2190, "result": { "type": "IOI", "score": [ - 63.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52024,43 +50120,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1317, + "id": 2191, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.2", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1322, + "id": 2192, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52068,15 +50160,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2805, + "id": 2193, "result": { "type": "IOI", "score": [ @@ -52088,15 +50180,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2826, + "id": 2194, "result": { "type": "IOI", "score": [ @@ -52108,15 +50200,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3211, + "id": 2195, "result": { "type": "IOI", "score": [ @@ -52129,18 +50221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 301, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3296, + "id": 2196, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52148,19 +50240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3492, + "id": 2197, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52168,19 +50260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3502, + "id": 2198, "result": { "type": "IOI", "score": [ - 31.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52188,19 +50280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3570, + "id": 2199, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52208,15 +50300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3635, + "id": 2200, "result": { "type": "IOI", "score": [ @@ -52229,18 +50321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 301, + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3677, + "id": 2201, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52248,19 +50340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3729, + "id": 2202, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52268,19 +50360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3832, + "id": 2203, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52288,19 +50380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4006, + "id": 2204, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52308,19 +50400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5091, + "id": 2205, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52329,14 +50421,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 301, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5142, + "id": 2206, "result": { "type": "IOI", "score": [ @@ -52348,19 +50440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5215, + "id": 2207, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52368,19 +50460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 301, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5350, + "id": 2208, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52389,18 +50481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 301, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5561, + "id": 2209, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52409,14 +50501,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 301, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5702, + "id": 2210, "result": { "type": "IOI", "score": [ @@ -52429,18 +50521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 301, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5738, + "id": 2211, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52448,15 +50540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 301, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6340, + "id": 2212, "result": { "type": "IOI", "score": [ @@ -52468,15 +50560,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 301, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6442, + "id": 2213, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144416", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2214, "result": { "type": "IOI", "score": [ @@ -52488,15 +50600,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 301, + "problemId": "d1.2", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6736, + "id": 2215, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144288", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2216, "result": { "type": "IOI", "score": [ @@ -52508,19 +50640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 301, + "problemId": "d1.2", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7082, + "id": 2217, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52528,19 +50660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 301, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7354, + "id": 2218, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52549,18 +50681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 301, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7566, + "id": 2219, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52569,18 +50701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 301, + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 83, + "id": 2220, "result": { "type": "IOI", "score": [ - 61.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52588,19 +50720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 237, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 103, + "id": 2221, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52608,19 +50740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 237, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 743, + "id": 2222, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52629,18 +50761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 237, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 868, + "id": 2223, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52649,18 +50781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 237, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2775, + "id": 2224, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52669,18 +50801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 237, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4173, + "id": 2225, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52688,15 +50820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4211, + "id": 2226, "result": { "type": "IOI", "score": [ @@ -52708,15 +50840,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.1", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4237, + "id": 2227, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144515", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2228, "result": { "type": "IOI", "score": [ @@ -52728,15 +50880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4423, + "id": 2229, "result": { "type": "IOI", "score": [ @@ -52749,14 +50901,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 237, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5178, + "id": 2230, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144076", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2231, "result": { "type": "IOI", "score": [ @@ -52768,19 +50940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5701, + "id": 2232, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52789,18 +50961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 237, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8858, + "id": 2233, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52808,19 +50980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.2", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9831, + "id": 2234, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52828,19 +51000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.1", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10123, + "id": 2235, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52848,19 +51020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10600, + "id": 2236, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52868,19 +51040,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 237, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11547, + "id": 2237, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144429", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2238, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52889,18 +51081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 237, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 84, + "id": 2239, "result": { "type": "IOI", "score": [ - 37.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52908,15 +51100,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 147, + "id": 2240, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144509", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2241, "result": { "type": "IOI", "score": [ @@ -52928,15 +51140,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 238, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 155, + "id": 2242, "result": { "type": "IOI", "score": [ @@ -52948,20 +51160,44 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 169, + "id": 2243, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144386", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2244, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -52969,18 +51205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 238, + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 187, + "id": 2245, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -52989,18 +51225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 238, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 202, + "id": 2246, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53008,19 +51244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 238, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 257, + "id": 2247, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53029,18 +51265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 238, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 299, + "id": 2248, "result": { "type": "IOI", "score": [ - 57.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53048,15 +51284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1179, + "id": 2249, "result": { "type": "IOI", "score": [ @@ -53069,18 +51305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 238, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1266, + "id": 2250, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53088,43 +51324,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2453, + "id": 2251, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 238, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2476, + "id": 2252, "result": { "type": "IOI", "score": [ - 48.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53133,18 +51365,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 238, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2736, + "id": 2253, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144345", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2254, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53153,18 +51405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 238, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3085, + "id": 2255, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53172,19 +51424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3208, + "id": 2256, "result": { "type": "IOI", "score": [ - 32.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53192,19 +51444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3357, + "id": 2257, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53213,18 +51465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3497, + "id": 2258, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53233,14 +51485,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5289, + "id": 2259, "result": { "type": "IOI", "score": [ @@ -53252,19 +51504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5461, + "id": 2260, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53272,19 +51524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6143, + "id": 2261, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53293,18 +51545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6678, + "id": 2262, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53312,19 +51564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6713, + "id": 2263, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53332,19 +51584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7179, + "id": 2264, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53352,19 +51604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7512, + "id": 2265, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53372,19 +51624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7526, + "id": 2266, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53393,14 +51645,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7886, + "id": 2267, "result": { "type": "IOI", "score": [ @@ -53413,14 +51665,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7956, + "id": 2268, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144079", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2269, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144386", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2270, "result": { "type": "IOI", "score": [ @@ -53433,18 +51725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8099, + "id": 2271, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53452,19 +51744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8383, + "id": 2272, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53472,19 +51764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8537, + "id": 2273, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53492,19 +51784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9381, + "id": 2274, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53512,19 +51804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9498, + "id": 2275, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53532,19 +51824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9581, + "id": 2276, "result": { "type": "IOI", "score": [ - 48.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53552,19 +51844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9771, + "id": 2277, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53573,18 +51865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9913, + "id": 2278, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53592,19 +51884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9992, + "id": 2279, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53612,19 +51904,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.2", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10089, + "id": 2280, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144499", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2281, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53633,14 +51945,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10146, + "id": 2282, "result": { "type": "IOI", "score": [ @@ -53653,14 +51965,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10245, + "id": 2283, "result": { "type": "IOI", "score": [ @@ -53672,15 +51984,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10273, + "id": 2284, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144235", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2285, "result": { "type": "IOI", "score": [ @@ -53693,14 +52025,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10324, + "id": 2286, "result": { "type": "IOI", "score": [ @@ -53713,18 +52045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10337, + "id": 2287, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53732,19 +52064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10493, + "id": 2288, "result": { "type": "IOI", "score": [ - 48.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53752,19 +52084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10507, + "id": 2289, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53772,19 +52104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10596, + "id": 2290, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53793,18 +52125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10822, + "id": 2291, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53812,19 +52144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10834, + "id": 2292, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53832,19 +52164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10874, + "id": 2293, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53852,19 +52184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10933, + "id": 2294, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53872,19 +52204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.2", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10955, + "id": 2295, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53893,18 +52225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 238, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11008, + "id": 2296, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53912,19 +52244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11834, + "id": 2297, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53932,19 +52264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11907, + "id": 2298, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53952,19 +52284,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 238, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 86, + "id": 2299, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144087", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2300, + "result": { + "type": "IOI", + "score": [ + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53973,18 +52325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 311, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3654, + "id": 2301, "result": { "type": "IOI", "score": [ - 46.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -53992,19 +52344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3827, + "id": 2302, "result": { "type": "IOI", "score": [ - 46.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54012,19 +52364,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.4", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3864, + "id": 2303, "result": { "type": "IOI", "score": [ - 46.0 + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144092", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2304, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54033,14 +52405,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 311, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4802, + "id": 2305, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144131", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2306, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144329", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2307, "result": { "type": "IOI", "score": [ @@ -54053,18 +52465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 311, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4845, + "id": 2308, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54072,19 +52484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 311, + "problemId": "d1.2", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4905, + "id": 2309, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54093,18 +52505,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 311, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5111, + "id": 2310, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144329", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2311, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54113,18 +52545,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 311, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5294, + "id": 2312, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144282", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2313, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144203", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2314, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54133,18 +52605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 311, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5750, + "id": 2315, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54153,14 +52625,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 311, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6133, + "id": 2316, "result": { "type": "IOI", "score": [ @@ -54172,19 +52644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6148, + "id": 2317, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54192,19 +52664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.2", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6167, + "id": 2318, "result": { "type": "IOI", "score": [ - 36.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54213,18 +52685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 311, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6191, + "id": 2319, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54232,19 +52704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6248, + "id": 2320, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54252,19 +52724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6289, + "id": 2321, "result": { "type": "IOI", "score": [ - 46.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54273,18 +52745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 311, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6298, + "id": 2322, "result": { "type": "IOI", "score": [ - 58.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54292,19 +52764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6331, + "id": 2323, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54312,19 +52784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6366, + "id": 2324, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54333,18 +52805,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 311, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6416, + "id": 2325, "result": { "type": "IOI", "score": [ - 58.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54352,43 +52824,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6500, + "id": 2326, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 311, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6512, + "id": 2327, "result": { "type": "IOI", "score": [ - 58.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54396,19 +52864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.2", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9076, + "id": 2328, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54416,19 +52884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9709, + "id": 2329, "result": { "type": "IOI", "score": [ - 48.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54436,19 +52904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.4", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9755, + "id": 2330, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54456,19 +52924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.2", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9787, + "id": 2331, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54476,19 +52944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10670, + "id": 2332, "result": { "type": "IOI", "score": [ - 58.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54496,19 +52964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10767, + "id": 2333, "result": { "type": "IOI", "score": [ - 58.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54516,19 +52984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 311, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 87, + "id": 2334, "result": { "type": "IOI", "score": [ - 34.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54536,19 +53004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 168, + "id": 2335, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54557,14 +53025,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 168, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2238, + "id": 2336, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144225", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2337, "result": { "type": "IOI", "score": [ @@ -54577,7 +53065,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54597,18 +53085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2392, + "id": 2339, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54616,19 +53104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2918, + "id": 2340, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54636,19 +53124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2968, + "id": 2341, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54656,19 +53144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3125, + "id": 2342, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54676,15 +53164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3602, + "id": 2343, "result": { "type": "IOI", "score": [ @@ -54697,38 +53185,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3730, + "id": 2344, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3925, + "id": 2345, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54737,14 +53229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3949, + "id": 2346, "result": { "type": "IOI", "score": [ @@ -54757,18 +53249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3961, + "id": 2347, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54776,19 +53268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4033, + "id": 2348, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54796,19 +53288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4089, + "id": 2349, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54816,19 +53308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4111, + "id": 2350, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54836,19 +53328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4285, + "id": 2351, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54856,15 +53348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4292, + "id": 2352, "result": { "type": "IOI", "score": [ @@ -54877,18 +53369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4485, + "id": 2353, "result": { "type": "IOI", "score": [ - 67.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54897,18 +53389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4548, + "id": 2354, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54917,18 +53409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4592, + "id": 2355, "result": { "type": "IOI", "score": [ - 67.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54937,18 +53429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4847, + "id": 2356, "result": { "type": "IOI", "score": [ - 67.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54956,19 +53448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4984, + "id": 2357, "result": { "type": "IOI", "score": [ - 48.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54976,19 +53468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5001, + "id": 2358, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -54996,19 +53488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5136, + "id": 2359, "result": { "type": "IOI", "score": [ - 81.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55016,15 +53508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6399, + "id": 2360, "result": { "type": "IOI", "score": [ @@ -55037,18 +53529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 168, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6737, + "id": 2361, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55056,19 +53548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 168, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6848, + "id": 2362, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55076,19 +53568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 168, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6895, + "id": 2363, "result": { "type": "IOI", "score": [ - 47.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55096,19 +53588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 168, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7584, + "id": 2364, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55117,18 +53609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 168, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8138, + "id": 2365, "result": { "type": "IOI", "score": [ - 81.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55136,19 +53628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8194, + "id": 2366, "result": { "type": "IOI", "score": [ - 81.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55156,19 +53648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8278, + "id": 2367, "result": { "type": "IOI", "score": [ - 81.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55176,19 +53668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8814, + "id": 2368, "result": { "type": "IOI", "score": [ - 67.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55196,19 +53688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8849, + "id": 2369, "result": { "type": "IOI", "score": [ - 81.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55217,18 +53709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 168, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8900, + "id": 2370, "result": { "type": "IOI", "score": [ - 67.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55236,19 +53728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9097, + "id": 2371, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55256,19 +53748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9122, + "id": 2372, "result": { "type": "IOI", "score": [ - 67.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55276,19 +53768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9192, + "id": 2373, "result": { "type": "IOI", "score": [ - 81.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55296,19 +53788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9206, + "id": 2374, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55316,19 +53808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9420, + "id": 2375, "result": { "type": "IOI", "score": [ - 67.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55336,19 +53828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9448, + "id": 2376, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55356,19 +53848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9554, + "id": 2377, "result": { "type": "IOI", "score": [ - 67.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55376,19 +53868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9691, + "id": 2378, "result": { "type": "IOI", "score": [ - 67.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55396,19 +53888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.2", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10065, + "id": 2379, "result": { "type": "IOI", "score": [ - 100.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55416,19 +53908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10087, + "id": 2380, "result": { "type": "IOI", "score": [ - 100.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55436,19 +53928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 168, + "problemId": "d1.4", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 88, + "id": 2381, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55456,19 +53948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 55, + "problemId": "d1.1", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1434, + "id": 2382, "result": { "type": "IOI", "score": [ - 32.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55476,19 +53968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 55, + "problemId": "d1.4", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2561, + "id": 2383, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55497,18 +53989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 55, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2623, + "id": 2384, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55517,18 +54009,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 55, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2644, + "id": 2385, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55536,19 +54028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2677, + "id": 2386, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55557,18 +54049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 55, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2917, + "id": 2387, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55576,19 +54068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3084, + "id": 2388, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55596,19 +54088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3317, + "id": 2389, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55616,19 +54108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 55, + "problemId": "d1.4", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4272, + "id": 2390, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55637,18 +54129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 55, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5552, + "id": 2391, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55657,18 +54149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 55, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5646, + "id": 2392, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55676,19 +54168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5717, + "id": 2393, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55696,19 +54188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5783, + "id": 2394, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55716,19 +54208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5966, + "id": 2395, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55737,18 +54229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 55, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6327, + "id": 2396, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55756,19 +54248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6450, + "id": 2397, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55776,19 +54268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6493, + "id": 2398, "result": { "type": "IOI", "score": [ - 83.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55796,19 +54288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6646, + "id": 2399, "result": { "type": "IOI", "score": [ - 83.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55816,19 +54308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 55, + "problemId": "d1.2", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6759, + "id": 2400, "result": { "type": "IOI", "score": [ - 83.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55837,18 +54329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 55, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7721, + "id": 2401, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55856,19 +54348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 55, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7920, + "id": 2402, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55877,18 +54369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 55, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10068, + "id": 2403, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55896,19 +54388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 55, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10270, + "id": 2404, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55916,19 +54408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10468, + "id": 2405, "result": { "type": "IOI", "score": [ - 69.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55936,15 +54428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 55, + "problemId": "d1.4", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10849, + "id": 2406, "result": { "type": "IOI", "score": [ @@ -55956,19 +54448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 55, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11448, + "id": 2407, "result": { "type": "IOI", "score": [ - 69.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -55977,14 +54469,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 55, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 90, + "id": 2408, "result": { "type": "IOI", "score": [ @@ -55997,18 +54489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 134, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 163, + "id": 2409, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56016,19 +54508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 190, + "id": 2410, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56036,19 +54528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 245, + "id": 2411, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56056,19 +54548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 286, + "id": 2412, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56076,19 +54568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.2", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 570, + "id": 2413, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56096,19 +54588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 641, + "id": 2414, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56116,15 +54608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 719, + "id": 2415, "result": { "type": "IOI", "score": [ @@ -56137,38 +54629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 134, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 954, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 134, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1048, + "id": 2416, "result": { "type": "IOI", "score": [ - 9.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56176,19 +54648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1113, + "id": 2417, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56196,19 +54668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1185, + "id": 2418, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56216,19 +54688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1208, + "id": 2419, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56236,19 +54708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1244, + "id": 2420, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56256,19 +54728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1300, + "id": 2421, "result": { "type": "IOI", "score": [ - 38.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56276,19 +54748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1436, + "id": 2422, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56296,19 +54768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1556, + "id": 2423, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56316,19 +54788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.2", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1617, + "id": 2424, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56337,18 +54809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 134, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1670, + "id": 2425, "result": { "type": "IOI", "score": [ - 36.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56356,19 +54828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 134, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1807, + "id": 2426, "result": { "type": "IOI", "score": [ - 63.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56377,14 +54849,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 134, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2768, + "id": 2427, "result": { "type": "IOI", "score": [ @@ -56396,39 +54868,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2807, + "id": 2428, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 134, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5753, + "id": 2429, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56436,19 +54912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6072, + "id": 2430, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56457,18 +54933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 134, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6300, + "id": 2431, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56476,19 +54952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6482, + "id": 2432, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56496,19 +54972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6576, + "id": 2433, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56517,18 +54993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 134, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7266, + "id": 2434, "result": { "type": "IOI", "score": [ - 12.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56536,15 +55012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.4", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7398, + "id": 2435, "result": { "type": "IOI", "score": [ @@ -56556,19 +55032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 134, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7643, + "id": 2436, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56577,18 +55053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 134, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8196, + "id": 2437, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56597,14 +55073,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 134, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8253, + "id": 2438, "result": { "type": "IOI", "score": [ @@ -56617,18 +55093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 134, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8683, + "id": 2439, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56637,18 +55113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 134, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8968, + "id": 2440, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56656,15 +55132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 134, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9062, + "id": 2441, "result": { "type": "IOI", "score": [ @@ -56676,35 +55152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 134, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9070, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 134, + "problemId": "d1.3", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9438, + "id": 2442, "result": { "type": "IOI", "score": [ @@ -56717,34 +55173,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 134, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10139, + "id": 2443, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 134, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10183, + "id": 2444, "result": { "type": "IOI", "score": [ @@ -56757,18 +55217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 134, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 94, + "id": 2445, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56776,19 +55236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 216, + "id": 2446, "result": { "type": "IOI", "score": [ - 100.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56797,14 +55257,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 137, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 639, + "id": 2447, "result": { "type": "IOI", "score": [ @@ -56816,15 +55276,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 643, + "id": 2448, "result": { "type": "IOI", "score": [ @@ -56837,18 +55297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 687, + "id": 2449, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56857,34 +55317,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 728, + "id": 2450, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 930, + "id": 2451, "result": { "type": "IOI", "score": [ @@ -56896,15 +55360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1494, + "id": 2452, "result": { "type": "IOI", "score": [ @@ -56917,58 +55381,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 137, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1499, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 137, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1983, + "id": 2453, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2008, + "id": 2454, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -56977,38 +55425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2514, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 137, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2525, + "id": 2455, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57016,15 +55444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2572, + "id": 2456, "result": { "type": "IOI", "score": [ @@ -57037,18 +55465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2624, + "id": 2457, "result": { "type": "IOI", "score": [ - 25.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57056,15 +55484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2638, + "id": 2458, "result": { "type": "IOI", "score": [ @@ -57077,18 +55505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2670, + "id": 2459, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57097,14 +55525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2759, + "id": 2460, "result": { "type": "IOI", "score": [ @@ -57116,19 +55544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2939, + "id": 2461, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57136,19 +55564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3048, + "id": 2462, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57157,18 +55585,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3089, + "id": 2463, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57176,19 +55604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3094, + "id": 2464, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57197,14 +55625,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3288, + "id": 2465, "result": { "type": "IOI", "score": [ @@ -57217,18 +55645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3359, + "id": 2466, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57236,19 +55664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3438, + "id": 2467, "result": { "type": "IOI", "score": [ - 47.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57256,19 +55684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3506, + "id": 2468, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57277,18 +55705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3636, + "id": 2469, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57297,18 +55725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3791, + "id": 2470, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57316,19 +55744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3806, + "id": 2471, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57336,19 +55764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3818, + "id": 2472, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57357,18 +55785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3873, + "id": 2473, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57376,19 +55804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4289, + "id": 2474, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57396,19 +55824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4365, + "id": 2475, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57416,19 +55844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4395, + "id": 2476, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57436,15 +55864,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4463, + "id": 2477, "result": { "type": "IOI", "score": [ @@ -57456,15 +55884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4556, + "id": 2478, "result": { "type": "IOI", "score": [ @@ -57477,18 +55905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4630, + "id": 2479, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57496,19 +55924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4781, + "id": 2480, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57517,18 +55945,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4867, + "id": 2481, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57536,19 +55964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5636, + "id": 2482, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57557,18 +55985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 137, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5866, + "id": 2483, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57577,18 +56005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5927, + "id": 2484, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57596,19 +56024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.2", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6001, + "id": 2485, "result": { "type": "IOI", "score": [ - 57.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57616,19 +56044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6121, + "id": 2486, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57637,18 +56065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6226, + "id": 2487, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57657,18 +56085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6243, + "id": 2488, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57676,19 +56104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.4", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6355, + "id": 2489, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57696,19 +56124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6428, + "id": 2490, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57716,15 +56144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 137, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8440, + "id": 2491, "result": { "type": "IOI", "score": [ @@ -57737,18 +56165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8447, + "id": 2492, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57756,19 +56184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.1", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8598, + "id": 2493, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57776,15 +56204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11046, + "id": 2494, "result": { "type": "IOI", "score": [ @@ -57796,15 +56224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 137, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11154, + "id": 2495, "result": { "type": "IOI", "score": [ @@ -57817,18 +56245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 137, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11264, + "id": 2496, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57837,14 +56265,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11732, + "id": 2497, "result": { "type": "IOI", "score": [ @@ -57857,18 +56285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 137, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 96, + "id": 2498, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57876,19 +56304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 106, + "id": 2499, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57896,19 +56324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 258, + "id": 2500, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57916,19 +56344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 712, + "id": 2501, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -57937,14 +56365,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 223, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1991, + "id": 2502, "result": { "type": "IOI", "score": [ @@ -57957,14 +56385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 223, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2463, + "id": 2503, "result": { "type": "IOI", "score": [ @@ -57977,14 +56405,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 223, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2557, + "id": 2504, "result": { "type": "IOI", "score": [ @@ -57997,14 +56425,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 223, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2617, + "id": 2505, "result": { "type": "IOI", "score": [ @@ -58017,14 +56445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 223, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2657, + "id": 2506, "result": { "type": "IOI", "score": [ @@ -58036,19 +56464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3005, + "id": 2507, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58056,15 +56484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.4", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3045, + "id": 2508, "result": { "type": "IOI", "score": [ @@ -58077,18 +56505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 223, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3119, + "id": 2509, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58096,15 +56524,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3241, + "id": 2510, "result": { "type": "IOI", "score": [ @@ -58116,15 +56544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3394, + "id": 2511, "result": { "type": "IOI", "score": [ @@ -58136,15 +56564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3476, + "id": 2512, "result": { "type": "IOI", "score": [ @@ -58156,15 +56584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.4", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3582, + "id": 2513, "result": { "type": "IOI", "score": [ @@ -58176,15 +56604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.1", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4127, + "id": 2514, "result": { "type": "IOI", "score": [ @@ -58196,19 +56624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6096, + "id": 2515, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58216,19 +56644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6186, + "id": 2516, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58236,19 +56664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6938, + "id": 2517, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58256,19 +56684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 223, + "problemId": "d1.1", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7335, + "id": 2518, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58276,19 +56704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8178, + "id": 2519, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58296,19 +56724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.1", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8255, + "id": 2520, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58316,19 +56744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.2", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8297, + "id": 2521, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58336,19 +56764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.4", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9262, + "id": 2522, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58356,15 +56784,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 223, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 98, + "id": 2523, "result": { "type": "IOI", "score": [ @@ -58376,19 +56804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 144, + "id": 2524, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58396,19 +56824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 195, + "id": 2525, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58416,19 +56844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 227, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 999, + "id": 2526, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58436,19 +56864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1134, + "id": 2527, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58457,18 +56885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1189, + "id": 2528, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58477,18 +56905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1291, + "id": 2529, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58496,43 +56924,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1705, + "id": 2530, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1723, + "id": 2531, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58540,15 +56964,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1739, + "id": 2532, "result": { "type": "IOI", "score": [ @@ -58560,19 +56984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1753, + "id": 2533, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58580,19 +57004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1774, + "id": 2534, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58601,18 +57025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 227, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1875, + "id": 2535, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58620,19 +57044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1888, + "id": 2536, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58640,19 +57064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 227, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1920, + "id": 2537, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58661,14 +57085,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 227, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2022, + "id": 2538, "result": { "type": "IOI", "score": [ @@ -58681,18 +57105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 227, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2094, + "id": 2539, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58701,14 +57125,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 227, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3131, + "id": 2540, "result": { "type": "IOI", "score": [ @@ -58721,18 +57145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 227, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3194, + "id": 2541, "result": { "type": "IOI", "score": [ - 31.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58740,43 +57164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 227, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3398, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 227, + "problemId": "d1.1", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3405, + "id": 2542, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58784,19 +57184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 227, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3481, + "id": 2543, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58805,18 +57205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 227, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5599, + "id": 2544, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58824,15 +57224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5716, + "id": 2545, "result": { "type": "IOI", "score": [ @@ -58845,14 +57245,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5737, + "id": 2546, "result": { "type": "IOI", "score": [ @@ -58864,19 +57264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6079, + "id": 2547, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58884,19 +57284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6132, + "id": 2548, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58905,18 +57305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6256, + "id": 2549, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58924,15 +57324,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6348, + "id": 2550, "result": { "type": "IOI", "score": [ @@ -58944,19 +57344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6418, + "id": 2551, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58964,19 +57364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6832, + "id": 2552, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -58985,18 +57385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6894, + "id": 2553, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59005,18 +57405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7316, + "id": 2554, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59024,19 +57424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7629, + "id": 2555, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59045,14 +57445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7675, + "id": 2556, "result": { "type": "IOI", "score": [ @@ -59065,14 +57465,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8689, + "id": 2557, "result": { "type": "IOI", "score": [ @@ -59084,19 +57484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8826, + "id": 2558, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59105,18 +57505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8853, + "id": 2559, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59124,19 +57524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8867, + "id": 2560, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59144,15 +57544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8874, + "id": 2561, "result": { "type": "IOI", "score": [ @@ -59164,15 +57564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8892, + "id": 2562, "result": { "type": "IOI", "score": [ @@ -59184,19 +57584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8925, + "id": 2563, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59204,15 +57604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8945, + "id": 2564, "result": { "type": "IOI", "score": [ @@ -59225,18 +57625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8964, + "id": 2565, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59244,19 +57644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9176, + "id": 2566, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59264,15 +57664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9466, + "id": 2567, "result": { "type": "IOI", "score": [ @@ -59285,18 +57685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9487, + "id": 2568, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59305,14 +57705,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9539, + "id": 2569, "result": { "type": "IOI", "score": [ @@ -59324,19 +57724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10333, + "id": 2570, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59344,15 +57744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.2", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10947, + "id": 2571, "result": { "type": "IOI", "score": [ @@ -59364,39 +57764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11308, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11673, + "id": 2572, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59405,18 +57785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 227, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11731, + "id": 2573, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59424,19 +57804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 227, + "problemId": "d1.4", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 101, + "id": 2574, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59444,19 +57824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 177, + "id": 2575, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59464,19 +57844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 465, + "id": 2576, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59485,18 +57865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 496, + "id": 2577, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59505,18 +57885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 518, + "id": 2578, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59525,18 +57905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 988, + "id": 2579, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59544,15 +57924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2293, + "id": 2580, "result": { "type": "IOI", "score": [ @@ -59564,19 +57944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2579, + "id": 2581, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59584,19 +57964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2764, + "id": 2582, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59604,15 +57984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3887, + "id": 2583, "result": { "type": "IOI", "score": [ @@ -59625,14 +58005,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4167, + "id": 2584, "result": { "type": "IOI", "score": [ @@ -59649,18 +58029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4209, + "id": 2585, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59668,19 +58048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4249, + "id": 2586, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59689,18 +58069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4537, + "id": 2587, "result": { "type": "IOI", "score": [ - 16.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59709,38 +58089,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4714, + "id": 2588, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4729, + "id": 2589, "result": { "type": "IOI", "score": [ - 16.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59748,19 +58132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5103, + "id": 2590, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59769,14 +58153,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5736, + "id": 2591, "result": { "type": "IOI", "score": [ @@ -59788,19 +58172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5775, + "id": 2592, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59808,19 +58192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6195, + "id": 2593, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59829,14 +58213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 65, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6264, + "id": 2594, "result": { "type": "IOI", "score": [ @@ -59848,39 +58232,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6525, + "id": 2595, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6537, + "id": 2596, "result": { "type": "IOI", "score": [ @@ -59892,19 +58272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6556, + "id": 2597, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59912,19 +58292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6606, + "id": 2598, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -59933,38 +58313,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7067, + "id": 2599, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7087, + "id": 2600, "result": { "type": "IOI", "score": [ @@ -59977,14 +58353,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7201, + "id": 2601, "result": { "type": "IOI", "score": [ @@ -59996,19 +58372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7272, + "id": 2602, "result": { "type": "IOI", "score": [ - 12.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60016,15 +58392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7438, + "id": 2603, "result": { "type": "IOI", "score": [ @@ -60036,19 +58412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7509, + "id": 2604, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60056,19 +58432,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7687, + "id": 2605, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144446", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2606, + "result": { + "type": "IOI", + "score": [ + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60077,14 +58473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7733, + "id": 2607, "result": { "type": "IOI", "score": [ @@ -60097,14 +58493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7995, + "id": 2608, "result": { "type": "IOI", "score": [ @@ -60117,18 +58513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8494, + "id": 2609, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60137,18 +58533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 65, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8546, + "id": 2610, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60156,19 +58552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8983, + "id": 2611, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60176,19 +58572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 65, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9271, + "id": 2612, "result": { "type": "IOI", "score": [ - 12.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60196,19 +58592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9645, + "id": 2613, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60217,18 +58613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9731, + "id": 2614, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60237,18 +58633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9813, + "id": 2615, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60257,18 +58653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9863, + "id": 2616, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60276,19 +58672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9980, + "id": 2617, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60296,19 +58692,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10247, + "id": 2618, "result": { "type": "IOI", "score": [ - 12.0 + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144129", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2619, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60317,14 +58733,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10550, + "id": 2620, "result": { "type": "IOI", "score": [ @@ -60336,15 +58752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10617, + "id": 2621, "result": { "type": "IOI", "score": [ @@ -60356,19 +58772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10665, + "id": 2622, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60376,39 +58792,75 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10749, + "id": 2623, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144125", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2624, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10758, + "id": 2625, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144313", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2626, "result": { "type": "IOI", "score": [ @@ -60421,14 +58873,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10890, + "id": 2627, "result": { "type": "IOI", "score": [ @@ -60441,14 +58893,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11167, + "id": 2628, "result": { "type": "IOI", "score": [ @@ -60461,18 +58913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11185, + "id": 2629, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60480,19 +58932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11217, + "id": 2630, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60500,19 +58952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11346, + "id": 2631, "result": { "type": "IOI", "score": [ - 12.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60520,19 +58972,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144318", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11453, + "id": 2632, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2633, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60540,19 +59016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11510, + "id": 2634, "result": { "type": "IOI", "score": [ - 22.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60560,19 +59036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11522, + "id": 2635, "result": { "type": "IOI", "score": [ - 22.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60581,18 +59057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11539, + "id": 2636, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60600,15 +59076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11711, + "id": 2637, "result": { "type": "IOI", "score": [ @@ -60621,18 +59097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11721, + "id": 2638, "result": { "type": "IOI", "score": [ - 22.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60641,18 +59117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11783, + "id": 2639, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60660,19 +59136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.2", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11813, + "id": 2640, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60680,19 +59156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.4", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11935, + "id": 2641, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60700,19 +59176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11950, + "id": 2642, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60720,19 +59196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11969, + "id": 2643, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60740,19 +59216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12047, + "id": 2644, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60760,15 +59236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 65, + "problemId": "d1.3", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12060, + "id": 2645, "result": { "type": "IOI", "score": [ @@ -60781,14 +59257,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 65, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 102, + "id": 2646, "result": { "type": "IOI", "score": [ @@ -60800,19 +59276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 44, + "problemId": "d1.3", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 105, + "id": 2647, "result": { "type": "IOI", "score": [ - 15.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60821,18 +59297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 44, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 370, + "id": 2648, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60840,19 +59316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 44, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 536, + "id": 2649, "result": { "type": "IOI", "score": [ - 100.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60860,15 +59336,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 44, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1582, + "id": 2650, "result": { "type": "IOI", "score": [ @@ -60881,14 +59357,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 44, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2032, + "id": 2651, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144129", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2652, "result": { "type": "IOI", "score": [ @@ -60901,18 +59397,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 44, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2865, + "id": 2653, "result": { "type": "IOI", "score": [ - 47.0 + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144130", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2654, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60921,18 +59437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 44, + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4350, + "id": 2655, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60941,18 +59457,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 44, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4711, + "id": 2656, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -60961,14 +59477,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 44, + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4883, + "id": 2657, "result": { "type": "IOI", "score": [ @@ -60981,18 +59497,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 44, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5185, + "id": 2658, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61000,19 +59516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 44, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5245, + "id": 2659, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61020,19 +59536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 44, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5307, + "id": 2660, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61041,14 +59557,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 44, + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5450, + "id": 2661, "result": { "type": "IOI", "score": [ @@ -61061,18 +59577,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 44, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6083, + "id": 2662, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144428", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2663, + "result": { + "type": "IOI", + "score": [ + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61081,14 +59617,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 44, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7225, + "id": 2664, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144315", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2665, "result": { "type": "IOI", "score": [ @@ -61100,15 +59656,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 44, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7262, + "id": 2666, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144380", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2667, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144312", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2668, "result": { "type": "IOI", "score": [ @@ -61121,14 +59717,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 44, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 107, + "id": 2669, "result": { "type": "IOI", "score": [ @@ -61140,19 +59736,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144141", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2670, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 162, + "id": 2671, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61161,18 +59777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 363, + "id": 2672, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61180,19 +59796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 398, + "id": 2673, "result": { "type": "IOI", "score": [ - 27.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61200,15 +59816,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.2", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 656, + "id": 2674, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144244", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2675, "result": { "type": "IOI", "score": [ @@ -61225,18 +59861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 306, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 673, + "id": 2676, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61244,39 +59880,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 801, + "id": 2677, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.3", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 815, + "id": 2678, "result": { "type": "IOI", "score": [ @@ -61288,19 +59920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 881, + "id": 2679, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61308,39 +59940,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1201, + "id": 2680, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1536, + "id": 2681, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61348,15 +59984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1543, + "id": 2682, "result": { "type": "IOI", "score": [ @@ -61369,18 +60005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1638, + "id": 2683, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61389,18 +60025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1742, + "id": 2684, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61408,19 +60044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1788, + "id": 2685, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61428,15 +60064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1809, + "id": 2686, "result": { "type": "IOI", "score": [ @@ -61449,18 +60085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1869, + "id": 2687, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61468,15 +60104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1889, + "id": 2688, "result": { "type": "IOI", "score": [ @@ -61489,34 +60125,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3257, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3366, + "id": 2689, "result": { "type": "IOI", "score": [ @@ -61528,15 +60144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 306, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3408, + "id": 2690, "result": { "type": "IOI", "score": [ @@ -61549,18 +60165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 306, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3462, + "id": 2691, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61568,15 +60184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 306, + "problemId": "d1.3", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3724, + "id": 2692, "result": { "type": "IOI", "score": [ @@ -61588,15 +60204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4009, + "id": 2693, "result": { "type": "IOI", "score": [ @@ -61608,19 +60224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 306, + "problemId": "d1.3", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4091, + "id": 2694, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61629,14 +60245,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 306, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4333, + "id": 2695, "result": { "type": "IOI", "score": [ @@ -61649,18 +60265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4685, + "id": 2696, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61668,15 +60284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.4", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4717, + "id": 2697, "result": { "type": "IOI", "score": [ @@ -61688,15 +60304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4812, + "id": 2698, "result": { "type": "IOI", "score": [ @@ -61709,14 +60325,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4877, + "id": 2699, "result": { "type": "IOI", "score": [ @@ -61728,19 +60344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4948, + "id": 2700, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61748,19 +60364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5134, + "id": 2701, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61768,19 +60384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5213, + "id": 2702, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61789,14 +60405,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5721, + "id": 2703, "result": { "type": "IOI", "score": [ @@ -61808,15 +60424,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, + "problemId": "d1.1", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5805, + "id": 2704, "result": { "type": "IOI", "score": [ @@ -61829,14 +60445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5829, + "id": 2705, "result": { "type": "IOI", "score": [ @@ -61849,14 +60465,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5909, + "id": 2706, "result": { "type": "IOI", "score": [ @@ -61869,14 +60485,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 306, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5956, + "id": 2707, "result": { "type": "IOI", "score": [ @@ -61888,79 +60504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6073, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6114, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7112, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, + "problemId": "d1.2", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7171, + "id": 2708, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -61969,14 +60525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7296, + "id": 2709, "result": { "type": "IOI", "score": [ @@ -61989,18 +60545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7329, + "id": 2710, "result": { "type": "IOI", "score": [ - 10.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62008,15 +60564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 306, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7543, + "id": 2711, "result": { "type": "IOI", "score": [ @@ -62029,14 +60585,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7587, + "id": 2712, "result": { "type": "IOI", "score": [ @@ -62048,19 +60604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 306, + "problemId": "d1.2", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7612, + "id": 2713, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62069,14 +60625,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 306, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9643, + "id": 2714, "result": { "type": "IOI", "score": [ @@ -62088,255 +60644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9693, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9726, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9801, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9888, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10582, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 306, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 108, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 353, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 458, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 475, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 553, - "result": { - "type": "IOI", - "score": [ - 50.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 595, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1402, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 294, + "problemId": "d1.2", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1593, + "id": 2715, "result": { "type": "IOI", "score": [ @@ -62349,98 +60665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1772, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2005, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2044, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 294, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3615, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3695, + "id": 2716, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62449,18 +60685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 294, + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4027, + "id": 2717, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62469,14 +60705,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 294, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4164, + "id": 2718, "result": { "type": "IOI", "score": [ @@ -62488,55 +60724,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4371, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 294, + "teamId": "144131", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4690, + "id": 2719, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5279, + "id": 2720, "result": { "type": "IOI", "score": [ @@ -62549,18 +60769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 294, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5329, + "id": 2721, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62568,19 +60788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5411, + "id": 2722, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62588,15 +60808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.2", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5713, + "id": 2723, "result": { "type": "IOI", "score": [ @@ -62609,74 +60829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5751, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7019, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7177, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7305, + "id": 2724, "result": { "type": "IOI", "score": [ @@ -62688,15 +60848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7418, + "id": 2725, "result": { "type": "IOI", "score": [ @@ -62708,15 +60868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7529, + "id": 2726, "result": { "type": "IOI", "score": [ @@ -62729,78 +60889,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 294, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7705, + "id": 2727, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7731, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7782, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7818, + "id": 2728, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62808,139 +60932,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7849, + "id": 2729, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8070, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8201, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8436, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9103, - "result": { - "type": "IOI", - "score": [ - 17.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 294, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9334, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9605, + "id": 2730, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62948,19 +60976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9847, + "id": 2731, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62968,19 +60996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10103, + "id": 2732, "result": { "type": "IOI", "score": [ - 51.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -62988,15 +61016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10208, + "id": 2733, "result": { "type": "IOI", "score": [ @@ -63008,19 +61036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10243, + "id": 2734, "result": { "type": "IOI", "score": [ - 46.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63028,19 +61056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10304, + "id": 2735, "result": { "type": "IOI", "score": [ - 46.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63049,18 +61077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 294, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10313, + "id": 2736, "result": { "type": "IOI", "score": [ - 51.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63068,19 +61096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10514, + "id": 2737, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63088,15 +61116,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144270", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11131, + "id": 2738, "result": { "type": "IOI", "score": [ @@ -63109,18 +61137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 294, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11291, + "id": 2739, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63129,14 +61157,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 294, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11298, + "id": 2740, "result": { "type": "IOI", "score": [ @@ -63149,18 +61177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 294, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11303, + "id": 2741, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63168,15 +61196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 294, + "problemId": "d1.1", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11712, + "id": 2742, "result": { "type": "IOI", "score": [ @@ -63189,18 +61217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 294, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11733, + "id": 2743, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63208,15 +61236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 294, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 110, + "id": 2744, "result": { "type": "IOI", "score": [ @@ -63229,18 +61257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 334, + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 468, + "id": 2745, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63248,15 +61276,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 660, + "id": 2746, "result": { "type": "IOI", "score": [ @@ -63269,34 +61297,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 690, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 739, + "id": 2747, "result": { "type": "IOI", "score": [ @@ -63308,19 +61316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 826, + "id": 2748, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63329,18 +61337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 866, + "id": 2749, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63349,18 +61357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1200, + "id": 2750, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63368,19 +61376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1577, + "id": 2751, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63388,19 +61396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1639, + "id": 2752, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63409,18 +61417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1662, + "id": 2753, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63428,19 +61436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1700, + "id": 2754, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63449,14 +61457,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1713, + "id": 2755, "result": { "type": "IOI", "score": [ @@ -63468,15 +61476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1721, + "id": 2756, "result": { "type": "IOI", "score": [ @@ -63488,19 +61496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1872, + "id": 2757, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63509,18 +61517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1891, + "id": 2758, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63529,14 +61537,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2210, + "id": 2759, "result": { "type": "IOI", "score": [ @@ -63549,18 +61557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2264, + "id": 2760, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63568,39 +61576,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3737, + "id": 2761, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3793, + "id": 2762, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63608,19 +61620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4065, + "id": 2763, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63628,19 +61640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4162, + "id": 2764, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63648,19 +61660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4183, + "id": 2765, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63668,39 +61680,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6078, + "id": 2766, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6232, + "id": 2767, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63708,15 +61724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6254, + "id": 2768, "result": { "type": "IOI", "score": [ @@ -63728,19 +61744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6273, + "id": 2769, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63748,19 +61764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6352, + "id": 2770, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63768,15 +61784,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6570, + "id": 2771, "result": { "type": "IOI", "score": [ @@ -63788,19 +61804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6621, + "id": 2772, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63808,19 +61824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6741, + "id": 2773, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63828,19 +61844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6860, + "id": 2774, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63848,19 +61864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6908, + "id": 2775, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63868,15 +61884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7064, + "id": 2776, "result": { "type": "IOI", "score": [ @@ -63888,19 +61904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7115, + "id": 2777, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63908,19 +61924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7220, + "id": 2778, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63928,19 +61944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7477, + "id": 2779, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63949,18 +61965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 334, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7632, + "id": 2780, "result": { "type": "IOI", "score": [ - 32.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -63969,14 +61985,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 334, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8502, + "id": 2781, "result": { "type": "IOI", "score": [ @@ -63989,18 +62005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 334, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8593, + "id": 2782, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64009,18 +62025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 334, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8714, + "id": 2783, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64029,138 +62045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9563, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9604, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9857, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9884, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9897, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10019, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 334, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10093, + "id": 2784, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64168,19 +62064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10152, + "id": 2785, "result": { "type": "IOI", "score": [ - 57.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64188,15 +62084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10170, + "id": 2786, "result": { "type": "IOI", "score": [ @@ -64208,19 +62104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10229, + "id": 2787, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64228,19 +62124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10241, + "id": 2788, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64248,19 +62144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10414, + "id": 2789, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64269,18 +62165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10498, + "id": 2790, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64288,19 +62184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10657, + "id": 2791, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64308,19 +62204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10669, + "id": 2792, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64328,19 +62224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10717, + "id": 2793, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64348,19 +62244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10830, + "id": 2794, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64368,19 +62264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10967, + "id": 2795, "result": { "type": "IOI", "score": [ - 22.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64388,19 +62284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11027, + "id": 2796, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64408,15 +62304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11351, + "id": 2797, "result": { "type": "IOI", "score": [ @@ -64429,18 +62325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11645, + "id": 2798, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64448,19 +62344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11754, + "id": 2799, "result": { "type": "IOI", "score": [ - 57.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64469,18 +62365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11767, + "id": 2800, "result": { "type": "IOI", "score": [ - 57.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64488,19 +62384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.4", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11782, + "id": 2801, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64508,19 +62404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11824, + "id": 2802, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64529,18 +62425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11851, + "id": 2803, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64548,19 +62444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11876, + "id": 2804, "result": { "type": "IOI", "score": [ - 57.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64569,18 +62465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11946, + "id": 2805, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64588,19 +62484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.3", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12035, + "id": 2806, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64608,19 +62504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12057, + "id": 2807, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64628,19 +62524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 334, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12075, + "id": 2808, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64649,18 +62545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12099, + "id": 2809, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64669,34 +62565,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 334, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 111, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 208, + "id": 2810, "result": { "type": "IOI", "score": [ @@ -64708,75 +62584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 248, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 306, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 524, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 75, + "problemId": "d1.1", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1759, + "id": 2811, "result": { "type": "IOI", "score": [ @@ -64788,15 +62604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1798, + "id": 2812, "result": { "type": "IOI", "score": [ @@ -64809,18 +62625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1886, + "id": 2813, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64828,15 +62644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1911, + "id": 2814, "result": { "type": "IOI", "score": [ @@ -64849,14 +62665,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1934, + "id": 2815, "result": { "type": "IOI", "score": [ @@ -64868,55 +62684,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1946, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2058, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3115, + "id": 2816, "result": { "type": "IOI", "score": [ @@ -64929,18 +62705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3135, + "id": 2817, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -64949,34 +62725,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3139, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3646, + "id": 2818, "result": { "type": "IOI", "score": [ @@ -64988,19 +62744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3841, + "id": 2819, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65009,18 +62765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3950, + "id": 2820, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65028,19 +62784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4512, + "id": 2821, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65049,14 +62805,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4626, + "id": 2822, "result": { "type": "IOI", "score": [ @@ -65068,15 +62824,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4665, + "id": 2823, "result": { "type": "IOI", "score": [ @@ -65089,14 +62845,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4733, + "id": 2824, "result": { "type": "IOI", "score": [ @@ -65109,14 +62865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4809, + "id": 2825, "result": { "type": "IOI", "score": [ @@ -65128,19 +62884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4848, + "id": 2826, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65148,19 +62904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4968, + "id": 2827, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65169,38 +62925,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5013, + "id": 2828, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5082, + "id": 2829, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65208,15 +62968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5239, + "id": 2830, "result": { "type": "IOI", "score": [ @@ -65228,15 +62988,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5272, + "id": 2831, "result": { "type": "IOI", "score": [ @@ -65248,19 +63008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5299, + "id": 2832, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65268,39 +63028,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5387, + "id": 2833, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5412, + "id": 2834, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65309,14 +63073,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5429, + "id": 2835, "result": { "type": "IOI", "score": [ @@ -65328,15 +63092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5471, + "id": 2836, "result": { "type": "IOI", "score": [ @@ -65349,38 +63113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5703, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5741, + "id": 2837, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65388,19 +63132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6112, + "id": 2838, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65408,15 +63152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6233, + "id": 2839, "result": { "type": "IOI", "score": [ @@ -65429,18 +63173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6282, + "id": 2840, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65449,18 +63193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6297, + "id": 2841, "result": { "type": "IOI", "score": [ - 25.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65468,19 +63212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6381, + "id": 2842, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65489,14 +63233,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6455, + "id": 2843, "result": { "type": "IOI", "score": [ @@ -65508,15 +63252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6497, + "id": 2844, "result": { "type": "IOI", "score": [ @@ -65529,34 +63273,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6533, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6585, + "id": 2845, "result": { "type": "IOI", "score": [ @@ -65568,15 +63292,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6640, + "id": 2846, "result": { "type": "IOI", "score": [ @@ -65589,14 +63313,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6695, + "id": 2847, "result": { "type": "IOI", "score": [ @@ -65609,58 +63333,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6725, + "id": 2848, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6750, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6839, + "id": 2849, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65668,19 +63376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6910, + "id": 2850, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65689,18 +63397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6931, + "id": 2851, "result": { "type": "IOI", "score": [ - 25.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65709,18 +63417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6950, + "id": 2852, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65728,19 +63436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7040, + "id": 2853, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65748,15 +63456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7050, + "id": 2854, "result": { "type": "IOI", "score": [ @@ -65769,18 +63477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7105, + "id": 2855, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65789,18 +63497,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7206, + "id": 2856, "result": { "type": "IOI", "score": [ - 25.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65808,19 +63516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7273, + "id": 2857, "result": { "type": "IOI", "score": [ - 25.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65828,19 +63536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7284, + "id": 2858, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65848,19 +63556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7325, + "id": 2859, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65869,18 +63577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7718, + "id": 2860, "result": { "type": "IOI", "score": [ - 35.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65888,19 +63596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8103, + "id": 2861, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65909,18 +63617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8164, + "id": 2862, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65928,19 +63636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9289, + "id": 2863, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65948,15 +63656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9644, + "id": 2864, "result": { "type": "IOI", "score": [ @@ -65969,18 +63677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 75, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9680, + "id": 2865, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -65989,18 +63697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 75, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9978, + "id": 2866, "result": { "type": "IOI", "score": [ - 47.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66008,19 +63716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10046, + "id": 2867, "result": { "type": "IOI", "score": [ - 47.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66028,15 +63736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10496, + "id": 2868, "result": { "type": "IOI", "score": [ @@ -66053,18 +63761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10539, + "id": 2869, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66073,58 +63781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10586, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10698, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10788, + "id": 2870, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66133,18 +63801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11262, + "id": 2871, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66152,19 +63820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11302, + "id": 2872, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66172,19 +63840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11449, + "id": 2873, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66193,18 +63861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11459, + "id": 2874, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66213,18 +63881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11468, + "id": 2875, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66232,19 +63900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11472, + "id": 2876, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66253,18 +63921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11497, + "id": 2877, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66272,19 +63940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11525, + "id": 2878, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66293,18 +63961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11551, + "id": 2879, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66313,38 +63981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11580, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 75, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11592, + "id": 2880, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66353,18 +64001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11638, + "id": 2881, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66372,19 +64020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.3", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11651, + "id": 2882, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66392,19 +64040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11666, + "id": 2883, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66413,18 +64061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 75, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11744, + "id": 2884, "result": { "type": "IOI", "score": [ - 48.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66432,19 +64080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11792, + "id": 2885, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66453,18 +64101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11872, + "id": 2886, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66472,19 +64120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11888, + "id": 2887, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66492,19 +64140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 75, + "problemId": "d1.2", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12016, + "id": 2888, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66512,19 +64160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 75, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12070, + "id": 2889, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66533,18 +64181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12102, + "id": 2890, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66553,58 +64201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 75, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 113, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 331, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 522, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 331, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 602, + "id": 2891, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66612,19 +64220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 331, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 762, + "id": 2892, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66632,19 +64240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 331, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 924, + "id": 2893, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66652,15 +64260,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 331, + "problemId": "d1.1", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 114, + "id": 2894, "result": { "type": "IOI", "score": [ @@ -66676,59 +64284,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 93, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 119, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 93, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 188, + "id": 2895, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 93, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 230, + "id": 2896, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66736,19 +64328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 93, + "problemId": "d1.3", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 384, + "id": 2897, "result": { "type": "IOI", "score": [ - 14.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66757,18 +64349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 93, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 800, + "id": 2898, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66777,18 +64369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 93, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 907, + "id": 2899, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66796,43 +64388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 93, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2719, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.2", - "teamId": 93, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2733, + "id": 2900, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66840,15 +64408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 93, + "problemId": "d1.3", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2747, + "id": 2901, "result": { "type": "IOI", "score": [ @@ -66860,15 +64428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 93, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2776, + "id": 2902, "result": { "type": "IOI", "score": [ @@ -66880,19 +64448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 93, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2877, + "id": 2903, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66900,19 +64468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 93, + "problemId": "d1.3", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3090, + "id": 2904, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66921,18 +64489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 93, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3312, + "id": 2905, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66940,15 +64508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 93, + "problemId": "d1.1", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4003, + "id": 2906, "result": { "type": "IOI", "score": [ @@ -66961,18 +64529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4048, + "id": 2907, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -66981,18 +64549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4093, + "id": 2908, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67000,15 +64568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4134, + "id": 2909, "result": { "type": "IOI", "score": [ @@ -67020,59 +64588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4262, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 93, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6812, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.1", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7302, + "id": 2910, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67080,39 +64608,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.2", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8617, + "id": 2911, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8666, + "id": 2912, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67120,19 +64652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8790, + "id": 2913, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67140,19 +64672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9965, + "id": 2914, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67160,19 +64692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 93, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10045, + "id": 2915, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67181,14 +64713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10216, + "id": 2916, "result": { "type": "IOI", "score": [ @@ -67201,18 +64733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10380, + "id": 2917, "result": { "type": "IOI", "score": [ - 16.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67221,18 +64753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10752, + "id": 2918, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67241,14 +64773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 93, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 115, + "id": 2919, "result": { "type": "IOI", "score": [ @@ -67260,15 +64792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 49, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 130, + "id": 2920, "result": { "type": "IOI", "score": [ @@ -67280,59 +64812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 49, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2753, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.4", - "teamId": 49, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2770, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 49, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2882, + "id": 2921, "result": { "type": "IOI", "score": [ - 23.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67341,7 +64833,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 49, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67361,14 +64853,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 49, + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4603, + "id": 2923, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144203", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2924, "result": { "type": "IOI", "score": [ @@ -67381,18 +64893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 49, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5529, + "id": 2925, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67400,19 +64912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 49, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11714, + "id": 2926, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67420,15 +64932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 49, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11760, + "id": 2927, "result": { "type": "IOI", "score": [ @@ -67440,19 +64952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 49, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 116, + "id": 2928, "result": { "type": "IOI", "score": [ - 50.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67460,19 +64972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 175, + "id": 2929, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67480,19 +64992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 316, + "id": 2930, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67500,15 +65012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 46, + "problemId": "d1.2", + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2798, + "id": 2931, "result": { "type": "IOI", "score": [ @@ -67520,19 +65032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 46, + "problemId": "d1.2", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2896, + "id": 2932, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67540,19 +65052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 46, + "problemId": "d1.2", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3913, + "id": 2933, "result": { "type": "IOI", "score": [ - 12.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67561,18 +65073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4239, + "id": 2934, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67581,34 +65093,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5340, + "id": 2935, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 46, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5593, + "id": 2936, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144408", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2937, "result": { "type": "IOI", "score": [ @@ -67621,18 +65157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 46, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5628, + "id": 2938, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67641,18 +65177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 46, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5666, + "id": 2939, "result": { "type": "IOI", "score": [ - 22.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67661,14 +65197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 46, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6566, + "id": 2940, "result": { "type": "IOI", "score": [ @@ -67680,19 +65216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6588, + "id": 2941, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67700,19 +65236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7097, + "id": 2942, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67720,19 +65256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7240, + "id": 2943, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67740,19 +65276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8781, + "id": 2944, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67760,19 +65296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8854, + "id": 2945, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67781,18 +65317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 46, + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9194, + "id": 2946, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67800,19 +65336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9735, + "id": 2947, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67820,19 +65356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9820, + "id": 2948, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67840,19 +65376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9927, + "id": 2949, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67860,19 +65396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10041, + "id": 2950, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67880,19 +65416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10077, + "id": 2951, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67900,43 +65436,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10158, + "id": 2952, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10213, + "id": 2953, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67944,19 +65476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10239, + "id": 2954, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67964,19 +65496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10409, + "id": 2955, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -67985,18 +65517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10459, + "id": 2956, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68005,18 +65537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10515, + "id": 2957, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68024,19 +65556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10611, + "id": 2958, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68044,19 +65576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10676, + "id": 2959, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68064,19 +65596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10748, + "id": 2960, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68084,19 +65616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.1", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10764, + "id": 2961, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68104,15 +65636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10861, + "id": 2962, "result": { "type": "IOI", "score": [ @@ -68125,18 +65657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11214, + "id": 2963, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68145,18 +65677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 46, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11326, + "id": 2964, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68164,19 +65696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11701, + "id": 2965, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68184,19 +65716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11816, + "id": 2966, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68205,18 +65737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 46, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11920, + "id": 2967, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68224,19 +65756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12090, + "id": 2968, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68244,19 +65776,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 46, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 117, + "id": 2969, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144296", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2970, + "result": { + "type": "IOI", + "score": [ + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68265,14 +65817,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 8, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1297, + "id": 2971, "result": { "type": "IOI", "score": [ @@ -68285,14 +65837,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1342, + "id": 2972, "result": { "type": "IOI", "score": [ @@ -68305,14 +65857,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1466, + "id": 2973, "result": { "type": "IOI", "score": [ @@ -68324,15 +65876,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1479, + "id": 2974, "result": { "type": "IOI", "score": [ @@ -68344,19 +65896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1535, + "id": 2975, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68364,19 +65916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.2", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1548, + "id": 2976, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68385,14 +65937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1669, + "id": 2977, "result": { "type": "IOI", "score": [ @@ -68405,14 +65957,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1678, + "id": 2978, "result": { "type": "IOI", "score": [ @@ -68424,19 +65976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1752, + "id": 2979, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68444,19 +65996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1783, + "id": 2980, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68464,15 +66016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1905, + "id": 2981, "result": { "type": "IOI", "score": [ @@ -68485,14 +66037,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1939, + "id": 2982, "result": { "type": "IOI", "score": [ @@ -68504,15 +66056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1973, + "id": 2983, "result": { "type": "IOI", "score": [ @@ -68524,39 +66076,63 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2110, + "id": 2984, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144452", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2985, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2116, + "id": 2986, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68564,15 +66140,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2196, + "id": 2987, "result": { "type": "IOI", "score": [ @@ -68585,14 +66161,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2508, + "id": 2988, "result": { "type": "IOI", "score": [ @@ -68604,19 +66180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2594, + "id": 2989, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68624,15 +66200,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2698, + "id": 2990, "result": { "type": "IOI", "score": [ @@ -68645,18 +66221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 8, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3295, + "id": 2991, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68664,19 +66240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3544, + "id": 2992, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68684,35 +66260,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5963, + "id": 2993, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 8, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7089, + "id": 2994, + "result": { + "type": "IOI", + "score": [ + 21.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144485", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 2995, "result": { "type": "IOI", "score": [ @@ -68724,15 +66324,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 8, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7168, + "id": 2996, "result": { "type": "IOI", "score": [ @@ -68744,19 +66344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7213, + "id": 2997, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68764,19 +66364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7397, + "id": 2998, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68784,19 +66384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 8, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7475, + "id": 2999, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68805,18 +66405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 8, + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7560, + "id": 3000, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68825,18 +66425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 8, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9572, + "id": 3001, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68845,14 +66445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9838, + "id": 3002, "result": { "type": "IOI", "score": [ @@ -68864,19 +66464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9875, + "id": 3003, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68885,18 +66485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9962, + "id": 3004, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68905,18 +66505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10031, + "id": 3005, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68924,19 +66524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10171, + "id": 3006, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68944,19 +66544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10249, + "id": 3007, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -68964,15 +66564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10293, + "id": 3008, "result": { "type": "IOI", "score": [ @@ -68985,14 +66585,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10302, + "id": 3009, "result": { "type": "IOI", "score": [ @@ -69005,18 +66605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10311, + "id": 3010, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69025,18 +66625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10422, + "id": 3011, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69045,18 +66645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10556, + "id": 3012, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69065,18 +66665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10598, + "id": 3013, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69084,19 +66684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10680, + "id": 3014, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69104,19 +66704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10977, + "id": 3015, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69124,19 +66724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11089, + "id": 3016, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69145,18 +66745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11098, + "id": 3017, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69164,19 +66764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11108, + "id": 3018, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69184,19 +66784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11115, + "id": 3019, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69204,19 +66804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11360, + "id": 3020, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69224,19 +66824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11370, + "id": 3021, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69245,18 +66845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11378, + "id": 3022, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69264,19 +66864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11388, + "id": 3023, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69284,19 +66884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11400, + "id": 3024, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69304,19 +66904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11413, + "id": 3025, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69324,19 +66924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11430, + "id": 3026, "result": { "type": "IOI", "score": [ - 31.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69344,19 +66944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11441, + "id": 3027, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69364,19 +66964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11452, + "id": 3028, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69384,19 +66984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11843, + "id": 3029, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69404,19 +67004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11865, + "id": 3030, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69424,19 +67024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11884, + "id": 3031, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69444,19 +67044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11901, + "id": 3032, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69465,18 +67065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11918, + "id": 3033, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69484,19 +67084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11934, + "id": 3034, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69505,18 +67105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11944, + "id": 3035, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69525,18 +67125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 8, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11961, + "id": 3036, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69544,19 +67144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.1", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11974, + "id": 3037, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69564,15 +67164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 8, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 121, + "id": 3038, "result": { "type": "IOI", "score": [ @@ -69584,15 +67184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 193, + "id": 3039, "result": { "type": "IOI", "score": [ @@ -69604,19 +67204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 538, + "id": 3040, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69625,14 +67225,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 580, + "id": 3041, "result": { "type": "IOI", "score": [ @@ -69644,19 +67244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 591, + "id": 3042, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69664,19 +67264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 697, + "id": 3043, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69685,18 +67285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 754, + "id": 3044, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69704,15 +67304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 778, + "id": 3045, "result": { "type": "IOI", "score": [ @@ -69724,19 +67324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 836, + "id": 3046, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69744,19 +67344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 975, + "id": 3047, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69765,18 +67365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1101, + "id": 3048, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69785,14 +67385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3894, + "id": 3049, "result": { "type": "IOI", "score": [ @@ -69804,19 +67404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4860, + "id": 3050, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69824,19 +67424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5152, + "id": 3051, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69844,19 +67444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6019, + "id": 3052, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69864,15 +67464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6069, + "id": 3053, "result": { "type": "IOI", "score": [ @@ -69885,38 +67485,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 281, + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6123, + "id": 3054, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 281, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6157, + "id": 3055, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69924,19 +67528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6249, + "id": 3056, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69945,18 +67549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 281, + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6821, + "id": 3057, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69964,19 +67568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7056, + "id": 3058, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -69985,18 +67589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7131, + "id": 3059, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70004,19 +67608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7181, + "id": 3060, "result": { "type": "IOI", "score": [ - 25.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70024,19 +67628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7409, + "id": 3061, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70045,18 +67649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7497, + "id": 3062, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70065,18 +67669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 281, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7547, + "id": 3063, "result": { "type": "IOI", "score": [ - 25.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70084,15 +67688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 281, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9987, + "id": 3064, "result": { "type": "IOI", "score": [ @@ -70105,14 +67709,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10116, + "id": 3065, "result": { "type": "IOI", "score": [ @@ -70124,15 +67728,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144502", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3066, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10482, + "id": 3067, "result": { "type": "IOI", "score": [ @@ -70145,14 +67769,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10648, + "id": 3068, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144331", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3069, "result": { "type": "IOI", "score": [ @@ -70165,38 +67809,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10885, + "id": 3070, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10909, + "id": 3071, "result": { "type": "IOI", "score": [ @@ -70209,14 +67849,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11519, + "id": 3072, "result": { "type": "IOI", "score": [ @@ -70229,18 +67869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11727, + "id": 3073, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70249,14 +67889,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12119, + "id": 3074, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144369", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3075, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144254", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3076, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144406", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3077, "result": { "type": "IOI", "score": [ @@ -70269,14 +67969,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12120, + "id": 3078, "result": { "type": "IOI", "score": [ @@ -70288,19 +67988,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144313", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3079, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 281, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 122, + "id": 3080, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70308,19 +68028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 150, + "id": 3081, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70328,19 +68048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 157, + "id": 3082, "result": { "type": "IOI", "score": [ - 12.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70348,19 +68068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 170, + "id": 3083, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70368,19 +68088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 184, + "id": 3084, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70388,19 +68108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 226, + "id": 3085, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70408,43 +68128,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 341, + "id": 3086, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 345, + "id": 3087, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70453,18 +68169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 373, + "id": 3088, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70472,19 +68188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 410, + "id": 3089, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70493,18 +68209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 422, + "id": 3090, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70512,15 +68228,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 488, + "id": 3091, + "result": { + "type": "IOI", + "score": [ + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144130", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3092, "result": { "type": "IOI", "score": [ @@ -70532,19 +68268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 513, + "id": 3093, "result": { "type": "IOI", "score": [ - 37.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70552,19 +68288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 563, + "id": 3094, "result": { "type": "IOI", "score": [ - 37.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70573,14 +68309,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 569, + "id": 3095, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144354", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3096, "result": { "type": "IOI", "score": [ @@ -70593,14 +68349,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 601, + "id": 3097, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144386", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3098, + "result": { + "type": "IOI", + "score": [ + 67.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144353", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3099, "result": { "type": "IOI", "score": [ @@ -70613,14 +68409,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 625, + "id": 3100, "result": { "type": "IOI", "score": [ @@ -70632,19 +68428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 683, + "id": 3101, "result": { "type": "IOI", "score": [ - 37.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70653,14 +68449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 835, + "id": 3102, "result": { "type": "IOI", "score": [ @@ -70672,15 +68468,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 935, + "id": 3103, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144323", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3104, "result": { "type": "IOI", "score": [ @@ -70693,14 +68509,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1146, + "id": 3105, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144480", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3106, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144436", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3107, "result": { "type": "IOI", "score": [ @@ -70712,19 +68568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1311, + "id": 3108, "result": { "type": "IOI", "score": [ - 37.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70732,19 +68588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1347, + "id": 3109, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70752,15 +68608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2596, + "id": 3110, "result": { "type": "IOI", "score": [ @@ -70772,15 +68628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2597, + "id": 3111, "result": { "type": "IOI", "score": [ @@ -70792,15 +68648,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144291", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3112, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 443, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2835, + "id": 3113, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144423", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3114, "result": { "type": "IOI", "score": [ @@ -70812,19 +68708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2904, + "id": 3115, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70832,19 +68728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3042, + "id": 3116, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70852,15 +68748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3569, + "id": 3117, "result": { "type": "IOI", "score": [ @@ -70873,18 +68769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 443, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3830, + "id": 3118, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70892,19 +68788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4129, + "id": 3119, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70912,19 +68808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4202, + "id": 3120, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70932,19 +68828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 443, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4286, + "id": 3121, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70953,18 +68849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 443, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4436, + "id": 3122, "result": { "type": "IOI", "score": [ - 50.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70972,19 +68868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 443, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4507, + "id": 3123, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -70992,63 +68888,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5832, + "id": 3124, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 443, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5885, + "id": 3125, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 443, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5933, + "id": 3126, "result": { "type": "IOI", "score": [ @@ -71061,18 +68949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 443, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6029, + "id": 3127, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71080,19 +68968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 443, + "problemId": "d1.1", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6412, + "id": 3128, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71100,19 +68988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 443, + "problemId": "d1.1", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6661, + "id": 3129, "result": { "type": "IOI", "score": [ - 16.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71120,19 +69008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6680, + "id": 3130, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71140,15 +69028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6693, + "id": 3131, "result": { "type": "IOI", "score": [ @@ -71160,19 +69048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 443, + "problemId": "d1.2", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7141, + "id": 3132, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71181,14 +69069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 443, + "teamId": "144505", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7843, + "id": 3133, "result": { "type": "IOI", "score": [ @@ -71201,18 +69089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7891, + "id": 3134, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71220,19 +69108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8230, + "id": 3135, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71240,19 +69128,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8715, + "id": 3136, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144155", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3137, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144380", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3138, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144481", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3139, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71261,18 +69209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 443, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9408, + "id": 3140, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71281,14 +69229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 443, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10417, + "id": 3141, "result": { "type": "IOI", "score": [ @@ -71300,15 +69248,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10607, + "id": 3142, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3143, "result": { "type": "IOI", "score": [ @@ -71320,15 +69288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10798, + "id": 3144, "result": { "type": "IOI", "score": [ @@ -71341,14 +69309,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 443, + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11340, + "id": 3145, + "result": { + "type": "IOI", + "score": [ + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144130", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3146, "result": { "type": "IOI", "score": [ @@ -71360,15 +69348,95 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.4", + "teamId": "144505", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3147, + "result": { + "type": "IOI", + "score": [ + 67.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144448", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3148, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144235", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3149, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144392", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3150, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 443, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11654, + "id": 3151, "result": { "type": "IOI", "score": [ @@ -71380,15 +69448,95 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144074", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3152, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 443, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12085, + "id": 3153, + "result": { + "type": "IOI", + "score": [ + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144150", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3154, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144282", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3155, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144123", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3156, "result": { "type": "IOI", "score": [ @@ -71400,15 +69548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 443, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 123, + "id": 3157, "result": { "type": "IOI", "score": [ @@ -71421,14 +69569,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 99, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 205, + "id": 3158, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3159, "result": { "type": "IOI", "score": [ @@ -71440,15 +69608,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 212, + "id": 3160, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144255", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3161, "result": { "type": "IOI", "score": [ @@ -71460,15 +69648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 251, + "id": 3162, "result": { "type": "IOI", "score": [ @@ -71480,15 +69668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 259, + "id": 3163, "result": { "type": "IOI", "score": [ @@ -71500,43 +69688,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 270, + "id": 3164, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 99, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 277, + "id": 3165, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71544,19 +69728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 311, + "id": 3166, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71564,15 +69748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 343, + "id": 3167, "result": { "type": "IOI", "score": [ @@ -71585,18 +69769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 99, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 376, + "id": 3168, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71604,15 +69788,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 379, + "id": 3169, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144312", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3170, "result": { "type": "IOI", "score": [ @@ -71624,15 +69828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 395, + "id": 3171, "result": { "type": "IOI", "score": [ @@ -71645,18 +69849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 99, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 419, + "id": 3172, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71664,15 +69868,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1439, + "id": 3173, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144241", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3174, "result": { "type": "IOI", "score": [ @@ -71685,18 +69909,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1508, + "id": 3175, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71705,14 +69929,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2726, + "id": 3176, "result": { "type": "IOI", "score": [ @@ -71725,18 +69949,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2763, + "id": 3177, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144271", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3178, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71745,18 +69989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2816, + "id": 3179, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71765,14 +70009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2878, + "id": 3180, "result": { "type": "IOI", "score": [ @@ -71784,8 +70028,228 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144488", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3181, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144118", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3182, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144359", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3183, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144247", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3184, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144093", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3185, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144419", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3186, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144223", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3187, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144502", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3188, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144395", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3189, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144313", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3190, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144377", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3191, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71805,14 +70269,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3689, + "id": 3193, "result": { "type": "IOI", "score": [ @@ -71825,18 +70289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3716, + "id": 3194, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71844,19 +70308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3799, + "id": 3195, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71864,19 +70328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3854, + "id": 3196, "result": { "type": "IOI", "score": [ - 0.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71884,43 +70348,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4071, + "id": 3197, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4083, + "id": 3198, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71928,19 +70388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4140, + "id": 3199, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71949,18 +70409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4266, + "id": 3200, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71969,18 +70429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4441, + "id": 3201, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -71989,18 +70449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 99, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5096, + "id": 3202, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72009,18 +70469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 99, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5175, + "id": 3203, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72028,15 +70488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5235, + "id": 3204, "result": { "type": "IOI", "score": [ @@ -72049,18 +70509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 99, + "teamId": "144505", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5286, + "id": 3205, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72068,19 +70528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5344, + "id": 3206, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72089,18 +70549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 99, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5361, + "id": 3207, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72108,43 +70568,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.1", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5430, + "id": 3208, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5435, + "id": 3209, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72152,19 +70608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5484, + "id": 3210, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72172,19 +70628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5605, + "id": 3211, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72192,19 +70648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5811, + "id": 3212, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72212,15 +70668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.2", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5988, + "id": 3213, "result": { "type": "IOI", "score": [ @@ -72232,19 +70688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.1", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6086, + "id": 3214, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72253,14 +70709,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 99, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6203, + "id": 3215, "result": { "type": "IOI", "score": [ @@ -72272,19 +70728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6386, + "id": 3216, "result": { "type": "IOI", "score": [ - 61.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72292,19 +70748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6664, + "id": 3217, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72312,15 +70768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8702, + "id": 3218, "result": { "type": "IOI", "score": [ @@ -72332,15 +70788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9077, + "id": 3219, "result": { "type": "IOI", "score": [ @@ -72352,19 +70808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9205, + "id": 3220, "result": { "type": "IOI", "score": [ - 47.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72372,19 +70828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9278, + "id": 3221, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72393,38 +70849,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9618, + "id": 3222, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9933, + "id": 3223, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72432,19 +70892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9991, + "id": 3224, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72452,15 +70912,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10198, + "id": 3225, "result": { "type": "IOI", "score": [ @@ -72472,19 +70932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10295, + "id": 3226, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72492,19 +70952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.1", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10512, + "id": 3227, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72512,19 +70972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10951, + "id": 3228, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72532,15 +70992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11193, + "id": 3229, "result": { "type": "IOI", "score": [ @@ -72552,19 +71012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11206, + "id": 3230, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72573,14 +71033,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11828, + "id": 3231, "result": { "type": "IOI", "score": [ @@ -72593,18 +71053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11854, + "id": 3232, "result": { "type": "IOI", "score": [ - 31.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72612,19 +71072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 99, + "problemId": "d1.4", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11997, + "id": 3233, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72633,14 +71093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 99, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 125, + "id": 3234, "result": { "type": "IOI", "score": [ @@ -72653,18 +71113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 152, + "id": 3235, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72673,18 +71133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 174, + "id": 3236, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72692,15 +71152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.1", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 228, + "id": 3237, "result": { "type": "IOI", "score": [ @@ -72712,19 +71172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.1", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 273, + "id": 3238, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72732,15 +71192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 329, + "id": 3239, "result": { "type": "IOI", "score": [ @@ -72753,18 +71213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 338, + "id": 3240, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72772,15 +71232,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 506, + "id": 3241, "result": { "type": "IOI", "score": [ @@ -72793,18 +71253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1554, + "id": 3242, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72812,19 +71272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1719, + "id": 3243, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72833,14 +71293,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1836, + "id": 3244, "result": { "type": "IOI", "score": [ @@ -72852,19 +71312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1937, + "id": 3245, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72872,19 +71332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.4", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1943, + "id": 3246, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72893,18 +71353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 333, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2422, + "id": 3247, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72912,19 +71372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.4", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2485, + "id": 3248, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72932,19 +71392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 333, + "problemId": "d1.2", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4169, + "id": 3249, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72952,19 +71412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 333, + "problemId": "d1.1", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4461, + "id": 3250, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72972,19 +71432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4768, + "id": 3251, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -72992,39 +71452,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5975, + "id": 3252, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 333, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6845, + "id": 3253, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73032,19 +71496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.4", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6902, + "id": 3254, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73052,15 +71516,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8284, + "id": 3255, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144170", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3256, "result": { "type": "IOI", "score": [ @@ -73072,19 +71556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8322, + "id": 3257, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73092,19 +71576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.2", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8354, + "id": 3258, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73112,15 +71596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10201, + "id": 3259, "result": { "type": "IOI", "score": [ @@ -73132,39 +71616,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10366, + "id": 3260, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 333, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10808, + "id": 3261, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73172,15 +71660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11024, + "id": 3262, "result": { "type": "IOI", "score": [ @@ -73193,14 +71681,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 333, + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11077, + "id": 3263, "result": { "type": "IOI", "score": [ @@ -73212,19 +71700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11194, + "id": 3264, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73233,18 +71721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 333, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11361, + "id": 3265, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73252,15 +71740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 333, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11436, + "id": 3266, "result": { "type": "IOI", "score": [ @@ -73273,18 +71761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 333, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 126, + "id": 3267, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73292,19 +71780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 378, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2566, + "id": 3268, "result": { "type": "IOI", "score": [ - 67.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73312,19 +71800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2867, + "id": 3269, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73333,18 +71821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 378, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3147, + "id": 3270, "result": { "type": "IOI", "score": [ - 67.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73352,19 +71840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3461, + "id": 3271, "result": { "type": "IOI", "score": [ - 67.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73372,19 +71860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3785, + "id": 3272, "result": { "type": "IOI", "score": [ - 67.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73392,19 +71880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3850, + "id": 3273, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73412,19 +71900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4545, + "id": 3274, "result": { "type": "IOI", "score": [ - 100.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73432,19 +71920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5040, + "id": 3275, "result": { "type": "IOI", "score": [ - 100.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73452,19 +71940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7819, + "id": 3276, "result": { "type": "IOI", "score": [ - 25.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73472,19 +71960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8200, + "id": 3277, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73492,19 +71980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144112", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9100, + "id": 3278, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73513,18 +72001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 378, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9422, + "id": 3279, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73532,19 +72020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10204, + "id": 3280, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73552,19 +72040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 378, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10365, + "id": 3281, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73573,18 +72061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 378, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10621, + "id": 3282, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73592,19 +72080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.2", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10664, + "id": 3283, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73612,19 +72100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.1", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10880, + "id": 3284, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73632,19 +72120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.1", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11228, + "id": 3285, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73652,19 +72140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 378, + "problemId": "d1.4", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11482, + "id": 3286, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73673,18 +72161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 378, + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 127, + "id": 3287, "result": { "type": "IOI", "score": [ - 0.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73692,19 +72180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 129, + "id": 3288, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73712,19 +72200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 166, + "id": 3289, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73732,19 +72220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 412, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 181, + "id": 3290, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73753,18 +72241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 412, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 201, + "id": 3291, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73772,19 +72260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 214, + "id": 3292, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73792,19 +72280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 605, + "id": 3293, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73813,18 +72301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 412, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 665, + "id": 3294, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73833,18 +72321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 412, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1452, + "id": 3295, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73852,19 +72340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 412, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1766, + "id": 3296, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73872,15 +72360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3368, + "id": 3297, "result": { "type": "IOI", "score": [ @@ -73897,14 +72385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3376, + "id": 3298, "result": { "type": "IOI", "score": [ @@ -73916,19 +72404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3515, + "id": 3299, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73936,19 +72424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3574, + "id": 3300, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73956,19 +72444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4229, + "id": 3301, "result": { "type": "IOI", "score": [ - 100.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -73977,14 +72465,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 412, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4765, + "id": 3302, "result": { "type": "IOI", "score": [ @@ -73997,14 +72485,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4792, + "id": 3303, "result": { "type": "IOI", "score": [ @@ -74017,14 +72505,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4821, + "id": 3304, "result": { "type": "IOI", "score": [ @@ -74036,15 +72524,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4963, + "id": 3305, "result": { "type": "IOI", "score": [ @@ -74057,14 +72545,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4988, + "id": 3306, "result": { "type": "IOI", "score": [ @@ -74077,18 +72565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5021, + "id": 3307, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74096,19 +72584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5338, + "id": 3308, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74116,15 +72604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8378, + "id": 3309, "result": { "type": "IOI", "score": [ @@ -74136,19 +72624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8404, + "id": 3310, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74157,18 +72645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 412, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9286, + "id": 3311, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74177,18 +72665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9350, + "id": 3312, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74196,19 +72684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.2", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9459, + "id": 3313, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74216,15 +72704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9535, + "id": 3314, "result": { "type": "IOI", "score": [ @@ -74237,18 +72725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10309, + "id": 3315, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74257,18 +72745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10370, + "id": 3316, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74276,19 +72764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.2", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10846, + "id": 3317, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74297,14 +72785,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 412, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11536, + "id": 3318, "result": { "type": "IOI", "score": [ @@ -74316,19 +72804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.1", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12063, + "id": 3319, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74336,19 +72824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 412, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 128, + "id": 3320, "result": { "type": "IOI", "score": [ - 27.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74357,18 +72845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 438, + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 289, + "id": 3321, "result": { "type": "IOI", "score": [ - 100.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74377,18 +72865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 438, + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 857, + "id": 3322, "result": { "type": "IOI", "score": [ - 31.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74396,15 +72884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1039, + "id": 3323, "result": { "type": "IOI", "score": [ @@ -74417,18 +72905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1068, + "id": 3324, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74436,15 +72924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.1", + "teamId": "144447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2550, + "id": 3325, "result": { "type": "IOI", "score": [ @@ -74457,14 +72945,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2913, + "id": 3326, "result": { "type": "IOI", "score": [ @@ -74477,18 +72965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2998, + "id": 3327, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74496,19 +72984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3041, + "id": 3328, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74516,15 +73004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.1", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3081, + "id": 3329, "result": { "type": "IOI", "score": [ @@ -74536,15 +73024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3273, + "id": 3330, "result": { "type": "IOI", "score": [ @@ -74556,19 +73044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3342, + "id": 3331, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74577,18 +73065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3717, + "id": 3332, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74596,19 +73084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.2", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3976, + "id": 3333, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74617,14 +73105,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 438, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4384, + "id": 3334, "result": { "type": "IOI", "score": [ @@ -74636,15 +73124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 438, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4532, + "id": 3335, "result": { "type": "IOI", "score": [ @@ -74657,18 +73145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 438, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4745, + "id": 3336, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74677,14 +73165,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 438, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4880, + "id": 3337, "result": { "type": "IOI", "score": [ @@ -74697,38 +73185,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 438, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4996, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 438, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5006, + "id": 3338, "result": { "type": "IOI", "score": [ @@ -74741,42 +73205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 438, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5174, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 438, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5197, + "id": 3339, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74784,19 +73224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 438, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5314, + "id": 3340, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74804,19 +73244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 438, + "problemId": "d1.2", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5670, + "id": 3341, "result": { "type": "IOI", "score": [ - 16.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74825,18 +73265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 438, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5725, + "id": 3342, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74844,19 +73284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 438, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5822, + "id": 3343, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74864,15 +73304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6213, + "id": 3344, "result": { "type": "IOI", "score": [ @@ -74885,18 +73325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 438, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7337, + "id": 3345, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74904,19 +73344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7462, + "id": 3346, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74924,15 +73364,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7659, + "id": 3347, "result": { "type": "IOI", "score": [ @@ -74944,15 +73384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7881, + "id": 3348, "result": { "type": "IOI", "score": [ @@ -74964,19 +73404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7984, + "id": 3349, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -74984,19 +73424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8078, + "id": 3350, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75005,18 +73445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8305, + "id": 3351, "result": { "type": "IOI", "score": [ - 20.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75024,19 +73464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8492, + "id": 3352, "result": { "type": "IOI", "score": [ - 20.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75044,19 +73484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8589, + "id": 3353, "result": { "type": "IOI", "score": [ - 20.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75064,19 +73504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8632, + "id": 3354, "result": { "type": "IOI", "score": [ - 20.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75085,18 +73525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8735, + "id": 3355, "result": { "type": "IOI", "score": [ - 57.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75104,19 +73544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9046, + "id": 3356, "result": { "type": "IOI", "score": [ - 69.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75125,18 +73565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 438, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9924, + "id": 3357, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75144,19 +73584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10435, + "id": 3358, "result": { "type": "IOI", "score": [ - 25.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75164,19 +73604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10599, + "id": 3359, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75185,14 +73625,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 438, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10633, + "id": 3360, "result": { "type": "IOI", "score": [ @@ -75204,19 +73644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10730, + "id": 3361, "result": { "type": "IOI", "score": [ - 37.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75224,19 +73664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10845, + "id": 3362, "result": { "type": "IOI", "score": [ - 37.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75244,19 +73684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 438, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 131, + "id": 3363, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75264,19 +73704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 919, + "id": 3364, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75284,19 +73724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 111, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1873, + "id": 3365, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75304,15 +73744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2452, + "id": 3366, "result": { "type": "IOI", "score": [ @@ -75325,18 +73765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 111, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2543, + "id": 3367, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75345,14 +73785,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 111, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2766, + "id": 3368, "result": { "type": "IOI", "score": [ @@ -75368,15 +73808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2794, + "id": 3369, "result": { "type": "IOI", "score": [ @@ -75388,35 +73828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 111, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2860, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3001, + "id": 3370, "result": { "type": "IOI", "score": [ @@ -75428,59 +73848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 111, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3010, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 111, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3972, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 111, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4078, + "id": 3371, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75489,18 +73869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 111, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4303, + "id": 3372, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75509,18 +73889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 111, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4577, + "id": 3373, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75529,18 +73909,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 111, + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4620, + "id": 3374, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75548,15 +73928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5170, + "id": 3375, "result": { "type": "IOI", "score": [ @@ -75569,14 +73949,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5225, + "id": 3376, "result": { "type": "IOI", "score": [ @@ -75589,18 +73969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5330, + "id": 3377, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75609,18 +73989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5407, + "id": 3378, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75628,19 +74008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.4", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5468, + "id": 3379, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75649,18 +74029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7034, + "id": 3380, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75668,19 +74048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7951, + "id": 3381, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75689,18 +74069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8090, + "id": 3382, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75708,19 +74088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8124, + "id": 3383, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75728,19 +74108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.2", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8260, + "id": 3384, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75748,19 +74128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8367, + "id": 3385, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75768,19 +74148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8451, + "id": 3386, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75789,18 +74169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8701, + "id": 3387, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75808,19 +74188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 111, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8791, + "id": 3388, "result": { "type": "IOI", "score": [ - 47.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75828,43 +74208,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 111, + "problemId": "d1.4", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10096, + "id": 3389, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 111, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10122, + "id": 3390, "result": { "type": "IOI", "score": [ - 69.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75873,18 +74249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 111, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10211, + "id": 3391, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75892,19 +74268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 111, + "problemId": "d1.2", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10268, + "id": 3392, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75912,19 +74288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 111, + "problemId": "d1.2", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10410, + "id": 3393, "result": { "type": "IOI", "score": [ - 67.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -75933,34 +74309,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 111, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11278, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 111, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 132, + "id": 3394, "result": { "type": "IOI", "score": [ @@ -75972,15 +74328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 239, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 250, + "id": 3395, "result": { "type": "IOI", "score": [ @@ -75992,15 +74348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 239, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 297, + "id": 3396, "result": { "type": "IOI", "score": [ @@ -76012,19 +74368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 239, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 333, + "id": 3397, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76032,55 +74388,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 239, + "problemId": "d1.1", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 388, + "id": 3398, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 411, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1350, + "id": 3399, "result": { "type": "IOI", "score": [ @@ -76092,15 +74432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.3", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1647, + "id": 3400, "result": { "type": "IOI", "score": [ @@ -76113,34 +74453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 239, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1785, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1880, + "id": 3401, "result": { "type": "IOI", "score": [ @@ -76153,114 +74473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1892, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1935, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2738, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 239, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3003, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4755, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4916, + "id": 3402, "result": { "type": "IOI", "score": [ @@ -76273,14 +74493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 239, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5571, + "id": 3403, "result": { "type": "IOI", "score": [ @@ -76293,34 +74513,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5657, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 239, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6106, + "id": 3404, "result": { "type": "IOI", "score": [ @@ -76333,14 +74533,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 239, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6219, + "id": 3405, "result": { "type": "IOI", "score": [ @@ -76352,79 +74552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6294, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6334, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 239, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6441, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7369, + "id": 3406, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76432,39 +74572,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.4", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10407, + "id": 3407, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10450, + "id": 3408, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76472,15 +74616,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10733, + "id": 3409, "result": { "type": "IOI", "score": [ @@ -76492,15 +74636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10817, + "id": 3410, "result": { "type": "IOI", "score": [ @@ -76513,18 +74657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 239, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11176, + "id": 3411, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76532,15 +74676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11266, + "id": 3412, "result": { "type": "IOI", "score": [ @@ -76552,15 +74696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11301, + "id": 3413, "result": { "type": "IOI", "score": [ @@ -76573,18 +74717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 239, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11464, + "id": 3414, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76592,19 +74736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11505, + "id": 3415, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76613,18 +74757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 239, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11579, + "id": 3416, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76632,19 +74776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11594, + "id": 3417, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76652,15 +74796,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 239, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 136, + "id": 3418, "result": { "type": "IOI", "score": [ @@ -76672,15 +74816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 90, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1084, + "id": 3419, "result": { "type": "IOI", "score": [ @@ -76692,19 +74836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 90, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1263, + "id": 3420, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76712,19 +74856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 90, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1834, + "id": 3421, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76732,15 +74876,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 90, + "problemId": "d1.3", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4305, + "id": 3422, "result": { "type": "IOI", "score": [ @@ -76752,15 +74896,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 90, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4372, + "id": 3423, "result": { "type": "IOI", "score": [ @@ -76773,18 +74917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 90, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4413, + "id": 3424, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76793,14 +74937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 90, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8631, + "id": 3425, "result": { "type": "IOI", "score": [ @@ -76812,19 +74956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 90, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8697, + "id": 3426, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76832,19 +74976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 90, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8728, + "id": 3427, "result": { "type": "IOI", "score": [ - 0.0 + 70.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76853,18 +74997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 90, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8842, + "id": 3428, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76872,15 +75016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 90, + "problemId": "d1.3", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8876, + "id": 3429, "result": { "type": "IOI", "score": [ @@ -76892,15 +75036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 90, + "problemId": "d1.4", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8972, + "id": 3430, "result": { "type": "IOI", "score": [ @@ -76913,18 +75057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 90, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9891, + "id": 3431, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -76932,15 +75076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 90, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10289, + "id": 3432, "result": { "type": "IOI", "score": [ @@ -76953,38 +75097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 90, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10820, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 90, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10911, + "id": 3433, "result": { "type": "IOI", "score": [ @@ -76997,14 +75117,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 90, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11305, + "id": 3434, "result": { "type": "IOI", "score": [ @@ -77017,18 +75137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 90, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11667, + "id": 3435, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77036,19 +75156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 90, + "problemId": "d1.2", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11971, + "id": 3436, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77056,19 +75176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 90, + "problemId": "d1.2", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 137, + "id": 3437, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77077,18 +75197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 48, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 146, + "id": 3438, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77096,19 +75216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 269, + "id": 3439, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77116,19 +75236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 597, + "id": 3440, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77137,14 +75257,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 48, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 608, + "id": 3441, "result": { "type": "IOI", "score": [ @@ -77157,18 +75277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 808, + "id": 3442, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77176,15 +75296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 870, + "id": 3443, "result": { "type": "IOI", "score": [ @@ -77197,18 +75317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 889, + "id": 3444, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77216,19 +75336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1016, + "id": 3445, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77236,19 +75356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1037, + "id": 3446, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77256,15 +75376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1243, + "id": 3447, "result": { "type": "IOI", "score": [ @@ -77277,14 +75397,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1276, + "id": 3448, "result": { "type": "IOI", "score": [ @@ -77297,18 +75417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1349, + "id": 3449, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77316,15 +75436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2707, + "id": 3450, "result": { "type": "IOI", "score": [ @@ -77336,19 +75456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2910, + "id": 3451, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77357,14 +75477,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 48, + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3181, + "id": 3452, "result": { "type": "IOI", "score": [ @@ -77377,14 +75497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 48, + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5672, + "id": 3453, "result": { "type": "IOI", "score": [ @@ -77397,14 +75517,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 48, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6462, + "id": 3454, "result": { "type": "IOI", "score": [ @@ -77417,18 +75537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6630, + "id": 3455, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77436,19 +75556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7035, + "id": 3456, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77456,43 +75576,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7836, + "id": 3457, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7865, + "id": 3458, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77500,15 +75616,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.1", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9382, + "id": 3459, "result": { "type": "IOI", "score": [ @@ -77521,18 +75637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9953, + "id": 3460, "result": { "type": "IOI", "score": [ - 16.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77540,19 +75656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 48, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10222, + "id": 3461, "result": { "type": "IOI", "score": [ - 16.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77561,18 +75677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 48, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11182, + "id": 3462, "result": { "type": "IOI", "score": [ - 23.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77580,19 +75696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 48, + "problemId": "d1.2", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11546, + "id": 3463, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77600,19 +75716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 48, + "problemId": "d1.2", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11953, + "id": 3464, "result": { "type": "IOI", "score": [ - 23.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77621,18 +75737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 48, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 138, + "id": 3465, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77640,19 +75756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 292, + "id": 3466, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77660,15 +75776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 811, + "id": 3467, "result": { "type": "IOI", "score": [ @@ -77680,19 +75796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 859, + "id": 3468, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77700,15 +75816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 945, + "id": 3469, "result": { "type": "IOI", "score": [ @@ -77721,14 +75837,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1012, + "id": 3470, "result": { "type": "IOI", "score": [ @@ -77740,15 +75856,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1025, + "id": 3471, "result": { "type": "IOI", "score": [ @@ -77760,19 +75876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1127, + "id": 3472, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77780,15 +75896,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1211, + "id": 3473, "result": { "type": "IOI", "score": [ @@ -77800,19 +75916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1284, + "id": 3474, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77821,18 +75937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1329, + "id": 3475, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77840,15 +75956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1345, + "id": 3476, "result": { "type": "IOI", "score": [ @@ -77861,18 +75977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1383, + "id": 3477, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77881,14 +75997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1458, + "id": 3478, "result": { "type": "IOI", "score": [ @@ -77900,15 +76016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1594, + "id": 3479, "result": { "type": "IOI", "score": [ @@ -77920,19 +76036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1727, + "id": 3480, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77940,19 +76056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3857, + "id": 3481, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77961,18 +76077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 352, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3930, + "id": 3482, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -77980,19 +76096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4050, + "id": 3483, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78000,19 +76116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 352, + "problemId": "d1.3", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4997, + "id": 3484, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78020,15 +76136,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5255, + "id": 3485, "result": { "type": "IOI", "score": [ @@ -78040,15 +76156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5267, + "id": 3486, "result": { "type": "IOI", "score": [ @@ -78060,19 +76176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144240", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5322, + "id": 3487, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78080,19 +76196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5360, + "id": 3488, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78100,19 +76216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5410, + "id": 3489, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78120,15 +76236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5594, + "id": 3490, "result": { "type": "IOI", "score": [ @@ -78141,38 +76257,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 352, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5648, + "id": 3491, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5782, + "id": 3492, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78180,15 +76300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5941, + "id": 3493, "result": { "type": "IOI", "score": [ @@ -78200,15 +76320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5976, + "id": 3494, "result": { "type": "IOI", "score": [ @@ -78221,18 +76341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6128, + "id": 3495, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78240,19 +76360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6156, + "id": 3496, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78261,18 +76381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6272, + "id": 3497, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78281,18 +76401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6509, + "id": 3498, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78300,15 +76420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6532, + "id": 3499, "result": { "type": "IOI", "score": [ @@ -78321,18 +76441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6618, + "id": 3500, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78340,19 +76460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6670, + "id": 3501, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78360,19 +76480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6715, + "id": 3502, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78380,19 +76500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6731, + "id": 3503, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78400,19 +76520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6863, + "id": 3504, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78420,19 +76540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.4", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7059, + "id": 3505, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78440,19 +76560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7173, + "id": 3506, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78460,19 +76580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7341, + "id": 3507, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78481,18 +76601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 352, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7383, + "id": 3508, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78500,19 +76620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7538, + "id": 3509, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78520,19 +76640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7593, + "id": 3510, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78540,19 +76660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7736, + "id": 3511, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78560,15 +76680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 352, + "problemId": "d1.2", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10167, + "id": 3512, "result": { "type": "IOI", "score": [ @@ -78580,15 +76700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10172, + "id": 3513, "result": { "type": "IOI", "score": [ @@ -78601,18 +76721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 352, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10320, + "id": 3514, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78620,19 +76740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 352, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10597, + "id": 3515, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78640,19 +76760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 352, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10778, + "id": 3516, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78661,18 +76781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 352, + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10863, + "id": 3517, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78680,19 +76800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 352, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12059, + "id": 3518, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78700,19 +76820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 352, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 139, + "id": 3519, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78720,19 +76840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 200, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 304, + "id": 3520, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78740,19 +76860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 200, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2737, + "id": 3521, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78760,15 +76880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 200, + "problemId": "d1.1", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7928, + "id": 3522, "result": { "type": "IOI", "score": [ @@ -78781,18 +76901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 200, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11852, + "id": 3523, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78800,15 +76920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 200, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 141, + "id": 3524, "result": { "type": "IOI", "score": [ @@ -78821,18 +76941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 266, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 431, + "id": 3525, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78841,38 +76961,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 266, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1279, + "id": 3526, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 266, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1364, + "id": 3527, "result": { "type": "IOI", "score": [ - 100.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78880,19 +77004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 266, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2402, + "id": 3528, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78900,19 +77024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3152, + "id": 3529, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78920,19 +77044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3316, + "id": 3530, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78941,18 +77065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 266, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3463, + "id": 3531, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78960,19 +77084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3956, + "id": 3532, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -78980,15 +77104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3991, + "id": 3533, "result": { "type": "IOI", "score": [ @@ -79001,18 +77125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 266, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4110, + "id": 3534, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79021,14 +77145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 266, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4332, + "id": 3535, "result": { "type": "IOI", "score": [ @@ -79040,15 +77164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4406, + "id": 3536, "result": { "type": "IOI", "score": [ @@ -79060,19 +77184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4782, + "id": 3537, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79081,18 +77205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 266, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5209, + "id": 3538, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79100,19 +77224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5306, + "id": 3539, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79120,19 +77244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 266, + "problemId": "d1.1", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5769, + "id": 3540, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79141,14 +77265,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 266, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6742, + "id": 3541, "result": { "type": "IOI", "score": [ @@ -79160,19 +77284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6803, + "id": 3542, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79180,19 +77304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 266, + "problemId": "d1.2", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8118, + "id": 3543, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79200,19 +77324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8306, + "id": 3544, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79220,19 +77344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.3", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8405, + "id": 3545, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79240,19 +77364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8467, + "id": 3546, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79260,19 +77384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 266, + "problemId": "d1.4", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10274, + "id": 3547, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79280,19 +77404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 266, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10991, + "id": 3548, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79301,18 +77425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 266, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 148, + "id": 3549, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79320,19 +77444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 401, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 294, + "id": 3550, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79340,15 +77464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 401, + "problemId": "d1.2", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 939, + "id": 3551, "result": { "type": "IOI", "score": [ @@ -79365,18 +77489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 401, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 974, + "id": 3552, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79384,15 +77508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 401, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6924, + "id": 3553, "result": { "type": "IOI", "score": [ @@ -79405,18 +77529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 401, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6997, + "id": 3554, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79424,19 +77548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 401, + "problemId": "d1.1", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7028, + "id": 3555, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79444,15 +77568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 401, + "problemId": "d1.2", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7677, + "id": 3556, "result": { "type": "IOI", "score": [ @@ -79465,18 +77589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 401, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10047, + "id": 3557, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79484,19 +77608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 401, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10430, + "id": 3558, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79504,19 +77628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 401, + "problemId": "d1.4", + "teamId": "144326", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11030, + "id": 3559, "result": { "type": "IOI", "score": [ - 0.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79525,38 +77649,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 401, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11132, + "id": 3560, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 401, + "problemId": "d1.1", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11172, + "id": 3561, "result": { "type": "IOI", "score": [ @@ -79568,19 +77688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 401, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 149, + "id": 3562, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79589,18 +77709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 174, + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 313, + "id": 3563, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79608,19 +77728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 397, + "id": 3564, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79628,19 +77748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2659, + "id": 3565, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79648,19 +77768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2674, + "id": 3566, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79668,15 +77788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2814, + "id": 3567, "result": { "type": "IOI", "score": [ @@ -79688,19 +77808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3014, + "id": 3568, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79709,14 +77829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 174, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3114, + "id": 3569, "result": { "type": "IOI", "score": [ @@ -79728,19 +77848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3162, + "id": 3570, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79748,19 +77868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3168, + "id": 3571, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79768,35 +77888,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3267, + "id": 3572, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4128, + "id": 3573, "result": { "type": "IOI", "score": [ @@ -79808,15 +77932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4200, + "id": 3574, "result": { "type": "IOI", "score": [ @@ -79829,14 +77953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 174, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4250, + "id": 3575, "result": { "type": "IOI", "score": [ @@ -79848,19 +77972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6707, + "id": 3576, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79868,15 +77992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6770, + "id": 3577, "result": { "type": "IOI", "score": [ @@ -79888,19 +78012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6901, + "id": 3578, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79909,18 +78033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 174, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6919, + "id": 3579, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79928,15 +78052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6996, + "id": 3580, "result": { "type": "IOI", "score": [ @@ -79949,18 +78073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 174, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7254, + "id": 3581, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79969,18 +78093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 174, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7261, + "id": 3582, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -79988,19 +78112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7315, + "id": 3583, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80008,19 +78132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7758, + "id": 3584, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80028,15 +78152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7936, + "id": 3585, "result": { "type": "IOI", "score": [ @@ -80049,18 +78173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 174, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7983, + "id": 3586, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80068,19 +78192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8161, + "id": 3587, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80088,15 +78212,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 174, + "problemId": "d1.1", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8343, + "id": 3588, "result": { "type": "IOI", "score": [ @@ -80109,18 +78233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 174, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9359, + "id": 3589, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80129,14 +78253,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 174, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11295, + "id": 3590, "result": { "type": "IOI", "score": [ @@ -80148,35 +78272,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11356, + "id": 3591, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11380, + "id": 3592, "result": { "type": "IOI", "score": [ @@ -80188,15 +78316,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11672, + "id": 3593, "result": { "type": "IOI", "score": [ @@ -80209,18 +78337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 174, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11686, + "id": 3594, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80228,19 +78356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11845, + "id": 3595, "result": { "type": "IOI", "score": [ - 25.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80248,39 +78376,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11887, + "id": 3596, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11965, + "id": 3597, "result": { "type": "IOI", "score": [ - 25.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80288,19 +78420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 174, + "problemId": "d1.4", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 151, + "id": 3598, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80308,15 +78440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 121, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1529, + "id": 3599, "result": { "type": "IOI", "score": [ @@ -80329,38 +78461,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 121, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1595, + "id": 3600, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 121, + "problemId": "d1.4", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1602, + "id": 3601, "result": { "type": "IOI", "score": [ @@ -80373,18 +78501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 121, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1949, + "id": 3602, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80392,19 +78520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 121, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2017, + "id": 3603, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80412,19 +78540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 121, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2052, + "id": 3604, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80432,19 +78560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 121, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3108, + "id": 3605, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80452,15 +78580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 121, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5842, + "id": 3606, "result": { "type": "IOI", "score": [ @@ -80472,15 +78600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 121, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6288, + "id": 3607, "result": { "type": "IOI", "score": [ @@ -80493,18 +78621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 121, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6934, + "id": 3608, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80512,19 +78640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 121, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7127, + "id": 3609, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80532,19 +78660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 121, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7803, + "id": 3610, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80553,18 +78681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 121, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8308, + "id": 3611, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80573,18 +78701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 121, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8358, + "id": 3612, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80592,15 +78720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 121, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8739, + "id": 3613, "result": { "type": "IOI", "score": [ @@ -80612,19 +78740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 121, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9136, + "id": 3614, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80632,19 +78760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 121, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9804, + "id": 3615, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80652,15 +78780,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 121, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10640, + "id": 3616, "result": { "type": "IOI", "score": [ @@ -80673,14 +78801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 121, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10794, + "id": 3617, "result": { "type": "IOI", "score": [ @@ -80693,38 +78821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 121, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11223, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 121, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11246, + "id": 3618, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80732,15 +78840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 121, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 158, + "id": 3619, "result": { "type": "IOI", "score": [ @@ -80753,14 +78861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 442, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5940, + "id": 3620, "result": { "type": "IOI", "score": [ @@ -80776,15 +78884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 442, + "problemId": "d1.1", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5991, + "id": 3621, "result": { "type": "IOI", "score": [ @@ -80797,18 +78905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 442, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6021, + "id": 3622, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80817,18 +78925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 442, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6193, + "id": 3623, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80836,19 +78944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 442, + "problemId": "d1.4", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6308, + "id": 3624, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80856,19 +78964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 442, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6440, + "id": 3625, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80876,19 +78984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 442, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6473, + "id": 3626, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -80897,14 +79005,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 442, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8402, + "id": 3627, "result": { "type": "IOI", "score": [ @@ -80916,15 +79024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.4", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8877, + "id": 3628, "result": { "type": "IOI", "score": [ @@ -80936,15 +79044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8922, + "id": 3629, "result": { "type": "IOI", "score": [ @@ -80956,15 +79064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8970, + "id": 3630, "result": { "type": "IOI", "score": [ @@ -80977,14 +79085,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 442, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9028, + "id": 3631, "result": { "type": "IOI", "score": [ @@ -80997,14 +79105,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 442, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9102, + "id": 3632, "result": { "type": "IOI", "score": [ @@ -81016,19 +79124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9236, + "id": 3633, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81036,19 +79144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9261, + "id": 3634, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81056,19 +79164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9361, + "id": 3635, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81076,19 +79184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9404, + "id": 3636, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81097,18 +79205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 442, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9495, + "id": 3637, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81116,19 +79224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9812, + "id": 3638, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81137,18 +79245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 442, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9855, + "id": 3639, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81156,19 +79264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10033, + "id": 3640, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81176,19 +79284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10870, + "id": 3641, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81196,19 +79304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 442, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10975, + "id": 3642, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81216,19 +79324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 442, + "problemId": "d1.1", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11626, + "id": 3643, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81236,19 +79344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 442, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11758, + "id": 3644, "result": { "type": "IOI", "score": [ - 14.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81257,18 +79365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 442, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 159, + "id": 3645, "result": { "type": "IOI", "score": [ - 34.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81277,18 +79385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 243, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 349, + "id": 3646, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81296,19 +79404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 243, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2075, + "id": 3647, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81316,19 +79424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2474, + "id": 3648, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81336,39 +79444,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2533, + "id": 3649, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2625, + "id": 3650, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81376,19 +79488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2955, + "id": 3651, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81396,43 +79508,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3054, + "id": 3652, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3078, + "id": 3653, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81440,19 +79548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.1", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3189, + "id": 3654, "result": { "type": "IOI", "score": [ - 31.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81460,19 +79568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3391, + "id": 3655, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81480,19 +79588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3865, + "id": 3656, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81500,19 +79608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5499, + "id": 3657, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81520,19 +79628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 243, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5621, + "id": 3658, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81541,18 +79649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 243, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7370, + "id": 3659, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81560,19 +79668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 243, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8279, + "id": 3660, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81580,19 +79688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8872, + "id": 3661, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81600,19 +79708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8908, + "id": 3662, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81620,19 +79728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8937, + "id": 3663, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81641,18 +79749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 243, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10693, + "id": 3664, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81660,19 +79768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11011, + "id": 3665, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81680,19 +79788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11031, + "id": 3666, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81700,19 +79808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11134, + "id": 3667, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81720,19 +79828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11318, + "id": 3668, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81740,19 +79848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 243, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 164, + "id": 3669, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81760,19 +79868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2119, + "id": 3670, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81780,19 +79888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2388, + "id": 3671, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81800,19 +79908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3107, + "id": 3672, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81821,18 +79929,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 421, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3118, + "id": 3673, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81840,19 +79948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4275, + "id": 3674, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81860,19 +79968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7149, + "id": 3675, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81881,18 +79989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 421, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7681, + "id": 3676, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81900,19 +80008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7778, + "id": 3677, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81920,19 +80028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8349, + "id": 3678, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81940,19 +80048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.4", + "teamId": "144112", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8448, + "id": 3679, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81960,19 +80068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8575, + "id": 3680, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -81980,19 +80088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8932, + "id": 3681, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82000,15 +80108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 421, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10104, + "id": 3682, "result": { "type": "IOI", "score": [ @@ -82021,18 +80129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 421, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10151, + "id": 3683, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82041,18 +80149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 421, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10215, + "id": 3684, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82061,18 +80169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 421, + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10436, + "id": 3685, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82081,18 +80189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 421, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10685, + "id": 3686, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82100,19 +80208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10783, + "id": 3687, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82120,19 +80228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.2", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10987, + "id": 3688, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82140,19 +80248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11042, + "id": 3689, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82160,19 +80268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11316, + "id": 3690, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82180,19 +80288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11585, + "id": 3691, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82200,39 +80308,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.2", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11617, + "id": 3692, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 421, + "problemId": "d1.4", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 165, + "id": 3693, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82240,19 +80352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 340, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1596, + "id": 3694, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82260,19 +80372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 340, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6222, + "id": 3695, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82281,18 +80393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 340, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6356, + "id": 3696, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82301,18 +80413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 340, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6390, + "id": 3697, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82320,19 +80432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6501, + "id": 3698, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82340,39 +80452,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6582, + "id": 3699, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6647, + "id": 3700, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82380,19 +80496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6710, + "id": 3701, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82401,18 +80517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 340, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6751, + "id": 3702, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82420,19 +80536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7016, + "id": 3703, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82440,35 +80556,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7815, + "id": 3704, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7890, + "id": 3705, "result": { "type": "IOI", "score": [ @@ -82480,19 +80600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 340, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8148, + "id": 3706, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82501,18 +80621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 340, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8303, + "id": 3707, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82520,19 +80640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 340, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8337, + "id": 3708, "result": { "type": "IOI", "score": [ - 10.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82540,15 +80660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9368, + "id": 3709, "result": { "type": "IOI", "score": [ @@ -82560,19 +80680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9402, + "id": 3710, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82580,15 +80700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9426, + "id": 3711, "result": { "type": "IOI", "score": [ @@ -82600,19 +80720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9449, + "id": 3712, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82621,18 +80741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 340, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9663, + "id": 3713, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82640,15 +80760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9673, + "id": 3714, "result": { "type": "IOI", "score": [ @@ -82660,15 +80780,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9748, + "id": 3715, "result": { "type": "IOI", "score": [ @@ -82680,15 +80800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10522, + "id": 3716, "result": { "type": "IOI", "score": [ @@ -82701,18 +80821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 340, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10751, + "id": 3717, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82720,19 +80840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10818, + "id": 3718, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82740,15 +80860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10961, + "id": 3719, "result": { "type": "IOI", "score": [ @@ -82760,19 +80880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11026, + "id": 3720, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82780,19 +80900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11242, + "id": 3721, "result": { "type": "IOI", "score": [ - 16.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82800,15 +80920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11320, + "id": 3722, "result": { "type": "IOI", "score": [ @@ -82820,19 +80940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11358, + "id": 3723, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82840,15 +80960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 340, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 167, + "id": 3724, "result": { "type": "IOI", "score": [ @@ -82861,18 +80981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 172, + "id": 3725, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82880,15 +81000,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3070, + "id": 3726, "result": { "type": "IOI", "score": [ @@ -82901,18 +81021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3259, + "id": 3727, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82920,19 +81040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3363, + "id": 3728, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82941,18 +81061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3379, + "id": 3729, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -82960,15 +81080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3425, + "id": 3730, "result": { "type": "IOI", "score": [ @@ -82981,14 +81101,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3496, + "id": 3731, "result": { "type": "IOI", "score": [ @@ -83000,15 +81120,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3537, + "id": 3732, "result": { "type": "IOI", "score": [ @@ -83021,14 +81141,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3590, + "id": 3733, "result": { "type": "IOI", "score": [ @@ -83040,19 +81160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3656, + "id": 3734, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83060,35 +81180,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3994, + "id": 3735, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4062, + "id": 3736, "result": { "type": "IOI", "score": [ @@ -83100,19 +81224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4133, + "id": 3737, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83120,19 +81244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4353, + "id": 3738, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83140,19 +81264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4550, + "id": 3739, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83160,39 +81284,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4639, + "id": 3740, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 78, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4731, + "id": 3741, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83200,19 +81328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5164, + "id": 3742, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83220,19 +81348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5460, + "id": 3743, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83240,19 +81368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5569, + "id": 3744, "result": { "type": "IOI", "score": [ - 33.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83260,19 +81388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5673, + "id": 3745, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83280,19 +81408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5788, + "id": 3746, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83300,19 +81428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6615, + "id": 3747, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83321,18 +81449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 78, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6688, + "id": 3748, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83341,18 +81469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 78, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6836, + "id": 3749, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83360,19 +81488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7170, + "id": 3750, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83380,19 +81508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7256, + "id": 3751, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83401,18 +81529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 78, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7344, + "id": 3752, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83421,14 +81549,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 78, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7386, + "id": 3753, "result": { "type": "IOI", "score": [ @@ -83440,19 +81568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7450, + "id": 3754, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83460,15 +81588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7636, + "id": 3755, "result": { "type": "IOI", "score": [ @@ -83480,19 +81608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7660, + "id": 3756, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83500,19 +81628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7884, + "id": 3757, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83520,19 +81648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7907, + "id": 3758, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83540,19 +81668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8366, + "id": 3759, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83560,19 +81688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8411, + "id": 3760, "result": { "type": "IOI", "score": [ - 25.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83580,19 +81708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8476, + "id": 3761, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83600,19 +81728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 78, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9397, + "id": 3762, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83620,19 +81748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9553, + "id": 3763, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83640,19 +81768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9589, + "id": 3764, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83660,19 +81788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9616, + "id": 3765, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83680,19 +81808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9842, + "id": 3766, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83700,19 +81828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.1", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10352, + "id": 3767, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83720,19 +81848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 78, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10458, + "id": 3768, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83741,18 +81869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 78, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 179, + "id": 3769, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83760,19 +81888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 136, + "problemId": "d1.1", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 203, + "id": 3770, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83780,19 +81908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 936, + "id": 3771, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83800,19 +81928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1274, + "id": 3772, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83820,19 +81948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1344, + "id": 3773, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83840,15 +81968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1389, + "id": 3774, "result": { "type": "IOI", "score": [ @@ -83860,19 +81988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1408, + "id": 3775, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83881,18 +82009,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 136, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1419, + "id": 3776, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83900,19 +82028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1530, + "id": 3777, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83920,19 +82048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1533, + "id": 3778, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83940,19 +82068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1640, + "id": 3779, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83960,19 +82088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1741, + "id": 3780, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -83980,15 +82108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1897, + "id": 3781, "result": { "type": "IOI", "score": [ @@ -84000,19 +82128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1927, + "id": 3782, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84020,19 +82148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1985, + "id": 3783, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84040,19 +82168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3616, + "id": 3784, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84061,18 +82189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 136, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5304, + "id": 3785, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84081,18 +82209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 136, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5349, + "id": 3786, "result": { "type": "IOI", "score": [ - 32.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84100,19 +82228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9743, + "id": 3787, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84120,19 +82248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9795, + "id": 3788, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84140,19 +82268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 136, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10705, + "id": 3789, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84161,18 +82289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 136, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10731, + "id": 3790, "result": { "type": "IOI", "score": [ - 35.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84180,19 +82308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 136, + "problemId": "d1.4", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 189, + "id": 3791, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84200,19 +82328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 197, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 325, + "id": 3792, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84220,19 +82348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1246, + "id": 3793, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84240,19 +82368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1275, + "id": 3794, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84260,15 +82388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1368, + "id": 3795, "result": { "type": "IOI", "score": [ @@ -84280,19 +82408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1484, + "id": 3796, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84300,19 +82428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1627, + "id": 3797, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84321,14 +82449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1667, + "id": 3798, "result": { "type": "IOI", "score": [ @@ -84341,42 +82469,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1693, + "id": 3799, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1697, + "id": 3800, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84384,15 +82508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1710, + "id": 3801, "result": { "type": "IOI", "score": [ @@ -84405,18 +82529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1791, + "id": 3802, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84424,15 +82548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1835, + "id": 3803, "result": { "type": "IOI", "score": [ @@ -84444,15 +82568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1854, + "id": 3804, "result": { "type": "IOI", "score": [ @@ -84464,19 +82588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1925, + "id": 3805, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84485,18 +82609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1931, + "id": 3806, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84505,14 +82629,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1971, + "id": 3807, "result": { "type": "IOI", "score": [ @@ -84524,19 +82648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2049, + "id": 3808, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84545,18 +82669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2096, + "id": 3809, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84564,19 +82688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2122, + "id": 3810, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84585,18 +82709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 197, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2186, + "id": 3811, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84604,15 +82728,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3640, + "id": 3812, "result": { "type": "IOI", "score": [ @@ -84625,14 +82749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6361, + "id": 3813, "result": { "type": "IOI", "score": [ @@ -84645,18 +82769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6600, + "id": 3814, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84664,19 +82788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6682, + "id": 3815, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84685,14 +82809,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6757, + "id": 3816, "result": { "type": "IOI", "score": [ @@ -84705,14 +82829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6825, + "id": 3817, "result": { "type": "IOI", "score": [ @@ -84724,19 +82848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6927, + "id": 3818, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84744,15 +82868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6984, + "id": 3819, "result": { "type": "IOI", "score": [ @@ -84764,19 +82888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7057, + "id": 3820, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84784,19 +82908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7093, + "id": 3821, "result": { "type": "IOI", "score": [ - 19.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84804,19 +82928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.1", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7169, + "id": 3822, "result": { "type": "IOI", "score": [ - 51.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84825,18 +82949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8075, + "id": 3823, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84844,19 +82968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8219, + "id": 3824, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84864,19 +82988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8740, + "id": 3825, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84884,19 +83008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8844, + "id": 3826, "result": { "type": "IOI", "score": [ - 48.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84904,19 +83028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9179, + "id": 3827, "result": { "type": "IOI", "score": [ - 48.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84924,19 +83048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9936, + "id": 3828, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84944,19 +83068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10030, + "id": 3829, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84965,18 +83089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 197, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11034, + "id": 3830, "result": { "type": "IOI", "score": [ - 67.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -84984,19 +83108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 197, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11543, + "id": 3831, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85004,19 +83128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11636, + "id": 3832, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85024,19 +83148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.2", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11868, + "id": 3833, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85044,19 +83168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 197, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 191, + "id": 3834, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85064,19 +83188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 443, + "id": 3835, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85084,19 +83208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1033, + "id": 3836, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85104,19 +83228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1082, + "id": 3837, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85124,19 +83248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1104, + "id": 3838, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85145,18 +83269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 217, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1170, + "id": 3839, "result": { "type": "IOI", "score": [ - 24.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85165,18 +83289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 217, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1220, + "id": 3840, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85184,19 +83308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1224, + "id": 3841, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85204,43 +83328,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4628, + "id": 3842, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4654, + "id": 3843, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85249,18 +83369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 217, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5218, + "id": 3844, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85268,19 +83388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5863, + "id": 3845, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85288,19 +83408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 217, + "problemId": "d1.4", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6247, + "id": 3846, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85308,19 +83428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 217, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6379, + "id": 3847, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85328,15 +83448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7005, + "id": 3848, "result": { "type": "IOI", "score": [ @@ -85349,18 +83469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7253, + "id": 3849, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85369,18 +83489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8600, + "id": 3850, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85389,18 +83509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8775, + "id": 3851, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85408,19 +83528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8941, + "id": 3852, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85428,19 +83548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8990, + "id": 3853, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85448,19 +83568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8999, + "id": 3854, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85469,18 +83589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9033, + "id": 3855, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85489,18 +83609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9096, + "id": 3856, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85508,19 +83628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9143, + "id": 3857, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85528,19 +83648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.2", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9376, + "id": 3858, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85548,19 +83668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 217, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9695, + "id": 3859, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85569,18 +83689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 217, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9998, + "id": 3860, "result": { "type": "IOI", "score": [ - 63.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85588,19 +83708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10957, + "id": 3861, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85608,19 +83728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 217, + "problemId": "d1.3", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 196, + "id": 3862, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85628,19 +83748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 301, + "id": 3863, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85648,19 +83768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1592, + "id": 3864, "result": { "type": "IOI", "score": [ - 25.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85669,18 +83789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1626, + "id": 3865, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85688,19 +83808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1652, + "id": 3866, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85708,19 +83828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1751, + "id": 3867, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85728,43 +83848,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 296, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2344, + "id": 3868, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 296, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2356, + "id": 3869, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85772,19 +83888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3795, + "id": 3870, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85793,7 +83909,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 296, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85813,14 +83929,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 296, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5023, + "id": 3872, "result": { "type": "IOI", "score": [ @@ -85832,19 +83948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5190, + "id": 3873, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85852,19 +83968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6088, + "id": 3874, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85872,19 +83988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6177, + "id": 3875, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85893,14 +84009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 296, + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6835, + "id": 3876, "result": { "type": "IOI", "score": [ @@ -85912,15 +84028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6888, + "id": 3877, "result": { "type": "IOI", "score": [ @@ -85933,14 +84049,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7151, + "id": 3878, "result": { "type": "IOI", "score": [ @@ -85952,19 +84068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7592, + "id": 3879, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85972,19 +84088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7610, + "id": 3880, "result": { "type": "IOI", "score": [ - 0.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -85992,19 +84108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7664, + "id": 3881, "result": { "type": "IOI", "score": [ - 32.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86012,19 +84128,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.4", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8016, + "id": 3882, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144097", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3883, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86033,18 +84173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8304, + "id": 3884, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86053,14 +84193,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8397, + "id": 3885, "result": { "type": "IOI", "score": [ @@ -86073,18 +84213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8422, + "id": 3886, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86092,19 +84232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8489, + "id": 3887, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86113,18 +84253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8538, + "id": 3888, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86132,19 +84272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8686, + "id": 3889, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86153,18 +84293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8847, + "id": 3890, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86173,18 +84313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8857, + "id": 3891, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86193,18 +84333,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8905, + "id": 3892, "result": { "type": "IOI", "score": [ - 25.0 + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144159", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3893, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86213,14 +84373,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8926, + "id": 3894, "result": { "type": "IOI", "score": [ @@ -86232,15 +84392,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144351", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3895, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8957, + "id": 3896, "result": { "type": "IOI", "score": [ @@ -86252,19 +84432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9009, + "id": 3897, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86272,19 +84452,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9123, + "id": 3898, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144452", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3899, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86293,18 +84493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9135, + "id": 3900, "result": { "type": "IOI", "score": [ - 57.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86312,19 +84512,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.4", + "teamId": "144097", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3901, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 296, + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9288, + "id": 3902, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86333,18 +84557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 296, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9301, + "id": 3903, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86352,19 +84576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9559, + "id": 3904, "result": { "type": "IOI", "score": [ - 57.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86372,19 +84596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9825, + "id": 3905, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86393,18 +84617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10069, + "id": 3906, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86412,19 +84636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10150, + "id": 3907, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86433,18 +84657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10741, + "id": 3908, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86453,18 +84677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10964, + "id": 3909, "result": { "type": "IOI", "score": [ - 32.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86472,15 +84696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11129, + "id": 3910, "result": { "type": "IOI", "score": [ @@ -86493,42 +84717,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11159, + "id": 3911, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144450", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3912, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11189, + "id": 3913, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86536,19 +84776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11288, + "id": 3914, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86556,19 +84796,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 296, + "problemId": "d1.2", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11489, + "id": 3915, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144483", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3916, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86577,18 +84837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 296, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 197, + "id": 3917, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86596,19 +84856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 305, + "id": 3918, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86616,15 +84876,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1394, + "id": 3919, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144445", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3920, "result": { "type": "IOI", "score": [ @@ -86637,14 +84917,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 272, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1881, + "id": 3921, "result": { "type": "IOI", "score": [ @@ -86657,14 +84937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1947, + "id": 3922, "result": { "type": "IOI", "score": [ @@ -86677,14 +84957,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2043, + "id": 3923, "result": { "type": "IOI", "score": [ @@ -86696,15 +84976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2192, + "id": 3924, "result": { "type": "IOI", "score": [ @@ -86717,14 +84997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2270, + "id": 3925, "result": { "type": "IOI", "score": [ @@ -86737,14 +85017,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2352, + "id": 3926, "result": { "type": "IOI", "score": [ @@ -86757,14 +85037,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2490, + "id": 3927, "result": { "type": "IOI", "score": [ @@ -86777,14 +85057,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2590, + "id": 3928, "result": { "type": "IOI", "score": [ @@ -86796,15 +85076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 272, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2890, + "id": 3929, "result": { "type": "IOI", "score": [ @@ -86817,18 +85097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3201, + "id": 3930, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86836,19 +85116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 272, + "problemId": "d1.2", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3393, + "id": 3931, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86856,15 +85136,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 272, + "problemId": "d1.4", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5196, + "id": 3932, "result": { "type": "IOI", "score": [ @@ -86876,19 +85156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5418, + "id": 3933, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86897,18 +85177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 272, + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5507, + "id": 3934, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86916,15 +85196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.4", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5623, + "id": 3935, "result": { "type": "IOI", "score": [ @@ -86936,15 +85216,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3936, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 272, + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6351, + "id": 3937, "result": { "type": "IOI", "score": [ @@ -86956,19 +85256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6522, + "id": 3938, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86977,18 +85277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6914, + "id": 3939, "result": { "type": "IOI", "score": [ - 16.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -86996,15 +85296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7282, + "id": 3940, "result": { "type": "IOI", "score": [ @@ -87017,18 +85317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7401, + "id": 3941, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87037,14 +85337,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 272, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7524, + "id": 3942, "result": { "type": "IOI", "score": [ @@ -87056,15 +85356,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7553, + "id": 3943, "result": { "type": "IOI", "score": [ @@ -87077,18 +85377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 272, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7588, + "id": 3944, "result": { "type": "IOI", "score": [ - 31.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87096,15 +85396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.1", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8762, + "id": 3945, "result": { "type": "IOI", "score": [ @@ -87117,18 +85417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 272, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8930, + "id": 3946, "result": { "type": "IOI", "score": [ - 10.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87136,19 +85436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 272, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8998, + "id": 3947, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87156,19 +85456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 272, + "problemId": "d1.3", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9079, + "id": 3948, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87176,19 +85476,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 272, + "problemId": "d1.3", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9482, + "id": 3949, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144238", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3950, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87197,18 +85517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 272, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9632, + "id": 3951, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87216,19 +85536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 272, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10082, + "id": 3952, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87236,15 +85556,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 272, + "problemId": "d1.4", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10280, + "id": 3953, "result": { "type": "IOI", "score": [ @@ -87257,18 +85577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 272, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 200, + "id": 3954, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87276,19 +85596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 322, + "id": 3955, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87296,19 +85616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 344, + "id": 3956, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87316,19 +85636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 515, + "id": 3957, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87336,19 +85656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 525, + "id": 3958, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87356,19 +85676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2227, + "id": 3959, "result": { "type": "IOI", "score": [ - 9.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87376,19 +85696,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2260, + "id": 3960, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3961, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87396,19 +85740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2297, + "id": 3962, "result": { "type": "IOI", "score": [ - 9.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87416,19 +85760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2359, + "id": 3963, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87436,19 +85780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2389, + "id": 3964, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87456,15 +85800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3141, + "id": 3965, "result": { "type": "IOI", "score": [ @@ -87476,19 +85820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3250, + "id": 3966, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87496,19 +85840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3499, + "id": 3967, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87517,18 +85861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3779, + "id": 3968, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87537,18 +85881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3815, + "id": 3969, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87557,18 +85901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4150, + "id": 3970, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87576,19 +85920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4212, + "id": 3971, "result": { "type": "IOI", "score": [ - 16.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87596,19 +85940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.4", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4226, + "id": 3972, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87616,19 +85960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4330, + "id": 3973, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87637,18 +85981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4816, + "id": 3974, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87656,19 +86000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4874, + "id": 3975, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87676,19 +86020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5159, + "id": 3976, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87696,19 +86040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6137, + "id": 3977, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87716,19 +86060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6406, + "id": 3978, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87736,19 +86080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6489, + "id": 3979, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87757,18 +86101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6671, + "id": 3980, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87776,19 +86120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7355, + "id": 3981, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87797,18 +86141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 445, + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7424, + "id": 3982, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87816,19 +86160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8662, + "id": 3983, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87836,15 +86180,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8679, + "id": 3984, "result": { "type": "IOI", "score": [ @@ -87857,14 +86201,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 445, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8694, + "id": 3985, "result": { "type": "IOI", "score": [ @@ -87876,15 +86220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8736, + "id": 3986, "result": { "type": "IOI", "score": [ @@ -87897,18 +86241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 445, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8759, + "id": 3987, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87916,19 +86260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9051, + "id": 3988, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87936,15 +86280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9083, + "id": 3989, "result": { "type": "IOI", "score": [ @@ -87957,18 +86301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 445, + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9109, + "id": 3990, "result": { "type": "IOI", "score": [ - 22.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87976,19 +86320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9216, + "id": 3991, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -87996,19 +86340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9281, + "id": 3992, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88016,19 +86360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9339, + "id": 3993, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88036,19 +86380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9430, + "id": 3994, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88056,19 +86400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9452, + "id": 3995, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88076,19 +86420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9478, + "id": 3996, "result": { "type": "IOI", "score": [ - 10.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88097,14 +86441,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 445, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9503, + "id": 3997, "result": { "type": "IOI", "score": [ @@ -88117,14 +86461,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 445, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9542, + "id": 3998, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144245", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 3999, "result": { "type": "IOI", "score": [ @@ -88136,19 +86500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9617, + "id": 4000, "result": { "type": "IOI", "score": [ - 35.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88156,19 +86520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9650, + "id": 4001, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88176,19 +86540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9736, + "id": 4002, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88196,19 +86560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9753, + "id": 4003, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88216,15 +86580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11313, + "id": 4004, "result": { "type": "IOI", "score": [ @@ -88236,19 +86600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 445, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11563, + "id": 4005, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88257,18 +86621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 445, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11761, + "id": 4006, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88277,18 +86641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 445, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 204, + "id": 4007, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88296,19 +86660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 319, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2259, + "id": 4008, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88316,19 +86680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 319, + "problemId": "d1.3", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3271, + "id": 4009, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88336,15 +86700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 319, + "problemId": "d1.2", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6472, + "id": 4010, "result": { "type": "IOI", "score": [ @@ -88356,19 +86720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 319, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6528, + "id": 4011, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88376,19 +86740,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 319, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7242, + "id": 4012, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144440", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4013, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88397,18 +86781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 319, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10128, + "id": 4014, "result": { "type": "IOI", "score": [ - 16.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88416,19 +86800,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 319, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10179, + "id": 4015, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144113", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4016, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88436,19 +86844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 319, + "problemId": "d1.1", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12072, + "id": 4017, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88456,19 +86864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 319, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 206, + "id": 4018, "result": { "type": "IOI", "score": [ - 12.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88477,18 +86885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 362, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 282, + "id": 4019, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88497,18 +86905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 362, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 347, + "id": 4020, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88516,19 +86924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 447, + "id": 4021, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88536,19 +86944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 710, + "id": 4022, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88557,18 +86965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 362, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 738, + "id": 4023, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88576,19 +86984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 858, + "id": 4024, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88597,18 +87005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 362, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 905, + "id": 4025, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88617,14 +87025,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 362, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1031, + "id": 4026, "result": { "type": "IOI", "score": [ @@ -88636,19 +87044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1588, + "id": 4027, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88656,15 +87064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2506, + "id": 4028, "result": { "type": "IOI", "score": [ @@ -88676,19 +87084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2519, + "id": 4029, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88696,15 +87104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6060, + "id": 4030, "result": { "type": "IOI", "score": [ @@ -88716,19 +87124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6062, + "id": 4031, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88737,14 +87145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 362, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6194, + "id": 4032, "result": { "type": "IOI", "score": [ @@ -88757,18 +87165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 362, + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6774, + "id": 4033, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88776,15 +87184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 362, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7773, + "id": 4034, "result": { "type": "IOI", "score": [ @@ -88796,15 +87204,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144361", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4035, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 362, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8028, + "id": 4036, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144162", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4037, "result": { "type": "IOI", "score": [ @@ -88816,15 +87264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 362, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8110, + "id": 4038, "result": { "type": "IOI", "score": [ @@ -88837,18 +87285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 362, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8885, + "id": 4039, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88856,19 +87304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 362, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10086, + "id": 4040, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88877,14 +87325,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 362, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10341, + "id": 4041, "result": { "type": "IOI", "score": [ @@ -88897,18 +87345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 362, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10533, + "id": 4042, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -88916,15 +87364,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 362, + "problemId": "d1.1", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10773, + "id": 4043, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144178", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4044, "result": { "type": "IOI", "score": [ @@ -88937,14 +87409,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 362, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10800, + "id": 4045, "result": { "type": "IOI", "score": [ @@ -88956,15 +87428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 362, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11072, + "id": 4046, "result": { "type": "IOI", "score": [ @@ -88976,15 +87448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 362, + "problemId": "d1.4", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11506, + "id": 4047, "result": { "type": "IOI", "score": [ @@ -88996,15 +87468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 362, + "problemId": "d1.2", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11531, + "id": 4048, "result": { "type": "IOI", "score": [ @@ -89017,19 +87489,63 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 362, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11903, + "id": 4049, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144258", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4050, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144422", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4051, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -89037,14 +87553,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 362, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11925, + "id": 4052, "result": { "type": "IOI", "score": [ @@ -89056,19 +87572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 362, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 207, + "id": 4053, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89076,19 +87592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 992, + "id": 4054, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89096,15 +87612,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1406, + "id": 4055, "result": { "type": "IOI", "score": [ @@ -89116,19 +87632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 97, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1420, + "id": 4056, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89136,19 +87652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1950, + "id": 4057, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89156,19 +87672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1989, + "id": 4058, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89176,15 +87692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 97, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2845, + "id": 4059, "result": { "type": "IOI", "score": [ @@ -89196,19 +87712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 97, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2885, + "id": 4060, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89217,18 +87733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3289, + "id": 4061, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89237,14 +87753,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3416, + "id": 4062, "result": { "type": "IOI", "score": [ @@ -89257,18 +87773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3585, + "id": 4063, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89277,18 +87793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3608, + "id": 4064, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89297,14 +87813,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4925, + "id": 4065, "result": { "type": "IOI", "score": [ @@ -89317,18 +87833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 97, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5587, + "id": 4066, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89336,19 +87852,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 97, + "problemId": "d1.4", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5951, + "id": 4067, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144195", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4068, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89357,18 +87893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 97, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9862, + "id": 4069, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89376,19 +87912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144240", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10066, + "id": 4070, "result": { "type": "IOI", "score": [ - 67.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89397,38 +87933,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10724, + "id": 4071, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10974, + "id": 4072, "result": { "type": "IOI", "score": [ - 67.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89436,19 +87976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11231, + "id": 4073, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89456,19 +87996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 97, + "problemId": "d1.2", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11501, + "id": 4074, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89477,18 +88017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 97, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 209, + "id": 4075, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89497,18 +88037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 106, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 637, + "id": 4076, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89516,15 +88056,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.2", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 699, + "id": 4077, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144495", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4078, "result": { "type": "IOI", "score": [ @@ -89537,18 +88097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 106, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 752, + "id": 4079, "result": { "type": "IOI", "score": [ - 10.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89557,14 +88117,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 106, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 783, + "id": 4080, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4081, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144162", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4082, "result": { "type": "IOI", "score": [ @@ -89576,19 +88176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 904, + "id": 4083, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89596,19 +88196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 944, + "id": 4084, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89616,19 +88216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1301, + "id": 4085, "result": { "type": "IOI", "score": [ - 22.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89636,19 +88236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1321, + "id": 4086, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89656,19 +88256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1325, + "id": 4087, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89677,18 +88277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 106, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1338, + "id": 4088, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89696,19 +88296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1362, + "id": 4089, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89716,15 +88316,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3618, + "id": 4090, "result": { "type": "IOI", "score": [ @@ -89736,19 +88336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3974, + "id": 4091, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89757,18 +88357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4296, + "id": 4092, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89777,38 +88377,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4336, + "id": 4093, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4364, + "id": 4094, "result": { "type": "IOI", "score": [ @@ -89821,18 +88417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4389, + "id": 4095, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89840,19 +88436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4418, + "id": 4096, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89860,19 +88456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4465, + "id": 4097, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89880,19 +88476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4482, + "id": 4098, "result": { "type": "IOI", "score": [ - 31.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89900,19 +88496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4613, + "id": 4099, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89920,19 +88516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5647, + "id": 4100, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89940,19 +88536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5931, + "id": 4101, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89960,19 +88556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6077, + "id": 4102, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -89980,19 +88576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6150, + "id": 4103, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90000,19 +88596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6169, + "id": 4104, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90021,38 +88617,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6305, + "id": 4105, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144346", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4106, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144344", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4107, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6325, + "id": 4108, "result": { "type": "IOI", "score": [ @@ -90065,18 +88697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 106, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6387, + "id": 4109, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90084,19 +88716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8246, + "id": 4110, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90105,18 +88737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 106, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8626, + "id": 4111, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90125,18 +88757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 106, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9117, + "id": 4112, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90144,19 +88776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9277, + "id": 4113, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90164,19 +88796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9310, + "id": 4114, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90185,18 +88817,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 106, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9342, + "id": 4115, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144251", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4116, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90204,19 +88860,99 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 106, + "problemId": "d1.1", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9720, + "id": 4117, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144483", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4118, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144164", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4119, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144195", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4120, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144495", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4121, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90225,18 +88961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 106, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9761, + "id": 4122, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90245,18 +88981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 106, + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10377, + "id": 4123, "result": { "type": "IOI", "score": [ - 22.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90264,19 +89000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.4", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11718, + "id": 4124, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90284,19 +89020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 106, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 210, + "id": 4125, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90305,18 +89041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 399, + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 268, + "id": 4126, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90325,18 +89061,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 399, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 360, + "id": 4127, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144293", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4128, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144244", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4129, + "result": { + "type": "IOI", + "score": [ + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90345,18 +89121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 399, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2164, + "id": 4130, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90364,19 +89140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2249, + "id": 4131, "result": { "type": "IOI", "score": [ - 31.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90384,15 +89160,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2294, + "id": 4132, "result": { "type": "IOI", "score": [ @@ -90405,18 +89181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 399, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2385, + "id": 4133, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90424,19 +89200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2673, + "id": 4134, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90444,19 +89220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2742, + "id": 4135, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90464,15 +89240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2793, + "id": 4136, "result": { "type": "IOI", "score": [ @@ -90485,18 +89261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 399, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2864, + "id": 4137, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90504,19 +89280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 399, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2966, + "id": 4138, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90525,18 +89301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 399, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3890, + "id": 4139, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90544,19 +89320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5217, + "id": 4140, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90564,19 +89340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 399, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6341, + "id": 4141, "result": { "type": "IOI", "score": [ - 38.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90585,14 +89361,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 399, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7603, + "id": 4142, "result": { "type": "IOI", "score": [ @@ -90605,18 +89381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 399, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8105, + "id": 4143, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90624,19 +89400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 399, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8831, + "id": 4144, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90644,19 +89420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 399, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9396, + "id": 4145, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90665,18 +89441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 399, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9584, + "id": 4146, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90685,18 +89461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 399, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9687, + "id": 4147, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90704,19 +89480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 399, + "problemId": "d1.2", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10772, + "id": 4148, "result": { "type": "IOI", "score": [ - 38.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90725,18 +89501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 399, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 211, + "id": 4149, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90744,19 +89520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 347, + "problemId": "d1.1", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 950, + "id": 4150, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90764,19 +89540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1001, + "id": 4151, "result": { "type": "IOI", "score": [ - 100.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90784,15 +89560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 347, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2314, + "id": 4152, "result": { "type": "IOI", "score": [ @@ -90804,15 +89580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 347, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2441, + "id": 4153, "result": { "type": "IOI", "score": [ @@ -90825,18 +89601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 347, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2554, + "id": 4154, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90845,18 +89621,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 347, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2717, + "id": 4155, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144194", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4156, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90865,14 +89661,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 347, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3133, + "id": 4157, "result": { "type": "IOI", "score": [ @@ -90884,15 +89680,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3218, + "id": 4158, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144495", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4159, "result": { "type": "IOI", "score": [ @@ -90905,18 +89721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 347, + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3240, + "id": 4160, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90924,19 +89740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4677, + "id": 4161, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90944,15 +89760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4728, + "id": 4162, "result": { "type": "IOI", "score": [ @@ -90965,18 +89781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 347, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5431, + "id": 4163, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -90985,18 +89801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 347, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7058, + "id": 4164, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91004,19 +89820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7239, + "id": 4165, "result": { "type": "IOI", "score": [ - 35.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91024,19 +89840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.4", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7276, + "id": 4166, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91045,38 +89861,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 347, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7850, + "id": 4167, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7905, + "id": 4168, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91084,19 +89904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8019, + "id": 4169, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91104,19 +89924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.2", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8091, + "id": 4170, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91124,19 +89944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8412, + "id": 4171, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91144,19 +89964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.2", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8500, + "id": 4172, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91164,19 +89984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8691, + "id": 4173, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91184,15 +90004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9901, + "id": 4174, "result": { "type": "IOI", "score": [ @@ -91204,15 +90024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 347, + "problemId": "d1.1", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9934, + "id": 4175, "result": { "type": "IOI", "score": [ @@ -91225,14 +90045,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 347, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11532, + "id": 4176, "result": { "type": "IOI", "score": [ @@ -91249,14 +90069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 347, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11593, + "id": 4177, "result": { "type": "IOI", "score": [ @@ -91268,19 +90088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 347, + "problemId": "d1.3", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11784, + "id": 4178, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91288,15 +90108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 347, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11989, + "id": 4179, "result": { "type": "IOI", "score": [ @@ -91309,14 +90129,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 347, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12076, + "id": 4180, "result": { "type": "IOI", "score": [ @@ -91329,18 +90149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 347, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 213, + "id": 4181, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91348,19 +90168,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 998, + "id": 4182, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144423", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4183, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91369,18 +90209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 172, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1100, + "id": 4184, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91389,14 +90229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 172, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1178, + "id": 4185, "result": { "type": "IOI", "score": [ @@ -91408,15 +90248,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1320, + "id": 4186, "result": { "type": "IOI", "score": [ @@ -91429,38 +90269,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 172, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1469, + "id": 4187, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 172, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1478, + "id": 4188, "result": { "type": "IOI", "score": [ @@ -91472,19 +90308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1643, + "id": 4189, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91493,18 +90329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 172, + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1826, + "id": 4190, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91512,19 +90348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2431, + "id": 4191, "result": { "type": "IOI", "score": [ - 25.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91532,19 +90368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2495, + "id": 4192, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91552,19 +90388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2528, + "id": 4193, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91572,19 +90408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.2", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2713, + "id": 4194, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91592,19 +90428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3007, + "id": 4195, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91612,19 +90448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3122, + "id": 4196, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91632,19 +90468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3294, + "id": 4197, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91652,19 +90488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3610, + "id": 4198, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91672,15 +90508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3874, + "id": 4199, "result": { "type": "IOI", "score": [ @@ -91693,18 +90529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 172, + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4338, + "id": 4200, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91712,15 +90548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4445, + "id": 4201, "result": { "type": "IOI", "score": [ @@ -91733,18 +90569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 172, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4516, + "id": 4202, "result": { "type": "IOI", "score": [ - 22.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91752,19 +90588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4696, + "id": 4203, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91772,19 +90608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 172, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7324, + "id": 4204, "result": { "type": "IOI", "score": [ - 19.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91792,15 +90628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 172, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7941, + "id": 4205, "result": { "type": "IOI", "score": [ @@ -91813,18 +90649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 172, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8068, + "id": 4206, "result": { "type": "IOI", "score": [ - 19.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91832,15 +90668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 172, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8281, + "id": 4207, "result": { "type": "IOI", "score": [ @@ -91853,18 +90689,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 172, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8460, + "id": 4208, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144438", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4209, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91873,14 +90729,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 172, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9159, + "id": 4210, "result": { "type": "IOI", "score": [ @@ -91893,14 +90749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 172, + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 215, + "id": 4211, "result": { "type": "IOI", "score": [ @@ -91912,19 +90768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 404, + "problemId": "d1.3", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 302, + "id": 4212, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91932,19 +90788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 404, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 576, + "id": 4213, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91953,18 +90809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 404, + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3418, + "id": 4214, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91972,19 +90828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3595, + "id": 4215, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -91992,19 +90848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5755, + "id": 4216, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92012,19 +90868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7045, + "id": 4217, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92033,18 +90889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 404, + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7486, + "id": 4218, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92052,19 +90908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9822, + "id": 4219, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92072,19 +90928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10421, + "id": 4220, "result": { "type": "IOI", "score": [ - 38.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92093,18 +90949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 404, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11048, + "id": 4221, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92112,19 +90968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 404, + "problemId": "d1.1", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 218, + "id": 4222, "result": { "type": "IOI", "score": [ - 100.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92133,18 +90989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 284, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1546, + "id": 4223, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92153,18 +91009,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 284, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3095, + "id": 4224, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92172,19 +91028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 284, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7090, + "id": 4225, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92193,18 +91049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 284, + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7513, + "id": 4226, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92213,14 +91069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 284, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7581, + "id": 4227, "result": { "type": "IOI", "score": [ @@ -92232,19 +91088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 284, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8168, + "id": 4228, "result": { "type": "IOI", "score": [ - 32.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92252,19 +91108,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 284, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8175, + "id": 4229, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144482", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4230, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92273,18 +91149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 284, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8979, + "id": 4231, "result": { "type": "IOI", "score": [ - 37.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92292,19 +91168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 284, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9114, + "id": 4232, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92313,14 +91189,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 284, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9322, + "id": 4233, "result": { "type": "IOI", "score": [ @@ -92333,18 +91209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 284, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9557, + "id": 4234, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92353,18 +91229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 284, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9951, + "id": 4235, "result": { "type": "IOI", "score": [ - 19.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92373,18 +91249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 284, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10454, + "id": 4236, "result": { "type": "IOI", "score": [ - 19.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92392,19 +91268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 284, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10603, + "id": 4237, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92413,18 +91289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 284, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11101, + "id": 4238, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92432,15 +91308,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 284, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 220, + "id": 4239, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144116", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4240, "result": { "type": "IOI", "score": [ @@ -92452,19 +91348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 314, + "id": 4241, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92472,19 +91368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 326, + "id": 4242, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92492,19 +91388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.2", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 669, + "id": 4243, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92512,19 +91408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 927, + "id": 4244, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92532,19 +91428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.1", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1491, + "id": 4245, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92553,14 +91449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 230, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3562, + "id": 4246, "result": { "type": "IOI", "score": [ @@ -92572,19 +91468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3820, + "id": 4247, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92592,19 +91488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4213, + "id": 4248, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92612,15 +91508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4417, + "id": 4249, "result": { "type": "IOI", "score": [ @@ -92632,19 +91528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4526, + "id": 4250, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92652,19 +91548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4559, + "id": 4251, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92672,15 +91568,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 230, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10058, + "id": 4252, + "result": { + "type": "IOI", + "score": [ + 20.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144518", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4253, "result": { "type": "IOI", "score": [ @@ -92693,18 +91609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 230, + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10196, + "id": 4254, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92713,14 +91629,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 230, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10288, + "id": 4255, "result": { "type": "IOI", "score": [ @@ -92733,18 +91649,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 230, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10709, + "id": 4256, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144335", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4257, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92753,14 +91689,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 230, + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11235, + "id": 4258, "result": { "type": "IOI", "score": [ @@ -92772,15 +91708,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144412", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4259, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 230, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11281, + "id": 4260, "result": { "type": "IOI", "score": [ @@ -92792,19 +91748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 230, + "problemId": "d1.4", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11812, + "id": 4261, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92813,18 +91769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 230, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 223, + "id": 4262, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92832,15 +91788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 460, + "id": 4263, "result": { "type": "IOI", "score": [ @@ -92853,14 +91809,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 18, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1304, + "id": 4264, "result": { "type": "IOI", "score": [ @@ -92872,19 +91828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 18, + "problemId": "d1.2", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1356, + "id": 4265, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92892,19 +91848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 18, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1442, + "id": 4266, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92912,15 +91868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2995, + "id": 4267, "result": { "type": "IOI", "score": [ @@ -92932,15 +91888,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3016, + "id": 4268, "result": { "type": "IOI", "score": [ @@ -92952,19 +91908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3032, + "id": 4269, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -92973,14 +91929,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3995, + "id": 4270, "result": { "type": "IOI", "score": [ @@ -92992,15 +91948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4028, + "id": 4271, "result": { "type": "IOI", "score": [ @@ -93012,19 +91968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4041, + "id": 4272, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93033,14 +91989,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 18, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4063, + "id": 4273, "result": { "type": "IOI", "score": [ @@ -93052,19 +92008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4181, + "id": 4274, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93072,19 +92028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4449, + "id": 4275, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93092,19 +92048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.4", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4798, + "id": 4276, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93112,15 +92068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5767, + "id": 4277, "result": { "type": "IOI", "score": [ @@ -93132,15 +92088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5888, + "id": 4278, "result": { "type": "IOI", "score": [ @@ -93153,14 +92109,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6329, + "id": 4279, "result": { "type": "IOI", "score": [ @@ -93172,15 +92128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6344, + "id": 4280, "result": { "type": "IOI", "score": [ @@ -93193,18 +92149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6432, + "id": 4281, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93212,15 +92168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6470, + "id": 4282, "result": { "type": "IOI", "score": [ @@ -93232,15 +92188,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7238, + "id": 4283, "result": { "type": "IOI", "score": [ @@ -93252,15 +92208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7250, + "id": 4284, "result": { "type": "IOI", "score": [ @@ -93272,15 +92228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7617, + "id": 4285, "result": { "type": "IOI", "score": [ @@ -93292,19 +92248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7671, + "id": 4286, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93312,19 +92268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7783, + "id": 4287, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93332,19 +92288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7896, + "id": 4288, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93352,15 +92308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7915, + "id": 4289, "result": { "type": "IOI", "score": [ @@ -93372,20 +92328,44 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8036, + "id": 4290, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144196", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4291, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -93393,14 +92373,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8052, + "id": 4292, "result": { "type": "IOI", "score": [ @@ -93412,20 +92392,44 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8127, + "id": 4293, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144517", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4294, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -93433,14 +92437,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8184, + "id": 4295, "result": { "type": "IOI", "score": [ @@ -93452,19 +92456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8291, + "id": 4296, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93473,18 +92477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8302, + "id": 4297, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93493,14 +92497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8424, + "id": 4298, "result": { "type": "IOI", "score": [ @@ -93513,14 +92517,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8478, + "id": 4299, "result": { "type": "IOI", "score": [ @@ -93533,18 +92537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 18, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8536, + "id": 4300, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93552,19 +92556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9580, + "id": 4301, "result": { "type": "IOI", "score": [ - 12.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93573,18 +92577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 18, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9977, + "id": 4302, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93592,19 +92596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 18, + "problemId": "d1.4", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10383, + "id": 4303, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93613,18 +92617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 18, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10530, + "id": 4304, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93632,15 +92636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 18, + "problemId": "d1.2", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10999, + "id": 4305, "result": { "type": "IOI", "score": [ @@ -93652,19 +92656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 18, + "problemId": "d1.1", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 224, + "id": 4306, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93672,19 +92676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 96, + "problemId": "d1.3", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 285, + "id": 4307, "result": { "type": "IOI", "score": [ - 100.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93693,14 +92697,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 96, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3471, + "id": 4308, "result": { "type": "IOI", "score": [ @@ -93712,19 +92716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3552, + "id": 4309, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93732,19 +92736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.2", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3614, + "id": 4310, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93753,18 +92757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 96, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4075, + "id": 4311, "result": { "type": "IOI", "score": [ - 25.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93772,19 +92776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.4", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5454, + "id": 4312, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93792,43 +92796,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.1", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5527, + "id": 4313, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 96, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5579, + "id": 4314, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93836,15 +92836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5645, + "id": 4315, "result": { "type": "IOI", "score": [ @@ -93856,15 +92856,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5800, + "id": 4316, "result": { "type": "IOI", "score": [ @@ -93876,19 +92876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5821, + "id": 4317, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93896,19 +92896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5958, + "id": 4318, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93917,18 +92917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 96, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6059, + "id": 4319, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93937,18 +92937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 96, + "teamId": "144213", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6208, + "id": 4320, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93956,19 +92956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6250, + "id": 4321, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93976,19 +92976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.4", + "teamId": "144505", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6591, + "id": 4322, "result": { "type": "IOI", "score": [ - 32.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -93996,19 +92996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.4", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6765, + "id": 4323, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94017,18 +93017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 96, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6980, + "id": 4324, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94036,19 +93036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 96, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7147, + "id": 4325, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94056,19 +93056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.2", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7246, + "id": 4326, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94077,18 +93077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 96, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7373, + "id": 4327, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94097,18 +93097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 96, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7565, + "id": 4328, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94116,19 +93116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7637, + "id": 4329, "result": { "type": "IOI", "score": [ - 57.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94137,18 +93137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 96, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7683, + "id": 4330, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94156,19 +93156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 96, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9283, + "id": 4331, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94176,15 +93176,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 96, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11252, + "id": 4332, "result": { "type": "IOI", "score": [ @@ -94197,14 +93197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 96, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11514, + "id": 4333, "result": { "type": "IOI", "score": [ @@ -94216,19 +93216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 96, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 225, + "id": 4334, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94237,18 +93237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 314, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 654, + "id": 4335, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94256,39 +93256,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.3", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 901, + "id": 4336, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 912, + "id": 4337, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94296,19 +93300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1944, + "id": 4338, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94316,19 +93320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2172, + "id": 4339, "result": { "type": "IOI", "score": [ - 36.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94336,19 +93340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2248, + "id": 4340, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94356,19 +93360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 314, + "problemId": "d1.3", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2640, + "id": 4341, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94376,19 +93380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 314, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4818, + "id": 4342, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94397,14 +93401,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 314, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5129, + "id": 4343, "result": { "type": "IOI", "score": [ @@ -94416,19 +93420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5271, + "id": 4344, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94436,19 +93440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5544, + "id": 4345, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94456,15 +93460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5630, + "id": 4346, "result": { "type": "IOI", "score": [ @@ -94476,15 +93480,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5839, + "id": 4347, "result": { "type": "IOI", "score": [ @@ -94496,15 +93500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6031, + "id": 4348, "result": { "type": "IOI", "score": [ @@ -94516,19 +93520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6171, + "id": 4349, "result": { "type": "IOI", "score": [ - 0.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94536,19 +93540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6201, + "id": 4350, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94557,14 +93561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 314, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6309, + "id": 4351, "result": { "type": "IOI", "score": [ @@ -94577,18 +93581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 314, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6573, + "id": 4352, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94596,15 +93600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.1", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6771, + "id": 4353, "result": { "type": "IOI", "score": [ @@ -94617,18 +93621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 314, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7505, + "id": 4354, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94636,19 +93640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.2", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7605, + "id": 4355, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94656,19 +93660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10630, + "id": 4356, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94676,19 +93680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10812, + "id": 4357, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94697,18 +93701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 314, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10993, + "id": 4358, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94716,19 +93720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11292, + "id": 4359, "result": { "type": "IOI", "score": [ - 10.0 + 40.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94736,19 +93740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11938, + "id": 4360, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94756,19 +93760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 314, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 227, + "id": 4361, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94776,19 +93780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 244, + "id": 4362, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94796,19 +93800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 405, + "id": 4363, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94816,19 +93820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1073, + "id": 4364, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94836,19 +93840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1118, + "id": 4365, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94856,19 +93860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1176, + "id": 4366, "result": { "type": "IOI", "score": [ - 50.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94877,18 +93881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 349, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1265, + "id": 4367, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94896,19 +93900,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144315", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4368, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 349, + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1281, + "id": 4369, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94916,19 +93944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1299, + "id": 4370, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94937,18 +93965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 349, + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1384, + "id": 4371, "result": { "type": "IOI", "score": [ - 36.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94956,15 +93984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1415, + "id": 4372, "result": { "type": "IOI", "score": [ @@ -94976,19 +94004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1459, + "id": 4373, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -94996,19 +94024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1487, + "id": 4374, "result": { "type": "IOI", "score": [ - 50.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95016,19 +94044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1506, + "id": 4375, "result": { "type": "IOI", "score": [ - 50.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95036,19 +94064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1516, + "id": 4376, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95056,19 +94084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1520, + "id": 4377, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95076,19 +94104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1531, + "id": 4378, "result": { "type": "IOI", "score": [ - 50.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95096,19 +94124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1566, + "id": 4379, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95116,19 +94144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1574, + "id": 4380, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95136,15 +94164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2492, + "id": 4381, "result": { "type": "IOI", "score": [ @@ -95157,14 +94185,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 349, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2771, + "id": 4382, "result": { "type": "IOI", "score": [ @@ -95177,14 +94205,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 349, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2797, + "id": 4383, "result": { "type": "IOI", "score": [ @@ -95196,19 +94224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2957, + "id": 4384, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95216,19 +94244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3185, + "id": 4385, "result": { "type": "IOI", "score": [ - 10.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95236,19 +94264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3236, + "id": 4386, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95256,19 +94284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3266, + "id": 4387, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95277,18 +94305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 349, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3310, + "id": 4388, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95296,19 +94324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3642, + "id": 4389, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95316,19 +94344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3706, + "id": 4390, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95336,19 +94364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4748, + "id": 4391, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95356,15 +94384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4770, + "id": 4392, "result": { "type": "IOI", "score": [ @@ -95376,15 +94404,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4852, + "id": 4393, "result": { "type": "IOI", "score": [ @@ -95397,18 +94425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4912, + "id": 4394, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95416,15 +94444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4976, + "id": 4395, "result": { "type": "IOI", "score": [ @@ -95437,14 +94465,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4994, + "id": 4396, "result": { "type": "IOI", "score": [ @@ -95456,15 +94484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5029, + "id": 4397, "result": { "type": "IOI", "score": [ @@ -95476,15 +94504,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5045, + "id": 4398, "result": { "type": "IOI", "score": [ @@ -95496,19 +94524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5057, + "id": 4399, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95516,19 +94544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5118, + "id": 4400, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95537,14 +94565,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5140, + "id": 4401, "result": { "type": "IOI", "score": [ @@ -95556,15 +94584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5222, + "id": 4402, "result": { "type": "IOI", "score": [ @@ -95577,34 +94605,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5228, + "id": 4403, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5301, + "id": 4404, "result": { "type": "IOI", "score": [ @@ -95617,14 +94649,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5316, + "id": 4405, "result": { "type": "IOI", "score": [ @@ -95636,15 +94668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5426, + "id": 4406, "result": { "type": "IOI", "score": [ @@ -95657,14 +94689,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5490, + "id": 4407, "result": { "type": "IOI", "score": [ @@ -95676,15 +94708,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5519, + "id": 4408, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144383", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4409, "result": { "type": "IOI", "score": [ @@ -95697,18 +94749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5742, + "id": 4410, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95716,15 +94768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5968, + "id": 4411, "result": { "type": "IOI", "score": [ @@ -95737,18 +94789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6659, + "id": 4412, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95757,18 +94809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6683, + "id": 4413, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95776,19 +94828,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6858, + "id": 4414, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144239", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4415, + "result": { + "type": "IOI", + "score": [ + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95796,15 +94872,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6988, + "id": 4416, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144282", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4417, "result": { "type": "IOI", "score": [ @@ -95816,15 +94912,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9321, + "id": 4418, "result": { "type": "IOI", "score": [ @@ -95837,18 +94933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 349, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9576, + "id": 4419, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95857,18 +94953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9683, + "id": 4420, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95876,19 +94972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9725, + "id": 4421, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95896,15 +94992,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9784, + "id": 4422, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144231", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4423, "result": { "type": "IOI", "score": [ @@ -95917,42 +95033,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9814, + "id": 4424, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9848, + "id": 4425, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95960,19 +95072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9918, + "id": 4426, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -95980,19 +95092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9984, + "id": 4427, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96001,18 +95113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10017, + "id": 4428, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96020,19 +95132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10067, + "id": 4429, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96041,18 +95153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10202, + "id": 4430, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96061,18 +95173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10260, + "id": 4431, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96080,19 +95192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10362, + "id": 4432, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96100,19 +95212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10509, + "id": 4433, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96120,19 +95232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10526, + "id": 4434, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96140,19 +95252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10618, + "id": 4435, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96160,19 +95272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10759, + "id": 4436, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96180,19 +95292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10865, + "id": 4437, "result": { "type": "IOI", "score": [ - 16.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96200,19 +95312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10914, + "id": 4438, "result": { "type": "IOI", "score": [ - 16.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96220,19 +95332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10994, + "id": 4439, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96241,18 +95353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11104, + "id": 4440, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96260,19 +95372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11216, + "id": 4441, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96281,18 +95393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11355, + "id": 4442, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96301,18 +95413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11516, + "id": 4443, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96320,19 +95432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 349, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11564, + "id": 4444, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96341,18 +95453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 349, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 229, + "id": 4445, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96360,15 +95472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 300, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 383, + "id": 4446, "result": { "type": "IOI", "score": [ @@ -96380,19 +95492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 300, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 476, + "id": 4447, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96400,19 +95512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 300, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 539, + "id": 4448, "result": { "type": "IOI", "score": [ - 36.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96420,19 +95532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 300, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 715, + "id": 4449, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96440,15 +95552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 300, + "problemId": "d1.3", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3984, + "id": 4450, "result": { "type": "IOI", "score": [ @@ -96461,18 +95573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4052, + "id": 4451, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96481,18 +95593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4434, + "id": 4452, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96501,18 +95613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5214, + "id": 4453, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96521,14 +95633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6216, + "id": 4454, "result": { "type": "IOI", "score": [ @@ -96541,18 +95653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6253, + "id": 4455, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96560,15 +95672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 300, + "problemId": "d1.4", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6903, + "id": 4456, "result": { "type": "IOI", "score": [ @@ -96581,18 +95693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7216, + "id": 4457, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96600,15 +95712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 300, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7247, + "id": 4458, "result": { "type": "IOI", "score": [ @@ -96621,18 +95733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7381, + "id": 4459, "result": { "type": "IOI", "score": [ - 0.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96641,18 +95753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7449, + "id": 4460, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96660,19 +95772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 300, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7620, + "id": 4461, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96680,15 +95792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7826, + "id": 4462, "result": { "type": "IOI", "score": [ @@ -96701,14 +95813,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7978, + "id": 4463, "result": { "type": "IOI", "score": [ @@ -96721,14 +95833,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7997, + "id": 4464, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144154", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4465, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144176", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4466, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144428", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4467, "result": { "type": "IOI", "score": [ @@ -96740,15 +95912,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8390, + "id": 4468, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144231", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4469, "result": { "type": "IOI", "score": [ @@ -96761,18 +95953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 300, + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8994, + "id": 4470, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96781,34 +95973,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9230, + "id": 4471, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9263, + "id": 4472, "result": { "type": "IOI", "score": [ @@ -96820,15 +96016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9354, + "id": 4473, "result": { "type": "IOI", "score": [ @@ -96841,18 +96037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9491, + "id": 4474, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96860,15 +96056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9653, + "id": 4475, "result": { "type": "IOI", "score": [ @@ -96881,18 +96077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9701, + "id": 4476, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96900,19 +96096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9799, + "id": 4477, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96920,19 +96116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11005, + "id": 4478, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -96941,14 +96137,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11276, + "id": 4479, "result": { "type": "IOI", "score": [ @@ -96960,15 +96156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11479, + "id": 4480, "result": { "type": "IOI", "score": [ @@ -96980,19 +96176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.3", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11639, + "id": 4481, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97000,19 +96196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11710, + "id": 4482, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97020,15 +96216,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11987, + "id": 4483, "result": { "type": "IOI", "score": [ @@ -97041,18 +96237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 300, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12061, + "id": 4484, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97060,19 +96256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 300, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 231, + "id": 4485, "result": { "type": "IOI", "score": [ - 24.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97080,15 +96276,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 839, + "id": 4486, "result": { "type": "IOI", "score": [ @@ -97100,15 +96296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 415, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 856, + "id": 4487, "result": { "type": "IOI", "score": [ @@ -97121,18 +96317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 415, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 937, + "id": 4488, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97140,19 +96336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1074, + "id": 4489, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97160,19 +96356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1150, + "id": 4490, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97181,18 +96377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 415, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2994, + "id": 4491, "result": { "type": "IOI", "score": [ - 21.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97201,14 +96397,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 415, + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3156, + "id": 4492, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144367", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4493, "result": { "type": "IOI", "score": [ @@ -97221,18 +96437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 415, + "teamId": "144112", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3202, + "id": 4494, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97240,19 +96456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3276, + "id": 4495, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97260,19 +96476,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3299, + "id": 4496, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144493", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4497, + "result": { + "type": "IOI", + "score": [ + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97280,15 +96520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3313, + "id": 4498, "result": { "type": "IOI", "score": [ @@ -97301,18 +96541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 415, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3455, + "id": 4499, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97320,19 +96560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3529, + "id": 4500, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97340,8 +96580,28 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144497", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4501, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97361,18 +96621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 415, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6672, + "id": 4503, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97380,19 +96640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7007, + "id": 4504, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97400,15 +96660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7022, + "id": 4505, "result": { "type": "IOI", "score": [ @@ -97421,18 +96681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7032, + "id": 4506, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97440,19 +96700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7122, + "id": 4507, "result": { "type": "IOI", "score": [ - 22.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97460,19 +96720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7191, + "id": 4508, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97480,19 +96740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7212, + "id": 4509, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97501,18 +96761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7298, + "id": 4510, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97520,19 +96780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7320, + "id": 4511, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97540,19 +96800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8190, + "id": 4512, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97561,18 +96821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8212, + "id": 4513, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97581,18 +96841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8243, + "id": 4514, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97600,19 +96860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8256, + "id": 4515, "result": { "type": "IOI", "score": [ - 35.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97620,19 +96880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8275, + "id": 4516, "result": { "type": "IOI", "score": [ - 35.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97641,18 +96901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8300, + "id": 4517, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97660,19 +96920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8332, + "id": 4518, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97680,19 +96940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8356, + "id": 4519, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97700,19 +96960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8392, + "id": 4520, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97720,19 +96980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8409, + "id": 4521, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97740,19 +97000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8455, + "id": 4522, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97760,19 +97020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8942, + "id": 4523, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97780,19 +97040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9004, + "id": 4524, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97800,19 +97060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9024, + "id": 4525, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97820,19 +97080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9045, + "id": 4526, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97840,19 +97100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9066, + "id": 4527, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97860,19 +97120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 415, + "problemId": "d1.4", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9090, + "id": 4528, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97881,14 +97141,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 415, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 232, + "id": 4529, "result": { "type": "IOI", "score": [ @@ -97901,18 +97161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 429, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 241, + "id": 4530, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97920,19 +97180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 429, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 423, + "id": 4531, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97940,19 +97200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 628, + "id": 4532, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -97960,15 +97220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2280, + "id": 4533, "result": { "type": "IOI", "score": [ @@ -97980,15 +97240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 429, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2610, + "id": 4534, "result": { "type": "IOI", "score": [ @@ -98000,19 +97260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 429, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2654, + "id": 4535, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98020,15 +97280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6816, + "id": 4536, "result": { "type": "IOI", "score": [ @@ -98040,19 +97300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 429, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6987, + "id": 4537, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98060,15 +97320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8134, + "id": 4538, "result": { "type": "IOI", "score": [ @@ -98080,19 +97340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8172, + "id": 4539, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98101,14 +97361,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 429, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8241, + "id": 4540, "result": { "type": "IOI", "score": [ @@ -98121,14 +97381,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 429, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8977, + "id": 4541, "result": { "type": "IOI", "score": [ @@ -98140,15 +97400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.2", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9311, + "id": 4542, "result": { "type": "IOI", "score": [ @@ -98160,15 +97420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10900, + "id": 4543, "result": { "type": "IOI", "score": [ @@ -98180,19 +97440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.2", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11019, + "id": 4544, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98200,19 +97460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11168, + "id": 4545, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98220,15 +97480,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 429, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 233, + "id": 4546, "result": { "type": "IOI", "score": [ @@ -98240,15 +97500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 261, + "id": 4547, "result": { "type": "IOI", "score": [ @@ -98260,19 +97520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.2", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 340, + "id": 4548, "result": { "type": "IOI", "score": [ - 37.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98280,19 +97540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 557, + "id": 4549, "result": { "type": "IOI", "score": [ - 37.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98300,19 +97560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 670, + "id": 4550, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98320,19 +97580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 770, + "id": 4551, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98340,15 +97600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1094, + "id": 4552, "result": { "type": "IOI", "score": [ @@ -98360,19 +97620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1162, + "id": 4553, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98380,19 +97640,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1213, + "id": 4554, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144161", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4555, + "result": { + "type": "IOI", + "score": [ + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98401,14 +97681,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 337, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1247, + "id": 4556, "result": { "type": "IOI", "score": [ @@ -98420,19 +97700,83 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144207", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4557, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144245", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4558, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 337, + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1294, + "id": 4559, "result": { "type": "IOI", "score": [ - 57.0 + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144300", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4560, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98441,14 +97785,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 337, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2038, + "id": 4561, + "result": { + "type": "IOI", + "score": [ + 20.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144518", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4562, "result": { "type": "IOI", "score": [ @@ -98460,19 +97824,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144233", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4563, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 337, + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2078, + "id": 4564, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98480,19 +97868,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2907, + "id": 4565, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144294", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4566, + "result": { + "type": "IOI", + "score": [ + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98500,19 +97912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3018, + "id": 4567, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98521,18 +97933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 337, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4085, + "id": 4568, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98540,15 +97952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4700, + "id": 4569, "result": { "type": "IOI", "score": [ @@ -98561,18 +97973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 337, + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4785, + "id": 4570, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98580,19 +97992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 337, + "problemId": "d1.2", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4888, + "id": 4571, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98600,19 +98012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 337, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6443, + "id": 4572, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98621,18 +98033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 337, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6574, + "id": 4573, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98640,19 +98052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6642, + "id": 4574, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98660,19 +98072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 337, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6974, + "id": 4575, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98681,18 +98093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 337, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9267, + "id": 4576, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98700,19 +98112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10042, + "id": 4577, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98720,19 +98132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.1", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10744, + "id": 4578, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98740,19 +98152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.2", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10893, + "id": 4579, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98760,19 +98172,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 337, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11130, + "id": 4580, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144235", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4581, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98781,18 +98213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 337, + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11545, + "id": 4582, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98801,18 +98233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 337, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11657, + "id": 4583, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98821,18 +98253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 337, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 236, + "id": 4584, "result": { "type": "IOI", "score": [ - 15.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98840,19 +98272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 418, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 351, + "id": 4585, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98861,18 +98293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 418, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 722, + "id": 4586, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98880,19 +98312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 418, + "problemId": "d1.2", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1040, + "id": 4587, "result": { "type": "IOI", "score": [ - 24.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98900,19 +98332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 418, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1770, + "id": 4588, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -98920,15 +98352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 418, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3012, + "id": 4589, "result": { "type": "IOI", "score": [ @@ -98940,15 +98372,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 418, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3180, + "id": 4590, "result": { "type": "IOI", "score": [ @@ -98961,14 +98393,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 418, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3451, + "id": 4591, "result": { "type": "IOI", "score": [ @@ -98980,15 +98412,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 418, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3467, + "id": 4592, + "result": { + "type": "IOI", + "score": [ + 67.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144238", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4593, "result": { "type": "IOI", "score": [ @@ -99001,14 +98453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 418, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4480, + "id": 4594, "result": { "type": "IOI", "score": [ @@ -99021,18 +98473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 418, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4726, + "id": 4595, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99040,15 +98492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 418, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9634, + "id": 4596, "result": { "type": "IOI", "score": [ @@ -99060,19 +98512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 418, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10281, + "id": 4597, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99080,15 +98532,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 418, + "problemId": "d1.4", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11490, + "id": 4598, "result": { "type": "IOI", "score": [ @@ -99100,15 +98552,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 418, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 237, + "id": 4599, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144450", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4600, "result": { "type": "IOI", "score": [ @@ -99120,15 +98592,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 452, + "id": 4601, "result": { "type": "IOI", "score": [ @@ -99141,18 +98613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 473, + "id": 4602, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99161,14 +98633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 520, + "id": 4603, "result": { "type": "IOI", "score": [ @@ -99181,38 +98653,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1091, + "id": 4604, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1105, + "id": 4605, "result": { "type": "IOI", "score": [ @@ -99225,14 +98693,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1160, + "id": 4606, "result": { "type": "IOI", "score": [ @@ -99245,14 +98713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1260, + "id": 4607, "result": { "type": "IOI", "score": [ @@ -99264,15 +98732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1316, + "id": 4608, "result": { "type": "IOI", "score": [ @@ -99284,19 +98752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 153, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1390, + "id": 4609, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99305,14 +98773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1528, + "id": 4610, "result": { "type": "IOI", "score": [ @@ -99325,18 +98793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1775, + "id": 4611, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99344,19 +98812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 153, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1820, + "id": 4612, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99365,14 +98833,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2899, + "id": 4613, "result": { "type": "IOI", "score": [ @@ -99385,18 +98853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 153, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3186, + "id": 4614, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99404,19 +98872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3231, + "id": 4615, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99424,19 +98892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 153, + "problemId": "d1.1", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3468, + "id": 4616, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99444,19 +98912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3511, + "id": 4617, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99464,19 +98932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 153, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3565, + "id": 4618, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99484,19 +98952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 153, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4735, + "id": 4619, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99504,19 +98972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5348, + "id": 4620, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99525,14 +98993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5489, + "id": 4621, "result": { "type": "IOI", "score": [ @@ -99549,18 +99017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5504, + "id": 4622, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99569,18 +99037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5539, + "id": 4623, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99589,18 +99057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7158, + "id": 4624, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99608,19 +99076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7218, + "id": 4625, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99628,19 +99096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7393, + "id": 4626, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99649,18 +99117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7451, + "id": 4627, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99668,15 +99136,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7709, + "id": 4628, "result": { "type": "IOI", "score": [ @@ -99692,19 +99160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7761, + "id": 4629, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99712,19 +99180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7866, + "id": 4630, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99732,19 +99200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7924, + "id": 4631, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99752,19 +99220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7960, + "id": 4632, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99772,19 +99240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8113, + "id": 4633, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99793,18 +99261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8123, + "id": 4634, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99812,19 +99280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8147, + "id": 4635, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99832,19 +99300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8169, + "id": 4636, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99852,15 +99320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8198, + "id": 4637, "result": { "type": "IOI", "score": [ @@ -99873,18 +99341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8375, + "id": 4638, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99892,19 +99360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8446, + "id": 4639, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99912,19 +99380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8488, + "id": 4640, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99932,19 +99400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8511, + "id": 4641, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99952,19 +99420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.4", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8535, + "id": 4642, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99972,19 +99440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8557, + "id": 4643, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -99993,14 +99461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8562, + "id": 4644, "result": { "type": "IOI", "score": [ @@ -100013,18 +99481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8611, + "id": 4645, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100033,18 +99501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8640, + "id": 4646, "result": { "type": "IOI", "score": [ - 35.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100052,19 +99520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.4", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8708, + "id": 4647, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100072,19 +99540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8765, + "id": 4648, "result": { "type": "IOI", "score": [ - 35.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100093,18 +99561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8836, + "id": 4649, "result": { "type": "IOI", "score": [ - 35.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100112,19 +99580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.4", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8856, + "id": 4650, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100133,18 +99601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8894, + "id": 4651, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100152,19 +99620,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 153, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8919, + "id": 4652, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144280", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4653, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100173,18 +99661,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8927, + "id": 4654, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144287", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4655, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144173", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4656, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100193,18 +99721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8946, + "id": 4657, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100213,18 +99741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144131", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9086, + "id": 4658, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100233,18 +99761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9171, + "id": 4659, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100253,18 +99781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 153, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9747, + "id": 4660, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100273,14 +99801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 153, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9926, + "id": 4661, "result": { "type": "IOI", "score": [ @@ -100293,18 +99821,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 153, + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10117, + "id": 4662, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144443", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4663, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4664, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100313,18 +99881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 153, + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11601, + "id": 4665, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100332,19 +99900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 153, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11941, + "id": 4666, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100353,14 +99921,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11996, + "id": 4667, "result": { "type": "IOI", "score": [ @@ -100373,14 +99941,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 153, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 239, + "id": 4668, "result": { "type": "IOI", "score": [ @@ -100392,19 +99960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 565, + "id": 4669, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100412,15 +99980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1522, + "id": 4670, "result": { "type": "IOI", "score": [ @@ -100432,19 +100000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1526, + "id": 4671, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100452,19 +100020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 30, + "problemId": "d1.1", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1914, + "id": 4672, "result": { "type": "IOI", "score": [ - 23.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100472,19 +100040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3541, + "id": 4673, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100492,19 +100060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3644, + "id": 4674, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100512,19 +100080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3794, + "id": 4675, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100532,39 +100100,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5263, + "id": 4676, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 30, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5843, + "id": 4677, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100572,19 +100144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6663, + "id": 4678, "result": { "type": "IOI", "score": [ - 24.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100592,19 +100164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6716, + "id": 4679, "result": { "type": "IOI", "score": [ - 38.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100613,14 +100185,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 30, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6966, + "id": 4680, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144134", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4681, "result": { "type": "IOI", "score": [ @@ -100633,18 +100225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 30, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7275, + "id": 4682, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100652,19 +100244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7679, + "id": 4683, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100672,19 +100264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7812, + "id": 4684, "result": { "type": "IOI", "score": [ - 23.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100692,43 +100284,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7892, + "id": 4685, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7918, + "id": 4686, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100736,15 +100324,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8471, + "id": 4687, "result": { "type": "IOI", "score": [ @@ -100757,18 +100345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 30, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8591, + "id": 4688, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100776,19 +100364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8722, + "id": 4689, "result": { "type": "IOI", "score": [ - 23.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100796,19 +100384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 30, + "problemId": "d1.2", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8793, + "id": 4690, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100816,63 +100404,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10391, + "id": 4691, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 30, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10452, + "id": 4692, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 30, + "problemId": "d1.1", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10500, + "id": 4693, "result": { "type": "IOI", "score": [ @@ -100884,19 +100464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 30, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11431, + "id": 4694, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100905,14 +100485,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 30, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11776, + "id": 4695, "result": { "type": "IOI", "score": [ @@ -100924,19 +100504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 30, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 240, + "id": 4696, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100944,19 +100524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 154, + "problemId": "d1.1", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2011, + "id": 4697, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -100965,14 +100545,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 154, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2367, + "id": 4698, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144172", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4699, "result": { "type": "IOI", "score": [ @@ -100984,19 +100584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 154, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2418, + "id": 4700, "result": { "type": "IOI", "score": [ - 35.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101004,19 +100604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 154, + "problemId": "d1.4", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2576, + "id": 4701, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101024,19 +100624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 154, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6511, + "id": 4702, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101045,18 +100645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6654, + "id": 4703, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101064,15 +100664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6675, + "id": 4704, "result": { "type": "IOI", "score": [ @@ -101084,19 +100684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6694, + "id": 4705, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101104,15 +100704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6714, + "id": 4706, "result": { "type": "IOI", "score": [ @@ -101124,15 +100724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6819, + "id": 4707, "result": { "type": "IOI", "score": [ @@ -101145,18 +100745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7927, + "id": 4708, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101164,19 +100764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8307, + "id": 4709, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101184,19 +100784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.4", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8475, + "id": 4710, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101205,18 +100805,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10145, + "id": 4711, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101225,18 +100825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10240, + "id": 4712, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101244,19 +100844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.2", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10403, + "id": 4713, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101265,18 +100865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10541, + "id": 4714, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101285,14 +100885,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10574, + "id": 4715, "result": { "type": "IOI", "score": [ @@ -101308,19 +100908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.1", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10595, + "id": 4716, "result": { "type": "IOI", "score": [ - 48.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101328,19 +100928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10836, + "id": 4717, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101349,18 +100949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 154, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11964, + "id": 4718, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101368,15 +100968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 154, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 242, + "id": 4719, "result": { "type": "IOI", "score": [ @@ -101389,18 +100989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 229, + "teamId": "144131", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1957, + "id": 4720, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101408,19 +101008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 229, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2013, + "id": 4721, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101428,15 +101028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 229, + "problemId": "d1.1", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2812, + "id": 4722, "result": { "type": "IOI", "score": [ @@ -101448,19 +101048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 229, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2959, + "id": 4723, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101469,18 +101069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 229, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3802, + "id": 4724, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101488,19 +101088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 229, + "problemId": "d1.1", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3931, + "id": 4725, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101508,19 +101108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 229, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3952, + "id": 4726, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101528,19 +101128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 229, + "problemId": "d1.3", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4426, + "id": 4727, "result": { "type": "IOI", "score": [ - 38.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101548,19 +101148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 229, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6788, + "id": 4728, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101569,14 +101169,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 229, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8265, + "id": 4729, "result": { "type": "IOI", "score": [ @@ -101589,14 +101189,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 229, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8696, + "id": 4730, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144423", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4731, "result": { "type": "IOI", "score": [ @@ -101609,18 +101229,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 229, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10453, + "id": 4732, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144506", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4733, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101629,18 +101269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 229, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11619, + "id": 4734, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101648,19 +101288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 229, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 243, + "id": 4735, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101669,14 +101309,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 330, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1630, + "id": 4736, "result": { "type": "IOI", "score": [ @@ -101688,15 +101328,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.2", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1784, + "id": 4737, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144111", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4738, "result": { "type": "IOI", "score": [ @@ -101708,19 +101368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2117, + "id": 4739, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101728,19 +101388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2687, + "id": 4740, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101748,15 +101408,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4282, + "id": 4741, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144363", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4742, "result": { "type": "IOI", "score": [ @@ -101769,14 +101449,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 330, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5355, + "id": 4743, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144173", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4744, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144221", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4745, "result": { "type": "IOI", "score": [ @@ -101788,15 +101508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5423, + "id": 4746, "result": { "type": "IOI", "score": [ @@ -101808,19 +101528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5634, + "id": 4747, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101828,19 +101548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6010, + "id": 4748, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101848,19 +101568,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6338, + "id": 4749, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144374", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4750, + "result": { + "type": "IOI", + "score": [ + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101869,18 +101609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 330, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6439, + "id": 4751, "result": { "type": "IOI", "score": [ - 63.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101889,14 +101629,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 330, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10959, + "id": 4752, "result": { "type": "IOI", "score": [ @@ -101909,18 +101649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 330, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11117, + "id": 4753, "result": { "type": "IOI", "score": [ - 63.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -101928,15 +101668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 330, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11170, + "id": 4754, "result": { "type": "IOI", "score": [ @@ -101948,15 +101688,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11250, + "id": 4755, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144309", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4756, "result": { "type": "IOI", "score": [ @@ -101968,15 +101728,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 330, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11575, + "id": 4757, "result": { "type": "IOI", "score": [ @@ -101989,18 +101749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 330, + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11632, + "id": 4758, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102008,63 +101768,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 330, + "problemId": "d1.1", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11878, + "id": 4759, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11911, + "id": 4760, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 330, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11937, + "id": 4761, "result": { "type": "IOI", "score": [ @@ -102077,18 +101829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 330, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 246, + "id": 4762, "result": { "type": "IOI", "score": [ - 36.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102096,19 +101848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 374, + "id": 4763, "result": { "type": "IOI", "score": [ - 36.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102116,19 +101868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 392, + "id": 4764, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102136,19 +101888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 464, + "id": 4765, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102156,19 +101908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2745, + "id": 4766, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102176,15 +101928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4404, + "id": 4767, "result": { "type": "IOI", "score": [ @@ -102197,14 +101949,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4444, + "id": 4768, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144403", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4769, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144390", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4770, "result": { "type": "IOI", "score": [ @@ -102217,14 +102009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4605, + "id": 4771, "result": { "type": "IOI", "score": [ @@ -102236,15 +102028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4668, + "id": 4772, "result": { "type": "IOI", "score": [ @@ -102256,8 +102048,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102277,18 +102069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4815, + "id": 4774, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102296,19 +102088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4909, + "id": 4775, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102316,19 +102108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5030, + "id": 4776, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102336,19 +102128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.2", + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5261, + "id": 4777, "result": { "type": "IOI", "score": [ - 32.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102356,19 +102148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5427, + "id": 4778, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102377,14 +102169,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5580, + "id": 4779, "result": { "type": "IOI", "score": [ @@ -102396,15 +102188,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5749, + "id": 4780, "result": { "type": "IOI", "score": [ @@ -102417,14 +102209,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5999, + "id": 4781, "result": { "type": "IOI", "score": [ @@ -102437,14 +102229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6024, + "id": 4782, "result": { "type": "IOI", "score": [ @@ -102457,18 +102249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6354, + "id": 4783, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102477,18 +102269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6488, + "id": 4784, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102497,18 +102289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8233, + "id": 4785, "result": { "type": "IOI", "score": [ - 16.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102516,19 +102308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8282, + "id": 4786, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102537,18 +102329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8344, + "id": 4787, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102556,19 +102348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8379, + "id": 4788, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102577,18 +102369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8426, + "id": 4789, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102596,15 +102388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8539, + "id": 4790, "result": { "type": "IOI", "score": [ @@ -102617,18 +102409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8573, + "id": 4791, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102636,15 +102428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8605, + "id": 4792, "result": { "type": "IOI", "score": [ @@ -102657,38 +102449,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8658, + "id": 4793, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.2", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8674, + "id": 4794, "result": { "type": "IOI", "score": [ @@ -102701,42 +102489,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8758, + "id": 4795, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8774, + "id": 4796, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102744,19 +102528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9041, + "id": 4797, "result": { "type": "IOI", "score": [ - 81.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102765,18 +102549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 148, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9198, + "id": 4798, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102784,19 +102568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9218, + "id": 4799, "result": { "type": "IOI", "score": [ - 81.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102804,19 +102588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 148, + "problemId": "d1.4", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10071, + "id": 4800, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102824,19 +102608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10568, + "id": 4801, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102844,15 +102628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10826, + "id": 4802, "result": { "type": "IOI", "score": [ @@ -102864,19 +102648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11063, + "id": 4803, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102885,18 +102669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 148, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11371, + "id": 4804, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102904,19 +102688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11914, + "id": 4805, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102924,19 +102708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12056, + "id": 4806, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102944,19 +102728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 148, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 247, + "id": 4807, "result": { "type": "IOI", "score": [ - 21.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102965,18 +102749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 376, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1545, + "id": 4808, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -102984,15 +102768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2354, + "id": 4809, "result": { "type": "IOI", "score": [ @@ -103004,43 +102788,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2443, + "id": 4810, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2460, + "id": 4811, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103048,15 +102828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2496, + "id": 4812, "result": { "type": "IOI", "score": [ @@ -103069,18 +102849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2605, + "id": 4813, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103089,18 +102869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2750, + "id": 4814, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103109,18 +102889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4097, + "id": 4815, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103128,19 +102908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4152, + "id": 4816, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103148,19 +102928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4206, + "id": 4817, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103168,15 +102948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4274, + "id": 4818, "result": { "type": "IOI", "score": [ @@ -103188,19 +102968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4331, + "id": 4819, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103208,19 +102988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4410, + "id": 4820, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103228,19 +103008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4448, + "id": 4821, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103248,19 +103028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4672, + "id": 4822, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103268,19 +103048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4697, + "id": 4823, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103288,19 +103068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4923, + "id": 4824, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103308,19 +103088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4965, + "id": 4825, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103328,19 +103108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5416, + "id": 4826, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103349,18 +103129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6400, + "id": 4827, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103368,19 +103148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6413, + "id": 4828, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103388,19 +103168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6487, + "id": 4829, "result": { "type": "IOI", "score": [ - 14.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103408,19 +103188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6521, + "id": 4830, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103428,19 +103208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7336, + "id": 4831, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103448,19 +103228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8089, + "id": 4832, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103468,19 +103248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8377, + "id": 4833, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103488,19 +103268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8481, + "id": 4834, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103508,19 +103288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9145, + "id": 4835, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103528,19 +103308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9450, + "id": 4836, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103548,15 +103328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9594, + "id": 4837, "result": { "type": "IOI", "score": [ @@ -103568,15 +103348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.4", + "teamId": "144334", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9733, + "id": 4838, "result": { "type": "IOI", "score": [ @@ -103589,14 +103369,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10176, + "id": 4839, "result": { "type": "IOI", "score": [ @@ -103608,19 +103388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10272, + "id": 4840, "result": { "type": "IOI", "score": [ - 57.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103628,19 +103408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 376, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10353, + "id": 4841, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103649,18 +103429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10429, + "id": 4842, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103668,19 +103448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.4", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10532, + "id": 4843, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103688,19 +103468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 376, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10739, + "id": 4844, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103709,18 +103489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 376, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12031, + "id": 4845, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103728,15 +103508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 376, + "problemId": "d1.3", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12092, + "id": 4846, "result": { "type": "IOI", "score": [ @@ -103749,38 +103529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 376, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 249, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 336, + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 264, + "id": 4847, "result": { "type": "IOI", "score": [ - 34.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103788,15 +103548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 336, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 321, + "id": 4848, "result": { "type": "IOI", "score": [ @@ -103808,39 +103568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 336, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 334, - "result": { - "type": "IOI", - "score": [ - 34.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 336, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 472, + "id": 4849, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103848,19 +103588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 336, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2837, + "id": 4850, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103869,18 +103609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 336, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2886, + "id": 4851, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103888,19 +103628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 336, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3076, + "id": 4852, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103908,15 +103648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 336, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3083, + "id": 4853, "result": { "type": "IOI", "score": [ @@ -103928,19 +103668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 336, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3505, + "id": 4854, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -103948,15 +103688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 336, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3572, + "id": 4855, "result": { "type": "IOI", "score": [ @@ -103972,79 +103712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 336, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3666, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 336, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3787, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 336, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4508, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 336, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4709, + "id": 4856, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104052,19 +103732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5458, + "id": 4857, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104073,14 +103753,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 336, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5554, + "id": 4858, "result": { "type": "IOI", "score": [ @@ -104093,18 +103773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 336, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5794, + "id": 4859, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104112,15 +103792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6048, + "id": 4860, "result": { "type": "IOI", "score": [ @@ -104132,19 +103812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6070, + "id": 4861, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104153,18 +103833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 336, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6867, + "id": 4862, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104172,19 +103852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6882, + "id": 4863, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104192,19 +103872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6961, + "id": 4864, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104212,19 +103892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6975, + "id": 4865, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104232,19 +103912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7399, + "id": 4866, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104252,15 +103932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 336, + "problemId": "d1.4", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7452, + "id": 4867, "result": { "type": "IOI", "score": [ @@ -104273,18 +103953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 336, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8264, + "id": 4868, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104292,15 +103972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11588, + "id": 4869, "result": { "type": "IOI", "score": [ @@ -104312,15 +103992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 336, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11696, + "id": 4870, "result": { "type": "IOI", "score": [ @@ -104332,19 +104012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 336, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11804, + "id": 4871, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104352,19 +104032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12025, + "id": 4872, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104372,19 +104052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 336, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 252, + "id": 4873, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104392,19 +104072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 279, + "id": 4874, "result": { "type": "IOI", "score": [ - 38.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104412,15 +104092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 389, + "id": 4875, "result": { "type": "IOI", "score": [ @@ -104433,38 +104113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 332, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2439, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 332, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3475, + "id": 4876, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104472,15 +104132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3525, + "id": 4877, "result": { "type": "IOI", "score": [ @@ -104492,15 +104152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3539, + "id": 4878, "result": { "type": "IOI", "score": [ @@ -104512,15 +104172,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3587, + "id": 4879, "result": { "type": "IOI", "score": [ @@ -104532,15 +104192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3631, + "id": 4880, "result": { "type": "IOI", "score": [ @@ -104552,19 +104212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3683, + "id": 4881, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104572,19 +104232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3746, + "id": 4882, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104592,19 +104252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3752, + "id": 4883, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104612,15 +104272,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5600, + "id": 4884, "result": { "type": "IOI", "score": [ @@ -104633,18 +104293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 332, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5764, + "id": 4885, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104653,18 +104313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 332, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5796, + "id": 4886, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104672,19 +104332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 332, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5939, + "id": 4887, "result": { "type": "IOI", "score": [ - 31.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104692,19 +104352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 332, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5965, + "id": 4888, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104712,15 +104372,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 332, + "problemId": "d1.4", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7742, + "id": 4889, "result": { "type": "IOI", "score": [ @@ -104732,19 +104392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 332, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7882, + "id": 4890, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104752,19 +104412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 332, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8001, + "id": 4891, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104773,14 +104433,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 332, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8107, + "id": 4892, "result": { "type": "IOI", "score": [ @@ -104793,34 +104453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 332, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8393, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 332, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11933, + "id": 4893, "result": { "type": "IOI", "score": [ @@ -104837,18 +104477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 332, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12015, + "id": 4894, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104856,19 +104496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 332, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 253, + "id": 4895, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104876,19 +104516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 345, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 940, + "id": 4896, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104896,15 +104536,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 345, + "problemId": "d1.3", + "teamId": "144295", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1083, + "id": 4897, "result": { "type": "IOI", "score": [ @@ -104917,18 +104557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 345, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1223, + "id": 4898, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104936,19 +104576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 345, + "problemId": "d1.3", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2315, + "id": 4899, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104957,14 +104597,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2505, + "id": 4900, "result": { "type": "IOI", "score": [ @@ -104977,18 +104617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2574, + "id": 4901, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -104996,19 +104636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.2", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2781, + "id": 4902, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105016,19 +104656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.1", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3514, + "id": 4903, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105036,15 +104676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.1", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3863, + "id": 4904, "result": { "type": "IOI", "score": [ @@ -105057,18 +104697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 345, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3893, + "id": 4905, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105076,19 +104716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 345, + "problemId": "d1.3", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5559, + "id": 4906, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105097,18 +104737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5946, + "id": 4907, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105116,19 +104756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.2", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6131, + "id": 4908, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105136,19 +104776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6568, + "id": 4909, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105157,18 +104797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8671, + "id": 4910, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105176,19 +104816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8974, + "id": 4911, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105197,18 +104837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9054, + "id": 4912, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105217,18 +104857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9233, + "id": 4913, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105236,19 +104876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11082, + "id": 4914, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105256,19 +104896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.2", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11428, + "id": 4915, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105276,15 +104916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 345, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11775, + "id": 4916, "result": { "type": "IOI", "score": [ @@ -105297,18 +104937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 345, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 254, + "id": 4917, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105316,19 +104956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 430, + "id": 4918, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105336,19 +104976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 448, + "id": 4919, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105356,43 +104996,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 549, + "id": 4920, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 586, + "id": 4921, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105400,19 +105036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 732, + "id": 4922, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105420,19 +105056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2331, + "id": 4923, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105440,15 +105076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2372, + "id": 4924, "result": { "type": "IOI", "score": [ @@ -105461,14 +105097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 7, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2740, + "id": 4925, "result": { "type": "IOI", "score": [ @@ -105481,18 +105117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 7, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3278, + "id": 4926, "result": { "type": "IOI", "score": [ - 31.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105500,19 +105136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 7, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3592, + "id": 4927, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105521,14 +105157,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 7, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3807, + "id": 4928, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144320", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4929, "result": { "type": "IOI", "score": [ @@ -105540,15 +105196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3916, + "id": 4930, "result": { "type": "IOI", "score": [ @@ -105561,14 +105217,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 7, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4235, + "id": 4931, "result": { "type": "IOI", "score": [ @@ -105580,15 +105236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4377, + "id": 4932, "result": { "type": "IOI", "score": [ @@ -105601,18 +105257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 7, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4411, + "id": 4933, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105620,43 +105276,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.4", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4893, + "id": 4934, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144110", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4935, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4917, + "id": 4936, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105664,19 +105336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4999, + "id": 4937, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105684,19 +105356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.2", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5053, + "id": 4938, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105704,19 +105376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5132, + "id": 4939, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105724,19 +105396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 7, + "problemId": "d1.2", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5611, + "id": 4940, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105745,18 +105417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 7, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6368, + "id": 4941, "result": { "type": "IOI", "score": [ - 10.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105764,19 +105436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 7, + "problemId": "d1.4", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7741, + "id": 4942, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105784,15 +105456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 7, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7874, + "id": 4943, "result": { "type": "IOI", "score": [ @@ -105805,18 +105477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 7, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11165, + "id": 4944, "result": { "type": "IOI", "score": [ - 13.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105824,19 +105496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11924, + "id": 4945, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105844,63 +105516,75 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 7, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 255, + "id": 4946, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 266, + "id": 4947, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144286", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4948, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 280, + "id": 4949, "result": { "type": "IOI", "score": [ @@ -105912,15 +105596,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 287, + "id": 4950, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144449", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 4951, "result": { "type": "IOI", "score": [ @@ -105932,15 +105636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 307, + "id": 4952, "result": { "type": "IOI", "score": [ @@ -105953,18 +105657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 68, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 330, + "id": 4953, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -105972,15 +105676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 364, + "id": 4954, "result": { "type": "IOI", "score": [ @@ -105992,15 +105696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 435, + "id": 4955, "result": { "type": "IOI", "score": [ @@ -106013,18 +105717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 68, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 449, + "id": 4956, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106032,15 +105736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 466, + "id": 4957, "result": { "type": "IOI", "score": [ @@ -106052,19 +105756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 479, + "id": 4958, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106072,19 +105776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 588, + "id": 4959, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106092,15 +105796,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 740, + "id": 4960, "result": { "type": "IOI", "score": [ @@ -106112,19 +105816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 749, + "id": 4961, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106132,19 +105836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 779, + "id": 4962, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106153,18 +105857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 68, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 796, + "id": 4963, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106172,19 +105876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 820, + "id": 4964, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106192,19 +105896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 830, + "id": 4965, "result": { "type": "IOI", "score": [ - 35.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106212,19 +105916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 842, + "id": 4966, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106233,14 +105937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 68, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1386, + "id": 4967, "result": { "type": "IOI", "score": [ @@ -106252,15 +105956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1462, + "id": 4968, "result": { "type": "IOI", "score": [ @@ -106272,19 +105976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2635, + "id": 4969, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106293,14 +105997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 68, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2951, + "id": 4970, "result": { "type": "IOI", "score": [ @@ -106312,19 +106016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3120, + "id": 4971, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106332,19 +106036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3293, + "id": 4972, "result": { "type": "IOI", "score": [ - 37.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106352,15 +106056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3423, + "id": 4973, "result": { "type": "IOI", "score": [ @@ -106372,15 +106076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3490, + "id": 4974, "result": { "type": "IOI", "score": [ @@ -106392,19 +106096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3527, + "id": 4975, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106413,14 +106117,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 68, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3624, + "id": 4976, "result": { "type": "IOI", "score": [ @@ -106432,19 +106136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3797, + "id": 4977, "result": { "type": "IOI", "score": [ - 25.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106452,15 +106156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4024, + "id": 4978, "result": { "type": "IOI", "score": [ @@ -106473,18 +106177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 68, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4391, + "id": 4979, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106493,18 +106197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 68, + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4799, + "id": 4980, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106512,19 +106216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5938, + "id": 4981, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106532,19 +106236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7265, + "id": 4982, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106552,19 +106256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7360, + "id": 4983, "result": { "type": "IOI", "score": [ - 31.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106572,19 +106276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.4", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7964, + "id": 4984, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106593,14 +106297,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 68, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7999, + "id": 4985, "result": { "type": "IOI", "score": [ @@ -106613,18 +106317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 68, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8365, + "id": 4986, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106632,15 +106336,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8484, + "id": 4987, "result": { "type": "IOI", "score": [ @@ -106653,18 +106357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 68, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8580, + "id": 4988, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106673,18 +106377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 68, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8789, + "id": 4989, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106692,19 +106396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.4", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9232, + "id": 4990, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106712,19 +106416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9329, + "id": 4991, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106733,18 +106437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 68, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9500, + "id": 4992, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106752,19 +106456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9641, + "id": 4993, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106772,15 +106476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 68, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9921, + "id": 4994, "result": { "type": "IOI", "score": [ @@ -106792,19 +106496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9966, + "id": 4995, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106812,35 +106516,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.2", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9996, + "id": 4996, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10037, + "id": 4997, "result": { "type": "IOI", "score": [ @@ -106853,18 +106561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 68, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10057, + "id": 4998, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106872,19 +106580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10157, + "id": 4999, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106892,19 +106600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10223, + "id": 5000, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106912,19 +106620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10389, + "id": 5001, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106932,19 +106640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10491, + "id": 5002, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106952,19 +106660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11229, + "id": 5003, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106972,19 +106680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11337, + "id": 5004, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -106992,19 +106700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11859, + "id": 5005, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107012,15 +106720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 68, + "problemId": "d1.3", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 256, + "id": 5006, "result": { "type": "IOI", "score": [ @@ -107032,19 +106740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 354, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 323, + "id": 5007, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107052,19 +106760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 354, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2830, + "id": 5008, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107073,14 +106781,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 354, + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3334, + "id": 5009, "result": { "type": "IOI", "score": [ @@ -107092,19 +106800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 354, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4088, + "id": 5010, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107112,15 +106820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 354, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7260, + "id": 5011, "result": { "type": "IOI", "score": [ @@ -107132,19 +106840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 354, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7780, + "id": 5012, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107152,19 +106860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 354, + "problemId": "d1.3", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7879, + "id": 5013, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107172,15 +106880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 354, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8031, + "id": 5014, "result": { "type": "IOI", "score": [ @@ -107193,18 +106901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 354, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8177, + "id": 5015, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107212,15 +106920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 354, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10711, + "id": 5016, "result": { "type": "IOI", "score": [ @@ -107232,15 +106940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 354, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11364, + "id": 5017, "result": { "type": "IOI", "score": [ @@ -107252,15 +106960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 354, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11625, + "id": 5018, "result": { "type": "IOI", "score": [ @@ -107272,19 +106980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 354, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12007, + "id": 5019, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107292,19 +107000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 354, + "problemId": "d1.4", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 260, + "id": 5020, "result": { "type": "IOI", "score": [ - 14.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107313,18 +107021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 396, + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 315, + "id": 5021, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107332,19 +107040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1147, + "id": 5022, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107353,14 +107061,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 396, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1196, + "id": 5023, "result": { "type": "IOI", "score": [ @@ -107373,18 +107081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 396, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1424, + "id": 5024, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107392,19 +107100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2185, + "id": 5025, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107413,18 +107121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 396, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2208, + "id": 5026, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107433,14 +107141,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 396, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2350, + "id": 5027, "result": { "type": "IOI", "score": [ @@ -107453,14 +107161,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 396, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2376, + "id": 5028, "result": { "type": "IOI", "score": [ @@ -107472,15 +107180,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3002, + "id": 5029, "result": { "type": "IOI", "score": [ @@ -107493,18 +107201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3338, + "id": 5030, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107513,18 +107221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3344, + "id": 5031, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107532,19 +107240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.4", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3382, + "id": 5032, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107552,15 +107260,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4489, + "id": 5033, "result": { "type": "IOI", "score": [ @@ -107573,14 +107281,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 396, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4519, + "id": 5034, "result": { "type": "IOI", "score": [ @@ -107593,14 +107301,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 396, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5806, + "id": 5035, "result": { "type": "IOI", "score": [ @@ -107612,19 +107320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5836, + "id": 5036, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107632,19 +107340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6006, + "id": 5037, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107652,19 +107360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6064, + "id": 5038, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107672,19 +107380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6767, + "id": 5039, "result": { "type": "IOI", "score": [ - 40.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107693,18 +107401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 396, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6889, + "id": 5040, "result": { "type": "IOI", "score": [ - 61.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107712,19 +107420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7481, + "id": 5041, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107732,19 +107440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7507, + "id": 5042, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107752,19 +107460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7550, + "id": 5043, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107772,15 +107480,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 396, + "problemId": "d1.2", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8370, + "id": 5044, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144076", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5045, "result": { "type": "IOI", "score": [ @@ -107793,14 +107521,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8504, + "id": 5046, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5047, "result": { "type": "IOI", "score": [ @@ -107813,18 +107561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9237, + "id": 5048, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107833,18 +107581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 396, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9255, + "id": 5049, "result": { "type": "IOI", "score": [ - 22.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107852,19 +107600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9314, + "id": 5050, "result": { "type": "IOI", "score": [ - 22.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107872,19 +107620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9366, + "id": 5051, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107892,19 +107640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9501, + "id": 5052, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107912,19 +107660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9752, + "id": 5053, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107932,19 +107680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9846, + "id": 5054, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107953,18 +107701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 396, + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9928, + "id": 5055, "result": { "type": "IOI", "score": [ - 22.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107972,19 +107720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 396, + "problemId": "d1.3", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10486, + "id": 5056, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -107992,15 +107740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 396, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11022, + "id": 5057, "result": { "type": "IOI", "score": [ @@ -108013,18 +107761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11188, + "id": 5058, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108033,18 +107781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 396, + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 262, + "id": 5059, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108052,15 +107800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 312, + "id": 5060, "result": { "type": "IOI", "score": [ @@ -108072,15 +107820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 451, + "id": 5061, "result": { "type": "IOI", "score": [ @@ -108092,19 +107840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1259, + "id": 5062, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108113,18 +107861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 255, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2158, + "id": 5063, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108132,19 +107880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2252, + "id": 5064, "result": { "type": "IOI", "score": [ - 36.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108152,19 +107900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2288, + "id": 5065, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108172,19 +107920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2380, + "id": 5066, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108192,19 +107940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2415, + "id": 5067, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108212,19 +107960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.2", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5210, + "id": 5068, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108232,19 +107980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5275, + "id": 5069, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108253,18 +108001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 255, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6018, + "id": 5070, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108272,19 +108020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 255, + "problemId": "d1.4", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6411, + "id": 5071, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108292,15 +108040,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.3", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7453, + "id": 5072, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144180", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5073, "result": { "type": "IOI", "score": [ @@ -108313,14 +108081,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 255, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7630, + "id": 5074, "result": { "type": "IOI", "score": [ @@ -108332,15 +108100,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 255, + "problemId": "d1.2", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7738, + "id": 5075, "result": { "type": "IOI", "score": [ @@ -108353,18 +108121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 255, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9328, + "id": 5076, "result": { "type": "IOI", "score": [ - 100.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108372,19 +108140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9929, + "id": 5077, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108393,18 +108161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 255, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10190, + "id": 5078, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108412,19 +108180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10398, + "id": 5079, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108432,15 +108200,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.4", + "teamId": "144441", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5080, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 255, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10477, + "id": 5081, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144175", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5082, "result": { "type": "IOI", "score": [ @@ -108452,15 +108264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10590, + "id": 5083, "result": { "type": "IOI", "score": [ @@ -108472,15 +108284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 255, + "problemId": "d1.1", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11177, + "id": 5084, "result": { "type": "IOI", "score": [ @@ -108493,18 +108305,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 255, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11307, + "id": 5085, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144517", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5086, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108512,19 +108348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 255, + "problemId": "d1.4", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11746, + "id": 5087, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108533,18 +108369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 255, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 263, + "id": 5088, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108552,15 +108388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 72, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6460, + "id": 5089, "result": { "type": "IOI", "score": [ @@ -108577,14 +108413,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6484, + "id": 5090, "result": { "type": "IOI", "score": [ @@ -108596,15 +108432,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 72, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6679, + "id": 5091, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144371", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5092, "result": { "type": "IOI", "score": [ @@ -108617,18 +108473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6897, + "id": 5093, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108637,18 +108493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6993, + "id": 5094, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108657,18 +108513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8861, + "id": 5095, "result": { "type": "IOI", "score": [ - 31.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108676,19 +108532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 72, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9353, + "id": 5096, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108696,19 +108552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 72, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9392, + "id": 5097, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108716,19 +108572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 72, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9457, + "id": 5098, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108736,19 +108592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 72, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9567, + "id": 5099, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108756,15 +108612,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 72, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10038, + "id": 5100, "result": { "type": "IOI", "score": [ @@ -108776,15 +108632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 72, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10232, + "id": 5101, "result": { "type": "IOI", "score": [ @@ -108797,14 +108653,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 72, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10571, + "id": 5102, "result": { "type": "IOI", "score": [ @@ -108817,18 +108673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 72, + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11106, + "id": 5103, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108837,18 +108693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11311, + "id": 5104, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108856,19 +108712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 72, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11496, + "id": 5105, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108877,18 +108733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 72, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 265, + "id": 5106, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108896,19 +108752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 408, + "problemId": "d1.2", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 318, + "id": 5107, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108916,19 +108772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 408, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2930, + "id": 5108, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108937,14 +108793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 408, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6085, + "id": 5109, "result": { "type": "IOI", "score": [ @@ -108956,19 +108812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 408, + "problemId": "d1.2", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9161, + "id": 5110, "result": { "type": "IOI", "score": [ - 14.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108977,18 +108833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 408, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10529, + "id": 5111, "result": { "type": "IOI", "score": [ - 27.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -108996,19 +108852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 408, + "problemId": "d1.3", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10944, + "id": 5112, "result": { "type": "IOI", "score": [ - 50.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109016,19 +108872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 408, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11184, + "id": 5113, "result": { "type": "IOI", "score": [ - 63.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109036,39 +108892,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 408, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11823, + "id": 5114, "result": { "type": "IOI", "score": [ - 76.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 408, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11849, + "id": 5115, "result": { "type": "IOI", "score": [ - 76.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109076,15 +108936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 408, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 267, + "id": 5116, "result": { "type": "IOI", "score": [ @@ -109096,19 +108956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 352, + "id": 5117, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109117,18 +108977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 36, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 432, + "id": 5118, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109136,19 +108996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 545, + "id": 5119, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109156,19 +109016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 851, + "id": 5120, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109176,19 +109036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.2", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 960, + "id": 5121, "result": { "type": "IOI", "score": [ - 23.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109196,15 +109056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2513, + "id": 5122, "result": { "type": "IOI", "score": [ @@ -109217,14 +109077,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 36, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2592, + "id": 5123, "result": { "type": "IOI", "score": [ @@ -109237,14 +109097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 36, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2678, + "id": 5124, "result": { "type": "IOI", "score": [ @@ -109256,39 +109116,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2729, + "id": 5125, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 36, + "problemId": "d1.4", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2752, + "id": 5126, "result": { "type": "IOI", "score": [ @@ -109301,18 +109157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 36, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2810, + "id": 5127, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109321,18 +109177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 36, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2876, + "id": 5128, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109341,14 +109197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 36, + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3675, + "id": 5129, "result": { "type": "IOI", "score": [ @@ -109361,18 +109217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 36, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3922, + "id": 5130, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109381,14 +109237,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 36, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3941, + "id": 5131, "result": { "type": "IOI", "score": [ @@ -109400,15 +109256,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144190", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5132, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 36, + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3973, + "id": 5133, "result": { "type": "IOI", "score": [ @@ -109420,15 +109296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 36, + "problemId": "d1.2", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4279, + "id": 5134, "result": { "type": "IOI", "score": [ @@ -109441,18 +109317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 36, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5254, + "id": 5135, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109460,19 +109336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6315, + "id": 5136, "result": { "type": "IOI", "score": [ - 9.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109480,19 +109356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6330, + "id": 5137, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109500,19 +109376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8530, + "id": 5138, "result": { "type": "IOI", "score": [ - 62.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109520,19 +109396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8780, + "id": 5139, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109540,19 +109416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.1", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9002, + "id": 5140, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109560,15 +109436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 36, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12029, + "id": 5141, "result": { "type": "IOI", "score": [ @@ -109581,18 +109457,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 36, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 271, + "id": 5142, "result": { "type": "IOI", "score": [ - 13.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109600,19 +109476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 77, + "problemId": "d1.1", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 308, + "id": 5143, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109620,19 +109496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 77, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 391, + "id": 5144, "result": { "type": "IOI", "score": [ - 62.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109640,19 +109516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 77, + "problemId": "d1.3", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1198, + "id": 5145, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109660,19 +109536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 77, + "problemId": "d1.1", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3061, + "id": 5146, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109680,19 +109556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 77, + "problemId": "d1.2", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3371, + "id": 5147, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109701,18 +109577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 77, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6293, + "id": 5148, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109720,19 +109596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 77, + "problemId": "d1.1", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6451, + "id": 5149, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109740,19 +109616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 77, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6601, + "id": 5150, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109760,19 +109636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 77, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7143, + "id": 5151, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109780,19 +109656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 77, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7408, + "id": 5152, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109800,15 +109676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 77, + "problemId": "d1.2", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8545, + "id": 5153, "result": { "type": "IOI", "score": [ @@ -109821,18 +109697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8608, + "id": 5154, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109841,14 +109717,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8651, + "id": 5155, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144475", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5156, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5157, "result": { "type": "IOI", "score": [ @@ -109861,14 +109781,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8698, + "id": 5158, "result": { "type": "IOI", "score": [ @@ -109881,18 +109801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8794, + "id": 5159, "result": { "type": "IOI", "score": [ - 17.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109901,14 +109821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8822, + "id": 5160, "result": { "type": "IOI", "score": [ @@ -109921,18 +109841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9257, + "id": 5161, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -109940,15 +109860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 77, + "problemId": "d1.2", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9297, + "id": 5162, "result": { "type": "IOI", "score": [ @@ -109960,15 +109880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 77, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9364, + "id": 5163, "result": { "type": "IOI", "score": [ @@ -109980,15 +109900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 77, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9398, + "id": 5164, "result": { "type": "IOI", "score": [ @@ -110001,18 +109921,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9447, + "id": 5165, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144256", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5166, + "result": { + "type": "IOI", + "score": [ + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110021,18 +109961,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 77, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 272, + "id": 5167, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144409", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5168, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144179", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5169, + "result": { + "type": "IOI", + "score": [ + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110041,14 +110021,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 300, + "id": 5170, "result": { "type": "IOI", "score": [ @@ -110060,15 +110040,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.3", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 450, + "id": 5171, "result": { "type": "IOI", "score": [ @@ -110080,19 +110060,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5172, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 486, + "id": 5173, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110101,38 +110101,62 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 604, + "id": 5174, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144508", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5175, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 684, + "id": 5176, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110140,15 +110164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2057, + "id": 5177, "result": { "type": "IOI", "score": [ @@ -110160,15 +110184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2162, + "id": 5178, "result": { "type": "IOI", "score": [ @@ -110180,15 +110204,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.3", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2223, + "id": 5179, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144387", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5180, "result": { "type": "IOI", "score": [ @@ -110200,15 +110244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2326, + "id": 5181, "result": { "type": "IOI", "score": [ @@ -110221,18 +110265,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2411, + "id": 5182, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144380", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5183, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110241,14 +110305,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2761, + "id": 5184, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144248", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5185, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144114", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 5186, "result": { "type": "IOI", "score": [ @@ -110265,18 +110373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 105, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2773, + "id": 5187, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110284,19 +110392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 105, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4586, + "id": 5188, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110305,18 +110413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 105, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4832, + "id": 5189, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110324,19 +110432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 105, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4995, + "id": 5190, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110345,18 +110453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 105, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5034, + "id": 5191, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110364,19 +110472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 105, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5081, + "id": 5192, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110384,19 +110492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 105, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6158, + "id": 5193, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110404,15 +110512,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6302, + "id": 5194, "result": { "type": "IOI", "score": [ @@ -110425,14 +110533,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 105, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6660, + "id": 5195, "result": { "type": "IOI", "score": [ @@ -110444,15 +110552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.2", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6817, + "id": 5196, "result": { "type": "IOI", "score": [ @@ -110464,15 +110572,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7054, + "id": 5197, "result": { "type": "IOI", "score": [ @@ -110485,14 +110593,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 105, + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8656, + "id": 5198, "result": { "type": "IOI", "score": [ @@ -110505,18 +110613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 105, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8709, + "id": 5199, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110524,19 +110632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.2", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9167, + "id": 5200, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110544,15 +110652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.4", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9473, + "id": 5201, "result": { "type": "IOI", "score": [ @@ -110564,15 +110672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.1", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9794, + "id": 5202, "result": { "type": "IOI", "score": [ @@ -110584,19 +110692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.4", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10654, + "id": 5203, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110604,19 +110712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 105, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11120, + "id": 5204, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110625,14 +110733,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 105, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11484, + "id": 5205, "result": { "type": "IOI", "score": [ @@ -110645,18 +110753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 105, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 274, + "id": 5206, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110664,19 +110772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 332, + "id": 5207, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110684,19 +110792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 356, + "id": 5208, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110704,15 +110812,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 892, + "id": 5209, "result": { "type": "IOI", "score": [ @@ -110724,19 +110832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 903, + "id": 5210, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110744,15 +110852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 931, + "id": 5211, "result": { "type": "IOI", "score": [ @@ -110764,39 +110872,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1019, + "id": 5212, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1041, + "id": 5213, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110804,19 +110916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1062, + "id": 5214, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110825,18 +110937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 66, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1126, + "id": 5215, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110845,18 +110957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 66, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1153, + "id": 5216, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110864,19 +110976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1164, + "id": 5217, "result": { "type": "IOI", "score": [ - 25.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110885,18 +110997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 66, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1310, + "id": 5218, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110904,19 +111016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2226, + "id": 5219, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110924,19 +111036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 66, + "problemId": "d1.4", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2254, + "id": 5220, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110944,15 +111056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3884, + "id": 5221, "result": { "type": "IOI", "score": [ @@ -110965,18 +111077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 66, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4103, + "id": 5222, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -110985,14 +111097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 66, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6475, + "id": 5223, "result": { "type": "IOI", "score": [ @@ -111004,15 +111116,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6584, + "id": 5224, "result": { "type": "IOI", "score": [ @@ -111024,15 +111136,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 66, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6628, + "id": 5225, "result": { "type": "IOI", "score": [ @@ -111045,14 +111157,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 66, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6773, + "id": 5226, "result": { "type": "IOI", "score": [ @@ -111064,19 +111176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 66, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6920, + "id": 5227, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111084,19 +111196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9870, + "id": 5228, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111104,19 +111216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10323, + "id": 5229, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111124,19 +111236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 66, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10656, + "id": 5230, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111145,18 +111257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 66, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10937, + "id": 5231, "result": { "type": "IOI", "score": [ - 14.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111164,43 +111276,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11279, + "id": 5232, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11363, + "id": 5233, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111209,18 +111317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 66, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11402, + "id": 5234, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111228,39 +111336,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 66, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12069, + "id": 5235, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 66, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 275, + "id": 5236, "result": { "type": "IOI", "score": [ @@ -111272,19 +111376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 381, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 331, + "id": 5237, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111292,19 +111396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 381, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 408, + "id": 5238, "result": { "type": "IOI", "score": [ - 100.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111313,18 +111417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 381, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1273, + "id": 5239, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111332,15 +111436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 381, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1846, + "id": 5240, "result": { "type": "IOI", "score": [ @@ -111353,18 +111457,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 381, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2436, + "id": 5241, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111373,14 +111477,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 381, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5101, + "id": 5242, "result": { "type": "IOI", "score": [ @@ -111392,15 +111496,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 381, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5281, + "id": 5243, "result": { "type": "IOI", "score": [ @@ -111412,15 +111516,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 381, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5858, + "id": 5244, "result": { "type": "IOI", "score": [ @@ -111432,19 +111536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 381, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5913, + "id": 5245, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111452,15 +111556,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 381, + "problemId": "d1.3", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5981, + "id": 5246, "result": { "type": "IOI", "score": [ @@ -111473,18 +111577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 381, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6144, + "id": 5247, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111493,18 +111597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 381, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7656, + "id": 5248, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111512,19 +111616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.2", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7674, + "id": 5249, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111533,14 +111637,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7875, + "id": 5250, "result": { "type": "IOI", "score": [ @@ -111552,15 +111656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7922, + "id": 5251, "result": { "type": "IOI", "score": [ @@ -111573,14 +111677,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7932, + "id": 5252, "result": { "type": "IOI", "score": [ @@ -111592,15 +111696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8193, + "id": 5253, "result": { "type": "IOI", "score": [ @@ -111612,19 +111716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.2", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8228, + "id": 5254, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111632,15 +111736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8363, + "id": 5255, "result": { "type": "IOI", "score": [ @@ -111653,38 +111757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8768, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 381, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9047, + "id": 5256, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111692,19 +111776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.1", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9462, + "id": 5257, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111713,18 +111797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9758, + "id": 5258, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111732,19 +111816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.4", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10003, + "id": 5259, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111753,18 +111837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10373, + "id": 5260, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111773,14 +111857,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10896, + "id": 5261, "result": { "type": "IOI", "score": [ @@ -111793,18 +111877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11502, + "id": 5262, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111813,18 +111897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 381, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11803, + "id": 5263, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111832,19 +111916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12048, + "id": 5264, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111852,19 +111936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 381, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 281, + "id": 5265, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111873,18 +111957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1032, + "id": 5266, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111892,19 +111976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.4", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1078, + "id": 5267, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111913,14 +111997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1411, + "id": 5268, "result": { "type": "IOI", "score": [ @@ -111933,18 +112017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1413, + "id": 5269, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111952,15 +112036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 385, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2465, + "id": 5270, "result": { "type": "IOI", "score": [ @@ -111973,18 +112057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 385, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2611, + "id": 5271, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -111992,19 +112076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.3", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2649, + "id": 5272, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112013,14 +112097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 385, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3703, + "id": 5273, "result": { "type": "IOI", "score": [ @@ -112032,39 +112116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3712, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4375, + "id": 5274, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112073,18 +112137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5207, + "id": 5275, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112093,18 +112157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 385, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5248, + "id": 5276, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112112,19 +112176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 385, + "problemId": "d1.4", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5313, + "id": 5277, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112132,15 +112196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.2", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5342, + "id": 5278, "result": { "type": "IOI", "score": [ @@ -112152,35 +112216,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5371, - "result": { - "type": "IOI", - "score": [ - 37.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.2", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6178, + "id": 5279, "result": { "type": "IOI", "score": [ @@ -112192,39 +112236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6251, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6962, + "id": 5280, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112232,15 +112256,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6995, + "id": 5281, "result": { "type": "IOI", "score": [ @@ -112253,18 +112277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 385, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7068, + "id": 5282, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112272,15 +112296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, + "problemId": "d1.3", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7070, + "id": 5283, "result": { "type": "IOI", "score": [ @@ -112293,18 +112317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 385, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7120, + "id": 5284, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112313,14 +112337,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 385, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7165, + "id": 5285, "result": { "type": "IOI", "score": [ @@ -112336,135 +112360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7174, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7226, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7241, - "result": { - "type": "IOI", - "score": [ - 57.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7974, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8131, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8340, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8430, + "id": 5286, "result": { "type": "IOI", "score": [ @@ -112476,19 +112380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9071, + "id": 5287, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112496,19 +112400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.1", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9730, + "id": 5288, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112517,14 +112421,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9968, + "id": 5289, "result": { "type": "IOI", "score": [ @@ -112537,38 +112441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10148, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 385, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10234, + "id": 5290, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112576,19 +112460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10334, + "id": 5291, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112596,19 +112480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10930, + "id": 5292, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112616,15 +112500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 385, + "problemId": "d1.1", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11282, + "id": 5293, "result": { "type": "IOI", "score": [ @@ -112641,18 +112525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11304, + "id": 5294, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112661,18 +112545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11598, + "id": 5295, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112681,118 +112565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 385, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 284, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 11, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 445, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 11, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7435, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 11, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9338, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 11, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9384, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 11, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 288, + "id": 5296, "result": { "type": "IOI", "score": [ - 100.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112800,15 +112584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 966, + "id": 5297, "result": { "type": "IOI", "score": [ @@ -112820,39 +112604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1026, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1098, + "id": 5298, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112860,19 +112624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1457, + "id": 5299, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112881,18 +112645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 307, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3190, + "id": 5300, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112900,19 +112664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5144, + "id": 5301, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112921,7 +112685,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112941,18 +112705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5369, + "id": 5303, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112960,19 +112724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 307, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5553, + "id": 5304, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -112981,18 +112745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5921, + "id": 5305, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113001,18 +112765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6211, + "id": 5306, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113021,18 +112785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6429, + "id": 5307, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113041,18 +112805,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 307, + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8914, + "id": 5308, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113060,19 +112824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10735, + "id": 5309, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113080,19 +112844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 307, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11174, + "id": 5310, "result": { "type": "IOI", "score": [ - 47.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113100,19 +112864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11198, + "id": 5311, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113120,19 +112884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11350, + "id": 5312, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113140,19 +112904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11377, + "id": 5313, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113160,19 +112924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11524, + "id": 5314, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113180,19 +112944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11589, + "id": 5315, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113200,19 +112964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11877, + "id": 5316, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113220,19 +112984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11963, + "id": 5317, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113240,19 +113004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11998, + "id": 5318, "result": { "type": "IOI", "score": [ - 12.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113260,15 +113024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 307, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12034, + "id": 5319, "result": { "type": "IOI", "score": [ @@ -113281,78 +113045,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 307, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 291, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 64, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 298, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 64, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 358, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 64, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 521, + "id": 5320, "result": { "type": "IOI", "score": [ @@ -113365,14 +113065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1050, + "id": 5321, "result": { "type": "IOI", "score": [ @@ -113384,15 +113084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1080, + "id": 5322, "result": { "type": "IOI", "score": [ @@ -113405,18 +113105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1109, + "id": 5323, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113424,15 +113124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1165, + "id": 5324, "result": { "type": "IOI", "score": [ @@ -113445,18 +113145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1183, + "id": 5325, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113464,19 +113164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1199, + "id": 5326, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113484,19 +113184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1268, + "id": 5327, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113505,14 +113205,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1288, + "id": 5328, "result": { "type": "IOI", "score": [ @@ -113525,18 +113225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1334, + "id": 5329, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113545,18 +113245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1346, + "id": 5330, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113565,18 +113265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1825, + "id": 5331, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113585,18 +113285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2246, + "id": 5332, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113604,19 +113304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2281, + "id": 5333, "result": { "type": "IOI", "score": [ - 32.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113624,19 +113324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 64, + "problemId": "d1.1", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2355, + "id": 5334, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113645,18 +113345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2404, + "id": 5335, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113665,18 +113365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2491, + "id": 5336, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113685,14 +113385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2586, + "id": 5337, "result": { "type": "IOI", "score": [ @@ -113705,18 +113405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2598, + "id": 5338, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113725,18 +113425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 64, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4514, + "id": 5339, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113744,15 +113444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4560, + "id": 5340, "result": { "type": "IOI", "score": [ @@ -113765,18 +113465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4622, + "id": 5341, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113784,15 +113484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4645, + "id": 5342, "result": { "type": "IOI", "score": [ @@ -113805,14 +113505,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4658, + "id": 5343, "result": { "type": "IOI", "score": [ @@ -113824,19 +113524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4680, + "id": 5344, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113844,15 +113544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4721, + "id": 5345, "result": { "type": "IOI", "score": [ @@ -113864,15 +113564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4772, + "id": 5346, "result": { "type": "IOI", "score": [ @@ -113885,18 +113585,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4975, + "id": 5347, "result": { "type": "IOI", "score": [ - 12.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113904,19 +113604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.3", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5083, + "id": 5348, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113925,18 +113625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5139, + "id": 5349, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -113944,15 +113644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.3", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5483, + "id": 5350, "result": { "type": "IOI", "score": [ @@ -113965,42 +113665,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5691, + "id": 5351, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.3", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5712, + "id": 5352, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114009,18 +113705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 64, + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5770, + "id": 5353, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114028,19 +113724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5860, + "id": 5354, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114048,19 +113744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5876, + "id": 5355, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114068,19 +113764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 64, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8582, + "id": 5356, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114088,15 +113784,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 64, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11693, + "id": 5357, "result": { "type": "IOI", "score": [ @@ -114108,19 +113804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 64, + "problemId": "d1.3", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 295, + "id": 5358, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114128,19 +113824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2839, + "id": 5359, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114149,14 +113845,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 231, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2854, + "id": 5360, "result": { "type": "IOI", "score": [ @@ -114168,19 +113864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2893, + "id": 5361, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114188,15 +113884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2938, + "id": 5362, "result": { "type": "IOI", "score": [ @@ -114209,14 +113905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 231, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2992, + "id": 5363, "result": { "type": "IOI", "score": [ @@ -114228,15 +113924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4676, + "id": 5364, "result": { "type": "IOI", "score": [ @@ -114252,19 +113948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4706, + "id": 5365, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114272,19 +113968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4791, + "id": 5366, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114292,19 +113988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4887, + "id": 5367, "result": { "type": "IOI", "score": [ - 24.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114313,14 +114009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 231, + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5501, + "id": 5368, "result": { "type": "IOI", "score": [ @@ -114332,15 +114028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6419, + "id": 5369, "result": { "type": "IOI", "score": [ @@ -114352,15 +114048,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6555, + "id": 5370, "result": { "type": "IOI", "score": [ @@ -114372,19 +114068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6586, + "id": 5371, "result": { "type": "IOI", "score": [ - 10.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114393,14 +114089,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 231, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8951, + "id": 5372, "result": { "type": "IOI", "score": [ @@ -114412,19 +114108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 231, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9010, + "id": 5373, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114433,18 +114129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 231, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9876, + "id": 5374, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114452,19 +114148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 231, + "problemId": "d1.3", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10649, + "id": 5375, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114473,18 +114169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 231, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11275, + "id": 5376, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114492,19 +114188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11342, + "id": 5377, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114512,19 +114208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 231, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 309, + "id": 5378, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114532,19 +114228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 730, + "id": 5379, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114552,19 +114248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 780, + "id": 5380, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114572,19 +114268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 886, + "id": 5381, "result": { "type": "IOI", "score": [ - 37.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114592,15 +114288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1034, + "id": 5382, "result": { "type": "IOI", "score": [ @@ -114612,19 +114308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1087, + "id": 5383, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114633,18 +114329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 204, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1122, + "id": 5384, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114652,15 +114348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3860, + "id": 5385, "result": { "type": "IOI", "score": [ @@ -114673,18 +114369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 204, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4210, + "id": 5386, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114692,19 +114388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 204, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4459, + "id": 5387, "result": { "type": "IOI", "score": [ - 81.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114712,19 +114408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 204, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4587, + "id": 5388, "result": { "type": "IOI", "score": [ - 81.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114732,19 +114428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 204, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4678, + "id": 5389, "result": { "type": "IOI", "score": [ - 67.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114753,18 +114449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 204, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4801, + "id": 5390, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114772,19 +114468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 204, + "problemId": "d1.4", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4829, + "id": 5391, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114792,19 +114488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 204, + "problemId": "d1.2", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5347, + "id": 5392, "result": { "type": "IOI", "score": [ - 81.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114813,38 +114509,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 204, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6196, + "id": 5393, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 204, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6631, + "id": 5394, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114852,15 +114552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.1", + "teamId": "144459", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6701, + "id": 5395, "result": { "type": "IOI", "score": [ @@ -114873,14 +114573,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 204, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9036, + "id": 5396, "result": { "type": "IOI", "score": [ @@ -114892,15 +114592,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.1", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9060, + "id": 5397, "result": { "type": "IOI", "score": [ @@ -114912,19 +114612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9374, + "id": 5398, "result": { "type": "IOI", "score": [ - 53.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114932,43 +114632,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10883, + "id": 5399, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10903, + "id": 5400, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114977,18 +114673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 204, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11487, + "id": 5401, "result": { "type": "IOI", "score": [ - 53.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -114996,19 +114692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12055, + "id": 5402, "result": { "type": "IOI", "score": [ - 53.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115016,19 +114712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 204, + "problemId": "d1.3", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 317, + "id": 5403, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115036,19 +114732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 379, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1637, + "id": 5404, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115057,18 +114753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 379, + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2406, + "id": 5405, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115076,19 +114772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2478, + "id": 5406, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115096,19 +114792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.4", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2990, + "id": 5407, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115117,18 +114813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3609, + "id": 5408, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115137,18 +114833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3670, + "id": 5409, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115156,15 +114852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.1", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3848, + "id": 5410, "result": { "type": "IOI", "score": [ @@ -115177,18 +114873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4523, + "id": 5411, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115197,18 +114893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4610, + "id": 5412, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115216,19 +114912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4892, + "id": 5413, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115237,18 +114933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4950, + "id": 5414, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115256,15 +114952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4985, + "id": 5415, "result": { "type": "IOI", "score": [ @@ -115277,18 +114973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5041, + "id": 5416, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115297,14 +114993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5100, + "id": 5417, "result": { "type": "IOI", "score": [ @@ -115316,15 +115012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6138, + "id": 5418, "result": { "type": "IOI", "score": [ @@ -115336,19 +115032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6310, + "id": 5419, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115356,19 +115052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7391, + "id": 5420, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115377,14 +115073,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 379, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7442, + "id": 5421, "result": { "type": "IOI", "score": [ @@ -115396,19 +115092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.2", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7514, + "id": 5422, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115416,19 +115112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7628, + "id": 5423, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115436,19 +115132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7690, + "id": 5424, "result": { "type": "IOI", "score": [ - 32.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115456,19 +115152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7735, + "id": 5425, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115476,19 +115172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 379, + "problemId": "d1.4", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10701, + "id": 5426, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115496,19 +115192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10857, + "id": 5427, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115516,15 +115212,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11203, + "id": 5428, "result": { "type": "IOI", "score": [ @@ -115536,19 +115232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11328, + "id": 5429, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115557,38 +115253,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 379, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11801, + "id": 5430, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12036, + "id": 5431, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115596,19 +115296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 379, + "problemId": "d1.3", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 320, + "id": 5432, "result": { "type": "IOI", "score": [ - 36.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115616,19 +115316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 371, + "id": 5433, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115637,18 +115337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 423, + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 396, + "id": 5434, "result": { "type": "IOI", "score": [ - 36.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115656,19 +115356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 407, + "id": 5435, "result": { "type": "IOI", "score": [ - 36.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115677,18 +115377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 423, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 438, + "id": 5436, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115696,19 +115396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2128, + "id": 5437, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115717,18 +115417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 423, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2220, + "id": 5438, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115736,19 +115436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2225, + "id": 5439, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115756,19 +115456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2298, + "id": 5440, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115776,15 +115476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2301, + "id": 5441, "result": { "type": "IOI", "score": [ @@ -115797,38 +115497,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 423, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2428, + "id": 5442, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2433, + "id": 5443, "result": { "type": "IOI", "score": [ @@ -115841,14 +115537,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 423, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2440, + "id": 5444, "result": { "type": "IOI", "score": [ @@ -115861,18 +115557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 423, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4327, + "id": 5445, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115880,19 +115576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4392, + "id": 5446, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115900,44 +115596,20 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4496, + "id": 5447, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 423, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4509, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -115945,18 +115617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 423, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4513, + "id": 5448, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115964,19 +115636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4528, + "id": 5449, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -115984,19 +115656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4536, + "id": 5450, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116004,19 +115676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4739, + "id": 5451, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116024,19 +115696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4831, + "id": 5452, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116044,19 +115716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4854, + "id": 5453, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116064,15 +115736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5466, + "id": 5454, "result": { "type": "IOI", "score": [ @@ -116084,19 +115756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5533, + "id": 5455, "result": { "type": "IOI", "score": [ - 37.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116104,15 +115776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6199, + "id": 5456, "result": { "type": "IOI", "score": [ @@ -116124,19 +115796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6218, + "id": 5457, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116145,18 +115817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 423, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6259, + "id": 5458, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116164,19 +115836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6286, + "id": 5459, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116184,19 +115856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6435, + "id": 5460, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116204,19 +115876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6607, + "id": 5461, "result": { "type": "IOI", "score": [ - 37.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116224,19 +115896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6616, + "id": 5462, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116245,18 +115917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 423, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6838, + "id": 5463, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116265,18 +115937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 423, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7041, + "id": 5464, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116285,18 +115957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7075, + "id": 5465, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116304,15 +115976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7387, + "id": 5466, "result": { "type": "IOI", "score": [ @@ -116324,19 +115996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7520, + "id": 5467, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116345,18 +116017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8202, + "id": 5468, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116365,18 +116037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8345, + "id": 5469, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116385,14 +116057,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8389, + "id": 5470, "result": { "type": "IOI", "score": [ @@ -116404,19 +116076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 423, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8442, + "id": 5471, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116424,43 +116096,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8495, + "id": 5472, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8541, + "id": 5473, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116469,18 +116137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 423, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8576, + "id": 5474, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116488,19 +116156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11244, + "id": 5475, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116508,19 +116176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11261, + "id": 5476, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116528,19 +116196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11286, + "id": 5477, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116548,19 +116216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11357, + "id": 5478, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116568,19 +116236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11778, + "id": 5479, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116588,19 +116256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 423, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 324, + "id": 5480, "result": { "type": "IOI", "score": [ - 0.0 + 66.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116608,19 +116276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 382, + "id": 5481, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116628,19 +116296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 390, + "id": 5482, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116648,19 +116316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 583, + "id": 5483, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116669,18 +116337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 124, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 630, + "id": 5484, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116688,19 +116356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 804, + "id": 5485, "result": { "type": "IOI", "score": [ - 35.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116709,18 +116377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 124, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 843, + "id": 5486, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116728,19 +116396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 897, + "id": 5487, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116748,19 +116416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 943, + "id": 5488, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116768,15 +116436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1130, + "id": 5489, "result": { "type": "IOI", "score": [ @@ -116793,18 +116461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 124, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1140, + "id": 5490, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116812,19 +116480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1193, + "id": 5491, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116833,14 +116501,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 124, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1465, + "id": 5492, "result": { "type": "IOI", "score": [ @@ -116852,35 +116520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 124, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1653, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2616, + "id": 5493, "result": { "type": "IOI", "score": [ @@ -116892,19 +116540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3954, + "id": 5494, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116912,19 +116560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 124, + "problemId": "d1.4", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4155, + "id": 5495, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116932,19 +116580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 124, + "problemId": "d1.3", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4242, + "id": 5496, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -116953,14 +116601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 124, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5305, + "id": 5497, "result": { "type": "IOI", "score": [ @@ -116972,15 +116620,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5894, + "id": 5498, "result": { "type": "IOI", "score": [ @@ -116993,14 +116641,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6382, + "id": 5499, "result": { "type": "IOI", "score": [ @@ -117013,18 +116661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6415, + "id": 5500, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117033,18 +116681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7372, + "id": 5501, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117052,15 +116700,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.1", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7750, + "id": 5502, "result": { "type": "IOI", "score": [ @@ -117073,38 +116721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7757, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 124, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8064, + "id": 5503, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117113,18 +116741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 124, + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8086, + "id": 5504, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117132,19 +116760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 124, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9427, + "id": 5505, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117153,18 +116781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9499, + "id": 5506, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117172,19 +116800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9620, + "id": 5507, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117192,19 +116820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9690, + "id": 5508, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117212,19 +116840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9818, + "id": 5509, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117233,14 +116861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 124, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9903, + "id": 5510, "result": { "type": "IOI", "score": [ @@ -117252,15 +116880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10043, + "id": 5511, "result": { "type": "IOI", "score": [ @@ -117272,19 +116900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10177, + "id": 5512, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117292,19 +116920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10487, + "id": 5513, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117312,19 +116940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10787, + "id": 5514, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117332,19 +116960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11145, + "id": 5515, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117352,15 +116980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11335, + "id": 5516, "result": { "type": "IOI", "score": [ @@ -117372,19 +117000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11642, + "id": 5517, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117392,19 +117020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11752, + "id": 5518, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117412,19 +117040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 124, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 327, + "id": 5519, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117432,19 +117060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 199, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1865, + "id": 5520, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117452,19 +117080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 199, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3326, + "id": 5521, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117472,15 +117100,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.3", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3354, + "id": 5522, "result": { "type": "IOI", "score": [ @@ -117492,19 +117120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3383, + "id": 5523, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117512,15 +117140,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3493, + "id": 5524, "result": { "type": "IOI", "score": [ @@ -117532,15 +117160,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5720, + "id": 5525, "result": { "type": "IOI", "score": [ @@ -117553,14 +117181,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 199, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6054, + "id": 5526, "result": { "type": "IOI", "score": [ @@ -117572,39 +117200,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 199, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6116, + "id": 5527, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 199, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6681, + "id": 5528, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117612,19 +117244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 199, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7069, + "id": 5529, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117633,18 +117265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 199, + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7785, + "id": 5530, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117652,15 +117284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7911, + "id": 5531, "result": { "type": "IOI", "score": [ @@ -117673,18 +117305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 199, + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8047, + "id": 5532, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117692,19 +117324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 199, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 328, + "id": 5533, "result": { "type": "IOI", "score": [ - 38.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117712,19 +117344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 598, + "id": 5534, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117732,19 +117364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 328, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2366, + "id": 5535, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117752,19 +117384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 328, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2486, + "id": 5536, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117773,14 +117405,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 328, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2711, + "id": 5537, "result": { "type": "IOI", "score": [ @@ -117793,18 +117425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 328, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2741, + "id": 5538, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117812,19 +117444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 328, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2836, + "id": 5539, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117833,62 +117465,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 328, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2848, + "id": 5540, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 328, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2855, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 328, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2924, + "id": 5541, "result": { "type": "IOI", "score": [ - 10.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117897,18 +117505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 328, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3000, + "id": 5542, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117916,15 +117524,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4991, + "id": 5543, "result": { "type": "IOI", "score": [ @@ -117937,14 +117545,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5066, + "id": 5544, "result": { "type": "IOI", "score": [ @@ -117957,14 +117565,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5230, + "id": 5545, "result": { "type": "IOI", "score": [ @@ -117976,19 +117584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5434, + "id": 5546, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -117996,19 +117604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5696, + "id": 5547, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118016,19 +117624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.4", + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5986, + "id": 5548, "result": { "type": "IOI", "score": [ - 32.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118036,19 +117644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6477, + "id": 5549, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118056,19 +117664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6806, + "id": 5550, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118076,19 +117684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7071, + "id": 5551, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118096,19 +117704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7188, + "id": 5552, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118116,19 +117724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7495, + "id": 5553, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118137,14 +117745,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7522, + "id": 5554, "result": { "type": "IOI", "score": [ @@ -118157,18 +117765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7767, + "id": 5555, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118176,19 +117784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7821, + "id": 5556, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118197,18 +117805,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7938, + "id": 5557, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118216,19 +117824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8115, + "id": 5558, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118236,19 +117844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8159, + "id": 5559, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118257,18 +117865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8208, + "id": 5560, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118276,19 +117884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8261, + "id": 5561, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118296,19 +117904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8283, + "id": 5562, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118317,18 +117925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8737, + "id": 5563, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118337,14 +117945,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8776, + "id": 5564, "result": { "type": "IOI", "score": [ @@ -118357,18 +117965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9172, + "id": 5565, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118377,18 +117985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 328, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9347, + "id": 5566, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118396,19 +118004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9627, + "id": 5567, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118416,19 +118024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9692, + "id": 5568, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118436,19 +118044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9872, + "id": 5569, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118457,18 +118065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9879, + "id": 5570, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118476,19 +118084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10101, + "id": 5571, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118497,18 +118105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 328, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10153, + "id": 5572, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118516,19 +118124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.1", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10642, + "id": 5573, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118536,19 +118144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 328, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 335, + "id": 5574, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118556,19 +118164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 387, + "id": 5575, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118576,19 +118184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 429, + "id": 5576, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118597,18 +118205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 434, + "id": 5577, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118616,15 +118224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 439, + "id": 5578, "result": { "type": "IOI", "score": [ @@ -118640,43 +118248,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 441, + "id": 5579, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 455, + "id": 5580, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118684,19 +118288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 757, + "id": 5581, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118704,15 +118308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2499, + "id": 5582, "result": { "type": "IOI", "score": [ @@ -118724,19 +118328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2595, + "id": 5583, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118744,15 +118348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 186, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4102, + "id": 5584, "result": { "type": "IOI", "score": [ @@ -118764,19 +118368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 186, + "problemId": "d1.4", + "teamId": "144505", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4241, + "id": 5585, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118785,18 +118389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 186, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4335, + "id": 5586, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118805,18 +118409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 186, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4708, + "id": 5587, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118824,15 +118428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5165, + "id": 5588, "result": { "type": "IOI", "score": [ @@ -118845,18 +118449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5231, + "id": 5589, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118865,18 +118469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5485, + "id": 5590, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118884,19 +118488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5756, + "id": 5591, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118904,19 +118508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5900, + "id": 5592, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118924,15 +118528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6095, + "id": 5593, "result": { "type": "IOI", "score": [ @@ -118945,18 +118549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6108, + "id": 5594, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118965,18 +118569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6155, + "id": 5595, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -118984,19 +118588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6636, + "id": 5596, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119004,19 +118608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6699, + "id": 5597, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119024,19 +118628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7378, + "id": 5598, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119044,19 +118648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.4", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7470, + "id": 5599, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119065,18 +118669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7559, + "id": 5600, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119084,19 +118688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.2", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7583, + "id": 5601, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119105,18 +118709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7904, + "id": 5602, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119124,19 +118728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8067, + "id": 5603, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119145,38 +118749,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8882, + "id": 5604, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8938, + "id": 5605, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119184,19 +118792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 186, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9920, + "id": 5606, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119205,18 +118813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9950, + "id": 5607, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119225,18 +118833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10004, + "id": 5608, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119245,34 +118853,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 186, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 337, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 368, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1563, + "id": 5609, "result": { "type": "IOI", "score": [ @@ -119284,19 +118872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 368, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2509, + "id": 5610, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119305,18 +118893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 368, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3888, + "id": 5611, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119324,19 +118912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 368, + "problemId": "d1.3", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4208, + "id": 5612, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119344,19 +118932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 368, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4217, + "id": 5613, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119364,19 +118952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 368, + "problemId": "d1.4", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4244, + "id": 5614, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119385,14 +118973,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 368, + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4581, + "id": 5615, "result": { "type": "IOI", "score": [ @@ -119405,18 +118993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 368, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4614, + "id": 5616, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119425,18 +119013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 368, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4642, + "id": 5617, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119445,18 +119033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 368, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5904, + "id": 5618, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119464,19 +119052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 368, + "problemId": "d1.2", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5969, + "id": 5619, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119484,19 +119072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 368, + "problemId": "d1.1", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6471, + "id": 5620, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119504,19 +119092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 368, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6590, + "id": 5621, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119525,18 +119113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 368, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11960, + "id": 5622, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119544,15 +119132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 368, + "problemId": "d1.2", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12041, + "id": 5623, "result": { "type": "IOI", "score": [ @@ -119564,19 +119152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 368, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 339, + "id": 5624, "result": { "type": "IOI", "score": [ - 14.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119584,39 +119172,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 469, + "id": 5625, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 431, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 474, + "id": 5626, "result": { "type": "IOI", "score": [ @@ -119629,14 +119213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 431, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 492, + "id": 5627, "result": { "type": "IOI", "score": [ @@ -119648,19 +119232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 534, + "id": 5628, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119668,19 +119252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 572, + "id": 5629, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119688,19 +119272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 657, + "id": 5630, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119708,19 +119292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 726, + "id": 5631, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119728,15 +119312,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1814, + "id": 5632, "result": { "type": "IOI", "score": [ @@ -119748,15 +119332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1921, + "id": 5633, "result": { "type": "IOI", "score": [ @@ -119768,19 +119352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2562, + "id": 5634, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119789,18 +119373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 431, + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2665, + "id": 5635, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119808,19 +119392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4138, + "id": 5636, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119829,14 +119413,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 431, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4472, + "id": 5637, "result": { "type": "IOI", "score": [ @@ -119848,15 +119432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4575, + "id": 5638, "result": { "type": "IOI", "score": [ @@ -119868,19 +119452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4600, + "id": 5639, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119889,14 +119473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 431, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4836, + "id": 5640, "result": { "type": "IOI", "score": [ @@ -119908,19 +119492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4884, + "id": 5641, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119928,19 +119512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4936, + "id": 5642, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -119948,15 +119532,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5116, + "id": 5643, "result": { "type": "IOI", "score": [ @@ -119968,15 +119552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5161, + "id": 5644, "result": { "type": "IOI", "score": [ @@ -119989,14 +119573,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 431, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5560, + "id": 5645, "result": { "type": "IOI", "score": [ @@ -120008,39 +119592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5881, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5925, + "id": 5646, "result": { "type": "IOI", "score": [ - 36.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120048,19 +119612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6632, + "id": 5647, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120069,14 +119633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 431, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8435, + "id": 5648, "result": { "type": "IOI", "score": [ @@ -120088,39 +119652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9514, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 431, + "problemId": "d1.1", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9566, + "id": 5649, "result": { "type": "IOI", "score": [ @@ -120133,98 +119673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 431, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9611, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10292, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10555, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10569, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 431, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11611, + "id": 5650, "result": { "type": "IOI", "score": [ - 0.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120233,18 +119693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 431, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 342, + "id": 5651, "result": { "type": "IOI", "score": [ - 10.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120253,14 +119713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 108, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 547, + "id": 5652, "result": { "type": "IOI", "score": [ @@ -120273,18 +119733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 108, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 623, + "id": 5653, "result": { "type": "IOI", "score": [ - 22.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120293,38 +119753,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 108, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 642, + "id": 5654, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 108, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 663, + "id": 5655, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120332,19 +119796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 108, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3742, + "id": 5656, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120353,18 +119817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 108, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3843, + "id": 5657, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120372,15 +119836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 108, + "problemId": "d1.3", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4043, + "id": 5658, "result": { "type": "IOI", "score": [ @@ -120397,34 +119861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 108, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4056, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 108, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4567, + "id": 5659, "result": { "type": "IOI", "score": [ @@ -120437,18 +119881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4609, + "id": 5660, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120456,19 +119900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.4", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4688, + "id": 5661, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120476,15 +119920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4794, + "id": 5662, "result": { "type": "IOI", "score": [ @@ -120496,19 +119940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4820, + "id": 5663, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120516,19 +119960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144459", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4833, + "id": 5664, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120537,14 +119981,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 108, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4870, + "id": 5665, "result": { "type": "IOI", "score": [ @@ -120557,18 +120001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4973, + "id": 5666, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120576,19 +120020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5107, + "id": 5667, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120596,39 +120040,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5158, + "id": 5668, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5389, + "id": 5669, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120637,18 +120085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5850, + "id": 5670, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120656,19 +120104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5943, + "id": 5671, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120676,19 +120124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6350, + "id": 5672, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120696,19 +120144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6857, + "id": 5673, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120717,14 +120165,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7027, + "id": 5674, "result": { "type": "IOI", "score": [ @@ -120737,18 +120185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7083, + "id": 5675, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120756,35 +120204,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7116, + "id": 5676, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7259, + "id": 5677, "result": { "type": "IOI", "score": [ @@ -120797,18 +120249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7487, + "id": 5678, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120816,15 +120268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.2", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7563, + "id": 5679, "result": { "type": "IOI", "score": [ @@ -120836,19 +120288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7676, + "id": 5680, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120856,15 +120308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7768, + "id": 5681, "result": { "type": "IOI", "score": [ @@ -120877,14 +120329,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7979, + "id": 5682, "result": { "type": "IOI", "score": [ @@ -120897,18 +120349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8187, + "id": 5683, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120916,15 +120368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8290, + "id": 5684, "result": { "type": "IOI", "score": [ @@ -120937,18 +120389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 108, + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8324, + "id": 5685, "result": { "type": "IOI", "score": [ - 17.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120956,19 +120408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8372, + "id": 5686, "result": { "type": "IOI", "score": [ - 33.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120976,19 +120428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 108, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8621, + "id": 5687, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -120997,18 +120449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 108, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8718, + "id": 5688, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121016,19 +120468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 108, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9930, + "id": 5689, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121036,19 +120488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10564, + "id": 5690, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121056,39 +120508,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10791, + "id": 5691, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10981, + "id": 5692, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121096,15 +120552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 108, + "problemId": "d1.1", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 346, + "id": 5693, "result": { "type": "IOI", "score": [ @@ -121117,14 +120573,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 135, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2135, + "id": 5694, "result": { "type": "IOI", "score": [ @@ -121136,15 +120592,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2387, + "id": 5695, "result": { "type": "IOI", "score": [ @@ -121156,19 +120612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2510, + "id": 5696, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121176,19 +120632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3174, + "id": 5697, "result": { "type": "IOI", "score": [ - 12.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121196,15 +120652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 135, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3556, + "id": 5698, "result": { "type": "IOI", "score": [ @@ -121217,18 +120673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 135, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3664, + "id": 5699, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121236,19 +120692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4139, + "id": 5700, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121256,19 +120712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.2", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4190, + "id": 5701, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121277,14 +120733,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 135, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4240, + "id": 5702, "result": { "type": "IOI", "score": [ @@ -121296,19 +120752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4822, + "id": 5703, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121316,15 +120772,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4940, + "id": 5704, "result": { "type": "IOI", "score": [ @@ -121337,42 +120793,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 135, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5089, + "id": 5705, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5119, + "id": 5706, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121380,19 +120832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.2", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5556, + "id": 5707, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121400,19 +120852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5597, + "id": 5708, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121420,19 +120872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 135, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6241, + "id": 5709, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121440,19 +120892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6545, + "id": 5710, "result": { "type": "IOI", "score": [ - 14.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121461,18 +120913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 135, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6612, + "id": 5711, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121480,19 +120932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7002, + "id": 5712, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121501,18 +120953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 135, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7118, + "id": 5713, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121520,19 +120972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7286, + "id": 5714, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121541,14 +120993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 135, + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7356, + "id": 5715, "result": { "type": "IOI", "score": [ @@ -121560,15 +121012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 135, + "problemId": "d1.3", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7594, + "id": 5716, "result": { "type": "IOI", "score": [ @@ -121581,18 +121033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 135, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8364, + "id": 5717, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121600,19 +121052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8531, + "id": 5718, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121621,38 +121073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 135, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9181, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 135, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9586, + "id": 5719, "result": { "type": "IOI", "score": [ - 29.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121660,15 +121092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 135, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10025, + "id": 5720, "result": { "type": "IOI", "score": [ @@ -121681,14 +121113,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 135, + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10120, + "id": 5721, "result": { "type": "IOI", "score": [ @@ -121701,18 +121133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 135, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11403, + "id": 5722, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121721,18 +121153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 135, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 355, + "id": 5723, "result": { "type": "IOI", "score": [ - 9.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121740,15 +121172,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 724, + "id": 5724, "result": { "type": "IOI", "score": [ @@ -121760,19 +121192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 893, + "id": 5725, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121780,43 +121212,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3649, + "id": 5726, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 321, + "teamId": "144247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3658, + "id": 5727, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121824,19 +121252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3767, + "id": 5728, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121844,19 +121272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4827, + "id": 5729, "result": { "type": "IOI", "score": [ - 32.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121864,19 +121292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5979, + "id": 5730, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121884,19 +121312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6165, + "id": 5731, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121904,15 +121332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.4", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6930, + "id": 5732, "result": { "type": "IOI", "score": [ @@ -121924,19 +121352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7332, + "id": 5733, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121945,18 +121373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 321, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7405, + "id": 5734, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121965,18 +121393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 321, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7548, + "id": 5735, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -121984,19 +121412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.2", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7645, + "id": 5736, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122004,19 +121432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7825, + "id": 5737, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122024,19 +121452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7943, + "id": 5738, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122044,19 +121472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7985, + "id": 5739, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122065,14 +121493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 321, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9512, + "id": 5740, "result": { "type": "IOI", "score": [ @@ -122084,19 +121512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9574, + "id": 5741, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122104,19 +121532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10516, + "id": 5742, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122124,15 +121552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11074, + "id": 5743, "result": { "type": "IOI", "score": [ @@ -122144,87 +121572,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11133, + "id": 5744, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11149, + "id": 5745, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 321, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11306, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11535, + "id": 5746, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122232,15 +121632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 321, + "problemId": "d1.3", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11814, + "id": 5747, "result": { "type": "IOI", "score": [ @@ -122252,19 +121652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 321, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 357, + "id": 5748, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122272,15 +121672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2456, + "id": 5749, "result": { "type": "IOI", "score": [ @@ -122292,19 +121692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2757, + "id": 5750, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122312,19 +121712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3099, + "id": 5751, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122332,19 +121732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3401, + "id": 5752, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122352,19 +121752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4067, + "id": 5753, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122372,19 +121772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4119, + "id": 5754, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122392,19 +121792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4643, + "id": 5755, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122412,19 +121812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4692, + "id": 5756, "result": { "type": "IOI", "score": [ - 25.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122433,18 +121833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 125, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5026, + "id": 5757, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122453,14 +121853,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 125, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5122, + "id": 5758, "result": { "type": "IOI", "score": [ @@ -122472,15 +121872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5147, + "id": 5759, "result": { "type": "IOI", "score": [ @@ -122492,19 +121892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5172, + "id": 5760, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122512,19 +121912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5256, + "id": 5761, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122532,15 +121932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5346, + "id": 5762, "result": { "type": "IOI", "score": [ @@ -122552,15 +121952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5359, + "id": 5763, "result": { "type": "IOI", "score": [ @@ -122573,18 +121973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 125, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6468, + "id": 5764, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122593,18 +121993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 125, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7142, + "id": 5765, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122612,19 +122012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7839, + "id": 5766, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122633,18 +122033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 125, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8017, + "id": 5767, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122652,19 +122052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8380, + "id": 5768, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122672,19 +122072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9296, + "id": 5769, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122693,18 +122093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 125, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10257, + "id": 5770, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122713,18 +122113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 125, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10503, + "id": 5771, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122732,19 +122132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10668, + "id": 5772, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122752,19 +122152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10688, + "id": 5773, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122772,19 +122172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 125, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10956, + "id": 5774, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122793,18 +122193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 125, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12101, + "id": 5775, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122812,19 +122212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 125, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 359, + "id": 5776, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122832,19 +122232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 599, + "id": 5777, "result": { "type": "IOI", "score": [ - 14.0 + 70.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122852,19 +122252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 635, + "id": 5778, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122872,19 +122272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1071, + "id": 5779, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122892,19 +122292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1143, + "id": 5780, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122912,39 +122312,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1365, + "id": 5781, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1502, + "id": 5782, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122952,19 +122356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1568, + "id": 5783, "result": { "type": "IOI", "score": [ - 23.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122972,19 +122376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1600, + "id": 5784, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -122992,19 +122396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2187, + "id": 5785, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123012,19 +122416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2236, + "id": 5786, "result": { "type": "IOI", "score": [ - 38.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123032,19 +122436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2630, + "id": 5787, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123052,19 +122456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2731, + "id": 5788, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123072,19 +122476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.3", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2755, + "id": 5789, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123092,19 +122496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144099", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2774, + "id": 5790, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123112,19 +122516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3319, + "id": 5791, "result": { "type": "IOI", "score": [ - 24.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123132,19 +122536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3345, + "id": 5792, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123152,15 +122556,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4780, + "id": 5793, "result": { "type": "IOI", "score": [ @@ -123172,15 +122576,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4858, + "id": 5794, "result": { "type": "IOI", "score": [ @@ -123193,14 +122597,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5194, + "id": 5795, "result": { "type": "IOI", "score": [ @@ -123213,14 +122617,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5617, + "id": 5796, "result": { "type": "IOI", "score": [ @@ -123232,15 +122636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5754, + "id": 5797, "result": { "type": "IOI", "score": [ @@ -123253,14 +122657,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5779, + "id": 5798, "result": { "type": "IOI", "score": [ @@ -123272,8 +122676,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123293,14 +122697,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5827, + "id": 5800, "result": { "type": "IOI", "score": [ @@ -123313,18 +122717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5977, + "id": 5801, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123332,15 +122736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6003, + "id": 5802, "result": { "type": "IOI", "score": [ @@ -123352,15 +122756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6706, + "id": 5803, "result": { "type": "IOI", "score": [ @@ -123372,15 +122776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6727, + "id": 5804, "result": { "type": "IOI", "score": [ @@ -123392,19 +122796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6849, + "id": 5805, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123413,14 +122817,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7322, + "id": 5806, "result": { "type": "IOI", "score": [ @@ -123432,15 +122836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 440, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7339, + "id": 5807, "result": { "type": "IOI", "score": [ @@ -123453,18 +122857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7488, + "id": 5808, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123473,18 +122877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7597, + "id": 5809, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123493,18 +122897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7665, + "id": 5810, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123512,19 +122916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7814, + "id": 5811, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123532,19 +122936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7930, + "id": 5812, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123552,19 +122956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8042, + "id": 5813, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123572,19 +122976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8240, + "id": 5814, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123592,19 +122996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.4", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8523, + "id": 5815, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123612,19 +123016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8732, + "id": 5816, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123632,19 +123036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8779, + "id": 5817, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123653,18 +123057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9039, + "id": 5818, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123672,19 +123076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9088, + "id": 5819, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123692,19 +123096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9124, + "id": 5820, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123712,19 +123116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9157, + "id": 5821, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123733,18 +123137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9276, + "id": 5822, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123752,19 +123156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9941, + "id": 5823, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123772,19 +123176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10419, + "id": 5824, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123792,19 +123196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 440, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10746, + "id": 5825, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123813,18 +123217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 440, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 361, + "id": 5826, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123832,19 +123236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 418, + "id": 5827, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123852,19 +123256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 816, + "id": 5828, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123872,19 +123276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1149, + "id": 5829, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123892,19 +123296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2477, + "id": 5830, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123913,14 +123317,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 267, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2712, + "id": 5831, "result": { "type": "IOI", "score": [ @@ -123932,39 +123336,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2751, + "id": 5832, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3053, + "id": 5833, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123972,19 +123380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3191, + "id": 5834, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -123992,15 +123400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4552, + "id": 5835, "result": { "type": "IOI", "score": [ @@ -124013,18 +123421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 267, + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4625, + "id": 5836, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124032,19 +123440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 267, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4691, + "id": 5837, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124052,15 +123460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 267, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4834, + "id": 5838, "result": { "type": "IOI", "score": [ @@ -124072,19 +123480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5512, + "id": 5839, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124092,19 +123500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5686, + "id": 5840, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124112,19 +123520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5944, + "id": 5841, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124132,63 +123540,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6028, + "id": 5842, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 267, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6126, - "result": { - "type": "IOI", - "score": [ - 61.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6176, + "id": 5843, "result": { "type": "IOI", "score": [ - 61.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124197,18 +123581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 267, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6221, + "id": 5844, "result": { "type": "IOI", "score": [ - 61.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124216,19 +123600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6262, + "id": 5845, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124236,19 +123620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6318, + "id": 5846, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124256,19 +123640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6349, + "id": 5847, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124276,19 +123660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6380, + "id": 5848, "result": { "type": "IOI", "score": [ - 61.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124296,19 +123680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6868, + "id": 5849, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124316,19 +123700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7205, + "id": 5850, "result": { "type": "IOI", "score": [ - 61.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124337,14 +123721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 267, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9664, + "id": 5851, "result": { "type": "IOI", "score": [ @@ -124357,14 +123741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 267, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10310, + "id": 5852, "result": { "type": "IOI", "score": [ @@ -124377,18 +123761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 267, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10647, + "id": 5853, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124396,19 +123780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 267, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11084, + "id": 5854, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124416,15 +123800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 267, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11493, + "id": 5855, "result": { "type": "IOI", "score": [ @@ -124437,18 +123821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 267, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11917, + "id": 5856, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124456,19 +123840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 267, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 362, + "id": 5857, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124476,43 +123860,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 212, + "problemId": "d1.3", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 790, + "id": 5858, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 212, + "problemId": "d1.1", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 799, + "id": 5859, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124520,19 +123900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2112, + "id": 5860, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124541,18 +123921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2157, + "id": 5861, "result": { "type": "IOI", "score": [ - 25.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124561,18 +123941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2198, + "id": 5862, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124580,19 +123960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2296, + "id": 5863, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124600,19 +123980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2312, + "id": 5864, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124621,14 +124001,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2847, + "id": 5865, "result": { "type": "IOI", "score": [ @@ -124641,18 +124021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2859, + "id": 5866, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124661,18 +124041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3154, + "id": 5867, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124680,19 +124060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3426, + "id": 5868, "result": { "type": "IOI", "score": [ - 57.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124701,42 +124081,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4403, + "id": 5869, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4416, + "id": 5870, "result": { "type": "IOI", "score": [ - 57.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124744,19 +124120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5610, + "id": 5871, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124764,19 +124140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 212, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5995, + "id": 5872, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124785,18 +124161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 212, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6319, + "id": 5873, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124805,42 +124181,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 212, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7224, + "id": 5874, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 212, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7245, + "id": 5875, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124849,18 +124221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7290, + "id": 5876, "result": { "type": "IOI", "score": [ - 57.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124869,18 +124241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7483, + "id": 5877, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124889,18 +124261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 212, + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8466, + "id": 5878, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124908,19 +124280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.4", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8680, + "id": 5879, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124928,15 +124300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9034, + "id": 5880, "result": { "type": "IOI", "score": [ @@ -124948,19 +124320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9883, + "id": 5881, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -124968,43 +124340,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10206, + "id": 5882, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 212, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10218, + "id": 5883, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125012,19 +124380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10877, + "id": 5884, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125032,15 +124400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11175, + "id": 5885, "result": { "type": "IOI", "score": [ @@ -125057,18 +124425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 212, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11236, + "id": 5886, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125076,111 +124444,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11956, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11978, + "id": 5887, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12006, + "id": 5888, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 212, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 12030, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12049, + "id": 5889, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125188,39 +124504,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 212, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 367, + "id": 5890, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 447, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 424, + "id": 5891, "result": { "type": "IOI", "score": [ - 31.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125228,15 +124548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 877, + "id": 5892, "result": { "type": "IOI", "score": [ @@ -125248,15 +124568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 929, + "id": 5893, "result": { "type": "IOI", "score": [ @@ -125268,19 +124588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1046, + "id": 5894, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125288,19 +124608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1629, + "id": 5895, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125309,18 +124629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 447, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1648, + "id": 5896, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125328,15 +124648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 447, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2874, + "id": 5897, "result": { "type": "IOI", "score": [ @@ -125348,19 +124668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3128, + "id": 5898, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125368,19 +124688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3652, + "id": 5899, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125388,19 +124708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.1", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4214, + "id": 5900, "result": { "type": "IOI", "score": [ - 24.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125408,163 +124728,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4293, + "id": 5901, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4300, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4966, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5050, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5085, + "id": 5902, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5110, - "result": { - "type": "IOI", - "score": [ - 63.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5193, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5573, + "id": 5903, "result": { "type": "IOI", "score": [ @@ -125576,19 +124788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5613, + "id": 5904, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125596,19 +124808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.3", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5710, + "id": 5905, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125616,15 +124828,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 447, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6304, + "id": 5906, "result": { "type": "IOI", "score": [ @@ -125637,14 +124849,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 447, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6326, + "id": 5907, "result": { "type": "IOI", "score": [ @@ -125657,18 +124869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 447, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6491, + "id": 5908, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125677,18 +124889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 447, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7200, + "id": 5909, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125697,38 +124909,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 447, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8048, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 447, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8767, + "id": 5910, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125737,14 +124929,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 447, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8843, + "id": 5911, "result": { "type": "IOI", "score": [ @@ -125757,38 +124949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 447, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 368, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 120, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 428, + "id": 5912, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125796,19 +124968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1108, + "id": 5913, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125816,19 +124988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1464, + "id": 5914, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125836,15 +125008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1474, + "id": 5915, "result": { "type": "IOI", "score": [ @@ -125856,19 +125028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1488, + "id": 5916, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125876,19 +125048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1497, + "id": 5917, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125896,19 +125068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1749, + "id": 5918, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125916,19 +125088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1956, + "id": 5919, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125936,19 +125108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2006, + "id": 5920, "result": { "type": "IOI", "score": [ - 9.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125956,19 +125128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3244, + "id": 5921, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125976,19 +125148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3343, + "id": 5922, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -125997,18 +125169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 120, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3446, + "id": 5923, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126016,15 +125188,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4219, + "id": 5924, "result": { "type": "IOI", "score": [ @@ -126036,19 +125208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4316, + "id": 5925, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126057,18 +125229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 120, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4534, + "id": 5926, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126077,18 +125249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 120, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4693, + "id": 5927, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126096,15 +125268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5131, + "id": 5928, "result": { "type": "IOI", "score": [ @@ -126117,14 +125289,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 120, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5234, + "id": 5929, "result": { "type": "IOI", "score": [ @@ -126136,19 +125308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5366, + "id": 5930, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126157,18 +125329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 120, + "teamId": "144083", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5459, + "id": 5931, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126176,15 +125348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.4", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5793, + "id": 5932, "result": { "type": "IOI", "score": [ @@ -126196,15 +125368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5812, + "id": 5933, "result": { "type": "IOI", "score": [ @@ -126216,39 +125388,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5872, + "id": 5934, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5887, + "id": 5935, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126256,19 +125432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6240, + "id": 5936, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126277,14 +125453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 120, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6339, + "id": 5937, "result": { "type": "IOI", "score": [ @@ -126296,19 +125472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6364, + "id": 5938, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126317,18 +125493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 120, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6422, + "id": 5939, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126337,34 +125513,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 120, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6669, + "id": 5940, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6824, + "id": 5941, "result": { "type": "IOI", "score": [ @@ -126377,14 +125557,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 120, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7787, + "id": 5942, "result": { "type": "IOI", "score": [ @@ -126396,19 +125576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 120, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7806, + "id": 5943, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126417,18 +125597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 120, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7885, + "id": 5944, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126437,38 +125617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 120, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9706, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 120, + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9741, + "id": 5945, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126476,19 +125636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 120, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9762, + "id": 5946, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126496,15 +125656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 120, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9986, + "id": 5947, "result": { "type": "IOI", "score": [ @@ -126517,18 +125677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 120, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10027, + "id": 5948, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126536,19 +125696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10537, + "id": 5949, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126557,18 +125717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 120, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10638, + "id": 5950, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126576,19 +125736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 120, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 369, + "id": 5951, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126596,19 +125756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.2", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 854, + "id": 5952, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126617,54 +125777,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 862, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1085, - "result": { - "type": "IOI", - "score": [ - 50.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1151, + "id": 5953, "result": { "type": "IOI", "score": [ @@ -126677,78 +125797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 146, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1373, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1461, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1492, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1664, + "id": 5954, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126756,15 +125816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1701, + "id": 5955, "result": { "type": "IOI", "score": [ @@ -126777,14 +125837,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1708, + "id": 5956, "result": { "type": "IOI", "score": [ @@ -126797,18 +125857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2015, + "id": 5957, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126816,19 +125876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2066, + "id": 5958, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126837,18 +125897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2178, + "id": 5959, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126856,15 +125916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 146, + "problemId": "d1.1", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3681, + "id": 5960, "result": { "type": "IOI", "score": [ @@ -126877,14 +125937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 146, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3735, + "id": 5961, "result": { "type": "IOI", "score": [ @@ -126900,19 +125960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 146, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3748, + "id": 5962, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -126920,15 +125980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 146, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3975, + "id": 5963, "result": { "type": "IOI", "score": [ @@ -126941,34 +126001,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 146, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4100, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5380, + "id": 5964, "result": { "type": "IOI", "score": [ @@ -126981,18 +126021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5615, + "id": 5965, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127000,19 +126040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.2", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5640, + "id": 5966, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127020,19 +126060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5694, + "id": 5967, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127041,18 +126081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5724, + "id": 5968, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127061,18 +126101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5762, + "id": 5969, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127081,14 +126121,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5835, + "id": 5970, "result": { "type": "IOI", "score": [ @@ -127101,18 +126141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5867, + "id": 5971, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127120,19 +126160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 146, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5897, + "id": 5972, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127141,18 +126181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6320, + "id": 5973, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127161,18 +126201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6587, + "id": 5974, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127180,19 +126220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 146, + "problemId": "d1.2", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6613, + "id": 5975, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127201,14 +126241,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 146, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7700, + "id": 5976, "result": { "type": "IOI", "score": [ @@ -127220,39 +126260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 146, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7771, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9526, + "id": 5977, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127261,14 +126281,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 146, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12083, + "id": 5978, "result": { "type": "IOI", "score": [ @@ -127281,18 +126301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 146, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 375, + "id": 5979, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127300,15 +126320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 101, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4352, + "id": 5980, "result": { "type": "IOI", "score": [ @@ -127321,14 +126341,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 101, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6991, + "id": 5981, "result": { "type": "IOI", "score": [ @@ -127340,19 +126360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 101, + "problemId": "d1.1", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7297, + "id": 5982, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127360,15 +126380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 101, + "problemId": "d1.2", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7459, + "id": 5983, "result": { "type": "IOI", "score": [ @@ -127380,59 +126400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 101, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7774, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 101, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10192, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 101, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10905, + "id": 5984, "result": { "type": "IOI", "score": [ - 16.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127440,19 +126420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 101, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11143, + "id": 5985, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127460,19 +126440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 101, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11451, + "id": 5986, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127481,18 +126461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 101, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 377, + "id": 5987, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127501,58 +126481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 322, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 882, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 322, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2026, - "result": { - "type": "IOI", - "score": [ - 13.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 322, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2090, + "id": 5988, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127561,18 +126501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 322, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2127, + "id": 5989, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127581,18 +126521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 322, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3149, + "id": 5990, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127600,59 +126540,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3222, + "id": 5991, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 322, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3232, - "result": { - "type": "IOI", - "score": [ - 63.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3781, + "id": 5992, "result": { "type": "IOI", "score": [ @@ -127664,19 +126580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3938, + "id": 5993, "result": { "type": "IOI", "score": [ - 0.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127684,15 +126600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3969, + "id": 5994, "result": { "type": "IOI", "score": [ @@ -127705,18 +126621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4074, + "id": 5995, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127724,19 +126640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4188, + "id": 5996, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127745,18 +126661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4341, + "id": 5997, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127764,15 +126680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4574, + "id": 5998, "result": { "type": "IOI", "score": [ @@ -127785,18 +126701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4589, + "id": 5999, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127805,18 +126721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4747, + "id": 6000, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127825,18 +126741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4927, + "id": 6001, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127844,19 +126760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5032, + "id": 6002, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127865,14 +126781,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5236, + "id": 6003, "result": { "type": "IOI", "score": [ @@ -127885,18 +126801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5260, + "id": 6004, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127904,15 +126820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5337, + "id": 6005, "result": { "type": "IOI", "score": [ @@ -127925,14 +126841,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 322, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5351, + "id": 6006, "result": { "type": "IOI", "score": [ @@ -127944,15 +126860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 322, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5638, + "id": 6007, "result": { "type": "IOI", "score": [ @@ -127965,18 +126881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 322, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5723, + "id": 6008, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -127984,19 +126900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5895, + "id": 6009, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128005,18 +126921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 322, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5949, + "id": 6010, "result": { "type": "IOI", "score": [ - 37.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128024,19 +126940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5984, + "id": 6011, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128044,19 +126960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6188, + "id": 6012, "result": { "type": "IOI", "score": [ - 37.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128064,19 +126980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.3", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7883, + "id": 6013, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128084,15 +127000,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8238, + "id": 6014, "result": { "type": "IOI", "score": [ @@ -128104,19 +127020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.3", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8542, + "id": 6015, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128124,35 +127040,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 322, + "problemId": "d1.2", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11737, + "id": 6016, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11762, + "id": 6017, "result": { "type": "IOI", "score": [ @@ -128164,19 +127084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 322, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11958, + "id": 6018, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128185,18 +127105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 322, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11975, + "id": 6019, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128205,18 +127125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 322, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 378, + "id": 6020, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128224,15 +127144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1726, + "id": 6021, "result": { "type": "IOI", "score": [ @@ -128244,39 +127164,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1800, + "id": 6022, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1877, + "id": 6023, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128284,15 +127208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2027, + "id": 6024, "result": { "type": "IOI", "score": [ @@ -128305,14 +127229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2788, + "id": 6025, "result": { "type": "IOI", "score": [ @@ -128325,18 +127249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2929, + "id": 6026, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128344,19 +127268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3022, + "id": 6027, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128364,39 +127288,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3067, + "id": 6028, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3126, + "id": 6029, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128405,18 +127333,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3234, + "id": 6030, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128425,14 +127353,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3263, + "id": 6031, "result": { "type": "IOI", "score": [ @@ -128445,38 +127373,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3297, + "id": 6032, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3329, + "id": 6033, "result": { "type": "IOI", "score": [ @@ -128489,14 +127413,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3753, + "id": 6034, "result": { "type": "IOI", "score": [ @@ -128508,15 +127432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.1", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4156, + "id": 6035, "result": { "type": "IOI", "score": [ @@ -128529,38 +127453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5206, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 52, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5844, + "id": 6036, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128568,8 +127472,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 52, + "problemId": "d1.3", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128589,14 +127493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 52, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6120, + "id": 6038, "result": { "type": "IOI", "score": [ @@ -128609,14 +127513,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6426, + "id": 6039, "result": { "type": "IOI", "score": [ @@ -128629,18 +127533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6909, + "id": 6040, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128648,19 +127552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 52, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7129, + "id": 6041, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128669,18 +127573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7210, + "id": 6042, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128689,18 +127593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7358, + "id": 6043, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128708,19 +127612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 52, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7860, + "id": 6044, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128728,19 +127632,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 52, + "problemId": "d1.4", + "teamId": "144112", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8570, + "id": 6045, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144252", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6046, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128749,14 +127673,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8581, + "id": 6047, "result": { "type": "IOI", "score": [ @@ -128769,18 +127693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8801, + "id": 6048, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128788,19 +127712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 52, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8962, + "id": 6049, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128808,19 +127732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 52, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9983, + "id": 6050, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128828,15 +127752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 52, + "problemId": "d1.3", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10036, + "id": 6051, "result": { "type": "IOI", "score": [ @@ -128849,18 +127773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10434, + "id": 6052, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128868,19 +127792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10695, + "id": 6053, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128889,18 +127813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11012, + "id": 6054, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128909,18 +127833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 52, + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11831, + "id": 6055, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128928,19 +127852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 52, + "problemId": "d1.2", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11909, + "id": 6056, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128948,15 +127872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 52, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11943, + "id": 6057, "result": { "type": "IOI", "score": [ @@ -128969,18 +127893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12001, + "id": 6058, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -128989,18 +127913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 52, + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 386, + "id": 6059, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129008,15 +127932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 318, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 544, + "id": 6060, "result": { "type": "IOI", "score": [ @@ -129028,19 +127952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 318, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 676, + "id": 6061, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129048,19 +127972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 318, + "problemId": "d1.2", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2124, + "id": 6062, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129068,19 +127992,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 318, + "problemId": "d1.4", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2423, + "id": 6063, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144108", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6064, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144466", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6065, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144254", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6066, + "result": { + "type": "IOI", + "score": [ + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129089,18 +128073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 318, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2620, + "id": 6067, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129109,14 +128093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 318, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2931, + "id": 6068, "result": { "type": "IOI", "score": [ @@ -129128,15 +128112,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 318, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3221, + "id": 6069, "result": { "type": "IOI", "score": [ @@ -129149,18 +128133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 318, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4962, + "id": 6070, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129168,19 +128152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 318, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5455, + "id": 6071, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129188,19 +128172,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 318, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6265, + "id": 6072, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144204", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6073, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129209,14 +128213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 318, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6295, + "id": 6074, "result": { "type": "IOI", "score": [ @@ -129229,18 +128233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 318, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6454, + "id": 6075, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129248,19 +128252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 318, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7625, + "id": 6076, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129269,18 +128273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 318, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8145, + "id": 6077, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129288,15 +128292,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 318, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 401, + "id": 6078, "result": { "type": "IOI", "score": [ @@ -129309,14 +128313,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 398, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 626, + "id": 6079, "result": { "type": "IOI", "score": [ @@ -129328,19 +128332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 735, + "id": 6080, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129348,19 +128352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.4", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 838, + "id": 6081, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129368,19 +128372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1137, + "id": 6082, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129388,19 +128392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 398, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1205, + "id": 6083, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129408,19 +128412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1229, + "id": 6084, "result": { "type": "IOI", "score": [ - 23.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129429,18 +128433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 398, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2065, + "id": 6085, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129448,19 +128452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 398, + "problemId": "d1.3", + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2105, + "id": 6086, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129469,18 +128473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 398, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3281, + "id": 6087, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129489,18 +128493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 398, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3719, + "id": 6088, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129508,19 +128512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 398, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3766, + "id": 6089, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129529,18 +128533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 398, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4707, + "id": 6090, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129549,14 +128553,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 398, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4891, + "id": 6091, "result": { "type": "IOI", "score": [ @@ -129568,35 +128572,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4974, + "id": 6092, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5343, + "id": 6093, "result": { "type": "IOI", "score": [ @@ -129608,19 +128616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5609, + "id": 6094, "result": { "type": "IOI", "score": [ - 0.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129629,14 +128637,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 398, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6342, + "id": 6095, "result": { "type": "IOI", "score": [ @@ -129648,15 +128656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6644, + "id": 6096, "result": { "type": "IOI", "score": [ @@ -129668,19 +128676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.4", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6954, + "id": 6097, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129688,39 +128696,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7211, + "id": 6098, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 398, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7221, + "id": 6099, "result": { "type": "IOI", "score": [ @@ -129732,43 +128736,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7423, + "id": 6100, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 398, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7457, + "id": 6101, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129776,19 +128776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7640, + "id": 6102, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129796,19 +128796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7813, + "id": 6103, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129816,15 +128816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8813, + "id": 6104, "result": { "type": "IOI", "score": [ @@ -129836,15 +128836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 398, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10471, + "id": 6105, "result": { "type": "IOI", "score": [ @@ -129856,19 +128856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 398, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10745, + "id": 6106, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129876,19 +128876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 398, + "problemId": "d1.3", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11013, + "id": 6107, "result": { "type": "IOI", "score": [ - 51.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129897,18 +128897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 398, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 402, + "id": 6108, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129917,42 +128917,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 543, + "id": 6109, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 271, + "problemId": "d1.2", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 552, + "id": 6110, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129960,19 +128956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 634, + "id": 6111, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -129981,18 +128977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 647, + "id": 6112, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130001,18 +128997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1035, + "id": 6113, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130020,19 +129016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1610, + "id": 6114, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130040,19 +129036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1808, + "id": 6115, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130060,19 +129056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1821, + "id": 6116, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130080,15 +129076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1966, + "id": 6117, "result": { "type": "IOI", "score": [ @@ -130101,18 +129097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 271, + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2207, + "id": 6118, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130120,19 +129116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2275, + "id": 6119, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130140,19 +129136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2340, + "id": 6120, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130160,15 +129156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3902, + "id": 6121, "result": { "type": "IOI", "score": [ @@ -130180,19 +129176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5922, + "id": 6122, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130200,19 +129196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6674, + "id": 6123, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130221,18 +129217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 271, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6712, + "id": 6124, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130240,19 +129236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7144, + "id": 6125, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130260,19 +129256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7154, + "id": 6126, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130280,19 +129276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7180, + "id": 6127, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130300,15 +129296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7961, + "id": 6128, "result": { "type": "IOI", "score": [ @@ -130320,43 +129316,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8214, + "id": 6129, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8320, + "id": 6130, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130364,19 +129356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8347, + "id": 6131, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130384,15 +129376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 271, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8638, + "id": 6132, "result": { "type": "IOI", "score": [ @@ -130404,19 +129396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8991, + "id": 6133, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130424,19 +129416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9158, + "id": 6134, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130444,19 +129436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9241, + "id": 6135, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130464,19 +129456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 271, + "problemId": "d1.4", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9954, + "id": 6136, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130484,19 +129476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10062, + "id": 6137, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130505,14 +129497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 271, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10132, + "id": 6138, "result": { "type": "IOI", "score": [ @@ -130524,39 +129516,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 271, + "problemId": "d1.1", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10227, + "id": 6139, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 271, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10244, + "id": 6140, "result": { "type": "IOI", "score": [ @@ -130569,14 +129557,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 271, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10350, + "id": 6141, "result": { "type": "IOI", "score": [ @@ -130589,42 +129577,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 271, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10912, + "id": 6142, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 271, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10936, + "id": 6143, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130633,14 +129617,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 271, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11319, + "id": 6144, "result": { "type": "IOI", "score": [ @@ -130653,14 +129637,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11817, + "id": 6145, "result": { "type": "IOI", "score": [ @@ -130673,18 +129657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12098, + "id": 6146, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130693,14 +129677,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 271, + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 403, + "id": 6147, "result": { "type": "IOI", "score": [ @@ -130712,19 +129696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 84, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 415, + "id": 6148, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130733,18 +129717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 84, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 453, + "id": 6149, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130753,18 +129737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 84, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 490, + "id": 6150, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130772,15 +129756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 561, + "id": 6151, "result": { "type": "IOI", "score": [ @@ -130793,14 +129777,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 84, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 689, + "id": 6152, "result": { "type": "IOI", "score": [ @@ -130812,19 +129796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1030, + "id": 6153, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130833,18 +129817,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 84, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1119, + "id": 6154, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144233", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6155, + "result": { + "type": "IOI", + "score": [ + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130853,18 +129857,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 84, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3958, + "id": 6156, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144422", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6157, + "result": { + "type": "IOI", + "score": [ + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130873,14 +129897,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 84, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4157, + "id": 6158, "result": { "type": "IOI", "score": [ @@ -130892,15 +129916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4298, + "id": 6159, "result": { "type": "IOI", "score": [ @@ -130912,15 +129936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4464, + "id": 6160, "result": { "type": "IOI", "score": [ @@ -130933,18 +129957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 84, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4604, + "id": 6161, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130952,15 +129976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5511, + "id": 6162, "result": { "type": "IOI", "score": [ @@ -130972,19 +129996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5549, + "id": 6163, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -130992,19 +130016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5760, + "id": 6164, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131012,19 +130036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5896, + "id": 6165, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131032,19 +130056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 84, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6061, + "id": 6166, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131053,18 +130077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 84, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7972, + "id": 6167, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131072,19 +130096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8149, + "id": 6168, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131092,19 +130116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8227, + "id": 6169, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131112,19 +130136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8518, + "id": 6170, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131132,19 +130156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8798, + "id": 6171, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131153,18 +130177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 84, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9565, + "id": 6172, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131172,19 +130196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 84, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9916, + "id": 6173, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131192,19 +130216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10051, + "id": 6174, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131212,15 +130236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 84, + "problemId": "d1.1", + "teamId": "144212", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 404, + "id": 6175, "result": { "type": "IOI", "score": [ @@ -131233,18 +130257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 207, + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 514, + "id": 6176, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131252,19 +130276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 817, + "id": 6177, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131272,15 +130296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2348, + "id": 6178, "result": { "type": "IOI", "score": [ @@ -131293,14 +130317,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 207, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2414, + "id": 6179, "result": { "type": "IOI", "score": [ @@ -131312,19 +130336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.3", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2487, + "id": 6180, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131332,19 +130356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2842, + "id": 6181, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131352,15 +130376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.4", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2952, + "id": 6182, "result": { "type": "IOI", "score": [ @@ -131373,18 +130397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 207, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6892, + "id": 6183, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131392,19 +130416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8918, + "id": 6184, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131412,19 +130436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 207, + "problemId": "d1.3", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9824, + "id": 6185, "result": { "type": "IOI", "score": [ - 61.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131432,19 +130456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 207, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10016, + "id": 6186, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131453,14 +130477,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 207, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11615, + "id": 6187, "result": { "type": "IOI", "score": [ @@ -131472,19 +130496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 207, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 406, + "id": 6188, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131493,18 +130517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 587, + "id": 6189, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131512,19 +130536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 617, + "id": 6190, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131533,18 +130557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 640, + "id": 6191, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131553,14 +130577,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1226, + "id": 6192, "result": { "type": "IOI", "score": [ @@ -131573,18 +130597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 123, + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1252, + "id": 6193, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131592,19 +130616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 123, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1278, + "id": 6194, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131613,18 +130637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 123, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1298, + "id": 6195, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131633,18 +130657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 123, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1604, + "id": 6196, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131652,19 +130676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 123, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2697, + "id": 6197, "result": { "type": "IOI", "score": [ - 0.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131672,19 +130696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.3", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2762, + "id": 6198, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131692,19 +130716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2777, + "id": 6199, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131713,18 +130737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2802, + "id": 6200, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131732,15 +130756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2823, + "id": 6201, "result": { "type": "IOI", "score": [ @@ -131752,19 +130776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.3", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2840, + "id": 6202, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131772,19 +130796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2846, + "id": 6203, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131792,19 +130816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2927, + "id": 6204, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131813,42 +130837,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2935, + "id": 6205, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 123, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2943, + "id": 6206, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131856,19 +130876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2974, + "id": 6207, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131876,19 +130896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2982, + "id": 6208, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131896,19 +130916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 123, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3387, + "id": 6209, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131917,18 +130937,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3732, + "id": 6210, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144180", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6211, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131937,14 +130977,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4124, + "id": 6212, "result": { "type": "IOI", "score": [ @@ -131957,18 +130997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4168, + "id": 6213, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131976,19 +131016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4203, + "id": 6214, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -131997,18 +131037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4254, + "id": 6215, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132016,19 +131056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7274, + "id": 6216, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132037,18 +131077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7910, + "id": 6217, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132056,19 +131096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8035, + "id": 6218, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132076,15 +131116,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8244, + "id": 6219, "result": { "type": "IOI", "score": [ @@ -132097,14 +131137,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8335, + "id": 6220, "result": { "type": "IOI", "score": [ @@ -132116,39 +131156,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.2", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8407, + "id": 6221, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8433, + "id": 6222, "result": { "type": "IOI", "score": [ @@ -132160,15 +131196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10160, + "id": 6223, "result": { "type": "IOI", "score": [ @@ -132180,19 +131216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10384, + "id": 6224, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132201,14 +131237,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10479, + "id": 6225, "result": { "type": "IOI", "score": [ @@ -132221,18 +131257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10524, + "id": 6226, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132240,19 +131276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11021, + "id": 6227, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132261,18 +131297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11414, + "id": 6228, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132280,67 +131316,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11432, + "id": 6229, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11447, + "id": 6230, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11457, + "id": 6231, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132348,19 +131376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 123, + "problemId": "d1.4", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12024, + "id": 6232, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132369,18 +131397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 123, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 412, + "id": 6233, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132389,18 +131417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 274, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 624, + "id": 6234, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132408,19 +131436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 274, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 748, + "id": 6235, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132429,18 +131457,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 274, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1240, + "id": 6236, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144414", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6237, + "result": { + "type": "IOI", + "score": [ + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132449,18 +131497,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 274, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1850, + "id": 6238, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132469,18 +131517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 274, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2021, + "id": 6239, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132489,18 +131537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 274, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2175, + "id": 6240, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132508,19 +131556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 274, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2549, + "id": 6241, "result": { "type": "IOI", "score": [ - 35.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132529,18 +131577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 274, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3300, + "id": 6242, "result": { "type": "IOI", "score": [ - 50.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132548,19 +131596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 274, + "problemId": "d1.2", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4106, + "id": 6243, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132568,19 +131616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6105, + "id": 6244, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132589,18 +131637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 274, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6347, + "id": 6245, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132608,19 +131656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.4", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6828, + "id": 6246, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132628,15 +131676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7861, + "id": 6247, "result": { "type": "IOI", "score": [ @@ -132648,19 +131696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8165, + "id": 6248, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132668,19 +131716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8357, + "id": 6249, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132689,18 +131737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 274, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8596, + "id": 6250, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132708,19 +131756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8609, + "id": 6251, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132728,19 +131776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8643, + "id": 6252, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132749,14 +131797,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 274, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8792, + "id": 6253, "result": { "type": "IOI", "score": [ @@ -132768,15 +131816,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8929, + "id": 6254, "result": { "type": "IOI", "score": [ @@ -132788,19 +131836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9152, + "id": 6255, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132809,14 +131857,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 274, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9308, + "id": 6256, "result": { "type": "IOI", "score": [ @@ -132828,19 +131876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9492, + "id": 6257, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132848,19 +131896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.4", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10149, + "id": 6258, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132868,19 +131916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10634, + "id": 6259, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132888,15 +131936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 274, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10838, + "id": 6260, "result": { "type": "IOI", "score": [ @@ -132909,18 +131957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 274, + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 413, + "id": 6261, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132929,18 +131977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 139, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2546, + "id": 6262, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -132948,15 +131996,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 139, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2949, + "id": 6263, "result": { "type": "IOI", "score": [ @@ -132969,14 +132017,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 139, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3663, + "id": 6264, "result": { "type": "IOI", "score": [ @@ -132988,15 +132036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 139, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3725, + "id": 6265, "result": { "type": "IOI", "score": [ @@ -133008,15 +132056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 139, + "problemId": "d1.3", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3801, + "id": 6266, "result": { "type": "IOI", "score": [ @@ -133029,18 +132077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 139, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3821, + "id": 6267, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133048,15 +132096,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 139, + "problemId": "d1.4", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5341, + "id": 6268, "result": { "type": "IOI", "score": [ @@ -133069,18 +132117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 139, + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5926, + "id": 6269, "result": { "type": "IOI", "score": [ - 14.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133088,43 +132136,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5961, + "id": 6270, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5989, + "id": 6271, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133132,43 +132176,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6092, + "id": 6272, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144422", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6273, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6134, + "id": 6274, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133176,19 +132236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6314, + "id": 6275, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133196,19 +132256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.2", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6376, + "id": 6276, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133216,19 +132276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 139, + "problemId": "d1.2", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6504, + "id": 6277, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133237,14 +132297,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 139, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7595, + "id": 6278, "result": { "type": "IOI", "score": [ @@ -133257,14 +132317,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 139, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7908, + "id": 6279, + "result": { + "type": "IOI", + "score": [ + 46.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144093", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6280, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144361", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6281, "result": { "type": "IOI", "score": [ @@ -133277,14 +132377,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 139, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10092, + "id": 6282, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144145", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6283, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144352", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6284, "result": { "type": "IOI", "score": [ @@ -133297,18 +132437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 139, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10879, + "id": 6285, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133317,18 +132457,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 139, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11045, + "id": 6286, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144493", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6287, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133337,14 +132497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 139, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11902, + "id": 6288, "result": { "type": "IOI", "score": [ @@ -133357,18 +132517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 139, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12103, + "id": 6289, "result": { "type": "IOI", "score": [ - 16.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133376,19 +132536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 139, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 414, + "id": 6290, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133396,19 +132556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 461, + "id": 6291, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133416,19 +132576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 503, + "id": 6292, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133436,19 +132596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 526, + "id": 6293, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133456,19 +132616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 661, + "id": 6294, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133476,19 +132636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 705, + "id": 6295, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133496,19 +132656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 744, + "id": 6296, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133516,19 +132676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 772, + "id": 6297, "result": { "type": "IOI", "score": [ - 14.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133536,19 +132696,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2138, + "id": 6298, "result": { "type": "IOI", "score": [ - 0.0 + 58.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144381", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6299, + "result": { + "type": "IOI", + "score": [ + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133557,18 +132737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 27, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2224, + "id": 6300, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133577,18 +132757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 27, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3744, + "id": 6301, "result": { "type": "IOI", "score": [ - 38.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133596,19 +132776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3846, + "id": 6302, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133616,15 +132796,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3882, + "id": 6303, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144258", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6304, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144517", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6305, "result": { "type": "IOI", "score": [ @@ -133640,19 +132860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3900, + "id": 6306, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133660,19 +132880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4126, + "id": 6307, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133680,19 +132900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4198, + "id": 6308, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133700,19 +132920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4245, + "id": 6309, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133720,19 +132940,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4750, + "id": 6310, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144449", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6311, + "result": { + "type": "IOI", + "score": [ + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133741,18 +132981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 27, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5467, + "id": 6312, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133760,19 +133000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6127, + "id": 6313, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133781,18 +133021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 27, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6563, + "id": 6314, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133800,19 +133040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 27, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6666, + "id": 6315, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133820,19 +133060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 27, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6709, + "id": 6316, "result": { "type": "IOI", "score": [ - 57.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133841,18 +133081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 27, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7278, + "id": 6317, "result": { "type": "IOI", "score": [ - 14.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133861,18 +133101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 27, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7288, + "id": 6318, "result": { "type": "IOI", "score": [ - 50.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133881,18 +133121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 27, + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8216, + "id": 6319, "result": { "type": "IOI", "score": [ - 50.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133900,19 +133140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.2", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8223, + "id": 6320, "result": { "type": "IOI", "score": [ - 50.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133920,19 +133160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8229, + "id": 6321, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133941,18 +133181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 27, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8254, + "id": 6322, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -133960,15 +133200,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9710, + "id": 6323, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144079", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6324, "result": { "type": "IOI", "score": [ @@ -133980,19 +133240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9873, + "id": 6325, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134001,14 +133261,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 27, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10535, + "id": 6326, "result": { "type": "IOI", "score": [ @@ -134020,19 +133280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10917, + "id": 6327, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134040,15 +133300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 27, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11322, + "id": 6328, "result": { "type": "IOI", "score": [ @@ -134060,15 +133320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 27, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11533, + "id": 6329, "result": { "type": "IOI", "score": [ @@ -134081,18 +133341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 27, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12026, + "id": 6330, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134100,15 +133360,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 27, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 416, + "id": 6331, + "result": { + "type": "IOI", + "score": [ + 58.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144381", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6332, "result": { "type": "IOI", "score": [ @@ -134120,19 +133400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 440, + "id": 6333, "result": { "type": "IOI", "score": [ - 27.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134140,19 +133420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 470, + "id": 6334, "result": { "type": "IOI", "score": [ - 15.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134160,15 +133440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 500, + "id": 6335, "result": { "type": "IOI", "score": [ @@ -134180,15 +133460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 508, + "id": 6336, "result": { "type": "IOI", "score": [ @@ -134200,19 +133480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 696, + "id": 6337, "result": { "type": "IOI", "score": [ - 50.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134220,19 +133500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 792, + "id": 6338, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134241,18 +133521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 406, + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2189, + "id": 6339, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134260,19 +133540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2515, + "id": 6340, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134281,18 +133561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 406, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2953, + "id": 6341, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134300,19 +133580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.4", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3800, + "id": 6342, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134321,18 +133601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 406, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4667, + "id": 6343, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134340,19 +133620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.4", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4972, + "id": 6344, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134360,19 +133640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5121, + "id": 6345, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134380,19 +133660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5232, + "id": 6346, "result": { "type": "IOI", "score": [ - 48.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134400,19 +133680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5310, + "id": 6347, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134420,19 +133700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5381, + "id": 6348, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134440,19 +133720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6183, + "id": 6349, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134460,19 +133740,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 406, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6269, + "id": 6350, "result": { "type": "IOI", "score": [ - 46.0 + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144178", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6351, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144342", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6352, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134481,7 +133801,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 406, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134501,18 +133821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 406, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6561, + "id": 6354, "result": { "type": "IOI", "score": [ - 32.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134521,74 +133841,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 406, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7657, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 406, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7919, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 406, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7945, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 406, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8026, + "id": 6355, "result": { "type": "IOI", "score": [ @@ -134601,14 +133861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 406, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8355, + "id": 6356, "result": { "type": "IOI", "score": [ @@ -134620,15 +133880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 406, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9805, + "id": 6357, "result": { "type": "IOI", "score": [ @@ -134644,15 +133904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9830, + "id": 6358, "result": { "type": "IOI", "score": [ @@ -134664,19 +133924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10755, + "id": 6359, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134684,19 +133944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10973, + "id": 6360, "result": { "type": "IOI", "score": [ - 31.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134704,19 +133964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11219, + "id": 6361, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134724,19 +133984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11675, + "id": 6362, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134744,19 +134004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 406, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11747, + "id": 6363, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134765,18 +134025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 406, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11867, + "id": 6364, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134785,18 +134045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 406, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 427, + "id": 6365, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134804,19 +134064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 382, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 540, + "id": 6366, "result": { "type": "IOI", "score": [ - 100.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134824,19 +134084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 382, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2479, + "id": 6367, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134845,18 +134105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 382, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2530, + "id": 6368, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134864,19 +134124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 382, + "problemId": "d1.1", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2716, + "id": 6369, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134884,19 +134144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 382, + "problemId": "d1.3", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2887, + "id": 6370, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134904,43 +134164,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 382, + "problemId": "d1.4", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2984, + "id": 6371, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 382, + "problemId": "d1.4", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3008, + "id": 6372, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134948,15 +134204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 382, + "problemId": "d1.4", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3898, + "id": 6373, "result": { "type": "IOI", "score": [ @@ -134969,18 +134225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 382, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4542, + "id": 6374, "result": { "type": "IOI", "score": [ - 0.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -134988,19 +134244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 382, + "problemId": "d1.1", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4640, + "id": 6375, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135009,18 +134265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 382, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8221, + "id": 6376, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135028,19 +134284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 382, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8280, + "id": 6377, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135048,19 +134304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 382, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8326, + "id": 6378, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135068,15 +134324,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 382, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8660, + "id": 6379, "result": { "type": "IOI", "score": [ @@ -135089,18 +134345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 382, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9882, + "id": 6380, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135108,19 +134364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 382, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11740, + "id": 6381, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135129,18 +134385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 382, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 433, + "id": 6382, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135148,19 +134404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 606, + "id": 6383, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135168,19 +134424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 651, + "id": 6384, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135188,19 +134444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.3", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1323, + "id": 6385, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135208,19 +134464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.2", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2244, + "id": 6386, "result": { "type": "IOI", "score": [ - 10.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135228,19 +134484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 122, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4931, + "id": 6387, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135248,19 +134504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.2", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5224, + "id": 6388, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135268,19 +134524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5323, + "id": 6389, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135288,19 +134544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5339, + "id": 6390, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135308,19 +134564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5367, + "id": 6391, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135328,19 +134584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.3", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5372, + "id": 6392, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135349,18 +134605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 122, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5478, + "id": 6393, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135368,15 +134624,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6551, + "id": 6394, "result": { "type": "IOI", "score": [ @@ -135388,19 +134644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.1", + "teamId": "144131", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6769, + "id": 6395, "result": { "type": "IOI", "score": [ - 38.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135408,19 +134664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.2", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9138, + "id": 6396, "result": { "type": "IOI", "score": [ - 13.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135428,19 +134684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9699, + "id": 6397, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135448,15 +134704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 122, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12023, + "id": 6398, "result": { "type": "IOI", "score": [ @@ -135469,18 +134725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 122, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12045, + "id": 6399, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135489,18 +134745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 122, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 437, + "id": 6400, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135508,19 +134764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 366, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 478, + "id": 6401, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135529,14 +134785,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 734, + "id": 6402, "result": { "type": "IOI", "score": [ @@ -135548,19 +134804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 366, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 764, + "id": 6403, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135569,58 +134825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2019, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 366, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2098, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 366, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3106, + "id": 6404, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135628,19 +134844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 366, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3583, + "id": 6405, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135648,19 +134864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 366, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3672, + "id": 6406, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135668,19 +134884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 366, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4147, + "id": 6407, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135689,18 +134905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 366, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4171, + "id": 6408, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135709,18 +134925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 366, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4223, + "id": 6409, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135728,19 +134944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 366, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4751, + "id": 6410, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135749,18 +134965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 366, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6025, + "id": 6411, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135768,19 +134984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 366, + "problemId": "d1.1", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6212, + "id": 6412, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135789,18 +135005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 366, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6263, + "id": 6413, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135808,19 +135024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 366, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6517, + "id": 6414, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135828,15 +135044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 366, + "problemId": "d1.1", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6626, + "id": 6415, "result": { "type": "IOI", "score": [ @@ -135849,18 +135065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 366, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7618, + "id": 6416, "result": { "type": "IOI", "score": [ - 10.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135869,14 +135085,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7680, + "id": 6417, "result": { "type": "IOI", "score": [ @@ -135889,18 +135105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7965, + "id": 6418, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135909,18 +135125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8807, + "id": 6419, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135929,18 +135145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8944, + "id": 6420, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135949,18 +135165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 366, + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9003, + "id": 6421, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -135968,15 +135184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 366, + "problemId": "d1.3", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 446, + "id": 6422, "result": { "type": "IOI", "score": [ @@ -135988,15 +135204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 248, + "problemId": "d1.2", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 713, + "id": 6423, "result": { "type": "IOI", "score": [ @@ -136009,18 +135225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 248, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2631, + "id": 6424, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136028,19 +135244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 248, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 459, + "id": 6425, "result": { "type": "IOI", "score": [ - 48.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136048,19 +135264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 502, + "id": 6426, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136068,19 +135284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 144, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 861, + "id": 6427, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136088,19 +135304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 144, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3035, + "id": 6428, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136108,19 +135324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3100, + "id": 6429, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136128,19 +135344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.3", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3606, + "id": 6430, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136148,15 +135364,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.4", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3632, + "id": 6431, "result": { "type": "IOI", "score": [ @@ -136168,19 +135384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3758, + "id": 6432, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136189,18 +135405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 144, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3825, + "id": 6433, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136208,19 +135424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3866, + "id": 6434, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136229,18 +135445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 144, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4175, + "id": 6435, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136248,15 +135464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6979, + "id": 6436, "result": { "type": "IOI", "score": [ @@ -136268,15 +135484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 144, + "problemId": "d1.1", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7283, + "id": 6437, "result": { "type": "IOI", "score": [ @@ -136289,18 +135505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 144, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8204, + "id": 6438, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136308,19 +135524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 144, + "problemId": "d1.4", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8262, + "id": 6439, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136328,15 +135544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 144, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8384, + "id": 6440, "result": { "type": "IOI", "score": [ @@ -136348,19 +135564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 144, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10109, + "id": 6441, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136368,15 +135584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 144, + "problemId": "d1.3", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10113, + "id": 6442, "result": { "type": "IOI", "score": [ @@ -136389,18 +135605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 144, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10230, + "id": 6443, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136408,19 +135624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 144, + "problemId": "d1.2", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11138, + "id": 6444, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136428,19 +135644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 144, + "problemId": "d1.4", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 462, + "id": 6445, "result": { "type": "IOI", "score": [ - 10.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136448,15 +135664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 222, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2540, + "id": 6446, "result": { "type": "IOI", "score": [ @@ -136469,18 +135685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 222, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2570, + "id": 6447, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136488,19 +135704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 222, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4955, + "id": 6448, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136508,19 +135724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 222, + "problemId": "d1.3", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5039, + "id": 6449, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136528,19 +135744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 222, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6785, + "id": 6450, "result": { "type": "IOI", "score": [ - 21.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136548,19 +135764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 222, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6826, + "id": 6451, "result": { "type": "IOI", "score": [ - 21.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136568,19 +135784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 222, + "problemId": "d1.2", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6940, + "id": 6452, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136588,15 +135804,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 222, + "problemId": "d1.3", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8949, + "id": 6453, "result": { "type": "IOI", "score": [ @@ -136609,18 +135825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8986, + "id": 6454, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136629,14 +135845,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9091, + "id": 6455, "result": { "type": "IOI", "score": [ @@ -136648,15 +135864,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 222, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9151, + "id": 6456, "result": { "type": "IOI", "score": [ @@ -136669,14 +135885,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9155, + "id": 6457, "result": { "type": "IOI", "score": [ @@ -136688,15 +135904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 222, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9240, + "id": 6458, "result": { "type": "IOI", "score": [ @@ -136708,15 +135924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 222, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9325, + "id": 6459, "result": { "type": "IOI", "score": [ @@ -136728,35 +135944,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 222, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9335, + "id": 6460, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9393, + "id": 6461, "result": { "type": "IOI", "score": [ @@ -136769,14 +135989,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9413, + "id": 6462, "result": { "type": "IOI", "score": [ @@ -136789,14 +136009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 222, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11037, + "id": 6463, "result": { "type": "IOI", "score": [ @@ -136809,18 +136029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 222, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 467, + "id": 6464, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136828,19 +136048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.1", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 600, + "id": 6465, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136848,19 +136068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 962, + "id": 6466, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136868,19 +136088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1115, + "id": 6467, "result": { "type": "IOI", "score": [ - 63.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136888,19 +136108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1197, + "id": 6468, "result": { "type": "IOI", "score": [ - 63.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136908,19 +136128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1417, + "id": 6469, "result": { "type": "IOI", "score": [ - 63.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136929,18 +136149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 218, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1443, + "id": 6470, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136948,19 +136168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2215, + "id": 6471, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136968,19 +136188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2239, + "id": 6472, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -136988,19 +136208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2521, + "id": 6473, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137008,19 +136228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3440, + "id": 6474, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137028,19 +136248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6160, + "id": 6475, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137048,15 +136268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6653, + "id": 6476, "result": { "type": "IOI", "score": [ @@ -137068,15 +136288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7639, + "id": 6477, "result": { "type": "IOI", "score": [ @@ -137089,18 +136309,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7707, + "id": 6478, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137108,19 +136328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7931, + "id": 6479, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137129,14 +136349,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7967, + "id": 6480, "result": { "type": "IOI", "score": [ @@ -137149,18 +136369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8050, + "id": 6481, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137169,18 +136389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8207, + "id": 6482, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137188,15 +136408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8259, + "id": 6483, "result": { "type": "IOI", "score": [ @@ -137208,15 +136428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.2", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8817, + "id": 6484, "result": { "type": "IOI", "score": [ @@ -137229,18 +136449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9120, + "id": 6485, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137248,19 +136468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.4", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9197, + "id": 6486, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137268,19 +136488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9974, + "id": 6487, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137288,19 +136508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 218, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10300, + "id": 6488, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137309,18 +136529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10742, + "id": 6489, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137329,42 +136549,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 218, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11107, + "id": 6490, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11146, + "id": 6491, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137372,15 +136588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 218, + "problemId": "d1.3", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11572, + "id": 6492, "result": { "type": "IOI", "score": [ @@ -137397,98 +136613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 218, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11663, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 218, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 480, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 133, + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 530, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 133, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 575, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 133, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 614, + "id": 6493, "result": { "type": "IOI", "score": [ - 0.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137497,18 +136633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 133, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1961, + "id": 6494, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137517,14 +136653,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 133, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2313, + "id": 6495, "result": { "type": "IOI", "score": [ @@ -137537,18 +136673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 133, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2396, + "id": 6496, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137556,19 +136692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2849, + "id": 6497, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137576,19 +136712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2923, + "id": 6498, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137596,15 +136732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2932, + "id": 6499, "result": { "type": "IOI", "score": [ @@ -137617,38 +136753,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 133, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4402, + "id": 6500, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5060, + "id": 6501, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137656,19 +136796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5288, + "id": 6502, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137677,14 +136817,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5382, + "id": 6503, "result": { "type": "IOI", "score": [ @@ -137696,19 +136836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5392, + "id": 6504, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137716,15 +136856,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5403, + "id": 6505, "result": { "type": "IOI", "score": [ @@ -137737,18 +136877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5453, + "id": 6506, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137756,19 +136896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5500, + "id": 6507, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137776,15 +136916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.2", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5582, + "id": 6508, "result": { "type": "IOI", "score": [ @@ -137796,19 +136936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.2", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5681, + "id": 6509, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137817,18 +136957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5841, + "id": 6510, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137836,15 +136976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5893, + "id": 6511, "result": { "type": "IOI", "score": [ @@ -137857,18 +136997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5998, + "id": 6512, "result": { "type": "IOI", "score": [ - 0.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137876,15 +137016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6068, + "id": 6513, "result": { "type": "IOI", "score": [ @@ -137896,19 +137036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6098, + "id": 6514, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137916,15 +137056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6234, + "id": 6515, "result": { "type": "IOI", "score": [ @@ -137936,19 +137076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6373, + "id": 6516, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137956,15 +137096,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6456, + "id": 6517, "result": { "type": "IOI", "score": [ @@ -137977,18 +137117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6558, + "id": 6518, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -137996,35 +137136,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7209, + "id": 6519, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7231, + "id": 6520, "result": { "type": "IOI", "score": [ @@ -138036,19 +137180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7478, + "id": 6521, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138056,19 +137200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7658, + "id": 6522, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138077,18 +137221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 133, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8125, + "id": 6523, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138096,19 +137240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9631, + "id": 6524, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138117,14 +137261,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 133, + "teamId": "144505", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9854, + "id": 6525, "result": { "type": "IOI", "score": [ @@ -138141,18 +137285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 133, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9887, + "id": 6526, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138160,19 +137304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 133, + "problemId": "d1.1", + "teamId": "144212", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10623, + "id": 6527, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138180,19 +137324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 133, + "problemId": "d1.3", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10841, + "id": 6528, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138200,15 +137344,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 133, + "problemId": "d1.3", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11029, + "id": 6529, "result": { "type": "IOI", "score": [ @@ -138220,19 +137364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 133, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11097, + "id": 6530, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138240,15 +137384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 133, + "problemId": "d1.3", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 481, + "id": 6531, "result": { "type": "IOI", "score": [ @@ -138260,19 +137404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 493, + "id": 6532, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138280,19 +137424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 636, + "id": 6533, "result": { "type": "IOI", "score": [ - 29.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138300,19 +137444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 351, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 652, + "id": 6534, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138320,15 +137464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1874, + "id": 6535, "result": { "type": "IOI", "score": [ @@ -138340,19 +137484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 351, + "problemId": "d1.1", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1885, + "id": 6536, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138360,15 +137504,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.2", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1970, + "id": 6537, "result": { "type": "IOI", "score": [ @@ -138380,35 +137524,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2241, + "id": 6538, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2295, + "id": 6539, "result": { "type": "IOI", "score": [ @@ -138421,18 +137569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2641, + "id": 6540, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138440,19 +137588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2915, + "id": 6541, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138461,14 +137609,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2981, + "id": 6542, "result": { "type": "IOI", "score": [ @@ -138481,18 +137629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3072, + "id": 6543, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138501,18 +137649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3346, + "id": 6544, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138521,18 +137669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3365, + "id": 6545, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138540,19 +137688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.4", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3543, + "id": 6546, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138560,19 +137708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.2", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3836, + "id": 6547, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138580,15 +137728,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 351, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3883, + "id": 6548, "result": { "type": "IOI", "score": [ @@ -138601,18 +137749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3963, + "id": 6549, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138621,38 +137769,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 351, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5087, + "id": 6550, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 351, + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5592, + "id": 6551, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138660,39 +137812,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 351, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6242, + "id": 6552, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 351, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7271, + "id": 6553, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138700,19 +137856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7277, + "id": 6554, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138721,14 +137877,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 351, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7379, + "id": 6555, "result": { "type": "IOI", "score": [ @@ -138741,18 +137897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 351, + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7417, + "id": 6556, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138760,19 +137916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.4", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7491, + "id": 6557, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138780,19 +137936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7722, + "id": 6558, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138800,19 +137956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7857, + "id": 6559, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138820,19 +137976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7898, + "id": 6560, "result": { "type": "IOI", "score": [ - 37.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138841,18 +137997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 351, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8400, + "id": 6561, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138860,15 +138016,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.3", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9871, + "id": 6562, "result": { "type": "IOI", "score": [ @@ -138880,19 +138036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 351, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9963, + "id": 6563, "result": { "type": "IOI", "score": [ - 57.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138901,14 +138057,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 351, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 483, + "id": 6564, "result": { "type": "IOI", "score": [ @@ -138920,15 +138076,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 104, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 504, + "id": 6565, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6566, "result": { "type": "IOI", "score": [ @@ -138940,19 +138116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 104, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 537, + "id": 6567, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -138960,15 +138136,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 104, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1079, + "id": 6568, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144415", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6569, "result": { "type": "IOI", "score": [ @@ -138981,18 +138177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 104, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1309, + "id": 6570, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139001,14 +138197,78 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 104, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3112, + "id": 6571, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144252", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6572, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144219", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6573, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144384", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6574, "result": { "type": "IOI", "score": [ @@ -139021,18 +138281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 104, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4520, + "id": 6575, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139040,19 +138300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 104, + "problemId": "d1.2", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4989, + "id": 6576, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139060,19 +138320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 104, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5125, + "id": 6577, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139080,19 +138340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 104, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5953, + "id": 6578, "result": { "type": "IOI", "score": [ - 50.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139100,19 +138360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 104, + "problemId": "d1.2", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6135, + "id": 6579, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139121,54 +138381,62 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 104, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7295, + "id": 6580, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 104, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7441, + "id": 6581, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 104, + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7682, + "id": 6582, "result": { "type": "IOI", "score": [ @@ -139181,18 +138449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 104, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8509, + "id": 6583, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139200,15 +138468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 104, + "problemId": "d1.1", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8678, + "id": 6584, "result": { "type": "IOI", "score": [ @@ -139220,19 +138488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 104, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8870, + "id": 6585, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139240,19 +138508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 104, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 489, + "id": 6586, "result": { "type": "IOI", "score": [ - 21.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139260,19 +138528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 501, + "id": 6587, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139280,15 +138548,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 517, + "id": 6588, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144116", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6589, "result": { "type": "IOI", "score": [ @@ -139300,19 +138588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 528, + "id": 6590, "result": { "type": "IOI", "score": [ - 21.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139320,15 +138608,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 548, + "id": 6591, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144166", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6592, "result": { "type": "IOI", "score": [ @@ -139340,19 +138648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 737, + "id": 6593, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139360,19 +138668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1651, + "id": 6594, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139381,18 +138689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 265, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1786, + "id": 6595, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139400,15 +138708,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1864, + "id": 6596, "result": { "type": "IOI", "score": [ @@ -139420,43 +138728,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1909, + "id": 6597, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1959, + "id": 6598, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139464,19 +138768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2083, + "id": 6599, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139484,19 +138788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2113, + "id": 6600, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139504,19 +138808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2321, + "id": 6601, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139525,14 +138829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 265, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3509, + "id": 6602, "result": { "type": "IOI", "score": [ @@ -139544,19 +138848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3622, + "id": 6603, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139564,19 +138868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4256, + "id": 6604, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139585,14 +138889,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4683, + "id": 6605, "result": { "type": "IOI", "score": [ @@ -139605,14 +138909,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5908, + "id": 6606, "result": { "type": "IOI", "score": [ @@ -139625,18 +138929,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5970, + "id": 6607, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139644,19 +138948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6002, + "id": 6608, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139664,19 +138968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.4", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6049, + "id": 6609, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139684,15 +138988,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6147, + "id": 6610, "result": { "type": "IOI", "score": [ @@ -139704,19 +139008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6402, + "id": 6611, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139724,8 +139028,48 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144361", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6612, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144205", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6613, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139745,18 +139089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6689, + "id": 6615, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139764,19 +139108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6721, + "id": 6616, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139784,19 +139128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6800, + "id": 6617, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139804,19 +139148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6876, + "id": 6618, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139825,18 +139169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6943, + "id": 6619, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139845,14 +139189,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7992, + "id": 6620, "result": { "type": "IOI", "score": [ @@ -139865,18 +139209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8065, + "id": 6621, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139885,14 +139229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8295, + "id": 6622, "result": { "type": "IOI", "score": [ @@ -139905,18 +139249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 265, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8727, + "id": 6623, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139924,19 +139268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.2", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9188, + "id": 6624, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139944,19 +139288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.2", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9242, + "id": 6625, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139964,19 +139308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10305, + "id": 6626, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -139984,19 +139328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10678, + "id": 6627, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140005,18 +139349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10696, + "id": 6628, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140024,19 +139368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10848, + "id": 6629, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140044,19 +139388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10859, + "id": 6630, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140064,15 +139408,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10953, + "id": 6631, "result": { "type": "IOI", "score": [ @@ -140085,18 +139429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11020, + "id": 6632, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140104,19 +139448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11113, + "id": 6633, "result": { "type": "IOI", "score": [ - 31.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140124,19 +139468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11127, + "id": 6634, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140145,18 +139489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11338, + "id": 6635, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140164,15 +139508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11729, + "id": 6636, "result": { "type": "IOI", "score": [ @@ -140185,18 +139529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 265, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11923, + "id": 6637, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140204,15 +139548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 265, + "problemId": "d1.1", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 494, + "id": 6638, "result": { "type": "IOI", "score": [ @@ -140225,18 +139569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 6, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1092, + "id": 6639, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140244,19 +139588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1422, + "id": 6640, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140264,19 +139608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 6, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1447, + "id": 6641, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140284,19 +139628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 6, + "problemId": "d1.1", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2216, + "id": 6642, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140305,18 +139649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 6, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2230, + "id": 6643, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140324,15 +139668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 6, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2706, + "id": 6644, "result": { "type": "IOI", "score": [ @@ -140345,18 +139689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 6, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2787, + "id": 6645, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140364,19 +139708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2801, + "id": 6646, "result": { "type": "IOI", "score": [ - 0.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140384,39 +139728,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2868, + "id": 6647, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2879, + "id": 6648, "result": { "type": "IOI", "score": [ @@ -140429,14 +139769,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 6, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2940, + "id": 6649, "result": { "type": "IOI", "score": [ @@ -140449,18 +139789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 6, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3050, + "id": 6650, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140468,19 +139808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3553, + "id": 6651, "result": { "type": "IOI", "score": [ - 16.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140488,19 +139828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3637, + "id": 6652, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140508,19 +139848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3773, + "id": 6653, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140529,18 +139869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 6, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4830, + "id": 6654, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140548,19 +139888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5044, + "id": 6655, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140568,19 +139908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5513, + "id": 6656, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140588,15 +139928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5924, + "id": 6657, "result": { "type": "IOI", "score": [ @@ -140608,19 +139948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5974, + "id": 6658, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140629,42 +139969,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 6, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6357, + "id": 6659, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6389, + "id": 6660, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140672,19 +140008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6603, + "id": 6661, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140692,19 +140028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6676, + "id": 6662, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140713,18 +140049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 6, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6687, + "id": 6663, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140732,19 +140068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6970, + "id": 6664, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140752,19 +140088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.4", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6998, + "id": 6665, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140772,19 +140108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7033, + "id": 6666, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140793,18 +140129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 6, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7076, + "id": 6667, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140812,19 +140148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7103, + "id": 6668, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140833,18 +140169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 6, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7506, + "id": 6669, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140852,19 +140188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7525, + "id": 6670, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140872,19 +140208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7942, + "id": 6671, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140892,15 +140228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8061, + "id": 6672, "result": { "type": "IOI", "score": [ @@ -140913,14 +140249,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 6, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8102, + "id": 6673, "result": { "type": "IOI", "score": [ @@ -140932,19 +140268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 6, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8342, + "id": 6674, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -140953,14 +140289,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 6, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8742, + "id": 6675, "result": { "type": "IOI", "score": [ @@ -140972,15 +140308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 6, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8745, + "id": 6676, "result": { "type": "IOI", "score": [ @@ -140993,138 +140329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 6, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 495, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 667, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 759, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 782, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 847, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 977, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 58, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 993, + "id": 6677, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141133,18 +140349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 58, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1132, + "id": 6678, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141152,15 +140368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4479, + "id": 6679, "result": { "type": "IOI", "score": [ @@ -141172,19 +140388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4547, + "id": 6680, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141192,19 +140408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5558, + "id": 6681, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141212,19 +140428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5656, + "id": 6682, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141232,19 +140448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6535, + "id": 6683, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141252,15 +140468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6610, + "id": 6684, "result": { "type": "IOI", "score": [ @@ -141273,7 +140489,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 58, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141293,18 +140509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 58, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6877, + "id": 6686, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141312,19 +140528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7307, + "id": 6687, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141332,19 +140548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7340, + "id": 6688, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141352,19 +140568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 58, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7642, + "id": 6689, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141372,19 +140588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7994, + "id": 6690, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141392,19 +140608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8034, + "id": 6691, "result": { "type": "IOI", "score": [ - 9.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141412,19 +140628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8245, + "id": 6692, "result": { "type": "IOI", "score": [ - 24.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141432,19 +140648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8288, + "id": 6693, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141452,19 +140668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8391, + "id": 6694, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141472,15 +140688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8429, + "id": 6695, "result": { "type": "IOI", "score": [ @@ -141492,19 +140708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8461, + "id": 6696, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141513,18 +140729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 58, + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8510, + "id": 6697, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141533,18 +140749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 58, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8612, + "id": 6698, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141552,19 +140768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8652, + "id": 6699, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141572,19 +140788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.2", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9470, + "id": 6700, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141592,19 +140808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9494, + "id": 6701, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141612,19 +140828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10355, + "id": 6702, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141632,19 +140848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10466, + "id": 6703, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141652,19 +140868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11083, + "id": 6704, "result": { "type": "IOI", "score": [ - 24.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141673,18 +140889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 58, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11239, + "id": 6705, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141692,19 +140908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11566, + "id": 6706, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141712,15 +140928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 58, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 497, + "id": 6707, "result": { "type": "IOI", "score": [ @@ -141733,18 +140949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 81, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4487, + "id": 6708, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141752,19 +140968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 81, + "problemId": "d1.2", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4759, + "id": 6709, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141772,19 +140988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 81, + "problemId": "d1.1", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7042, + "id": 6710, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141792,19 +141008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 81, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7395, + "id": 6711, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141813,14 +141029,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 81, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7817, + "id": 6712, "result": { "type": "IOI", "score": [ @@ -141832,19 +141048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 81, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8006, + "id": 6713, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141853,14 +141069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 81, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8797, + "id": 6714, "result": { "type": "IOI", "score": [ @@ -141873,18 +141089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 81, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9523, + "id": 6715, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141892,19 +141108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 81, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9613, + "id": 6716, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141912,15 +141128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 81, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10070, + "id": 6717, "result": { "type": "IOI", "score": [ @@ -141933,18 +141149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 81, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10326, + "id": 6718, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141952,19 +141168,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 81, + "problemId": "d1.1", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11169, + "id": 6719, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144470", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6720, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -141972,15 +141212,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 81, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11777, + "id": 6721, "result": { "type": "IOI", "score": [ @@ -141993,18 +141233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 81, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 499, + "id": 6722, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142012,19 +141252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 531, + "id": 6723, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142032,19 +141272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 727, + "id": 6724, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142052,19 +141292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1866, + "id": 6725, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142073,18 +141313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 260, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3530, + "id": 6726, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142092,15 +141332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 260, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3701, + "id": 6727, "result": { "type": "IOI", "score": [ @@ -142112,15 +141352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3733, + "id": 6728, "result": { "type": "IOI", "score": [ @@ -142132,19 +141372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3745, + "id": 6729, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142152,15 +141392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 260, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4895, + "id": 6730, "result": { "type": "IOI", "score": [ @@ -142173,18 +141413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5002, + "id": 6731, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142193,18 +141433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5180, + "id": 6732, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142212,19 +141452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5413, + "id": 6733, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142232,15 +141472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5442, + "id": 6734, "result": { "type": "IOI", "score": [ @@ -142253,18 +141493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5734, + "id": 6735, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142272,15 +141512,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6270, + "id": 6736, "result": { "type": "IOI", "score": [ @@ -142293,18 +141533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6409, + "id": 6737, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142312,15 +141552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6665, + "id": 6738, "result": { "type": "IOI", "score": [ @@ -142333,18 +141573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6985, + "id": 6739, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142352,19 +141592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7072, + "id": 6740, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142373,14 +141613,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8685, + "id": 6741, "result": { "type": "IOI", "score": [ @@ -142393,18 +141633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8761, + "id": 6742, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142412,19 +141652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.1", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8832, + "id": 6743, "result": { "type": "IOI", "score": [ - 16.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142432,19 +141672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9207, + "id": 6744, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142453,18 +141693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9754, + "id": 6745, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142472,19 +141712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9915, + "id": 6746, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142492,15 +141732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 260, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9947, + "id": 6747, "result": { "type": "IOI", "score": [ @@ -142513,18 +141753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11297, + "id": 6748, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142532,19 +141772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11486, + "id": 6749, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142553,18 +141793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 260, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11815, + "id": 6750, "result": { "type": "IOI", "score": [ - 22.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142573,18 +141813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 260, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11959, + "id": 6751, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142592,19 +141832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11995, + "id": 6752, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142612,19 +141852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 260, + "problemId": "d1.2", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12017, + "id": 6753, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142632,19 +141872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 260, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 505, + "id": 6754, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142652,19 +141892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 582, + "id": 6755, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142672,19 +141912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144459", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 898, + "id": 6756, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142692,19 +141932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 953, + "id": 6757, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142712,19 +141952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 968, + "id": 6758, "result": { "type": "IOI", "score": [ - 23.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142732,19 +141972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1110, + "id": 6759, "result": { "type": "IOI", "score": [ - 23.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142752,19 +141992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1116, + "id": 6760, "result": { "type": "IOI", "score": [ - 23.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142773,18 +142013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 118, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1139, + "id": 6761, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142792,19 +142032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1296, + "id": 6762, "result": { "type": "IOI", "score": [ - 23.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142812,19 +142052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1335, + "id": 6763, "result": { "type": "IOI", "score": [ - 23.0 + 70.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142832,19 +142072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1580, + "id": 6764, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142852,19 +142092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1933, + "id": 6765, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142873,14 +142113,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1960, + "id": 6766, "result": { "type": "IOI", "score": [ @@ -142892,19 +142132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2029, + "id": 6767, "result": { "type": "IOI", "score": [ - 0.0 + 40.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142912,19 +142152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2050, + "id": 6768, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142932,19 +142172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2073, + "id": 6769, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142952,15 +142192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2137, + "id": 6770, "result": { "type": "IOI", "score": [ @@ -142972,19 +142212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2346, + "id": 6771, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -142993,18 +142233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2569, + "id": 6772, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143012,15 +142252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2571, + "id": 6773, "result": { "type": "IOI", "score": [ @@ -143033,18 +142273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2608, + "id": 6774, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143052,19 +142292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3079, + "id": 6775, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143072,19 +142312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3116, + "id": 6776, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143093,14 +142333,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3386, + "id": 6777, "result": { "type": "IOI", "score": [ @@ -143113,14 +142353,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4682, + "id": 6778, "result": { "type": "IOI", "score": [ @@ -143132,19 +142372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4704, + "id": 6779, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143152,39 +142392,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4764, + "id": 6780, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4779, + "id": 6781, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143192,15 +142436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4855, + "id": 6782, "result": { "type": "IOI", "score": [ @@ -143216,15 +142460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4863, + "id": 6783, "result": { "type": "IOI", "score": [ @@ -143236,19 +142480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4889, + "id": 6784, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143256,19 +142500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4920, + "id": 6785, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143276,15 +142520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4978, + "id": 6786, "result": { "type": "IOI", "score": [ @@ -143296,15 +142540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5065, + "id": 6787, "result": { "type": "IOI", "score": [ @@ -143316,19 +142560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5126, + "id": 6788, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143336,19 +142580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5377, + "id": 6789, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143356,15 +142600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5545, + "id": 6790, "result": { "type": "IOI", "score": [ @@ -143376,39 +142620,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5815, + "id": 6791, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5929, + "id": 6792, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143416,19 +142664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5983, + "id": 6793, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143436,15 +142684,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6104, + "id": 6794, "result": { "type": "IOI", "score": [ @@ -143456,19 +142704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6153, + "id": 6795, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143476,19 +142724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6235, + "id": 6796, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143496,15 +142744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6431, + "id": 6797, "result": { "type": "IOI", "score": [ @@ -143517,14 +142765,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 118, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6457, + "id": 6798, "result": { "type": "IOI", "score": [ @@ -143536,19 +142784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6513, + "id": 6799, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143556,15 +142804,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6520, + "id": 6800, "result": { "type": "IOI", "score": [ @@ -143576,19 +142824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7207, + "id": 6801, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143596,19 +142844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7317, + "id": 6802, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143616,15 +142864,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 118, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7436, + "id": 6803, "result": { "type": "IOI", "score": [ @@ -143637,14 +142885,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 118, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7460, + "id": 6804, "result": { "type": "IOI", "score": [ @@ -143657,14 +142905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 118, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8769, + "id": 6805, "result": { "type": "IOI", "score": [ @@ -143676,19 +142924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8835, + "id": 6806, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143696,19 +142944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8866, + "id": 6807, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143717,14 +142965,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9543, + "id": 6808, "result": { "type": "IOI", "score": [ @@ -143737,18 +142985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9579, + "id": 6809, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143757,18 +143005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10115, + "id": 6810, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143776,15 +143024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10266, + "id": 6811, "result": { "type": "IOI", "score": [ @@ -143796,19 +143044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.1", + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10418, + "id": 6812, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143816,19 +143064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10480, + "id": 6813, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143837,18 +143085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10895, + "id": 6814, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143856,15 +143104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10921, + "id": 6815, "result": { "type": "IOI", "score": [ @@ -143877,18 +143125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11059, + "id": 6816, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143897,18 +143145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 118, + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11232, + "id": 6817, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143916,19 +143164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11386, + "id": 6818, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143936,19 +143184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 118, + "problemId": "d1.3", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11552, + "id": 6819, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143957,18 +143205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 118, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 509, + "id": 6820, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -143976,15 +143224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 138, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6461, + "id": 6821, "result": { "type": "IOI", "score": [ @@ -143996,19 +143244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 138, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7702, + "id": 6822, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144016,19 +143264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 138, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7969, + "id": 6823, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144036,15 +143284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 138, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8045, + "id": 6824, "result": { "type": "IOI", "score": [ @@ -144056,15 +143304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 138, + "problemId": "d1.3", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8362, + "id": 6825, "result": { "type": "IOI", "score": [ @@ -144076,19 +143324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 138, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8445, + "id": 6826, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144096,15 +143344,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 138, + "problemId": "d1.4", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9005, + "id": 6827, "result": { "type": "IOI", "score": [ @@ -144117,18 +143365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 138, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11583, + "id": 6828, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144136,19 +143384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 138, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 512, + "id": 6829, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144156,15 +143404,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1711, + "id": 6830, "result": { "type": "IOI", "score": [ @@ -144176,15 +143424,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144124", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1756, + "id": 6831, "result": { "type": "IOI", "score": [ @@ -144196,15 +143444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1810, + "id": 6832, "result": { "type": "IOI", "score": [ @@ -144217,18 +143465,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 232, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1982, + "id": 6833, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144141", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6834, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144237,18 +143505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 232, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3897, + "id": 6835, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144256,19 +143524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 232, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4325, + "id": 6836, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144276,15 +143544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 232, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5357, + "id": 6837, "result": { "type": "IOI", "score": [ @@ -144297,18 +143565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 232, + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5596, + "id": 6838, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144316,19 +143584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 232, + "problemId": "d1.1", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5698, + "id": 6839, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144336,15 +143604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 232, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5807, + "id": 6840, "result": { "type": "IOI", "score": [ @@ -144357,18 +143625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 232, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5851, + "id": 6841, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144377,14 +143645,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 232, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5903, + "id": 6842, "result": { "type": "IOI", "score": [ @@ -144396,19 +143664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6036, + "id": 6843, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144416,19 +143684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9037, + "id": 6844, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144436,15 +143704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9769, + "id": 6845, "result": { "type": "IOI", "score": [ @@ -144456,19 +143724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9845, + "id": 6846, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144476,19 +143744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9940, + "id": 6847, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144496,19 +143764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10332, + "id": 6848, "result": { "type": "IOI", "score": [ - 27.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144516,19 +143784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.2", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10444, + "id": 6849, "result": { "type": "IOI", "score": [ - 36.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144536,19 +143804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11051, + "id": 6850, "result": { "type": "IOI", "score": [ - 48.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144556,15 +143824,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 232, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 516, + "id": 6851, "result": { "type": "IOI", "score": [ @@ -144576,15 +143844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1483, + "id": 6852, "result": { "type": "IOI", "score": [ @@ -144597,18 +143865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 391, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1569, + "id": 6853, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144617,18 +143885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 391, + "teamId": "144212", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3080, + "id": 6854, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144637,14 +143905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 391, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5532, + "id": 6855, "result": { "type": "IOI", "score": [ @@ -144656,19 +143924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5625, + "id": 6856, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144677,18 +143945,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 391, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5818, + "id": 6857, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144696,19 +143964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6107, + "id": 6858, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144716,19 +143984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6207, + "id": 6859, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144736,19 +144004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6285, + "id": 6860, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144756,19 +144024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6317, + "id": 6861, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144776,19 +144044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6609, + "id": 6862, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144796,19 +144064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.1", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7464, + "id": 6863, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144817,14 +144085,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7527, + "id": 6864, "result": { "type": "IOI", "score": [ @@ -144837,18 +144105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7846, + "id": 6865, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144857,14 +144125,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8032, + "id": 6866, "result": { "type": "IOI", "score": [ @@ -144876,19 +144144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 391, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8272, + "id": 6867, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144897,18 +144165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8387, + "id": 6868, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144916,15 +144184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 391, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8560, + "id": 6869, "result": { "type": "IOI", "score": [ @@ -144937,18 +144205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8838, + "id": 6870, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144957,14 +144225,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8988, + "id": 6871, "result": { "type": "IOI", "score": [ @@ -144976,19 +144244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9358, + "id": 6872, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -144996,19 +144264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9727, + "id": 6873, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145016,19 +144284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9760, + "id": 6874, "result": { "type": "IOI", "score": [ - 38.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145036,19 +144304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9867, + "id": 6875, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145056,19 +144324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9938, + "id": 6876, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145076,19 +144344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9982, + "id": 6877, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145096,19 +144364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.1", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10076, + "id": 6878, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145117,18 +144385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 391, + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10283, + "id": 6879, "result": { "type": "IOI", "score": [ - 38.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145137,18 +144405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 391, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10395, + "id": 6880, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145156,19 +144424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10483, + "id": 6881, "result": { "type": "IOI", "score": [ - 29.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145176,19 +144444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 391, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11474, + "id": 6882, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145197,18 +144465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 391, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 519, + "id": 6883, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145216,19 +144484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.2", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 541, + "id": 6884, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145236,19 +144504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1002, + "id": 6885, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145256,19 +144524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.3", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1059, + "id": 6886, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145277,18 +144545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 143, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1077, + "id": 6887, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145296,15 +144564,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1144, + "id": 6888, "result": { "type": "IOI", "score": [ @@ -145316,19 +144584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1167, + "id": 6889, "result": { "type": "IOI", "score": [ - 12.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145336,15 +144604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1202, + "id": 6890, "result": { "type": "IOI", "score": [ @@ -145356,19 +144624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 143, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1216, + "id": 6891, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145377,18 +144645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 143, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1248, + "id": 6892, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145397,18 +144665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 143, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3209, + "id": 6893, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145417,14 +144685,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 143, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4319, + "id": 6894, "result": { "type": "IOI", "score": [ @@ -145436,19 +144704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 143, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 529, + "id": 6895, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145456,15 +144724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 295, + "problemId": "d1.2", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1537, + "id": 6896, "result": { "type": "IOI", "score": [ @@ -145476,19 +144744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3435, + "id": 6897, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145496,19 +144764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3964, + "id": 6898, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145517,18 +144785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 295, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4092, + "id": 6899, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145536,19 +144804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 295, + "problemId": "d1.1", + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6502, + "id": 6900, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145556,19 +144824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 295, + "problemId": "d1.2", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6569, + "id": 6901, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145576,19 +144844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 295, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6793, + "id": 6902, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145596,19 +144864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 295, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6944, + "id": 6903, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145617,14 +144885,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 295, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7368, + "id": 6904, "result": { "type": "IOI", "score": [ @@ -145636,19 +144904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7400, + "id": 6905, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145657,18 +144925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 295, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7686, + "id": 6906, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145676,19 +144944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8333, + "id": 6907, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145696,19 +144964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8869, + "id": 6908, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145716,19 +144984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8987, + "id": 6909, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145736,19 +145004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9094, + "id": 6910, "result": { "type": "IOI", "score": [ - 35.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145757,18 +145025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 295, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10683, + "id": 6911, "result": { "type": "IOI", "score": [ - 35.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145776,19 +145044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.2", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10803, + "id": 6912, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145796,19 +145064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10928, + "id": 6913, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145816,19 +145084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.2", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10958, + "id": 6914, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145836,15 +145104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 295, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 533, + "id": 6915, "result": { "type": "IOI", "score": [ @@ -145856,15 +145124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 589, + "id": 6916, "result": { "type": "IOI", "score": [ @@ -145876,15 +145144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 620, + "id": 6917, "result": { "type": "IOI", "score": [ @@ -145896,15 +145164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 698, + "id": 6918, "result": { "type": "IOI", "score": [ @@ -145916,15 +145184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 775, + "id": 6919, "result": { "type": "IOI", "score": [ @@ -145937,18 +145205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 193, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 793, + "id": 6920, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145956,15 +145224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3262, + "id": 6921, "result": { "type": "IOI", "score": [ @@ -145977,18 +145245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 193, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3291, + "id": 6922, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -145996,19 +145264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3373, + "id": 6923, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146016,19 +145284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.4", + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3554, + "id": 6924, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146036,19 +145304,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5200, + "id": 6925, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144094", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6926, + "result": { + "type": "IOI", + "score": [ + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146057,14 +145345,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 193, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6805, + "id": 6927, "result": { "type": "IOI", "score": [ @@ -146077,14 +145365,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 193, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6968, + "id": 6928, "result": { "type": "IOI", "score": [ @@ -146096,15 +145384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 193, + "problemId": "d1.1", + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9411, + "id": 6929, "result": { "type": "IOI", "score": [ @@ -146117,14 +145405,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 193, + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9666, + "id": 6930, "result": { "type": "IOI", "score": [ @@ -146136,19 +145424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 193, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 542, + "id": 6931, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146157,18 +145445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 310, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 564, + "id": 6932, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146176,15 +145464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 616, + "id": 6933, "result": { "type": "IOI", "score": [ @@ -146196,15 +145484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 632, + "id": 6934, "result": { "type": "IOI", "score": [ @@ -146217,18 +145505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 310, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 711, + "id": 6935, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146236,19 +145524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 900, + "id": 6936, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146256,19 +145544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 946, + "id": 6937, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146276,19 +145564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1512, + "id": 6938, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146296,15 +145584,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.4", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1598, + "id": 6939, "result": { "type": "IOI", "score": [ @@ -146316,19 +145604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1615, + "id": 6940, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146336,19 +145624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.4", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1641, + "id": 6941, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146357,14 +145645,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1680, + "id": 6942, "result": { "type": "IOI", "score": [ @@ -146376,19 +145664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1763, + "id": 6943, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146397,18 +145685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2666, + "id": 6944, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146417,14 +145705,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2695, + "id": 6945, "result": { "type": "IOI", "score": [ @@ -146436,19 +145724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.4", + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2977, + "id": 6946, "result": { "type": "IOI", "score": [ - 0.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146456,15 +145744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3137, + "id": 6947, "result": { "type": "IOI", "score": [ @@ -146476,15 +145764,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3215, + "id": 6948, "result": { "type": "IOI", "score": [ @@ -146497,18 +145785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3522, + "id": 6949, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146517,18 +145805,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3647, + "id": 6950, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146536,19 +145824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4363, + "id": 6951, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146556,19 +145844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4899, + "id": 6952, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146576,19 +145864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4956, + "id": 6953, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146596,19 +145884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 310, + "problemId": "d1.4", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5182, + "id": 6954, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146617,18 +145905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5495, + "id": 6955, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146637,18 +145925,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5669, + "id": 6956, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 6957, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146657,14 +145969,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 310, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6794, + "id": 6958, "result": { "type": "IOI", "score": [ @@ -146676,35 +145988,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.1", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6866, + "id": 6959, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7493, + "id": 6960, "result": { "type": "IOI", "score": [ @@ -146716,19 +146032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8071, + "id": 6961, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146736,19 +146052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8456, + "id": 6962, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146756,19 +146072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9068, + "id": 6963, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146776,15 +146092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9674, + "id": 6964, "result": { "type": "IOI", "score": [ @@ -146796,19 +146112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9751, + "id": 6965, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146816,19 +146132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10527, + "id": 6966, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146836,39 +146152,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11612, + "id": 6967, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12064, + "id": 6968, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146876,15 +146196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 310, + "problemId": "d1.3", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 550, + "id": 6969, "result": { "type": "IOI", "score": [ @@ -146897,18 +146217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 562, + "id": 6970, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146917,18 +146237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 593, + "id": 6971, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146936,19 +146256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.4", + "teamId": "144470", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 609, + "id": 6972, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146956,15 +146276,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 674, + "id": 6973, "result": { "type": "IOI", "score": [ @@ -146977,18 +146297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 714, + "id": 6974, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -146996,19 +146316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.2", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 785, + "id": 6975, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147016,19 +146336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1053, + "id": 6976, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147036,19 +146356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1063, + "id": 6977, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147056,15 +146376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1264, + "id": 6978, "result": { "type": "IOI", "score": [ @@ -147076,15 +146396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1295, + "id": 6979, "result": { "type": "IOI", "score": [ @@ -147096,19 +146416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1315, + "id": 6980, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147116,19 +146436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1410, + "id": 6981, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147136,15 +146456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.4", + "teamId": "144447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1427, + "id": 6982, "result": { "type": "IOI", "score": [ @@ -147156,15 +146476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1432, + "id": 6983, "result": { "type": "IOI", "score": [ @@ -147176,19 +146496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1446, + "id": 6984, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147196,19 +146516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1471, + "id": 6985, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147216,19 +146536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1482, + "id": 6986, "result": { "type": "IOI", "score": [ - 12.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147236,19 +146556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1495, + "id": 6987, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147256,19 +146576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.2", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1540, + "id": 6988, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147276,15 +146596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1564, + "id": 6989, "result": { "type": "IOI", "score": [ @@ -147296,19 +146616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1684, + "id": 6990, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147316,19 +146636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1923, + "id": 6991, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147336,19 +146656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2047, + "id": 6992, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147356,19 +146676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.4", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2527, + "id": 6993, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147376,19 +146696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2658, + "id": 6994, "result": { "type": "IOI", "score": [ - 47.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147397,18 +146717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2671, + "id": 6995, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147417,18 +146737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2813, + "id": 6996, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147437,18 +146757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2827, + "id": 6997, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147456,19 +146776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2989, + "id": 6998, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147477,18 +146797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 292, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3484, + "id": 6999, "result": { "type": "IOI", "score": [ - 9.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147497,18 +146817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 292, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3546, + "id": 7000, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147516,19 +146836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 292, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4066, + "id": 7001, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147536,15 +146856,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 292, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8558, + "id": 7002, "result": { "type": "IOI", "score": [ @@ -147556,19 +146876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 292, + "problemId": "d1.1", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10405, + "id": 7003, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147577,18 +146897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 292, + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10474, + "id": 7004, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147596,15 +146916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 292, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10602, + "id": 7005, "result": { "type": "IOI", "score": [ @@ -147616,19 +146936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10769, + "id": 7006, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147636,19 +146956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 292, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10813, + "id": 7007, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147656,15 +146976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 292, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11455, + "id": 7008, "result": { "type": "IOI", "score": [ @@ -147677,18 +146997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 292, + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12052, + "id": 7009, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147696,19 +147016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 292, + "problemId": "d1.2", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 551, + "id": 7010, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147716,19 +147036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 287, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2497, + "id": 7011, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147737,18 +147057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 287, + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2889, + "id": 7012, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147756,19 +147076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 287, + "problemId": "d1.2", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2976, + "id": 7013, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147777,18 +147097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 287, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5510, + "id": 7014, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147796,15 +147116,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5859, + "id": 7015, "result": { "type": "IOI", "score": [ @@ -147816,19 +147136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5928, + "id": 7016, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147837,18 +147157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 287, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6032, + "id": 7017, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147856,19 +147176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6076, + "id": 7018, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147877,18 +147197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 287, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6170, + "id": 7019, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147896,19 +147216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6299, + "id": 7020, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -147916,15 +147236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8507, + "id": 7021, "result": { "type": "IOI", "score": [ @@ -147937,14 +147257,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 287, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8961, + "id": 7022, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144485", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7023, "result": { "type": "IOI", "score": [ @@ -147961,42 +147301,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 287, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8976, + "id": 7024, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9516, + "id": 7025, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148004,19 +147340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10855, + "id": 7026, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148024,15 +147360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.2", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11230, + "id": 7027, "result": { "type": "IOI", "score": [ @@ -148044,19 +147380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11277, + "id": 7028, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148064,19 +147400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11498, + "id": 7029, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148084,19 +147420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12080, + "id": 7030, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148104,19 +147440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 287, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 554, + "id": 7031, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148124,19 +147460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.2", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 579, + "id": 7032, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148145,18 +147481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 619, + "id": 7033, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148165,18 +147501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 716, + "id": 7034, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148184,19 +147520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 797, + "id": 7035, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148204,19 +147540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 809, + "id": 7036, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148224,19 +147560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3853, + "id": 7037, "result": { "type": "IOI", "score": [ - 31.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148244,19 +147580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 94, + "problemId": "d1.4", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4118, + "id": 7038, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148264,15 +147600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4488, + "id": 7039, "result": { "type": "IOI", "score": [ @@ -148284,19 +147620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4524, + "id": 7040, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148304,15 +147640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4618, + "id": 7041, "result": { "type": "IOI", "score": [ @@ -148324,19 +147660,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144493", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7042, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 94, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4624, + "id": 7043, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148344,19 +147700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5695, + "id": 7044, "result": { "type": "IOI", "score": [ - 0.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148364,15 +147720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5714, + "id": 7045, "result": { "type": "IOI", "score": [ @@ -148385,18 +147741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5819, + "id": 7046, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148404,19 +147760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5840, + "id": 7047, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148424,15 +147780,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.2", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5992, + "id": 7048, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144345", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7049, "result": { "type": "IOI", "score": [ @@ -148444,15 +147820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6017, + "id": 7050, "result": { "type": "IOI", "score": [ @@ -148465,18 +147841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6163, + "id": 7051, "result": { "type": "IOI", "score": [ - 10.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148484,19 +147860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6215, + "id": 7052, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148504,19 +147880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6274, + "id": 7053, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148524,19 +147900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6306, + "id": 7054, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148544,19 +147920,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6404, + "id": 7055, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144317", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7056, + "result": { + "type": "IOI", + "score": [ + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148565,14 +147961,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7137, + "id": 7057, "result": { "type": "IOI", "score": [ @@ -148584,15 +147980,75 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144267", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7058, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7375, + "id": 7059, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144422", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7060, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144225", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7061, "result": { "type": "IOI", "score": [ @@ -148605,18 +148061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 94, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7901, + "id": 7062, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148624,15 +148080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144459", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8224, + "id": 7063, "result": { "type": "IOI", "score": [ @@ -148645,14 +148101,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 94, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9293, + "id": 7064, "result": { "type": "IOI", "score": [ @@ -148665,38 +148121,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 94, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9385, + "id": 7065, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 94, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9484, + "id": 7066, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148704,39 +148164,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 94, + "problemId": "d1.2", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9638, + "id": 7067, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10852, + "id": 7068, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148744,19 +148208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11058, + "id": 7069, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148764,19 +148228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11119, + "id": 7070, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148784,19 +148248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11544, + "id": 7071, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148804,19 +148268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11703, + "id": 7072, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148824,43 +148288,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11771, + "id": 7073, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.2", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11830, + "id": 7074, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148868,19 +148328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12038, + "id": 7075, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148888,19 +148348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 94, + "problemId": "d1.3", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 555, + "id": 7076, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148908,19 +148368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 648, + "id": 7077, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148928,19 +148388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 677, + "id": 7078, "result": { "type": "IOI", "score": [ - 31.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148948,19 +148408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 725, + "id": 7079, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148968,19 +148428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 822, + "id": 7080, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -148989,14 +148449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 41, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 827, + "id": 7081, "result": { "type": "IOI", "score": [ @@ -149009,18 +148469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 41, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 837, + "id": 7082, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149028,19 +148488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1644, + "id": 7083, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149048,19 +148508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1691, + "id": 7084, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149068,19 +148528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1837, + "id": 7085, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149088,15 +148548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1987, + "id": 7086, "result": { "type": "IOI", "score": [ @@ -149109,14 +148569,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2030, + "id": 7087, "result": { "type": "IOI", "score": [ @@ -149129,14 +148589,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2100, + "id": 7088, "result": { "type": "IOI", "score": [ @@ -149148,15 +148608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2235, + "id": 7089, "result": { "type": "IOI", "score": [ @@ -149169,18 +148629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2273, + "id": 7090, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149188,19 +148648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2556, + "id": 7091, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149208,15 +148668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2626, + "id": 7092, "result": { "type": "IOI", "score": [ @@ -149229,18 +148689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2983, + "id": 7093, "result": { "type": "IOI", "score": [ - 0.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149248,19 +148708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3308, + "id": 7094, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149268,19 +148728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3396, + "id": 7095, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149288,19 +148748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3437, + "id": 7096, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149308,19 +148768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3473, + "id": 7097, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149328,19 +148788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3517, + "id": 7098, "result": { "type": "IOI", "score": [ - 25.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149349,18 +148809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3605, + "id": 7099, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149368,19 +148828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3784, + "id": 7100, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149388,19 +148848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.2", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4114, + "id": 7101, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149409,18 +148869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 41, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4247, + "id": 7102, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149428,19 +148888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4737, + "id": 7103, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149448,19 +148908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4763, + "id": 7104, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149468,19 +148928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5055, + "id": 7105, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149488,19 +148948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5374, + "id": 7106, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149508,19 +148968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 41, + "problemId": "d1.2", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6245, + "id": 7107, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149528,19 +148988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6438, + "id": 7108, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149548,8 +149008,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 41, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149569,18 +149029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 41, + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7214, + "id": 7110, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149588,39 +149048,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9946, + "id": 7111, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 41, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10023, + "id": 7112, "result": { "type": "IOI", "score": [ @@ -149633,14 +149089,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 41, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 556, + "id": 7113, "result": { "type": "IOI", "score": [ @@ -149652,15 +149108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 568, + "id": 7114, "result": { "type": "IOI", "score": [ @@ -149673,14 +149129,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 610, + "id": 7115, "result": { "type": "IOI", "score": [ @@ -149692,15 +149148,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 806, + "id": 7116, "result": { "type": "IOI", "score": [ @@ -149712,39 +149168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 833, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 874, + "id": 7117, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149752,68 +149188,20 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 918, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.4", + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 928, + "id": 7118, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 932, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -149821,18 +149209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 959, + "id": 7119, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149840,19 +149228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1055, + "id": 7120, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149861,18 +149249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1086, + "id": 7121, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149880,19 +149268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.2", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1107, + "id": 7122, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149901,14 +149289,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1121, + "id": 7123, "result": { "type": "IOI", "score": [ @@ -149920,19 +149308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1141, + "id": 7124, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149940,15 +149328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1166, + "id": 7125, "result": { "type": "IOI", "score": [ @@ -149960,19 +149348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1191, + "id": 7126, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -149981,18 +149369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1217, + "id": 7127, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150001,18 +149389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 202, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1241, + "id": 7128, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150020,19 +149408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 202, + "problemId": "d1.2", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1504, + "id": 7129, "result": { "type": "IOI", "score": [ - 24.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150040,19 +149428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1782, + "id": 7130, "result": { "type": "IOI", "score": [ - 14.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150061,18 +149449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 202, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1818, + "id": 7131, "result": { "type": "IOI", "score": [ - 35.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150080,19 +149468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1848, + "id": 7132, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150100,19 +149488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1860, + "id": 7133, "result": { "type": "IOI", "score": [ - 38.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150121,14 +149509,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 202, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2004, + "id": 7134, "result": { "type": "IOI", "score": [ @@ -150140,19 +149528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2012, + "id": 7135, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150161,18 +149549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 202, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2018, + "id": 7136, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150181,34 +149569,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 202, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3389, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3628, + "id": 7137, "result": { "type": "IOI", "score": [ @@ -150220,15 +149588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3690, + "id": 7138, "result": { "type": "IOI", "score": [ @@ -150241,38 +149609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 202, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3896, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4035, + "id": 7139, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150280,19 +149628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4108, + "id": 7140, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150300,43 +149648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4176, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4184, + "id": 7141, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150344,19 +149668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4248, + "id": 7142, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150364,19 +149688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4878, + "id": 7143, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150384,15 +149708,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 202, + "problemId": "d1.1", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4906, + "id": 7144, "result": { "type": "IOI", "score": [ @@ -150404,15 +149728,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 202, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4932, + "id": 7145, "result": { "type": "IOI", "score": [ @@ -150425,14 +149749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 202, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4980, + "id": 7146, "result": { "type": "IOI", "score": [ @@ -150445,18 +149769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 202, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5328, + "id": 7147, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150464,15 +149788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 202, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5402, + "id": 7148, "result": { "type": "IOI", "score": [ @@ -150485,14 +149809,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 202, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5898, + "id": 7149, "result": { "type": "IOI", "score": [ @@ -150505,18 +149829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 202, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6122, + "id": 7150, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150525,14 +149849,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 202, + "teamId": "144396", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7982, + "id": 7151, "result": { "type": "IOI", "score": [ @@ -150544,15 +149868,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9464, + "id": 7152, "result": { "type": "IOI", "score": [ @@ -150568,75 +149892,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9509, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9654, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9779, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9976, + "id": 7153, "result": { "type": "IOI", "score": [ @@ -150648,15 +149912,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 202, + "problemId": "d1.3", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10005, + "id": 7154, "result": { "type": "IOI", "score": [ @@ -150669,98 +149933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10180, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10290, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10348, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11233, - "result": { - "type": "IOI", - "score": [ - 21.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11284, + "id": 7155, "result": { "type": "IOI", "score": [ - 50.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -150769,74 +149953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 202, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11986, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 12077, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 202, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 566, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 612, + "id": 7156, "result": { "type": "IOI", "score": [ @@ -150849,14 +149973,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 756, + "id": 7157, "result": { "type": "IOI", "score": [ @@ -150869,14 +149993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2125, + "id": 7158, "result": { "type": "IOI", "score": [ @@ -150888,119 +150012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2327, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2378, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2535, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3251, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3336, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 158, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3374, + "id": 7159, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151008,39 +150032,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 158, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3404, + "id": 7160, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3611, + "id": 7161, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151048,19 +150076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 158, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3668, + "id": 7162, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151068,19 +150096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 158, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3908, + "id": 7163, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151089,18 +150117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4357, + "id": 7164, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151109,58 +150137,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4473, + "id": 7165, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4566, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4650, + "id": 7166, "result": { "type": "IOI", "score": [ - 12.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151168,19 +150180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 158, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4959, + "id": 7167, "result": { "type": "IOI", "score": [ - 37.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151189,18 +150201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5229, + "id": 7168, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151209,18 +150221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5436, + "id": 7169, "result": { "type": "IOI", "score": [ - 12.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151228,19 +150240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 158, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5551, + "id": 7170, "result": { "type": "IOI", "score": [ - 37.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151249,18 +150261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5729, + "id": 7171, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151269,18 +150281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6190, + "id": 7172, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151289,38 +150301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 158, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7185, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 158, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7590, + "id": 7173, "result": { "type": "IOI", "score": [ - 36.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151328,19 +150320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 158, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8039, + "id": 7174, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151348,15 +150340,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 158, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8860, + "id": 7175, "result": { "type": "IOI", "score": [ @@ -151369,18 +150361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9212, + "id": 7176, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151389,14 +150381,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9836, + "id": 7177, "result": { "type": "IOI", "score": [ @@ -151409,18 +150401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 158, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10624, + "id": 7178, "result": { "type": "IOI", "score": [ - 57.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151428,19 +150420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 158, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11061, + "id": 7179, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151448,19 +150440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 158, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 573, + "id": 7180, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151468,19 +150460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 176, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 717, + "id": 7181, "result": { "type": "IOI", "score": [ - 9.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151488,19 +150480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 176, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1250, + "id": 7182, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151509,18 +150501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 176, + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1472, + "id": 7183, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151528,15 +150520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 176, + "problemId": "d1.2", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2909, + "id": 7184, "result": { "type": "IOI", "score": [ @@ -151549,18 +150541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 176, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3171, + "id": 7185, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151568,19 +150560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 176, + "problemId": "d1.4", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3450, + "id": 7186, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151588,19 +150580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 176, + "problemId": "d1.2", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3510, + "id": 7187, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151608,15 +150600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 176, + "problemId": "d1.3", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3769, + "id": 7188, "result": { "type": "IOI", "score": [ @@ -151628,35 +150620,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 176, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6367, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 176, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7009, + "id": 7189, "result": { "type": "IOI", "score": [ @@ -151669,18 +150641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 176, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7020, + "id": 7190, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151689,18 +150661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7026, + "id": 7191, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151708,19 +150680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 176, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7600, + "id": 7192, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151729,14 +150701,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7870, + "id": 7193, "result": { "type": "IOI", "score": [ @@ -151749,18 +150721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8181, + "id": 7194, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151769,18 +150741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8252, + "id": 7195, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151789,18 +150761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8270, + "id": 7196, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151808,15 +150780,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.4", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8527, + "id": 7197, "result": { "type": "IOI", "score": [ @@ -151828,19 +150800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8672, + "id": 7198, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151848,19 +150820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9134, + "id": 7199, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151868,19 +150840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9923, + "id": 7200, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151889,14 +150861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9959, + "id": 7201, "result": { "type": "IOI", "score": [ @@ -151908,19 +150880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10119, + "id": 7202, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151929,18 +150901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10174, + "id": 7203, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151949,14 +150921,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10442, + "id": 7204, "result": { "type": "IOI", "score": [ @@ -151969,18 +150941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 176, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11426, + "id": 7205, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -151988,43 +150960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11491, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 176, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11647, + "id": 7206, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152033,18 +150981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 176, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11678, + "id": 7207, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152052,15 +151000,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 176, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 577, + "id": 7208, "result": { "type": "IOI", "score": [ @@ -152072,15 +151020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 658, + "id": 7209, "result": { "type": "IOI", "score": [ @@ -152093,18 +151041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 372, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 733, + "id": 7210, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152113,14 +151061,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 372, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 755, + "id": 7211, "result": { "type": "IOI", "score": [ @@ -152137,18 +151085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 372, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 771, + "id": 7212, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152156,19 +151104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 844, + "id": 7213, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152176,19 +151124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1081, + "id": 7214, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152196,19 +151144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.2", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1173, + "id": 7215, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152217,14 +151165,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 372, + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2500, + "id": 7216, "result": { "type": "IOI", "score": [ @@ -152237,18 +151185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 372, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2526, + "id": 7217, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152256,19 +151204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5335, + "id": 7218, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152276,15 +151224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5391, + "id": 7219, "result": { "type": "IOI", "score": [ @@ -152297,14 +151245,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 372, + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5421, + "id": 7220, "result": { "type": "IOI", "score": [ @@ -152316,19 +151264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 372, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5441, + "id": 7221, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152336,19 +151284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 372, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6446, + "id": 7222, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152356,19 +151304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 372, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6495, + "id": 7223, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152376,39 +151324,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 372, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6546, + "id": 7224, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7502, + "id": 7225, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152416,19 +151368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8520, + "id": 7226, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152436,15 +151388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 372, + "problemId": "d1.1", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12089, + "id": 7227, "result": { "type": "IOI", "score": [ @@ -152456,19 +151408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 372, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 578, + "id": 7228, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152477,18 +151429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 157, + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 695, + "id": 7229, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152496,19 +151448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 774, + "id": 7230, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152516,19 +151468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 813, + "id": 7231, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152536,19 +151488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 818, + "id": 7232, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152556,15 +151508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 855, + "id": 7233, "result": { "type": "IOI", "score": [ @@ -152576,19 +151528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 922, + "id": 7234, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152596,19 +151548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2652, + "id": 7235, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152617,18 +151569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 157, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4535, + "id": 7236, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152636,15 +151588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 157, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4844, + "id": 7237, "result": { "type": "IOI", "score": [ @@ -152657,18 +151609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 157, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5012, + "id": 7238, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152676,19 +151628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5385, + "id": 7239, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152696,19 +151648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 157, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5505, + "id": 7240, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152716,19 +151668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8144, + "id": 7241, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152737,18 +151689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 157, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8158, + "id": 7242, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152757,18 +151709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 157, + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8242, + "id": 7243, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152776,43 +151728,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8501, + "id": 7244, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8526, + "id": 7245, "result": { "type": "IOI", "score": [ - 12.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152821,18 +151769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 157, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8587, + "id": 7246, "result": { "type": "IOI", "score": [ - 37.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152841,14 +151789,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 157, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8700, + "id": 7247, "result": { "type": "IOI", "score": [ @@ -152860,19 +151808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8879, + "id": 7248, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152881,18 +151829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 157, + "teamId": "144326", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8936, + "id": 7249, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152900,19 +151848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9130, + "id": 7250, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152920,19 +151868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 157, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10878, + "id": 7251, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152940,19 +151888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 157, + "problemId": "d1.4", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11109, + "id": 7252, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152960,19 +151908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 157, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11837, + "id": 7253, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -152980,19 +151928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 157, + "problemId": "d1.3", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 581, + "id": 7254, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153000,19 +151948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 691, + "id": 7255, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153020,19 +151968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2099, + "id": 7256, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153040,19 +151988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2143, + "id": 7257, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153060,19 +152008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2195, + "id": 7258, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153080,19 +152028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3315, + "id": 7259, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153101,18 +152049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 291, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3534, + "id": 7260, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153120,19 +152068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3673, + "id": 7261, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153140,19 +152088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3728, + "id": 7262, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153160,19 +152108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144114", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3968, + "id": 7263, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153180,15 +152128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4008, + "id": 7264, "result": { "type": "IOI", "score": [ @@ -153200,19 +152148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4034, + "id": 7265, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153220,19 +152168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4142, + "id": 7266, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153240,19 +152188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4154, + "id": 7267, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153261,18 +152209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 291, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4161, + "id": 7268, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153281,14 +152229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 291, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4177, + "id": 7269, "result": { "type": "IOI", "score": [ @@ -153300,15 +152248,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4462, + "id": 7270, "result": { "type": "IOI", "score": [ @@ -153321,18 +152269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 291, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4666, + "id": 7271, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153340,19 +152288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4673, + "id": 7272, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153360,19 +152308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5250, + "id": 7273, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153381,18 +152329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5383, + "id": 7274, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153400,19 +152348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5506, + "id": 7275, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153420,19 +152368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5588, + "id": 7276, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153441,14 +152389,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5990, + "id": 7277, "result": { "type": "IOI", "score": [ @@ -153461,18 +152409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6040, + "id": 7278, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153480,19 +152428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6124, + "id": 7279, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153500,19 +152448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6228, + "id": 7280, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153521,18 +152469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6280, + "id": 7281, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153540,19 +152488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6516, + "id": 7282, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153560,19 +152508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6611, + "id": 7283, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153580,19 +152528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6756, + "id": 7284, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153601,18 +152549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6810, + "id": 7285, "result": { "type": "IOI", "score": [ - 22.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153620,19 +152568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6911, + "id": 7286, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153640,19 +152588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 291, + "problemId": "d1.1", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9716, + "id": 7287, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153660,19 +152608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9910, + "id": 7288, "result": { "type": "IOI", "score": [ - 22.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153680,19 +152628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10343, + "id": 7289, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153700,19 +152648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 291, + "problemId": "d1.3", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10447, + "id": 7290, "result": { "type": "IOI", "score": [ - 22.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153721,14 +152669,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 291, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 584, + "id": 7291, "result": { "type": "IOI", "score": [ @@ -153740,19 +152688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 629, + "id": 7292, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153760,43 +152708,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 760, + "id": 7293, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 768, + "id": 7294, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153804,15 +152748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 917, + "id": 7295, "result": { "type": "IOI", "score": [ @@ -153824,19 +152768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 933, + "id": 7296, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153845,18 +152789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 427, + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 957, + "id": 7297, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153864,19 +152808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1004, + "id": 7298, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153885,14 +152829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 427, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2539, + "id": 7299, "result": { "type": "IOI", "score": [ @@ -153904,15 +152848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2894, + "id": 7300, "result": { "type": "IOI", "score": [ @@ -153929,14 +152873,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2919, + "id": 7301, "result": { "type": "IOI", "score": [ @@ -153948,19 +152892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.1", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3037, + "id": 7302, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -153969,14 +152913,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3071, + "id": 7303, "result": { "type": "IOI", "score": [ @@ -153989,18 +152933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3225, + "id": 7304, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154009,14 +152953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3441, + "id": 7305, "result": { "type": "IOI", "score": [ @@ -154029,18 +152973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3533, + "id": 7306, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154048,19 +152992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3772, + "id": 7307, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154068,19 +153012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4500, + "id": 7308, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154088,19 +153032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5700, + "id": 7309, "result": { "type": "IOI", "score": [ - 31.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154108,19 +153052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 427, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6084, + "id": 7310, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154128,15 +153072,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6261, + "id": 7311, "result": { "type": "IOI", "score": [ @@ -154148,19 +153092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6311, + "id": 7312, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154168,19 +153112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 427, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6370, + "id": 7313, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154188,19 +153132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 427, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7108, + "id": 7314, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154208,19 +153152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7545, + "id": 7315, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154229,18 +153173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 427, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7609, + "id": 7316, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154249,18 +153193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 427, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8449, + "id": 7317, "result": { "type": "IOI", "score": [ - 35.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154268,15 +153212,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 427, + "problemId": "d1.4", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8839, + "id": 7318, "result": { "type": "IOI", "score": [ @@ -154289,18 +153233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9239, + "id": 7319, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154309,18 +153253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9386, + "id": 7320, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154328,19 +153272,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9841, + "id": 7321, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144108", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7322, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154348,19 +153316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10319, + "id": 7323, "result": { "type": "IOI", "score": [ - 16.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154368,19 +153336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10504, + "id": 7324, "result": { "type": "IOI", "score": [ - 16.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154389,18 +153357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10551, + "id": 7325, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154408,19 +153376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10889, + "id": 7326, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154429,18 +153397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 427, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11164, + "id": 7327, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154448,19 +153416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 427, + "problemId": "d1.2", + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 585, + "id": 7328, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154468,19 +153436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 627, + "id": 7329, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154488,15 +153456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 718, + "id": 7330, "result": { "type": "IOI", "score": [ @@ -154509,18 +153477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 787, + "id": 7331, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154528,19 +153496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 970, + "id": 7332, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154549,18 +153517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 987, + "id": 7333, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154568,19 +153536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1038, + "id": 7334, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154589,18 +153557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1097, + "id": 7335, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154609,14 +153577,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1187, + "id": 7336, "result": { "type": "IOI", "score": [ @@ -154628,19 +153596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1355, + "id": 7337, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154648,15 +153616,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1833, + "id": 7338, "result": { "type": "IOI", "score": [ @@ -154669,18 +153637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2211, + "id": 7339, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154689,18 +153657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2229, + "id": 7340, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154708,15 +153676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2266, + "id": 7341, "result": { "type": "IOI", "score": [ @@ -154729,18 +153697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2398, + "id": 7342, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154749,18 +153717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2429, + "id": 7343, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154769,18 +153737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2524, + "id": 7344, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154788,19 +153756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 245, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2664, + "id": 7345, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154809,18 +153777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2765, + "id": 7346, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154829,18 +153797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2870, + "id": 7347, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154848,15 +153816,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144108", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7348, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3199, + "id": 7349, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144127", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7350, "result": { "type": "IOI", "score": [ @@ -154869,14 +153881,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 245, + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4299, + "id": 7351, "result": { "type": "IOI", "score": [ @@ -154888,15 +153900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4367, + "id": 7352, "result": { "type": "IOI", "score": [ @@ -154908,19 +153920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4590, + "id": 7353, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154928,19 +153940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4611, + "id": 7354, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154948,19 +153960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5680, + "id": 7355, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154968,19 +153980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5763, + "id": 7356, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -154989,18 +154001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 245, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5820, + "id": 7357, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155008,19 +154020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5848, + "id": 7358, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155028,19 +154040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6087, + "id": 7359, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155048,19 +154060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9511, + "id": 7360, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155068,19 +154080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9657, + "id": 7361, "result": { "type": "IOI", "score": [ - 10.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155088,19 +154100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9802, + "id": 7362, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155108,15 +154120,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10345, + "id": 7363, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144378", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7364, + "result": { + "type": "IOI", + "score": [ + 82.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144074", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7365, "result": { "type": "IOI", "score": [ @@ -155129,18 +154181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 245, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10463, + "id": 7366, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155148,19 +154200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 245, + "problemId": "d1.2", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10666, + "id": 7367, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155168,19 +154220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11105, + "id": 7368, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155188,19 +154240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 245, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11382, + "id": 7369, "result": { "type": "IOI", "score": [ - 9.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155208,19 +154260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 245, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11863, + "id": 7370, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155228,15 +154280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 245, + "problemId": "d1.3", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 594, + "id": 7371, "result": { "type": "IOI", "score": [ @@ -155248,19 +154300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 706, + "id": 7372, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155268,19 +154320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 829, + "id": 7373, "result": { "type": "IOI", "score": [ - 24.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155288,19 +154340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1231, + "id": 7374, "result": { "type": "IOI", "score": [ - 24.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155309,18 +154361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 9, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1348, + "id": 7375, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155328,19 +154380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1440, + "id": 7376, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155348,15 +154400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.2", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1524, + "id": 7377, "result": { "type": "IOI", "score": [ @@ -155368,19 +154420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1977, + "id": 7378, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155388,19 +154440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2130, + "id": 7379, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155408,19 +154460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2167, + "id": 7380, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155429,18 +154481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 9, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2268, + "id": 7381, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155448,15 +154500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2911, + "id": 7382, "result": { "type": "IOI", "score": [ @@ -155472,19 +154524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2921, + "id": 7383, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155492,19 +154544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2986, + "id": 7384, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155512,19 +154564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3223, + "id": 7385, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155533,18 +154585,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 9, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4070, + "id": 7386, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155552,19 +154604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5249, + "id": 7387, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155573,18 +154625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 9, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5709, + "id": 7388, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155592,19 +154644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6113, + "id": 7389, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155613,18 +154665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 9, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6209, + "id": 7390, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155633,18 +154685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 9, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6323, + "id": 7391, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155653,18 +154705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 9, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7017, + "id": 7392, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155672,19 +154724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7052, + "id": 7393, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155692,43 +154744,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9234, + "id": 7394, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9265, + "id": 7395, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155736,19 +154784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 9, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9658, + "id": 7396, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155756,19 +154804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 9, + "problemId": "d1.4", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10472, + "id": 7397, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155777,18 +154825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 9, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12112, + "id": 7398, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155796,19 +154844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12114, + "id": 7399, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155817,18 +154865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 9, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12118, + "id": 7400, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155836,19 +154884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 9, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 607, + "id": 7401, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155856,39 +154904,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1757, + "id": 7402, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 353, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1993, + "id": 7403, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155897,18 +154949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 353, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2746, + "id": 7404, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155916,19 +154968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.2", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2892, + "id": 7405, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155936,19 +154988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2988, + "id": 7406, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155956,19 +155008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3020, + "id": 7407, "result": { "type": "IOI", "score": [ - 25.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155976,19 +155028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3113, + "id": 7408, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -155997,14 +155049,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 353, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3264, + "id": 7409, "result": { "type": "IOI", "score": [ @@ -156017,18 +155069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 353, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3741, + "id": 7410, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156036,19 +155088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3789, + "id": 7411, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156056,19 +155108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3909, + "id": 7412, "result": { "type": "IOI", "score": [ - 58.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156076,19 +155128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3939, + "id": 7413, "result": { "type": "IOI", "score": [ - 58.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156096,19 +155148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4014, + "id": 7414, "result": { "type": "IOI", "score": [ - 58.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156116,19 +155168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4151, + "id": 7415, "result": { "type": "IOI", "score": [ - 68.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156136,19 +155188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4182, + "id": 7416, "result": { "type": "IOI", "score": [ - 68.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156156,19 +155208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4718, + "id": 7417, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156177,18 +155229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 353, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4730, + "id": 7418, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156196,15 +155248,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4740, + "id": 7419, "result": { "type": "IOI", "score": [ @@ -156216,19 +155268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4774, + "id": 7420, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156236,19 +155288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6255, + "id": 7421, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156256,19 +155308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6363, + "id": 7422, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156276,19 +155328,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6732, + "id": 7423, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144468", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7424, + "result": { + "type": "IOI", + "score": [ + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156296,19 +155372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8490, + "id": 7425, "result": { "type": "IOI", "score": [ - 69.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156316,15 +155392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8503, + "id": 7426, "result": { "type": "IOI", "score": [ @@ -156336,39 +155412,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9292, + "id": 7427, "result": { "type": "IOI", "score": [ - 69.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9315, + "id": 7428, "result": { "type": "IOI", "score": [ - 47.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156376,15 +155456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9906, + "id": 7429, "result": { "type": "IOI", "score": [ @@ -156397,18 +155477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 353, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10441, + "id": 7430, "result": { "type": "IOI", "score": [ - 47.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156416,19 +155496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11243, + "id": 7431, "result": { "type": "IOI", "score": [ - 20.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156436,19 +155516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11287, + "id": 7432, "result": { "type": "IOI", "score": [ - 32.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156456,19 +155536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11321, + "id": 7433, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156476,19 +155556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 353, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11725, + "id": 7434, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156497,18 +155577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 353, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12043, + "id": 7435, "result": { "type": "IOI", "score": [ - 32.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156516,15 +155596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.4", + "teamId": "144081", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12067, + "id": 7436, "result": { "type": "IOI", "score": [ @@ -156536,19 +155616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 353, + "problemId": "d1.1", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 613, + "id": 7437, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156556,15 +155636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1706, + "id": 7438, "result": { "type": "IOI", "score": [ @@ -156577,14 +155657,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 252, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1910, + "id": 7439, "result": { "type": "IOI", "score": [ @@ -156596,19 +155676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1919, + "id": 7440, "result": { "type": "IOI", "score": [ - 12.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156617,18 +155697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 252, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1942, + "id": 7441, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156636,15 +155716,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.2", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2003, + "id": 7442, "result": { "type": "IOI", "score": [ @@ -156656,15 +155736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2040, + "id": 7443, "result": { "type": "IOI", "score": [ @@ -156677,18 +155757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 252, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2054, + "id": 7444, "result": { "type": "IOI", "score": [ - 25.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156696,19 +155776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2107, + "id": 7445, "result": { "type": "IOI", "score": [ - 37.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156716,19 +155796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2734, + "id": 7446, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156736,19 +155816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2748, + "id": 7447, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156757,18 +155837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 252, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5176, + "id": 7448, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156776,39 +155856,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5285, + "id": 7449, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5308, + "id": 7450, "result": { "type": "IOI", "score": [ @@ -156820,19 +155896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5354, + "id": 7451, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156840,19 +155916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5517, + "id": 7452, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156860,19 +155936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5612, + "id": 7453, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156880,15 +155956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5718, + "id": 7454, "result": { "type": "IOI", "score": [ @@ -156900,19 +155976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5773, + "id": 7455, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156920,19 +155996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6397, + "id": 7456, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156940,19 +156016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6918, + "id": 7457, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -156961,14 +156037,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6955, + "id": 7458, "result": { "type": "IOI", "score": [ @@ -156981,14 +156057,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7038, + "id": 7459, "result": { "type": "IOI", "score": [ @@ -157001,14 +156077,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7326, + "id": 7460, "result": { "type": "IOI", "score": [ @@ -157020,15 +156096,75 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144188", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7461, + "result": { + "type": "IOI", + "score": [ + 24.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144137", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7462, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144508", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7463, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7650, + "id": 7464, "result": { "type": "IOI", "score": [ @@ -157041,18 +156177,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7712, + "id": 7465, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157061,18 +156197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7827, + "id": 7466, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157081,18 +156217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8330, + "id": 7467, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157100,19 +156236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 252, + "problemId": "d1.3", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8819, + "id": 7468, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157121,18 +156257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 252, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11698, + "id": 7469, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157141,18 +156277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 252, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11808, + "id": 7470, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157160,19 +156296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 252, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 615, + "id": 7471, "result": { "type": "IOI", "score": [ - 24.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157181,14 +156317,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 249, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1008, + "id": 7472, "result": { "type": "IOI", "score": [ @@ -157200,19 +156336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1125, + "id": 7473, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157220,19 +156356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1171, + "id": 7474, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157240,19 +156376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 249, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1318, + "id": 7475, "result": { "type": "IOI", "score": [ - 100.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157260,15 +156396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3819, + "id": 7476, "result": { "type": "IOI", "score": [ @@ -157280,19 +156416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3987, + "id": 7477, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157300,19 +156436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5620, + "id": 7478, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157320,19 +156456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5652, + "id": 7479, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157340,19 +156476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5707, + "id": 7480, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157360,19 +156496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5727, + "id": 7481, "result": { "type": "IOI", "score": [ - 10.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157380,19 +156516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5824, + "id": 7482, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157400,19 +156536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5884, + "id": 7483, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157421,18 +156557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5980, + "id": 7484, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157440,19 +156576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.2", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6071, + "id": 7485, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157460,19 +156596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6115, + "id": 7486, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157480,19 +156616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6173, + "id": 7487, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157500,19 +156636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6246, + "id": 7488, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157520,19 +156656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6359, + "id": 7489, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157540,19 +156676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6401, + "id": 7490, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157560,19 +156696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6417, + "id": 7491, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157581,18 +156717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6523, + "id": 7492, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157601,18 +156737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6617, + "id": 7493, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157620,19 +156756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6650, + "id": 7494, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157641,18 +156777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6746, + "id": 7495, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157660,19 +156796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6761, + "id": 7496, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157681,18 +156817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7099, + "id": 7497, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157700,19 +156836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7412, + "id": 7498, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157721,18 +156857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7465, + "id": 7499, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157741,7 +156877,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157761,18 +156897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7519, + "id": 7501, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157780,19 +156916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8087, + "id": 7502, "result": { "type": "IOI", "score": [ - 10.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157800,19 +156936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8777, + "id": 7503, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157821,18 +156957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8816, + "id": 7504, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157841,18 +156977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8897, + "id": 7505, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157861,18 +156997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9162, + "id": 7506, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157880,19 +157016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9204, + "id": 7507, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157900,19 +157036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9238, + "id": 7508, "result": { "type": "IOI", "score": [ - 48.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157920,19 +157056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9273, + "id": 7509, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157940,19 +157076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 249, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9372, + "id": 7510, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157961,18 +157097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 249, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9515, + "id": 7511, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -157980,19 +157116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9676, + "id": 7512, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158000,19 +157136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9765, + "id": 7513, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158020,15 +157156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9807, + "id": 7514, "result": { "type": "IOI", "score": [ @@ -158040,19 +157176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10009, + "id": 7515, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158060,19 +157196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10029, + "id": 7516, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158081,18 +157217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 249, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10039, + "id": 7517, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158100,19 +157236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10079, + "id": 7518, "result": { "type": "IOI", "score": [ - 10.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158120,19 +157256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.4", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10246, + "id": 7519, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158140,19 +157276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10382, + "id": 7520, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158160,19 +157296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10518, + "id": 7521, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158180,19 +157316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10639, + "id": 7522, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158200,19 +157336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11000, + "id": 7523, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158220,19 +157356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 249, + "problemId": "d1.3", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 618, + "id": 7524, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158240,19 +157376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 377, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 828, + "id": 7525, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158261,18 +157397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 377, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3324, + "id": 7526, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158280,15 +157416,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 377, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6981, + "id": 7527, "result": { "type": "IOI", "score": [ @@ -158300,19 +157436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 377, + "problemId": "d1.3", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7269, + "id": 7528, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158320,15 +157456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 377, + "problemId": "d1.3", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9606, + "id": 7529, "result": { "type": "IOI", "score": [ @@ -158340,19 +157476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 377, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 621, + "id": 7530, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158360,19 +157496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.2", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 646, + "id": 7531, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158380,35 +157516,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 853, + "id": 7532, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144250", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7533, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1112, + "id": 7534, "result": { "type": "IOI", "score": [ @@ -158420,19 +157580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1450, + "id": 7535, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158440,15 +157600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.2", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1463, + "id": 7536, "result": { "type": "IOI", "score": [ @@ -158460,19 +157620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1747, + "id": 7537, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158480,19 +157640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1771, + "id": 7538, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158500,19 +157660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1913, + "id": 7539, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158520,19 +157680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 400, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2578, + "id": 7540, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158540,19 +157700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 400, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4885, + "id": 7541, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158560,15 +157720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 400, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5715, + "id": 7542, "result": { "type": "IOI", "score": [ @@ -158581,14 +157741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 400, + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5748, + "id": 7543, "result": { "type": "IOI", "score": [ @@ -158600,15 +157760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5766, + "id": 7544, "result": { "type": "IOI", "score": [ @@ -158620,19 +157780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5797, + "id": 7545, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158640,15 +157800,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5817, + "id": 7546, "result": { "type": "IOI", "score": [ @@ -158661,18 +157821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 400, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5831, + "id": 7547, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158680,19 +157840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.1", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5882, + "id": 7548, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158701,18 +157861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 400, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5901, + "id": 7549, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158721,18 +157881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 400, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5973, + "id": 7550, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158740,39 +157900,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.4", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6719, + "id": 7551, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6734, + "id": 7552, "result": { "type": "IOI", "score": [ @@ -158784,19 +157940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 400, + "problemId": "d1.2", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6971, + "id": 7553, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158804,19 +157960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 400, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 622, + "id": 7554, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158824,43 +157980,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1234, + "id": 7555, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1251, + "id": 7556, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158869,14 +158021,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 5, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2679, + "id": 7557, "result": { "type": "IOI", "score": [ @@ -158888,15 +158040,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2724, + "id": 7558, "result": { "type": "IOI", "score": [ @@ -158909,18 +158061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2758, + "id": 7559, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158929,18 +158081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2808, + "id": 7560, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158949,18 +158101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2871, + "id": 7561, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158968,19 +158120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2963, + "id": 7562, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -158989,14 +158141,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3047, + "id": 7563, "result": { "type": "IOI", "score": [ @@ -159008,19 +158160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3096, + "id": 7564, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159028,19 +158180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.4", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3333, + "id": 7565, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159049,18 +158201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3370, + "id": 7566, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159068,19 +158220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144371", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3413, + "id": 7567, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159088,15 +158240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3449, + "id": 7568, "result": { "type": "IOI", "score": [ @@ -159109,42 +158261,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 5, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3526, + "id": 7569, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3584, + "id": 7570, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159152,15 +158300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3684, + "id": 7571, "result": { "type": "IOI", "score": [ @@ -159172,19 +158320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3702, + "id": 7572, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159192,19 +158340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3714, + "id": 7573, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159212,19 +158360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4042, + "id": 7574, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159232,15 +158380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 5, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7439, + "id": 7575, "result": { "type": "IOI", "score": [ @@ -159252,19 +158400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 5, + "problemId": "d1.1", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11347, + "id": 7576, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159272,39 +158420,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 5, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11435, + "id": 7577, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 5, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11460, + "id": 7578, "result": { "type": "IOI", "score": [ @@ -159317,14 +158461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 5, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11787, + "id": 7579, "result": { "type": "IOI", "score": [ @@ -159337,38 +158481,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 5, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 631, + "id": 7580, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 270, + "problemId": "d1.3", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 650, + "id": 7581, "result": { "type": "IOI", "score": [ @@ -159380,19 +158520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 270, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 895, + "id": 7582, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159401,18 +158541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 270, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1683, + "id": 7583, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159421,18 +158561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 270, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8635, + "id": 7584, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159440,19 +158580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 270, + "problemId": "d1.1", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 638, + "id": 7585, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159460,19 +158600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 355, + "problemId": "d1.2", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 849, + "id": 7586, "result": { "type": "IOI", "score": [ - 61.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159480,19 +158620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 355, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1177, + "id": 7587, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159500,19 +158640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 355, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2219, + "id": 7588, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159520,19 +158660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 355, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2316, + "id": 7589, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159540,19 +158680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 355, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2642, + "id": 7590, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159560,19 +158700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 355, + "problemId": "d1.4", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2875, + "id": 7591, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159580,19 +158720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 355, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3109, + "id": 7592, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159601,18 +158741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 355, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3650, + "id": 7593, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159621,18 +158761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 355, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4938, + "id": 7594, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159641,18 +158781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 355, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5629, + "id": 7595, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159660,19 +158800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 355, + "problemId": "d1.3", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9388, + "id": 7596, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159681,18 +158821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 355, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9990, + "id": 7597, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159700,19 +158840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 355, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10708, + "id": 7598, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159720,19 +158860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 355, + "problemId": "d1.3", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 644, + "id": 7599, "result": { "type": "IOI", "score": [ - 21.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159741,18 +158881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 403, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 721, + "id": 7600, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159760,19 +158900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 403, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 746, + "id": 7601, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159780,19 +158920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 403, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4225, + "id": 7602, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159800,15 +158940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 403, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7003, + "id": 7603, "result": { "type": "IOI", "score": [ @@ -159820,19 +158960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 403, + "problemId": "d1.3", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7047, + "id": 7604, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159840,19 +158980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 403, + "problemId": "d1.3", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9139, + "id": 7605, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159861,18 +159001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 403, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9732, + "id": 7606, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159880,19 +159020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 403, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10399, + "id": 7607, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159900,19 +159040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 403, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11735, + "id": 7608, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159920,19 +159060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 403, + "problemId": "d1.4", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11952, + "id": 7609, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159941,18 +159081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 403, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 649, + "id": 7610, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159960,19 +159100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 277, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1378, + "id": 7611, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -159980,15 +159120,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2232, + "id": 7612, "result": { "type": "IOI", "score": [ @@ -160000,19 +159140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2337, + "id": 7613, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160020,15 +159160,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3176, + "id": 7614, "result": { "type": "IOI", "score": [ @@ -160040,15 +159180,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3217, + "id": 7615, "result": { "type": "IOI", "score": [ @@ -160060,19 +159200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3477, + "id": 7616, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160080,19 +159220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4163, + "id": 7617, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160100,15 +159240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 277, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5790, + "id": 7618, "result": { "type": "IOI", "score": [ @@ -160121,18 +159261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 277, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7280, + "id": 7619, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160140,15 +159280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 277, + "problemId": "d1.3", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7287, + "id": 7620, "result": { "type": "IOI", "score": [ @@ -160160,15 +159300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 277, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8568, + "id": 7621, "result": { "type": "IOI", "score": [ @@ -160180,15 +159320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 277, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8805, + "id": 7622, "result": { "type": "IOI", "score": [ @@ -160200,15 +159340,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 277, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9778, + "id": 7623, "result": { "type": "IOI", "score": [ @@ -160220,19 +159360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 277, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10054, + "id": 7624, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160240,15 +159380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 277, + "problemId": "d1.3", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11394, + "id": 7625, "result": { "type": "IOI", "score": [ @@ -160261,18 +159401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 277, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11873, + "id": 7626, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160281,18 +159421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 277, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 655, + "id": 7627, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160301,18 +159441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 276, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 704, + "id": 7628, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160320,15 +159460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 276, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1064, + "id": 7629, "result": { "type": "IOI", "score": [ @@ -160341,14 +159481,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 276, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1152, + "id": 7630, "result": { "type": "IOI", "score": [ @@ -160360,19 +159500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 276, + "problemId": "d1.3", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4105, + "id": 7631, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160380,19 +159520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4582, + "id": 7632, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160401,18 +159541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5258, + "id": 7633, "result": { "type": "IOI", "score": [ - 9.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160420,19 +159560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6444, + "id": 7634, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160440,15 +159580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7148, + "id": 7635, "result": { "type": "IOI", "score": [ @@ -160461,18 +159601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7437, + "id": 7636, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160480,19 +159620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7694, + "id": 7637, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160500,19 +159640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8005, + "id": 7638, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160520,15 +159660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8197, + "id": 7639, "result": { "type": "IOI", "score": [ @@ -160541,18 +159681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8323, + "id": 7640, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160561,18 +159701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8376, + "id": 7641, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160580,19 +159720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8483, + "id": 7642, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160600,19 +159740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8712, + "id": 7643, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160620,15 +159760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.2", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9050, + "id": 7644, "result": { "type": "IOI", "score": [ @@ -160640,19 +159780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10284, + "id": 7645, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160661,14 +159801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10440, + "id": 7646, "result": { "type": "IOI", "score": [ @@ -160680,15 +159820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.2", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10460, + "id": 7647, "result": { "type": "IOI", "score": [ @@ -160700,15 +159840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11036, + "id": 7648, "result": { "type": "IOI", "score": [ @@ -160720,19 +159860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 276, + "problemId": "d1.1", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11200, + "id": 7649, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160741,14 +159881,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11353, + "id": 7650, "result": { "type": "IOI", "score": [ @@ -160761,18 +159901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11879, + "id": 7651, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160781,38 +159921,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 276, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 664, + "id": 7652, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 53, + "problemId": "d1.1", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 750, + "id": 7653, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160820,19 +159964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 53, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1135, + "id": 7654, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160840,19 +159984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2204, + "id": 7655, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160860,15 +160004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2255, + "id": 7656, "result": { "type": "IOI", "score": [ @@ -160880,15 +160024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2448, + "id": 7657, "result": { "type": "IOI", "score": [ @@ -160901,18 +160045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 53, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2754, + "id": 7658, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160920,15 +160064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2824, + "id": 7659, "result": { "type": "IOI", "score": [ @@ -160940,15 +160084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2844, + "id": 7660, "result": { "type": "IOI", "score": [ @@ -160961,18 +160105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 53, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2905, + "id": 7661, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -160980,19 +160124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3155, + "id": 7662, "result": { "type": "IOI", "score": [ - 47.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161001,14 +160145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 53, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3213, + "id": 7663, "result": { "type": "IOI", "score": [ @@ -161020,19 +160164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10263, + "id": 7664, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161040,43 +160184,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10501, + "id": 7665, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10577, + "id": 7666, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161084,15 +160224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11461, + "id": 7667, "result": { "type": "IOI", "score": [ @@ -161104,15 +160244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12028, + "id": 7668, "result": { "type": "IOI", "score": [ @@ -161124,15 +160264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12065, + "id": 7669, "result": { "type": "IOI", "score": [ @@ -161144,15 +160284,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12096, + "id": 7670, "result": { "type": "IOI", "score": [ @@ -161164,19 +160304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 53, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 666, + "id": 7671, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161184,19 +160324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 708, + "id": 7672, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161204,19 +160344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 736, + "id": 7673, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161224,19 +160364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 794, + "id": 7674, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161244,19 +160384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 831, + "id": 7675, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161264,19 +160404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 871, + "id": 7676, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161284,19 +160424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 909, + "id": 7677, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161304,19 +160444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1366, + "id": 7678, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161324,19 +160464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1539, + "id": 7679, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161345,18 +160485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 428, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2416, + "id": 7680, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161365,18 +160505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 428, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2681, + "id": 7681, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161384,19 +160524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2685, + "id": 7682, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161404,19 +160544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 428, + "problemId": "d1.2", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2728, + "id": 7683, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161425,18 +160565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 428, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2873, + "id": 7684, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161444,19 +160584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4660, + "id": 7685, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161464,19 +160604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5679, + "id": 7686, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161484,19 +160624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5771, + "id": 7687, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161504,15 +160644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5849, + "id": 7688, "result": { "type": "IOI", "score": [ @@ -161525,18 +160665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 428, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6724, + "id": 7689, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161544,19 +160684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6846, + "id": 7690, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161564,15 +160704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6854, + "id": 7691, "result": { "type": "IOI", "score": [ @@ -161584,19 +160724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6887, + "id": 7692, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161604,19 +160744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.4", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6906, + "id": 7693, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161624,15 +160764,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7889, + "id": 7694, "result": { "type": "IOI", "score": [ @@ -161644,19 +160784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8313, + "id": 7695, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161664,19 +160804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8353, + "id": 7696, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161684,19 +160824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8415, + "id": 7697, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161704,19 +160844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8506, + "id": 7698, "result": { "type": "IOI", "score": [ - 50.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161724,19 +160864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8748, + "id": 7699, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161745,14 +160885,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 428, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10207, + "id": 7700, "result": { "type": "IOI", "score": [ @@ -161764,15 +160904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10347, + "id": 7701, "result": { "type": "IOI", "score": [ @@ -161785,14 +160925,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 428, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10651, + "id": 7702, "result": { "type": "IOI", "score": [ @@ -161804,19 +160944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10765, + "id": 7703, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161825,14 +160965,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 428, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11155, + "id": 7704, "result": { "type": "IOI", "score": [ @@ -161844,19 +160984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11213, + "id": 7705, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161864,19 +161004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 428, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11805, + "id": 7706, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161884,15 +161024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 428, + "problemId": "d1.2", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11880, + "id": 7707, "result": { "type": "IOI", "score": [ @@ -161905,14 +161045,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 428, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11976, + "id": 7708, "result": { "type": "IOI", "score": [ @@ -161924,39 +161064,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 428, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 668, + "id": 7709, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 763, + "id": 7710, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161964,19 +161108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 923, + "id": 7711, "result": { "type": "IOI", "score": [ - 9.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -161985,18 +161129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 305, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2302, + "id": 7712, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162004,19 +161148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 305, + "problemId": "d1.3", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2573, + "id": 7713, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162024,15 +161168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 305, + "problemId": "d1.3", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3877, + "id": 7714, "result": { "type": "IOI", "score": [ @@ -162044,19 +161188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4044, + "id": 7715, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162065,18 +161209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4172, + "id": 7716, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162084,15 +161228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4430, + "id": 7717, "result": { "type": "IOI", "score": [ @@ -162105,18 +161249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4553, + "id": 7718, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162124,19 +161268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4612, + "id": 7719, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162145,18 +161289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4710, + "id": 7720, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162165,14 +161309,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4786, + "id": 7721, "result": { "type": "IOI", "score": [ @@ -162184,19 +161328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.2", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5259, + "id": 7722, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162204,19 +161348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6764, + "id": 7723, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162224,19 +161368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 305, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7301, + "id": 7724, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162244,15 +161388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 305, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7443, + "id": 7725, "result": { "type": "IOI", "score": [ @@ -162264,28 +161408,32 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 305, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7496, + "id": 7726, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 305, + "problemId": "d1.2", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162305,14 +161453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 305, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7950, + "id": 7728, "result": { "type": "IOI", "score": [ @@ -162324,19 +161472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8054, + "id": 7729, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162345,18 +161493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8101, + "id": 7730, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162364,19 +161512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.4", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8811, + "id": 7731, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162385,18 +161533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9815, + "id": 7732, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162404,19 +161552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10100, + "id": 7733, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162424,19 +161572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10554, + "id": 7734, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162444,19 +161592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.1", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10720, + "id": 7735, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162465,18 +161613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11041, + "id": 7736, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162485,34 +161633,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11180, + "id": 7737, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 305, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11658, + "id": 7738, "result": { "type": "IOI", "score": [ @@ -162525,18 +161677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 305, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 672, + "id": 7739, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162544,15 +161696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1430, + "id": 7740, "result": { "type": "IOI", "score": [ @@ -162565,18 +161717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1445, + "id": 7741, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162584,15 +161736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.2", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1571, + "id": 7742, "result": { "type": "IOI", "score": [ @@ -162605,18 +161757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1904, + "id": 7743, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162625,14 +161777,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2257, + "id": 7744, "result": { "type": "IOI", "score": [ @@ -162644,15 +161796,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2320, + "id": 7745, "result": { "type": "IOI", "score": [ @@ -162665,14 +161817,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2442, + "id": 7746, "result": { "type": "IOI", "score": [ @@ -162685,14 +161837,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2580, + "id": 7747, "result": { "type": "IOI", "score": [ @@ -162705,14 +161857,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4378, + "id": 7748, "result": { "type": "IOI", "score": [ @@ -162725,18 +161877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4616, + "id": 7749, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162744,15 +161896,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.2", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4911, + "id": 7750, "result": { "type": "IOI", "score": [ @@ -162765,18 +161917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4947, + "id": 7751, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162784,19 +161936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5138, + "id": 7752, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162804,19 +161956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5150, + "id": 7753, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162825,18 +161977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5399, + "id": 7754, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162844,19 +161996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5408, + "id": 7755, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162864,19 +162016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 216, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5488, + "id": 7756, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162885,18 +162037,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5521, + "id": 7757, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144194", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7758, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162905,18 +162077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5564, + "id": 7759, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162925,14 +162097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 216, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7789, + "id": 7760, "result": { "type": "IOI", "score": [ @@ -162945,18 +162117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 216, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8018, + "id": 7761, "result": { "type": "IOI", "score": [ - 47.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162964,19 +162136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 216, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8954, + "id": 7762, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -162984,15 +162156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9055, + "id": 7763, "result": { "type": "IOI", "score": [ @@ -163005,14 +162177,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 216, + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10233, + "id": 7764, "result": { "type": "IOI", "score": [ @@ -163025,18 +162197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 216, + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10321, + "id": 7765, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163044,19 +162216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10396, + "id": 7766, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163065,18 +162237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 216, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10427, + "id": 7767, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163084,15 +162256,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10462, + "id": 7768, "result": { "type": "IOI", "score": [ @@ -163104,19 +162276,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144178", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7769, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 216, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10608, + "id": 7770, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163124,19 +162320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10644, + "id": 7771, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163144,19 +162340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10686, + "id": 7772, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163164,15 +162360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10832, + "id": 7773, "result": { "type": "IOI", "score": [ @@ -163184,19 +162380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11073, + "id": 7774, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163204,15 +162400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.3", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11840, + "id": 7775, "result": { "type": "IOI", "score": [ @@ -163224,19 +162420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 216, + "problemId": "d1.4", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 675, + "id": 7776, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163245,14 +162441,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 348, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3306, + "id": 7777, "result": { "type": "IOI", "score": [ @@ -163265,18 +162461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 348, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3792, + "id": 7778, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163285,18 +162481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 348, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3849, + "id": 7779, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163305,18 +162501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 348, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6534, + "id": 7780, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163324,19 +162520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 348, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7202, + "id": 7781, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163344,19 +162540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 348, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7229, + "id": 7782, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163365,18 +162561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 348, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8766, + "id": 7783, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163384,19 +162580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 348, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8827, + "id": 7784, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163404,15 +162600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 348, + "problemId": "d1.3", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11162, + "id": 7785, "result": { "type": "IOI", "score": [ @@ -163425,14 +162621,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 348, + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12094, + "id": 7786, "result": { "type": "IOI", "score": [ @@ -163444,19 +162640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 348, + "problemId": "d1.3", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 680, + "id": 7787, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163464,19 +162660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 824, + "id": 7788, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163485,18 +162681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 182, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 958, + "id": 7789, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163504,19 +162700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.2", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1003, + "id": 7790, "result": { "type": "IOI", "score": [ - 47.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163524,19 +162720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1188, + "id": 7791, "result": { "type": "IOI", "score": [ - 10.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163544,19 +162740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1207, + "id": 7792, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163565,18 +162761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 182, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2800, + "id": 7793, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163585,18 +162781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 182, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3349, + "id": 7794, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163604,19 +162800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3718, + "id": 7795, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163624,19 +162820,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4679, + "id": 7796, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144261", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7797, + "result": { + "type": "IOI", + "score": [ + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163645,18 +162861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 182, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5300, + "id": 7798, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163664,15 +162880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 182, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5690, + "id": 7799, "result": { "type": "IOI", "score": [ @@ -163684,15 +162900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 182, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5739, + "id": 7800, "result": { "type": "IOI", "score": [ @@ -163705,18 +162921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6045, + "id": 7801, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163725,14 +162941,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6119, + "id": 7802, "result": { "type": "IOI", "score": [ @@ -163745,18 +162961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6365, + "id": 7803, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163764,19 +162980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 182, + "problemId": "d1.1", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6541, + "id": 7804, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163785,18 +163001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6571, + "id": 7805, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163805,18 +163021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6822, + "id": 7806, "result": { "type": "IOI", "score": [ - 32.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163824,19 +163040,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 182, + "problemId": "d1.4", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6949, + "id": 7807, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144338", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7808, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163845,18 +163081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7268, + "id": 7809, "result": { "type": "IOI", "score": [ - 32.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163865,18 +163101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8162, + "id": 7810, "result": { "type": "IOI", "score": [ - 12.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163884,19 +163120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8286, + "id": 7811, "result": { "type": "IOI", "score": [ - 31.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163904,19 +163140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8529, + "id": 7812, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163924,19 +163160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8594, + "id": 7813, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163944,19 +163180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8663, + "id": 7814, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163964,19 +163200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8738, + "id": 7815, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -163984,19 +163220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.1", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8785, + "id": 7816, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164004,19 +163240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8933, + "id": 7817, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164025,14 +163261,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9318, + "id": 7818, "result": { "type": "IOI", "score": [ @@ -164045,18 +163281,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9481, + "id": 7819, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144448", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7820, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164065,18 +163321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 182, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10210, + "id": 7821, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164084,19 +163340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10847, + "id": 7822, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164104,19 +163360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.2", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11006, + "id": 7823, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164125,18 +163381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 182, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11192, + "id": 7824, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164145,18 +163401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 182, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11294, + "id": 7825, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164164,15 +163420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11463, + "id": 7826, "result": { "type": "IOI", "score": [ @@ -164184,15 +163440,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 182, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11779, + "id": 7827, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144322", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7828, "result": { "type": "IOI", "score": [ @@ -164205,18 +163481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 182, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 681, + "id": 7829, "result": { "type": "IOI", "score": [ - 15.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164224,15 +163500,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1769, + "id": 7830, "result": { "type": "IOI", "score": [ @@ -164244,19 +163520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 289, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1839, + "id": 7831, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164265,14 +163541,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 289, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2723, + "id": 7832, "result": { "type": "IOI", "score": [ @@ -164285,18 +163561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 289, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3073, + "id": 7833, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164304,19 +163580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 289, + "problemId": "d1.4", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3182, + "id": 7834, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164324,19 +163600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 289, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3459, + "id": 7835, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164345,38 +163621,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 289, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7133, + "id": 7836, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7589, + "id": 7837, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164384,19 +163664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8318, + "id": 7838, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164404,15 +163684,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8845, + "id": 7839, "result": { "type": "IOI", "score": [ @@ -164425,18 +163705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 289, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9707, + "id": 7840, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164444,19 +163724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 289, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10024, + "id": 7841, "result": { "type": "IOI", "score": [ - 15.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164464,19 +163744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10162, + "id": 7842, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164484,19 +163764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10446, + "id": 7843, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164504,19 +163784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10588, + "id": 7844, "result": { "type": "IOI", "score": [ - 9.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164524,19 +163804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11260, + "id": 7845, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164544,19 +163824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.1", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11383, + "id": 7846, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164564,19 +163844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 289, + "problemId": "d1.3", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11401, + "id": 7847, "result": { "type": "IOI", "score": [ - 24.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164585,18 +163865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 289, + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 686, + "id": 7848, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164604,19 +163884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 840, + "id": 7849, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164624,19 +163904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1293, + "id": 7850, "result": { "type": "IOI", "score": [ - 15.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164644,19 +163924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1387, + "id": 7851, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164664,19 +163944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1453, + "id": 7852, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164684,19 +163964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2114, + "id": 7853, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164704,19 +163984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2446, + "id": 7854, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164724,15 +164004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.1", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2601, + "id": 7855, "result": { "type": "IOI", "score": [ @@ -164745,18 +164025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 219, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2767, + "id": 7856, "result": { "type": "IOI", "score": [ - 48.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164764,19 +164044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2942, + "id": 7857, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164784,15 +164064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 219, + "problemId": "d1.1", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3813, + "id": 7858, "result": { "type": "IOI", "score": [ @@ -164805,14 +164085,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144083", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4029, + "id": 7859, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144149", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7860, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144122", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7861, "result": { "type": "IOI", "score": [ @@ -164824,19 +164144,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144344", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7862, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4153, + "id": 7863, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164845,18 +164185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5287, + "id": 7864, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164864,19 +164204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5457, + "id": 7865, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164884,19 +164224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5803, + "id": 7866, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164905,14 +164245,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 219, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6046, + "id": 7867, "result": { "type": "IOI", "score": [ @@ -164924,15 +164264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6145, + "id": 7868, "result": { "type": "IOI", "score": [ @@ -164944,15 +164284,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.4", + "teamId": "144250", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7869, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 219, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7145, + "id": 7870, "result": { "type": "IOI", "score": [ @@ -164965,18 +164325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7279, + "id": 7871, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -164984,19 +164344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7703, + "id": 7872, "result": { "type": "IOI", "score": [ - 32.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165004,19 +164364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 219, + "problemId": "d1.4", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7953, + "id": 7873, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165025,18 +164385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7991, + "id": 7874, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165044,19 +164404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8916, + "id": 7875, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165065,18 +164425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9275, + "id": 7876, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165085,14 +164445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9587, + "id": 7877, "result": { "type": "IOI", "score": [ @@ -165105,14 +164465,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10476, + "id": 7878, "result": { "type": "IOI", "score": [ @@ -165124,19 +164484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10671, + "id": 7879, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165144,19 +164504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10929, + "id": 7880, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165165,14 +164525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 219, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11526, + "id": 7881, "result": { "type": "IOI", "score": [ @@ -165184,15 +164544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11584, + "id": 7882, "result": { "type": "IOI", "score": [ @@ -165204,19 +164564,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144402", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7883, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 219, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11896, + "id": 7884, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165225,14 +164605,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 219, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12033, + "id": 7885, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144190", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7886, "result": { "type": "IOI", "score": [ @@ -165244,19 +164644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 219, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 688, + "id": 7887, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165264,19 +164664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 69, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1075, + "id": 7888, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165284,19 +164684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 69, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2542, + "id": 7889, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165304,19 +164704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 69, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2715, + "id": 7890, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165325,18 +164725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 69, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2772, + "id": 7891, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165345,18 +164745,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 69, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2926, + "id": 7892, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144100", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7893, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165364,15 +164788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 69, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3284, + "id": 7894, "result": { "type": "IOI", "score": [ @@ -165385,18 +164809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 69, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5199, + "id": 7895, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165405,14 +164829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 69, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5978, + "id": 7896, "result": { "type": "IOI", "score": [ @@ -165425,14 +164849,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 69, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6964, + "id": 7897, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144074", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7898, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144421", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7899, "result": { "type": "IOI", "score": [ @@ -165444,19 +164908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 69, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7455, + "id": 7900, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165464,19 +164928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 69, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8231, + "id": 7901, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165484,19 +164948,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 69, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8319, + "id": 7902, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144416", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7903, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165505,18 +164989,98 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 69, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8414, + "id": 7904, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144256", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7905, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144417", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7906, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144427", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7907, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144148", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7908, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165525,14 +165089,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 69, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8753, + "id": 7909, "result": { "type": "IOI", "score": [ @@ -165545,18 +165109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 69, + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8881, + "id": 7910, "result": { "type": "IOI", "score": [ - 33.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165565,18 +165129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 69, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9446, + "id": 7911, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165584,15 +165148,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 69, + "problemId": "d1.2", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9694, + "id": 7912, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144405", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7913, "result": { "type": "IOI", "score": [ @@ -165605,18 +165189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 69, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10259, + "id": 7914, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165624,19 +165208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 69, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10560, + "id": 7915, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165645,14 +165229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 69, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11312, + "id": 7916, "result": { "type": "IOI", "score": [ @@ -165664,19 +165248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 69, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 701, + "id": 7917, "result": { "type": "IOI", "score": [ - 100.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165685,18 +165269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 21, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1671, + "id": 7918, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165704,15 +165288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3175, + "id": 7919, "result": { "type": "IOI", "score": [ @@ -165724,15 +165308,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144476", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7920, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 21, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3318, + "id": 7921, "result": { "type": "IOI", "score": [ @@ -165744,15 +165348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3325, + "id": 7922, "result": { "type": "IOI", "score": [ @@ -165764,15 +165368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4342, + "id": 7923, "result": { "type": "IOI", "score": [ @@ -165784,19 +165388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4348, + "id": 7924, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165805,14 +165409,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 21, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4615, + "id": 7925, "result": { "type": "IOI", "score": [ @@ -165824,43 +165428,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4715, + "id": 7926, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 21, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4758, + "id": 7927, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165868,15 +165468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5223, + "id": 7928, "result": { "type": "IOI", "score": [ @@ -165888,15 +165488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144270", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5321, + "id": 7929, "result": { "type": "IOI", "score": [ @@ -165909,18 +165509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 21, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5496, + "id": 7930, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165928,19 +165528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5542, + "id": 7931, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -165948,15 +165548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5687, + "id": 7932, "result": { "type": "IOI", "score": [ @@ -165968,15 +165568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5747, + "id": 7933, "result": { "type": "IOI", "score": [ @@ -165988,19 +165588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5856, + "id": 7934, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166008,15 +165608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5954, + "id": 7935, "result": { "type": "IOI", "score": [ @@ -166028,19 +165628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6020, + "id": 7936, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166048,19 +165648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6168, + "id": 7937, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166068,19 +165668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6423, + "id": 7938, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166088,35 +165688,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 21, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6596, + "id": 7939, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144390", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7940, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6904, + "id": 7941, "result": { "type": "IOI", "score": [ @@ -166129,18 +165753,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7039, + "id": 7942, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166148,19 +165772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7223, + "id": 7943, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166169,14 +165793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7255, + "id": 7944, "result": { "type": "IOI", "score": [ @@ -166188,15 +165812,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7848, + "id": 7945, "result": { "type": "IOI", "score": [ @@ -166208,8 +165832,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166229,18 +165853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8205, + "id": 7947, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166248,15 +165872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8351, + "id": 7948, "result": { "type": "IOI", "score": [ @@ -166268,15 +165892,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8565, + "id": 7949, "result": { "type": "IOI", "score": [ @@ -166288,19 +165912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8684, + "id": 7950, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166309,18 +165933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9527, + "id": 7951, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166329,18 +165953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9585, + "id": 7952, "result": { "type": "IOI", "score": [ - 33.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166348,19 +165972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10677, + "id": 7953, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166369,14 +165993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10825, + "id": 7954, "result": { "type": "IOI", "score": [ @@ -166388,19 +166012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11977, + "id": 7955, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166408,19 +166032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12020, + "id": 7956, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166429,18 +166053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 21, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12110, + "id": 7957, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166448,19 +166072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 21, + "problemId": "d1.4", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 702, + "id": 7958, "result": { "type": "IOI", "score": [ - 12.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166468,15 +166092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 201, + "problemId": "d1.4", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 798, + "id": 7959, "result": { "type": "IOI", "score": [ @@ -166489,18 +166113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 201, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 825, + "id": 7960, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166509,18 +166133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 201, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1624, + "id": 7961, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166529,14 +166153,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2002, + "id": 7962, "result": { "type": "IOI", "score": [ @@ -166549,14 +166173,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2007, + "id": 7963, "result": { "type": "IOI", "score": [ @@ -166569,18 +166193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2256, + "id": 7964, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166588,19 +166212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2276, + "id": 7965, "result": { "type": "IOI", "score": [ - 36.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166608,19 +166232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2329, + "id": 7966, "result": { "type": "IOI", "score": [ - 36.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166628,19 +166252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2365, + "id": 7967, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166648,19 +166272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3177, + "id": 7968, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166668,19 +166292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3420, + "id": 7969, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166688,19 +166312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3531, + "id": 7970, "result": { "type": "IOI", "score": [ - 32.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166708,15 +166332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 201, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3607, + "id": 7971, "result": { "type": "IOI", "score": [ @@ -166728,15 +166352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 201, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3641, + "id": 7972, "result": { "type": "IOI", "score": [ @@ -166749,18 +166373,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3783, + "id": 7973, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144305", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7974, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166769,14 +166413,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3803, + "id": 7975, "result": { "type": "IOI", "score": [ @@ -166789,14 +166433,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3951, + "id": 7976, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144367", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7977, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144414", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7978, "result": { "type": "IOI", "score": [ @@ -166809,14 +166493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4004, + "id": 7979, "result": { "type": "IOI", "score": [ @@ -166829,18 +166513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4334, + "id": 7980, "result": { "type": "IOI", "score": [ - 35.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166849,18 +166533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 201, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4856, + "id": 7981, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166868,19 +166552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4872, + "id": 7982, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166888,19 +166572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4882, + "id": 7983, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166908,19 +166592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4890, + "id": 7984, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166929,18 +166613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7944, + "id": 7985, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166948,19 +166632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8049, + "id": 7986, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166969,18 +166653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8465, + "id": 7987, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -166988,15 +166672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9431, + "id": 7988, "result": { "type": "IOI", "score": [ @@ -167008,19 +166692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9467, + "id": 7989, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167028,19 +166712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9488, + "id": 7990, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167048,19 +166732,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9525, + "id": 7991, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144289", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7992, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167069,14 +166773,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10014, + "id": 7993, "result": { "type": "IOI", "score": [ @@ -167089,38 +166793,74 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10138, + "id": 7994, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144128", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7995, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10154, + "id": 7996, + "result": { + "type": "IOI", + "score": [ + 27.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144220", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7997, "result": { "type": "IOI", "score": [ @@ -167133,14 +166873,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10224, + "id": 7998, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144144", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 7999, "result": { "type": "IOI", "score": [ @@ -167153,14 +166913,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10360, + "id": 8000, "result": { "type": "IOI", "score": [ @@ -167173,18 +166933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10408, + "id": 8001, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167193,18 +166953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10415, + "id": 8002, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167213,18 +166973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 201, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10502, + "id": 8003, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167232,19 +166992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10897, + "id": 8004, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167253,18 +167013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10902, + "id": 8005, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167272,19 +167032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10913, + "id": 8006, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167292,15 +167052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10927, + "id": 8007, "result": { "type": "IOI", "score": [ @@ -167312,15 +167072,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10998, + "id": 8008, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8009, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144435", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8010, "result": { "type": "IOI", "score": [ @@ -167332,15 +167132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11004, + "id": 8011, "result": { "type": "IOI", "score": [ @@ -167353,14 +167153,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11568, + "id": 8012, + "result": { + "type": "IOI", + "score": [ + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144511", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8013, "result": { "type": "IOI", "score": [ @@ -167376,19 +167196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11653, + "id": 8014, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167396,19 +167216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144074", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11674, + "id": 8015, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167416,19 +167236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11684, + "id": 8016, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167436,19 +167256,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 201, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11985, + "id": 8017, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144195", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8018, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167457,18 +167297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 201, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 703, + "id": 8019, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167477,18 +167317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1302, + "id": 8020, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167496,15 +167336,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144144", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8021, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 346, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1507, + "id": 8022, "result": { "type": "IOI", "score": [ @@ -167517,18 +167381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 346, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1642, + "id": 8023, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167537,18 +167401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 346, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2213, + "id": 8024, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167556,19 +167420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 346, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2481, + "id": 8025, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167576,19 +167440,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2690, + "id": 8026, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144476", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8027, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8028, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167597,18 +167501,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 346, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2769, + "id": 8029, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144372", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8030, + "result": { + "type": "IOI", + "score": [ + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167617,18 +167541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 346, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2786, + "id": 8031, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167637,14 +167561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 346, + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3412, + "id": 8032, "result": { "type": "IOI", "score": [ @@ -167657,38 +167581,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3520, + "id": 8033, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3726, + "id": 8034, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167696,15 +167624,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4040, + "id": 8035, "result": { "type": "IOI", "score": [ @@ -167717,18 +167645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4918, + "id": 8036, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167736,19 +167664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5826, + "id": 8037, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167756,19 +167684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5870, + "id": 8038, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167776,19 +167704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5952, + "id": 8039, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167796,19 +167724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6110, + "id": 8040, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167816,19 +167744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6301, + "id": 8041, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167837,18 +167765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6481, + "id": 8042, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167857,18 +167785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6544, + "id": 8043, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167876,19 +167804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6905, + "id": 8044, "result": { "type": "IOI", "score": [ - 25.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167896,19 +167824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6951, + "id": 8045, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167917,18 +167845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7086, + "id": 8046, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167937,18 +167865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7199, + "id": 8047, "result": { "type": "IOI", "score": [ - 25.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167956,19 +167884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144269", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7312, + "id": 8048, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167977,18 +167905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7333, + "id": 8049, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -167996,19 +167924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7666, + "id": 8050, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168016,19 +167944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7792, + "id": 8051, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168037,18 +167965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7824, + "id": 8052, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168056,19 +167984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7856, + "id": 8053, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168076,19 +168004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7902, + "id": 8054, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168096,19 +168024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7980, + "id": 8055, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168116,8 +168044,88 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144248", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8056, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144317", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8057, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144420", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8058, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144141", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8059, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168137,18 +168145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8112, + "id": 8061, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168157,18 +168165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8160, + "id": 8062, "result": { "type": "IOI", "score": [ - 25.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168176,19 +168184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8210, + "id": 8063, "result": { "type": "IOI", "score": [ - 35.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168196,19 +168204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8247, + "id": 8064, "result": { "type": "IOI", "score": [ - 35.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168216,19 +168224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8431, + "id": 8065, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168236,19 +168244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8754, + "id": 8066, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168256,15 +168264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8855, + "id": 8067, "result": { "type": "IOI", "score": [ @@ -168277,18 +168285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 346, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10112, + "id": 8068, "result": { "type": "IOI", "score": [ - 12.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168296,15 +168304,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10226, + "id": 8069, "result": { "type": "IOI", "score": [ @@ -168316,19 +168324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10461, + "id": 8070, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168336,19 +168344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10723, + "id": 8071, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168356,19 +168364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10761, + "id": 8072, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168376,19 +168384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11144, + "id": 8073, "result": { "type": "IOI", "score": [ - 32.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168396,19 +168404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11255, + "id": 8074, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168416,19 +168424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11443, + "id": 8075, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168437,18 +168445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11557, + "id": 8076, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168457,18 +168465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11574, + "id": 8077, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168477,18 +168485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11599, + "id": 8078, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168496,19 +168504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11628, + "id": 8079, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168517,18 +168525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 346, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11723, + "id": 8080, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168536,19 +168544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 346, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11898, + "id": 8081, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168556,19 +168564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 346, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 707, + "id": 8082, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168577,18 +168585,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 261, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2121, + "id": 8083, "result": { "type": "IOI", "score": [ - 31.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168596,15 +168604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 261, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3068, + "id": 8084, "result": { "type": "IOI", "score": [ @@ -168617,18 +168625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 261, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3600, + "id": 8085, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168636,19 +168644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 261, + "problemId": "d1.3", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4366, + "id": 8086, "result": { "type": "IOI", "score": [ - 100.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168657,18 +168665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 261, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5160, + "id": 8087, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168676,19 +168684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 261, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5809, + "id": 8088, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168696,19 +168704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 261, + "problemId": "d1.1", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6050, + "id": 8089, "result": { "type": "IOI", "score": [ - 32.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168716,15 +168724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 261, + "problemId": "d1.4", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6421, + "id": 8090, "result": { "type": "IOI", "score": [ @@ -168737,38 +168745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 261, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7366, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 261, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7530, + "id": 8091, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168776,15 +168764,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 261, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7585, + "id": 8092, "result": { "type": "IOI", "score": [ @@ -168797,38 +168785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 261, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7596, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 261, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11527, + "id": 8093, "result": { "type": "IOI", "score": [ - 12.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168836,19 +168804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 261, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11577, + "id": 8094, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168856,19 +168824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 261, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11591, + "id": 8095, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168876,15 +168844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 261, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11671, + "id": 8096, "result": { "type": "IOI", "score": [ @@ -168897,14 +168865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 261, + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12019, + "id": 8097, "result": { "type": "IOI", "score": [ @@ -168917,78 +168885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 261, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 12106, - "result": { - "type": "IOI", - "score": [ - 22.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 261, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 731, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 113, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 802, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 113, + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 996, + "id": 8098, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -168996,19 +168904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1020, + "id": 8099, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169016,15 +168924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1024, + "id": 8100, "result": { "type": "IOI", "score": [ @@ -169036,19 +168944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1103, + "id": 8101, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169056,19 +168964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1128, + "id": 8102, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169077,18 +168985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 113, + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2469, + "id": 8103, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169096,19 +169004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2471, + "id": 8104, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169116,19 +169024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2565, + "id": 8105, "result": { "type": "IOI", "score": [ - 23.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169136,15 +169044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3110, + "id": 8106, "result": { "type": "IOI", "score": [ @@ -169157,18 +169065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3200, + "id": 8107, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169177,18 +169085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3242, + "id": 8108, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169196,15 +169104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3280, + "id": 8109, "result": { "type": "IOI", "score": [ @@ -169216,15 +169124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3335, + "id": 8110, "result": { "type": "IOI", "score": [ @@ -169236,19 +169144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3377, + "id": 8111, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169256,19 +169164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3540, + "id": 8112, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169276,19 +169184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3660, + "id": 8113, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169296,19 +169204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4001, + "id": 8114, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169317,14 +169225,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4230, + "id": 8115, "result": { "type": "IOI", "score": [ @@ -169337,18 +169245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4857, + "id": 8116, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169356,19 +169264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5015, + "id": 8117, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169377,18 +169285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5024, + "id": 8118, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169396,19 +169304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5149, + "id": 8119, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169416,15 +169324,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 113, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6872, + "id": 8120, "result": { "type": "IOI", "score": [ @@ -169436,15 +169344,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6942, + "id": 8121, "result": { "type": "IOI", "score": [ @@ -169456,19 +169364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7100, + "id": 8122, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169476,19 +169384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8092, + "id": 8123, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169496,19 +169404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 113, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8226, + "id": 8124, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169516,19 +169424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8381, + "id": 8125, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169536,19 +169444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8496, + "id": 8126, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169556,15 +169464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9164, + "id": 8127, "result": { "type": "IOI", "score": [ @@ -169576,19 +169484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9456, + "id": 8128, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169597,18 +169505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 113, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9957, + "id": 8129, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169616,19 +169524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10169, + "id": 8130, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169636,19 +169544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10195, + "id": 8131, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169656,19 +169564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10299, + "id": 8132, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169676,19 +169584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10307, + "id": 8133, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169696,19 +169604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10400, + "id": 8134, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169717,18 +169625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 113, + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10681, + "id": 8135, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169736,19 +169644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11053, + "id": 8136, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169756,19 +169664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.3", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11153, + "id": 8137, "result": { "type": "IOI", "score": [ - 10.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169776,19 +169684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 113, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11766, + "id": 8138, "result": { "type": "IOI", "score": [ - 16.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169797,18 +169705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12058, + "id": 8139, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169817,18 +169725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 113, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 747, + "id": 8140, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169837,18 +169745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1954, + "id": 8141, "result": { "type": "IOI", "score": [ - 100.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169857,14 +169765,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 394, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2699, + "id": 8142, "result": { "type": "IOI", "score": [ @@ -169876,19 +169784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2725, + "id": 8143, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169897,14 +169805,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2749, + "id": 8144, "result": { "type": "IOI", "score": [ @@ -169917,18 +169825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2789, + "id": 8145, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169937,18 +169845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, + "teamId": "144388", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3006, + "id": 8146, "result": { "type": "IOI", "score": [ - 12.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169957,38 +169865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4132, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 394, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4806, + "id": 8147, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -169996,15 +169884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 394, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4828, + "id": 8148, "result": { "type": "IOI", "score": [ @@ -170016,15 +169904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 394, + "problemId": "d1.1", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4987, + "id": 8149, "result": { "type": "IOI", "score": [ @@ -170037,14 +169925,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5211, + "id": 8150, "result": { "type": "IOI", "score": [ @@ -170056,19 +169944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 394, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5315, + "id": 8151, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170076,15 +169964,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 394, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6702, + "id": 8152, "result": { "type": "IOI", "score": [ @@ -170097,18 +169985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6744, + "id": 8153, "result": { "type": "IOI", "score": [ - 32.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170116,19 +170004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 394, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6762, + "id": 8154, "result": { "type": "IOI", "score": [ - 67.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170137,43 +170025,19 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7160, + "id": 8155, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 394, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7192, - "result": { - "type": "IOI", - "score": [ - 67.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -170181,18 +170045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7243, + "id": 8156, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170201,38 +170065,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 394, + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8040, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 394, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8555, + "id": 8157, "result": { "type": "IOI", "score": [ - 22.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170240,19 +170084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.4", + "teamId": "144230", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9343, + "id": 8158, "result": { "type": "IOI", "score": [ - 22.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170261,18 +170105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9599, + "id": 8159, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170280,19 +170124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9610, + "id": 8160, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170301,18 +170145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 394, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9789, + "id": 8161, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170320,19 +170164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.3", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9839, + "id": 8162, "result": { "type": "IOI", "score": [ - 22.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170340,19 +170184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.2", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9890, + "id": 8163, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170360,19 +170204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.2", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9925, + "id": 8164, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170380,19 +170224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10954, + "id": 8165, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170400,19 +170244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10969, + "id": 8166, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170420,15 +170264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 394, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 758, + "id": 8167, "result": { "type": "IOI", "score": [ @@ -170441,18 +170285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 107, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 805, + "id": 8168, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170460,19 +170304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 867, + "id": 8169, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170481,18 +170325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 107, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 914, + "id": 8170, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170500,19 +170344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 107, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1010, + "id": 8171, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170520,15 +170364,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2151, + "id": 8172, "result": { "type": "IOI", "score": [ @@ -170540,15 +170384,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 107, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2511, + "id": 8173, "result": { "type": "IOI", "score": [ @@ -170560,19 +170404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2629, + "id": 8174, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170580,19 +170424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 107, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2655, + "id": 8175, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170601,14 +170445,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 107, + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2691, + "id": 8176, "result": { "type": "IOI", "score": [ @@ -170621,18 +170465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 107, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2950, + "id": 8177, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170640,15 +170484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.2", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3049, + "id": 8178, "result": { "type": "IOI", "score": [ @@ -170660,19 +170504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3482, + "id": 8179, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170681,14 +170525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 107, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3838, + "id": 8180, "result": { "type": "IOI", "score": [ @@ -170700,19 +170544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3876, + "id": 8181, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170720,19 +170564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6627, + "id": 8182, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170740,19 +170584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6658, + "id": 8183, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170760,19 +170604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6795, + "id": 8184, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170780,19 +170624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7374, + "id": 8185, "result": { "type": "IOI", "score": [ - 9.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170801,18 +170645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 107, + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8485, + "id": 8186, "result": { "type": "IOI", "score": [ - 23.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170820,19 +170664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8841, + "id": 8187, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170840,19 +170684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8912, + "id": 8188, "result": { "type": "IOI", "score": [ - 38.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170861,18 +170705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 107, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8947, + "id": 8189, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170880,19 +170724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 107, + "problemId": "d1.3", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9445, + "id": 8190, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -170900,15 +170744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 107, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9997, + "id": 8191, "result": { "type": "IOI", "score": [ @@ -170925,14 +170769,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 107, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10085, + "id": 8192, "result": { "type": "IOI", "score": [ @@ -170945,214 +170789,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 107, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10173, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 107, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11123, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 107, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11267, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 107, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 766, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 848, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1029, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1044, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1067, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1120, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1803, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2323, + "id": 8193, "result": { "type": "IOI", "score": [ @@ -171165,58 +170809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 335, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2369, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2925, - "result": { - "type": "IOI", - "score": [ - 32.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3179, + "id": 8194, "result": { "type": "IOI", "score": [ - 32.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171225,14 +170829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 335, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5253, + "id": 8195, "result": { "type": "IOI", "score": [ @@ -171244,39 +170848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 335, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5873, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 335, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7912, + "id": 8196, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171285,14 +170869,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8074, + "id": 8197, "result": { "type": "IOI", "score": [ @@ -171304,15 +170888,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8109, + "id": 8198, "result": { "type": "IOI", "score": [ @@ -171325,14 +170909,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8119, + "id": 8199, "result": { "type": "IOI", "score": [ @@ -171344,19 +170928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.4", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8146, + "id": 8200, "result": { "type": "IOI", "score": [ - 25.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171365,18 +170949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8285, + "id": 8201, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171384,19 +170968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8636, + "id": 8202, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171404,19 +170988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8655, + "id": 8203, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171424,15 +171008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8729, + "id": 8204, "result": { "type": "IOI", "score": [ @@ -171445,14 +171029,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8783, + "id": 8205, "result": { "type": "IOI", "score": [ @@ -171464,15 +171048,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8806, + "id": 8206, "result": { "type": "IOI", "score": [ @@ -171484,15 +171068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8824, + "id": 8207, "result": { "type": "IOI", "score": [ @@ -171504,19 +171088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8846, + "id": 8208, "result": { "type": "IOI", "score": [ - 37.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171524,19 +171108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9433, + "id": 8209, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171544,19 +171128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 335, + "problemId": "d1.3", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9486, + "id": 8210, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171564,19 +171148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 335, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9821, + "id": 8211, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171585,14 +171169,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9944, + "id": 8212, "result": { "type": "IOI", "score": [ @@ -171605,14 +171189,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10040, + "id": 8213, "result": { "type": "IOI", "score": [ @@ -171625,38 +171209,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 335, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10080, + "id": 8214, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 335, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10786, + "id": 8215, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171664,19 +171252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 335, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11211, + "id": 8216, "result": { "type": "IOI", "score": [ - 32.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171684,19 +171272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 335, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11366, + "id": 8217, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171705,18 +171293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 335, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11618, + "id": 8218, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171724,15 +171312,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 335, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11826, + "id": 8219, "result": { "type": "IOI", "score": [ @@ -171745,18 +171333,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 335, + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 767, + "id": 8220, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171764,15 +171352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1009, + "id": 8221, "result": { "type": "IOI", "score": [ @@ -171785,38 +171373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1117, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 167, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1155, + "id": 8222, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171824,19 +171392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1222, + "id": 8223, "result": { "type": "IOI", "score": [ - 12.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171844,19 +171412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1391, + "id": 8224, "result": { "type": "IOI", "score": [ - 12.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171864,19 +171432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1409, + "id": 8225, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171884,19 +171452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1428, + "id": 8226, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171905,18 +171473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2520, + "id": 8227, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171924,15 +171492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3844, + "id": 8228, "result": { "type": "IOI", "score": [ @@ -171944,19 +171512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3918, + "id": 8229, "result": { "type": "IOI", "score": [ - 12.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171964,19 +171532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3959, + "id": 8230, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -171985,18 +171553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4424, + "id": 8231, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172005,14 +171573,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4606, + "id": 8232, "result": { "type": "IOI", "score": [ @@ -172024,19 +171592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4681, + "id": 8233, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172045,18 +171613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4760, + "id": 8234, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172065,14 +171633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4970, + "id": 8235, "result": { "type": "IOI", "score": [ @@ -172084,15 +171652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5084, + "id": 8236, "result": { "type": "IOI", "score": [ @@ -172105,18 +171673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5092, + "id": 8237, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172124,15 +171692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5105, + "id": 8238, "result": { "type": "IOI", "score": [ @@ -172144,15 +171712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5124, + "id": 8239, "result": { "type": "IOI", "score": [ @@ -172165,18 +171733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5153, + "id": 8240, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172185,14 +171753,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5221, + "id": 8241, "result": { "type": "IOI", "score": [ @@ -172204,19 +171772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5334, + "id": 8242, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172224,19 +171792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5577, + "id": 8243, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172244,15 +171812,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5595, + "id": 8244, "result": { "type": "IOI", "score": [ @@ -172265,18 +171833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5632, + "id": 8245, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172284,19 +171852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5857, + "id": 8246, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172305,18 +171873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 167, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5967, + "id": 8247, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172324,19 +171892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 167, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6181, + "id": 8248, "result": { "type": "IOI", "score": [ - 14.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172345,14 +171913,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 167, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6953, + "id": 8249, "result": { "type": "IOI", "score": [ @@ -172364,19 +171932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7155, + "id": 8250, "result": { "type": "IOI", "score": [ - 34.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172384,19 +171952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7564, + "id": 8251, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172404,19 +171972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7935, + "id": 8252, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172424,19 +171992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9401, + "id": 8253, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172445,18 +172013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10325, + "id": 8254, "result": { "type": "IOI", "score": [ - 10.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172464,19 +172032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10796, + "id": 8255, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172484,15 +172052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 167, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11556, + "id": 8256, "result": { "type": "IOI", "score": [ @@ -172505,18 +172073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11655, + "id": 8257, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172525,34 +172093,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 167, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 773, + "id": 8258, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 293, + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 989, + "id": 8259, "result": { "type": "IOI", "score": [ @@ -172564,19 +172136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1332, + "id": 8260, "result": { "type": "IOI", "score": [ - 34.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172584,19 +172156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1878, + "id": 8261, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172604,19 +172176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2318, + "id": 8262, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172625,38 +172197,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 293, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2375, + "id": 8263, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 293, + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2458, + "id": 8264, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172665,18 +172241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 293, + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3750, + "id": 8265, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172684,19 +172260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3788, + "id": 8266, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172704,15 +172280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3817, + "id": 8267, "result": { "type": "IOI", "score": [ @@ -172724,19 +172300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3840, + "id": 8268, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172744,19 +172320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3868, + "id": 8269, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172764,19 +172340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3906, + "id": 8270, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172784,15 +172360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3943, + "id": 8271, "result": { "type": "IOI", "score": [ @@ -172804,35 +172380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3966, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4741, + "id": 8272, "result": { "type": "IOI", "score": [ @@ -172844,15 +172400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5419, + "id": 8273, "result": { "type": "IOI", "score": [ @@ -172864,19 +172420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6101, + "id": 8274, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172884,19 +172440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6130, + "id": 8275, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172904,15 +172460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6459, + "id": 8276, "result": { "type": "IOI", "score": [ @@ -172924,39 +172480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6499, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6604, + "id": 8277, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172964,19 +172500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6847, + "id": 8278, "result": { "type": "IOI", "score": [ - 0.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -172984,19 +172520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7153, + "id": 8279, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173004,15 +172540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7194, + "id": 8280, "result": { "type": "IOI", "score": [ @@ -173024,15 +172560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7293, + "id": 8281, "result": { "type": "IOI", "score": [ @@ -173045,14 +172581,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 293, + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7762, + "id": 8282, "result": { "type": "IOI", "score": [ @@ -173065,14 +172601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 293, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8829, + "id": 8283, "result": { "type": "IOI", "score": [ @@ -173085,38 +172621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 293, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9225, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 293, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9389, + "id": 8284, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173125,14 +172641,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 293, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10431, + "id": 8285, "result": { "type": "IOI", "score": [ @@ -173144,67 +172660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 293, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11512, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 293, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11537, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 293, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11562, + "id": 8286, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173213,54 +172681,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 293, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 776, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 31, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 807, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 31, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 896, + "id": 8287, "result": { "type": "IOI", "score": [ @@ -173272,39 +172700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 31, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 978, - "result": { - "type": "IOI", - "score": [ - 34.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 31, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1015, + "id": 8288, "result": { "type": "IOI", "score": [ - 100.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173313,54 +172721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 31, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3814, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 31, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10438, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 31, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10653, + "id": 8289, "result": { "type": "IOI", "score": [ @@ -173373,14 +172741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 31, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10894, + "id": 8290, "result": { "type": "IOI", "score": [ @@ -173393,14 +172761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 31, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10976, + "id": 8291, "result": { "type": "IOI", "score": [ @@ -173412,19 +172780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 31, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11028, + "id": 8292, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173433,14 +172801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 31, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11088, + "id": 8293, "result": { "type": "IOI", "score": [ @@ -173452,19 +172820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 31, + "problemId": "d1.4", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11208, + "id": 8294, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173473,18 +172841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 31, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11434, + "id": 8295, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173493,18 +172861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 31, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 781, + "id": 8296, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173513,18 +172881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 350, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 865, + "id": 8297, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173532,19 +172900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 350, + "problemId": "d1.3", + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 956, + "id": 8298, "result": { "type": "IOI", "score": [ - 23.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173553,34 +172921,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 350, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2650, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 350, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2739, + "id": 8299, "result": { "type": "IOI", "score": [ @@ -173592,19 +172940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 350, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3205, + "id": 8300, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173612,15 +172960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 350, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5004, + "id": 8301, "result": { "type": "IOI", "score": [ @@ -173633,14 +172981,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5099, + "id": 8302, "result": { "type": "IOI", "score": [ @@ -173652,43 +173000,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5293, + "id": 8303, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.1", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5439, + "id": 8304, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173697,18 +173041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5543, + "id": 8305, "result": { "type": "IOI", "score": [ - 0.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173716,19 +173060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5677, + "id": 8306, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173736,19 +173080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5935, + "id": 8307, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173757,18 +173101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7036, + "id": 8308, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173777,18 +173121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7132, + "id": 8309, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173796,19 +173140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7237, + "id": 8310, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173817,18 +173161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7367, + "id": 8311, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173836,19 +173180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.4", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7779, + "id": 8312, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173856,19 +173200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8057, + "id": 8313, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173876,15 +173220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8098, + "id": 8314, "result": { "type": "IOI", "score": [ @@ -173897,18 +173241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8183, + "id": 8315, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173916,19 +173260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.2", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8251, + "id": 8316, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173937,7 +173281,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173957,18 +173301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8887, + "id": 8318, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -173976,15 +173320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9001, + "id": 8319, "result": { "type": "IOI", "score": [ @@ -173997,18 +173341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 350, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9023, + "id": 8320, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174016,43 +173360,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10910, + "id": 8321, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10984, + "id": 8322, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174060,19 +173400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 350, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 788, + "id": 8323, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174080,19 +173420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 908, + "id": 8324, "result": { "type": "IOI", "score": [ - 12.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174100,43 +173440,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 934, + "id": 8325, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1473, + "id": 8326, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174144,19 +173480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1685, + "id": 8327, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174164,19 +173500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1716, + "id": 8328, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174184,19 +173520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1732, + "id": 8329, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174204,19 +173540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2060, + "id": 8330, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174224,19 +173560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2074, + "id": 8331, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174244,19 +173580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3077, + "id": 8332, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174264,19 +173600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3161, + "id": 8333, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174284,15 +173620,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3305, + "id": 8334, "result": { "type": "IOI", "score": [ @@ -174305,14 +173641,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3432, + "id": 8335, "result": { "type": "IOI", "score": [ @@ -174325,18 +173661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3443, + "id": 8336, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174345,18 +173681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3469, + "id": 8337, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174364,19 +173700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3855, + "id": 8338, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174384,15 +173720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3859, + "id": 8339, "result": { "type": "IOI", "score": [ @@ -174404,19 +173740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3905, + "id": 8340, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174425,14 +173761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3932, + "id": 8341, "result": { "type": "IOI", "score": [ @@ -174445,18 +173781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3942, + "id": 8342, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174464,19 +173800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.2", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4055, + "id": 8343, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174485,14 +173821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4121, + "id": 8344, "result": { "type": "IOI", "score": [ @@ -174505,18 +173841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4284, + "id": 8345, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174525,18 +173861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4669, + "id": 8346, "result": { "type": "IOI", "score": [ - 16.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174544,19 +173880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5036, + "id": 8347, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174564,19 +173900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5064, + "id": 8348, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174584,15 +173920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5093, + "id": 8349, "result": { "type": "IOI", "score": [ @@ -174605,18 +173941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5318, + "id": 8350, "result": { "type": "IOI", "score": [ - 33.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174624,19 +173960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5563, + "id": 8351, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174645,18 +173981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 190, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5642, + "id": 8352, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174664,19 +174000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6100, + "id": 8353, "result": { "type": "IOI", "score": [ - 48.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174684,15 +174020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 190, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7004, + "id": 8354, "result": { "type": "IOI", "score": [ @@ -174705,18 +174041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 190, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7869, + "id": 8355, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174725,18 +174061,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 190, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8007, + "id": 8356, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174745,18 +174081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 190, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8051, + "id": 8357, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174764,19 +174100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8097, + "id": 8358, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174784,19 +174120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8237, + "id": 8359, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174804,19 +174140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8428, + "id": 8360, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174824,19 +174160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8452, + "id": 8361, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174844,19 +174180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9304, + "id": 8362, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174865,18 +174201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 190, + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9369, + "id": 8363, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174884,19 +174220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9440, + "id": 8364, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174904,15 +174240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 190, + "problemId": "d1.2", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10918, + "id": 8365, "result": { "type": "IOI", "score": [ @@ -174924,19 +174260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11081, + "id": 8366, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174944,19 +174280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11369, + "id": 8367, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174964,19 +174300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 190, + "problemId": "d1.3", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 789, + "id": 8368, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -174984,19 +174320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2214, + "id": 8369, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175004,19 +174340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 258, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2279, + "id": 8370, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175024,19 +174360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2360, + "id": 8371, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175045,18 +174381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 258, + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2484, + "id": 8372, "result": { "type": "IOI", "score": [ - 31.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175064,19 +174400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2498, + "id": 8373, "result": { "type": "IOI", "score": [ - 31.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175084,19 +174420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 258, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2639, + "id": 8374, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175104,19 +174440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3532, + "id": 8375, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175124,15 +174460,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4086, + "id": 8376, "result": { "type": "IOI", "score": [ @@ -175144,15 +174480,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4099, + "id": 8377, "result": { "type": "IOI", "score": [ @@ -175165,18 +174501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 258, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4311, + "id": 8378, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175184,19 +174520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4358, + "id": 8379, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175204,19 +174540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5191, + "id": 8380, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175225,14 +174561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 258, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5892, + "id": 8381, "result": { "type": "IOI", "score": [ @@ -175244,19 +174580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6635, + "id": 8382, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175264,15 +174600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6873, + "id": 8383, "result": { "type": "IOI", "score": [ @@ -175285,18 +174621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 258, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6972, + "id": 8384, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175304,19 +174640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7176, + "id": 8385, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175324,19 +174660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7359, + "id": 8386, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175344,19 +174680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7406, + "id": 8387, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175365,18 +174701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 258, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7598, + "id": 8388, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175384,15 +174720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 258, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8659, + "id": 8389, "result": { "type": "IOI", "score": [ @@ -175404,15 +174740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8719, + "id": 8390, "result": { "type": "IOI", "score": [ @@ -175424,19 +174760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8731, + "id": 8391, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175444,19 +174780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9131, + "id": 8392, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175465,18 +174801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9170, + "id": 8393, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175484,19 +174820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9497, + "id": 8394, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175504,19 +174840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9550, + "id": 8395, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175524,19 +174860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10094, + "id": 8396, "result": { "type": "IOI", "score": [ - 10.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175545,18 +174881,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10219, + "id": 8397, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175564,19 +174900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10363, + "id": 8398, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175584,19 +174920,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144387", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8399, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10542, + "id": 8400, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175605,18 +174965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10763, + "id": 8401, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175625,14 +174985,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10844, + "id": 8402, "result": { "type": "IOI", "score": [ @@ -175645,18 +175005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10891, + "id": 8403, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175664,15 +175024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10931, + "id": 8404, "result": { "type": "IOI", "score": [ @@ -175685,18 +175045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11102, + "id": 8405, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175704,19 +175064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.2", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11333, + "id": 8406, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175725,18 +175085,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11842, + "id": 8407, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144193", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8408, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175744,15 +175128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 258, + "problemId": "d1.3", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11919, + "id": 8409, "result": { "type": "IOI", "score": [ @@ -175765,18 +175149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 258, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 791, + "id": 8410, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175784,19 +175168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 872, + "id": 8411, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175804,19 +175188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 906, + "id": 8412, "result": { "type": "IOI", "score": [ - 24.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175824,19 +175208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 964, + "id": 8413, "result": { "type": "IOI", "score": [ - 24.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175845,18 +175229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 54, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1093, + "id": 8414, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175864,19 +175248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.3", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1622, + "id": 8415, "result": { "type": "IOI", "score": [ - 23.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175885,18 +175269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 54, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1695, + "id": 8416, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175904,39 +175288,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.2", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1714, + "id": 8417, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.3", + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1750, + "id": 8418, "result": { "type": "IOI", "score": [ - 38.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175944,19 +175332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3465, + "id": 8419, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175965,18 +175353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 54, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6267, + "id": 8420, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -175984,19 +175372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 54, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6830, + "id": 8421, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176004,19 +175392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 54, + "problemId": "d1.4", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 810, + "id": 8422, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176024,19 +175412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1065, + "id": 8423, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176044,15 +175432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1228, + "id": 8424, "result": { "type": "IOI", "score": [ @@ -176065,18 +175453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 441, + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1621, + "id": 8425, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176084,19 +175472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1676, + "id": 8426, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176104,19 +175492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1725, + "id": 8427, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176124,19 +175512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1883, + "id": 8428, "result": { "type": "IOI", "score": [ - 9.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176144,19 +175532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1887, + "id": 8429, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176165,18 +175553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 441, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2286, + "id": 8430, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176185,18 +175573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2309, + "id": 8431, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176204,15 +175592,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2537, + "id": 8432, "result": { "type": "IOI", "score": [ @@ -176224,19 +175612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3542, + "id": 8433, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176244,15 +175632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3671, + "id": 8434, "result": { "type": "IOI", "score": [ @@ -176265,14 +175653,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3688, + "id": 8435, "result": { "type": "IOI", "score": [ @@ -176285,18 +175673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3921, + "id": 8436, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176305,14 +175693,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5631, + "id": 8437, "result": { "type": "IOI", "score": [ @@ -176325,18 +175713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5659, + "id": 8438, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176344,39 +175732,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6022, + "id": 8439, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.4", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6035, + "id": 8440, "result": { "type": "IOI", "score": [ @@ -176389,18 +175773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6227, + "id": 8441, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176408,19 +175792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6393, + "id": 8442, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176429,14 +175813,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6490, + "id": 8443, "result": { "type": "IOI", "score": [ @@ -176449,14 +175833,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7134, + "id": 8444, "result": { "type": "IOI", "score": [ @@ -176469,18 +175853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8012, + "id": 8445, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176488,15 +175872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8111, + "id": 8446, "result": { "type": "IOI", "score": [ @@ -176508,19 +175892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8179, + "id": 8447, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176528,19 +175912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9174, + "id": 8448, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176548,19 +175932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.3", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9217, + "id": 8449, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176568,15 +175952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10839, + "id": 8450, "result": { "type": "IOI", "score": [ @@ -176589,18 +175973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10952, + "id": 8451, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176609,18 +175993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 441, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11122, + "id": 8452, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176628,19 +176012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 441, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 819, + "id": 8453, "result": { "type": "IOI", "score": [ - 24.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176649,18 +176033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1612, + "id": 8454, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176668,19 +176052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1634, + "id": 8455, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176688,15 +176072,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1666, + "id": 8456, "result": { "type": "IOI", "score": [ @@ -176709,38 +176093,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1686, + "id": 8457, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1698, + "id": 8458, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176748,19 +176136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1718, + "id": 8459, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176769,18 +176157,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1896, + "id": 8460, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144242", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8461, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176789,14 +176197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3127, + "id": 8462, "result": { "type": "IOI", "score": [ @@ -176809,14 +176217,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 129, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6939, + "id": 8463, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144393", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8464, "result": { "type": "IOI", "score": [ @@ -176828,15 +176256,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7482, + "id": 8465, "result": { "type": "IOI", "score": [ @@ -176849,18 +176277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 129, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7576, + "id": 8466, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176868,19 +176296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7602, + "id": 8467, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176889,18 +176317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 129, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8130, + "id": 8468, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176908,19 +176336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8163, + "id": 8469, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176928,15 +176356,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9258, + "id": 8470, "result": { "type": "IOI", "score": [ @@ -176949,18 +176377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 129, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10220, + "id": 8471, "result": { "type": "IOI", "score": [ - 24.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176969,18 +176397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10248, + "id": 8472, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -176988,19 +176416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10342, + "id": 8473, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177008,19 +176436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10510, + "id": 8474, "result": { "type": "IOI", "score": [ - 38.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177028,19 +176456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11238, + "id": 8475, "result": { "type": "IOI", "score": [ - 51.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177048,19 +176476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11751, + "id": 8476, "result": { "type": "IOI", "score": [ - 63.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177068,19 +176496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 129, + "problemId": "d1.1", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11797, + "id": 8477, "result": { "type": "IOI", "score": [ - 36.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177089,18 +176517,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 129, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 832, + "id": 8478, "result": { "type": "IOI", "score": [ - 40.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144088", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8479, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144316", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8480, + "result": { + "type": "IOI", + "score": [ + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177109,18 +176577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 226, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1552, + "id": 8481, "result": { "type": "IOI", "score": [ - 61.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177129,14 +176597,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 226, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2036, + "id": 8482, "result": { "type": "IOI", "score": [ @@ -177149,18 +176617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 226, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2070, + "id": 8483, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177169,18 +176637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 226, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2779, + "id": 8484, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177189,18 +176657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 226, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2969, + "id": 8485, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177208,19 +176676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 226, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3216, + "id": 8486, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177228,19 +176696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3254, + "id": 8487, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177248,19 +176716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3428, + "id": 8488, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177268,19 +176736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3861, + "id": 8489, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177289,18 +176757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 226, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6808, + "id": 8490, "result": { "type": "IOI", "score": [ - 0.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177309,18 +176777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 226, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7760, + "id": 8491, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177328,19 +176796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 226, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7822, + "id": 8492, "result": { "type": "IOI", "score": [ - 0.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177349,18 +176817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 226, + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8505, + "id": 8493, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177368,15 +176836,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 226, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8953, + "id": 8494, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144135", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8495, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144493", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8496, "result": { "type": "IOI", "score": [ @@ -177388,19 +176900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9540, + "id": 8497, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177408,19 +176920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 226, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10760, + "id": 8498, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177428,15 +176940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11649, + "id": 8499, "result": { "type": "IOI", "score": [ @@ -177448,19 +176960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 226, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11700, + "id": 8500, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177468,35 +176980,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11736, + "id": 8501, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 226, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 846, + "id": 8502, "result": { "type": "IOI", "score": [ @@ -177509,18 +177025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 863, + "id": 8503, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177528,15 +177044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1736, + "id": 8504, "result": { "type": "IOI", "score": [ @@ -177549,14 +177065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1768, + "id": 8505, "result": { "type": "IOI", "score": [ @@ -177568,19 +177084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1830, + "id": 8506, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177588,15 +177104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1912, + "id": 8507, "result": { "type": "IOI", "score": [ @@ -177608,15 +177124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.1", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1996, + "id": 8508, "result": { "type": "IOI", "score": [ @@ -177629,18 +177145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2020, + "id": 8509, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177648,15 +177164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2861, + "id": 8510, "result": { "type": "IOI", "score": [ @@ -177668,19 +177184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2967, + "id": 8511, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177688,15 +177204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3086, + "id": 8512, "result": { "type": "IOI", "score": [ @@ -177709,14 +177225,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3314, + "id": 8513, "result": { "type": "IOI", "score": [ @@ -177728,15 +177244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3360, + "id": 8514, "result": { "type": "IOI", "score": [ @@ -177749,38 +177265,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4049, + "id": 8515, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4084, + "id": 8516, "result": { "type": "IOI", "score": [ @@ -177792,19 +177304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4165, + "id": 8517, "result": { "type": "IOI", "score": [ - 100.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177813,14 +177325,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 188, + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5242, + "id": 8518, "result": { "type": "IOI", "score": [ @@ -177833,18 +177345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5268, + "id": 8519, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177852,19 +177364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.1", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5297, + "id": 8520, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177872,15 +177384,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5364, + "id": 8521, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144463", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8522, "result": { "type": "IOI", "score": [ @@ -177897,18 +177429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5473, + "id": 8523, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177917,18 +177449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5955, + "id": 8524, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177937,18 +177469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6303, + "id": 8525, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177957,18 +177489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6559, + "id": 8526, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177976,19 +177508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6758, + "id": 8527, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -177997,18 +177529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 188, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7353, + "id": 8528, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178016,15 +177548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8167, + "id": 8529, "result": { "type": "IOI", "score": [ @@ -178036,19 +177568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8232, + "id": 8530, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178056,19 +177588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8462, + "id": 8531, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178076,19 +177608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8773, + "id": 8532, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178096,19 +177628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8982, + "id": 8533, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178116,15 +177648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9219, + "id": 8534, "result": { "type": "IOI", "score": [ @@ -178136,19 +177668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9320, + "id": 8535, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178157,18 +177689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 188, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9428, + "id": 8536, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178176,19 +177708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9530, + "id": 8537, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178196,19 +177728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9573, + "id": 8538, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178216,19 +177748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9739, + "id": 8539, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178236,19 +177768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9772, + "id": 8540, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178257,18 +177789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 188, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11391, + "id": 8541, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178276,19 +177808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 188, + "problemId": "d1.3", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 850, + "id": 8542, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178296,19 +177828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1849, + "id": 8543, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178316,19 +177848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2262, + "id": 8544, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178337,18 +177869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 371, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2334, + "id": 8545, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178356,19 +177888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2518, + "id": 8546, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178376,19 +177908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3331, + "id": 8547, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178396,19 +177928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3385, + "id": 8548, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178416,19 +177948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4455, + "id": 8549, "result": { "type": "IOI", "score": [ - 27.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178437,18 +177969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 371, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4983, + "id": 8550, "result": { "type": "IOI", "score": [ - 50.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178456,19 +177988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 371, + "problemId": "d1.2", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5079, + "id": 8551, "result": { "type": "IOI", "score": [ - 63.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178477,18 +178009,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 371, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5572, + "id": 8552, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178497,18 +178029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 371, + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6391, + "id": 8553, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178516,19 +178048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6453, + "id": 8554, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178536,19 +178068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6505, + "id": 8555, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178556,19 +178088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6748, + "id": 8556, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178576,19 +178108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7467, + "id": 8557, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178596,19 +178128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7649, + "id": 8558, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178616,19 +178148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 371, + "problemId": "d1.2", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8787, + "id": 8559, "result": { "type": "IOI", "score": [ - 48.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178637,18 +178169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 371, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9017, + "id": 8560, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178657,38 +178189,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 371, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10604, + "id": 8561, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10856, + "id": 8562, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178696,59 +178232,67 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10867, + "id": 8563, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11274, + "id": 8564, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11607, + "id": 8565, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178756,19 +178300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11664, + "id": 8566, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178776,19 +178320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11799, + "id": 8567, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178796,19 +178340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11860, + "id": 8568, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178817,18 +178361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 371, + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11899, + "id": 8569, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178836,19 +178380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12003, + "id": 8570, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178856,19 +178400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 371, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 852, + "id": 8571, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178876,19 +178420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 109, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1515, + "id": 8572, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178896,19 +178440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 109, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2958, + "id": 8573, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178917,18 +178461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3165, + "id": 8574, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178937,18 +178481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3494, + "id": 8575, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178957,18 +178501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4813, + "id": 8576, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178977,18 +178521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4841, + "id": 8577, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -178996,15 +178540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 109, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5070, + "id": 8578, "result": { "type": "IOI", "score": [ @@ -179016,19 +178560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 109, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5168, + "id": 8579, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179037,18 +178581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 109, + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5598, + "id": 8580, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179056,19 +178600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 109, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5660, + "id": 8581, "result": { "type": "IOI", "score": [ - 23.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179076,19 +178620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 109, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7968, + "id": 8582, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179096,15 +178640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 109, + "problemId": "d1.2", + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8464, + "id": 8583, "result": { "type": "IOI", "score": [ @@ -179117,18 +178661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8515, + "id": 8584, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179137,18 +178681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9529, + "id": 8585, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179157,18 +178701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 109, + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9660, + "id": 8586, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179177,18 +178721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 109, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10242, + "id": 8587, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179196,19 +178740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 109, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10455, + "id": 8588, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179216,19 +178760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 109, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 860, + "id": 8589, "result": { "type": "IOI", "score": [ - 10.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179236,19 +178780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1314, + "id": 8590, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179256,19 +178800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 100, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1371, + "id": 8591, "result": { "type": "IOI", "score": [ - 14.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179277,18 +178821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 100, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1567, + "id": 8592, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179296,19 +178840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 100, + "problemId": "d1.3", + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3255, + "id": 8593, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179316,15 +178860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 100, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4205, + "id": 8594, "result": { "type": "IOI", "score": [ @@ -179336,35 +178880,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4308, + "id": 8595, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4636, + "id": 8596, "result": { "type": "IOI", "score": [ @@ -179376,19 +178924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5487, + "id": 8597, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179396,19 +178944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5520, + "id": 8598, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179417,18 +178965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 100, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5586, + "id": 8599, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179436,15 +178984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5772, + "id": 8600, "result": { "type": "IOI", "score": [ @@ -179457,18 +179005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 100, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7294, + "id": 8601, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179477,18 +179025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 100, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7510, + "id": 8602, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179496,19 +179044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7570, + "id": 8603, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179516,19 +179064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7719, + "id": 8604, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179536,19 +179084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8618, + "id": 8605, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179557,18 +179105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 100, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8744, + "id": 8606, "result": { "type": "IOI", "score": [ - 33.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179576,19 +179124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9348, + "id": 8607, "result": { "type": "IOI", "score": [ - 33.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179596,19 +179144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9797, + "id": 8608, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179617,18 +179165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 100, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9809, + "id": 8609, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179636,19 +179184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9885, + "id": 8610, "result": { "type": "IOI", "score": [ - 17.0 + 34.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179656,15 +179204,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 100, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 864, + "id": 8611, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144223", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8612, "result": { "type": "IOI", "score": [ @@ -179677,18 +179245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 286, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4039, + "id": 8613, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179696,19 +179264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 286, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4059, + "id": 8614, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179716,19 +179284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 286, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4191, + "id": 8615, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179736,19 +179304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 286, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11465, + "id": 8616, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179756,19 +179324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 286, + "problemId": "d1.1", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11894, + "id": 8617, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179776,19 +179344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 286, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 875, + "id": 8618, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179797,18 +179365,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 152, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 952, + "id": 8619, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179817,18 +179385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 152, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1398, + "id": 8620, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179836,19 +179404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.1", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2357, + "id": 8621, "result": { "type": "IOI", "score": [ - 36.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179856,19 +179424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2475, + "id": 8622, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179876,19 +179444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2732, + "id": 8623, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179896,19 +179464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3227, + "id": 8624, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179916,43 +179484,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3591, + "id": 8625, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144210", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8626, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144176", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 8627, + "result": { + "type": "IOI", + "score": [ + 64.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 152, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3657, + "id": 8628, "result": { "type": "IOI", "score": [ - 62.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -179961,42 +179565,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 152, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3699, + "id": 8629, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3776, + "id": 8630, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180004,15 +179604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 152, + "problemId": "d1.1", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6281, + "id": 8631, "result": { "type": "IOI", "score": [ @@ -180024,19 +179624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6530, + "id": 8632, "result": { "type": "IOI", "score": [ - 32.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180044,19 +179644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6799, + "id": 8633, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180065,18 +179665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 152, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7371, + "id": 8634, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180085,14 +179685,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7447, + "id": 8635, "result": { "type": "IOI", "score": [ @@ -180104,15 +179704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144340", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7644, + "id": 8636, "result": { "type": "IOI", "score": [ @@ -180125,18 +179725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7696, + "id": 8637, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180145,14 +179745,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8128, + "id": 8638, "result": { "type": "IOI", "score": [ @@ -180164,8 +179764,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 152, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180185,18 +179785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8833, + "id": 8640, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180205,14 +179805,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9043, + "id": 8641, "result": { "type": "IOI", "score": [ @@ -180224,95 +179824,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9072, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9379, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9546, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9637, - "result": { - "type": "IOI", - "score": [ - 25.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9958, + "id": 8642, "result": { "type": "IOI", "score": [ @@ -180325,94 +179845,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10074, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10131, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10166, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10351, - "result": { - "type": "IOI", - "score": [ - 35.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 152, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11191, + "id": 8643, "result": { "type": "IOI", "score": [ @@ -180425,14 +179865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 152, + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11773, + "id": 8644, "result": { "type": "IOI", "score": [ @@ -180444,19 +179884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11928, + "id": 8645, "result": { "type": "IOI", "score": [ - 0.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180465,18 +179905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 152, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12021, + "id": 8646, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180484,15 +179924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 152, + "problemId": "d1.4", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12082, + "id": 8647, "result": { "type": "IOI", "score": [ @@ -180504,19 +179944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 152, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 878, + "id": 8648, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180524,55 +179964,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 446, + "problemId": "d1.1", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 910, + "id": 8649, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 446, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1764, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 446, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2507, + "id": 8650, "result": { "type": "IOI", "score": [ @@ -180585,34 +180009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 446, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2634, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 446, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2660, + "id": 8651, "result": { "type": "IOI", "score": [ @@ -180625,18 +180029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 446, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3052, + "id": 8652, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180644,15 +180048,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 446, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3989, + "id": 8653, "result": { "type": "IOI", "score": [ @@ -180664,15 +180068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 446, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4113, + "id": 8654, "result": { "type": "IOI", "score": [ @@ -180684,19 +180088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 446, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4149, + "id": 8655, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180705,14 +180109,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 446, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6705, + "id": 8656, "result": { "type": "IOI", "score": [ @@ -180724,19 +180128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6766, + "id": 8657, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180745,34 +180149,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 446, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6778, + "id": 8658, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6843, + "id": 8659, "result": { "type": "IOI", "score": [ @@ -180784,19 +180192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6929, + "id": 8660, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180804,15 +180212,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.1", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7615, + "id": 8661, "result": { "type": "IOI", "score": [ @@ -180824,19 +180232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7986, + "id": 8662, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180844,15 +180252,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 446, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9014, + "id": 8663, "result": { "type": "IOI", "score": [ @@ -180865,38 +180273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 446, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11060, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 446, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 887, + "id": 8664, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -180904,15 +180292,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 177, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1815, + "id": 8665, "result": { "type": "IOI", "score": [ @@ -180924,119 +180312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 177, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1964, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 177, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2358, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 177, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3183, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 177, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3270, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 177, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4322, - "result": { - "type": "IOI", - "score": [ - 21.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 177, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4370, + "id": 8666, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181044,19 +180332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 177, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4569, + "id": 8667, "result": { "type": "IOI", "score": [ - 50.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181064,15 +180352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 177, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5003, + "id": 8668, "result": { "type": "IOI", "score": [ @@ -181085,18 +180373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5047, + "id": 8669, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181105,14 +180393,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5071, + "id": 8670, "result": { "type": "IOI", "score": [ @@ -181125,18 +180413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5135, + "id": 8671, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181145,18 +180433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5684, + "id": 8672, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181165,14 +180453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5726, + "id": 8673, "result": { "type": "IOI", "score": [ @@ -181185,14 +180473,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 177, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 888, + "id": 8674, "result": { "type": "IOI", "score": [ @@ -181204,55 +180492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1340, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 449, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1468, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2591, + "id": 8675, "result": { "type": "IOI", "score": [ @@ -181265,18 +180513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 449, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2676, + "id": 8676, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181285,34 +180533,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 449, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2933, + "id": 8677, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3705, + "id": 8678, "result": { "type": "IOI", "score": [ @@ -181325,18 +180577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 449, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3708, + "id": 8679, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181344,15 +180596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 449, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4846, + "id": 8680, "result": { "type": "IOI", "score": [ @@ -181364,19 +180616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4862, + "id": 8681, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181384,19 +180636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5514, + "id": 8682, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181404,15 +180656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.1", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6184, + "id": 8683, "result": { "type": "IOI", "score": [ @@ -181424,19 +180676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 449, + "problemId": "d1.1", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6480, + "id": 8684, "result": { "type": "IOI", "score": [ - 0.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181445,18 +180697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 449, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6865, + "id": 8685, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181465,18 +180717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 449, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7104, + "id": 8686, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181484,19 +180736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7613, + "id": 8687, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181504,15 +180756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 449, + "problemId": "d1.2", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7734, + "id": 8688, "result": { "type": "IOI", "score": [ @@ -181524,19 +180776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 449, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7763, + "id": 8689, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181545,18 +180797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 449, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8081, + "id": 8690, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181564,19 +180816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8126, + "id": 8691, "result": { "type": "IOI", "score": [ - 22.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181584,15 +180836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.1", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8997, + "id": 8692, "result": { "type": "IOI", "score": [ @@ -181604,39 +180856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9178, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9248, + "id": 8693, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181644,19 +180876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9373, + "id": 8694, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181664,19 +180896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 449, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10807, + "id": 8695, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181684,19 +180916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 449, + "problemId": "d1.4", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10945, + "id": 8696, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181705,14 +180937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 449, + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11660, + "id": 8697, "result": { "type": "IOI", "score": [ @@ -181724,15 +180956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 449, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 894, + "id": 8698, "result": { "type": "IOI", "score": [ @@ -181745,14 +180977,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 949, + "id": 8699, "result": { "type": "IOI", "score": [ @@ -181765,14 +180997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 971, + "id": 8700, "result": { "type": "IOI", "score": [ @@ -181784,19 +181016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 439, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1168, + "id": 8701, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181804,15 +181036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 439, + "problemId": "d1.1", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1194, + "id": 8702, "result": { "type": "IOI", "score": [ @@ -181824,19 +181056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1219, + "id": 8703, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181844,15 +181076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1324, + "id": 8704, "result": { "type": "IOI", "score": [ @@ -181865,18 +181097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1696, + "id": 8705, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181885,14 +181117,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1707, + "id": 8706, "result": { "type": "IOI", "score": [ @@ -181905,14 +181137,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1796, + "id": 8707, "result": { "type": "IOI", "score": [ @@ -181925,18 +181157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2240, + "id": 8708, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -181944,15 +181176,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 439, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2405, + "id": 8709, "result": { "type": "IOI", "score": [ @@ -181964,39 +181196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 439, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2434, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2488, + "id": 8710, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182004,19 +181216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2551, + "id": 8711, "result": { "type": "IOI", "score": [ - 23.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182024,15 +181236,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3330, + "id": 8712, "result": { "type": "IOI", "score": [ @@ -182045,14 +181257,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 439, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4540, + "id": 8713, "result": { "type": "IOI", "score": [ @@ -182064,19 +181276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4591, + "id": 8714, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182084,19 +181296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4919, + "id": 8715, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182105,14 +181317,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 439, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4953, + "id": 8716, "result": { "type": "IOI", "score": [ @@ -182124,19 +181336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5009, + "id": 8717, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182144,19 +181356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5537, + "id": 8718, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182164,15 +181376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5576, + "id": 8719, "result": { "type": "IOI", "score": [ @@ -182185,18 +181397,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 439, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5608, + "id": 8720, "result": { "type": "IOI", "score": [ - 0.0 + 76.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182204,15 +181416,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5637, + "id": 8721, "result": { "type": "IOI", "score": [ @@ -182224,19 +181436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5689, + "id": 8722, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182244,19 +181456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5740, + "id": 8723, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182264,15 +181476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5833, + "id": 8724, "result": { "type": "IOI", "score": [ @@ -182284,19 +181496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5875, + "id": 8725, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182304,15 +181516,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.4", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7621, + "id": 8726, "result": { "type": "IOI", "score": [ @@ -182324,19 +181536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144240", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7653, + "id": 8727, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182344,15 +181556,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7670, + "id": 8728, "result": { "type": "IOI", "score": [ @@ -182364,15 +181576,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9101, + "id": 8729, "result": { "type": "IOI", "score": [ @@ -182385,18 +181597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 439, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9154, + "id": 8730, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182404,15 +181616,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9201, + "id": 8731, "result": { "type": "IOI", "score": [ @@ -182425,62 +181637,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 439, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9274, + "id": 8732, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9298, + "id": 8733, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9327, + "id": 8734, "result": { "type": "IOI", "score": [ @@ -182492,19 +181696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10344, + "id": 8735, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182512,19 +181716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10663, + "id": 8736, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182533,18 +181737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 439, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11345, + "id": 8737, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182552,19 +181756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11836, + "id": 8738, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182572,19 +181776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.2", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12005, + "id": 8739, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182592,19 +181796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 439, + "problemId": "d1.3", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 913, + "id": 8740, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182612,19 +181816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1061, + "id": 8741, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182632,19 +181836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1192, + "id": 8742, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182652,19 +181856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1361, + "id": 8743, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182672,19 +181876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1377, + "id": 8744, "result": { "type": "IOI", "score": [ - 41.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182692,19 +181896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1400, + "id": 8745, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182712,19 +181916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144076", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1555, + "id": 8746, "result": { "type": "IOI", "score": [ - 62.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182732,15 +181936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1599, + "id": 8747, "result": { "type": "IOI", "score": [ @@ -182752,19 +181956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1601, + "id": 8748, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182773,18 +181977,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 387, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1614, + "id": 8749, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182792,19 +181996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1616, + "id": 8750, "result": { "type": "IOI", "score": [ - 21.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182812,19 +182016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1628, + "id": 8751, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182832,19 +182036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1631, + "id": 8752, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182852,19 +182056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1735, + "id": 8753, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182872,19 +182076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1740, + "id": 8754, "result": { "type": "IOI", "score": [ - 15.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182892,15 +182096,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3550, + "id": 8755, "result": { "type": "IOI", "score": [ @@ -182912,19 +182116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3691, + "id": 8756, "result": { "type": "IOI", "score": [ - 0.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182932,19 +182136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3757, + "id": 8757, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182952,39 +182156,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3786, + "id": 8758, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4000, + "id": 8759, "result": { "type": "IOI", "score": [ - 62.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -182992,19 +182200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5074, + "id": 8760, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183013,18 +182221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 387, + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5177, + "id": 8761, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183032,19 +182240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5238, + "id": 8762, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183052,19 +182260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5883, + "id": 8763, "result": { "type": "IOI", "score": [ - 62.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183072,19 +182280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6321, + "id": 8764, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183092,19 +182300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6346, + "id": 8765, "result": { "type": "IOI", "score": [ - 62.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183112,19 +182320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6807, + "id": 8766, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183132,19 +182340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7084, + "id": 8767, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183152,19 +182360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7135, + "id": 8768, "result": { "type": "IOI", "score": [ - 62.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183172,19 +182380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7309, + "id": 8769, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183192,19 +182400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8185, + "id": 8770, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183212,19 +182420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8720, + "id": 8771, "result": { "type": "IOI", "score": [ - 76.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183232,19 +182440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8952, + "id": 8772, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183252,19 +182460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9012, + "id": 8773, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183272,19 +182480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 387, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9496, + "id": 8774, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183293,18 +182501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 387, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10473, + "id": 8775, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183313,18 +182521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 387, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10538, + "id": 8776, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183333,18 +182541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 387, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10689, + "id": 8777, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183353,18 +182561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 387, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10875, + "id": 8778, "result": { "type": "IOI", "score": [ - 48.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183372,19 +182580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 387, + "problemId": "d1.4", + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 921, + "id": 8779, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183392,19 +182600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2271, + "id": 8780, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183412,19 +182620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.4", + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3261, + "id": 8781, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183433,14 +182641,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 116, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3286, + "id": 8782, "result": { "type": "IOI", "score": [ @@ -183452,15 +182660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 116, + "problemId": "d1.4", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3399, + "id": 8783, "result": { "type": "IOI", "score": [ @@ -183472,19 +182680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 116, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3665, + "id": 8784, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183492,19 +182700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3764, + "id": 8785, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183512,19 +182720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3927, + "id": 8786, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183532,15 +182740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3948, + "id": 8787, "result": { "type": "IOI", "score": [ @@ -183553,18 +182761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 116, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4762, + "id": 8788, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183573,18 +182781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 116, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5054, + "id": 8789, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183592,19 +182800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7183, + "id": 8790, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183612,19 +182820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7558, + "id": 8791, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183633,18 +182841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 116, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7586, + "id": 8792, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183652,19 +182860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7611, + "id": 8793, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183672,19 +182880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8906, + "id": 8794, "result": { "type": "IOI", "score": [ - 35.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183692,19 +182900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9099, + "id": 8795, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183712,39 +182920,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9196, + "id": 8796, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 116, + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9635, + "id": 8797, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183752,19 +182964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10941, + "id": 8798, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183772,35 +182984,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.3", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11480, + "id": 8799, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 116, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 926, + "id": 8800, "result": { "type": "IOI", "score": [ @@ -183812,19 +183028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 976, + "id": 8801, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183832,19 +183048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 57, + "problemId": "d1.2", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1214, + "id": 8802, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183852,19 +183068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 57, + "problemId": "d1.4", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1343, + "id": 8803, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183873,18 +183089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 57, + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1367, + "id": 8804, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183892,15 +183108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 57, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1581, + "id": 8805, "result": { "type": "IOI", "score": [ @@ -183912,15 +183128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 57, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2010, + "id": 8806, "result": { "type": "IOI", "score": [ @@ -183933,18 +183149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 57, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2077, + "id": 8807, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183953,18 +183169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 57, + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3823, + "id": 8808, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183972,19 +183188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4309, + "id": 8809, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -183993,18 +183209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 57, + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4766, + "id": 8810, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184013,18 +183229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 57, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5878, + "id": 8811, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184032,19 +183248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6410, + "id": 8812, "result": { "type": "IOI", "score": [ - 48.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184052,19 +183268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7349, + "id": 8813, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184072,19 +183288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.2", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7711, + "id": 8814, "result": { "type": "IOI", "score": [ - 27.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184092,19 +183308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7872, + "id": 8815, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184112,19 +183328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8296, + "id": 8816, "result": { "type": "IOI", "score": [ - 63.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184132,15 +183348,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 57, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9880, + "id": 8817, "result": { "type": "IOI", "score": [ @@ -184153,18 +183369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 57, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10059, + "id": 8818, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184173,18 +183389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 57, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10578, + "id": 8819, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184192,39 +183408,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 57, + "problemId": "d1.2", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10872, + "id": 8820, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 57, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10888, + "id": 8821, "result": { "type": "IOI", "score": [ @@ -184236,19 +183448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 57, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 941, + "id": 8822, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184256,19 +183468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1066, + "id": 8823, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184276,19 +183488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1609, + "id": 8824, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184296,19 +183508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1694, + "id": 8825, "result": { "type": "IOI", "score": [ - 36.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184317,18 +183529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 236, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1901, + "id": 8826, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184336,19 +183548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1969, + "id": 8827, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184356,19 +183568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2544, + "id": 8828, "result": { "type": "IOI", "score": [ - 21.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184377,18 +183589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 236, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2857, + "id": 8829, "result": { "type": "IOI", "score": [ - 50.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184396,19 +183608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3024, + "id": 8830, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184416,19 +183628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4380, + "id": 8831, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184437,18 +183649,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 236, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4634, + "id": 8832, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184457,18 +183669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 236, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4723, + "id": 8833, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184476,19 +183688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5296, + "id": 8834, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184497,18 +183709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 236, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6012, + "id": 8835, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184516,19 +183728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 236, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6094, + "id": 8836, "result": { "type": "IOI", "score": [ - 17.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184536,19 +183748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6197, + "id": 8837, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184556,19 +183768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 236, + "problemId": "d1.1", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8088, + "id": 8838, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184576,19 +183788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10475, + "id": 8839, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184596,19 +183808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10632, + "id": 8840, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184616,19 +183828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 236, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11596, + "id": 8841, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184636,19 +183848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 236, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 955, + "id": 8842, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184656,19 +183868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 2, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1746, + "id": 8843, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184676,19 +183888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.2", + "teamId": "144517", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2171, + "id": 8844, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184696,19 +183908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2568, + "id": 8845, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184716,19 +183928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2627, + "id": 8846, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184737,18 +183949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2668, + "id": 8847, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184757,18 +183969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3023, + "id": 8848, "result": { "type": "IOI", "score": [ - 12.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184776,19 +183988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.4", + "teamId": "144280", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3384, + "id": 8849, "result": { "type": "IOI", "score": [ - 12.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184796,19 +184008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3400, + "id": 8850, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184817,18 +184029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3456, + "id": 8851, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184837,18 +184049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3480, + "id": 8852, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184856,19 +184068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3549, + "id": 8853, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184877,18 +184089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4178, + "id": 8854, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184896,19 +184108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4238, + "id": 8855, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184917,18 +184129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4420, + "id": 8856, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184937,18 +184149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4724, + "id": 8857, "result": { "type": "IOI", "score": [ - 22.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184957,18 +184169,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 2, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5855, + "id": 8858, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184977,18 +184189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 2, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6000, + "id": 8859, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -184996,19 +184208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 2, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6179, + "id": 8860, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185017,18 +184229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 2, + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6527, + "id": 8861, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185036,19 +184248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 2, + "problemId": "d1.2", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6941, + "id": 8862, "result": { "type": "IOI", "score": [ - 48.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185056,19 +184268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 2, + "problemId": "d1.4", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8784, + "id": 8863, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185076,19 +184288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9865, + "id": 8864, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185096,19 +184308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10251, + "id": 8865, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185116,39 +184328,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10652, + "id": 8866, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 2, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10784, + "id": 8867, "result": { "type": "IOI", "score": [ @@ -185160,19 +184368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11100, + "id": 8868, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185180,19 +184388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.3", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11374, + "id": 8869, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185200,19 +184408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11499, + "id": 8870, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185221,18 +184429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 2, + "teamId": "144174", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11742, + "id": 8871, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185240,19 +184448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11869, + "id": 8872, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185260,19 +184468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 2, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12062, + "id": 8873, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185281,14 +184489,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 2, + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 961, + "id": 8874, "result": { "type": "IOI", "score": [ @@ -185301,18 +184509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 995, + "id": 8875, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185320,15 +184528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2024, + "id": 8876, "result": { "type": "IOI", "score": [ @@ -185340,15 +184548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2059, + "id": 8877, "result": { "type": "IOI", "score": [ @@ -185361,14 +184569,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2146, + "id": 8878, "result": { "type": "IOI", "score": [ @@ -185381,18 +184589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2217, + "id": 8879, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185401,18 +184609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2391, + "id": 8880, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185420,19 +184628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2607, + "id": 8881, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185440,15 +184648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.3", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6343, + "id": 8882, "result": { "type": "IOI", "score": [ @@ -185460,19 +184668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 112, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6775, + "id": 8883, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185480,19 +184688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 112, + "problemId": "d1.3", + "teamId": "144172", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6790, + "id": 8884, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185501,18 +184709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 112, + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6992, + "id": 8885, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185520,15 +184728,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 112, + "problemId": "d1.2", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7699, + "id": 8886, "result": { "type": "IOI", "score": [ @@ -185540,19 +184748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 112, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9093, + "id": 8887, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185560,39 +184768,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9111, + "id": 8888, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.3", + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9195, + "id": 8889, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185601,18 +184813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9222, + "id": 8890, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185621,18 +184833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9247, + "id": 8891, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185640,15 +184852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 112, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9319, + "id": 8892, "result": { "type": "IOI", "score": [ @@ -185661,18 +184873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 112, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11892, + "id": 8893, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185680,19 +184892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 112, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 963, + "id": 8894, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185701,18 +184913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 302, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1142, + "id": 8895, "result": { "type": "IOI", "score": [ - 12.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185721,14 +184933,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 302, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1500, + "id": 8896, "result": { "type": "IOI", "score": [ @@ -185740,19 +184952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1584, + "id": 8897, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185760,15 +184972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1898, + "id": 8898, "result": { "type": "IOI", "score": [ @@ -185781,18 +184993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 302, + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1981, + "id": 8899, "result": { "type": "IOI", "score": [ - 22.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185800,19 +185012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2672, + "id": 8900, "result": { "type": "IOI", "score": [ - 12.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185820,19 +185032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2790, + "id": 8901, "result": { "type": "IOI", "score": [ - 12.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185840,19 +185052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2891, + "id": 8902, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185860,19 +185072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3123, + "id": 8903, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185881,18 +185093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 302, + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3367, + "id": 8904, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185900,19 +185112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4958, + "id": 8905, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185920,19 +185132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6677, + "id": 8906, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185940,19 +185152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6704, + "id": 8907, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185960,19 +185172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7608, + "id": 8908, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -185980,19 +185192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7730, + "id": 8909, "result": { "type": "IOI", "score": [ - 9.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186000,19 +185212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7776, + "id": 8910, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186020,19 +185232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7833, + "id": 8911, "result": { "type": "IOI", "score": [ - 23.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186041,18 +185253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 302, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7913, + "id": 8912, "result": { "type": "IOI", "score": [ - 23.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186061,18 +185273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 302, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8029, + "id": 8913, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186080,19 +185292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8141, + "id": 8914, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186100,39 +185312,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8258, + "id": 8915, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.2", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9460, + "id": 8916, "result": { "type": "IOI", "score": [ @@ -186145,14 +185353,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 302, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9591, + "id": 8917, "result": { "type": "IOI", "score": [ @@ -186165,18 +185373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 302, + "teamId": "144268", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9665, + "id": 8918, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186184,19 +185392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9702, + "id": 8919, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186204,19 +185412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9988, + "id": 8920, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186224,19 +185432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10061, + "id": 8921, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186244,19 +185452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.4", + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10285, + "id": 8922, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186264,19 +185472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10412, + "id": 8923, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186284,19 +185492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10616, + "id": 8924, "result": { "type": "IOI", "score": [ - 12.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186304,43 +185512,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11705, + "id": 8925, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11745, + "id": 8926, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186348,19 +185552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 302, + "problemId": "d1.1", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 967, + "id": 8927, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186368,19 +185572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 29, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2555, + "id": 8928, "result": { "type": "IOI", "score": [ - 25.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186388,19 +185592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 29, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2628, + "id": 8929, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186408,19 +185612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 29, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2804, + "id": 8930, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186429,14 +185633,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 29, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5456, + "id": 8931, "result": { "type": "IOI", "score": [ @@ -186448,19 +185652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 29, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5768, + "id": 8932, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186468,19 +185672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 29, + "problemId": "d1.3", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5789, + "id": 8933, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186488,15 +185692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 29, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 972, + "id": 8934, "result": { "type": "IOI", "score": [ @@ -186509,18 +185713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 183, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 991, + "id": 8935, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186528,19 +185732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 183, + "problemId": "d1.1", + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4790, + "id": 8936, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186548,19 +185752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 183, + "problemId": "d1.1", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5378, + "id": 8937, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186568,19 +185772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 183, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10018, + "id": 8938, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186588,39 +185792,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 183, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10432, + "id": 8939, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 183, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11444, + "id": 8940, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186628,19 +185836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 183, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 973, + "id": 8941, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186648,19 +185856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 63, + "problemId": "d1.3", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 983, + "id": 8942, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186669,14 +185877,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 63, + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1702, + "id": 8943, "result": { "type": "IOI", "score": [ @@ -186688,19 +185896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 63, + "problemId": "d1.4", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1915, + "id": 8944, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186708,15 +185916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1953, + "id": 8945, "result": { "type": "IOI", "score": [ @@ -186728,19 +185936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2031, + "id": 8946, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186748,19 +185956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2694, + "id": 8947, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186768,19 +185976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 63, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4490, + "id": 8948, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186788,15 +185996,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4538, + "id": 8949, "result": { "type": "IOI", "score": [ @@ -186809,14 +186017,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 63, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4568, + "id": 8950, "result": { "type": "IOI", "score": [ @@ -186828,15 +186036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4961, + "id": 8951, "result": { "type": "IOI", "score": [ @@ -186848,19 +186056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.2", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5051, + "id": 8952, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186868,15 +186076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5292, + "id": 8953, "result": { "type": "IOI", "score": [ @@ -186888,19 +186096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 63, + "problemId": "d1.2", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5438, + "id": 8954, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186909,18 +186117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 63, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6206, + "id": 8955, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186928,19 +186136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 63, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6371, + "id": 8956, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186948,19 +186156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 63, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6686, + "id": 8957, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186968,19 +186176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7318, + "id": 8958, "result": { "type": "IOI", "score": [ - 16.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -186988,43 +186196,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.4", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7348, + "id": 8959, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7350, + "id": 8960, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187032,39 +186236,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10053, + "id": 8961, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 63, + "problemId": "d1.1", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11433, + "id": 8962, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187072,19 +186280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 63, + "problemId": "d1.2", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11454, + "id": 8963, "result": { "type": "IOI", "score": [ - 35.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187093,14 +186301,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 63, + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 979, + "id": 8964, "result": { "type": "IOI", "score": [ @@ -187112,19 +186320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1239, + "id": 8965, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187132,19 +186340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 175, + "problemId": "d1.4", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1715, + "id": 8966, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187153,42 +186361,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 175, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1794, + "id": 8967, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1811, + "id": 8968, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187196,19 +186400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1986, + "id": 8969, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187216,19 +186420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2176, + "id": 8970, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187236,35 +186440,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2251, + "id": 8971, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3172, + "id": 8972, "result": { "type": "IOI", "score": [ @@ -187276,19 +186484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3302, + "id": 8973, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187296,19 +186504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3369, + "id": 8974, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187317,18 +186525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3648, + "id": 8975, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187337,34 +186545,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3872, + "id": 8976, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3907, + "id": 8977, "result": { "type": "IOI", "score": [ @@ -187376,19 +186588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3924, + "id": 8978, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187396,19 +186608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3998, + "id": 8979, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187416,15 +186628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4064, + "id": 8980, "result": { "type": "IOI", "score": [ @@ -187436,15 +186648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4095, + "id": 8981, "result": { "type": "IOI", "score": [ @@ -187456,19 +186668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4130, + "id": 8982, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187476,19 +186688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4251, + "id": 8983, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187497,14 +186709,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4557, + "id": 8984, "result": { "type": "IOI", "score": [ @@ -187516,19 +186728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144426", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4861, + "id": 8985, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187536,15 +186748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.4", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4944, + "id": 8986, "result": { "type": "IOI", "score": [ @@ -187557,18 +186769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5007, + "id": 8987, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187576,15 +186788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5028, + "id": 8988, "result": { "type": "IOI", "score": [ @@ -187597,18 +186809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5692, + "id": 8989, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187617,18 +186829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 175, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7081, + "id": 8990, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187636,15 +186848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 175, + "problemId": "d1.3", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7186, + "id": 8991, "result": { "type": "IOI", "score": [ @@ -187657,38 +186869,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 175, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8559, + "id": 8992, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9019, + "id": 8993, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187696,19 +186912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9085, + "id": 8994, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187716,15 +186932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9146, + "id": 8995, "result": { "type": "IOI", "score": [ @@ -187737,18 +186953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9226, + "id": 8996, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187756,19 +186972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9272, + "id": 8997, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187776,19 +186992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9360, + "id": 8998, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187796,19 +187012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9453, + "id": 8999, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187817,14 +187033,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9469, + "id": 9000, "result": { "type": "IOI", "score": [ @@ -187837,18 +187053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10314, + "id": 9001, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187856,19 +187072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10467, + "id": 9002, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187877,18 +187093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 175, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10860, + "id": 9003, "result": { "type": "IOI", "score": [ - 51.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187896,19 +187112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144436", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11249, + "id": 9004, "result": { "type": "IOI", "score": [ - 63.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187916,19 +187132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11688, + "id": 9005, "result": { "type": "IOI", "score": [ - 63.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187936,19 +187152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.3", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12022, + "id": 9006, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187957,18 +187173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 175, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12032, + "id": 9007, "result": { "type": "IOI", "score": [ - 63.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187976,19 +187192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 175, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 981, + "id": 9008, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -187996,19 +187212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.2", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1013, + "id": 9009, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188017,14 +187233,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 83, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1036, + "id": 9010, "result": { "type": "IOI", "score": [ @@ -188036,19 +187252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.2", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1052, + "id": 9011, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188056,19 +187272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.4", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1099, + "id": 9012, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188076,19 +187292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.4", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1124, + "id": 9013, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188096,19 +187312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1136, + "id": 9014, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188116,15 +187332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.2", + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1206, + "id": 9015, "result": { "type": "IOI", "score": [ @@ -188136,19 +187352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1326, + "id": 9016, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188156,19 +187372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.2", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1429, + "id": 9017, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188176,19 +187392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1476, + "id": 9018, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188197,18 +187413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 83, + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1538, + "id": 9019, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188216,15 +187432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1579, + "id": 9020, "result": { "type": "IOI", "score": [ @@ -188236,19 +187452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1801, + "id": 9021, "result": { "type": "IOI", "score": [ - 10.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188256,15 +187472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1824, + "id": 9022, "result": { "type": "IOI", "score": [ @@ -188276,19 +187492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 83, + "problemId": "d1.2", + "teamId": "144472", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3245, + "id": 9023, "result": { "type": "IOI", "score": [ - 15.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188296,19 +187512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4031, + "id": 9024, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188316,15 +187532,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4046, + "id": 9025, "result": { "type": "IOI", "score": [ @@ -188336,19 +187552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4141, + "id": 9026, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188357,18 +187573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 83, + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4220, + "id": 9027, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188376,19 +187592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4263, + "id": 9028, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188396,15 +187612,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5202, + "id": 9029, "result": { "type": "IOI", "score": [ @@ -188416,15 +187632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5547, + "id": 9030, "result": { "type": "IOI", "score": [ @@ -188436,15 +187652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10252, + "id": 9031, "result": { "type": "IOI", "score": [ @@ -188456,19 +187672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 83, + "problemId": "d1.1", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10367, + "id": 9032, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188476,19 +187692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 83, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 982, + "id": 9033, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188497,14 +187713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1360, + "id": 9034, "result": { "type": "IOI", "score": [ @@ -188517,18 +187733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1490, + "id": 9035, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188536,15 +187752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1690, + "id": 9036, "result": { "type": "IOI", "score": [ @@ -188556,19 +187772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1737, + "id": 9037, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188577,14 +187793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1828, + "id": 9038, "result": { "type": "IOI", "score": [ @@ -188596,15 +187812,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1851, + "id": 9039, "result": { "type": "IOI", "score": [ @@ -188617,14 +187833,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1918, + "id": 9040, "result": { "type": "IOI", "score": [ @@ -188636,19 +187852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2131, + "id": 9041, "result": { "type": "IOI", "score": [ - 16.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188657,18 +187873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2218, + "id": 9042, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188676,15 +187892,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.2", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2393, + "id": 9043, "result": { "type": "IOI", "score": [ @@ -188696,19 +187912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2534, + "id": 9044, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188716,19 +187932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2583, + "id": 9045, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188736,19 +187952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2791, + "id": 9046, "result": { "type": "IOI", "score": [ - 16.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188756,19 +187972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.2", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2832, + "id": 9047, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188777,18 +187993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5639, + "id": 9048, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188796,19 +188012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5678, + "id": 9049, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188816,19 +188032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6217, + "id": 9050, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188836,19 +188052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 50, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6469, + "id": 9051, "result": { "type": "IOI", "score": [ - 23.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188856,15 +188072,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6932, + "id": 9052, "result": { "type": "IOI", "score": [ @@ -188877,18 +188093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7701, + "id": 9053, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188896,19 +188112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7747, + "id": 9054, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188917,18 +188133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7802, + "id": 9055, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188936,15 +188152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7925, + "id": 9056, "result": { "type": "IOI", "score": [ @@ -188957,18 +188173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8059, + "id": 9057, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188976,19 +188192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8423, + "id": 9058, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -188997,18 +188213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8566, + "id": 9059, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189017,18 +188233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8940, + "id": 9060, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189036,19 +188252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9006, + "id": 9061, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189056,19 +188272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.4", + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9110, + "id": 9062, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189076,19 +188292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9949, + "id": 9063, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189097,18 +188313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 50, + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10258, + "id": 9064, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189116,15 +188332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10821, + "id": 9065, "result": { "type": "IOI", "score": [ @@ -189136,19 +188352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11040, + "id": 9066, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189156,19 +188372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11507, + "id": 9067, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189176,19 +188392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 50, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 985, + "id": 9068, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189197,18 +188413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 312, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1157, + "id": 9069, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189216,19 +188432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 312, + "problemId": "d1.3", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1331, + "id": 9070, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189236,19 +188452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 312, + "problemId": "d1.1", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4257, + "id": 9071, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189257,18 +188473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 312, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4458, + "id": 9072, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189276,19 +188492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 312, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4511, + "id": 9073, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189297,18 +188513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 312, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6448, + "id": 9074, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189316,19 +188532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 312, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8315, + "id": 9075, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189336,19 +188552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 312, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8416, + "id": 9076, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189357,14 +188573,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 312, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8687, + "id": 9077, "result": { "type": "IOI", "score": [ @@ -189377,14 +188593,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 312, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8915, + "id": 9078, "result": { "type": "IOI", "score": [ @@ -189396,19 +188612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 312, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9249, + "id": 9079, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189416,19 +188632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 312, + "problemId": "d1.1", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9419, + "id": 9080, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189436,19 +188652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 312, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10390, + "id": 9081, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189457,18 +188673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 312, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10523, + "id": 9082, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189477,14 +188693,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 312, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10766, + "id": 9083, "result": { "type": "IOI", "score": [ @@ -189497,18 +188713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 312, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10793, + "id": 9084, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189517,18 +188733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 312, + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10811, + "id": 9085, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189536,19 +188752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 312, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10816, + "id": 9086, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189557,18 +188773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 312, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11384, + "id": 9087, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189576,19 +188792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 312, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11967, + "id": 9088, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189597,18 +188813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 312, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 990, + "id": 9089, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189616,19 +188832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 198, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1312, + "id": 9090, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189636,19 +188852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 198, + "problemId": "d1.1", + "teamId": "144485", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1403, + "id": 9091, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189656,19 +188872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 198, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1618, + "id": 9092, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189676,19 +188892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 198, + "problemId": "d1.3", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2960, + "id": 9093, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189697,18 +188913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 198, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7319, + "id": 9094, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189716,19 +188932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 198, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7745, + "id": 9095, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189737,18 +188953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 198, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7795, + "id": 9096, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189757,18 +188973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 198, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8209, + "id": 9097, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189777,42 +188993,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 198, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8417, + "id": 9098, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 198, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8434, + "id": 9099, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189820,19 +189032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 198, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8917, + "id": 9100, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189840,15 +189052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 198, + "problemId": "d1.2", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1000, + "id": 9101, "result": { "type": "IOI", "score": [ @@ -189860,19 +189072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 320, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1449, + "id": 9102, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189880,19 +189092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 320, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1840, + "id": 9103, "result": { "type": "IOI", "score": [ - 100.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189900,19 +189112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4769, + "id": 9104, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189920,19 +189132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6328, + "id": 9105, "result": { "type": "IOI", "score": [ - 0.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189940,19 +189152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 320, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6602, + "id": 9106, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -189960,15 +189172,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 320, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6657, + "id": 9107, "result": { "type": "IOI", "score": [ @@ -189981,14 +189193,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 320, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6728, + "id": 9108, "result": { "type": "IOI", "score": [ @@ -190001,18 +189213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 320, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6880, + "id": 9109, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190020,15 +189232,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 320, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6976, + "id": 9110, "result": { "type": "IOI", "score": [ @@ -190041,42 +189253,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 320, + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7152, + "id": 9111, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 320, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7175, + "id": 9112, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190085,14 +189293,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 320, + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7769, + "id": 9113, "result": { "type": "IOI", "score": [ @@ -190109,18 +189317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 320, + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7788, + "id": 9114, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190129,18 +189337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 320, + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7838, + "id": 9115, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190148,43 +189356,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.2", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7939, + "id": 9116, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7947, + "id": 9117, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190192,19 +189396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8151, + "id": 9118, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190212,19 +189416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8213, + "id": 9119, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190233,18 +189437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 320, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9300, + "id": 9120, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190252,15 +189456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9378, + "id": 9121, "result": { "type": "IOI", "score": [ @@ -190273,18 +189477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 320, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9533, + "id": 9122, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190292,19 +189496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9595, + "id": 9123, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190313,14 +189517,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 320, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9639, + "id": 9124, "result": { "type": "IOI", "score": [ @@ -190332,19 +189536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9803, + "id": 9125, "result": { "type": "IOI", "score": [ - 10.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190352,19 +189556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9894, + "id": 9126, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190372,15 +189576,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10118, + "id": 9127, "result": { "type": "IOI", "score": [ @@ -190392,19 +189596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 320, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10124, + "id": 9128, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190412,19 +189616,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 320, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1006, + "id": 9129, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144495", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9130, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190433,14 +189657,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 361, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1303, + "id": 9131, "result": { "type": "IOI", "score": [ @@ -190453,18 +189677,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 361, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3597, + "id": 9132, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190472,15 +189696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 361, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4971, + "id": 9133, "result": { "type": "IOI", "score": [ @@ -190493,14 +189717,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5336, + "id": 9134, "result": { "type": "IOI", "score": [ @@ -190513,18 +189737,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5704, + "id": 9135, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144366", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9136, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190533,19 +189777,63 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5746, + "id": 9137, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144386", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9138, + "result": { + "type": "IOI", + "score": [ + 13.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144192", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9139, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -190553,14 +189841,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5852, + "id": 9140, "result": { "type": "IOI", "score": [ @@ -190572,15 +189860,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 361, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6749, + "id": 9141, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144332", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9142, "result": { "type": "IOI", "score": [ @@ -190593,14 +189905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6801, + "id": 9143, "result": { "type": "IOI", "score": [ @@ -190613,14 +189925,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8913, + "id": 9144, "result": { "type": "IOI", "score": [ @@ -190633,14 +189945,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 361, + "teamId": "144487", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9030, + "id": 9145, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144446", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9146, "result": { "type": "IOI", "score": [ @@ -190653,14 +189985,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9038, + "id": 9147, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144291", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9148, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144338", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9149, "result": { "type": "IOI", "score": [ @@ -190672,19 +190044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 361, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9052, + "id": 9150, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190693,14 +190065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 361, + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9253, + "id": 9151, "result": { "type": "IOI", "score": [ @@ -190712,15 +190084,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 361, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10622, + "id": 9152, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144344", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9153, "result": { "type": "IOI", "score": [ @@ -190733,14 +190125,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 361, + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10986, + "id": 9154, "result": { "type": "IOI", "score": [ @@ -190753,18 +190145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 361, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11070, + "id": 9155, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190772,19 +190164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 361, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12044, + "id": 9156, "result": { "type": "IOI", "score": [ - 29.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190792,19 +190184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 361, + "problemId": "d1.1", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1007, + "id": 9157, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190813,18 +190205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 380, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1831, + "id": 9158, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190832,19 +190224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1907, + "id": 9159, "result": { "type": "IOI", "score": [ - 14.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190852,15 +190244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2062, + "id": 9160, "result": { "type": "IOI", "score": [ @@ -190872,19 +190264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2103, + "id": 9161, "result": { "type": "IOI", "score": [ - 27.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190893,18 +190285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 380, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2231, + "id": 9162, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190912,19 +190304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2242, + "id": 9163, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190932,19 +190324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.2", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2401, + "id": 9164, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190952,19 +190344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2602, + "id": 9165, "result": { "type": "IOI", "score": [ - 27.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190972,19 +190364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2866, + "id": 9166, "result": { "type": "IOI", "score": [ - 36.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -190992,19 +190384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3026, + "id": 9167, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191012,19 +190404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3063, + "id": 9168, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191032,19 +190424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3195, + "id": 9169, "result": { "type": "IOI", "score": [ - 27.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191053,18 +190445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 380, + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3206, + "id": 9170, "result": { "type": "IOI", "score": [ - 27.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191072,19 +190464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3265, + "id": 9171, "result": { "type": "IOI", "score": [ - 36.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191092,19 +190484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3460, + "id": 9172, "result": { "type": "IOI", "score": [ - 36.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191112,43 +190504,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3551, + "id": 9173, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 380, + "teamId": "144412", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3634, + "id": 9174, "result": { "type": "IOI", "score": [ - 36.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191157,18 +190545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 380, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3754, + "id": 9175, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191176,19 +190564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3839, + "id": 9176, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191196,19 +190584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3911, + "id": 9177, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191216,19 +190604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3971, + "id": 9178, "result": { "type": "IOI", "score": [ - 36.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191236,15 +190624,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4005, + "id": 9179, "result": { "type": "IOI", "score": [ @@ -191256,19 +190644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4288, + "id": 9180, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191276,19 +190664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 380, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4531, + "id": 9181, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191296,19 +190684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 380, + "problemId": "d1.4", + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4599, + "id": 9182, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191317,18 +190705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 380, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5278, + "id": 9183, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191336,19 +190724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 380, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5555, + "id": 9184, "result": { "type": "IOI", "score": [ - 31.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191356,19 +190744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 380, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10658, + "id": 9185, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191376,19 +190764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 380, + "problemId": "d1.4", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11375, + "id": 9186, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191396,19 +190784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 380, + "problemId": "d1.4", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11529, + "id": 9187, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191416,19 +190804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11781, + "id": 9188, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191436,19 +190824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 380, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11855, + "id": 9189, "result": { "type": "IOI", "score": [ - 10.0 + 68.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191457,18 +190845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 380, + "teamId": "144385", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11886, + "id": 9190, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191477,18 +190865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 380, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1017, + "id": 9191, "result": { "type": "IOI", "score": [ - 36.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191496,19 +190884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1133, + "id": 9192, "result": { "type": "IOI", "score": [ - 36.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191516,19 +190904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1762, + "id": 9193, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191537,18 +190925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 195, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1867, + "id": 9194, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191556,19 +190944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1936, + "id": 9195, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191576,19 +190964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 195, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2104, + "id": 9196, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191596,15 +190984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 195, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3891, + "id": 9197, "result": { "type": "IOI", "score": [ @@ -191616,15 +191004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3935, + "id": 9198, "result": { "type": "IOI", "score": [ @@ -191636,15 +191024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.2", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3960, + "id": 9199, "result": { "type": "IOI", "score": [ @@ -191661,18 +191049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3978, + "id": 9200, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191680,15 +191068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4045, + "id": 9201, "result": { "type": "IOI", "score": [ @@ -191701,14 +191089,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4143, + "id": 9202, "result": { "type": "IOI", "score": [ @@ -191720,19 +191108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4277, + "id": 9203, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191741,18 +191129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4397, + "id": 9204, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191760,19 +191148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4428, + "id": 9205, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191780,19 +191168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4623, + "id": 9206, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191800,19 +191188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4633, + "id": 9207, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191820,19 +191208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4663, + "id": 9208, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191840,15 +191228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4686, + "id": 9209, "result": { "type": "IOI", "score": [ @@ -191860,15 +191248,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4835, + "id": 9210, "result": { "type": "IOI", "score": [ @@ -191880,19 +191268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4951, + "id": 9211, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191900,43 +191288,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5186, + "id": 9212, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5246, + "id": 9213, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191944,15 +191328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5270, + "id": 9214, "result": { "type": "IOI", "score": [ @@ -191965,18 +191349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5309, + "id": 9215, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -191985,18 +191369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5463, + "id": 9216, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192005,18 +191389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5528, + "id": 9217, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192024,19 +191408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.4", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5603, + "id": 9218, "result": { "type": "IOI", "score": [ - 0.0 + 81.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192044,19 +191428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5683, + "id": 9219, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192065,14 +191449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5792, + "id": 9220, "result": { "type": "IOI", "score": [ @@ -192084,19 +191468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.2", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5834, + "id": 9221, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192105,18 +191489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6026, + "id": 9222, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192125,18 +191509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6125, + "id": 9223, "result": { "type": "IOI", "score": [ - 35.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192145,18 +191529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6204, + "id": 9224, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192165,18 +191549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6577, + "id": 9225, "result": { "type": "IOI", "score": [ - 35.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192185,18 +191569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7663, + "id": 9226, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192205,18 +191589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 195, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7800, + "id": 9227, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192224,19 +191608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 195, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8008, + "id": 9228, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192245,14 +191629,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 195, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10143, + "id": 9229, "result": { "type": "IOI", "score": [ @@ -192264,15 +191648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 195, + "problemId": "d1.4", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10404, + "id": 9230, "result": { "type": "IOI", "score": [ @@ -192285,18 +191669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10521, + "id": 9231, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192305,18 +191689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10690, + "id": 9232, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192324,19 +191708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11240, + "id": 9233, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192344,39 +191728,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11245, + "id": 9234, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.2", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11268, + "id": 9235, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192384,19 +191772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 195, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11285, + "id": 9236, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192405,18 +191793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11296, + "id": 9237, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192425,18 +191813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 195, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1027, + "id": 9238, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192444,19 +191832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1102, + "id": 9239, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192464,15 +191852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2843, + "id": 9240, "result": { "type": "IOI", "score": [ @@ -192484,39 +191872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 82, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5219, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5406, + "id": 9241, "result": { "type": "IOI", "score": [ - 15.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192524,19 +191892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 82, + "problemId": "d1.2", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5731, + "id": 9242, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192544,19 +191912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6625, + "id": 9243, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192564,19 +191932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6720, + "id": 9244, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192584,19 +191952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.2", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6729, + "id": 9245, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192604,15 +191972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6834, + "id": 9246, "result": { "type": "IOI", "score": [ @@ -192624,15 +191992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6921, + "id": 9247, "result": { "type": "IOI", "score": [ @@ -192645,18 +192013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 82, + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7264, + "id": 9248, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192664,15 +192032,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 82, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8676, + "id": 9249, "result": { "type": "IOI", "score": [ @@ -192685,14 +192053,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 82, + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9826, + "id": 9250, "result": { "type": "IOI", "score": [ @@ -192705,18 +192073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 82, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9886, + "id": 9251, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192724,19 +192092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 82, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9985, + "id": 9252, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192745,14 +192113,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 82, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10296, + "id": 9253, "result": { "type": "IOI", "score": [ @@ -192764,15 +192132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 82, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10385, + "id": 9254, "result": { "type": "IOI", "score": [ @@ -192785,18 +192153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 82, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10960, + "id": 9255, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192804,19 +192172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 82, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11195, + "id": 9256, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192824,15 +192192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 82, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11257, + "id": 9257, "result": { "type": "IOI", "score": [ @@ -192845,18 +192213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 82, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11802, + "id": 9258, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192864,15 +192232,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 82, + "problemId": "d1.1", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1042, + "id": 9259, "result": { "type": "IOI", "score": [ @@ -192884,19 +192252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 37, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3409, + "id": 9260, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192904,19 +192272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 37, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3837, + "id": 9261, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192924,19 +192292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 37, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4197, + "id": 9262, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192945,14 +192313,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 37, + "teamId": "144293", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4546, + "id": 9263, "result": { "type": "IOI", "score": [ @@ -192964,19 +192332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 37, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5005, + "id": 9264, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -192984,15 +192352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 37, + "problemId": "d1.1", + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6779, + "id": 9265, "result": { "type": "IOI", "score": [ @@ -193005,38 +192373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 37, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8037, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 37, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8120, + "id": 9266, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193044,15 +192392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 37, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8311, + "id": 9267, "result": { "type": "IOI", "score": [ @@ -193064,59 +192412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 37, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9744, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 37, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10306, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 37, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11147, + "id": 9268, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193125,18 +192433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 37, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12040, + "id": 9269, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193144,19 +192452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 37, + "problemId": "d1.4", + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1056, + "id": 9270, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193164,19 +192472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 187, + "problemId": "d1.3", + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3957, + "id": 9271, "result": { "type": "IOI", "score": [ - 25.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193185,18 +192493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 187, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4016, + "id": 9272, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193204,19 +192512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 187, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5664, + "id": 9273, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193224,35 +192532,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 187, + "problemId": "d1.3", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5959, + "id": 9274, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 187, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6893, + "id": 9275, "result": { "type": "IOI", "score": [ @@ -193265,38 +192577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 187, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9013, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 187, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10687, + "id": 9276, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193305,18 +192597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 187, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11158, + "id": 9277, "result": { "type": "IOI", "score": [ - 48.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193325,18 +192617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 187, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11270, + "id": 9278, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193344,19 +192636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 187, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11518, + "id": 9279, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193364,19 +192656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 187, + "problemId": "d1.1", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11683, + "id": 9280, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193384,19 +192676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 187, + "problemId": "d1.1", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11749, + "id": 9281, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193404,19 +192696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 187, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11957, + "id": 9282, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193425,18 +192717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 187, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12039, + "id": 9283, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193444,19 +192736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 187, + "problemId": "d1.2", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1060, + "id": 9284, "result": { "type": "IOI", "score": [ - 36.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193465,14 +192757,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 103, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1313, + "id": 9285, "result": { "type": "IOI", "score": [ @@ -193484,19 +192776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1333, + "id": 9286, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193504,19 +192796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1781, + "id": 9287, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193524,19 +192816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.3", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2291, + "id": 9288, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193544,19 +192836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2300, + "id": 9289, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193564,19 +192856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2339, + "id": 9290, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193584,19 +192876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4655, + "id": 9291, "result": { "type": "IOI", "score": [ - 31.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193604,19 +192896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 103, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4743, + "id": 9292, "result": { "type": "IOI", "score": [ - 47.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193625,38 +192917,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 103, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7427, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 103, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7458, + "id": 9293, "result": { "type": "IOI", "score": [ @@ -193669,18 +192937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7622, + "id": 9294, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193688,19 +192956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7654, + "id": 9295, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193708,19 +192976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.4", + "teamId": "144189", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7851, + "id": 9296, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193729,14 +192997,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8010, + "id": 9297, "result": { "type": "IOI", "score": [ @@ -193749,34 +193017,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8077, + "id": 9298, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8180, + "id": 9299, "result": { "type": "IOI", "score": [ @@ -193788,19 +193060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8289, + "id": 9300, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193808,19 +193080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8301, + "id": 9301, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193828,19 +193100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8359, + "id": 9302, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193849,14 +193121,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8525, + "id": 9303, "result": { "type": "IOI", "score": [ @@ -193868,19 +193140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8623, + "id": 9304, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193888,19 +193160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8710, + "id": 9305, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193909,14 +193181,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9282, + "id": 9306, "result": { "type": "IOI", "score": [ @@ -193929,18 +193201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9365, + "id": 9307, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193949,14 +193221,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9400, + "id": 9308, "result": { "type": "IOI", "score": [ @@ -193968,19 +193240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9432, + "id": 9309, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -193988,19 +193260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10073, + "id": 9310, "result": { "type": "IOI", "score": [ - 16.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194009,18 +193281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10130, + "id": 9311, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194028,19 +193300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10580, + "id": 9312, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194048,19 +193320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11702, + "id": 9313, "result": { "type": "IOI", "score": [ - 33.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194068,19 +193340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11765, + "id": 9314, "result": { "type": "IOI", "score": [ - 33.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194088,19 +193360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11870, + "id": 9315, "result": { "type": "IOI", "score": [ - 33.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194108,19 +193380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11904, + "id": 9316, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194128,19 +193400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 103, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11973, + "id": 9317, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194149,18 +193421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 103, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1069, + "id": 9318, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194169,14 +193441,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1123, + "id": 9319, "result": { "type": "IOI", "score": [ @@ -194188,19 +193460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1625, + "id": 9320, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194208,19 +193480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1688, + "id": 9321, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194228,19 +193500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.2", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1748, + "id": 9322, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194248,19 +193520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1787, + "id": 9323, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194268,15 +193540,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1882, + "id": 9324, "result": { "type": "IOI", "score": [ @@ -194293,18 +193565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1929, + "id": 9325, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194313,14 +193585,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1963, + "id": 9326, "result": { "type": "IOI", "score": [ @@ -194333,18 +193605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2056, + "id": 9327, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194352,19 +193624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2197, + "id": 9328, "result": { "type": "IOI", "score": [ - 32.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194372,19 +193644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.4", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2353, + "id": 9329, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194393,18 +193665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2560, + "id": 9330, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194413,18 +193685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2682, + "id": 9331, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194432,19 +193704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 234, + "problemId": "d1.1", + "teamId": "144430", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3030, + "id": 9332, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194453,78 +193725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 234, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3378, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 234, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3444, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 234, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3780, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 234, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5982, + "id": 9333, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194532,19 +193744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6052, + "id": 9334, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194552,19 +193764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6109, + "id": 9335, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194572,19 +193784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6296, + "id": 9336, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194592,19 +193804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144387", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7952, + "id": 9337, "result": { "type": "IOI", "score": [ - 23.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194613,18 +193825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 234, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8062, + "id": 9338, "result": { "type": "IOI", "score": [ - 38.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194633,18 +193845,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 234, + "teamId": "144081", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9528, + "id": 9339, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194653,18 +193865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 234, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10610, + "id": 9340, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194672,19 +193884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11676, + "id": 9341, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194692,19 +193904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11893, + "id": 9342, "result": { "type": "IOI", "score": [ - 22.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194712,15 +193924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 234, + "problemId": "d1.3", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12050, + "id": 9343, "result": { "type": "IOI", "score": [ @@ -194733,18 +193945,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 234, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1072, + "id": 9344, "result": { "type": "IOI", "score": [ - 35.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194752,19 +193964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1161, + "id": 9345, "result": { "type": "IOI", "score": [ - 35.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194772,19 +193984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1236, + "id": 9346, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194792,15 +194004,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1282, + "id": 9347, "result": { "type": "IOI", "score": [ @@ -194812,39 +194024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 304, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1773, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3060, + "id": 9348, "result": { "type": "IOI", "score": [ - 12.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194852,19 +194044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3519, + "id": 9349, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194872,15 +194064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3561, + "id": 9350, "result": { "type": "IOI", "score": [ @@ -194892,19 +194084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3612, + "id": 9351, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194912,19 +194104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3743, + "id": 9352, "result": { "type": "IOI", "score": [ - 31.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194932,19 +194124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 304, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3831, + "id": 9353, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -194953,14 +194145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 304, + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4267, + "id": 9354, "result": { "type": "IOI", "score": [ @@ -194972,15 +194164,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4749, + "id": 9355, "result": { "type": "IOI", "score": [ @@ -194992,19 +194184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4804, + "id": 9356, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195012,15 +194204,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.4", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4873, + "id": 9357, "result": { "type": "IOI", "score": [ @@ -195032,19 +194224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4930, + "id": 9358, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195053,18 +194245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4998, + "id": 9359, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195072,19 +194264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.2", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5157, + "id": 9360, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195093,14 +194285,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5187, + "id": 9361, "result": { "type": "IOI", "score": [ @@ -195112,19 +194304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5524, + "id": 9362, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195132,19 +194324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5761, + "id": 9363, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195152,15 +194344,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.4", + "teamId": "144326", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5923, + "id": 9364, "result": { "type": "IOI", "score": [ @@ -195173,14 +194365,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6013, + "id": 9365, "result": { "type": "IOI", "score": [ @@ -195193,18 +194385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6038, + "id": 9366, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195212,19 +194404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6056, + "id": 9367, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195232,15 +194424,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6082, + "id": 9368, "result": { "type": "IOI", "score": [ @@ -195253,18 +194445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6141, + "id": 9369, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195272,15 +194464,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6159, + "id": 9370, "result": { "type": "IOI", "score": [ @@ -195293,18 +194485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6225, + "id": 9371, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195312,19 +194504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6378, + "id": 9372, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195333,18 +194525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6542, + "id": 9373, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195352,19 +194544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.2", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6597, + "id": 9374, "result": { "type": "IOI", "score": [ - 0.0 + 53.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195372,19 +194564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6629, + "id": 9375, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195393,14 +194585,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7489, + "id": 9376, "result": { "type": "IOI", "score": [ @@ -195413,18 +194605,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7499, + "id": 9377, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195433,18 +194625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7853, + "id": 9378, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195452,19 +194644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7990, + "id": 9379, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195472,19 +194664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8182, + "id": 9380, "result": { "type": "IOI", "score": [ - 16.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195492,19 +194684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 304, + "problemId": "d1.4", + "teamId": "144083", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8206, + "id": 9381, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195513,14 +194705,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8217, + "id": 9382, "result": { "type": "IOI", "score": [ @@ -195533,14 +194725,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8368, + "id": 9383, "result": { "type": "IOI", "score": [ @@ -195553,58 +194745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 304, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9728, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 304, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10236, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 304, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10286, + "id": 9384, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195612,15 +194764,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 304, + "problemId": "d1.4", + "teamId": "144081", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10378, + "id": 9385, "result": { "type": "IOI", "score": [ @@ -195632,19 +194784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10531, + "id": 9386, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195652,19 +194804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 304, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10679, + "id": 9387, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195673,18 +194825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 304, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10869, + "id": 9388, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195692,15 +194844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 304, + "problemId": "d1.2", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11014, + "id": 9389, "result": { "type": "IOI", "score": [ @@ -195713,14 +194865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 304, + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11043, + "id": 9390, "result": { "type": "IOI", "score": [ @@ -195733,18 +194885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 304, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11263, + "id": 9391, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195753,18 +194905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 304, + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1095, + "id": 9392, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195772,15 +194924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 169, + "problemId": "d1.2", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3751, + "id": 9393, "result": { "type": "IOI", "score": [ @@ -195792,19 +194944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3775, + "id": 9394, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195812,15 +194964,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3810, + "id": 9395, "result": { "type": "IOI", "score": [ @@ -195832,19 +194984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3852, + "id": 9396, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195852,19 +195004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3879, + "id": 9397, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195872,19 +195024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3996, + "id": 9398, "result": { "type": "IOI", "score": [ - 37.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195892,19 +195044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4101, + "id": 9399, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195913,14 +195065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 169, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4216, + "id": 9400, "result": { "type": "IOI", "score": [ @@ -195932,19 +195084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4246, + "id": 9401, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -195953,14 +195105,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 169, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4295, + "id": 9402, "result": { "type": "IOI", "score": [ @@ -195972,39 +195124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4329, - "result": { - "type": "IOI", - "score": [ - 37.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4347, + "id": 9403, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196013,14 +195145,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 169, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4382, + "id": 9404, "result": { "type": "IOI", "score": [ @@ -196033,14 +195165,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 169, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4414, + "id": 9405, "result": { "type": "IOI", "score": [ @@ -196056,39 +195188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4437, - "result": { - "type": "IOI", - "score": [ - 37.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4478, + "id": 9406, "result": { "type": "IOI", "score": [ - 37.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196096,19 +195208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 169, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4539, + "id": 9407, "result": { "type": "IOI", "score": [ - 37.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196117,18 +195229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 169, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7249, + "id": 9408, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196137,18 +195249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 169, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7714, + "id": 9409, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196157,14 +195269,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 169, + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7732, + "id": 9410, "result": { "type": "IOI", "score": [ @@ -196176,59 +195288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9053, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 169, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10111, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10394, + "id": 9411, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196237,18 +195309,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 169, + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11068, + "id": 9412, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196256,19 +195328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.4", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11215, + "id": 9413, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196276,19 +195348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11488, + "id": 9414, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196296,19 +195368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11520, + "id": 9415, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196316,15 +195388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11668, + "id": 9416, "result": { "type": "IOI", "score": [ @@ -196337,18 +195409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 169, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11682, + "id": 9417, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196356,19 +195428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11794, + "id": 9418, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196376,19 +195448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11913, + "id": 9419, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196397,18 +195469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 169, + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11980, + "id": 9420, "result": { "type": "IOI", "score": [ - 31.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196416,19 +195488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12084, + "id": 9421, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196436,19 +195508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 169, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1096, + "id": 9422, "result": { "type": "IOI", "score": [ - 12.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196457,18 +195529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1190, + "id": 9423, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196476,19 +195548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2046, + "id": 9424, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196496,15 +195568,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2061, + "id": 9425, "result": { "type": "IOI", "score": [ @@ -196517,14 +195589,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2152, + "id": 9426, "result": { "type": "IOI", "score": [ @@ -196537,18 +195609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2202, + "id": 9427, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196557,18 +195629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2277, + "id": 9428, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196576,19 +195648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2319, + "id": 9429, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196597,18 +195669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2394, + "id": 9430, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196616,15 +195688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2444, + "id": 9431, "result": { "type": "IOI", "score": [ @@ -196636,15 +195708,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2538, + "id": 9432, "result": { "type": "IOI", "score": [ @@ -196657,58 +195729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2997, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 19, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3290, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 19, + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4047, + "id": 9433, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196717,14 +195749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 19, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4054, + "id": 9434, "result": { "type": "IOI", "score": [ @@ -196736,19 +195768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4901, + "id": 9435, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196756,19 +195788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5889, + "id": 9436, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196777,14 +195809,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6149, + "id": 9437, "result": { "type": "IOI", "score": [ @@ -196797,38 +195829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6388, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 19, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6396, + "id": 9438, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196836,19 +195848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7232, + "id": 9439, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196857,18 +195869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7304, + "id": 9440, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196876,19 +195888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7539, + "id": 9441, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196896,19 +195908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7743, + "id": 9442, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196916,19 +195928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7756, + "id": 9443, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196936,19 +195948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7801, + "id": 9444, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196956,15 +195968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7887, + "id": 9445, "result": { "type": "IOI", "score": [ @@ -196977,18 +195989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8106, + "id": 9446, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -196996,19 +196008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8234, + "id": 9447, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197017,18 +196029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8473, + "id": 9448, "result": { "type": "IOI", "score": [ - 16.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197037,18 +196049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9287, + "id": 9449, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197057,18 +196069,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 19, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9669, + "id": 9450, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197076,39 +196088,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10393, + "id": 9451, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10517, + "id": 9452, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197117,18 +196133,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10576, + "id": 9453, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197136,19 +196152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10626, + "id": 9454, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197156,19 +196172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10757, + "id": 9455, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197177,18 +196193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10923, + "id": 9456, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197197,18 +196213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11002, + "id": 9457, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197216,19 +196232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.2", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11090, + "id": 9458, "result": { "type": "IOI", "score": [ - 25.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197236,19 +196252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11259, + "id": 9459, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197256,19 +196272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11289, + "id": 9460, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197276,39 +196292,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11348, + "id": 9461, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11456, + "id": 9462, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197316,19 +196336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11513, + "id": 9463, "result": { "type": "IOI", "score": [ - 25.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197336,39 +196356,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11922, + "id": 9464, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 19, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11947, + "id": 9465, "result": { "type": "IOI", "score": [ - 25.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197377,18 +196401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11988, + "id": 9466, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197397,34 +196421,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 19, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1114, - "result": { - "type": "IOI", - "score": [ - 100.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 395, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1480, + "id": 9467, "result": { "type": "IOI", "score": [ @@ -197436,19 +196440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 395, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1519, + "id": 9468, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197457,18 +196461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1679, + "id": 9469, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197477,18 +196481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1856, + "id": 9470, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197496,19 +196500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 395, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1990, + "id": 9471, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197516,15 +196520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 395, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1997, + "id": 9472, "result": { "type": "IOI", "score": [ @@ -197537,14 +196541,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2088, + "id": 9473, "result": { "type": "IOI", "score": [ @@ -197557,18 +196561,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3589, + "id": 9474, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197576,15 +196580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 395, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4376, + "id": 9475, "result": { "type": "IOI", "score": [ @@ -197597,14 +196601,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4518, + "id": 9476, "result": { "type": "IOI", "score": [ @@ -197617,18 +196621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5145, + "id": 9477, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197637,18 +196641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 395, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7575, + "id": 9478, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197657,18 +196661,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 395, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7710, + "id": 9479, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197676,15 +196680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 395, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7948, + "id": 9480, "result": { "type": "IOI", "score": [ @@ -197697,18 +196701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 395, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8211, + "id": 9481, "result": { "type": "IOI", "score": [ - 12.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197716,19 +196720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 395, + "problemId": "d1.3", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8274, + "id": 9482, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197737,34 +196741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 395, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9056, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 395, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9133, + "id": 9483, "result": { "type": "IOI", "score": [ @@ -197777,14 +196761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9228, + "id": 9484, "result": { "type": "IOI", "score": [ @@ -197797,7 +196781,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197817,18 +196801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 395, + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11769, + "id": 9486, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197836,15 +196820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 395, + "problemId": "d1.2", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11839, + "id": 9487, "result": { "type": "IOI", "score": [ @@ -197856,19 +196840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 395, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1131, + "id": 9488, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197876,15 +196860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1158, + "id": 9489, "result": { "type": "IOI", "score": [ @@ -197897,14 +196881,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1186, + "id": 9490, "result": { "type": "IOI", "score": [ @@ -197916,15 +196900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1221, + "id": 9491, "result": { "type": "IOI", "score": [ @@ -197937,18 +196921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1225, + "id": 9492, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197956,15 +196940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1227, + "id": 9493, "result": { "type": "IOI", "score": [ @@ -197976,19 +196960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1269, + "id": 9494, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -197996,15 +196980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1286, + "id": 9495, "result": { "type": "IOI", "score": [ @@ -198017,18 +197001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1337, + "id": 9496, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198036,19 +197020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1351, + "id": 9497, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198057,18 +197041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1397, + "id": 9498, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198076,19 +197060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1404, + "id": 9499, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198096,19 +197080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1407, + "id": 9500, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198116,19 +197100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1514, + "id": 9501, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198137,14 +197121,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1549, + "id": 9502, "result": { "type": "IOI", "score": [ @@ -198156,39 +197140,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1677, + "id": 9503, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1699, + "id": 9504, "result": { "type": "IOI", "score": [ @@ -198200,19 +197180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1738, + "id": 9505, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198221,18 +197201,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1754, + "id": 9506, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198241,18 +197221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1767, + "id": 9507, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198261,14 +197241,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1916, + "id": 9508, "result": { "type": "IOI", "score": [ @@ -198280,15 +197260,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1951, + "id": 9509, "result": { "type": "IOI", "score": [ @@ -198300,15 +197280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1999, + "id": 9510, "result": { "type": "IOI", "score": [ @@ -198320,15 +197300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2045, + "id": 9511, "result": { "type": "IOI", "score": [ @@ -198341,18 +197321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2092, + "id": 9512, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198360,19 +197340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2120, + "id": 9513, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198380,15 +197360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2126, + "id": 9514, "result": { "type": "IOI", "score": [ @@ -198404,19 +197384,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2147, + "id": 9515, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198425,18 +197405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2168, + "id": 9516, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198445,18 +197425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2194, + "id": 9517, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198465,18 +197445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2209, + "id": 9518, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198485,18 +197465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2299, + "id": 9519, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198504,19 +197484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2374, + "id": 9520, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198525,18 +197505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2409, + "id": 9521, "result": { "type": "IOI", "score": [ - 35.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198544,19 +197524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2459, + "id": 9522, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198564,19 +197544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2464, + "id": 9523, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198585,18 +197565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2468, + "id": 9524, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198604,19 +197584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144295", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2472, + "id": 9525, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198624,19 +197604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2501, + "id": 9526, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198644,19 +197624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2536, + "id": 9527, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198664,15 +197644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3055, + "id": 9528, "result": { "type": "IOI", "score": [ @@ -198684,19 +197664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3285, + "id": 9529, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198704,19 +197684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3309, + "id": 9530, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198724,19 +197704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3623, + "id": 9531, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198744,19 +197724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3782, + "id": 9532, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198764,19 +197744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4907, + "id": 9533, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198784,19 +197764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5120, + "id": 9534, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198804,19 +197784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5146, + "id": 9535, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198824,15 +197804,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7537, + "id": 9536, "result": { "type": "IOI", "score": [ @@ -198844,19 +197824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7805, + "id": 9537, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198865,34 +197845,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 17, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7852, + "id": 9538, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7921, + "id": 9539, "result": { "type": "IOI", "score": [ @@ -198904,19 +197888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7975, + "id": 9540, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198924,15 +197908,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8191, + "id": 9541, "result": { "type": "IOI", "score": [ @@ -198948,19 +197932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8192, + "id": 9542, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -198968,15 +197952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8395, + "id": 9543, "result": { "type": "IOI", "score": [ @@ -198988,19 +197972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8512, + "id": 9544, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199008,19 +197992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8548, + "id": 9545, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199028,19 +198012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8644, + "id": 9546, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199048,19 +198032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8756, + "id": 9547, "result": { "type": "IOI", "score": [ - 17.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199069,18 +198053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 17, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9089, + "id": 9548, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199089,18 +198073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 17, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9340, + "id": 9549, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199109,18 +198093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 17, + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9642, + "id": 9550, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199128,19 +198112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9852, + "id": 9551, "result": { "type": "IOI", "score": [ - 48.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199148,19 +198132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11209, + "id": 9552, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199169,18 +198153,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11218, + "id": 9553, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199188,19 +198172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11387, + "id": 9554, "result": { "type": "IOI", "score": [ - 10.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199208,19 +198192,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11399, + "id": 9555, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199228,19 +198212,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144329", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11423, + "id": 9556, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199248,19 +198232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11504, + "id": 9557, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199269,18 +198253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11530, + "id": 9558, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199289,18 +198273,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11538, + "id": 9559, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199308,19 +198292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11567, + "id": 9560, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199329,18 +198313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11624, + "id": 9561, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199348,19 +198332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11633, + "id": 9562, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199368,19 +198352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11665, + "id": 9563, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199389,18 +198373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 17, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11756, + "id": 9564, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199408,19 +198392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11774, + "id": 9565, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199428,19 +198412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11800, + "id": 9566, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199448,19 +198432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.4", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11916, + "id": 9567, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199468,19 +198452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 17, + "problemId": "d1.2", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1145, + "id": 9568, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199488,19 +198472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 211, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1232, + "id": 9569, "result": { "type": "IOI", "score": [ - 23.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199509,14 +198493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 211, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1358, + "id": 9570, "result": { "type": "IOI", "score": [ @@ -199529,14 +198513,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 211, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1148, + "id": 9571, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144184", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9572, "result": { "type": "IOI", "score": [ @@ -199549,18 +198553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 419, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1388, + "id": 9573, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199568,19 +198572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1470, + "id": 9574, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199589,18 +198593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 419, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2373, + "id": 9575, "result": { "type": "IOI", "score": [ - 21.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199609,18 +198613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 419, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2856, + "id": 9576, "result": { "type": "IOI", "score": [ - 21.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199628,19 +198632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2897, + "id": 9577, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199648,19 +198652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.2", + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3129, + "id": 9578, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199668,19 +198672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3220, + "id": 9579, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199688,19 +198692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3489, + "id": 9580, "result": { "type": "IOI", "score": [ - 21.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199708,19 +198712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3721, + "id": 9581, "result": { "type": "IOI", "score": [ - 21.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199728,19 +198732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3990, + "id": 9582, "result": { "type": "IOI", "score": [ - 21.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199748,19 +198752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4517, + "id": 9583, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199768,19 +198772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4585, + "id": 9584, "result": { "type": "IOI", "score": [ - 34.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199788,19 +198792,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4866, + "id": 9585, "result": { "type": "IOI", "score": [ - 100.0 + 33.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144091", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9586, + "result": { + "type": "IOI", + "score": [ + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199809,14 +198833,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 419, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6322, + "id": 9587, "result": { "type": "IOI", "score": [ @@ -199828,15 +198852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7159, + "id": 9588, "result": { "type": "IOI", "score": [ @@ -199849,18 +198873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7568, + "id": 9589, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199868,15 +198892,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7614, + "id": 9590, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144338", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9591, "result": { "type": "IOI", "score": [ @@ -199888,15 +198932,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144372", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9592, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7634, + "id": 9593, "result": { "type": "IOI", "score": [ @@ -199908,15 +198972,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7708, + "id": 9594, "result": { "type": "IOI", "score": [ @@ -199928,15 +198992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7751, + "id": 9595, "result": { "type": "IOI", "score": [ @@ -199949,18 +199013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7837, + "id": 9596, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -199969,14 +199033,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8024, + "id": 9597, "result": { "type": "IOI", "score": [ @@ -199988,19 +199052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8082, + "id": 9598, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200009,18 +199073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8143, + "id": 9599, "result": { "type": "IOI", "score": [ - 37.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200029,14 +199093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8195, + "id": 9600, "result": { "type": "IOI", "score": [ @@ -200049,14 +199113,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 419, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8519, + "id": 9601, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144236", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9602, "result": { "type": "IOI", "score": [ @@ -200068,15 +199152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 419, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9454, + "id": 9603, "result": { "type": "IOI", "score": [ @@ -200089,18 +199173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 419, + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9780, + "id": 9604, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200108,15 +199192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10328, + "id": 9605, "result": { "type": "IOI", "score": [ @@ -200129,18 +199213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 419, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10489, + "id": 9606, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200148,19 +199232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.4", + "teamId": "144447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10722, + "id": 9607, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200168,19 +199252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10971, + "id": 9608, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200188,15 +199272,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11025, + "id": 9609, "result": { "type": "IOI", "score": [ @@ -200208,19 +199292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11199, + "id": 9610, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200228,15 +199312,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11561, + "id": 9611, + "result": { + "type": "IOI", + "score": [ + 36.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144501", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9612, "result": { "type": "IOI", "score": [ @@ -200248,19 +199352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 419, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1154, + "id": 9613, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200268,19 +199372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1319, + "id": 9614, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200288,19 +199392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1437, + "id": 9615, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200308,19 +199412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 279, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2165, + "id": 9616, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200329,14 +199433,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 279, + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2451, + "id": 9617, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144515", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9618, "result": { "type": "IOI", "score": [ @@ -200348,15 +199472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 279, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2688, + "id": 9619, "result": { "type": "IOI", "score": [ @@ -200369,14 +199493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 279, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2782, + "id": 9620, "result": { "type": "IOI", "score": [ @@ -200389,18 +199513,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 279, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3483, + "id": 9621, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144070", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9622, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200409,18 +199557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 279, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4318, + "id": 9623, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200428,19 +199576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 279, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6257, + "id": 9624, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200448,19 +199596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7053, + "id": 9625, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200469,18 +199617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 279, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7334, + "id": 9626, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200488,15 +199636,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7580, + "id": 9627, "result": { "type": "IOI", "score": [ @@ -200509,18 +199657,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 279, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9651, + "id": 9628, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200528,19 +199676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 279, + "problemId": "d1.3", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9850, + "id": 9629, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200549,14 +199697,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 279, + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9993, + "id": 9630, "result": { "type": "IOI", "score": [ @@ -200569,18 +199717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 279, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10022, + "id": 9631, "result": { "type": "IOI", "score": [ - 37.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200588,15 +199736,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 279, + "problemId": "d1.4", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10338, + "id": 9632, "result": { "type": "IOI", "score": [ @@ -200608,19 +199756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 279, + "problemId": "d1.2", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10584, + "id": 9633, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200628,19 +199776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 279, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10612, + "id": 9634, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200648,19 +199796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 279, + "problemId": "d1.2", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11094, + "id": 9635, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200668,19 +199816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11931, + "id": 9636, "result": { "type": "IOI", "score": [ - 48.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200688,19 +199836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 279, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1159, + "id": 9637, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200709,14 +199857,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2193, + "id": 9638, "result": { "type": "IOI", "score": [ @@ -200728,15 +199876,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2222, + "id": 9639, "result": { "type": "IOI", "score": [ @@ -200749,18 +199897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3687, + "id": 9640, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200768,19 +199916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4002, + "id": 9641, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200789,18 +199937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4194, + "id": 9642, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200809,18 +199957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4379, + "id": 9643, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200828,19 +199976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4419, + "id": 9644, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200848,19 +199996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4588, + "id": 9645, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200868,19 +200016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4629, + "id": 9646, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200889,18 +200037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4823, + "id": 9647, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200908,15 +200056,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4949, + "id": 9648, "result": { "type": "IOI", "score": [ @@ -200928,15 +200076,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5042, + "id": 9649, "result": { "type": "IOI", "score": [ @@ -200949,18 +200097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5075, + "id": 9650, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -200968,39 +200116,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5212, + "id": 9651, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5233, + "id": 9652, "result": { "type": "IOI", "score": [ @@ -201012,15 +200156,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5320, + "id": 9653, "result": { "type": "IOI", "score": [ @@ -201032,19 +200176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5502, + "id": 9654, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201052,15 +200196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5535, + "id": 9655, "result": { "type": "IOI", "score": [ @@ -201072,43 +200216,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5604, + "id": 9656, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.4", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5627, + "id": 9657, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201116,19 +200256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5688, + "id": 9658, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201136,19 +200276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5745, + "id": 9659, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201157,18 +200297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5891, + "id": 9660, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201177,18 +200317,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5962, + "id": 9661, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201197,18 +200337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6030, + "id": 9662, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201217,18 +200357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6063, + "id": 9663, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201237,18 +200377,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6258, + "id": 9664, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201256,19 +200396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6392, + "id": 9665, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201276,15 +200416,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6820, + "id": 9666, "result": { "type": "IOI", "score": [ @@ -201296,19 +200436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144263", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6891, + "id": 9667, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201317,18 +200457,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6969, + "id": 9668, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201336,19 +200476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7021, + "id": 9669, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201357,14 +200497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7061, + "id": 9670, "result": { "type": "IOI", "score": [ @@ -201377,18 +200517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7126, + "id": 9671, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201396,19 +200536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7236, + "id": 9672, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201416,43 +200556,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7321, + "id": 9673, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7347, + "id": 9674, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201460,19 +200596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7582, + "id": 9675, "result": { "type": "IOI", "score": [ - 10.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201480,15 +200616,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7641, + "id": 9676, "result": { "type": "IOI", "score": [ @@ -201501,18 +200637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7673, + "id": 9677, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201520,19 +200656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7693, + "id": 9678, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201540,19 +200676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7798, + "id": 9679, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201561,18 +200697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 38, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7829, + "id": 9680, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201580,19 +200716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 38, + "problemId": "d1.2", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8083, + "id": 9681, "result": { "type": "IOI", "score": [ - 33.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201600,19 +200736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.4", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8276, + "id": 9682, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201620,15 +200756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8292, + "id": 9683, "result": { "type": "IOI", "score": [ @@ -201641,18 +200777,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8705, + "id": 9684, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201660,19 +200796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9191, + "id": 9685, "result": { "type": "IOI", "score": [ - 33.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201680,19 +200816,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9291, + "id": 9686, "result": { "type": "IOI", "score": [ - 33.0 + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144165", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9687, + "result": { + "type": "IOI", + "score": [ + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201701,18 +200857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9345, + "id": 9688, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201721,18 +200877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9750, + "id": 9689, "result": { "type": "IOI", "score": [ - 33.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201741,18 +200897,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9948, + "id": 9690, "result": { "type": "IOI", "score": [ - 33.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201761,18 +200917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10028, + "id": 9691, "result": { "type": "IOI", "score": [ - 33.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201781,14 +200937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10163, + "id": 9692, "result": { "type": "IOI", "score": [ @@ -201801,18 +200957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 38, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10842, + "id": 9693, "result": { "type": "IOI", "score": [ - 23.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201820,15 +200976,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10965, + "id": 9694, "result": { "type": "IOI", "score": [ @@ -201841,42 +200997,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 38, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11631, + "id": 9695, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.3", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11687, + "id": 9696, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201884,19 +201036,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11728, + "id": 9697, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201904,43 +201056,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 38, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12100, + "id": 9698, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144358", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9699, + "result": { + "type": "IOI", + "score": [ + 100.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 38, + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1172, + "id": 9700, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201949,14 +201117,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 178, + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1215, + "id": 9701, "result": { "type": "IOI", "score": [ @@ -201969,18 +201137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 178, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1280, + "id": 9702, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -201988,19 +201156,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1354, + "id": 9703, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9704, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202009,14 +201197,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 178, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1359, + "id": 9705, "result": { "type": "IOI", "score": [ @@ -202028,19 +201216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1380, + "id": 9706, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202049,18 +201237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 178, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3238, + "id": 9707, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202068,19 +201256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4146, + "id": 9708, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202088,19 +201276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4351, + "id": 9709, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202108,15 +201296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4631, + "id": 9710, "result": { "type": "IOI", "score": [ @@ -202128,19 +201316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.2", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4713, + "id": 9711, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202148,19 +201336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4869, + "id": 9712, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202168,19 +201356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4957, + "id": 9713, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202189,14 +201377,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5184, + "id": 9714, "result": { "type": "IOI", "score": [ @@ -202213,18 +201401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5198, + "id": 9715, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202232,19 +201420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5244, + "id": 9716, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202252,19 +201440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5274, + "id": 9717, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202272,19 +201460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5368, + "id": 9718, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202293,18 +201481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5428, + "id": 9719, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202312,19 +201500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.2", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5472, + "id": 9720, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202333,18 +201521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5493, + "id": 9721, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202352,19 +201540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5602, + "id": 9722, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202372,19 +201560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5633, + "id": 9723, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202392,19 +201580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144083", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5682, + "id": 9724, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202413,18 +201601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5932, + "id": 9725, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202433,18 +201621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5964, + "id": 9726, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202452,19 +201640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6039, + "id": 9727, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202472,19 +201660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6090, + "id": 9728, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202492,19 +201680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6362, + "id": 9729, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202513,14 +201701,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6384, + "id": 9730, "result": { "type": "IOI", "score": [ @@ -202533,18 +201721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 178, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6638, + "id": 9731, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202552,19 +201740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7430, + "id": 9732, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202572,19 +201760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8055, + "id": 9733, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202592,19 +201780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8108, + "id": 9734, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202612,19 +201800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8132, + "id": 9735, "result": { "type": "IOI", "score": [ - 35.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202632,19 +201820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8153, + "id": 9736, "result": { "type": "IOI", "score": [ - 50.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202652,19 +201840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8269, + "id": 9737, "result": { "type": "IOI", "score": [ - 63.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202672,19 +201860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9955, + "id": 9738, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202692,19 +201880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9967, + "id": 9739, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202712,19 +201900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10181, + "id": 9740, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202732,19 +201920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10188, + "id": 9741, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202752,43 +201940,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10228, + "id": 9742, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10279, + "id": 9743, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202796,43 +201980,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10297, + "id": 9744, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10346, + "id": 9745, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202840,91 +202020,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10704, + "id": 9746, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10736, + "id": 9747, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 178, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10776, + "id": 9748, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10795, + "id": 9749, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202932,43 +202100,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10968, + "id": 9750, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11016, + "id": 9751, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202976,19 +202140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 178, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11517, + "id": 9752, "result": { "type": "IOI", "score": [ - 63.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -202996,19 +202160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11560, + "id": 9753, "result": { "type": "IOI", "score": [ - 14.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203016,19 +202180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11590, + "id": 9754, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203036,19 +202200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11629, + "id": 9755, "result": { "type": "IOI", "score": [ - 14.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203056,67 +202220,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11811, + "id": 9756, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11838, + "id": 9757, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11891, + "id": 9758, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203124,19 +202280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 178, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11994, + "id": 9759, "result": { "type": "IOI", "score": [ - 63.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203145,66 +202301,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 178, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1195, + "id": 9760, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 407, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1212, + "id": 9761, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 407, + "problemId": "d1.3", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1233, + "id": 9762, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203212,43 +202360,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 407, + "problemId": "d1.1", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7726, + "id": 9763, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 407, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7749, + "id": 9764, "result": { "type": "IOI", "score": [ - 47.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203256,43 +202400,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 407, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8796, + "id": 9765, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 407, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8803, + "id": 9766, "result": { "type": "IOI", "score": [ - 12.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203300,19 +202440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 407, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10433, + "id": 9767, "result": { "type": "IOI", "score": [ - 83.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203320,19 +202460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 407, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10659, + "id": 9768, "result": { "type": "IOI", "score": [ - 83.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203341,14 +202481,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 407, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11324, + "id": 9769, "result": { "type": "IOI", "score": [ @@ -203360,19 +202500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 407, + "problemId": "d1.4", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11979, + "id": 9770, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203381,18 +202521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 407, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1204, + "id": 9771, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203400,19 +202540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1253, + "id": 9772, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203420,19 +202560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144258", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1650, + "id": 9773, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203440,19 +202580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1743, + "id": 9774, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203460,19 +202600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1922, + "id": 9775, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203481,14 +202621,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 14, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1979, + "id": 9776, "result": { "type": "IOI", "score": [ @@ -203501,18 +202641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 14, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2285, + "id": 9777, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203520,15 +202660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2328, + "id": 9778, "result": { "type": "IOI", "score": [ @@ -203540,19 +202680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3381, + "id": 9779, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203560,19 +202700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3759, + "id": 9780, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203581,18 +202721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 14, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3967, + "id": 9781, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203600,15 +202740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4207, + "id": 9782, "result": { "type": "IOI", "score": [ @@ -203621,14 +202761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 14, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4255, + "id": 9783, "result": { "type": "IOI", "score": [ @@ -203641,18 +202781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 14, + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5693, + "id": 9784, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203660,19 +202800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6034, + "id": 9785, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203680,39 +202820,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6053, + "id": 9786, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6205, + "id": 9787, "result": { "type": "IOI", "score": [ - 0.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203721,18 +202865,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 14, + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6313, + "id": 9788, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203740,19 +202884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6515, + "id": 9789, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203761,14 +202905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 14, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6637, + "id": 9790, "result": { "type": "IOI", "score": [ @@ -203780,15 +202924,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7197, + "id": 9791, "result": { "type": "IOI", "score": [ @@ -203800,19 +202944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7544, + "id": 9792, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203820,19 +202964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.4", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7878, + "id": 9793, "result": { "type": "IOI", "score": [ - 0.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203840,15 +202984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8309, + "id": 9794, "result": { "type": "IOI", "score": [ @@ -203860,19 +203004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8703, + "id": 9795, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203880,15 +203024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9442, + "id": 9796, "result": { "type": "IOI", "score": [ @@ -203900,19 +203044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.2", + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9652, + "id": 9797, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203920,19 +203064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 14, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10294, + "id": 9798, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -203940,15 +203084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10636, + "id": 9799, "result": { "type": "IOI", "score": [ @@ -203960,15 +203104,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11156, + "id": 9800, "result": { "type": "IOI", "score": [ @@ -203980,19 +203124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11602, + "id": 9801, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204000,19 +203144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 14, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1210, + "id": 9802, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204020,19 +203164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1557, + "id": 9803, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204040,19 +203184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1607, + "id": 9804, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204061,38 +203205,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 367, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1778, + "id": 9805, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 367, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1955, + "id": 9806, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204100,19 +203248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2311, + "id": 9807, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204120,19 +203268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2903, + "id": 9808, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204141,18 +203289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 367, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3198, + "id": 9809, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204160,19 +203308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3253, + "id": 9810, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204180,19 +203328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3720, + "id": 9811, "result": { "type": "IOI", "score": [ - 23.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204200,19 +203348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6498, + "id": 9812, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204221,18 +203369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 367, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7646, + "id": 9813, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204240,39 +203388,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7688, + "id": 9814, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7895, + "id": 9815, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204280,15 +203432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8011, + "id": 9816, "result": { "type": "IOI", "score": [ @@ -204300,19 +203452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8371, + "id": 9817, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204320,19 +203472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8713, + "id": 9818, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204340,19 +203492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10831, + "id": 9819, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204360,19 +203512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 367, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11183, + "id": 9820, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204381,18 +203533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 367, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1242, + "id": 9821, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204401,18 +203553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 356, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2862, + "id": 9822, "result": { "type": "IOI", "score": [ - 14.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204420,15 +203572,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 356, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3039, + "id": 9823, "result": { "type": "IOI", "score": [ @@ -204440,19 +203592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 356, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3058, + "id": 9824, "result": { "type": "IOI", "score": [ - 0.0 + 61.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204460,19 +203612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 356, + "problemId": "d1.4", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3207, + "id": 9825, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204480,15 +203632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 356, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3521, + "id": 9826, "result": { "type": "IOI", "score": [ @@ -204500,19 +203652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 356, + "problemId": "d1.3", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7692, + "id": 9827, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204520,19 +203672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 356, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8984, + "id": 9828, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204541,14 +203693,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 356, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1245, + "id": 9829, "result": { "type": "IOI", "score": [ @@ -204560,19 +203712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1372, + "id": 9830, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204581,18 +203733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 60, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1575, + "id": 9831, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204600,19 +203752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1704, + "id": 9832, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204620,39 +203772,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2212, + "id": 9833, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 60, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2653, + "id": 9834, "result": { "type": "IOI", "score": [ - 27.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204660,19 +203816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144219", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2730, + "id": 9835, "result": { "type": "IOI", "score": [ - 24.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204681,18 +203837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 60, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2743, + "id": 9836, "result": { "type": "IOI", "score": [ - 38.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204700,19 +203856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2795, + "id": 9837, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204720,19 +203876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2841, + "id": 9838, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204740,19 +203896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2965, + "id": 9839, "result": { "type": "IOI", "score": [ - 24.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204760,19 +203916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3046, + "id": 9840, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204781,18 +203937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 60, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3091, + "id": 9841, "result": { "type": "IOI", "score": [ - 63.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204800,19 +203956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3145, + "id": 9842, "result": { "type": "IOI", "score": [ - 63.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204820,19 +203976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3196, + "id": 9843, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204840,19 +203996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3228, + "id": 9844, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204860,19 +204016,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3275, + "id": 9845, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204881,18 +204037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 60, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3625, + "id": 9846, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204900,19 +204056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6994, + "id": 9847, "result": { "type": "IOI", "score": [ - 35.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204920,19 +204076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7098, + "id": 9848, "result": { "type": "IOI", "score": [ - 46.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204940,19 +204096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7167, + "id": 9849, "result": { "type": "IOI", "score": [ - 46.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204960,19 +204116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 60, + "problemId": "d1.4", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7440, + "id": 9850, "result": { "type": "IOI", "score": [ - 46.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -204981,42 +204137,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 60, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7652, + "id": 9851, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 60, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7662, + "id": 9852, "result": { "type": "IOI", "score": [ - 46.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205024,19 +204176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 60, + "problemId": "d1.3", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7958, + "id": 9853, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205045,34 +204197,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 60, + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10674, + "id": 9854, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 60, + "problemId": "d1.4", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11023, + "id": 9855, "result": { "type": "IOI", "score": [ @@ -205084,19 +204240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11069, + "id": 9856, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205104,19 +204260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11103, + "id": 9857, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205124,15 +204280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 60, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11847, + "id": 9858, "result": { "type": "IOI", "score": [ @@ -205145,18 +204301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 60, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1249, + "id": 9859, "result": { "type": "IOI", "score": [ - 21.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205164,19 +204320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1254, + "id": 9860, "result": { "type": "IOI", "score": [ - 100.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205184,19 +204340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2091, + "id": 9861, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205204,43 +204360,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2584, + "id": 9862, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2615, + "id": 9863, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205249,14 +204401,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2621, + "id": 9864, "result": { "type": "IOI", "score": [ @@ -205269,18 +204421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2704, + "id": 9865, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205288,19 +204440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2709, + "id": 9866, "result": { "type": "IOI", "score": [ - 10.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205308,19 +204460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2756, + "id": 9867, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205328,19 +204480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2803, + "id": 9868, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205348,19 +204500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3027, + "id": 9869, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205369,18 +204521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3124, + "id": 9870, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205388,19 +204540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3219, + "id": 9871, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205408,19 +204560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3559, + "id": 9872, "result": { "type": "IOI", "score": [ - 17.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205429,18 +204581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3639, + "id": 9873, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205448,19 +204600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3707, + "id": 9874, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205468,19 +204620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3867, + "id": 9875, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205488,15 +204640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3889, + "id": 9876, "result": { "type": "IOI", "score": [ @@ -205508,19 +204660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5869, + "id": 9877, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205528,15 +204680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6008, + "id": 9878, "result": { "type": "IOI", "score": [ @@ -205549,18 +204701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 308, + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6786, + "id": 9879, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205569,14 +204721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6917, + "id": 9880, "result": { "type": "IOI", "score": [ @@ -205589,18 +204741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7074, + "id": 9881, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205609,14 +204761,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7311, + "id": 9882, "result": { "type": "IOI", "score": [ @@ -205628,19 +204780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7363, + "id": 9883, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205649,18 +204801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7426, + "id": 9884, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205668,19 +204820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7517, + "id": 9885, "result": { "type": "IOI", "score": [ - 32.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205689,18 +204841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144170", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7661, + "id": 9886, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205709,18 +204861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7748, + "id": 9887, "result": { "type": "IOI", "score": [ - 32.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205728,19 +204880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7794, + "id": 9888, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205748,19 +204900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 308, + "problemId": "d1.1", + "teamId": "144376", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7893, + "id": 9889, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205769,18 +204921,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8385, + "id": 9890, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205789,18 +204941,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8427, + "id": 9891, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205808,19 +204960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8599, + "id": 9892, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205828,19 +204980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8667, + "id": 9893, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205848,19 +205000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8763, + "id": 9894, "result": { "type": "IOI", "score": [ - 35.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205869,18 +205021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8909, + "id": 9895, "result": { "type": "IOI", "score": [ - 35.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205888,19 +205040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8960, + "id": 9896, "result": { "type": "IOI", "score": [ - 35.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205908,19 +205060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144480", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9064, + "id": 9897, "result": { "type": "IOI", "score": [ - 35.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205929,18 +205081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9132, + "id": 9898, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205948,19 +205100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.4", + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9251, + "id": 9899, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205969,18 +205121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144261", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9362, + "id": 9900, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -205988,19 +205140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144358", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9505, + "id": 9901, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206008,19 +205160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9552, + "id": 9902, "result": { "type": "IOI", "score": [ - 35.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206029,18 +205181,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9592, + "id": 9903, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206048,19 +205200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9685, + "id": 9904, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206069,18 +205221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9712, + "id": 9905, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206088,19 +205240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9740, + "id": 9906, "result": { "type": "IOI", "score": [ - 57.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206108,19 +205260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9781, + "id": 9907, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206129,18 +205281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10484, + "id": 9908, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206149,14 +205301,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10614, + "id": 9909, "result": { "type": "IOI", "score": [ @@ -206169,18 +205321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 308, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11007, + "id": 9910, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206189,18 +205341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 308, + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11220, + "id": 9911, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206208,19 +205360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 308, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1255, + "id": 9912, "result": { "type": "IOI", "score": [ - 48.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206228,19 +205380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 325, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1375, + "id": 9913, "result": { "type": "IOI", "score": [ - 100.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206248,15 +205400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 325, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3159, + "id": 9914, "result": { "type": "IOI", "score": [ @@ -206268,19 +205420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 325, + "problemId": "d1.3", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3188, + "id": 9915, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206288,19 +205440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 325, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3749, + "id": 9916, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206308,19 +205460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 325, + "problemId": "d1.4", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3770, + "id": 9917, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206329,18 +205481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 325, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6776, + "id": 9918, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206349,18 +205501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 325, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6818, + "id": 9919, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206368,19 +205520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 325, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6874, + "id": 9920, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206388,19 +205540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 325, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7029, + "id": 9921, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206408,19 +205560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 325, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7203, + "id": 9922, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206429,18 +205581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 325, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7345, + "id": 9923, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206449,18 +205601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 325, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7411, + "id": 9924, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206468,19 +205620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 325, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10439, + "id": 9925, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206488,15 +205640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 325, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10585, + "id": 9926, "result": { "type": "IOI", "score": [ @@ -206509,14 +205661,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 325, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11017, + "id": 9927, "result": { "type": "IOI", "score": [ @@ -206529,18 +205681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 325, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11770, + "id": 9928, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206549,18 +205701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 325, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1261, + "id": 9929, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206568,19 +205720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3999, + "id": 9930, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206589,14 +205741,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 393, + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4144, + "id": 9931, "result": { "type": "IOI", "score": [ @@ -206608,19 +205760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4265, + "id": 9932, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206628,19 +205780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144159", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4374, + "id": 9933, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206649,18 +205801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 393, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4579, + "id": 9934, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206669,18 +205821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 393, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4627, + "id": 9935, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206688,19 +205840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4664, + "id": 9936, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206708,19 +205860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4675, + "id": 9937, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206728,19 +205880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.4", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4705, + "id": 9938, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206748,19 +205900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4859, + "id": 9939, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206768,19 +205920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4865, + "id": 9940, "result": { "type": "IOI", "score": [ - 47.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206788,19 +205940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.4", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4894, + "id": 9941, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206808,15 +205960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.4", + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8521, + "id": 9942, "result": { "type": "IOI", "score": [ @@ -206828,19 +205980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8613, + "id": 9943, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206848,19 +206000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8688, + "id": 9944, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206868,19 +206020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8760, + "id": 9945, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206888,15 +206040,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.4", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8799, + "id": 9946, "result": { "type": "IOI", "score": [ @@ -206912,19 +206064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8809, + "id": 9947, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206932,19 +206084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8956, + "id": 9948, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206952,19 +206104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8980, + "id": 9949, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206972,19 +206124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9180, + "id": 9950, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -206992,19 +206144,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9213, + "id": 9951, "result": { "type": "IOI", "score": [ - 10.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207012,19 +206164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9394, + "id": 9952, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207032,19 +206184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9409, + "id": 9953, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207052,19 +206204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9522, + "id": 9954, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207072,19 +206224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 393, + "problemId": "d1.3", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9719, + "id": 9955, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207093,18 +206245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 393, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10525, + "id": 9956, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207113,18 +206265,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 393, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10684, + "id": 9957, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207132,19 +206284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11001, + "id": 9958, "result": { "type": "IOI", "score": [ - 32.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207152,19 +206304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 393, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11503, + "id": 9959, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207173,18 +206325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 393, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12087, + "id": 9960, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207193,18 +206345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 393, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1267, + "id": 9961, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207213,14 +206365,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 92, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1287, + "id": 9962, "result": { "type": "IOI", "score": [ @@ -207233,18 +206385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 92, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1441, + "id": 9963, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207252,19 +206404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144421", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1517, + "id": 9964, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207273,18 +206425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 92, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1541, + "id": 9965, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207292,19 +206444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1550, + "id": 9966, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207312,43 +206464,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1603, + "id": 9967, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 92, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1611, + "id": 9968, "result": { "type": "IOI", "score": [ - 47.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207356,19 +206504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1659, + "id": 9969, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207376,19 +206524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2613, + "id": 9970, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207397,18 +206545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 92, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2799, + "id": 9971, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207416,19 +206564,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3388, + "id": 9972, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207436,19 +206584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3760, + "id": 9973, "result": { "type": "IOI", "score": [ - 27.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207456,19 +206604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4036, + "id": 9974, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207476,19 +206624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4081, + "id": 9975, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207496,19 +206644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4359, + "id": 9976, "result": { "type": "IOI", "score": [ - 40.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207516,19 +206664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4394, + "id": 9977, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207536,19 +206684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5379, + "id": 9978, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207556,15 +206704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5906, + "id": 9979, "result": { "type": "IOI", "score": [ @@ -207577,18 +206725,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6033, + "id": 9980, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207596,15 +206744,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6336, + "id": 9981, "result": { "type": "IOI", "score": [ @@ -207616,19 +206764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6358, + "id": 9982, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207636,19 +206784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6375, + "id": 9983, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207656,19 +206804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6383, + "id": 9984, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207677,14 +206825,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6398, + "id": 9985, "result": { "type": "IOI", "score": [ @@ -207697,14 +206845,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6447, + "id": 9986, "result": { "type": "IOI", "score": [ @@ -207716,15 +206864,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6466, + "id": 9987, "result": { "type": "IOI", "score": [ @@ -207737,18 +206885,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6531, + "id": 9988, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207756,19 +206904,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6589, + "id": 9989, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207776,19 +206924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6619, + "id": 9990, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207796,15 +206944,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144425", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6648, + "id": 9991, "result": { "type": "IOI", "score": [ @@ -207816,19 +206964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6690, + "id": 9992, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207837,14 +206985,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6730, + "id": 9993, "result": { "type": "IOI", "score": [ @@ -207856,15 +207004,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144349", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9994, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6840, + "id": 9995, + "result": { + "type": "IOI", + "score": [ + 37.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144233", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 9996, "result": { "type": "IOI", "score": [ @@ -207876,15 +207064,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7065, + "id": 9997, "result": { "type": "IOI", "score": [ @@ -207901,18 +207089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7088, + "id": 9998, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207920,19 +207108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7119, + "id": 9999, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207941,18 +207129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 92, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7270, + "id": 10000, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207960,19 +207148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 92, + "problemId": "d1.1", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9067, + "id": 10001, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -207980,15 +207168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9119, + "id": 10002, "result": { "type": "IOI", "score": [ @@ -208000,19 +207188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9679, + "id": 10003, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208020,19 +207208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9696, + "id": 10004, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208041,18 +207229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 92, + "teamId": "144256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9942, + "id": 10005, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208060,19 +207248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10010, + "id": 10006, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208080,19 +207268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10050, + "id": 10007, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208100,19 +207288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.4", + "teamId": "144348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10095, + "id": 10008, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208120,15 +207308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.4", + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10175, + "id": 10009, "result": { "type": "IOI", "score": [ @@ -208141,14 +207329,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 92, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10187, + "id": 10010, "result": { "type": "IOI", "score": [ @@ -208161,18 +207349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 92, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10199, + "id": 10011, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208180,19 +207368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10628, + "id": 10012, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208200,19 +207388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10637, + "id": 10013, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208220,19 +207408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10645, + "id": 10014, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208240,15 +207428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 92, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1289, + "id": 10015, "result": { "type": "IOI", "score": [ @@ -208261,14 +207449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 179, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1382, + "id": 10016, "result": { "type": "IOI", "score": [ @@ -208281,18 +207469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 179, + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5522, + "id": 10017, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208300,15 +207488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5531, + "id": 10018, "result": { "type": "IOI", "score": [ @@ -208321,18 +207509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 179, + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6055, + "id": 10019, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208340,15 +207528,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 179, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6476, + "id": 10020, "result": { "type": "IOI", "score": [ @@ -208360,19 +207548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 179, + "problemId": "d1.4", + "teamId": "144251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6708, + "id": 10021, "result": { "type": "IOI", "score": [ - 47.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208380,19 +207568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7667, + "id": 10022, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208401,18 +207589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 179, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7672, + "id": 10023, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208420,19 +207608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 179, + "problemId": "d1.1", + "teamId": "144111", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8085, + "id": 10024, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208440,15 +207628,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 179, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8271, + "id": 10025, "result": { "type": "IOI", "score": [ @@ -208461,34 +207649,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 179, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8336, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 179, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8584, + "id": 10026, "result": { "type": "IOI", "score": [ @@ -208501,14 +207669,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 179, + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9357, + "id": 10027, "result": { "type": "IOI", "score": [ @@ -208521,18 +207689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 179, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9517, + "id": 10028, "result": { "type": "IOI", "score": [ - 12.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208540,19 +207708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9647, + "id": 10029, "result": { "type": "IOI", "score": [ - 25.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208561,18 +207729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 179, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9708, + "id": 10030, "result": { "type": "IOI", "score": [ - 25.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208580,67 +207748,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10084, + "id": 10031, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10110, + "id": 10032, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10282, + "id": 10033, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208649,18 +207809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 179, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10375, + "id": 10034, "result": { "type": "IOI", "score": [ - 35.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208668,19 +207828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 179, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1307, + "id": 10035, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208688,19 +207848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1396, + "id": 10036, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208708,19 +207868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1646, + "id": 10037, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208728,19 +207888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1761, + "id": 10038, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208748,19 +207908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1816, + "id": 10039, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208768,19 +207928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1984, + "id": 10040, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208788,19 +207948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1994, + "id": 10041, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208808,19 +207968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3103, + "id": 10042, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208828,19 +207988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3130, + "id": 10043, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208848,19 +208008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 253, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4269, + "id": 10044, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208868,19 +208028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.3", + "teamId": "144486", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4294, + "id": 10045, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208888,19 +208048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4924, + "id": 10046, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208909,14 +208069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 253, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6220, + "id": 10047, "result": { "type": "IOI", "score": [ @@ -208929,14 +208089,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 253, + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6276, + "id": 10048, "result": { "type": "IOI", "score": [ @@ -208949,18 +208109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 253, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6385, + "id": 10049, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208968,19 +208128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6407, + "id": 10050, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -208988,19 +208148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6575, + "id": 10051, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209008,19 +208168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.4", + "teamId": "144154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6623, + "id": 10052, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209028,19 +208188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7163, + "id": 10053, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209048,19 +208208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.4", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7389, + "id": 10054, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209068,19 +208228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8236, + "id": 10055, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209088,19 +208248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8647, + "id": 10056, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209109,18 +208269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8670, + "id": 10057, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209128,15 +208288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9250, + "id": 10058, "result": { "type": "IOI", "score": [ @@ -209149,18 +208309,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9302, + "id": 10059, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209169,18 +208329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9568, + "id": 10060, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209189,18 +208349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10178, + "id": 10061, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209208,67 +208368,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10231, + "id": 10062, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10250, + "id": 10063, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.2", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10275, + "id": 10064, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209276,19 +208428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 253, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10312, + "id": 10065, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209297,18 +208449,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10449, + "id": 10066, "result": { "type": "IOI", "score": [ - 48.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209317,18 +208469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10481, + "id": 10067, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209337,18 +208489,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 253, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1327, + "id": 10068, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209357,18 +208509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 34, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7668, + "id": 10069, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209377,18 +208529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 34, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9018, + "id": 10070, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209396,19 +208548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 34, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11202, + "id": 10071, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209416,19 +208568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 34, + "problemId": "d1.2", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11548, + "id": 10072, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209436,19 +208588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 34, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11637, + "id": 10073, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209456,19 +208608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 34, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12088, + "id": 10074, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209477,18 +208629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 34, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1339, + "id": 10075, "result": { "type": "IOI", "score": [ - 14.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209496,15 +208648,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 257, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2166, + "id": 10076, "result": { "type": "IOI", "score": [ @@ -209517,18 +208669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 257, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2466, + "id": 10077, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209536,19 +208688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 257, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5864, + "id": 10078, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209557,18 +208709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 257, + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7102, + "id": 10079, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209577,18 +208729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 257, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10995, + "id": 10080, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209596,19 +208748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 257, + "problemId": "d1.1", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11343, + "id": 10081, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209616,19 +208768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 257, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11786, + "id": 10082, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209636,15 +208788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 257, + "problemId": "d1.1", + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1341, + "id": 10083, "result": { "type": "IOI", "score": [ @@ -209657,34 +208809,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 397, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2647, + "id": 10084, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 397, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2987, + "id": 10085, "result": { "type": "IOI", "score": [ @@ -209697,14 +208853,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3064, + "id": 10086, "result": { "type": "IOI", "score": [ @@ -209717,18 +208873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3256, + "id": 10087, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209737,14 +208893,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144238", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3375, + "id": 10088, "result": { "type": "IOI", "score": [ @@ -209757,18 +208913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3421, + "id": 10089, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209777,58 +208933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4649, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 397, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4687, - "result": { - "type": "IOI", - "score": [ - 38.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 397, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4787, + "id": 10090, "result": { "type": "IOI", "score": [ - 38.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209837,18 +208953,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 397, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6042, + "id": 10091, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209857,14 +208973,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6229, + "id": 10092, "result": { "type": "IOI", "score": [ @@ -209877,38 +208993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 397, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6467, - "result": { - "type": "IOI", - "score": [ - 48.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 397, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8419, + "id": 10093, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209916,19 +209012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 397, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9800, + "id": 10094, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209937,18 +209033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 397, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9912, + "id": 10095, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -209957,34 +209053,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 397, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9961, + "id": 10096, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10193, + "id": 10097, "result": { "type": "IOI", "score": [ @@ -209997,18 +209097,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 397, + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10262, + "id": 10098, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210016,19 +209116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10497, + "id": 10099, "result": { "type": "IOI", "score": [ - 25.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210036,19 +209136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11010, + "id": 10100, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210056,19 +209156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11862, + "id": 10101, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210076,19 +209176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11881, + "id": 10102, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210096,19 +209196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11900, + "id": 10103, "result": { "type": "IOI", "score": [ - 10.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210116,19 +209216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12051, + "id": 10104, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210137,18 +209237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 397, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12074, + "id": 10105, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210156,19 +209256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 397, + "problemId": "d1.3", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1352, + "id": 10106, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210177,14 +209277,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3862, + "id": 10107, "result": { "type": "IOI", "score": [ @@ -210196,35 +209296,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 196, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3899, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3988, + "id": 10108, "result": { "type": "IOI", "score": [ @@ -210236,15 +209316,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4179, + "id": 10109, "result": { "type": "IOI", "score": [ @@ -210257,38 +209337,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5104, + "id": 10110, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5141, + "id": 10111, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210297,18 +209381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5417, + "id": 10112, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210316,15 +209400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5575, + "id": 10113, "result": { "type": "IOI", "score": [ @@ -210336,35 +209420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5950, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6580, + "id": 10114, "result": { "type": "IOI", "score": [ @@ -210380,19 +209444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6652, + "id": 10115, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210401,18 +209465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6700, + "id": 10116, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210420,19 +209484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6768, + "id": 10117, "result": { "type": "IOI", "score": [ - 12.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210441,18 +209505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6883, + "id": 10118, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210461,14 +209525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 196, + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7291, + "id": 10119, "result": { "type": "IOI", "score": [ @@ -210481,14 +209545,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 196, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7624, + "id": 10120, "result": { "type": "IOI", "score": [ @@ -210501,18 +209565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 196, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7729, + "id": 10121, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210520,19 +209584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 196, + "problemId": "d1.2", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8154, + "id": 10122, "result": { "type": "IOI", "score": [ - 0.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210540,19 +209604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 196, + "problemId": "d1.2", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8624, + "id": 10123, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210561,18 +209625,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 196, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8668, + "id": 10124, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210580,19 +209644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 196, + "problemId": "d1.1", + "teamId": "144390", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8690, + "id": 10125, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210600,15 +209664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 196, + "problemId": "d1.1", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9410, + "id": 10126, "result": { "type": "IOI", "score": [ @@ -210621,38 +209685,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 196, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9721, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 196, + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10200, + "id": 10127, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210660,19 +209704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10581, + "id": 10128, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210680,19 +209724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11125, + "id": 10129, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210700,19 +209744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11140, + "id": 10130, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210720,19 +209764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11290, + "id": 10131, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210740,19 +209784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11450, + "id": 10132, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210760,19 +209804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11763, + "id": 10133, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210780,19 +209824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11818, + "id": 10134, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210800,19 +209844,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 196, + "problemId": "d1.3", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11993, + "id": 10135, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210821,54 +209865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 196, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1353, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 288, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9698, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 288, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9900, + "id": 10136, "result": { "type": "IOI", "score": [ @@ -210880,19 +209884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 288, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10278, + "id": 10137, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210900,15 +209904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 288, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10790, + "id": 10138, "result": { "type": "IOI", "score": [ @@ -210925,18 +209929,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 288, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10815, + "id": 10139, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210945,18 +209949,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 288, + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11408, + "id": 10140, "result": { "type": "IOI", "score": [ - 23.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210964,19 +209968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 288, + "problemId": "d1.1", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1363, + "id": 10141, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -210984,15 +209988,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1401, + "id": 10142, "result": { "type": "IOI", "score": [ @@ -211004,19 +210008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1613, + "id": 10143, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211024,19 +210028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2115, + "id": 10144, "result": { "type": "IOI", "score": [ - 9.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211044,19 +210048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2149, + "id": 10145, "result": { "type": "IOI", "score": [ - 9.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211064,19 +210068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2379, + "id": 10146, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211084,15 +210088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2633, + "id": 10147, "result": { "type": "IOI", "score": [ @@ -211104,19 +210108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3193, + "id": 10148, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211125,18 +210129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 384, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3710, + "id": 10149, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211144,19 +210148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 384, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4180, + "id": 10150, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211164,15 +210168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 384, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7146, + "id": 10151, "result": { "type": "IOI", "score": [ @@ -211184,19 +210188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 384, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7377, + "id": 10152, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211204,19 +210208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 384, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7448, + "id": 10153, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211225,14 +210229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 384, + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9757, + "id": 10154, "result": { "type": "IOI", "score": [ @@ -211245,18 +210249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 384, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9790, + "id": 10155, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211264,15 +210268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 384, + "problemId": "d1.4", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10631, + "id": 10156, "result": { "type": "IOI", "score": [ @@ -211285,18 +210289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 384, + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11438, + "id": 10157, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211304,39 +210308,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 384, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11968, + "id": 10158, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 384, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1376, + "id": 10159, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211344,19 +210352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1649, + "id": 10160, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211364,15 +210372,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1703, + "id": 10161, "result": { "type": "IOI", "score": [ @@ -211385,18 +210393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 39, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1948, + "id": 10162, "result": { "type": "IOI", "score": [ - 0.0 + 15.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211404,19 +210412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 39, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2154, + "id": 10163, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211425,18 +210433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 39, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2928, + "id": 10164, "result": { "type": "IOI", "score": [ - 16.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211444,19 +210452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 39, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4313, + "id": 10165, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211464,19 +210472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 39, + "problemId": "d1.4", + "teamId": "144433", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4315, + "id": 10166, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211485,14 +210493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4343, + "id": 10167, "result": { "type": "IOI", "score": [ @@ -211504,19 +210512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4486, + "id": 10168, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211525,18 +210533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4803, + "id": 10169, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211545,18 +210553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4910, + "id": 10170, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211565,18 +210573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4982, + "id": 10171, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211584,19 +210592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5112, + "id": 10172, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211605,18 +210613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5284, + "id": 10173, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211624,19 +210632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5409, + "id": 10174, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211644,15 +210652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5462, + "id": 10175, "result": { "type": "IOI", "score": [ @@ -211665,14 +210673,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 39, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7834, + "id": 10176, "result": { "type": "IOI", "score": [ @@ -211684,15 +210692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.1", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7855, + "id": 10177, "result": { "type": "IOI", "score": [ @@ -211704,15 +210712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8150, + "id": 10178, "result": { "type": "IOI", "score": [ @@ -211724,19 +210732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8513, + "id": 10179, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211744,19 +210752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8604, + "id": 10180, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211764,19 +210772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8650, + "id": 10181, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211784,15 +210792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9840, + "id": 10182, "result": { "type": "IOI", "score": [ @@ -211805,14 +210813,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 39, + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10548, + "id": 10183, "result": { "type": "IOI", "score": [ @@ -211824,15 +210832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144204", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11600, + "id": 10184, "result": { "type": "IOI", "score": [ @@ -211844,15 +210852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 39, + "problemId": "d1.1", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11609, + "id": 10185, "result": { "type": "IOI", "score": [ @@ -211864,20 +210872,64 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 39, + "problemId": "d1.3", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11793, + "id": 10186, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144495", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10187, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144162", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10188, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -211885,14 +210937,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 39, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1392, + "id": 10189, "result": { "type": "IOI", "score": [ @@ -211904,19 +210956,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.4", + "teamId": "144161", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10190, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 117, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1795, + "id": 10191, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211925,18 +210997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1822, + "id": 10192, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211945,18 +211017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2080, + "id": 10193, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -211964,15 +211036,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2179, + "id": 10194, "result": { "type": "IOI", "score": [ @@ -211984,15 +211056,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2206, + "id": 10195, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144183", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10196, "result": { "type": "IOI", "score": [ @@ -212005,14 +211097,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2282, + "id": 10197, "result": { "type": "IOI", "score": [ @@ -212025,18 +211117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2325, + "id": 10198, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212044,19 +211136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2383, + "id": 10199, "result": { "type": "IOI", "score": [ - 32.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212064,43 +211156,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3692, + "id": 10200, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 117, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3713, + "id": 10201, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144403", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10202, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144419", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10203, + "result": { + "type": "IOI", + "score": [ + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212109,18 +211237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 117, + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4201, + "id": 10204, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212129,18 +211257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 117, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6004, + "id": 10205, "result": { "type": "IOI", "score": [ - 31.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212148,19 +211276,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6066, + "id": 10206, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144282", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10207, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212168,19 +211320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6494, + "id": 10208, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212188,19 +211340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6605, + "id": 10209, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212208,15 +211360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6739, + "id": 10210, "result": { "type": "IOI", "score": [ @@ -212229,18 +211381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 117, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6841, + "id": 10211, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212249,18 +211401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6907, + "id": 10212, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212268,19 +211420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144083", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7303, + "id": 10213, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212288,15 +211440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7601, + "id": 10214, "result": { "type": "IOI", "score": [ @@ -212309,18 +211461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7619, + "id": 10215, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212328,19 +211480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7651, + "id": 10216, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212349,18 +211501,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 117, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8993, + "id": 10217, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212368,15 +211520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10593, + "id": 10218, "result": { "type": "IOI", "score": [ @@ -212388,19 +211540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10828, + "id": 10219, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212408,19 +211560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10835, + "id": 10220, "result": { "type": "IOI", "score": [ - 47.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212428,19 +211580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10840, + "id": 10221, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212448,19 +211600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11173, + "id": 10222, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212468,19 +211620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11397, + "id": 10223, "result": { "type": "IOI", "score": [ - 47.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212488,19 +211640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12091, + "id": 10224, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212508,19 +211660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.3", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12109, + "id": 10225, "result": { "type": "IOI", "score": [ - 47.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212528,15 +211680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 117, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1395, + "id": 10226, "result": { "type": "IOI", "score": [ @@ -212549,14 +211701,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1426, + "id": 10227, "result": { "type": "IOI", "score": [ @@ -212572,39 +211724,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1438, + "id": 10228, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1570, + "id": 10229, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212613,18 +211769,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1619, + "id": 10230, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212632,39 +211788,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144214", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2512, + "id": 10231, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2559, + "id": 10232, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212672,15 +211832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 444, + "problemId": "d1.1", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5325, + "id": 10233, "result": { "type": "IOI", "score": [ @@ -212693,18 +211853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5601, + "id": 10234, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212712,19 +211872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5685, + "id": 10235, "result": { "type": "IOI", "score": [ - 47.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212732,19 +211892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6057, + "id": 10236, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212753,18 +211913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6164, + "id": 10237, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212772,39 +211932,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9025, + "id": 10238, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 444, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9059, + "id": 10239, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212812,19 +211976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 444, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9254, + "id": 10240, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212833,14 +211997,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 444, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9483, + "id": 10241, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144404", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10242, "result": { "type": "IOI", "score": [ @@ -212853,18 +212037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 444, + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9582, + "id": 10243, "result": { "type": "IOI", "score": [ - 16.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212873,18 +212057,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 444, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10006, + "id": 10244, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212893,18 +212077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 444, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11344, + "id": 10245, "result": { "type": "IOI", "score": [ - 57.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212912,19 +212096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11597, + "id": 10246, "result": { "type": "IOI", "score": [ - 57.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212933,18 +212117,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11750, + "id": 10247, "result": { "type": "IOI", "score": [ - 57.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212953,18 +212137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 444, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12054, + "id": 10248, "result": { "type": "IOI", "score": [ - 57.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212972,19 +212156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 444, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1421, + "id": 10249, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -212993,19 +212177,43 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 390, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1841, + "id": 10250, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144323", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10251, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -213013,18 +212221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 390, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1940, + "id": 10252, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213033,14 +212241,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 390, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2818, + "id": 10253, "result": { "type": "IOI", "score": [ @@ -213053,18 +212261,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 390, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2869, + "id": 10254, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213073,18 +212281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 390, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2906, + "id": 10255, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213093,14 +212301,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 390, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2945, + "id": 10256, "result": { "type": "IOI", "score": [ @@ -213112,19 +212320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 390, + "problemId": "d1.1", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3934, + "id": 10257, "result": { "type": "IOI", "score": [ - 14.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213132,19 +212340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 390, + "problemId": "d1.1", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4125, + "id": 10258, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213152,19 +212360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 390, + "problemId": "d1.3", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8757, + "id": 10259, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213173,18 +212381,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 390, + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9106, + "id": 10260, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213192,19 +212400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 390, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10137, + "id": 10261, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213212,19 +212420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 390, + "problemId": "d1.3", + "teamId": "144427", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10488, + "id": 10262, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213232,15 +212440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 390, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11730, + "id": 10263, "result": { "type": "IOI", "score": [ @@ -213252,19 +212460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 390, + "problemId": "d1.2", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1444, + "id": 10264, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213272,19 +212480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.2", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1481, + "id": 10265, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213292,19 +212500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.3", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1547, + "id": 10266, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213312,19 +212520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1724, + "id": 10267, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213332,19 +212540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1780, + "id": 10268, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213352,15 +212560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.1", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2324, + "id": 10269, "result": { "type": "IOI", "score": [ @@ -213372,19 +212580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 191, + "problemId": "d1.3", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2395, + "id": 10270, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213392,15 +212600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 191, + "problemId": "d1.2", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2614, + "id": 10271, "result": { "type": "IOI", "score": [ @@ -213412,19 +212620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 191, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3415, + "id": 10272, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213433,18 +212641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 191, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4356, + "id": 10273, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213452,15 +212660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 191, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6842, + "id": 10274, "result": { "type": "IOI", "score": [ @@ -213472,19 +212680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 191, + "problemId": "d1.1", + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7080, + "id": 10275, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213492,19 +212700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 191, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7234, + "id": 10276, "result": { "type": "IOI", "score": [ - 0.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213512,15 +212720,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 191, + "problemId": "d1.4", + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7468, + "id": 10277, "result": { "type": "IOI", "score": [ @@ -213533,14 +212741,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 191, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7796, + "id": 10278, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144358", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10279, "result": { "type": "IOI", "score": [ @@ -213553,18 +212781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 191, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9899, + "id": 10280, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213573,18 +212801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 191, + "teamId": "144342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1451, + "id": 10281, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213592,19 +212820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.1", + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1521, + "id": 10282, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213612,19 +212840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1534, + "id": 10283, "result": { "type": "IOI", "score": [ - 24.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213633,18 +212861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 73, + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1542, + "id": 10284, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213652,19 +212880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1908, + "id": 10285, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213672,19 +212900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2069, + "id": 10286, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213692,19 +212920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2382, + "id": 10287, "result": { "type": "IOI", "score": [ - 15.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213712,19 +212940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.2", + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2964, + "id": 10288, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213732,15 +212960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 73, + "problemId": "d1.3", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6875, + "id": 10289, "result": { "type": "IOI", "score": [ @@ -213752,19 +212980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 73, + "problemId": "d1.3", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7219, + "id": 10290, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213773,14 +213001,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 73, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7521, + "id": 10291, "result": { "type": "IOI", "score": [ @@ -213792,15 +213020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 73, + "problemId": "d1.4", + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8654, + "id": 10292, "result": { "type": "IOI", "score": [ @@ -213812,19 +213040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 73, + "problemId": "d1.3", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8743, + "id": 10293, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213833,14 +213061,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 73, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8981, + "id": 10294, "result": { "type": "IOI", "score": [ @@ -213852,19 +213080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 73, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9892, + "id": 10295, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213873,14 +213101,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 73, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1455, + "id": 10296, "result": { "type": "IOI", "score": [ @@ -213892,39 +213120,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 189, + "problemId": "d1.3", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1682, + "id": 10297, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 189, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1731, + "id": 10298, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213933,18 +213165,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 189, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2028, + "id": 10299, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213952,19 +213184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 189, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2111, + "id": 10300, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213972,19 +213204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 189, + "problemId": "d1.3", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2999, + "id": 10301, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -213992,19 +213224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 189, + "problemId": "d1.4", + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3283, + "id": 10302, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214012,19 +213244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 189, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3328, + "id": 10303, "result": { "type": "IOI", "score": [ - 10.0 + 64.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214032,19 +213264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 189, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5425, + "id": 10304, "result": { "type": "IOI", "score": [ - 35.0 + 46.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214052,19 +213284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 189, + "problemId": "d1.3", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8602, + "id": 10305, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214073,18 +213305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 189, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9864, + "id": 10306, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214093,18 +213325,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 189, + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9908, + "id": 10307, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214112,19 +213344,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 189, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10032, + "id": 10308, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214132,15 +213364,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 189, + "problemId": "d1.1", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10694, + "id": 10309, "result": { "type": "IOI", "score": [ @@ -214153,14 +213385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 189, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11054, + "id": 10310, "result": { "type": "IOI", "score": [ @@ -214173,18 +213405,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 189, + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11251, + "id": 10311, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214192,19 +213424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 189, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11494, + "id": 10312, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214213,18 +213445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 189, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11641, + "id": 10313, "result": { "type": "IOI", "score": [ - 16.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214233,18 +213465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 189, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1456, + "id": 10314, "result": { "type": "IOI", "score": [ - 15.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214253,18 +213485,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2612, + "id": 10315, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214272,15 +213504,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2888, + "id": 10316, "result": { "type": "IOI", "score": [ @@ -214292,39 +213524,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2970, + "id": 10317, "result": { "type": "IOI", "score": [ - 15.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3762, + "id": 10318, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214332,19 +213568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.2", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6463, + "id": 10319, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214352,15 +213588,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6641, + "id": 10320, "result": { "type": "IOI", "score": [ @@ -214373,18 +213609,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 244, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6684, + "id": 10321, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214393,18 +213629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 244, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6718, + "id": 10322, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214413,14 +213649,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 244, + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6862, + "id": 10323, "result": { "type": "IOI", "score": [ @@ -214432,15 +213668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6958, + "id": 10324, "result": { "type": "IOI", "score": [ @@ -214452,43 +213688,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7023, + "id": 10325, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 244, + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7285, + "id": 10326, "result": { "type": "IOI", "score": [ - 15.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214497,18 +213729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7351, + "id": 10327, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214516,19 +213748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144479", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7385, + "id": 10328, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214536,15 +213768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7422, + "id": 10329, "result": { "type": "IOI", "score": [ @@ -214556,19 +213788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7479, + "id": 10330, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214576,15 +213808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7515, + "id": 10331, "result": { "type": "IOI", "score": [ @@ -214596,19 +213828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7781, + "id": 10332, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214617,18 +213849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8248, + "id": 10333, "result": { "type": "IOI", "score": [ - 29.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214636,19 +213868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8441, + "id": 10334, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214656,15 +213888,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9127, + "id": 10335, "result": { "type": "IOI", "score": [ @@ -214676,15 +213908,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9303, + "id": 10336, "result": { "type": "IOI", "score": [ @@ -214696,19 +213928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144217", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9352, + "id": 10337, "result": { "type": "IOI", "score": [ - 29.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214716,19 +213948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10090, + "id": 10338, "result": { "type": "IOI", "score": [ - 55.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214736,19 +213968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10303, + "id": 10339, "result": { "type": "IOI", "score": [ - 64.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214757,18 +213989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10490, + "id": 10340, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214776,15 +214008,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10620, + "id": 10341, "result": { "type": "IOI", "score": [ @@ -214796,19 +214028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.3", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10729, + "id": 10342, "result": { "type": "IOI", "score": [ - 55.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214817,18 +214049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11273, + "id": 10343, "result": { "type": "IOI", "score": [ - 55.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214836,15 +214068,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11534, + "id": 10344, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144509", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10345, "result": { "type": "IOI", "score": [ @@ -214857,18 +214109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 244, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11659, + "id": 10346, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214876,15 +214128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 244, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1467, + "id": 10347, "result": { "type": "IOI", "score": [ @@ -214896,19 +214148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 246, + "problemId": "d1.3", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5868, + "id": 10348, "result": { "type": "IOI", "score": [ - 37.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214916,15 +214168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 246, + "problemId": "d1.2", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7480, + "id": 10349, "result": { "type": "IOI", "score": [ @@ -214937,14 +214189,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7820, + "id": 10350, "result": { "type": "IOI", "score": [ @@ -214957,18 +214209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8079, + "id": 10351, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214976,19 +214228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.1", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8133, + "id": 10352, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -214996,19 +214248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8142, + "id": 10353, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215017,18 +214269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8152, + "id": 10354, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215037,18 +214289,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8361, + "id": 10355, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215056,39 +214308,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8479, + "id": 10356, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8497, + "id": 10357, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215096,39 +214352,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8693, + "id": 10358, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8995, + "id": 10359, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215136,15 +214396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9564, + "id": 10360, "result": { "type": "IOI", "score": [ @@ -215157,14 +214417,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9649, + "id": 10361, "result": { "type": "IOI", "score": [ @@ -215176,19 +214436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9662, + "id": 10362, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215197,18 +214457,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 246, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10544, + "id": 10363, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215216,19 +214476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 246, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11142, + "id": 10364, "result": { "type": "IOI", "score": [ - 23.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215236,19 +214496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 246, + "problemId": "d1.1", + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11669, + "id": 10365, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215256,19 +214516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 246, + "problemId": "d1.1", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1475, + "id": 10366, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215276,19 +214536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1493, + "id": 10367, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215297,18 +214557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 259, + "teamId": "144153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1511, + "id": 10368, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215316,19 +214576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2034, + "id": 10369, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215336,19 +214596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2153, + "id": 10370, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215356,19 +214616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2188, + "id": 10371, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215376,19 +214636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2278, + "id": 10372, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215396,19 +214656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.4", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2306, + "id": 10373, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215416,15 +214676,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2310, + "id": 10374, "result": { "type": "IOI", "score": [ @@ -215436,19 +214696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2397, + "id": 10375, "result": { "type": "IOI", "score": [ - 31.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215456,19 +214716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2473, + "id": 10376, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215476,19 +214736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2971, + "id": 10377, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215496,15 +214756,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3210, + "id": 10378, "result": { "type": "IOI", "score": [ @@ -215516,15 +214776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3269, + "id": 10379, "result": { "type": "IOI", "score": [ @@ -215537,18 +214797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 259, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3337, + "id": 10380, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215557,14 +214817,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 259, + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3351, + "id": 10381, "result": { "type": "IOI", "score": [ @@ -215576,19 +214836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3674, + "id": 10382, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215596,19 +214856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4527, + "id": 10383, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215616,19 +214876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4842, + "id": 10384, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215636,19 +214896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4941, + "id": 10385, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215656,19 +214916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5220, + "id": 10386, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215676,19 +214936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.4", + "teamId": "144480", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5257, + "id": 10387, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215696,15 +214956,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5363, + "id": 10388, "result": { "type": "IOI", "score": [ @@ -215717,14 +214977,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 259, + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5370, + "id": 10389, "result": { "type": "IOI", "score": [ @@ -215736,19 +214996,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5780, + "id": 10390, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215756,39 +215016,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5787, + "id": 10391, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.2", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5808, + "id": 10392, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215796,15 +215060,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 259, + "problemId": "d1.1", + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6403, + "id": 10393, "result": { "type": "IOI", "score": [ @@ -215817,18 +215081,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 259, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6436, + "id": 10394, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215836,19 +215100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6464, + "id": 10395, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215856,19 +215120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6503, + "id": 10396, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215877,14 +215141,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 259, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6662, + "id": 10397, "result": { "type": "IOI", "score": [ @@ -215896,15 +215160,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6668, + "id": 10398, "result": { "type": "IOI", "score": [ @@ -215916,19 +215180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6804, + "id": 10399, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215936,19 +215200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6973, + "id": 10400, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215957,18 +215221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 259, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7114, + "id": 10401, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -215976,15 +215240,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7184, + "id": 10402, "result": { "type": "IOI", "score": [ @@ -215996,19 +215260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7492, + "id": 10403, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216016,15 +215280,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7648, + "id": 10404, "result": { "type": "IOI", "score": [ @@ -216037,18 +215301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 259, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7716, + "id": 10405, "result": { "type": "IOI", "score": [ - 10.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216056,19 +215320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 259, + "problemId": "d1.2", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9532, + "id": 10406, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216077,14 +215341,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 259, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9549, + "id": 10407, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144309", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10408, "result": { "type": "IOI", "score": [ @@ -216097,14 +215381,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 259, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9555, + "id": 10409, "result": { "type": "IOI", "score": [ @@ -216117,18 +215401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 259, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1477, + "id": 10410, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216137,14 +215421,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1636, + "id": 10411, "result": { "type": "IOI", "score": [ @@ -216156,19 +215440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2303, + "id": 10412, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216176,19 +215460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3066, + "id": 10413, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216197,18 +215481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3166, + "id": 10414, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216216,19 +215500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3246, + "id": 10415, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216237,18 +215521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3447, + "id": 10416, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216256,19 +215540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3662, + "id": 10417, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216276,19 +215560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3833, + "id": 10418, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216296,19 +215580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3910, + "id": 10419, "result": { "type": "IOI", "score": [ - 32.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216317,18 +215601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4433, + "id": 10420, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216336,19 +215620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 22, + "problemId": "d1.3", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4807, + "id": 10421, "result": { "type": "IOI", "score": [ - 23.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216357,18 +215641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 22, + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8382, + "id": 10422, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216376,19 +215660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 22, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9661, + "id": 10423, "result": { "type": "IOI", "score": [ - 32.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216396,19 +215680,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11079, + "id": 10424, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216416,19 +215700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11283, + "id": 10425, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216437,18 +215721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144198", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11362, + "id": 10426, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216457,18 +215741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11719, + "id": 10427, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216476,19 +215760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 22, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11734, + "id": 10428, "result": { "type": "IOI", "score": [ - 32.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216497,14 +215781,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11882, + "id": 10429, "result": { "type": "IOI", "score": [ @@ -216517,14 +215801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 22, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1501, + "id": 10430, "result": { "type": "IOI", "score": [ @@ -216537,14 +215821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 91, + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1525, + "id": 10431, "result": { "type": "IOI", "score": [ @@ -216556,19 +215840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 91, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4554, + "id": 10432, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216577,18 +215861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 91, + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4619, + "id": 10433, "result": { "type": "IOI", "score": [ - 10.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216596,19 +215880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5069, + "id": 10434, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216616,19 +215900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5375, + "id": 10435, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216636,19 +215920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6474, + "id": 10436, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216656,15 +215940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8003, + "id": 10437, "result": { "type": "IOI", "score": [ @@ -216676,19 +215960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 91, + "problemId": "d1.3", + "teamId": "144279", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8396, + "id": 10438, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216696,19 +215980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 91, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8682, + "id": 10439, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216716,19 +216000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 91, + "problemId": "d1.2", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9570, + "id": 10440, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216736,19 +216020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9792, + "id": 10441, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216756,19 +216040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10189, + "id": 10442, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216776,19 +216060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10298, + "id": 10443, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216796,19 +216080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10519, + "id": 10444, "result": { "type": "IOI", "score": [ - 38.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216817,14 +216101,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 91, + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10699, + "id": 10445, "result": { "type": "IOI", "score": [ @@ -216841,18 +216125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 91, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10715, + "id": 10446, "result": { "type": "IOI", "score": [ - 50.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216861,18 +216145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 91, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11349, + "id": 10447, "result": { "type": "IOI", "score": [ - 36.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216880,19 +216164,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144361", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11396, + "id": 10448, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144317", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10449, + "result": { + "type": "IOI", + "score": [ + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216900,15 +216208,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.3", + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11715, + "id": 10450, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144309", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10451, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10452, "result": { "type": "IOI", "score": [ @@ -216924,19 +216272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.2", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12002, + "id": 10453, "result": { "type": "IOI", "score": [ - 36.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216944,19 +216292,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 91, + "problemId": "d1.1", + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1505, + "id": 10454, "result": { "type": "IOI", "score": [ - 12.0 + 19.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216964,19 +216312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1532, + "id": 10455, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -216984,15 +216332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144179", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1589, + "id": 10456, "result": { "type": "IOI", "score": [ @@ -217004,19 +216352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1606, + "id": 10457, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217024,19 +216372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1765, + "id": 10458, "result": { "type": "IOI", "score": [ - 22.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217044,19 +216392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1829, + "id": 10459, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217064,15 +216412,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2424, + "id": 10460, "result": { "type": "IOI", "score": [ @@ -217084,19 +216432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2529, + "id": 10461, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217104,43 +216452,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2675, + "id": 10462, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2692, + "id": 10463, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217149,14 +216493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2792, + "id": 10464, "result": { "type": "IOI", "score": [ @@ -217168,19 +216512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2902, + "id": 10465, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217189,18 +216533,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2936, + "id": 10466, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217209,18 +216553,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2973, + "id": 10467, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217229,18 +216573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3019, + "id": 10468, "result": { "type": "IOI", "score": [ - 0.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217248,19 +216592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3057, + "id": 10469, "result": { "type": "IOI", "score": [ - 9.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217269,18 +216613,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3414, + "id": 10470, "result": { "type": "IOI", "score": [ - 23.0 + 53.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217288,15 +216632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3627, + "id": 10471, "result": { "type": "IOI", "score": [ @@ -217309,18 +216653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 338, + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6129, + "id": 10472, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217328,15 +216672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6187, + "id": 10473, "result": { "type": "IOI", "score": [ @@ -217348,19 +216692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6458, + "id": 10474, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217369,14 +216713,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 338, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6595, + "id": 10475, "result": { "type": "IOI", "score": [ @@ -217389,14 +216733,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 338, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6802, + "id": 10476, "result": { "type": "IOI", "score": [ @@ -217408,15 +216752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6947, + "id": 10477, "result": { "type": "IOI", "score": [ @@ -217428,19 +216772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7557, + "id": 10478, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217448,15 +216792,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7695, + "id": 10479, "result": { "type": "IOI", "score": [ @@ -217469,18 +216813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7746, + "id": 10480, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217488,19 +216832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8069, + "id": 10481, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217509,14 +216853,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144323", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8310, + "id": 10482, "result": { "type": "IOI", "score": [ @@ -217529,18 +216873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8410, + "id": 10483, "result": { "type": "IOI", "score": [ - 0.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217548,19 +216892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.4", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8707, + "id": 10484, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217569,18 +216913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9020, + "id": 10485, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217588,15 +216932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9073, + "id": 10486, "result": { "type": "IOI", "score": [ @@ -217609,14 +216953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9107, + "id": 10487, "result": { "type": "IOI", "score": [ @@ -217629,18 +216973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9142, + "id": 10488, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217648,19 +216992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9160, + "id": 10489, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217669,14 +217013,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9182, + "id": 10490, "result": { "type": "IOI", "score": [ @@ -217688,19 +217032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9202, + "id": 10491, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217708,19 +217052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9246, + "id": 10492, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217729,18 +217073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9317, + "id": 10493, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217749,14 +217093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9493, + "id": 10494, "result": { "type": "IOI", "score": [ @@ -217768,15 +217112,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9504, + "id": 10495, "result": { "type": "IOI", "score": [ @@ -217789,34 +217133,98 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9729, + "id": 10496, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9770, + "id": 10497, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144467", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10498, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144404", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10499, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144333", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10500, "result": { "type": "IOI", "score": [ @@ -217828,20 +217236,44 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9823, + "id": 10501, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144123", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10502, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -217849,14 +217281,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10072, + "id": 10503, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144195", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10504, "result": { "type": "IOI", "score": [ @@ -217869,14 +217321,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10141, + "id": 10505, + "result": { + "type": "IOI", + "score": [ + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144492", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10506, "result": { "type": "IOI", "score": [ @@ -217889,14 +217361,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10330, + "id": 10507, + "result": { + "type": "IOI", + "score": [ + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144308", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10508, + "result": { + "type": "IOI", + "score": [ + 61.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10509, "result": { "type": "IOI", "score": [ @@ -217909,18 +217421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10768, + "id": 10510, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217928,15 +217440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10899, + "id": 10511, "result": { "type": "IOI", "score": [ @@ -217948,19 +217460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.3", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10919, + "id": 10512, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217969,18 +217481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 338, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10989, + "id": 10513, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -217988,19 +217500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 338, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11258, + "id": 10514, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218009,18 +217521,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 338, + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11622, + "id": 10515, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218028,19 +217540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12018, + "id": 10516, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218048,15 +217560,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 338, + "problemId": "d1.2", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1523, + "id": 10517, "result": { "type": "IOI", "score": [ @@ -218068,19 +217580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 269, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2567, + "id": 10518, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218089,18 +217601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 269, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3564, + "id": 10519, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218108,19 +217620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 269, + "problemId": "d1.4", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3816, + "id": 10520, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218128,19 +217640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 269, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4135, + "id": 10521, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218148,15 +217660,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 269, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4409, + "id": 10522, "result": { "type": "IOI", "score": [ @@ -218169,14 +217681,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 269, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4439, + "id": 10523, "result": { "type": "IOI", "score": [ @@ -218188,19 +217700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 269, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4805, + "id": 10524, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218209,14 +217721,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 269, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7873, + "id": 10525, "result": { "type": "IOI", "score": [ @@ -218229,18 +217741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 269, + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8298, + "id": 10526, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218248,19 +217760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 269, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10583, + "id": 10527, "result": { "type": "IOI", "score": [ - 24.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218269,18 +217781,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 269, + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11056, + "id": 10528, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218288,19 +217800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 269, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11379, + "id": 10529, "result": { "type": "IOI", "score": [ - 24.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218309,18 +217821,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 269, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1527, + "id": 10530, "result": { "type": "IOI", "score": [ - 100.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218328,15 +217840,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 240, + "problemId": "d1.1", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1561, + "id": 10531, "result": { "type": "IOI", "score": [ @@ -218349,18 +217861,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 392, + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1623, + "id": 10532, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218368,15 +217880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 392, + "problemId": "d1.3", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4253, + "id": 10533, "result": { "type": "IOI", "score": [ @@ -218389,18 +217901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 392, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4306, + "id": 10534, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218408,15 +217920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 392, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4337, + "id": 10535, "result": { "type": "IOI", "score": [ @@ -218428,19 +217940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 392, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4793, + "id": 10536, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218448,19 +217960,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 392, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4819, + "id": 10537, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218468,19 +217980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 392, + "problemId": "d1.1", + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4939, + "id": 10538, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218488,19 +218000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 392, + "problemId": "d1.3", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5566, + "id": 10539, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218508,15 +218020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 392, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6117, + "id": 10540, "result": { "type": "IOI", "score": [ @@ -218529,18 +218041,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 392, + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6496, + "id": 10541, "result": { "type": "IOI", "score": [ - 14.0 + 48.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144224", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10542, + "result": { + "type": "IOI", + "score": [ + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144328", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10543, + "result": { + "type": "IOI", + "score": [ + 76.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218549,18 +218101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 392, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6945, + "id": 10544, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218569,14 +218121,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 392, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7182, + "id": 10545, "result": { "type": "IOI", "score": [ @@ -218588,8 +218140,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 392, + "problemId": "d1.1", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218609,18 +218161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 392, + "teamId": "144462", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1576, + "id": 10547, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218629,14 +218181,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 278, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6837, + "id": 10548, "result": { "type": "IOI", "score": [ @@ -218648,15 +218200,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 278, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6990, + "id": 10549, "result": { "type": "IOI", "score": [ @@ -218668,15 +218220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 278, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9290, + "id": 10550, "result": { "type": "IOI", "score": [ @@ -218689,18 +218241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 278, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9367, + "id": 10551, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218708,19 +218260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 278, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10007, + "id": 10552, "result": { "type": "IOI", "score": [ - 14.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218729,18 +218281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 278, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1587, + "id": 10553, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218748,19 +218300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1657, + "id": 10554, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218768,15 +218320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1793, + "id": 10555, "result": { "type": "IOI", "score": [ @@ -218788,19 +218340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1965, + "id": 10556, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218808,19 +218360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 359, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2051, + "id": 10557, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218829,18 +218381,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 359, + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2237, + "id": 10558, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144132", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10559, + "result": { + "type": "IOI", + "score": [ + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218849,14 +218421,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 359, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2381, + "id": 10560, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144139", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10561, "result": { "type": "IOI", "score": [ @@ -218868,19 +218460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2419, + "id": 10562, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218889,18 +218481,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 359, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6624, + "id": 10563, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218908,19 +218500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6861, + "id": 10564, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218928,19 +218520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 359, + "problemId": "d1.4", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7012, + "id": 10565, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218949,18 +218541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 359, + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7233, + "id": 10566, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218968,19 +218560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 359, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7484, + "id": 10567, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -218988,19 +218580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 359, + "problemId": "d1.4", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8514, + "id": 10568, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219008,15 +218600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.1", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8653, + "id": 10569, "result": { "type": "IOI", "score": [ @@ -219029,18 +218621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 359, + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8741, + "id": 10570, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219048,19 +218640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.1", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8815, + "id": 10571, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219068,19 +218660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.1", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9306, + "id": 10572, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219088,15 +218680,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.2", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9346, + "id": 10573, "result": { "type": "IOI", "score": [ @@ -219109,34 +218701,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 359, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9370, + "id": 10574, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 359, + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10002, + "id": 10575, + "result": { + "type": "IOI", + "score": [ + 38.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144338", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10576, "result": { "type": "IOI", "score": [ @@ -219148,15 +218764,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10774, + "id": 10577, "result": { "type": "IOI", "score": [ @@ -219168,15 +218784,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 359, + "problemId": "d1.2", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10779, + "id": 10578, "result": { "type": "IOI", "score": [ @@ -219188,19 +218804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10934, + "id": 10579, "result": { "type": "IOI", "score": [ - 9.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219209,18 +218825,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 359, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11135, + "id": 10580, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219228,15 +218844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 359, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11689, + "id": 10581, "result": { "type": "IOI", "score": [ @@ -219249,18 +218865,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 359, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1605, + "id": 10582, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144376", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10583, + "result": { + "type": "IOI", + "score": [ + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219269,18 +218905,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 150, + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2483, + "id": 10584, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219289,18 +218925,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 150, + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2517, + "id": 10585, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144395", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10586, + "result": { + "type": "IOI", + "score": [ + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219309,18 +218965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 150, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3881, + "id": 10587, "result": { "type": "IOI", "score": [ - 27.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219329,18 +218985,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 150, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4647, + "id": 10588, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219348,19 +219004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4783, + "id": 10589, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219368,15 +219024,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4826, + "id": 10590, "result": { "type": "IOI", "score": [ @@ -219389,18 +219045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 150, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5331, + "id": 10591, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219408,19 +219064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7416, + "id": 10592, "result": { "type": "IOI", "score": [ - 16.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219428,15 +219084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.1", + "teamId": "144333", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7579, + "id": 10593, "result": { "type": "IOI", "score": [ @@ -219448,19 +219104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7713, + "id": 10594, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219468,19 +219124,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7996, + "id": 10595, "result": { "type": "IOI", "score": [ - 27.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219488,15 +219144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 150, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8022, + "id": 10596, "result": { "type": "IOI", "score": [ @@ -219508,19 +219164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 150, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8470, + "id": 10597, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219528,19 +219184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 150, + "problemId": "d1.2", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9742, + "id": 10598, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219548,19 +219204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9869, + "id": 10599, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219568,15 +219224,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 150, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9905, + "id": 10600, "result": { "type": "IOI", "score": [ @@ -219589,18 +219245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 150, + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12008, + "id": 10601, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219608,19 +219264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 150, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1608, + "id": 10602, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219629,18 +219285,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 316, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1932, + "id": 10603, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219648,19 +219304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2118, + "id": 10604, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219668,43 +219324,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2243, + "id": 10605, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2269, + "id": 10606, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219712,19 +219364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.3", + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2516, + "id": 10607, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219733,14 +219385,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 316, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3097, + "id": 10608, "result": { "type": "IOI", "score": [ @@ -219752,15 +219404,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3436, + "id": 10609, "result": { "type": "IOI", "score": [ @@ -219773,18 +219425,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 316, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3599, + "id": 10610, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219792,19 +219444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5475, + "id": 10611, "result": { "type": "IOI", "score": [ - 9.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219812,19 +219464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7189, + "id": 10612, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219832,19 +219484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7230, + "id": 10613, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219852,19 +219504,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7404, + "id": 10614, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219872,19 +219524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 316, + "problemId": "d1.3", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8862, + "id": 10615, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219892,19 +219544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8958, + "id": 10616, "result": { "type": "IOI", "score": [ - 24.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219912,43 +219564,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.2", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9137, + "id": 10617, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9186, + "id": 10618, "result": { "type": "IOI", "score": [ - 38.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -219956,15 +219604,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 316, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9588, + "id": 10619, "result": { "type": "IOI", "score": [ @@ -219977,14 +219625,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 316, + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10185, + "id": 10620, "result": { "type": "IOI", "score": [ @@ -219996,19 +219644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 316, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10265, + "id": 10621, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220017,38 +219665,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 316, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10356, + "id": 10622, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10397, + "id": 10623, "result": { "type": "IOI", "score": [ @@ -220060,19 +219704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10980, + "id": 10624, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220080,15 +219724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11393, + "id": 10625, "result": { "type": "IOI", "score": [ @@ -220100,19 +219744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 316, + "problemId": "d1.1", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1635, + "id": 10626, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220120,19 +219764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 208, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7263, + "id": 10627, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220141,18 +219785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 208, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7786, + "id": 10628, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220160,35 +219804,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7877, + "id": 10629, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10630, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.1", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8156, + "id": 10631, "result": { "type": "IOI", "score": [ @@ -220200,19 +219868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.2", + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8171, + "id": 10632, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220220,15 +219888,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.2", + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8341, + "id": 10633, "result": { "type": "IOI", "score": [ @@ -220240,19 +219908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8408, + "id": 10634, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220260,15 +219928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8468, + "id": 10635, "result": { "type": "IOI", "score": [ @@ -220281,14 +219949,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 208, + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8704, + "id": 10636, "result": { "type": "IOI", "score": [ @@ -220301,18 +219969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 208, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9063, + "id": 10637, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220320,15 +219988,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 208, + "problemId": "d1.1", + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10827, + "id": 10638, "result": { "type": "IOI", "score": [ @@ -220341,14 +220009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 208, + "teamId": "144190", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11984, + "id": 10639, "result": { "type": "IOI", "score": [ @@ -220361,18 +220029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 208, + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1655, + "id": 10640, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220381,18 +220049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 61, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2305, + "id": 10641, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220400,19 +220068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 61, + "problemId": "d1.2", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2718, + "id": 10642, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220420,19 +220088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 61, + "problemId": "d1.3", + "teamId": "144398", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4657, + "id": 10643, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220441,18 +220109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 61, + "teamId": "144233", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4719, + "id": 10644, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220461,18 +220129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 61, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6394, + "id": 10645, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220481,18 +220149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 61, + "teamId": "144162", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1663, + "id": 10646, "result": { "type": "IOI", "score": [ - 24.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220500,19 +220168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1760, + "id": 10647, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220520,19 +220188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2954, + "id": 10648, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220540,15 +220208,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3470, + "id": 10649, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144301", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10650, "result": { "type": "IOI", "score": [ @@ -220560,19 +220248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 303, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3734, + "id": 10651, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220580,15 +220268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4558, + "id": 10652, "result": { "type": "IOI", "score": [ @@ -220604,15 +220292,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4608, + "id": 10653, "result": { "type": "IOI", "score": [ @@ -220624,15 +220312,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4843, + "id": 10654, "result": { "type": "IOI", "score": [ @@ -220644,19 +220332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4913, + "id": 10655, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220664,19 +220352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5035, + "id": 10656, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220684,19 +220372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5128, + "id": 10657, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220705,18 +220393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 303, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5226, + "id": 10658, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220725,18 +220413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 303, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5728, + "id": 10659, "result": { "type": "IOI", "score": [ - 10.0 + 83.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220745,18 +220433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 303, + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6051, + "id": 10660, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220764,19 +220452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10908, + "id": 10661, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220784,15 +220472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11481, + "id": 10662, "result": { "type": "IOI", "score": [ @@ -220804,19 +220492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 303, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12086, + "id": 10663, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220825,18 +220513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 303, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1675, + "id": 10664, "result": { "type": "IOI", "score": [ - 24.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220844,19 +220532,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1893, + "id": 10665, "result": { "type": "IOI", "score": [ - 38.0 + 22.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144135", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10666, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220865,18 +220573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 365, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2603, + "id": 10667, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220884,15 +220592,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2735, + "id": 10668, "result": { "type": "IOI", "score": [ @@ -220904,19 +220612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2853, + "id": 10669, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220924,19 +220632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3044, + "id": 10670, "result": { "type": "IOI", "score": [ - 32.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220944,19 +220652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3235, + "id": 10671, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220964,19 +220672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3311, + "id": 10672, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -220984,19 +220692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4440, + "id": 10673, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221005,18 +220713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6634, + "id": 10674, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221024,15 +220732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7031, + "id": 10675, "result": { "type": "IOI", "score": [ @@ -221045,14 +220753,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 365, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7106, + "id": 10676, "result": { "type": "IOI", "score": [ @@ -221065,18 +220773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 365, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7394, + "id": 10677, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221085,18 +220793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 365, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7445, + "id": 10678, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221104,19 +220812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7561, + "id": 10679, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221124,19 +220832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8009, + "id": 10680, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221144,19 +220852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8114, + "id": 10681, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221164,15 +220872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 365, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9489, + "id": 10682, "result": { "type": "IOI", "score": [ @@ -221185,18 +220893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9609, + "id": 10683, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221205,18 +220913,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9806, + "id": 10684, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221224,19 +220932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9851, + "id": 10685, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221245,14 +220953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10052, + "id": 10686, "result": { "type": "IOI", "score": [ @@ -221265,18 +220973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10078, + "id": 10687, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221284,19 +220992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10267, + "id": 10688, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221305,18 +221013,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10369, + "id": 10689, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221324,19 +221032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10566, + "id": 10690, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221345,18 +221053,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10747, + "id": 10691, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221364,19 +221072,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 365, + "problemId": "d1.3", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10881, + "id": 10692, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144279", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10693, + "result": { + "type": "IOI", + "score": [ + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221385,18 +221113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 365, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1687, + "id": 10694, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221404,19 +221132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 324, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5814, + "id": 10695, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221424,19 +221152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 324, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6192, + "id": 10696, "result": { "type": "IOI", "score": [ - 24.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221444,19 +221172,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 324, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6372, + "id": 10697, "result": { "type": "IOI", "score": [ - 100.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221464,15 +221192,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144121", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10698, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144145", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10699, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 324, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9628, + "id": 10700, "result": { "type": "IOI", "score": [ @@ -221485,14 +221257,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 324, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10797, + "id": 10701, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144449", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10702, "result": { "type": "IOI", "score": [ @@ -221505,34 +221297,78 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 324, + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11139, + "id": 10703, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10704, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144248", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10705, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 324, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11389, + "id": 10706, "result": { "type": "IOI", "score": [ @@ -221545,18 +221381,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 324, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11492, + "id": 10707, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144254", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10708, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144425", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10709, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221565,18 +221441,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 324, + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11521, + "id": 10710, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221585,14 +221461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 324, + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1689, + "id": 10711, "result": { "type": "IOI", "score": [ @@ -221604,15 +221480,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 42, + "problemId": "d1.3", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3277, + "id": 10712, "result": { "type": "IOI", "score": [ @@ -221624,19 +221500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 42, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3678, + "id": 10713, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221644,19 +221520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 42, + "problemId": "d1.2", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4493, + "id": 10714, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221665,18 +221541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 42, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6044, + "id": 10715, "result": { "type": "IOI", "score": [ - 0.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221685,14 +221561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 42, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1712, + "id": 10716, "result": { "type": "IOI", "score": [ @@ -221705,18 +221581,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 344, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1799, + "id": 10717, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221725,38 +221601,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 344, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1858, + "id": 10718, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1868, + "id": 10719, "result": { "type": "IOI", "score": [ @@ -221768,91 +221640,79 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 344, + "problemId": "d1.2", + "teamId": "144283", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1930, + "id": 10720, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1945, + "id": 10721, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 344, + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1967, + "id": 10722, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2085, + "id": 10723, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221861,18 +221721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 344, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2944, + "id": 10724, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221880,15 +221740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3536, + "id": 10725, "result": { "type": "IOI", "score": [ @@ -221900,19 +221760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3722, + "id": 10726, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221920,19 +221780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3828, + "id": 10727, "result": { "type": "IOI", "score": [ - 9.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221940,19 +221800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4390, + "id": 10728, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221960,19 +221820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5031, + "id": 10729, "result": { "type": "IOI", "score": [ - 24.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -221981,18 +221841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 344, + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6236, + "id": 10730, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222000,19 +221860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6722, + "id": 10731, "result": { "type": "IOI", "score": [ - 16.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222020,19 +221880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144206", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7977, + "id": 10732, "result": { "type": "IOI", "score": [ - 38.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222040,15 +221900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 344, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11201, + "id": 10733, "result": { "type": "IOI", "score": [ @@ -222060,15 +221920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11681, + "id": 10734, "result": { "type": "IOI", "score": [ @@ -222080,19 +221940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 344, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1777, + "id": 10735, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222101,38 +221961,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2343, + "id": 10736, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 357, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4596, + "id": 10737, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222141,18 +222005,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144295", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4849, + "id": 10738, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222160,19 +222024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 357, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5711, + "id": 10739, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222181,18 +222045,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7847, + "id": 10740, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222200,19 +222064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 357, + "problemId": "d1.2", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7906, + "id": 10741, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222220,19 +222084,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 357, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8220, + "id": 10742, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222241,18 +222105,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8420, + "id": 10743, "result": { "type": "IOI", "score": [ - 48.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222260,15 +222124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 357, + "problemId": "d1.4", + "teamId": "144490", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9150, + "id": 10744, "result": { "type": "IOI", "score": [ @@ -222281,18 +222145,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9208, + "id": 10745, "result": { "type": "IOI", "score": [ - 48.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222300,19 +222164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 357, + "problemId": "d1.4", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10261, + "id": 10746, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222321,18 +222185,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 357, + "teamId": "144510", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1779, + "id": 10747, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222340,19 +222204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 235, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1813, + "id": 10748, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222361,18 +222225,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 235, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1844, + "id": 10749, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144135", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10750, + "result": { + "type": "IOI", + "score": [ + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222380,19 +222268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 235, + "problemId": "d1.1", + "teamId": "144073", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2136, + "id": 10751, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222400,19 +222288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 235, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7685, + "id": 10752, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222420,19 +222308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.3", + "teamId": "144163", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7698, + "id": 10753, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222440,15 +222328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7752, + "id": 10754, "result": { "type": "IOI", "score": [ @@ -222461,18 +222349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 235, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7764, + "id": 10755, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222480,19 +222368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7816, + "id": 10756, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222500,19 +222388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7973, + "id": 10757, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222521,14 +222409,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 235, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8218, + "id": 10758, "result": { "type": "IOI", "score": [ @@ -222541,18 +222429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 235, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8338, + "id": 10759, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222560,19 +222448,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8585, + "id": 10760, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144296", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10761, + "result": { + "type": "IOI", + "score": [ + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222581,14 +222489,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 235, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8771, + "id": 10762, "result": { "type": "IOI", "score": [ @@ -222600,19 +222508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10203, + "id": 10763, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222620,19 +222528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10513, + "id": 10764, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222640,19 +222548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10655, + "id": 10765, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222660,19 +222568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.3", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10898, + "id": 10766, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222680,19 +222588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11114, + "id": 10767, "result": { "type": "IOI", "score": [ - 23.0 + 58.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222700,19 +222608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.1", + "teamId": "144381", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11570, + "id": 10768, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222720,19 +222628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11613, + "id": 10769, "result": { "type": "IOI", "score": [ - 23.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222740,19 +222648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 235, + "problemId": "d1.2", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11713, + "id": 10770, "result": { "type": "IOI", "score": [ - 23.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222761,18 +222669,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 235, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1806, + "id": 10771, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222781,18 +222689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 110, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2055, + "id": 10772, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222800,19 +222708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 110, + "problemId": "d1.4", + "teamId": "144469", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2076, + "id": 10773, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222820,19 +222728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2139, + "id": 10774, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222840,15 +222748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2809, + "id": 10775, "result": { "type": "IOI", "score": [ @@ -222860,39 +222768,63 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3036, + "id": 10776, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144248", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10777, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3237, + "id": 10778, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222900,15 +222832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3458, + "id": 10779, "result": { "type": "IOI", "score": [ @@ -222920,15 +222852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 110, + "problemId": "d1.4", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3500, + "id": 10780, "result": { "type": "IOI", "score": [ @@ -222941,18 +222873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 110, + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3524, + "id": 10781, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -222961,14 +222893,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 110, + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3560, + "id": 10782, "result": { "type": "IOI", "score": [ @@ -222980,19 +222912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5072, + "id": 10783, "result": { "type": "IOI", "score": [ - 24.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223000,19 +222932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5649, + "id": 10784, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223020,19 +222952,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6080, + "id": 10785, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223041,18 +222973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 110, + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6210, + "id": 10786, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223060,19 +222992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6268, + "id": 10787, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223080,19 +223012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8421, + "id": 10788, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223100,19 +223032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9975, + "id": 10789, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223120,15 +223052,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10114, + "id": 10790, "result": { "type": "IOI", "score": [ @@ -223145,18 +223077,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 110, + "teamId": "144358", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10133, + "id": 10791, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223164,19 +223096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 110, + "problemId": "d1.4", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10374, + "id": 10792, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223184,15 +223116,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10511, + "id": 10793, "result": { "type": "IOI", "score": [ @@ -223204,19 +223136,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 110, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11554, + "id": 10794, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223224,19 +223156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.1", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11691, + "id": 10795, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223244,19 +223176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 110, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1817, + "id": 10796, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223264,15 +223196,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 417, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1894, + "id": 10797, "result": { "type": "IOI", "score": [ @@ -223284,15 +223216,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 417, + "problemId": "d1.3", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2016, + "id": 10798, "result": { "type": "IOI", "score": [ @@ -223304,19 +223236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 417, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4898, + "id": 10799, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223324,19 +223256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 417, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5914, + "id": 10800, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223345,18 +223277,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 417, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6214, + "id": 10801, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223365,18 +223297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 417, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6452, + "id": 10802, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223384,19 +223316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 417, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6935, + "id": 10803, "result": { "type": "IOI", "score": [ - 32.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223404,39 +223336,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 417, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7604, + "id": 10804, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 417, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9049, + "id": 10805, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223444,15 +223380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 417, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9144, + "id": 10806, "result": { "type": "IOI", "score": [ @@ -223465,18 +223401,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 417, + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1823, + "id": 10807, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223484,19 +223420,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 370, + "problemId": "d1.3", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2163, + "id": 10808, "result": { "type": "IOI", "score": [ - 23.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223504,15 +223440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 370, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3406, + "id": 10809, "result": { "type": "IOI", "score": [ @@ -223525,18 +223461,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 370, + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3478, + "id": 10810, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223544,19 +223480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 370, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3698, + "id": 10811, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223564,19 +223500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 370, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4012, + "id": 10812, "result": { "type": "IOI", "score": [ - 38.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223584,19 +223520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 370, + "problemId": "d1.1", + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10762, + "id": 10813, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223605,18 +223541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 370, + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10996, + "id": 10814, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223624,19 +223560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 370, + "problemId": "d1.3", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11897, + "id": 10815, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223645,14 +223581,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 370, + "teamId": "144358", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11906, + "id": 10816, "result": { "type": "IOI", "score": [ @@ -223664,15 +223600,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 370, + "problemId": "d1.1", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12104, + "id": 10817, "result": { "type": "IOI", "score": [ @@ -223684,19 +223620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 370, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1832, + "id": 10818, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223704,19 +223640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2200, + "id": 10819, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223724,35 +223660,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3655, + "id": 10820, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3700, + "id": 10821, "result": { "type": "IOI", "score": [ @@ -223764,59 +223704,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3727, - "result": { - "type": "IOI", - "score": [ - 50.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 209, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3826, - "result": { - "type": "IOI", - "score": [ - 50.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.2", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3858, + "id": 10822, "result": { "type": "IOI", "score": [ - 50.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223824,19 +223724,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3946, + "id": 10823, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223844,19 +223744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4131, + "id": 10824, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223864,19 +223764,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4195, + "id": 10825, "result": { "type": "IOI", "score": [ - 21.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223884,19 +223784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.2", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4228, + "id": 10826, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223904,19 +223804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.1", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4716, + "id": 10827, "result": { "type": "IOI", "score": [ - 50.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223924,19 +223824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.1", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4926, + "id": 10828, "result": { "type": "IOI", "score": [ - 50.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223944,15 +223844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5345, + "id": 10829, "result": { "type": "IOI", "score": [ @@ -223964,19 +223864,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.3", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5390, + "id": 10830, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -223984,15 +223884,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 209, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10102, + "id": 10831, "result": { "type": "IOI", "score": [ @@ -224004,15 +223904,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 209, + "problemId": "d1.2", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10316, + "id": 10832, "result": { "type": "IOI", "score": [ @@ -224024,19 +223924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 209, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10437, + "id": 10833, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224044,19 +223944,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 209, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10692, + "id": 10834, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224065,38 +223965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 209, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 1876, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 43, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1879, + "id": 10835, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224104,19 +223984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1992, + "id": 10836, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224124,19 +224004,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2037, + "id": 10837, "result": { "type": "IOI", "score": [ - 24.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224145,18 +224025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 43, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2470, + "id": 10838, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224164,15 +224044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2901, + "id": 10839, "result": { "type": "IOI", "score": [ @@ -224184,19 +224064,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.3", + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2946, + "id": 10840, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224204,15 +224084,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3033, + "id": 10841, "result": { "type": "IOI", "score": [ @@ -224224,43 +224104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4015, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4231, + "id": 10842, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224269,18 +224125,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 43, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4722, + "id": 10843, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224288,15 +224144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4771, + "id": 10844, "result": { "type": "IOI", "score": [ @@ -224308,19 +224164,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5000, + "id": 10845, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224328,15 +224184,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144508", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5117, + "id": 10846, "result": { "type": "IOI", "score": [ @@ -224348,19 +224204,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5397, + "id": 10847, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224368,19 +224224,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6514, + "id": 10848, "result": { "type": "IOI", "score": [ - 27.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224388,19 +224244,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7917, + "id": 10849, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224408,15 +224264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8023, + "id": 10850, "result": { "type": "IOI", "score": [ @@ -224428,39 +224284,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8038, + "id": 10851, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8063, + "id": 10852, "result": { "type": "IOI", "score": [ - 36.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224469,18 +224329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 43, + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8413, + "id": 10853, "result": { "type": "IOI", "score": [ - 36.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224488,19 +224348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8554, + "id": 10854, "result": { "type": "IOI", "score": [ - 15.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224508,19 +224368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8928, + "id": 10855, "result": { "type": "IOI", "score": [ - 50.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224528,19 +224388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.1", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8985, + "id": 10856, "result": { "type": "IOI", "score": [ - 38.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224548,19 +224408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9907, + "id": 10857, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224569,18 +224429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 43, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9952, + "id": 10858, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224588,19 +224448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 43, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9970, + "id": 10859, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224608,19 +224468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10049, + "id": 10860, "result": { "type": "IOI", "score": [ - 0.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224628,19 +224488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 43, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10168, + "id": 10861, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224648,15 +224508,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 43, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10625, + "id": 10862, "result": { "type": "IOI", "score": [ @@ -224668,19 +224528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 43, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10627, + "id": 10863, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224689,38 +224549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 43, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10635, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 43, + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10887, + "id": 10864, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224729,18 +224569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 43, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11385, + "id": 10865, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224749,14 +224589,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 43, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1884, + "id": 10866, "result": { "type": "IOI", "score": [ @@ -224769,38 +224609,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 126, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2727, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3230, + "id": 10867, "result": { "type": "IOI", "score": [ @@ -224813,86 +224629,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 126, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3260, + "id": 10868, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 126, + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3620, + "id": 10869, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3796, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4192, + "id": 10870, "result": { "type": "IOI", "score": [ - 23.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -224901,14 +224689,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 126, + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4290, + "id": 10871, "result": { "type": "IOI", "score": [ @@ -224924,119 +224712,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4312, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5251, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 126, + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5616, + "id": 10872, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7166, - "result": { - "type": "IOI", - "score": [ - 27.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 126, + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7306, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8203, + "id": 10873, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225045,18 +224757,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 126, + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8369, + "id": 10874, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225064,19 +224776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8459, + "id": 10875, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225084,19 +224796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.3", + "teamId": "144457", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8528, + "id": 10876, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225104,19 +224816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8627, + "id": 10877, "result": { "type": "IOI", "score": [ - 64.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225124,19 +224836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8825, + "id": 10878, "result": { "type": "IOI", "score": [ - 55.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225144,19 +224856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, + "problemId": "d1.2", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9105, + "id": 10879, "result": { "type": "IOI", "score": [ - 55.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225165,14 +224877,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 126, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9412, + "id": 10880, "result": { "type": "IOI", "score": [ @@ -225184,59 +224896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10691, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.3", - "teamId": 126, + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11709, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 126, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11848, + "id": 10881, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225244,15 +224916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 126, + "problemId": "d1.1", + "teamId": "144435", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1900, + "id": 10882, "result": { "type": "IOI", "score": [ @@ -225265,74 +224937,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 140, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2089, + "id": 10883, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 140, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2721, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 140, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 2884, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3901, + "id": 10884, "result": { "type": "IOI", "score": [ @@ -225349,34 +224985,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 140, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3917, + "id": 10885, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144351", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 10886, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 140, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4270, + "id": 10887, "result": { "type": "IOI", "score": [ @@ -225388,19 +225048,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 140, + "problemId": "d1.3", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4432, + "id": 10888, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225408,19 +225068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 140, + "problemId": "d1.3", + "teamId": "144127", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6536, + "id": 10889, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225428,19 +225088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 140, + "problemId": "d1.3", + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6900, + "id": 10890, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225448,19 +225108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7066, + "id": 10891, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225468,19 +225128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7125, + "id": 10892, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225489,18 +225149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 140, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7128, + "id": 10893, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225508,15 +225168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 140, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8437, + "id": 10894, "result": { "type": "IOI", "score": [ @@ -225529,18 +225189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 140, + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8625, + "id": 10895, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225548,19 +225208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8808, + "id": 10896, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225569,18 +225229,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 140, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9333, + "id": 10897, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225588,19 +225248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9678, + "id": 10898, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225608,15 +225268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9774, + "id": 10899, "result": { "type": "IOI", "score": [ @@ -225628,15 +225288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9783, + "id": 10900, "result": { "type": "IOI", "score": [ @@ -225648,19 +225308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10712, + "id": 10901, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225669,18 +225329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 140, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10718, + "id": 10902, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225688,19 +225348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11365, + "id": 10903, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225708,19 +225368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11550, + "id": 10904, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225728,19 +225388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 140, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1902, + "id": 10905, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225748,19 +225408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2035, + "id": 10906, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225768,19 +225428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 47, + "problemId": "d1.1", + "teamId": "144484", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2081, + "id": 10907, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225788,15 +225448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2564, + "id": 10908, "result": { "type": "IOI", "score": [ @@ -225809,18 +225469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 47, + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5014, + "id": 10909, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225828,39 +225488,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5240, + "id": 10910, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7421, + "id": 10911, "result": { "type": "IOI", "score": [ - 100.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225868,39 +225532,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8444, + "id": 10912, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 47, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8752, + "id": 10913, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225908,19 +225576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8795, + "id": 10914, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225929,18 +225597,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 47, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8834, + "id": 10915, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225949,14 +225617,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 47, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9080, + "id": 10916, "result": { "type": "IOI", "score": [ @@ -225968,19 +225636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9118, + "id": 10917, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -225988,15 +225656,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.4", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9149, + "id": 10918, "result": { "type": "IOI", "score": [ @@ -226008,19 +225676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9630, + "id": 10919, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226028,15 +225696,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9648, + "id": 10920, "result": { "type": "IOI", "score": [ @@ -226049,18 +225717,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 47, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10083, + "id": 10921, "result": { "type": "IOI", "score": [ - 12.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226068,19 +225736,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10424, + "id": 10922, "result": { "type": "IOI", "score": [ - 22.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226088,19 +225756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11126, + "id": 10923, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226108,15 +225776,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11421, + "id": 10924, "result": { "type": "IOI", "score": [ @@ -226129,18 +225797,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 47, + "teamId": "144413", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11511, + "id": 10925, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226148,19 +225816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144360", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11809, + "id": 10926, "result": { "type": "IOI", "score": [ - 22.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226169,18 +225837,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 47, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11858, + "id": 10927, "result": { "type": "IOI", "score": [ - 22.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226188,19 +225856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11908, + "id": 10928, "result": { "type": "IOI", "score": [ - 22.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226209,18 +225877,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 47, + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11930, + "id": 10929, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226228,19 +225896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11949, + "id": 10930, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226248,15 +225916,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 47, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1917, + "id": 10931, "result": { "type": "IOI", "score": [ @@ -226269,18 +225937,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 220, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4302, + "id": 10932, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226288,19 +225956,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 220, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5019, + "id": 10933, "result": { "type": "IOI", "score": [ - 23.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226308,19 +225976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 220, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9475, + "id": 10934, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226328,15 +225996,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 220, + "problemId": "d1.4", + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9844, + "id": 10935, "result": { "type": "IOI", "score": [ @@ -226349,18 +226017,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 220, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10108, + "id": 10936, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226369,18 +226037,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 220, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10142, + "id": 10937, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226388,19 +226056,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 220, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11411, + "id": 10938, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226408,43 +226076,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 220, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1926, + "id": 10939, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 206, + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1941, + "id": 10940, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226452,19 +226116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 206, + "problemId": "d1.3", + "teamId": "144241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8080, + "id": 10941, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226473,18 +226137,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 206, + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8374, + "id": 10942, "result": { "type": "IOI", "score": [ - 12.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226492,19 +226156,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 206, + "problemId": "d1.3", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8556, + "id": 10943, "result": { "type": "IOI", "score": [ - 12.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226512,19 +226176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 206, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9861, + "id": 10944, "result": { "type": "IOI", "score": [ - 14.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226533,18 +226197,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 206, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10155, + "id": 10945, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226552,19 +226216,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 206, + "problemId": "d1.3", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11314, + "id": 10946, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226572,19 +226236,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 206, + "problemId": "d1.2", + "teamId": "144459", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11656, + "id": 10947, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226593,18 +226257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 206, + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 1974, + "id": 10948, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226612,19 +226276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3167, + "id": 10949, "result": { "type": "IOI", "score": [ - 25.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226632,19 +226296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3249, + "id": 10950, "result": { "type": "IOI", "score": [ - 25.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226652,19 +226316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 98, + "problemId": "d1.4", + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3548, + "id": 10951, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226672,15 +226336,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5262, + "id": 10952, "result": { "type": "IOI", "score": [ @@ -226693,18 +226357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 98, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5266, + "id": 10953, "result": { "type": "IOI", "score": [ - 100.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226712,19 +226376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9971, + "id": 10954, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226732,19 +226396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.1", + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10426, + "id": 10955, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226753,18 +226417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 98, + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10662, + "id": 10956, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226772,19 +226436,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10700, + "id": 10957, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226792,19 +226456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.4", + "teamId": "144287", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10932, + "id": 10958, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226812,15 +226476,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.1", + "teamId": "144365", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11067, + "id": 10959, "result": { "type": "IOI", "score": [ @@ -226832,15 +226496,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11540, + "id": 10960, "result": { "type": "IOI", "score": [ @@ -226853,14 +226517,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 98, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11755, + "id": 10961, "result": { "type": "IOI", "score": [ @@ -226873,18 +226537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 98, + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11825, + "id": 10962, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226892,19 +226556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 98, + "problemId": "d1.2", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12013, + "id": 10963, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226913,18 +226577,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 98, + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2023, + "id": 10964, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226932,19 +226596,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 15, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2095, + "id": 10965, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226952,19 +226616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 15, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3292, + "id": 10966, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226972,19 +226636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3630, + "id": 10967, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -226993,38 +226657,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 15, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4025, + "id": 10968, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4116, + "id": 10969, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227033,18 +226701,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 15, + "teamId": "144464", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4174, + "id": 10970, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227052,19 +226720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4221, + "id": 10971, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227072,15 +226740,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 15, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4383, + "id": 10972, "result": { "type": "IOI", "score": [ @@ -227093,18 +226761,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4442, + "id": 10973, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227112,19 +226780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4456, + "id": 10974, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227133,14 +226801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4583, + "id": 10975, "result": { "type": "IOI", "score": [ @@ -227152,15 +226820,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.4", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4594, + "id": 10976, "result": { "type": "IOI", "score": [ @@ -227173,18 +226841,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4635, + "id": 10977, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227192,15 +226860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5671, + "id": 10978, "result": { "type": "IOI", "score": [ @@ -227212,35 +226880,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5845, + "id": 10979, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6291, + "id": 10980, "result": { "type": "IOI", "score": [ @@ -227253,18 +226925,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6307, + "id": 10981, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227272,15 +226944,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.4", + "teamId": "144178", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6548, + "id": 10982, "result": { "type": "IOI", "score": [ @@ -227293,18 +226965,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7190, + "id": 10983, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227312,15 +226984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 15, + "problemId": "d1.2", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7456, + "id": 10984, "result": { "type": "IOI", "score": [ @@ -227333,14 +227005,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144420", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8076, + "id": 10985, "result": { "type": "IOI", "score": [ @@ -227353,18 +227025,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8921, + "id": 10986, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227372,19 +227044,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 15, + "problemId": "d1.1", + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10770, + "id": 10987, "result": { "type": "IOI", "score": [ - 38.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227392,39 +227064,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 15, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11410, + "id": 10988, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 15, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2033, + "id": 10989, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227432,39 +227108,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 132, + "problemId": "d1.2", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2132, + "id": 10990, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 132, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2155, + "id": 10991, "result": { "type": "IOI", "score": [ @@ -227477,14 +227149,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 132, + "teamId": "144336", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8716, + "id": 10992, "result": { "type": "IOI", "score": [ @@ -227496,19 +227168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 132, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8898, + "id": 10993, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227517,18 +227189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 132, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9031, + "id": 10994, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227536,15 +227208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 132, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10615, + "id": 10995, "result": { "type": "IOI", "score": [ @@ -227556,15 +227228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 132, + "problemId": "d1.3", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11772, + "id": 10996, "result": { "type": "IOI", "score": [ @@ -227576,19 +227248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 132, + "problemId": "d1.2", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2106, + "id": 10997, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227596,15 +227268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.4", + "teamId": "144137", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3347, + "id": 10998, "result": { "type": "IOI", "score": [ @@ -227616,15 +227288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3348, + "id": 10999, "result": { "type": "IOI", "score": [ @@ -227636,19 +227308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 89, + "problemId": "d1.2", + "teamId": "144088", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3504, + "id": 11000, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227656,19 +227328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 89, + "problemId": "d1.1", + "teamId": "144319", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3892, + "id": 11001, "result": { "type": "IOI", "score": [ - 27.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227676,19 +227348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 89, + "problemId": "d1.3", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4032, + "id": 11002, "result": { "type": "IOI", "score": [ - 100.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227696,19 +227368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 89, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4903, + "id": 11003, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227716,15 +227388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 89, + "problemId": "d1.4", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4954, + "id": 11004, "result": { "type": "IOI", "score": [ @@ -227736,19 +227408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 89, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5169, + "id": 11005, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227757,18 +227429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 89, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5333, + "id": 11006, "result": { "type": "IOI", "score": [ - 46.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227777,14 +227449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 89, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5899, + "id": 11007, "result": { "type": "IOI", "score": [ @@ -227797,18 +227469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 89, + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6099, + "id": 11008, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227816,19 +227488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 89, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6146, + "id": 11009, "result": { "type": "IOI", "score": [ - 10.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227836,19 +227508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 89, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7352, + "id": 11010, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227856,19 +227528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.4", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7993, + "id": 11011, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227876,19 +227548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8117, + "id": 11012, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227897,18 +227569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 89, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8615, + "id": 11013, "result": { "type": "IOI", "score": [ - 0.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227916,19 +227588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.4", + "teamId": "144468", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9508, + "id": 11014, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227936,15 +227608,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 89, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9932, + "id": 11015, "result": { "type": "IOI", "score": [ @@ -227957,18 +227629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 89, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2159, + "id": 11016, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227976,19 +227648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.2", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2263, + "id": 11017, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -227996,15 +227668,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.2", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2283, + "id": 11018, "result": { "type": "IOI", "score": [ @@ -228016,15 +227688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2577, + "id": 11019, "result": { "type": "IOI", "score": [ @@ -228037,18 +227709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 432, + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2834, + "id": 11020, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228056,19 +227728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3065, + "id": 11021, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228076,15 +227748,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3187, + "id": 11022, "result": { "type": "IOI", "score": [ @@ -228096,19 +227768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4946, + "id": 11023, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228116,15 +227788,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5061, + "id": 11024, "result": { "type": "IOI", "score": [ @@ -228136,19 +227808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5088, + "id": 11025, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228156,19 +227828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5243, + "id": 11026, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228176,19 +227848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5290, + "id": 11027, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228196,19 +227868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5358, + "id": 11028, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228216,19 +227888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5414, + "id": 11029, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228236,19 +227908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5492, + "id": 11030, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228256,15 +227928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5574, + "id": 11031, "result": { "type": "IOI", "score": [ @@ -228276,19 +227948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6760, + "id": 11032, "result": { "type": "IOI", "score": [ - 27.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228297,18 +227969,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 432, + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7037, + "id": 11033, "result": { "type": "IOI", "score": [ - 36.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228316,19 +227988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7396, + "id": 11034, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228336,19 +228008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7518, + "id": 11035, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228356,19 +228028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8129, + "id": 11036, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228377,18 +228049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 432, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9439, + "id": 11037, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228396,19 +228068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144292", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9537, + "id": 11038, "result": { "type": "IOI", "score": [ - 32.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228416,15 +228088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9578, + "id": 11039, "result": { "type": "IOI", "score": [ @@ -228437,18 +228109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 432, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9746, + "id": 11040, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228456,15 +228128,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.2", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9776, + "id": 11041, "result": { "type": "IOI", "score": [ @@ -228477,18 +228149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 432, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9877, + "id": 11042, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228496,19 +228168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9960, + "id": 11043, "result": { "type": "IOI", "score": [ - 16.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228516,19 +228188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10001, + "id": 11044, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228536,15 +228208,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.1", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10026, + "id": 11045, "result": { "type": "IOI", "score": [ @@ -228556,19 +228228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 432, + "problemId": "d1.4", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11085, + "id": 11046, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228576,19 +228248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11248, + "id": 11047, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228596,19 +228268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 432, + "problemId": "d1.3", + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2169, + "id": 11048, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228616,19 +228288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 282, + "problemId": "d1.2", + "teamId": "144474", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2445, + "id": 11049, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228636,15 +228308,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 282, + "problemId": "d1.1", + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2656, + "id": 11050, "result": { "type": "IOI", "score": [ @@ -228657,38 +228329,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 282, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2680, + "id": 11051, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 282, + "problemId": "d1.4", + "teamId": "144302", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2693, + "id": 11052, "result": { "type": "IOI", "score": [ @@ -228700,19 +228368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 282, + "problemId": "d1.4", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6283, + "id": 11053, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228720,15 +228388,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 282, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8486, + "id": 11054, "result": { "type": "IOI", "score": [ @@ -228740,19 +228408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 282, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8552, + "id": 11055, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228761,18 +228429,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 282, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9280, + "id": 11056, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228780,15 +228448,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 282, + "problemId": "d1.4", + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11643, + "id": 11057, "result": { "type": "IOI", "score": [ @@ -228800,15 +228468,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 282, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2191, + "id": 11058, "result": { "type": "IOI", "score": [ @@ -228820,19 +228488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2330, + "id": 11059, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228841,18 +228509,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 185, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2430, + "id": 11060, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228861,18 +228529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 185, + "teamId": "144516", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2582, + "id": 11061, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228880,15 +228548,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 185, + "problemId": "d1.1", + "teamId": "144228", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2806, + "id": 11062, "result": { "type": "IOI", "score": [ @@ -228901,18 +228569,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 185, + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2820, + "id": 11063, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228920,19 +228588,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 185, + "problemId": "d1.1", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3160, + "id": 11064, "result": { "type": "IOI", "score": [ - 14.0 + 57.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144132", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11065, + "result": { + "type": "IOI", + "score": [ + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228941,18 +228629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 185, + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3247, + "id": 11066, "result": { "type": "IOI", "score": [ - 23.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -228961,14 +228649,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 185, + "teamId": "144475", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4232, + "id": 11067, "result": { "type": "IOI", "score": [ @@ -228980,19 +228668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4273, + "id": 11068, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229000,15 +228688,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4326, + "id": 11069, "result": { "type": "IOI", "score": [ @@ -229020,19 +228708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4564, + "id": 11070, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229041,14 +228729,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4595, + "id": 11071, "result": { "type": "IOI", "score": [ @@ -229061,14 +228749,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4601, + "id": 11072, "result": { "type": "IOI", "score": [ @@ -229080,39 +228768,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4621, + "id": 11073, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4656, + "id": 11074, "result": { "type": "IOI", "score": [ @@ -229124,15 +228808,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4789, + "id": 11075, "result": { "type": "IOI", "score": [ @@ -229145,18 +228829,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5027, + "id": 11076, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229164,15 +228848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5068, + "id": 11077, "result": { "type": "IOI", "score": [ @@ -229185,14 +228869,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5090, + "id": 11078, "result": { "type": "IOI", "score": [ @@ -229204,19 +228888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5491, + "id": 11079, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229224,15 +228908,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5802, + "id": 11080, "result": { "type": "IOI", "score": [ @@ -229244,15 +228928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5846, + "id": 11081, "result": { "type": "IOI", "score": [ @@ -229264,15 +228948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5865, + "id": 11082, "result": { "type": "IOI", "score": [ @@ -229284,19 +228968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5880, + "id": 11083, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229304,19 +228988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.4", + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5942, + "id": 11084, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229324,19 +229008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.4", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6091, + "id": 11085, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229344,19 +229028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6118, + "id": 11086, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229365,14 +229049,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6162, + "id": 11087, "result": { "type": "IOI", "score": [ @@ -229384,15 +229068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144080", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6182, + "id": 11088, "result": { "type": "IOI", "score": [ @@ -229404,19 +229088,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6540, + "id": 11089, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144078", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11090, + "result": { + "type": "IOI", + "score": [ + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229425,14 +229129,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6740, + "id": 11091, "result": { "type": "IOI", "score": [ @@ -229444,19 +229148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6896, + "id": 11092, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229465,14 +229169,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 185, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7498, + "id": 11093, "result": { "type": "IOI", "score": [ @@ -229484,19 +229188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 185, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8222, + "id": 11094, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229504,19 +229208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8673, + "id": 11095, "result": { "type": "IOI", "score": [ - 16.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229524,19 +229228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 185, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9082, + "id": 11096, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229544,43 +229248,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9199, + "id": 11097, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144203", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9227, + "id": 11098, "result": { "type": "IOI", "score": [ - 10.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229588,19 +229288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9266, + "id": 11099, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229609,18 +229309,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11205, + "id": 11100, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229628,19 +229328,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11966, + "id": 11101, "result": { "type": "IOI", "score": [ - 10.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229648,19 +229348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12014, + "id": 11102, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229669,18 +229369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 185, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12105, + "id": 11103, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229688,19 +229388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 185, + "problemId": "d1.3", + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2233, + "id": 11104, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229708,20 +229408,84 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 414, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2349, + "id": 11105, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144315", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11106, + "result": { + "type": "IOI", + "score": [ + 32.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144142", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11107, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144288", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11108, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -229729,14 +229493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 414, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2412, + "id": 11109, "result": { "type": "IOI", "score": [ @@ -229749,18 +229513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 414, + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2547, + "id": 11110, "result": { "type": "IOI", "score": [ - 47.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229769,14 +229533,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 414, + "teamId": "144144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5143, + "id": 11111, "result": { "type": "IOI", "score": [ @@ -229788,19 +229552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5205, + "id": 11112, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229809,18 +229573,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5400, + "id": 11113, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229828,19 +229592,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5447, + "id": 11114, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229848,19 +229612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5525, + "id": 11115, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229868,19 +229632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5643, + "id": 11116, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229889,18 +229653,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5665, + "id": 11117, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229908,15 +229672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5759, + "id": 11118, "result": { "type": "IOI", "score": [ @@ -229929,18 +229693,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5854, + "id": 11119, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229948,15 +229712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5871, + "id": 11120, "result": { "type": "IOI", "score": [ @@ -229969,18 +229733,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5907, + "id": 11121, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -229988,15 +229752,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6278, + "id": 11122, "result": { "type": "IOI", "score": [ @@ -230009,18 +229773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144511", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6553, + "id": 11123, "result": { "type": "IOI", "score": [ - 16.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230028,19 +229792,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7390, + "id": 11124, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144503", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11125, + "result": { + "type": "IOI", + "score": [ + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230048,19 +229836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.4", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7528, + "id": 11126, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230069,18 +229857,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 414, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7549, + "id": 11127, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230088,19 +229876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8293, + "id": 11128, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230108,19 +229896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8551, + "id": 11129, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230128,19 +229916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 414, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10335, + "id": 11130, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230148,19 +229936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 414, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10619, + "id": 11131, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230168,35 +229956,63 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 414, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10906, + "id": 11132, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 414, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2234, + "id": 11133, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144391", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11134, "result": { "type": "IOI", "score": [ @@ -230209,14 +230025,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 181, + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3321, + "id": 11135, "result": { "type": "IOI", "score": [ @@ -230229,38 +230045,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 181, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3704, + "id": 11136, + "result": { + "type": "IOI", + "score": [ + 12.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144324", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11137, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 181, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3715, + "id": 11138, "result": { "type": "IOI", "score": [ @@ -230272,15 +230104,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144214", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11139, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144394", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11140, + "result": { + "type": "IOI", + "score": [ + 14.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.4", - "teamId": 181, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4115, + "id": 11141, "result": { "type": "IOI", "score": [ @@ -230297,14 +230169,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 181, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4123, + "id": 11142, "result": { "type": "IOI", "score": [ @@ -230317,18 +230189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 181, + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6014, + "id": 11143, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230337,58 +230209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 181, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7228, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 181, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10020, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 181, + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2245, + "id": 11144, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230396,15 +230228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 285, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2948, + "id": 11145, "result": { "type": "IOI", "score": [ @@ -230416,44 +230248,20 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 285, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2993, + "id": 11146, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3040, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -230461,58 +230269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4632, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4694, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5115, + "id": 11147, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230520,15 +230288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 285, + "problemId": "d1.3", + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5227, + "id": 11148, "result": { "type": "IOI", "score": [ @@ -230541,14 +230309,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 285, + "teamId": "144110", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5393, + "id": 11149, "result": { "type": "IOI", "score": [ @@ -230565,98 +230333,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 285, + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5482, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5546, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5590, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5912, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 285, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6027, + "id": 11150, "result": { "type": "IOI", "score": [ - 31.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230664,19 +230352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 285, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7015, + "id": 11151, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230685,18 +230373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144184", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7046, + "id": 11152, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230704,19 +230392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7534, + "id": 11153, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230724,15 +230412,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7578, + "id": 11154, "result": { "type": "IOI", "score": [ @@ -230744,15 +230432,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7691, + "id": 11155, "result": { "type": "IOI", "score": [ @@ -230765,14 +230453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8000, + "id": 11156, "result": { "type": "IOI", "score": [ @@ -230785,18 +230473,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8072, + "id": 11157, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230805,18 +230493,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8166, + "id": 11158, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230825,38 +230513,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8273, + "id": 11159, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8472, + "id": 11160, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230865,18 +230557,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8499, + "id": 11161, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230884,19 +230576,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8633, + "id": 11162, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230904,15 +230596,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.2", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8751, + "id": 11163, "result": { "type": "IOI", "score": [ @@ -230925,18 +230617,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8886, + "id": 11164, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230945,18 +230637,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 285, + "teamId": "144497", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9078, + "id": 11165, "result": { "type": "IOI", "score": [ - 0.0 + 13.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230964,19 +230656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.4", + "teamId": "144077", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9646, + "id": 11166, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -230984,19 +230676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9668, + "id": 11167, "result": { "type": "IOI", "score": [ - 16.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231004,19 +230696,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11052, + "id": 11168, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231024,19 +230716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 285, + "problemId": "d1.1", + "teamId": "144499", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11951, + "id": 11169, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231045,14 +230737,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 285, + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2250, + "id": 11170, "result": { "type": "IOI", "score": [ @@ -231064,19 +230756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2265, + "id": 11171, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231084,19 +230776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 342, + "problemId": "d1.3", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2304, + "id": 11172, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231104,15 +230796,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 342, + "problemId": "d1.3", + "teamId": "144471", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3298, + "id": 11173, "result": { "type": "IOI", "score": [ @@ -231124,19 +230816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3303, + "id": 11174, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231144,15 +230836,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3740, + "id": 11175, "result": { "type": "IOI", "score": [ @@ -231169,14 +230861,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 342, + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3763, + "id": 11176, "result": { "type": "IOI", "score": [ @@ -231188,15 +230880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3829, + "id": 11177, "result": { "type": "IOI", "score": [ @@ -231209,18 +230901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 342, + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4030, + "id": 11178, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231228,15 +230920,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4061, + "id": 11179, "result": { "type": "IOI", "score": [ @@ -231248,15 +230940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4258, + "id": 11180, "result": { "type": "IOI", "score": [ @@ -231269,18 +230961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 342, + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4393, + "id": 11181, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231289,18 +230981,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 342, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4447, + "id": 11182, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231308,15 +231000,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4800, + "id": 11183, "result": { "type": "IOI", "score": [ @@ -231328,19 +231020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144437", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5837, + "id": 11184, "result": { "type": "IOI", "score": [ - 14.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231349,18 +231041,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 342, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6202, + "id": 11185, "result": { "type": "IOI", "score": [ - 23.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231368,39 +231060,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6959, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6983, + "id": 11186, "result": { "type": "IOI", "score": [ @@ -231412,19 +231080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.1", + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7689, + "id": 11187, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231433,18 +231101,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 342, + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7810, + "id": 11188, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231452,19 +231120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, + "problemId": "d1.3", + "teamId": "144466", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8084, + "id": 11189, "result": { "type": "IOI", "score": [ - 23.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231472,19 +231140,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8137, + "id": 11190, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231492,67 +231160,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8561, + "id": 11191, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8563, + "id": 11192, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8592, + "id": 11193, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231560,19 +231220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 342, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9173, + "id": 11194, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231580,19 +231240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 342, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2272, + "id": 11195, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231600,19 +231260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 59, + "problemId": "d1.3", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2618, + "id": 11196, "result": { "type": "IOI", "score": [ - 27.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231621,18 +231281,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 59, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2651, + "id": 11197, "result": { "type": "IOI", "score": [ - 27.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231641,18 +231301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 59, + "teamId": "144240", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8550, + "id": 11198, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231661,18 +231321,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 59, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11044, + "id": 11199, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231680,15 +231340,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 59, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11071, + "id": 11200, "result": { "type": "IOI", "score": [ @@ -231700,19 +231360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 59, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11419, + "id": 11201, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231720,19 +231380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 59, + "problemId": "d1.2", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11558, + "id": 11202, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231741,14 +231401,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 59, + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11697, + "id": 11203, "result": { "type": "IOI", "score": [ @@ -231761,18 +231421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 59, + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11757, + "id": 11204, "result": { "type": "IOI", "score": [ - 36.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231780,19 +231440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 59, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11932, + "id": 11205, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231801,14 +231461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 59, + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12012, + "id": 11206, "result": { "type": "IOI", "score": [ @@ -231820,19 +231480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 59, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2284, + "id": 11207, "result": { "type": "IOI", "score": [ - 31.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231840,19 +231500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 165, + "problemId": "d1.4", + "teamId": "144500", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2317, + "id": 11208, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231860,19 +231520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2696, + "id": 11209, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231880,19 +231540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3148, + "id": 11210, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231900,19 +231560,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3845, + "id": 11211, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231920,15 +231580,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4533, + "id": 11212, "result": { "type": "IOI", "score": [ @@ -231940,19 +231600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4580, + "id": 11213, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231960,19 +231620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4617, + "id": 11214, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -231981,18 +231641,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 165, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7338, + "id": 11215, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232000,19 +231660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7739, + "id": 11216, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232021,18 +231681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 165, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7880, + "id": 11217, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232040,43 +231700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 165, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8457, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8480, + "id": 11218, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232084,19 +231720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9193, + "id": 11219, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232104,19 +231740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9229, + "id": 11220, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232124,19 +231760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.1", + "teamId": "144378", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9356, + "id": 11221, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232144,19 +231780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9945, + "id": 11222, "result": { "type": "IOI", "score": [ - 100.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232164,19 +231800,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 165, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11293, + "id": 11223, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232185,14 +231821,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 165, + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11372, + "id": 11224, "result": { "type": "IOI", "score": [ @@ -232204,19 +231840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11406, + "id": 11225, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232224,43 +231860,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11429, + "id": 11226, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11471, + "id": 11227, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232268,19 +231900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11616, + "id": 11228, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232288,19 +231920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11785, + "id": 11229, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232308,15 +231940,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.2", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11827, + "id": 11230, "result": { "type": "IOI", "score": [ @@ -232329,18 +231961,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 165, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11866, + "id": 11231, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232348,19 +231980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 165, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2308, + "id": 11232, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232369,18 +232001,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 250, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2683, + "id": 11233, "result": { "type": "IOI", "score": [ - 0.0 + 21.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232388,19 +232020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 250, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2783, + "id": 11234, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232408,19 +232040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3645, + "id": 11235, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232428,19 +232060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.1", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4222, + "id": 11236, "result": { "type": "IOI", "score": [ - 27.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232448,19 +232080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4307, + "id": 11237, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232468,19 +232100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4385, + "id": 11238, "result": { "type": "IOI", "score": [ - 27.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232489,18 +232121,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 250, + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4481, + "id": 11239, "result": { "type": "IOI", "score": [ - 27.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232509,18 +232141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 250, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4498, + "id": 11240, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232528,19 +232160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4928, + "id": 11241, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232548,19 +232180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5049, + "id": 11242, "result": { "type": "IOI", "score": [ - 63.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232568,19 +232200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5386, + "id": 11243, "result": { "type": "IOI", "score": [ - 0.0 + 20.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232588,19 +232220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5548, + "id": 11244, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232608,19 +232240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5591, + "id": 11245, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232628,19 +232260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.1", + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5708, + "id": 11246, "result": { "type": "IOI", "score": [ - 63.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232648,19 +232280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.1", + "teamId": "144191", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6592, + "id": 11247, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232669,18 +232301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 250, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6886, + "id": 11248, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232688,19 +232320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144502", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7172, + "id": 11249, "result": { "type": "IOI", "score": [ - 10.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232708,19 +232340,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7966, + "id": 11250, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232728,15 +232360,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8100, + "id": 11251, "result": { "type": "IOI", "score": [ @@ -232748,19 +232380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8346, + "id": 11252, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232768,19 +232400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8812, + "id": 11253, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232789,18 +232421,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 250, + "teamId": "144082", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8864, + "id": 11254, "result": { "type": "IOI", "score": [ - 22.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232808,19 +232440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8902, + "id": 11255, "result": { "type": "IOI", "score": [ - 35.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232828,19 +232460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8948, + "id": 11256, "result": { "type": "IOI", "score": [ - 47.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232848,19 +232480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8989, + "id": 11257, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232868,19 +232500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9081, + "id": 11258, "result": { "type": "IOI", "score": [ - 22.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232888,19 +232520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9156, + "id": 11259, "result": { "type": "IOI", "score": [ - 47.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232909,18 +232541,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 250, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10552, + "id": 11260, "result": { "type": "IOI", "score": [ - 63.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232929,14 +232561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 250, + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11187, + "id": 11261, "result": { "type": "IOI", "score": [ @@ -232948,19 +232580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11367, + "id": 11262, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232968,19 +232600,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11500, + "id": 11263, "result": { "type": "IOI", "score": [ - 63.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -232988,19 +232620,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 250, + "problemId": "d1.1", + "teamId": "144374", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2368, + "id": 11264, "result": { "type": "IOI", "score": [ - 100.0 + 17.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233008,19 +232640,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 164, + "problemId": "d1.3", + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3903, + "id": 11265, "result": { "type": "IOI", "score": [ - 0.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233028,19 +232660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 164, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3953, + "id": 11266, "result": { "type": "IOI", "score": [ - 35.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233049,18 +232681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 164, + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4079, + "id": 11267, "result": { "type": "IOI", "score": [ - 46.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233068,19 +232700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 164, + "problemId": "d1.4", + "teamId": "144177", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4098, + "id": 11268, "result": { "type": "IOI", "score": [ - 46.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233089,18 +232721,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 164, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4369, + "id": 11269, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233108,19 +232740,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 164, + "problemId": "d1.2", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4438, + "id": 11270, "result": { "type": "IOI", "score": [ - 68.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233128,19 +232760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 164, + "problemId": "d1.3", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4555, + "id": 11271, "result": { "type": "IOI", "score": [ - 68.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233148,19 +232780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 164, + "problemId": "d1.2", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4902, + "id": 11272, "result": { "type": "IOI", "score": [ - 68.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233169,18 +232801,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 164, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7414, + "id": 11273, "result": { "type": "IOI", "score": [ - 32.0 + 55.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233188,19 +232820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7555, + "id": 11274, "result": { "type": "IOI", "score": [ - 32.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233208,19 +232840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7720, + "id": 11275, "result": { "type": "IOI", "score": [ - 32.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233228,15 +232860,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8155, + "id": 11276, "result": { "type": "IOI", "score": [ @@ -233248,15 +232880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8249, + "id": 11277, "result": { "type": "IOI", "score": [ @@ -233268,19 +232900,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.1", + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8334, + "id": 11278, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233288,39 +232920,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.1", + "teamId": "144181", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8524, + "id": 11279, "result": { "type": "IOI", "score": [ - 32.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8574, + "id": 11280, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233328,19 +232964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.1", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9069, + "id": 11281, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233348,15 +232984,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.1", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9324, + "id": 11282, "result": { "type": "IOI", "score": [ @@ -233373,14 +233009,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 164, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9375, + "id": 11283, "result": { "type": "IOI", "score": [ @@ -233393,18 +233029,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 164, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9435, + "id": 11284, "result": { "type": "IOI", "score": [ - 48.0 + 50.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233412,15 +233048,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 164, + "problemId": "d1.4", + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10641, + "id": 11285, "result": { "type": "IOI", "score": [ @@ -233432,19 +233068,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144265", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11286, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 164, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12042, + "id": 11287, "result": { "type": "IOI", "score": [ - 31.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233453,18 +233109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 164, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2370, + "id": 11288, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233472,19 +233128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 326, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5183, + "id": 11289, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233493,18 +233149,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5201, + "id": 11290, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233512,19 +233168,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 326, + "problemId": "d1.4", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5606, + "id": 11291, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144364", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11292, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233533,42 +233209,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6016, + "id": 11293, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6058, + "id": 11294, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233577,14 +233249,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6420, + "id": 11295, "result": { "type": "IOI", "score": [ @@ -233597,14 +233269,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6510, + "id": 11296, "result": { "type": "IOI", "score": [ @@ -233617,42 +233289,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 326, + "teamId": "144265", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6782, + "id": 11297, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 326, + "problemId": "d1.1", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6798, + "id": 11298, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233660,19 +233328,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 326, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7150, + "id": 11299, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144070", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11300, + "result": { + "type": "IOI", + "score": [ + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233681,18 +233369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 326, + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2377, + "id": 11301, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233700,19 +233388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3940, + "id": 11302, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233721,18 +233409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4651, + "id": 11303, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233740,19 +233428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4744, + "id": 11304, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233761,14 +233449,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5073, + "id": 11305, "result": { "type": "IOI", "score": [ @@ -233781,18 +233469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5113, + "id": 11306, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233800,19 +233488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5130, + "id": 11307, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233820,19 +233508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5151, + "id": 11308, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233840,19 +233528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5265, + "id": 11309, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233860,19 +233548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5280, + "id": 11310, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233880,19 +233568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5295, + "id": 11311, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233901,18 +233589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5398, + "id": 11312, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233920,19 +233608,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144139", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5420, + "id": 11313, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233940,19 +233628,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5451, + "id": 11314, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233960,19 +233648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5464, + "id": 11315, "result": { "type": "IOI", "score": [ - 16.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -233980,19 +233668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5486, + "id": 11316, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234000,19 +233688,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5498, + "id": 11317, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234020,19 +233708,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5562, + "id": 11318, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234040,19 +233728,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144313", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9057, + "id": 11319, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234061,18 +233749,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 151, + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9866, + "id": 11320, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234080,19 +233768,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 151, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10567, + "id": 11321, "result": { "type": "IOI", "score": [ - 23.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234100,19 +233788,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 151, + "problemId": "d1.1", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11003, + "id": 11322, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234120,19 +233808,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11424, + "id": 11323, "result": { "type": "IOI", "score": [ - 16.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234140,19 +233828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 151, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11470, + "id": 11324, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234161,14 +233849,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11565, + "id": 11325, "result": { "type": "IOI", "score": [ @@ -234181,14 +233869,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 151, + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2399, + "id": 11326, "result": { "type": "IOI", "score": [ @@ -234201,18 +233889,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 373, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4355, + "id": 11327, "result": { "type": "IOI", "score": [ - 48.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234221,14 +233909,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 373, + "teamId": "144200", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4662, + "id": 11328, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144449", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11329, "result": { "type": "IOI", "score": [ @@ -234240,15 +233948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 373, + "problemId": "d1.3", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5804, + "id": 11330, "result": { "type": "IOI", "score": [ @@ -234260,19 +233968,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144345", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11331, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144231", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11332, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 373, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5877, + "id": 11333, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234281,14 +234029,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 373, + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7215, + "id": 11334, "result": { "type": "IOI", "score": [ @@ -234301,14 +234049,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 373, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7330, + "id": 11335, "result": { "type": "IOI", "score": [ @@ -234321,14 +234069,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 373, + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7384, + "id": 11336, "result": { "type": "IOI", "score": [ @@ -234340,19 +234088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 373, + "problemId": "d1.2", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7472, + "id": 11337, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234360,19 +234108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 373, + "problemId": "d1.2", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7523, + "id": 11338, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234380,19 +234128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 373, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7542, + "id": 11339, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234401,14 +234149,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 373, + "teamId": "144295", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7571, + "id": 11340, "result": { "type": "IOI", "score": [ @@ -234420,19 +234168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 373, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7909, + "id": 11341, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234441,18 +234189,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 373, + "teamId": "144445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10318, + "id": 11342, "result": { "type": "IOI", "score": [ - 31.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234460,19 +234208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 373, + "problemId": "d1.4", + "teamId": "144301", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10713, + "id": 11343, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234480,19 +234228,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 373, + "problemId": "d1.3", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10789, + "id": 11344, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234500,19 +234248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 373, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2413, + "id": 11345, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234521,18 +234269,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2937, + "id": 11346, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234541,14 +234289,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3017, + "id": 11347, "result": { "type": "IOI", "score": [ @@ -234560,19 +234308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3062, + "id": 11348, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234581,14 +234329,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3157, + "id": 11349, + "result": { + "type": "IOI", + "score": [ + 36.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144161", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11350, + "result": { + "type": "IOI", + "score": [ + 47.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144377", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11351, "result": { "type": "IOI", "score": [ @@ -234601,14 +234389,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3164, + "id": 11352, + "result": { + "type": "IOI", + "score": [ + 69.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144353", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11353, "result": { "type": "IOI", "score": [ @@ -234620,15 +234428,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3252, + "id": 11354, "result": { "type": "IOI", "score": [ @@ -234645,18 +234453,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3304, + "id": 11355, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234664,15 +234472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3380, + "id": 11356, "result": { "type": "IOI", "score": [ @@ -234685,14 +234493,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3395, + "id": 11357, "result": { "type": "IOI", "score": [ @@ -234704,19 +234512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3419, + "id": 11358, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234724,19 +234532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144410", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3528, + "id": 11359, "result": { "type": "IOI", "score": [ - 0.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234744,19 +234552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3567, + "id": 11360, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234764,15 +234572,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3643, + "id": 11361, "result": { "type": "IOI", "score": [ @@ -234785,18 +234593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3679, + "id": 11362, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234804,19 +234612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3709, + "id": 11363, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234824,15 +234632,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3723, + "id": 11364, "result": { "type": "IOI", "score": [ @@ -234844,15 +234652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3736, + "id": 11365, "result": { "type": "IOI", "score": [ @@ -234864,19 +234672,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3915, + "id": 11366, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234884,15 +234692,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3937, + "id": 11367, "result": { "type": "IOI", "score": [ @@ -234904,19 +234712,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3945, + "id": 11368, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234924,19 +234732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.4", + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3965, + "id": 11369, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234944,19 +234752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144260", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3986, + "id": 11370, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234964,19 +234772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4010, + "id": 11371, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -234985,14 +234793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4019, + "id": 11372, "result": { "type": "IOI", "score": [ @@ -235005,18 +234813,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4037, + "id": 11373, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235025,18 +234833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144518", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4068, + "id": 11374, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235045,18 +234853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 413, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4096, + "id": 11375, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235065,14 +234873,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4117, + "id": 11376, "result": { "type": "IOI", "score": [ @@ -235084,19 +234892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4187, + "id": 11377, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235104,19 +234912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4218, + "id": 11378, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235124,19 +234932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4233, + "id": 11379, "result": { "type": "IOI", "score": [ - 0.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235144,15 +234952,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.4", + "teamId": "144339", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4261, + "id": 11380, "result": { "type": "IOI", "score": [ @@ -235165,18 +234973,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4324, + "id": 11381, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235184,19 +234992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4387, + "id": 11382, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235204,19 +235012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.4", + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4396, + "id": 11383, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235224,19 +235032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4435, + "id": 11384, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235245,14 +235053,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4443, + "id": 11385, "result": { "type": "IOI", "score": [ @@ -235264,15 +235072,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144113", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4450, + "id": 11386, "result": { "type": "IOI", "score": [ @@ -235285,18 +235093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4475, + "id": 11387, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235305,18 +235113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4483, + "id": 11388, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235324,15 +235132,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4494, + "id": 11389, "result": { "type": "IOI", "score": [ @@ -235344,15 +235152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4530, + "id": 11390, "result": { "type": "IOI", "score": [ @@ -235365,18 +235173,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4571, + "id": 11391, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144258", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11392, + "result": { + "type": "IOI", + "score": [ + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235385,18 +235213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6200, + "id": 11393, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235404,19 +235232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144386", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6430, + "id": 11394, "result": { "type": "IOI", "score": [ - 14.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235424,19 +235252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6485, + "id": 11395, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235444,19 +235272,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 413, + "problemId": "d1.3", + "teamId": "144080", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6696, + "id": 11396, "result": { "type": "IOI", "score": [ - 23.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235465,18 +235293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 413, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9185, + "id": 11397, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235484,19 +235312,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10978, + "id": 11398, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235504,19 +235332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 413, + "problemId": "d1.2", + "teamId": "144285", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11473, + "id": 11399, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235525,18 +235353,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 413, + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2461, + "id": 11400, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235545,18 +235373,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 437, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2531, + "id": 11401, "result": { "type": "IOI", "score": [ - 12.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235564,19 +235392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 437, + "problemId": "d1.4", + "teamId": "144359", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2714, + "id": 11402, "result": { "type": "IOI", "score": [ - 12.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235584,19 +235412,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 437, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2975, + "id": 11403, "result": { "type": "IOI", "score": [ - 22.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235605,18 +235433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 437, + "teamId": "144205", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3332, + "id": 11404, "result": { "type": "IOI", "score": [ - 12.0 + 69.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235625,14 +235453,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 437, + "teamId": "144353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6598, + "id": 11405, "result": { "type": "IOI", "score": [ @@ -235644,15 +235472,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6717, + "id": 11406, "result": { "type": "IOI", "score": [ @@ -235664,15 +235492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6787, + "id": 11407, "result": { "type": "IOI", "score": [ @@ -235685,18 +235513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6960, + "id": 11408, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235704,15 +235532,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.4", + "teamId": "144358", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7113, + "id": 11409, "result": { "type": "IOI", "score": [ @@ -235724,15 +235552,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.2", + "teamId": "144283", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11410, + "result": { + "type": "IOI", + "score": [ + 16.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144085", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7156, + "id": 11411, "result": { "type": "IOI", "score": [ @@ -235745,14 +235593,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144290", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7227, + "id": 11412, "result": { "type": "IOI", "score": [ @@ -235765,18 +235613,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7281, + "id": 11413, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144078", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11414, + "result": { + "type": "IOI", + "score": [ + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235785,18 +235653,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7342, + "id": 11415, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144071", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11416, + "result": { + "type": "IOI", + "score": [ + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235805,14 +235693,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7402, + "id": 11417, + "result": { + "type": "IOI", + "score": [ + 69.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144353", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11418, "result": { "type": "IOI", "score": [ @@ -235829,18 +235737,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 437, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7433, + "id": 11419, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235848,19 +235756,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.4", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7888, + "id": 11420, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235868,19 +235776,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8553, + "id": 11421, "result": { "type": "IOI", "score": [ - 14.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235888,19 +235796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 437, + "problemId": "d1.3", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8695, + "id": 11422, "result": { "type": "IOI", "score": [ - 14.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235909,18 +235817,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 437, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8725, + "id": 11423, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235928,19 +235836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 437, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8782, + "id": 11424, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235948,19 +235856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 437, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8828, + "id": 11425, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235968,19 +235876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 437, + "problemId": "d1.3", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9681, + "id": 11426, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -235988,15 +235896,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 437, + "problemId": "d1.3", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10920, + "id": 11427, "result": { "type": "IOI", "score": [ @@ -236009,14 +235917,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 437, + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11390, + "id": 11428, "result": { "type": "IOI", "score": [ @@ -236028,39 +235936,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 437, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11685, + "id": 11429, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 437, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11853, + "id": 11430, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236068,15 +235980,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 437, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2482, + "id": 11431, "result": { "type": "IOI", "score": [ @@ -236089,34 +236001,58 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2662, + "id": 11432, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144193", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11433, + "result": { + "type": "IOI", + "score": [ + 9.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.4", + "teamId": "144133", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4023, + "id": 11434, "result": { "type": "IOI", "score": [ @@ -236128,35 +236064,59 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.3", + "teamId": "144101", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4038, + "id": 11435, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144075", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11436, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.1", + "teamId": "144403", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4053, + "id": 11437, "result": { "type": "IOI", "score": [ @@ -236168,19 +236128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4136, + "id": 11438, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236189,38 +236149,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4186, + "id": 11439, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4466, + "id": 11440, "result": { "type": "IOI", "score": [ - 31.0 + 41.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236229,14 +236193,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4525, + "id": 11441, "result": { "type": "IOI", "score": [ @@ -236249,14 +236213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4670, + "id": 11442, "result": { "type": "IOI", "score": [ @@ -236269,18 +236233,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4746, + "id": 11443, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236288,19 +236252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4752, + "id": 11444, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236309,14 +236273,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4915, + "id": 11445, + "result": { + "type": "IOI", + "score": [ + 10.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144481", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11446, "result": { "type": "IOI", "score": [ @@ -236329,19 +236313,43 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5449, + "id": 11447, "result": { "type": "IOI", "score": [ 0.0 ], + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144193", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11448, + "result": { + "type": "IOI", + "score": [ + 69.0 + ], "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, @@ -236349,18 +236357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144125", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5508, + "id": 11449, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236368,19 +236376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5567, + "id": 11450, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236388,19 +236396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.4", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5644, + "id": 11451, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236408,19 +236416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.3", + "teamId": "144171", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5785, + "id": 11452, "result": { "type": "IOI", "score": [ - 47.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236429,18 +236437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8328, + "id": 11453, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236449,14 +236457,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 358, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8401, + "id": 11454, + "result": { + "type": "IOI", + "score": [ + 35.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144133", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11455, "result": { "type": "IOI", "score": [ @@ -236468,19 +236496,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.3", + "teamId": "144362", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11456, + "result": { + "type": "IOI", + "score": [ + 25.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.1", - "teamId": 358, + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10406, + "id": 11457, "result": { "type": "IOI", "score": [ - 47.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236488,19 +236536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10970, + "id": 11458, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236508,19 +236556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11128, + "id": 11459, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236528,32 +236576,48 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 358, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11439, + "id": 11460, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144075", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11461, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -236573,14 +236637,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 358, + "teamId": "144428", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2523, + "id": 11463, "result": { "type": "IOI", "score": [ @@ -236592,19 +236656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2686, + "id": 11464, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236612,19 +236676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2796, + "id": 11465, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236632,35 +236696,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2825, + "id": 11466, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3015, + "id": 11467, "result": { "type": "IOI", "score": [ @@ -236673,18 +236741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 323, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4122, + "id": 11468, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236692,19 +236760,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4484, + "id": 11469, "result": { "type": "IOI", "score": [ - 32.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236712,19 +236780,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4549, + "id": 11470, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236733,14 +236801,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 323, + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7647, + "id": 11471, "result": { "type": "IOI", "score": [ @@ -236752,19 +236820,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8122, + "id": 11472, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236772,19 +236840,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8463, + "id": 11473, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236792,19 +236860,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144483", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8517, + "id": 11474, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236812,19 +236880,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.3", + "teamId": "144461", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8859, + "id": 11475, "result": { "type": "IOI", "score": [ - 48.0 + 62.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236833,18 +236901,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 323, + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9035, + "id": 11476, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236852,19 +236920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144291", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9853, + "id": 11477, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236872,19 +236940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.3", + "teamId": "144439", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10217, + "id": 11478, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236892,15 +236960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10381, + "id": 11479, "result": { "type": "IOI", "score": [ @@ -236912,19 +236980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10661, + "id": 11480, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236932,19 +237000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144186", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11032, + "id": 11481, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236952,19 +237020,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.1", + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11309, + "id": 11482, "result": { "type": "IOI", "score": [ - 48.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236972,19 +237040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 323, + "problemId": "d1.3", + "teamId": "144448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11716, + "id": 11483, "result": { "type": "IOI", "score": [ - 35.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -236993,14 +237061,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 323, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2532, + "id": 11484, "result": { "type": "IOI", "score": [ @@ -237012,15 +237080,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144175", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3682, + "id": 11485, "result": { "type": "IOI", "score": [ @@ -237032,19 +237100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3798, + "id": 11486, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237052,19 +237120,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4775, + "id": 11487, "result": { "type": "IOI", "score": [ - 0.0 + 53.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237073,18 +237141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 213, + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4908, + "id": 11488, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237093,18 +237161,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 213, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5470, + "id": 11489, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237112,15 +237180,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144366", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5497, + "id": 11490, "result": { "type": "IOI", "score": [ @@ -237133,38 +237201,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 213, + "teamId": "144488", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7164, + "id": 11491, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 213, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7494, + "id": 11492, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237172,15 +237244,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7616, + "id": 11493, "result": { "type": "IOI", "score": [ @@ -237192,15 +237264,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8544, + "id": 11494, "result": { "type": "IOI", "score": [ @@ -237212,19 +237284,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9655, + "id": 11495, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237233,18 +237305,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 213, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10156, + "id": 11496, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237252,19 +237324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10719, + "id": 11497, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237272,15 +237344,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 213, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11409, + "id": 11498, "result": { "type": "IOI", "score": [ @@ -237292,19 +237364,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, + "problemId": "d1.1", + "teamId": "144357", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11499, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, "problemId": "d1.2", - "teamId": 213, + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2552, + "id": 11500, "result": { "type": "IOI", "score": [ - 12.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237312,19 +237404,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 436, + "problemId": "d1.4", + "teamId": "144320", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2637, + "id": 11501, "result": { "type": "IOI", "score": [ - 22.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237332,19 +237424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 436, + "problemId": "d1.3", + "teamId": "144167", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3043, + "id": 11502, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237352,19 +237444,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 436, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3101, + "id": 11503, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237372,19 +237464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 436, + "problemId": "d1.3", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3442, + "id": 11504, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237392,19 +237484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3571, + "id": 11505, "result": { "type": "IOI", "score": [ - 23.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237412,15 +237504,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4090, + "id": 11506, "result": { "type": "IOI", "score": [ @@ -237433,18 +237525,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4323, + "id": 11507, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237452,15 +237544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.2", + "teamId": "144120", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4674, + "id": 11508, "result": { "type": "IOI", "score": [ @@ -237473,14 +237565,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144411", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4732, + "id": 11509, "result": { "type": "IOI", "score": [ @@ -237493,18 +237585,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4767, + "id": 11510, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237512,19 +237604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4900, + "id": 11511, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237533,38 +237625,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6047, + "id": 11512, "result": { "type": "IOI", "score": [ - 22.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 436, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9016, + "id": 11513, "result": { "type": "IOI", "score": [ - 31.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237572,19 +237668,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9313, + "id": 11514, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237593,18 +237689,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 436, + "teamId": "144166", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9416, + "id": 11515, "result": { "type": "IOI", "score": [ - 31.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237613,18 +237709,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 436, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9782, + "id": 11516, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237633,18 +237729,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9881, + "id": 11517, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237652,19 +237748,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9922, + "id": 11518, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237673,14 +237769,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9979, + "id": 11519, "result": { "type": "IOI", "score": [ @@ -237693,18 +237789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10221, + "id": 11520, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237712,43 +237808,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10988, + "id": 11521, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144394", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11018, + "id": 11522, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237756,15 +237848,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11210, + "id": 11523, "result": { "type": "IOI", "score": [ @@ -237776,19 +237868,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.2", + "teamId": "144231", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11412, + "id": 11524, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237796,19 +237888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.2", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11467, + "id": 11525, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237817,14 +237909,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11603, + "id": 11526, "result": { "type": "IOI", "score": [ @@ -237836,39 +237928,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11704, + "id": 11527, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11807, + "id": 11528, "result": { "type": "IOI", "score": [ @@ -237884,19 +237972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11857, + "id": 11529, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237904,19 +237992,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11999, + "id": 11530, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237924,15 +238012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 436, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12111, + "id": 11531, "result": { "type": "IOI", "score": [ @@ -237945,38 +238033,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 436, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2581, + "id": 11532, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3327, + "id": 11533, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -237984,19 +238076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.2", + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3339, + "id": 11534, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238004,19 +238096,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3573, + "id": 11535, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238024,19 +238116,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.2", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3604, + "id": 11536, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238044,39 +238136,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.3", + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3680, + "id": 11537, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5188, + "id": 11538, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238084,19 +238180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 24, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5277, + "id": 11539, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238104,19 +238200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 24, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6284, + "id": 11540, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238125,18 +238221,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 24, + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6925, + "id": 11541, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238145,18 +238241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 24, + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7101, + "id": 11542, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238164,19 +238260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 24, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7187, + "id": 11543, "result": { "type": "IOI", "score": [ - 48.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238184,19 +238280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 24, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7828, + "id": 11544, "result": { "type": "IOI", "score": [ - 47.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238204,19 +238300,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8266, + "id": 11545, "result": { "type": "IOI", "score": [ - 47.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238224,43 +238320,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8399, + "id": 11546, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 24, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10469, + "id": 11547, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238268,19 +238360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 24, + "problemId": "d1.3", + "teamId": "144307", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11368, + "id": 11548, "result": { "type": "IOI", "score": [ - 27.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238288,19 +238380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 24, + "problemId": "d1.1", + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11861, + "id": 11549, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238308,43 +238400,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 24, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2588, + "id": 11550, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 147, + "problemId": "d1.3", + "teamId": "144210", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2604, + "id": 11551, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238352,19 +238440,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 147, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8899, + "id": 11552, "result": { "type": "IOI", "score": [ - 21.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238372,19 +238460,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 147, + "problemId": "d1.3", + "teamId": "144188", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9011, + "id": 11553, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238392,19 +238480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 147, + "problemId": "d1.2", + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9672, + "id": 11554, "result": { "type": "IOI", "score": [ - 0.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238412,19 +238500,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 147, + "problemId": "d1.4", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9914, + "id": 11555, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238432,19 +238520,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 147, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10012, + "id": 11556, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238452,19 +238540,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 147, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10269, + "id": 11557, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238473,14 +238561,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 147, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10336, + "id": 11558, "result": { "type": "IOI", "score": [ @@ -238492,19 +238580,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 147, + "problemId": "d1.1", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2700, + "id": 11559, "result": { "type": "IOI", "score": [ - 9.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238513,18 +238601,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 363, + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4817, + "id": 11560, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238533,18 +238621,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 363, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5332, + "id": 11561, "result": { "type": "IOI", "score": [ - 24.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238552,15 +238640,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 363, + "problemId": "d1.3", + "teamId": "144489", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5730, + "id": 11562, "result": { "type": "IOI", "score": [ @@ -238572,19 +238660,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 363, + "problemId": "d1.2", + "teamId": "144363", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5945, + "id": 11563, "result": { "type": "IOI", "score": [ - 24.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238593,18 +238681,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 363, + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8352, + "id": 11564, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238612,19 +238700,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 363, + "problemId": "d1.3", + "teamId": "144419", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9026, + "id": 11565, "result": { "type": "IOI", "score": [ - 23.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238632,19 +238720,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 363, + "problemId": "d1.3", + "teamId": "144221", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10165, + "id": 11566, "result": { "type": "IOI", "score": [ - 38.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238653,18 +238741,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 363, + "teamId": "144128", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2744, + "id": 11567, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238672,15 +238760,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 273, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6550, + "id": 11568, "result": { "type": "IOI", "score": [ @@ -238697,42 +238785,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 273, + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6581, + "id": 11569, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 273, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6639, + "id": 11570, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238740,19 +238824,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 273, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9577, + "id": 11571, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238761,38 +238845,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 273, + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10194, + "id": 11572, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 273, + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10392, + "id": 11573, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238800,19 +238888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 273, + "problemId": "d1.3", + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12000, + "id": 11574, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238820,15 +238908,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 273, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2811, + "id": 11575, "result": { "type": "IOI", "score": [ @@ -238841,18 +238929,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 171, + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3173, + "id": 11576, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238860,15 +238948,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3430, + "id": 11577, "result": { "type": "IOI", "score": [ @@ -238880,15 +238968,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3621, + "id": 11578, "result": { "type": "IOI", "score": [ @@ -238900,19 +238988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.3", + "teamId": "144369", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4510, + "id": 11579, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238920,19 +239008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4864, + "id": 11580, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238940,19 +239028,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4937, + "id": 11581, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -238961,14 +239049,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 171, + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5396, + "id": 11582, "result": { "type": "IOI", "score": [ @@ -238980,15 +239068,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 171, + "problemId": "d1.3", + "teamId": "144126", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5440, + "id": 11583, "result": { "type": "IOI", "score": [ @@ -239000,15 +239088,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 171, + "problemId": "d1.3", + "teamId": "144208", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5641, + "id": 11584, "result": { "type": "IOI", "score": [ @@ -239021,18 +239109,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 171, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5813, + "id": 11585, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239041,18 +239129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 171, + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6549, + "id": 11586, "result": { "type": "IOI", "score": [ - 0.0 + 41.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239060,19 +239148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6864, + "id": 11587, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239080,15 +239168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7049, + "id": 11588, "result": { "type": "IOI", "score": [ @@ -239100,19 +239188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7504, + "id": 11589, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239120,19 +239208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.2", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7546, + "id": 11590, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239140,15 +239228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8903, + "id": 11591, "result": { "type": "IOI", "score": [ @@ -239160,19 +239248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9981, + "id": 11592, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239180,15 +239268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 171, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10940, + "id": 11593, "result": { "type": "IOI", "score": [ @@ -239200,19 +239288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 171, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2829, + "id": 11594, "result": { "type": "IOI", "score": [ - 100.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239220,19 +239308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144309", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4725, + "id": 11595, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239240,15 +239328,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4761, + "id": 11596, "result": { "type": "IOI", "score": [ @@ -239261,18 +239349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 194, + "teamId": "144306", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4796, + "id": 11597, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239281,18 +239369,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 194, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4810, + "id": 11598, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239300,19 +239388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4935, + "id": 11599, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239320,19 +239408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5025, + "id": 11600, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239340,19 +239428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5095, + "id": 11601, "result": { "type": "IOI", "score": [ - 37.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239360,19 +239448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5705, + "id": 11602, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239380,19 +239468,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144084", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5960, + "id": 11603, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239400,19 +239488,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6237, + "id": 11604, "result": { "type": "IOI", "score": [ - 37.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239420,19 +239508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6316, + "id": 11605, "result": { "type": "IOI", "score": [ - 37.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239440,19 +239528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6405, + "id": 11606, "result": { "type": "IOI", "score": [ - 37.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239461,18 +239549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 194, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6414, + "id": 11607, "result": { "type": "IOI", "score": [ - 37.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239480,19 +239568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 194, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8394, + "id": 11608, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239500,19 +239588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8875, + "id": 11609, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239521,90 +239609,78 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 194, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8939, + "id": 11610, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8971, + "id": 11611, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144501", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8992, + "id": 11612, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9007, + "id": 11613, "result": { "type": "IOI", "score": [ - 31.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239612,63 +239688,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9405, + "id": 11614, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9451, + "id": 11615, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144277", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9513, + "id": 11616, "result": { "type": "IOI", "score": [ @@ -239680,43 +239748,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9714, + "id": 11617, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144491", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9738, + "id": 11618, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239725,18 +239789,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9889, + "id": 11619, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239745,14 +239809,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144299", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10127, + "id": 11620, "result": { "type": "IOI", "score": [ @@ -239765,14 +239829,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10271, + "id": 11621, "result": { "type": "IOI", "score": [ @@ -239785,18 +239849,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10563, + "id": 11622, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239805,14 +239869,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10706, + "id": 11623, "result": { "type": "IOI", "score": [ @@ -239825,42 +239889,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144080", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10851, + "id": 11624, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10866, + "id": 11625, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239868,19 +239928,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.3", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11080, + "id": 11626, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239888,19 +239948,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11092, + "id": 11627, "result": { "type": "IOI", "score": [ - 16.0 + 42.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239908,19 +239968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11247, + "id": 11628, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239929,18 +239989,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 194, + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11553, + "id": 11629, "result": { "type": "IOI", "score": [ - 31.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239948,19 +240008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 194, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11910, + "id": 11630, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -239969,38 +240029,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 194, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 2852, + "id": 11631, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3056, + "id": 11632, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240009,18 +240073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 23, + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3144, + "id": 11633, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240028,19 +240092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3184, + "id": 11634, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240049,18 +240113,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 23, + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3268, + "id": 11635, "result": { "type": "IOI", "score": [ - 31.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240068,19 +240132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3501, + "id": 11636, "result": { "type": "IOI", "score": [ - 47.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240088,19 +240152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4945, + "id": 11637, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240109,18 +240173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 23, + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5076, + "id": 11638, "result": { "type": "IOI", "score": [ - 25.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240129,18 +240193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 23, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5624, + "id": 11639, "result": { "type": "IOI", "score": [ - 46.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240149,18 +240213,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 23, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6279, + "id": 11640, "result": { "type": "IOI", "score": [ - 46.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240168,19 +240232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6345, + "id": 11641, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240188,19 +240252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144259", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6360, + "id": 11642, "result": { "type": "IOI", "score": [ - 46.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240208,43 +240272,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6492, + "id": 11643, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.2", + "teamId": "144352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6633, + "id": 11644, "result": { "type": "IOI", "score": [ - 46.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240253,18 +240313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 23, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6743, + "id": 11645, "result": { "type": "IOI", "score": [ - 46.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240273,18 +240333,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 23, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7607, + "id": 11646, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240292,39 +240352,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7737, + "id": 11647, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7765, + "id": 11648, "result": { "type": "IOI", "score": [ @@ -240336,19 +240392,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8717, + "id": 11649, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240357,18 +240413,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 23, + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8804, + "id": 11650, "result": { "type": "IOI", "score": [ - 24.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240376,19 +240432,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8904, + "id": 11651, "result": { "type": "IOI", "score": [ - 24.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240396,19 +240452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9423, + "id": 11652, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240416,19 +240472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9458, + "id": 11653, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240436,15 +240492,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10948, + "id": 11654, "result": { "type": "IOI", "score": [ @@ -240457,18 +240513,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 23, + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11166, + "id": 11655, "result": { "type": "IOI", "score": [ - 21.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240476,19 +240532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144237", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11610, + "id": 11656, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240496,19 +240552,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 23, + "problemId": "d1.1", + "teamId": "144276", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12113, + "id": 11657, "result": { "type": "IOI", "score": [ - 0.0 + 67.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240516,63 +240572,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144407", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12115, + "id": 11658, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144375", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12116, + "id": 11659, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.4", + "teamId": "144314", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12117, + "id": 11660, "result": { "type": "IOI", "score": [ @@ -240584,19 +240632,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 23, + "problemId": "d1.3", + "teamId": "144519", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3004, + "id": 11661, "result": { "type": "IOI", "score": [ - 0.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240604,15 +240652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.4", + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3824, + "id": 11662, "result": { "type": "IOI", "score": [ @@ -240624,15 +240672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.3", + "teamId": "144080", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4278, + "id": 11663, "result": { "type": "IOI", "score": [ @@ -240644,19 +240692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144288", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4541, + "id": 11664, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240665,18 +240713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 339, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4570, + "id": 11665, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240684,19 +240732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4578, + "id": 11666, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240704,19 +240752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4593, + "id": 11667, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240724,19 +240772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5033, + "id": 11668, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240745,18 +240793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 339, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5167, + "id": 11669, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240764,19 +240812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.3", + "teamId": "144316", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5706, + "id": 11670, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240784,19 +240832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144481", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5910, + "id": 11671, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240804,15 +240852,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8199, + "id": 11672, "result": { "type": "IOI", "score": [ @@ -240824,19 +240872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8567, + "id": 11673, "result": { "type": "IOI", "score": [ - 100.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240844,19 +240892,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10308, + "id": 11674, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240864,43 +240912,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 339, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10804, + "id": 11675, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 339, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10829, + "id": 11676, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240908,8 +240952,8 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 339, + "problemId": "d1.1", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -240929,14 +240973,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 339, + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11791, + "id": 11678, "result": { "type": "IOI", "score": [ @@ -240949,14 +240993,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 339, + "teamId": "144246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3105, + "id": 11679, "result": { "type": "IOI", "score": [ @@ -240968,19 +241012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 410, + "problemId": "d1.1", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9896, + "id": 11680, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -240988,19 +241032,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 410, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10386, + "id": 11681, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241008,19 +241052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 410, + "problemId": "d1.2", + "teamId": "144414", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11962, + "id": 11682, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241028,19 +241072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 410, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3132, + "id": 11683, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241049,14 +241093,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 435, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3146, + "id": 11684, "result": { "type": "IOI", "score": [ @@ -241068,15 +241112,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 435, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3204, + "id": 11685, "result": { "type": "IOI", "score": [ @@ -241088,19 +241132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 435, + "problemId": "d1.3", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4321, + "id": 11686, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241108,19 +241152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 435, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5584, + "id": 11687, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241129,18 +241173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 435, + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6524, + "id": 11688, "result": { "type": "IOI", "score": [ - 9.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241149,18 +241193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 435, + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3136, + "id": 11689, "result": { "type": "IOI", "score": [ - 100.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241169,34 +241213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 85, + "teamId": "144429", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8096, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 85, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9177, + "id": 11690, "result": { "type": "IOI", "score": [ @@ -241208,19 +241232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 85, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9231, + "id": 11691, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241228,19 +241252,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 85, + "problemId": "d1.4", + "teamId": "144180", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9264, + "id": 11692, "result": { "type": "IOI", "score": [ - 57.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241248,15 +241272,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 85, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11871, + "id": 11693, "result": { "type": "IOI", "score": [ @@ -241269,14 +241293,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 85, + "teamId": "144134", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12010, + "id": 11694, "result": { "type": "IOI", "score": [ @@ -241289,18 +241313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 85, + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3143, + "id": 11695, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241308,15 +241332,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3429, + "id": 11696, "result": { "type": "IOI", "score": [ @@ -241328,15 +241352,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 149, + "problemId": "d1.1", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3457, + "id": 11697, "result": { "type": "IOI", "score": [ @@ -241348,15 +241372,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 149, + "problemId": "d1.1", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4637, + "id": 11698, "result": { "type": "IOI", "score": [ @@ -241368,15 +241392,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5654, + "id": 11699, "result": { "type": "IOI", "score": [ @@ -241392,43 +241416,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5668, + "id": 11700, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5987, + "id": 11701, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241436,63 +241456,55 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6519, + "id": 11702, "result": { "type": "IOI", "score": [ - 0.0 + 33.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6538, + "id": 11703, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6552, + "id": 11704, "result": { "type": "IOI", "score": [ @@ -241508,15 +241520,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6572, + "id": 11705, "result": { "type": "IOI", "score": [ @@ -241532,155 +241544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6643, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6797, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 6852, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7257, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7541, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7744, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7959, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8257, + "id": 11706, "result": { "type": "IOI", "score": [ @@ -241693,18 +241565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8642, + "id": 11707, "result": { "type": "IOI", "score": [ - 25.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241712,19 +241584,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144379", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8788, + "id": 11708, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241732,19 +241604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144157", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8821, + "id": 11709, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241752,15 +241624,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8850, + "id": 11710, "result": { "type": "IOI", "score": [ @@ -241773,18 +241645,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8931, + "id": 11711, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241793,18 +241665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9299, + "id": 11712, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241812,19 +241684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9355, + "id": 11713, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241832,15 +241704,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144305", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9531, + "id": 11714, "result": { "type": "IOI", "score": [ @@ -241852,39 +241724,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9598, + "id": 11715, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9629, + "id": 11716, "result": { "type": "IOI", "score": [ - 0.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241892,15 +241768,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144393", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9697, + "id": 11717, "result": { "type": "IOI", "score": [ @@ -241913,14 +241789,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9722, + "id": 11718, "result": { "type": "IOI", "score": [ @@ -241933,18 +241809,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144176", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9749, + "id": 11719, "result": { "type": "IOI", "score": [ - 22.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241952,19 +241828,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9777, + "id": 11720, "result": { "type": "IOI", "score": [ - 22.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241972,19 +241848,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9817, + "id": 11721, "result": { "type": "IOI", "score": [ - 10.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -241993,18 +241869,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 149, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9834, + "id": 11722, "result": { "type": "IOI", "score": [ - 35.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242012,19 +241888,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 149, + "problemId": "d1.2", + "teamId": "144141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3226, + "id": 11723, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242032,19 +241908,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 383, + "problemId": "d1.3", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3397, + "id": 11724, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242052,15 +241928,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 383, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5437, + "id": 11725, "result": { "type": "IOI", "score": [ @@ -242073,14 +241949,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 383, + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6859, + "id": 11726, "result": { "type": "IOI", "score": [ @@ -242092,19 +241968,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 383, + "problemId": "d1.1", + "teamId": "144158", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7376, + "id": 11727, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242112,19 +241988,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 383, + "problemId": "d1.3", + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7706, + "id": 11728, "result": { "type": "IOI", "score": [ - 47.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242132,19 +242008,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 383, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8802, + "id": 11729, "result": { "type": "IOI", "score": [ - 23.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242152,15 +242028,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 383, + "problemId": "d1.2", + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9425, + "id": 11730, "result": { "type": "IOI", "score": [ @@ -242173,18 +242049,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 383, + "teamId": "144460", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9476, + "id": 11731, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242192,19 +242068,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.1", + "teamId": "144297", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9593, + "id": 11732, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242213,18 +242089,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 383, + "teamId": "144207", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9816, + "id": 11733, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242232,19 +242108,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.2", + "teamId": "144364", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9858, + "id": 11734, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242253,18 +242129,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 383, + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10035, + "id": 11735, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242272,19 +242148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.1", + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10197, + "id": 11736, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242292,15 +242168,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.4", + "teamId": "144296", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10371, + "id": 11737, "result": { "type": "IOI", "score": [ @@ -242312,15 +242188,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.2", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10775, + "id": 11738, "result": { "type": "IOI", "score": [ @@ -242333,18 +242209,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 383, + "teamId": "144103", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10862, + "id": 11739, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242352,15 +242228,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.4", + "teamId": "144165", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11039, + "id": 11740, "result": { "type": "IOI", "score": [ @@ -242372,19 +242248,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.1", + "teamId": "144452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11078, + "id": 11741, "result": { "type": "IOI", "score": [ - 0.0 + 27.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242392,19 +242268,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.4", + "teamId": "144456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11118, + "id": 11742, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242412,19 +242288,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11334, + "id": 11743, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242432,19 +242308,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.1", + "teamId": "144156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11753, + "id": 11744, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242453,18 +242329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 383, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11833, + "id": 11745, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242472,19 +242348,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.4", + "teamId": "144372", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11874, + "id": 11746, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242492,15 +242368,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 383, + "problemId": "d1.2", + "teamId": "144325", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3282, + "id": 11747, "result": { "type": "IOI", "score": [ @@ -242513,18 +242389,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 95, + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3340, + "id": 11748, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242533,18 +242409,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 95, + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3392, + "id": 11749, "result": { "type": "IOI", "score": [ - 10.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242552,19 +242428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 95, + "problemId": "d1.3", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3452, + "id": 11750, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242572,19 +242448,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 95, + "problemId": "d1.1", + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5699, + "id": 11751, "result": { "type": "IOI", "score": [ - 27.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242593,18 +242469,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 95, + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6518, + "id": 11752, "result": { "type": "IOI", "score": [ - 27.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242612,15 +242488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.3", + "teamId": "144194", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8878, + "id": 11753, "result": { "type": "IOI", "score": [ @@ -242632,19 +242508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 95, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8978, + "id": 11754, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242653,18 +242529,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 95, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9686, + "id": 11755, "result": { "type": "IOI", "score": [ - 63.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242672,19 +242548,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9767, + "id": 11756, "result": { "type": "IOI", "score": [ - 51.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242692,19 +242568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9785, + "id": 11757, "result": { "type": "IOI", "score": [ - 63.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242713,18 +242589,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 95, + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11062, + "id": 11758, "result": { "type": "IOI", "score": [ - 0.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242732,35 +242608,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 95, + "problemId": "d1.4", + "teamId": "144512", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11065, + "id": 11759, "result": { "type": "IOI", "score": [ - 51.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 95, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11405, + "id": 11760, "result": { "type": "IOI", "score": [ @@ -242772,19 +242652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.2", + "teamId": "144119", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11437, + "id": 11761, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242792,15 +242672,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.2", + "teamId": "144515", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11542, + "id": 11762, "result": { "type": "IOI", "score": [ @@ -242812,19 +242692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.2", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11720, + "id": 11763, "result": { "type": "IOI", "score": [ - 38.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242833,18 +242713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 95, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11739, + "id": 11764, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242852,19 +242732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 95, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3307, + "id": 11765, "result": { "type": "IOI", "score": [ - 31.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242872,19 +242752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3661, + "id": 11766, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242892,19 +242772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3811, + "id": 11767, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242912,39 +242792,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3928, + "id": 11768, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4204, + "id": 11769, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242952,19 +242836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4361, + "id": 11770, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -242972,15 +242856,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144395", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4565, + "id": 11771, "result": { "type": "IOI", "score": [ @@ -242996,35 +242880,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4661, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5503, + "id": 11772, "result": { "type": "IOI", "score": [ @@ -243036,15 +242900,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144202", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5518, + "id": 11773, "result": { "type": "IOI", "score": [ @@ -243056,19 +242920,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.2", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5530, + "id": 11774, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243076,19 +242940,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5538, + "id": 11775, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243096,15 +242960,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144415", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5874, + "id": 11776, "result": { "type": "IOI", "score": [ @@ -243116,19 +242980,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.2", + "teamId": "144100", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6023, + "id": 11777, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243136,19 +243000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6645, + "id": 11778, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243157,18 +243021,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 224, + "teamId": "144493", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6796, + "id": 11779, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243176,19 +243040,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6815, + "id": 11780, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243196,19 +243060,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.4", + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6823, + "id": 11781, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243216,19 +243080,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6844, + "id": 11782, "result": { "type": "IOI", "score": [ - 31.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243236,19 +243100,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6937, + "id": 11783, "result": { "type": "IOI", "score": [ - 31.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243256,15 +243120,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7162, + "id": 11784, "result": { "type": "IOI", "score": [ @@ -243277,18 +243141,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 224, + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7178, + "id": 11785, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243296,19 +243160,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 224, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7328, + "id": 11786, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243316,19 +243180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144327", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7573, + "id": 11787, "result": { "type": "IOI", "score": [ - 38.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243336,19 +243200,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144075", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7754, + "id": 11788, "result": { "type": "IOI", "score": [ - 38.0 + 41.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243356,19 +243220,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8321, + "id": 11789, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243376,19 +243240,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8723, + "id": 11790, "result": { "type": "IOI", "score": [ - 24.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243396,19 +243260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8943, + "id": 11791, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243416,19 +243280,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144409", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8963, + "id": 11792, "result": { "type": "IOI", "score": [ - 38.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243436,15 +243300,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 224, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10613, + "id": 11793, "result": { "type": "IOI", "score": [ @@ -243456,35 +243320,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 224, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11121, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.2", - "teamId": 224, + "teamId": "144109", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11796, + "id": 11794, "result": { "type": "IOI", "score": [ @@ -243497,18 +243341,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 224, + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3320, + "id": 11795, "result": { "type": "IOI", "score": [ - 24.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243517,18 +243361,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 12, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6899, + "id": 11796, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243536,19 +243380,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 12, + "problemId": "d1.2", + "teamId": "144294", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7476, + "id": 11797, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243556,15 +243400,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 12, + "problemId": "d1.4", + "teamId": "144199", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8263, + "id": 11798, "result": { "type": "IOI", "score": [ @@ -243580,135 +243424,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 12, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8331, - "result": { - "type": "IOI", - "score": [ - 10.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 12, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11253, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 12, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3411, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 341, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 3982, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 341, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4499, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 341, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 4736, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 341, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5008, + "id": 11799, "result": { "type": "IOI", "score": [ @@ -243721,38 +243445,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 341, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5581, - "result": { - "type": "IOI", - "score": [ - 47.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 341, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7957, + "id": 11800, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243760,19 +243464,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 341, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8439, + "id": 11801, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243780,19 +243484,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 341, + "problemId": "d1.1", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9615, + "id": 11802, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243801,18 +243505,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 341, + "teamId": "144152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9705, + "id": 11803, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243821,14 +243525,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 341, + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10147, + "id": 11804, "result": { "type": "IOI", "score": [ @@ -243840,15 +243544,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 341, + "problemId": "d1.1", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10457, + "id": 11805, "result": { "type": "IOI", "score": [ @@ -243861,18 +243565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 341, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10782, + "id": 11806, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243880,35 +243584,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 341, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11212, + "id": 11807, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 341, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11508, + "id": 11808, "result": { "type": "IOI", "score": [ @@ -243921,18 +243629,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 341, + "teamId": "144322", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3486, + "id": 11809, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243940,19 +243648,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 170, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4069, + "id": 11810, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -243961,54 +243669,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 170, + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8726, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 170, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11197, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 170, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 12081, + "id": 11811, "result": { "type": "IOI", "score": [ @@ -244025,42 +243693,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 170, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3491, + "id": 11812, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 160, + "problemId": "d1.1", + "teamId": "144300", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3516, + "id": 11813, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244068,15 +243732,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 160, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3594, + "id": 11814, "result": { "type": "IOI", "score": [ @@ -244088,19 +243752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 160, + "problemId": "d1.1", + "teamId": "144391", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3804, + "id": 11815, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244108,19 +243772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 160, + "problemId": "d1.1", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3914, + "id": 11816, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244129,14 +243793,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 160, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5282, + "id": 11817, "result": { "type": "IOI", "score": [ @@ -244148,19 +243812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 160, + "problemId": "d1.1", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6608, + "id": 11818, "result": { "type": "IOI", "score": [ - 24.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244169,18 +243833,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 160, + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7196, + "id": 11819, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244188,19 +243852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 160, + "problemId": "d1.3", + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7357, + "id": 11820, "result": { "type": "IOI", "score": [ - 38.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244209,18 +243873,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 160, + "teamId": "144197", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7428, + "id": 11821, "result": { "type": "IOI", "score": [ - 14.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244228,19 +243892,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 160, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8157, + "id": 11822, "result": { "type": "IOI", "score": [ - 14.0 + 33.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.3", + "teamId": "144353", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11823, + "result": { + "type": "IOI", + "score": [ + 76.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244249,18 +243933,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 160, + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3513, + "id": 11824, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244269,14 +243953,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 166, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3586, + "id": 11825, "result": { "type": "IOI", "score": [ @@ -244288,19 +243972,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3653, + "id": 11826, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244308,15 +243992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144405", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4280, + "id": 11827, "result": { "type": "IOI", "score": [ @@ -244328,19 +244012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4320, + "id": 11828, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244349,18 +244033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 166, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4401, + "id": 11829, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244368,19 +244052,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144232", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4431, + "id": 11830, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244388,19 +244072,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5269, + "id": 11831, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244408,15 +244092,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5376, + "id": 11832, "result": { "type": "IOI", "score": [ @@ -244428,19 +244112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5405, + "id": 11833, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244448,19 +244132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6067, + "id": 11834, "result": { "type": "IOI", "score": [ - 31.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244468,19 +244152,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6172, + "id": 11835, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244489,18 +244173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 166, + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6275, + "id": 11836, "result": { "type": "IOI", "score": [ - 47.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244508,15 +244192,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7419, + "id": 11837, "result": { "type": "IOI", "score": [ @@ -244528,39 +244212,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144227", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7432, + "id": 11838, "result": { "type": "IOI", "score": [ - 27.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 166, + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7533, + "id": 11839, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244568,19 +244256,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144465", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7540, + "id": 11840, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244588,19 +244276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144286", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7591, + "id": 11841, "result": { "type": "IOI", "score": [ - 48.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244609,18 +244297,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 166, + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7987, + "id": 11842, "result": { "type": "IOI", "score": [ - 48.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244628,19 +244316,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8044, + "id": 11843, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244648,19 +244336,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8170, + "id": 11844, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244668,19 +244356,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144434", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8755, + "id": 11845, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244688,15 +244376,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8840, + "id": 11846, "result": { "type": "IOI", "score": [ @@ -244708,15 +244396,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144399", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8955, + "id": 11847, "result": { "type": "IOI", "score": [ @@ -244729,18 +244417,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 166, + "teamId": "144130", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9015, + "id": 11848, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244749,18 +244437,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 166, + "teamId": "144196", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9087, + "id": 11849, "result": { "type": "IOI", "score": [ - 0.0 + 76.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244768,15 +244456,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.4", + "teamId": "144478", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9128, + "id": 11850, "result": { "type": "IOI", "score": [ @@ -244788,19 +244476,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144273", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9168, + "id": 11851, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244808,19 +244496,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9245, + "id": 11852, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244829,18 +244517,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 166, + "teamId": "144270", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9406, + "id": 11853, "result": { "type": "IOI", "score": [ - 48.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244848,19 +244536,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144507", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9417, + "id": 11854, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244868,19 +244556,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9421, + "id": 11855, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244888,39 +244576,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9461, + "id": 11856, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9490, + "id": 11857, "result": { "type": "IOI", "score": [ @@ -244932,19 +244616,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9510, + "id": 11858, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244952,19 +244636,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9545, + "id": 11859, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244972,19 +244656,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144138", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9575, + "id": 11860, "result": { "type": "IOI", "score": [ - 48.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -244992,19 +244676,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9601, + "id": 11861, "result": { "type": "IOI", "score": [ - 48.0 + 51.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245013,18 +244697,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 166, + "teamId": "144094", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9612, + "id": 11862, "result": { "type": "IOI", "score": [ - 48.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245032,19 +244716,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10372, + "id": 11863, "result": { "type": "IOI", "score": [ - 100.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245053,14 +244737,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 166, + "teamId": "144315", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11680, + "id": 11864, "result": { "type": "IOI", "score": [ @@ -245073,42 +244757,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 166, + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11798, + "id": 11865, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11819, + "id": 11866, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245116,19 +244796,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144235", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11929, + "id": 11867, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245136,19 +244816,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.2", + "teamId": "144476", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12037, + "id": 11868, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245156,19 +244836,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 166, + "problemId": "d1.1", + "teamId": "144267", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3558, + "id": 11869, "result": { "type": "IOI", "score": [ - 27.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245176,19 +244856,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 256, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7248, + "id": 11870, "result": { "type": "IOI", "score": [ - 10.0 + 33.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245196,19 +244876,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 256, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9363, + "id": 11871, "result": { "type": "IOI", "score": [ - 36.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245216,19 +244896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 256, + "problemId": "d1.2", + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3756, + "id": 11872, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245236,19 +244916,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.1", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3981, + "id": 11873, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245256,19 +244936,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.2", + "teamId": "144347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4185, + "id": 11874, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245277,38 +244957,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 329, + "teamId": "144453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4373, + "id": 11875, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.2", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4469, + "id": 11876, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245316,19 +245000,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4503, + "id": 11877, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245336,15 +245020,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4563, + "id": 11878, "result": { "type": "IOI", "score": [ @@ -245360,15 +245044,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.2", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4573, + "id": 11879, "result": { "type": "IOI", "score": [ @@ -245381,14 +245065,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 329, + "teamId": "144346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4881, + "id": 11880, "result": { "type": "IOI", "score": [ @@ -245401,18 +245085,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 329, + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5058, + "id": 11881, "result": { "type": "IOI", "score": [ - 16.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245420,19 +245104,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 329, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6506, + "id": 11882, "result": { "type": "IOI", "score": [ - 14.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245440,15 +245124,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 329, + "problemId": "d1.3", + "teamId": "144092", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10565, + "id": 11883, "result": { "type": "IOI", "score": [ @@ -245460,15 +245144,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 329, + "problemId": "d1.4", + "teamId": "144229", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10572, + "id": 11884, "result": { "type": "IOI", "score": [ @@ -245481,14 +245165,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 329, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11846, + "id": 11885, "result": { "type": "IOI", "score": [ @@ -245500,19 +245184,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 329, + "problemId": "d1.3", + "teamId": "144121", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3851, + "id": 11886, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245521,18 +245205,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 203, + "teamId": "144450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4199, + "id": 11887, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245541,18 +245225,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 203, + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4653, + "id": 11888, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245561,18 +245245,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 203, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4671, + "id": 11889, "result": { "type": "IOI", "score": [ - 37.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245580,19 +245264,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 203, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4921, + "id": 11890, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245601,14 +245285,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 203, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5063, + "id": 11891, "result": { "type": "IOI", "score": [ @@ -245620,19 +245304,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 203, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5148, + "id": 11892, "result": { "type": "IOI", "score": [ - 10.0 + 24.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245640,19 +245324,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 203, + "problemId": "d1.4", + "teamId": "144182", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5173, + "id": 11893, "result": { "type": "IOI", "score": [ - 47.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245661,18 +245345,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 203, + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5352, + "id": 11894, "result": { "type": "IOI", "score": [ - 10.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245680,19 +245364,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 203, + "problemId": "d1.4", + "teamId": "144356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6231, + "id": 11895, "result": { "type": "IOI", "score": [ - 9.0 + 38.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245701,18 +245385,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 203, + "teamId": "144226", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8579, + "id": 11896, "result": { "type": "IOI", "score": [ - 23.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245720,15 +245404,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 203, + "problemId": "d1.1", + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11850, + "id": 11897, "result": { "type": "IOI", "score": [ @@ -245740,19 +245424,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 203, + "problemId": "d1.3", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3875, + "id": 11898, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245760,15 +245444,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 409, + "problemId": "d1.1", + "teamId": "144416", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3936, + "id": 11899, "result": { "type": "IOI", "score": [ @@ -245781,18 +245465,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 409, + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3970, + "id": 11900, "result": { "type": "IOI", "score": [ - 31.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245800,15 +245484,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 409, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3993, + "id": 11901, "result": { "type": "IOI", "score": [ @@ -245821,14 +245505,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 409, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4992, + "id": 11902, "result": { "type": "IOI", "score": [ @@ -245840,19 +245524,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.3", + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5479, + "id": 11903, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245860,19 +245544,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.3", + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8339, + "id": 11904, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245880,15 +245564,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8432, + "id": 11905, + "result": { + "type": "IOI", + "score": [ + 31.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144225", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11906, "result": { "type": "IOI", "score": [ @@ -245900,19 +245604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.2", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8569, + "id": 11907, "result": { "type": "IOI", "score": [ - 9.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245920,19 +245624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.3", + "teamId": "144308", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9424, + "id": 11908, "result": { "type": "IOI", "score": [ - 23.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245940,15 +245644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 409, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10327, + "id": 11909, "result": { "type": "IOI", "score": [ @@ -245961,18 +245665,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 409, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3886, + "id": 11910, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -245981,34 +245685,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 420, + "teamId": "144264", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6175, + "id": 11911, "result": { "type": "IOI", "score": [ - 10.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 420, + "problemId": "d1.2", + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8888, + "id": 11912, "result": { "type": "IOI", "score": [ @@ -246024,19 +245732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 420, + "problemId": "d1.4", + "teamId": "144250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8910, + "id": 11913, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246044,19 +245752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 420, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10301, + "id": 11914, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246064,19 +245772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 420, + "problemId": "d1.1", + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10743, + "id": 11915, "result": { "type": "IOI", "score": [ - 23.0 + 9.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246085,18 +245793,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 420, + "teamId": "144105", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3933, + "id": 11916, "result": { "type": "IOI", "score": [ - 10.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246104,19 +245812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 210, + "problemId": "d1.1", + "teamId": "144087", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4104, + "id": 11917, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246124,19 +245832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 210, + "problemId": "d1.3", + "teamId": "144337", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4297, + "id": 11918, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246145,18 +245853,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 210, + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4652, + "id": 11919, "result": { "type": "IOI", "score": [ - 10.0 + 35.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246164,19 +245872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 210, + "problemId": "d1.1", + "teamId": "144328", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4712, + "id": 11920, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246185,18 +245893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 210, + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4914, + "id": 11921, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246204,19 +245912,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 210, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5067, + "id": 11922, "result": { "type": "IOI", "score": [ - 10.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246224,19 +245932,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 210, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5106, + "id": 11923, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246245,14 +245953,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 210, + "teamId": "144335", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8189, + "id": 11924, + "result": { + "type": "IOI", + "score": [ + 63.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.4", + "teamId": "144077", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11925, "result": { "type": "IOI", "score": [ @@ -246265,18 +245993,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 210, + "teamId": "144432", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8848, + "id": 11926, "result": { "type": "IOI", "score": [ - 14.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246284,15 +246012,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 210, + "problemId": "d1.2", + "teamId": "144312", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 3992, + "id": 11927, "result": { "type": "IOI", "score": [ @@ -246305,14 +246033,34 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 86, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4082, + "id": 11928, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.2", + "teamId": "144222", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11929, "result": { "type": "IOI", "score": [ @@ -246325,18 +246073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 86, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4491, + "id": 11930, "result": { "type": "IOI", "score": [ - 14.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246344,19 +246092,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 86, + "problemId": "d1.1", + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5276, + "id": 11931, "result": { "type": "IOI", "score": [ - 23.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246364,15 +246112,35 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 86, + "problemId": "d1.3", + "teamId": "144349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6967, + "id": 11932, + "result": { + "type": "IOI", + "score": [ + 0.0 + ], + "wrongVerdict": null, + "difference": 0.0, + "scoreAfter": 0.0, + "isFirstBestRun": false, + "isFirstBestTeamRun": false + }, + "problemId": "d1.1", + "teamId": "144129", + "time": 0, + "featuredRunMedia": null, + "reactionVideos": [], + "isHidden": false + }, + { + "id": 11933, "result": { "type": "IOI", "score": [ @@ -246389,18 +246157,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 86, + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6989, + "id": 11934, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246408,19 +246176,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 86, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7011, + "id": 11935, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246428,19 +246196,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 86, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7431, + "id": 11936, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246449,18 +246217,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 86, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9244, + "id": 11937, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246469,18 +246237,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 86, + "teamId": "144400", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10411, + "id": 11938, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246489,18 +246257,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 86, + "teamId": "144384", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10528, + "id": 11939, "result": { "type": "IOI", "score": [ - 0.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246508,19 +246276,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 86, + "problemId": "d1.4", + "teamId": "144503", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10682, + "id": 11940, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246528,19 +246296,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 86, + "problemId": "d1.2", + "teamId": "144225", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10802, + "id": 11941, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246548,15 +246316,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 86, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10843, + "id": 11942, "result": { "type": "IOI", "score": [ @@ -246569,18 +246337,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 86, + "teamId": "144367", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10876, + "id": 11943, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246589,18 +246357,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 86, + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11743, + "id": 11944, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246608,19 +246376,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 86, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4057, + "id": 11945, "result": { "type": "IOI", "score": [ - 31.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246628,19 +246396,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8884, + "id": 11946, "result": { "type": "IOI", "score": [ - 14.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246648,19 +246416,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 145, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9937, + "id": 11947, "result": { "type": "IOI", "score": [ - 100.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246668,15 +246436,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 145, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10315, + "id": 11948, "result": { "type": "IOI", "score": [ @@ -246688,19 +246456,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144275", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10494, + "id": 11949, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246709,18 +246477,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 145, + "teamId": "144117", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10536, + "id": 11950, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246729,14 +246497,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 145, + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10734, + "id": 11951, "result": { "type": "IOI", "score": [ @@ -246748,19 +246516,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.4", + "teamId": "144355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10806, + "id": 11952, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246769,18 +246537,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 145, + "teamId": "144473", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10850, + "id": 11953, "result": { "type": "IOI", "score": [ - 0.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246788,35 +246556,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.4", + "teamId": "144118", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10868, + "id": 11954, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11271, + "id": 11955, "result": { "type": "IOI", "score": [ @@ -246828,39 +246600,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144317", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11280, + "id": 11956, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11310, + "id": 11957, "result": { "type": "IOI", "score": [ - 31.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246868,15 +246644,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 145, + "problemId": "d1.3", + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11427, + "id": 11958, "result": { "type": "IOI", "score": [ @@ -246888,19 +246664,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 145, + "problemId": "d1.2", + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 12053, + "id": 11959, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246909,14 +246685,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 145, + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4159, + "id": 11960, "result": { "type": "IOI", "score": [ @@ -246929,18 +246705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 173, + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4453, + "id": 11961, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246948,15 +246724,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 173, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6811, + "id": 11962, "result": { "type": "IOI", "score": [ @@ -246968,19 +246744,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 173, + "problemId": "d1.4", + "teamId": "144480", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6928, + "id": 11963, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -246989,18 +246765,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 173, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9796, + "id": 11964, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247008,19 +246784,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 173, + "problemId": "d1.3", + "teamId": "144224", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9843, + "id": 11965, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247028,19 +246804,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 173, + "problemId": "d1.1", + "teamId": "144244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11604, + "id": 11966, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247048,15 +246824,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 173, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4243, + "id": 11967, "result": { "type": "IOI", "score": [ @@ -247068,15 +246844,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144382", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4271, + "id": 11968, "result": { "type": "IOI", "score": [ @@ -247089,14 +246865,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 35, + "teamId": "144454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4317, + "id": 11969, "result": { "type": "IOI", "score": [ @@ -247108,19 +246884,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 35, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4345, + "id": 11970, "result": { "type": "IOI", "score": [ - 10.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247129,14 +246905,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 35, + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5384, + "id": 11971, "result": { "type": "IOI", "score": [ @@ -247148,19 +246924,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144160", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5404, + "id": 11972, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247169,18 +246945,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 35, + "teamId": "144495", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8721, + "id": 11973, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247188,43 +246964,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 35, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9538, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.1", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144173", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9558, + "id": 11974, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247232,19 +246984,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 35, + "problemId": "d1.2", + "teamId": "144078", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9989, + "id": 11975, "result": { "type": "IOI", "score": [ - 31.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247253,14 +247005,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 35, + "teamId": "144392", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10256, + "id": 11976, "result": { "type": "IOI", "score": [ @@ -247272,19 +247024,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144498", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10721, + "id": 11977, "result": { "type": "IOI", "score": [ - 10.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247292,39 +247044,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11780, + "id": 11978, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11915, + "id": 11979, "result": { "type": "IOI", "score": [ - 9.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247332,19 +247088,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 35, + "problemId": "d1.3", + "teamId": "144477", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4260, + "id": 11980, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247352,15 +247108,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4346, + "id": 11981, "result": { "type": "IOI", "score": [ @@ -247372,19 +247128,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.1", + "teamId": "144332", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4422, + "id": 11982, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247392,19 +247148,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.3", + "teamId": "144383", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4468, + "id": 11983, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247412,19 +247168,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.1", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4646, + "id": 11984, "result": { "type": "IOI", "score": [ - 14.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247432,19 +247188,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.1", + "teamId": "144278", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4875, + "id": 11985, "result": { "type": "IOI", "score": [ - 100.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247452,19 +247208,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 161, + "problemId": "d1.2", + "teamId": "144271", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6151, + "id": 11986, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247473,14 +247229,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 161, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6594, + "id": 11987, "result": { "type": "IOI", "score": [ @@ -247493,18 +247249,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 161, + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8450, + "id": 11988, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247512,15 +247268,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 161, + "problemId": "d1.1", + "teamId": "144089", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9092, + "id": 11989, "result": { "type": "IOI", "score": [ @@ -247532,15 +247288,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 161, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9126, + "id": 11990, "result": { "type": "IOI", "score": [ @@ -247553,14 +247309,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 161, + "teamId": "144345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9455, + "id": 11991, "result": { "type": "IOI", "score": [ @@ -247573,18 +247329,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 161, + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9536, + "id": 11992, "result": { "type": "IOI", "score": [ - 0.0 + 37.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247593,18 +247349,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 161, + "teamId": "144321", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9670, + "id": 11993, "result": { "type": "IOI", "score": [ - 10.0 + 14.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247612,19 +247368,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 161, + "problemId": "d1.4", + "teamId": "144266", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10184, + "id": 11994, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247632,19 +247388,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 161, + "problemId": "d1.4", + "teamId": "144248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11091, + "id": 11995, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247652,19 +247408,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 161, + "problemId": "d1.1", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11331, + "id": 11996, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247672,19 +247428,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 161, + "problemId": "d1.3", + "teamId": "144223", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11523, + "id": 11997, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247693,42 +247449,38 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 161, + "teamId": "144169", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4368, + "id": 11998, "result": { "type": "IOI", "score": [ - 0.0 + 12.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.1", + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4386, + "id": 11999, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247736,15 +247488,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.3", + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4695, + "id": 12000, "result": { "type": "IOI", "score": [ @@ -247756,19 +247508,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.2", + "teamId": "144343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4703, + "id": 12001, "result": { "type": "IOI", "score": [ - 24.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247776,19 +247528,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.1", + "teamId": "144122", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4979, + "id": 12002, "result": { "type": "IOI", "score": [ - 0.0 + 36.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247797,18 +247549,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 67, + "teamId": "144161", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5433, + "id": 12003, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247816,19 +247568,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.2", + "teamId": "144441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6745, + "id": 12004, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247836,19 +247588,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6878, + "id": 12005, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247856,39 +247608,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.1", + "teamId": "144509", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7461, + "id": 12006, "result": { "type": "IOI", "score": [ - 24.0 + 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7949, + "id": 12007, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247896,15 +247652,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.3", + "teamId": "144424", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9220, + "id": 12008, "result": { "type": "IOI", "score": [ @@ -247917,18 +247673,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 67, + "teamId": "144220", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10997, + "id": 12009, "result": { "type": "IOI", "score": [ - 24.0 + 82.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247936,19 +247692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 67, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4522, + "id": 12010, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247957,18 +247713,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 51, + "teamId": "144155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4684, + "id": 12011, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247976,19 +247732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 51, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4850, + "id": 12012, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -247996,19 +247752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 51, + "problemId": "d1.1", + "teamId": "144129", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5735, + "id": 12013, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248016,19 +247772,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144168", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6238, + "id": 12014, "result": { "type": "IOI", "score": [ - 9.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248036,19 +247792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 51, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6579, + "id": 12015, "result": { "type": "IOI", "score": [ - 9.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248056,19 +247812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144402", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7063, + "id": 12016, "result": { "type": "IOI", "score": [ - 23.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248076,19 +247832,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7434, + "id": 12017, "result": { "type": "IOI", "score": [ - 12.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248096,19 +247852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 51, + "problemId": "d1.1", + "teamId": "144330", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8630, + "id": 12018, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248116,19 +247872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144408", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8837, + "id": 12019, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248137,18 +247893,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 51, + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9065, + "id": 12020, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248156,15 +247912,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9480, + "id": 12021, "result": { "type": "IOI", "score": [ @@ -248176,15 +247932,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.2", + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9600, + "id": 12022, "result": { "type": "IOI", "score": [ @@ -248196,43 +247952,39 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10317, + "id": 12023, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10322, + "id": 12024, "result": { "type": "IOI", "score": [ - 10.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248240,15 +247992,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 51, + "problemId": "d1.3", + "teamId": "144193", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10697, + "id": 12025, "result": { "type": "IOI", "score": [ @@ -248260,19 +248012,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 51, + "problemId": "d1.1", + "teamId": "144406", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10854, + "id": 12026, "result": { "type": "IOI", "score": [ - 31.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248281,18 +248033,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 51, + "teamId": "144097", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11885, + "id": 12027, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248301,14 +248053,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 51, + "teamId": "144211", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4757, + "id": 12028, "result": { "type": "IOI", "score": [ @@ -248321,18 +248073,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 251, + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4776, + "id": 12029, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248341,18 +248093,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 251, + "teamId": "144106", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6923, + "id": 12030, "result": { "type": "IOI", "score": [ - 100.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248360,19 +248112,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 251, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10364, + "id": 12031, "result": { "type": "IOI", "score": [ - 12.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248380,19 +248132,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 251, + "problemId": "d1.2", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10939, + "id": 12032, "result": { "type": "IOI", "score": [ - 0.0 + 63.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248400,15 +248152,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 251, + "problemId": "d1.4", + "teamId": "144245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11186, + "id": 12033, "result": { "type": "IOI", "score": [ @@ -248421,18 +248173,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 251, + "teamId": "144289", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11478, + "id": 12034, "result": { "type": "IOI", "score": [ - 37.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248441,18 +248193,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 251, + "teamId": "144377", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11992, + "id": 12035, "result": { "type": "IOI", "score": [ - 37.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248461,14 +248213,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 251, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4837, + "id": 12036, "result": { "type": "IOI", "score": [ @@ -248480,19 +248232,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 264, + "problemId": "d1.1", + "teamId": "144449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 4896, + "id": 12037, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248501,18 +248253,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 225, + "teamId": "144236", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9524, + "id": 12038, "result": { "type": "IOI", "score": [ - 16.0 + 100.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248520,15 +248272,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 225, + "problemId": "d1.4", + "teamId": "144164", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10737, + "id": 12039, "result": { "type": "IOI", "score": [ @@ -248541,18 +248293,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 225, + "teamId": "144257", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11339, + "id": 12040, "result": { "type": "IOI", "score": [ - 48.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248561,38 +248313,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 225, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5020, - "result": { - "type": "IOI", - "score": [ - 36.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 130, + "teamId": "144107", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5465, + "id": 12041, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248600,19 +248332,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 130, + "problemId": "d1.1", + "teamId": "144438", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8778, + "id": 12042, "result": { "type": "IOI", "score": [ - 62.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248620,19 +248352,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 130, + "problemId": "d1.2", + "teamId": "144234", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8901, + "id": 12043, "result": { "type": "IOI", "score": [ - 62.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248640,19 +248372,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 130, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10276, + "id": 12044, "result": { "type": "IOI", "score": [ - 62.0 + 29.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248661,38 +248393,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.4", - "teamId": 130, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10963, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 130, + "teamId": "144431", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11327, + "id": 12045, "result": { "type": "IOI", "score": [ - 62.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248700,15 +248412,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 130, + "problemId": "d1.2", + "teamId": "144192", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5102, + "id": 12046, "result": { "type": "IOI", "score": [ @@ -248721,18 +248433,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 430, + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9745, + "id": 12047, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248740,19 +248452,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9898, + "id": 12048, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248760,19 +248472,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.3", + "teamId": "144451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10008, + "id": 12049, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248780,19 +248492,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.3", + "teamId": "144282", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10291, + "id": 12050, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248800,19 +248512,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.1", + "teamId": "144304", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10540, + "id": 12051, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248820,19 +248532,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.1", + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10809, + "id": 12052, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248840,15 +248552,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, + "problemId": "d1.3", + "teamId": "144362", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10873, + "id": 12053, "result": { "type": "IOI", "score": [ @@ -248860,59 +248572,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 430, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 11207, - "result": { - "type": "IOI", - "score": [ - 9.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 430, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 5394, - "result": { - "type": "IOI", - "score": [ - 12.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, "problemId": "d1.1", - "teamId": 389, + "teamId": "144215", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5663, + "id": 12054, "result": { "type": "IOI", "score": [ - 12.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248921,18 +248593,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 389, + "teamId": "144514", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6755, + "id": 12055, "result": { "type": "IOI", "score": [ - 10.0 + 53.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248940,19 +248612,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 389, + "problemId": "d1.2", + "teamId": "144274", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7062, + "id": 12056, "result": { "type": "IOI", "score": [ - 22.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -248961,38 +248633,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 389, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10946, - "result": { - "type": "IOI", - "score": [ - 31.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.2", - "teamId": 389, + "teamId": "144218", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5469, + "id": 12057, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249000,19 +248652,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5585, + "id": 12058, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249021,14 +248673,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 416, + "teamId": "144183", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5862, + "id": 12059, "result": { "type": "IOI", "score": [ @@ -249040,19 +248692,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.1", + "teamId": "144422", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5937, + "id": 12060, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249060,15 +248712,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.1", + "teamId": "144135", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6074, + "id": 12061, "result": { "type": "IOI", "score": [ @@ -249080,19 +248732,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.1", + "teamId": "144370", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6747, + "id": 12062, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249100,19 +248752,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144072", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7531, + "id": 12063, "result": { "type": "IOI", "score": [ - 16.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249121,18 +248773,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 416, + "teamId": "144482", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7863, + "id": 12064, "result": { "type": "IOI", "score": [ - 16.0 + 23.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249140,19 +248792,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.4", + "teamId": "144380", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7934, + "id": 12065, "result": { "type": "IOI", "score": [ - 16.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249160,19 +248812,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8176, + "id": 12066, "result": { "type": "IOI", "score": [ - 16.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249180,15 +248832,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144492", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8287, + "id": 12067, "result": { "type": "IOI", "score": [ @@ -249200,39 +248852,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8327, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144423", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8614, + "id": 12068, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249240,15 +248872,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144096", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8649, + "id": 12069, "result": { "type": "IOI", "score": [ @@ -249264,39 +248896,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8664, - "result": { - "type": "IOI", - "score": [ - 16.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.4", + "teamId": "144136", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8820, + "id": 12070, "result": { "type": "IOI", "score": [ - 16.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249305,18 +248917,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 416, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8907, + "id": 12071, "result": { "type": "IOI", "score": [ - 16.0 + 25.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249324,15 +248936,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.1", + "teamId": "144071", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9724, + "id": 12072, "result": { "type": "IOI", "score": [ @@ -249345,18 +248957,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 416, + "teamId": "144389", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10044, + "id": 12073, "result": { "type": "IOI", "score": [ - 16.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249364,19 +248976,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 416, + "problemId": "d1.2", + "teamId": "144070", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5614, + "id": 12074, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249385,38 +248997,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 262, + "teamId": "144467", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7331, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 262, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 8950, + "id": 12075, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249425,62 +249017,54 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 262, + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9113, + "id": 12076, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 262, + "problemId": "d1.2", + "teamId": "144417", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9141, + "id": 12077, "result": { "type": "IOI", "score": [ - 0.0 + 25.0 ], - "wrongVerdict": { - "shortName": "CE", - "isAddingPenalty": false, - "isAccepted": false - }, + "wrongVerdict": null, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 262, + "teamId": "144272", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9153, + "id": 12078, "result": { "type": "IOI", "score": [ @@ -249492,19 +249076,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 262, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9224, + "id": 12079, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249512,15 +249096,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 262, + "problemId": "d1.2", + "teamId": "144444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11099, + "id": 12080, "result": { "type": "IOI", "score": [ @@ -249533,38 +249117,42 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 262, + "teamId": "144357", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11981, + "id": 12081, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 262, + "problemId": "d1.4", + "teamId": "144240", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 5930, + "id": 12082, "result": { "type": "IOI", "score": [ - 47.0 + 0.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249573,14 +249161,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 13, + "teamId": "144222", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7858, + "id": 12083, "result": { "type": "IOI", "score": [ @@ -249592,59 +249180,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 13, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9380, - "result": { - "type": "IOI", - "score": [ - 14.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 13, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 9723, - "result": { - "type": "IOI", - "score": [ - 23.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 13, + "problemId": "d1.2", + "teamId": "144216", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10212, + "id": 12084, "result": { "type": "IOI", "score": [ - 10.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249652,15 +249200,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 13, + "problemId": "d1.2", + "teamId": "144239", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6174, + "id": 12085, "result": { "type": "IOI", "score": [ @@ -249672,15 +249220,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 142, + "problemId": "d1.2", + "teamId": "144513", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6526, + "id": 12086, "result": { "type": "IOI", "score": [ @@ -249693,18 +249241,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 142, + "teamId": "144373", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 6853, + "id": 12087, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249712,19 +249260,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 142, + "problemId": "d1.3", + "teamId": "144463", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7092, + "id": 12088, "result": { "type": "IOI", "score": [ - 0.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249733,34 +249281,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 88, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 7117, - "result": { - "type": "IOI", - "score": [ - 24.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 88, + "teamId": "144104", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8935, + "id": 12089, "result": { "type": "IOI", "score": [ @@ -249773,18 +249301,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 88, + "teamId": "144442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9391, + "id": 12090, "result": { "type": "IOI", "score": [ - 0.0 + 31.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249792,19 +249320,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 88, + "problemId": "d1.2", + "teamId": "144116", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10097, + "id": 12091, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249812,15 +249340,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 88, + "problemId": "d1.2", + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11726, + "id": 12092, "result": { "type": "IOI", "score": [ @@ -249832,19 +249360,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.1", - "teamId": 88, + "problemId": "d1.2", + "teamId": "144446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7717, + "id": 12093, "result": { "type": "IOI", "score": [ - 0.0 + 42.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249852,15 +249380,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.4", + "teamId": "144338", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 7962, + "id": 12094, "result": { "type": "IOI", "score": [ @@ -249872,19 +249400,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.1", + "teamId": "144418", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9112, + "id": 12095, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249892,15 +249420,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.1", + "teamId": "144132", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9270, + "id": 12096, "result": { "type": "IOI", "score": [ @@ -249912,15 +249440,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.2", + "teamId": "144123", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9718, + "id": 12097, "result": { "type": "IOI", "score": [ @@ -249933,34 +249461,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 56, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10402, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.3", - "teamId": 56, + "teamId": "144201", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10606, + "id": 12098, "result": { "type": "IOI", "score": [ @@ -249972,19 +249480,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.1", + "teamId": "144341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11300, + "id": 12099, "result": { "type": "IOI", "score": [ - 0.0 + 57.0 ], "wrongVerdict": null, "difference": 0.0, @@ -249992,39 +249500,43 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.1", + "teamId": "144404", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11582, + "id": 12100, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 56, + "problemId": "d1.4", + "teamId": "144108", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 8516, + "id": 12101, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250033,18 +249545,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 369, + "teamId": "144195", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9058, + "id": 12102, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250053,18 +249565,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 369, + "teamId": "144145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9104, + "id": 12103, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250073,14 +249585,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 369, + "teamId": "144209", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9210, + "id": 12104, "result": { "type": "IOI", "score": [ @@ -250092,19 +249604,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 369, + "problemId": "d1.2", + "teamId": "144440", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9472, + "id": 12105, "result": { "type": "IOI", "score": [ - 0.0 + 10.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250112,19 +249624,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 369, + "problemId": "d1.1", + "teamId": "144255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10710, + "id": 12106, "result": { "type": "IOI", "score": [ - 32.0 + 22.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250132,19 +249644,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 369, + "problemId": "d1.1", + "teamId": "144331", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11047, + "id": 12107, "result": { "type": "IOI", "score": [ - 32.0 + 12.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250152,15 +249664,15 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 369, + "problemId": "d1.2", + "teamId": "144324", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11477, + "id": 12108, "result": { "type": "IOI", "score": [ @@ -250172,19 +249684,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 369, + "problemId": "d1.1", + "teamId": "144254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9022, + "id": 12109, "result": { "type": "IOI", "score": [ - 0.0 + 47.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250193,18 +249705,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.2", - "teamId": 402, + "teamId": "144187", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9395, + "id": 12110, "result": { "type": "IOI", "score": [ - 0.0 + 16.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250213,14 +249725,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 159, + "teamId": "144091", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9603, + "id": 12111, "result": { "type": "IOI", "score": [ @@ -250233,18 +249745,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 159, + "teamId": "144506", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 9810, + "id": 12112, "result": { "type": "IOI", "score": [ - 0.0 + 48.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250253,34 +249765,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 159, - "time": 0, - "featuredRunMedia": null, - "reactionVideos": [], - "isHidden": false - }, - { - "id": 10182, - "result": { - "type": "IOI", - "score": [ - 0.0 - ], - "wrongVerdict": null, - "difference": 0.0, - "scoreAfter": 0.0, - "isFirstBestRun": false, - "isFirstBestTeamRun": false - }, - "problemId": "d1.4", - "teamId": 159, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10780, + "id": 12113, "result": { "type": "IOI", "score": [ @@ -250293,18 +249785,18 @@ "isFirstBestTeamRun": false }, "problemId": "d1.1", - "teamId": 159, + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10785, + "id": 12114, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250312,55 +249804,63 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 159, + "problemId": "d1.3", + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11883, + "id": 12115, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.4", - "teamId": 159, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 10925, + "id": 12116, "result": { "type": "IOI", "score": [ 0.0 ], - "wrongVerdict": null, + "wrongVerdict": { + "shortName": "CE", + "isAddingPenalty": false, + "isAccepted": false + }, "difference": 0.0, "scoreAfter": 0.0, "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.2", - "teamId": 290, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11087, + "id": 12117, "result": { "type": "IOI", "score": [ @@ -250372,19 +249872,19 @@ "isFirstBestRun": false, "isFirstBestTeamRun": false }, - "problemId": "d1.3", - "teamId": 10, + "problemId": "d1.1", + "teamId": "144093", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11395, + "id": 12118, "result": { "type": "IOI", "score": [ - 0.0 + 32.0 ], "wrongVerdict": null, "difference": 0.0, @@ -250393,14 +249893,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 10, + "teamId": "144079", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11623, + "id": 12119, "result": { "type": "IOI", "score": [ @@ -250413,14 +249913,14 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 10, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], "isHidden": false }, { - "id": 11662, + "id": 12120, "result": { "type": "IOI", "score": [ @@ -250433,7 +249933,7 @@ "isFirstBestTeamRun": false }, "problemId": "d1.3", - "teamId": 10, + "teamId": "144351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -250453,7 +249953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 147351, "featuredRunMedia": null, "reactionVideos": [], @@ -250473,7 +249973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 225573, "featuredRunMedia": null, "reactionVideos": [], @@ -250493,7 +249993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 251172, "featuredRunMedia": null, "reactionVideos": [], @@ -250513,7 +250013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 274195, "featuredRunMedia": null, "reactionVideos": [], @@ -250533,7 +250033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 280004, "featuredRunMedia": null, "reactionVideos": [], @@ -250553,7 +250053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 287541, "featuredRunMedia": null, "reactionVideos": [], @@ -250573,7 +250073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "144250", "time": 299391, "featuredRunMedia": null, "reactionVideos": [], @@ -250593,7 +250093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 310401, "featuredRunMedia": null, "reactionVideos": [], @@ -250613,7 +250113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "144085", "time": 336353, "featuredRunMedia": null, "reactionVideos": [], @@ -250633,7 +250133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 339358, "featuredRunMedia": null, "reactionVideos": [], @@ -250653,7 +250153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "144085", "time": 352181, "featuredRunMedia": null, "reactionVideos": [], @@ -250673,7 +250173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "144349", "time": 359126, "featuredRunMedia": null, "reactionVideos": [], @@ -250693,7 +250193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "144285", "time": 364094, "featuredRunMedia": null, "reactionVideos": [], @@ -250713,7 +250213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "144307", "time": 367728, "featuredRunMedia": null, "reactionVideos": [], @@ -250733,7 +250233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 395, + "teamId": "144465", "time": 397150, "featuredRunMedia": null, "reactionVideos": [], @@ -250753,7 +250253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "144384", "time": 401044, "featuredRunMedia": null, "reactionVideos": [], @@ -250773,7 +250273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "144149", "time": 421493, "featuredRunMedia": null, "reactionVideos": [], @@ -250793,7 +250293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "144285", "time": 444932, "featuredRunMedia": null, "reactionVideos": [], @@ -250813,7 +250313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "144380", "time": 446720, "featuredRunMedia": null, "reactionVideos": [], @@ -250833,7 +250333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "144163", "time": 452783, "featuredRunMedia": null, "reactionVideos": [], @@ -250853,7 +250353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 458139, "featuredRunMedia": null, "reactionVideos": [], @@ -250873,7 +250373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 459039, "featuredRunMedia": null, "reactionVideos": [], @@ -250893,7 +250393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "144103", "time": 459412, "featuredRunMedia": null, "reactionVideos": [], @@ -250913,7 +250413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 464827, "featuredRunMedia": null, "reactionVideos": [], @@ -250933,7 +250433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 467650, "featuredRunMedia": null, "reactionVideos": [], @@ -250953,7 +250453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "144084", "time": 472965, "featuredRunMedia": null, "reactionVideos": [], @@ -250973,7 +250473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 474016, "featuredRunMedia": null, "reactionVideos": [], @@ -250993,7 +250493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 372, + "teamId": "144442", "time": 487151, "featuredRunMedia": null, "reactionVideos": [], @@ -251013,7 +250513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "144333", "time": 492231, "featuredRunMedia": null, "reactionVideos": [], @@ -251033,7 +250533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 443, + "teamId": "144513", "time": 501772, "featuredRunMedia": null, "reactionVideos": [], @@ -251053,7 +250553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "144307", "time": 503762, "featuredRunMedia": null, "reactionVideos": [], @@ -251073,7 +250573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 448, + "teamId": "144518", "time": 504988, "featuredRunMedia": null, "reactionVideos": [], @@ -251093,7 +250593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "144402", "time": 506226, "featuredRunMedia": null, "reactionVideos": [], @@ -251113,7 +250613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "144181", "time": 509014, "featuredRunMedia": null, "reactionVideos": [], @@ -251133,7 +250633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 517891, "featuredRunMedia": null, "reactionVideos": [], @@ -251153,7 +250653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 530891, "featuredRunMedia": null, "reactionVideos": [], @@ -251173,7 +250673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 534970, "featuredRunMedia": null, "reactionVideos": [], @@ -251193,7 +250693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "144264", "time": 535628, "featuredRunMedia": null, "reactionVideos": [], @@ -251213,7 +250713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "144103", "time": 544006, "featuredRunMedia": null, "reactionVideos": [], @@ -251233,7 +250733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 560724, "featuredRunMedia": null, "reactionVideos": [], @@ -251253,7 +250753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "144150", "time": 564833, "featuredRunMedia": null, "reactionVideos": [], @@ -251273,7 +250773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 565711, "featuredRunMedia": null, "reactionVideos": [], @@ -251293,7 +250793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "144333", "time": 570061, "featuredRunMedia": null, "reactionVideos": [], @@ -251313,7 +250813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 378, + "teamId": "144448", "time": 571642, "featuredRunMedia": null, "reactionVideos": [], @@ -251333,7 +250833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 572495, "featuredRunMedia": null, "reactionVideos": [], @@ -251353,7 +250853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "144282", "time": 572964, "featuredRunMedia": null, "reactionVideos": [], @@ -251373,7 +250873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "144364", "time": 573856, "featuredRunMedia": null, "reactionVideos": [], @@ -251393,7 +250893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "144157", "time": 579829, "featuredRunMedia": null, "reactionVideos": [], @@ -251413,7 +250913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 580630, "featuredRunMedia": null, "reactionVideos": [], @@ -251433,7 +250933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 448, + "teamId": "144518", "time": 583302, "featuredRunMedia": null, "reactionVideos": [], @@ -251453,7 +250953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 583512, "featuredRunMedia": null, "reactionVideos": [], @@ -251473,7 +250973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 4, + "teamId": "144074", "time": 584436, "featuredRunMedia": null, "reactionVideos": [], @@ -251493,7 +250993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 594878, "featuredRunMedia": null, "reactionVideos": [], @@ -251513,7 +251013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 597224, "featuredRunMedia": null, "reactionVideos": [], @@ -251533,7 +251033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "144207", "time": 597684, "featuredRunMedia": null, "reactionVideos": [], @@ -251553,7 +251053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "144402", "time": 601976, "featuredRunMedia": null, "reactionVideos": [], @@ -251573,7 +251073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 603835, "featuredRunMedia": null, "reactionVideos": [], @@ -251593,7 +251093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "144250", "time": 605947, "featuredRunMedia": null, "reactionVideos": [], @@ -251613,7 +251113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 372, + "teamId": "144442", "time": 611306, "featuredRunMedia": null, "reactionVideos": [], @@ -251633,7 +251133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 618380, "featuredRunMedia": null, "reactionVideos": [], @@ -251653,7 +251153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "144161", "time": 619399, "featuredRunMedia": null, "reactionVideos": [], @@ -251673,7 +251173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "144148", "time": 625189, "featuredRunMedia": null, "reactionVideos": [], @@ -251693,7 +251193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 625797, "featuredRunMedia": null, "reactionVideos": [], @@ -251713,7 +251213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 628056, "featuredRunMedia": null, "reactionVideos": [], @@ -251733,7 +251233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 632187, "featuredRunMedia": null, "reactionVideos": [], @@ -251753,7 +251253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 363, + "teamId": "144433", "time": 634492, "featuredRunMedia": null, "reactionVideos": [], @@ -251773,7 +251273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 641264, "featuredRunMedia": null, "reactionVideos": [], @@ -251793,7 +251293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 642907, "featuredRunMedia": null, "reactionVideos": [], @@ -251813,7 +251313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "144071", "time": 643358, "featuredRunMedia": null, "reactionVideos": [], @@ -251833,7 +251333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "144085", "time": 644597, "featuredRunMedia": null, "reactionVideos": [], @@ -251853,7 +251353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 406, + "teamId": "144476", "time": 649760, "featuredRunMedia": null, "reactionVideos": [], @@ -251873,7 +251373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "144384", "time": 650790, "featuredRunMedia": null, "reactionVideos": [], @@ -251893,7 +251393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 657659, "featuredRunMedia": null, "reactionVideos": [], @@ -251913,7 +251413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 660552, "featuredRunMedia": null, "reactionVideos": [], @@ -251933,7 +251433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "144398", "time": 663060, "featuredRunMedia": null, "reactionVideos": [], @@ -251953,7 +251453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 664191, "featuredRunMedia": null, "reactionVideos": [], @@ -251973,7 +251473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 372, + "teamId": "144442", "time": 665452, "featuredRunMedia": null, "reactionVideos": [], @@ -251993,7 +251493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 667087, "featuredRunMedia": null, "reactionVideos": [], @@ -252013,7 +251513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "144130", "time": 668443, "featuredRunMedia": null, "reactionVideos": [], @@ -252033,7 +251533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "144233", "time": 670289, "featuredRunMedia": null, "reactionVideos": [], @@ -252053,7 +251553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 670753, "featuredRunMedia": null, "reactionVideos": [], @@ -252073,7 +251573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 672775, "featuredRunMedia": null, "reactionVideos": [], @@ -252093,7 +251593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 447, + "teamId": "144517", "time": 674896, "featuredRunMedia": null, "reactionVideos": [], @@ -252113,7 +251613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 345, + "teamId": "144415", "time": 676966, "featuredRunMedia": null, "reactionVideos": [], @@ -252133,7 +251633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 677307, "featuredRunMedia": null, "reactionVideos": [], @@ -252153,7 +251653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "144224", "time": 681953, "featuredRunMedia": null, "reactionVideos": [], @@ -252173,7 +251673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 684607, "featuredRunMedia": null, "reactionVideos": [], @@ -252193,7 +251693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 74, + "teamId": "144144", "time": 685722, "featuredRunMedia": null, "reactionVideos": [], @@ -252213,7 +251713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 395, + "teamId": "144465", "time": 686010, "featuredRunMedia": null, "reactionVideos": [], @@ -252233,7 +251733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 443, + "teamId": "144513", "time": 687651, "featuredRunMedia": null, "reactionVideos": [], @@ -252253,7 +251753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 687841, "featuredRunMedia": null, "reactionVideos": [], @@ -252273,7 +251773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 693174, "featuredRunMedia": null, "reactionVideos": [], @@ -252293,7 +251793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 695652, "featuredRunMedia": null, "reactionVideos": [], @@ -252313,7 +251813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "144116", "time": 695891, "featuredRunMedia": null, "reactionVideos": [], @@ -252333,7 +251833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 700843, "featuredRunMedia": null, "reactionVideos": [], @@ -252353,7 +251853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "144394", "time": 701395, "featuredRunMedia": null, "reactionVideos": [], @@ -252373,7 +251873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "144364", "time": 702280, "featuredRunMedia": null, "reactionVideos": [], @@ -252393,7 +251893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 703396, "featuredRunMedia": null, "reactionVideos": [], @@ -252413,7 +251913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 704580, "featuredRunMedia": null, "reactionVideos": [], @@ -252433,7 +251933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 378, + "teamId": "144448", "time": 708593, "featuredRunMedia": null, "reactionVideos": [], @@ -252453,7 +251953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 709485, "featuredRunMedia": null, "reactionVideos": [], @@ -252473,7 +251973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 709523, "featuredRunMedia": null, "reactionVideos": [], @@ -252493,7 +251993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 394, + "teamId": "144464", "time": 715170, "featuredRunMedia": null, "reactionVideos": [], @@ -252513,7 +252013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "144132", "time": 719923, "featuredRunMedia": null, "reactionVideos": [], @@ -252533,7 +252033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 721605, "featuredRunMedia": null, "reactionVideos": [], @@ -252553,7 +252053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 722208, "featuredRunMedia": null, "reactionVideos": [], @@ -252573,7 +252073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 196, + "teamId": "144266", "time": 722451, "featuredRunMedia": null, "reactionVideos": [], @@ -252593,7 +252093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "144369", "time": 723077, "featuredRunMedia": null, "reactionVideos": [], @@ -252613,7 +252113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "144384", "time": 725259, "featuredRunMedia": null, "reactionVideos": [], @@ -252633,7 +252133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 444, + "teamId": "144514", "time": 726811, "featuredRunMedia": null, "reactionVideos": [], @@ -252653,7 +252153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "144099", "time": 728950, "featuredRunMedia": null, "reactionVideos": [], @@ -252673,7 +252173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 730015, "featuredRunMedia": null, "reactionVideos": [], @@ -252693,7 +252193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 731325, "featuredRunMedia": null, "reactionVideos": [], @@ -252713,7 +252213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 731555, "featuredRunMedia": null, "reactionVideos": [], @@ -252733,7 +252233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 360, + "teamId": "144430", "time": 731634, "featuredRunMedia": null, "reactionVideos": [], @@ -252753,7 +252253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "144123", "time": 733490, "featuredRunMedia": null, "reactionVideos": [], @@ -252773,7 +252273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "144382", "time": 733510, "featuredRunMedia": null, "reactionVideos": [], @@ -252793,7 +252293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 734247, "featuredRunMedia": null, "reactionVideos": [], @@ -252813,7 +252313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 737013, "featuredRunMedia": null, "reactionVideos": [], @@ -252833,7 +252333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 741789, "featuredRunMedia": null, "reactionVideos": [], @@ -252853,7 +252353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 11, + "teamId": "144081", "time": 742026, "featuredRunMedia": null, "reactionVideos": [], @@ -252873,7 +252373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "144224", "time": 744444, "featuredRunMedia": null, "reactionVideos": [], @@ -252893,7 +252393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 749024, "featuredRunMedia": null, "reactionVideos": [], @@ -252913,7 +252413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 752850, "featuredRunMedia": null, "reactionVideos": [], @@ -252933,7 +252433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 753845, "featuredRunMedia": null, "reactionVideos": [], @@ -252953,7 +252453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 754060, "featuredRunMedia": null, "reactionVideos": [], @@ -252973,7 +252473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "144071", "time": 756706, "featuredRunMedia": null, "reactionVideos": [], @@ -252993,7 +252493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "144384", "time": 759245, "featuredRunMedia": null, "reactionVideos": [], @@ -253013,7 +252513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "144157", "time": 762289, "featuredRunMedia": null, "reactionVideos": [], @@ -253033,7 +252533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 372, + "teamId": "144442", "time": 763404, "featuredRunMedia": null, "reactionVideos": [], @@ -253053,7 +252553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "144392", "time": 763754, "featuredRunMedia": null, "reactionVideos": [], @@ -253073,7 +252573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 768884, "featuredRunMedia": null, "reactionVideos": [], @@ -253093,7 +252593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "144116", "time": 769122, "featuredRunMedia": null, "reactionVideos": [], @@ -253113,7 +252613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 772015, "featuredRunMedia": null, "reactionVideos": [], @@ -253133,7 +252633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 772572, "featuredRunMedia": null, "reactionVideos": [], @@ -253153,7 +252653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 772700, "featuredRunMedia": null, "reactionVideos": [], @@ -253173,7 +252673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "144161", "time": 780383, "featuredRunMedia": null, "reactionVideos": [], @@ -253193,7 +252693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 780938, "featuredRunMedia": null, "reactionVideos": [], @@ -253213,7 +252713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 411, + "teamId": "144481", "time": 787081, "featuredRunMedia": null, "reactionVideos": [], @@ -253233,7 +252733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 793484, "featuredRunMedia": null, "reactionVideos": [], @@ -253257,7 +252757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 796514, "featuredRunMedia": null, "reactionVideos": [], @@ -253277,7 +252777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 148, + "teamId": "144218", "time": 798692, "featuredRunMedia": null, "reactionVideos": [], @@ -253297,7 +252797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 800320, "featuredRunMedia": null, "reactionVideos": [], @@ -253317,7 +252817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 801149, "featuredRunMedia": null, "reactionVideos": [], @@ -253337,7 +252837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "144378", "time": 802152, "featuredRunMedia": null, "reactionVideos": [], @@ -253357,7 +252857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 366, + "teamId": "144436", "time": 804100, "featuredRunMedia": null, "reactionVideos": [], @@ -253377,7 +252877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 812565, "featuredRunMedia": null, "reactionVideos": [], @@ -253397,7 +252897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "144337", "time": 815467, "featuredRunMedia": null, "reactionVideos": [], @@ -253417,7 +252917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 4, + "teamId": "144074", "time": 815611, "featuredRunMedia": null, "reactionVideos": [], @@ -253437,7 +252937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 360, + "teamId": "144430", "time": 818212, "featuredRunMedia": null, "reactionVideos": [], @@ -253457,7 +252957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 818985, "featuredRunMedia": null, "reactionVideos": [], @@ -253477,7 +252977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 819536, "featuredRunMedia": null, "reactionVideos": [], @@ -253497,7 +252997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 819575, "featuredRunMedia": null, "reactionVideos": [], @@ -253517,7 +253017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 819845, "featuredRunMedia": null, "reactionVideos": [], @@ -253537,7 +253037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "144076", "time": 820343, "featuredRunMedia": null, "reactionVideos": [], @@ -253557,7 +253057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "144190", "time": 823536, "featuredRunMedia": null, "reactionVideos": [], @@ -253577,7 +253077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "144125", "time": 827787, "featuredRunMedia": null, "reactionVideos": [], @@ -253597,7 +253097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 828583, "featuredRunMedia": null, "reactionVideos": [], @@ -253617,7 +253117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "144271", "time": 828807, "featuredRunMedia": null, "reactionVideos": [], @@ -253637,7 +253137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 830556, "featuredRunMedia": null, "reactionVideos": [], @@ -253657,7 +253157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "144394", "time": 830614, "featuredRunMedia": null, "reactionVideos": [], @@ -253677,7 +253177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 830684, "featuredRunMedia": null, "reactionVideos": [], @@ -253697,7 +253197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 833067, "featuredRunMedia": null, "reactionVideos": [], @@ -253717,7 +253217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "144107", "time": 833118, "featuredRunMedia": null, "reactionVideos": [], @@ -253737,7 +253237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 834305, "featuredRunMedia": null, "reactionVideos": [], @@ -253757,7 +253257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 415, + "teamId": "144485", "time": 836158, "featuredRunMedia": null, "reactionVideos": [], @@ -253777,7 +253277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 837416, "featuredRunMedia": null, "reactionVideos": [], @@ -253797,7 +253297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 105, + "teamId": "144175", "time": 838440, "featuredRunMedia": null, "reactionVideos": [], @@ -253817,7 +253317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "144296", "time": 840651, "featuredRunMedia": null, "reactionVideos": [], @@ -253837,7 +253337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 841330, "featuredRunMedia": null, "reactionVideos": [], @@ -253857,7 +253357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 846418, "featuredRunMedia": null, "reactionVideos": [], @@ -253877,7 +253377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "144286", "time": 847316, "featuredRunMedia": null, "reactionVideos": [], @@ -253897,7 +253397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 848368, "featuredRunMedia": null, "reactionVideos": [], @@ -253917,7 +253417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 850012, "featuredRunMedia": null, "reactionVideos": [], @@ -253937,7 +253437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 390, + "teamId": "144460", "time": 850572, "featuredRunMedia": null, "reactionVideos": [], @@ -253957,7 +253457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 856669, "featuredRunMedia": null, "reactionVideos": [], @@ -253977,7 +253477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 859831, "featuredRunMedia": null, "reactionVideos": [], @@ -253997,7 +253497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "144114", "time": 861320, "featuredRunMedia": null, "reactionVideos": [], @@ -254017,7 +253517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "144190", "time": 866112, "featuredRunMedia": null, "reactionVideos": [], @@ -254037,7 +253537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 867341, "featuredRunMedia": null, "reactionVideos": [], @@ -254057,7 +253557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "144157", "time": 868708, "featuredRunMedia": null, "reactionVideos": [], @@ -254077,7 +253577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 869199, "featuredRunMedia": null, "reactionVideos": [], @@ -254097,7 +253597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 869675, "featuredRunMedia": null, "reactionVideos": [], @@ -254117,7 +253617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 870129, "featuredRunMedia": null, "reactionVideos": [], @@ -254137,7 +253637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "144398", "time": 872268, "featuredRunMedia": null, "reactionVideos": [], @@ -254157,7 +253657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "144250", "time": 873655, "featuredRunMedia": null, "reactionVideos": [], @@ -254177,7 +253677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 873718, "featuredRunMedia": null, "reactionVideos": [], @@ -254197,7 +253697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 411, + "teamId": "144481", "time": 874331, "featuredRunMedia": null, "reactionVideos": [], @@ -254217,7 +253717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "144103", "time": 875859, "featuredRunMedia": null, "reactionVideos": [], @@ -254237,7 +253737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 876847, "featuredRunMedia": null, "reactionVideos": [], @@ -254257,7 +253757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 877263, "featuredRunMedia": null, "reactionVideos": [], @@ -254277,7 +253777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 880918, "featuredRunMedia": null, "reactionVideos": [], @@ -254297,7 +253797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 438, + "teamId": "144508", "time": 889194, "featuredRunMedia": null, "reactionVideos": [], @@ -254317,7 +253817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "144125", "time": 890509, "featuredRunMedia": null, "reactionVideos": [], @@ -254337,7 +253837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "144132", "time": 890690, "featuredRunMedia": null, "reactionVideos": [], @@ -254357,7 +253857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "144319", "time": 891193, "featuredRunMedia": null, "reactionVideos": [], @@ -254377,7 +253877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 333, + "teamId": "144403", "time": 891551, "featuredRunMedia": null, "reactionVideos": [], @@ -254397,7 +253897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 891697, "featuredRunMedia": null, "reactionVideos": [], @@ -254417,7 +253917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 894723, "featuredRunMedia": null, "reactionVideos": [], @@ -254437,7 +253937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "144078", "time": 895881, "featuredRunMedia": null, "reactionVideos": [], @@ -254457,7 +253957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 897309, "featuredRunMedia": null, "reactionVideos": [], @@ -254477,7 +253977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 4, + "teamId": "144074", "time": 898103, "featuredRunMedia": null, "reactionVideos": [], @@ -254497,7 +253997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 900671, "featuredRunMedia": null, "reactionVideos": [], @@ -254517,7 +254017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 394, + "teamId": "144464", "time": 901153, "featuredRunMedia": null, "reactionVideos": [], @@ -254537,7 +254037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 901687, "featuredRunMedia": null, "reactionVideos": [], @@ -254557,7 +254057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 902344, "featuredRunMedia": null, "reactionVideos": [], @@ -254577,7 +254077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 906736, "featuredRunMedia": null, "reactionVideos": [], @@ -254597,7 +254097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 906764, "featuredRunMedia": null, "reactionVideos": [], @@ -254617,7 +254117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 98, + "teamId": "144168", "time": 908089, "featuredRunMedia": null, "reactionVideos": [], @@ -254637,7 +254137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 364, + "teamId": "144434", "time": 910729, "featuredRunMedia": null, "reactionVideos": [], @@ -254661,7 +254161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 912076, "featuredRunMedia": null, "reactionVideos": [], @@ -254681,7 +254181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 917681, "featuredRunMedia": null, "reactionVideos": [], @@ -254701,7 +254201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 0, + "teamId": "144070", "time": 919531, "featuredRunMedia": null, "reactionVideos": [], @@ -254721,7 +254221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 922095, "featuredRunMedia": null, "reactionVideos": [], @@ -254741,7 +254241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "144116", "time": 925531, "featuredRunMedia": null, "reactionVideos": [], @@ -254761,7 +254261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "144254", "time": 926095, "featuredRunMedia": null, "reactionVideos": [], @@ -254781,7 +254281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 926723, "featuredRunMedia": null, "reactionVideos": [], @@ -254801,7 +254301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "144226", "time": 927075, "featuredRunMedia": null, "reactionVideos": [], @@ -254821,7 +254321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 438, + "teamId": "144508", "time": 930529, "featuredRunMedia": null, "reactionVideos": [], @@ -254841,7 +254341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 931609, "featuredRunMedia": null, "reactionVideos": [], @@ -254861,7 +254361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 935812, "featuredRunMedia": null, "reactionVideos": [], @@ -254881,7 +254381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 406, + "teamId": "144476", "time": 936069, "featuredRunMedia": null, "reactionVideos": [], @@ -254901,7 +254401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 148, + "teamId": "144218", "time": 936835, "featuredRunMedia": null, "reactionVideos": [], @@ -254921,7 +254421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 939040, "featuredRunMedia": null, "reactionVideos": [], @@ -254941,7 +254441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 940177, "featuredRunMedia": null, "reactionVideos": [], @@ -254961,7 +254461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 352, + "teamId": "144422", "time": 940623, "featuredRunMedia": null, "reactionVideos": [], @@ -254981,7 +254481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 941635, "featuredRunMedia": null, "reactionVideos": [], @@ -255001,7 +254501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 941834, "featuredRunMedia": null, "reactionVideos": [], @@ -255021,7 +254521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 944008, "featuredRunMedia": null, "reactionVideos": [], @@ -255041,7 +254541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "144400", "time": 946187, "featuredRunMedia": null, "reactionVideos": [], @@ -255061,7 +254561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 950261, "featuredRunMedia": null, "reactionVideos": [], @@ -255081,7 +254581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 951446, "featuredRunMedia": null, "reactionVideos": [], @@ -255101,7 +254601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 374, + "teamId": "144444", "time": 951496, "featuredRunMedia": null, "reactionVideos": [], @@ -255121,7 +254621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "144384", "time": 954704, "featuredRunMedia": null, "reactionVideos": [], @@ -255141,7 +254641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "144355", "time": 958509, "featuredRunMedia": null, "reactionVideos": [], @@ -255161,7 +254661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 959475, "featuredRunMedia": null, "reactionVideos": [], @@ -255181,7 +254681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 960201, "featuredRunMedia": null, "reactionVideos": [], @@ -255201,7 +254701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "144319", "time": 966493, "featuredRunMedia": null, "reactionVideos": [], @@ -255221,7 +254721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "144076", "time": 969680, "featuredRunMedia": null, "reactionVideos": [], @@ -255241,7 +254741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 447, + "teamId": "144517", "time": 970172, "featuredRunMedia": null, "reactionVideos": [], @@ -255261,7 +254761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 971999, "featuredRunMedia": null, "reactionVideos": [], @@ -255281,7 +254781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 972736, "featuredRunMedia": null, "reactionVideos": [], @@ -255301,7 +254801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 972986, "featuredRunMedia": null, "reactionVideos": [], @@ -255321,7 +254821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 973217, "featuredRunMedia": null, "reactionVideos": [], @@ -255341,7 +254841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 976931, "featuredRunMedia": null, "reactionVideos": [], @@ -255361,7 +254861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 321, + "teamId": "144391", "time": 980849, "featuredRunMedia": null, "reactionVideos": [], @@ -255381,7 +254881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "144207", "time": 987613, "featuredRunMedia": null, "reactionVideos": [], @@ -255401,7 +254901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 991300, "featuredRunMedia": null, "reactionVideos": [], @@ -255421,7 +254921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 992521, "featuredRunMedia": null, "reactionVideos": [], @@ -255441,7 +254941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 415, + "teamId": "144485", "time": 995796, "featuredRunMedia": null, "reactionVideos": [], @@ -255461,7 +254961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 997346, "featuredRunMedia": null, "reactionVideos": [], @@ -255481,7 +254981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "144315", "time": 997608, "featuredRunMedia": null, "reactionVideos": [], @@ -255501,7 +255001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 998897, "featuredRunMedia": null, "reactionVideos": [], @@ -255521,7 +255021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "144238", "time": 1000098, "featuredRunMedia": null, "reactionVideos": [], @@ -255541,7 +255041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 333, + "teamId": "144403", "time": 1001707, "featuredRunMedia": null, "reactionVideos": [], @@ -255561,7 +255061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "144233", "time": 1008506, "featuredRunMedia": null, "reactionVideos": [], @@ -255581,7 +255081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 364, + "teamId": "144434", "time": 1009769, "featuredRunMedia": null, "reactionVideos": [], @@ -255601,7 +255101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 1012470, "featuredRunMedia": null, "reactionVideos": [], @@ -255621,7 +255121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 1014146, "featuredRunMedia": null, "reactionVideos": [], @@ -255641,7 +255141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 355, + "teamId": "144425", "time": 1014949, "featuredRunMedia": null, "reactionVideos": [], @@ -255661,7 +255161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 390, + "teamId": "144460", "time": 1015497, "featuredRunMedia": null, "reactionVideos": [], @@ -255681,7 +255181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 1016620, "featuredRunMedia": null, "reactionVideos": [], @@ -255701,7 +255201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 1020213, "featuredRunMedia": null, "reactionVideos": [], @@ -255721,7 +255221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "144282", "time": 1022444, "featuredRunMedia": null, "reactionVideos": [], @@ -255741,7 +255241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 0, + "teamId": "144070", "time": 1026727, "featuredRunMedia": null, "reactionVideos": [], @@ -255761,7 +255261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 1030765, "featuredRunMedia": null, "reactionVideos": [], @@ -255781,7 +255281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 1031300, "featuredRunMedia": null, "reactionVideos": [], @@ -255801,7 +255301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 315, + "teamId": "144385", "time": 1032596, "featuredRunMedia": null, "reactionVideos": [], @@ -255821,7 +255321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 1034084, "featuredRunMedia": null, "reactionVideos": [], @@ -255841,7 +255341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 1034799, "featuredRunMedia": null, "reactionVideos": [], @@ -255861,7 +255361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "144264", "time": 1035683, "featuredRunMedia": null, "reactionVideos": [], @@ -255881,7 +255381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "144392", "time": 1037341, "featuredRunMedia": null, "reactionVideos": [], @@ -255901,7 +255401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 1040853, "featuredRunMedia": null, "reactionVideos": [], @@ -255921,7 +255421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "144382", "time": 1043593, "featuredRunMedia": null, "reactionVideos": [], @@ -255941,7 +255441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 1046761, "featuredRunMedia": null, "reactionVideos": [], @@ -255961,7 +255461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "144099", "time": 1048296, "featuredRunMedia": null, "reactionVideos": [], @@ -255981,7 +255481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 1052949, "featuredRunMedia": null, "reactionVideos": [], @@ -256001,7 +255501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "144071", "time": 1055311, "featuredRunMedia": null, "reactionVideos": [], @@ -256021,7 +255521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 1057478, "featuredRunMedia": null, "reactionVideos": [], @@ -256041,7 +255541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 1063419, "featuredRunMedia": null, "reactionVideos": [], @@ -256061,7 +255561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 1065431, "featuredRunMedia": null, "reactionVideos": [], @@ -256081,7 +255581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 415, + "teamId": "144485", "time": 1065938, "featuredRunMedia": null, "reactionVideos": [], @@ -256101,7 +255601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "144179", "time": 1068815, "featuredRunMedia": null, "reactionVideos": [], @@ -256121,7 +255621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 1069280, "featuredRunMedia": null, "reactionVideos": [], @@ -256141,7 +255641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 1071583, "featuredRunMedia": null, "reactionVideos": [], @@ -256161,7 +255661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "144353", "time": 1071620, "featuredRunMedia": null, "reactionVideos": [], @@ -256181,7 +255681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "144369", "time": 1072053, "featuredRunMedia": null, "reactionVideos": [], @@ -256201,7 +255701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "144224", "time": 1076672, "featuredRunMedia": null, "reactionVideos": [], @@ -256221,7 +255721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 1077088, "featuredRunMedia": null, "reactionVideos": [], @@ -256241,7 +255741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 1081651, "featuredRunMedia": null, "reactionVideos": [], @@ -256261,7 +255761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 1083735, "featuredRunMedia": null, "reactionVideos": [], @@ -256281,7 +255781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 1085812, "featuredRunMedia": null, "reactionVideos": [], @@ -256301,7 +255801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 382, + "teamId": "144452", "time": 1086081, "featuredRunMedia": null, "reactionVideos": [], @@ -256321,7 +255821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "144320", "time": 1087852, "featuredRunMedia": null, "reactionVideos": [], @@ -256341,7 +255841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 1088201, "featuredRunMedia": null, "reactionVideos": [], @@ -256361,7 +255861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 1090712, "featuredRunMedia": null, "reactionVideos": [], @@ -256381,7 +255881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "144254", "time": 1091892, "featuredRunMedia": null, "reactionVideos": [], @@ -256401,7 +255901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 438, + "teamId": "144508", "time": 1094189, "featuredRunMedia": null, "reactionVideos": [], @@ -256421,7 +255921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "144334", "time": 1094669, "featuredRunMedia": null, "reactionVideos": [], @@ -256441,7 +255941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 1095732, "featuredRunMedia": null, "reactionVideos": [], @@ -256461,7 +255961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "144103", "time": 1100132, "featuredRunMedia": null, "reactionVideos": [], @@ -256481,7 +255981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "144076", "time": 1100706, "featuredRunMedia": null, "reactionVideos": [], @@ -256501,7 +256001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "144324", "time": 1103687, "featuredRunMedia": null, "reactionVideos": [], @@ -256521,7 +256021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 1103918, "featuredRunMedia": null, "reactionVideos": [], @@ -256541,7 +256041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 1106887, "featuredRunMedia": null, "reactionVideos": [], @@ -256561,7 +256061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 1108112, "featuredRunMedia": null, "reactionVideos": [], @@ -256581,7 +256081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 1109960, "featuredRunMedia": null, "reactionVideos": [], @@ -256601,7 +256101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "144186", "time": 1110327, "featuredRunMedia": null, "reactionVideos": [], @@ -256621,7 +256121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 1111714, "featuredRunMedia": null, "reactionVideos": [], @@ -256641,7 +256141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 1112306, "featuredRunMedia": null, "reactionVideos": [], @@ -256661,7 +256161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 1113362, "featuredRunMedia": null, "reactionVideos": [], @@ -256681,7 +256181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1114509, "featuredRunMedia": null, "reactionVideos": [], @@ -256701,7 +256201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 1115755, "featuredRunMedia": null, "reactionVideos": [], @@ -256721,7 +256221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1116341, "featuredRunMedia": null, "reactionVideos": [], @@ -256741,7 +256241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "144296", "time": 1116832, "featuredRunMedia": null, "reactionVideos": [], @@ -256761,7 +256261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 1119877, "featuredRunMedia": null, "reactionVideos": [], @@ -256781,7 +256281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 1120064, "featuredRunMedia": null, "reactionVideos": [], @@ -256801,7 +256301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 1121497, "featuredRunMedia": null, "reactionVideos": [], @@ -256821,7 +256321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "144132", "time": 1123831, "featuredRunMedia": null, "reactionVideos": [], @@ -256841,7 +256341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 1127227, "featuredRunMedia": null, "reactionVideos": [], @@ -256861,7 +256361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 105, + "teamId": "144175", "time": 1128319, "featuredRunMedia": null, "reactionVideos": [], @@ -256881,7 +256381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "144313", "time": 1128735, "featuredRunMedia": null, "reactionVideos": [], @@ -256901,7 +256401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1129248, "featuredRunMedia": null, "reactionVideos": [], @@ -256921,7 +256421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 1136574, "featuredRunMedia": null, "reactionVideos": [], @@ -256941,7 +256441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 321, + "teamId": "144391", "time": 1138200, "featuredRunMedia": null, "reactionVideos": [], @@ -256961,7 +256461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 1138642, "featuredRunMedia": null, "reactionVideos": [], @@ -256981,7 +256481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 1143419, "featuredRunMedia": null, "reactionVideos": [], @@ -257005,7 +256505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 1152544, "featuredRunMedia": null, "reactionVideos": [], @@ -257025,7 +256525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "144132", "time": 1156870, "featuredRunMedia": null, "reactionVideos": [], @@ -257045,7 +256545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 1157309, "featuredRunMedia": null, "reactionVideos": [], @@ -257065,7 +256565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 1158737, "featuredRunMedia": null, "reactionVideos": [], @@ -257089,7 +256589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 1159577, "featuredRunMedia": null, "reactionVideos": [], @@ -257109,7 +256609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "144245", "time": 1159690, "featuredRunMedia": null, "reactionVideos": [], @@ -257129,7 +256629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "144392", "time": 1161693, "featuredRunMedia": null, "reactionVideos": [], @@ -257149,7 +256649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 419, + "teamId": "144489", "time": 1164602, "featuredRunMedia": null, "reactionVideos": [], @@ -257169,7 +256669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "144233", "time": 1167451, "featuredRunMedia": null, "reactionVideos": [], @@ -257189,7 +256689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "144250", "time": 1167808, "featuredRunMedia": null, "reactionVideos": [], @@ -257209,7 +256709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 352, + "teamId": "144422", "time": 1167969, "featuredRunMedia": null, "reactionVideos": [], @@ -257229,7 +256729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 1168396, "featuredRunMedia": null, "reactionVideos": [], @@ -257249,7 +256749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 1170966, "featuredRunMedia": null, "reactionVideos": [], @@ -257269,7 +256769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "144174", "time": 1171410, "featuredRunMedia": null, "reactionVideos": [], @@ -257289,7 +256789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "144161", "time": 1172808, "featuredRunMedia": null, "reactionVideos": [], @@ -257309,7 +256809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 311, + "teamId": "144381", "time": 1173000, "featuredRunMedia": null, "reactionVideos": [], @@ -257329,7 +256829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1173209, "featuredRunMedia": null, "reactionVideos": [], @@ -257349,7 +256849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 1173931, "featuredRunMedia": null, "reactionVideos": [], @@ -257369,7 +256869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "144254", "time": 1176227, "featuredRunMedia": null, "reactionVideos": [], @@ -257389,7 +256889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 1177761, "featuredRunMedia": null, "reactionVideos": [], @@ -257409,7 +256909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 1177895, "featuredRunMedia": null, "reactionVideos": [], @@ -257429,7 +256929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 22, + "teamId": "144092", "time": 1179052, "featuredRunMedia": null, "reactionVideos": [], @@ -257449,7 +256949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 1182952, "featuredRunMedia": null, "reactionVideos": [], @@ -257469,7 +256969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 348, + "teamId": "144418", "time": 1183635, "featuredRunMedia": null, "reactionVideos": [], @@ -257489,7 +256989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 353, + "teamId": "144423", "time": 1185961, "featuredRunMedia": null, "reactionVideos": [], @@ -257509,7 +257009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 1186113, "featuredRunMedia": null, "reactionVideos": [], @@ -257529,7 +257029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "144172", "time": 1186561, "featuredRunMedia": null, "reactionVideos": [], @@ -257549,7 +257049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 1189386, "featuredRunMedia": null, "reactionVideos": [], @@ -257569,7 +257069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 1192308, "featuredRunMedia": null, "reactionVideos": [], @@ -257589,7 +257089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "144267", "time": 1193934, "featuredRunMedia": null, "reactionVideos": [], @@ -257609,7 +257109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "144206", "time": 1194243, "featuredRunMedia": null, "reactionVideos": [], @@ -257629,7 +257129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "144392", "time": 1195708, "featuredRunMedia": null, "reactionVideos": [], @@ -257649,7 +257149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "144319", "time": 1195988, "featuredRunMedia": null, "reactionVideos": [], @@ -257669,7 +257169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "144359", "time": 1197276, "featuredRunMedia": null, "reactionVideos": [], @@ -257689,7 +257189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "144266", "time": 1200036, "featuredRunMedia": null, "reactionVideos": [], @@ -257709,7 +257209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 1201268, "featuredRunMedia": null, "reactionVideos": [], @@ -257729,7 +257229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 1204825, "featuredRunMedia": null, "reactionVideos": [], @@ -257749,7 +257249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 1207955, "featuredRunMedia": null, "reactionVideos": [], @@ -257769,7 +257269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 1211016, "featuredRunMedia": null, "reactionVideos": [], @@ -257789,7 +257289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "144394", "time": 1214031, "featuredRunMedia": null, "reactionVideos": [], @@ -257809,7 +257309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 1215160, "featuredRunMedia": null, "reactionVideos": [], @@ -257829,7 +257329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "144320", "time": 1224059, "featuredRunMedia": null, "reactionVideos": [], @@ -257849,7 +257349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 1225144, "featuredRunMedia": null, "reactionVideos": [], @@ -257869,7 +257369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 1225718, "featuredRunMedia": null, "reactionVideos": [], @@ -257889,7 +257389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 1226539, "featuredRunMedia": null, "reactionVideos": [], @@ -257909,7 +257409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 77, + "teamId": "144147", "time": 1229081, "featuredRunMedia": null, "reactionVideos": [], @@ -257929,7 +257429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 1230712, "featuredRunMedia": null, "reactionVideos": [], @@ -257949,7 +257449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "144319", "time": 1231904, "featuredRunMedia": null, "reactionVideos": [], @@ -257969,7 +257469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 1232499, "featuredRunMedia": null, "reactionVideos": [], @@ -257989,7 +257489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 1232660, "featuredRunMedia": null, "reactionVideos": [], @@ -258009,7 +257509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 1233432, "featuredRunMedia": null, "reactionVideos": [], @@ -258029,7 +257529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1240906, "featuredRunMedia": null, "reactionVideos": [], @@ -258049,7 +257549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1243587, "featuredRunMedia": null, "reactionVideos": [], @@ -258069,7 +257569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 443, + "teamId": "144513", "time": 1245255, "featuredRunMedia": null, "reactionVideos": [], @@ -258089,7 +257589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 417, + "teamId": "144487", "time": 1247638, "featuredRunMedia": null, "reactionVideos": [], @@ -258109,7 +257609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 419, + "teamId": "144489", "time": 1252867, "featuredRunMedia": null, "reactionVideos": [], @@ -258129,7 +257629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 1253335, "featuredRunMedia": null, "reactionVideos": [], @@ -258149,7 +257649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "144228", "time": 1256198, "featuredRunMedia": null, "reactionVideos": [], @@ -258169,7 +257669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "144273", "time": 1256253, "featuredRunMedia": null, "reactionVideos": [], @@ -258189,7 +257689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "144222", "time": 1256914, "featuredRunMedia": null, "reactionVideos": [], @@ -258209,7 +257709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 1256983, "featuredRunMedia": null, "reactionVideos": [], @@ -258229,7 +257729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 1259645, "featuredRunMedia": null, "reactionVideos": [], @@ -258249,7 +257749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1261669, "featuredRunMedia": null, "reactionVideos": [], @@ -258269,7 +257769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 1263962, "featuredRunMedia": null, "reactionVideos": [], @@ -258289,7 +257789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "144374", "time": 1264175, "featuredRunMedia": null, "reactionVideos": [], @@ -258309,7 +257809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 1264536, "featuredRunMedia": null, "reactionVideos": [], @@ -258329,7 +257829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 382, + "teamId": "144452", "time": 1265383, "featuredRunMedia": null, "reactionVideos": [], @@ -258349,7 +257849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1270187, "featuredRunMedia": null, "reactionVideos": [], @@ -258369,7 +257869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "144351", "time": 1270513, "featuredRunMedia": null, "reactionVideos": [], @@ -258389,7 +257889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 1271016, "featuredRunMedia": null, "reactionVideos": [], @@ -258409,7 +257909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 1271629, "featuredRunMedia": null, "reactionVideos": [], @@ -258433,7 +257933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "144238", "time": 1271674, "featuredRunMedia": null, "reactionVideos": [], @@ -258453,7 +257953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 1273181, "featuredRunMedia": null, "reactionVideos": [], @@ -258473,7 +257973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "144084", "time": 1273926, "featuredRunMedia": null, "reactionVideos": [], @@ -258493,7 +257993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "144089", "time": 1275382, "featuredRunMedia": null, "reactionVideos": [], @@ -258513,7 +258013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "144132", "time": 1280837, "featuredRunMedia": null, "reactionVideos": [], @@ -258533,7 +258033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 21, + "teamId": "144091", "time": 1290385, "featuredRunMedia": null, "reactionVideos": [], @@ -258553,7 +258053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 1292028, "featuredRunMedia": null, "reactionVideos": [], @@ -258573,7 +258073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 1293347, "featuredRunMedia": null, "reactionVideos": [], @@ -258593,7 +258093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 1296631, "featuredRunMedia": null, "reactionVideos": [], @@ -258613,7 +258113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1296748, "featuredRunMedia": null, "reactionVideos": [], @@ -258633,7 +258133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "144238", "time": 1298599, "featuredRunMedia": null, "reactionVideos": [], @@ -258653,7 +258153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "144375", "time": 1302328, "featuredRunMedia": null, "reactionVideos": [], @@ -258673,7 +258173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "144113", "time": 1303628, "featuredRunMedia": null, "reactionVideos": [], @@ -258693,7 +258193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 1305068, "featuredRunMedia": null, "reactionVideos": [], @@ -258713,7 +258213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 129, + "teamId": "144199", "time": 1306009, "featuredRunMedia": null, "reactionVideos": [], @@ -258733,7 +258233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "144180", "time": 1308264, "featuredRunMedia": null, "reactionVideos": [], @@ -258753,7 +258253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 1313114, "featuredRunMedia": null, "reactionVideos": [], @@ -258773,7 +258273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 1313888, "featuredRunMedia": null, "reactionVideos": [], @@ -258793,7 +258293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 1315673, "featuredRunMedia": null, "reactionVideos": [], @@ -258813,7 +258313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "144315", "time": 1317135, "featuredRunMedia": null, "reactionVideos": [], @@ -258833,7 +258333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 438, + "teamId": "144508", "time": 1320159, "featuredRunMedia": null, "reactionVideos": [], @@ -258853,7 +258353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 1322397, "featuredRunMedia": null, "reactionVideos": [], @@ -258873,7 +258373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 1323740, "featuredRunMedia": null, "reactionVideos": [], @@ -258893,7 +258393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "144347", "time": 1325493, "featuredRunMedia": null, "reactionVideos": [], @@ -258913,7 +258413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 1329817, "featuredRunMedia": null, "reactionVideos": [], @@ -258933,7 +258433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 1330520, "featuredRunMedia": null, "reactionVideos": [], @@ -258953,7 +258453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 1331620, "featuredRunMedia": null, "reactionVideos": [], @@ -258973,7 +258473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 1332907, "featuredRunMedia": null, "reactionVideos": [], @@ -258993,7 +258493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 1333434, "featuredRunMedia": null, "reactionVideos": [], @@ -259013,7 +258513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "144382", "time": 1333617, "featuredRunMedia": null, "reactionVideos": [], @@ -259033,7 +258533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "144252", "time": 1338448, "featuredRunMedia": null, "reactionVideos": [], @@ -259053,7 +258553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "144334", "time": 1340121, "featuredRunMedia": null, "reactionVideos": [], @@ -259073,7 +258573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 372, + "teamId": "144442", "time": 1340166, "featuredRunMedia": null, "reactionVideos": [], @@ -259093,7 +258593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 395, + "teamId": "144465", "time": 1340724, "featuredRunMedia": null, "reactionVideos": [], @@ -259113,7 +258613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1348315, "featuredRunMedia": null, "reactionVideos": [], @@ -259133,7 +258633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "144305", "time": 1350288, "featuredRunMedia": null, "reactionVideos": [], @@ -259153,7 +258653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 447, + "teamId": "144517", "time": 1350532, "featuredRunMedia": null, "reactionVideos": [], @@ -259173,7 +258673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 1351015, "featuredRunMedia": null, "reactionVideos": [], @@ -259193,7 +258693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "144253", "time": 1351186, "featuredRunMedia": null, "reactionVideos": [], @@ -259213,7 +258713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "144207", "time": 1351396, "featuredRunMedia": null, "reactionVideos": [], @@ -259233,7 +258733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 1356837, "featuredRunMedia": null, "reactionVideos": [], @@ -259253,7 +258753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 410, + "teamId": "144480", "time": 1358311, "featuredRunMedia": null, "reactionVideos": [], @@ -259273,7 +258773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "144172", "time": 1358886, "featuredRunMedia": null, "reactionVideos": [], @@ -259293,7 +258793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1361813, "featuredRunMedia": null, "reactionVideos": [], @@ -259313,7 +258813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 433, + "teamId": "144503", "time": 1363796, "featuredRunMedia": null, "reactionVideos": [], @@ -259333,7 +258833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 1365240, "featuredRunMedia": null, "reactionVideos": [], @@ -259353,7 +258853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "144186", "time": 1365583, "featuredRunMedia": null, "reactionVideos": [], @@ -259373,7 +258873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 1365837, "featuredRunMedia": null, "reactionVideos": [], @@ -259393,7 +258893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 1367180, "featuredRunMedia": null, "reactionVideos": [], @@ -259413,7 +258913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 1367898, "featuredRunMedia": null, "reactionVideos": [], @@ -259433,7 +258933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 1368648, "featuredRunMedia": null, "reactionVideos": [], @@ -259453,7 +258953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 1369027, "featuredRunMedia": null, "reactionVideos": [], @@ -259473,7 +258973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "144400", "time": 1369855, "featuredRunMedia": null, "reactionVideos": [], @@ -259493,7 +258993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "144085", "time": 1373210, "featuredRunMedia": null, "reactionVideos": [], @@ -259513,7 +259013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "144179", "time": 1377018, "featuredRunMedia": null, "reactionVideos": [], @@ -259537,7 +259037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 1378468, "featuredRunMedia": null, "reactionVideos": [], @@ -259557,7 +259057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 358, + "teamId": "144428", "time": 1381889, "featuredRunMedia": null, "reactionVideos": [], @@ -259577,7 +259077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 1382265, "featuredRunMedia": null, "reactionVideos": [], @@ -259597,7 +259097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "144306", "time": 1386719, "featuredRunMedia": null, "reactionVideos": [], @@ -259617,7 +259117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 423, + "teamId": "144493", "time": 1388040, "featuredRunMedia": null, "reactionVideos": [], @@ -259637,7 +259137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "144088", "time": 1390766, "featuredRunMedia": null, "reactionVideos": [], @@ -259657,7 +259157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 1392020, "featuredRunMedia": null, "reactionVideos": [], @@ -259677,7 +259177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 1392484, "featuredRunMedia": null, "reactionVideos": [], @@ -259697,7 +259197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "144364", "time": 1393404, "featuredRunMedia": null, "reactionVideos": [], @@ -259717,7 +259217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "144190", "time": 1393722, "featuredRunMedia": null, "reactionVideos": [], @@ -259737,7 +259237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1401644, "featuredRunMedia": null, "reactionVideos": [], @@ -259757,7 +259257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 438, + "teamId": "144508", "time": 1402664, "featuredRunMedia": null, "reactionVideos": [], @@ -259777,7 +259277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 1405105, "featuredRunMedia": null, "reactionVideos": [], @@ -259797,7 +259297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 311, + "teamId": "144381", "time": 1406921, "featuredRunMedia": null, "reactionVideos": [], @@ -259817,7 +259317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 1409442, "featuredRunMedia": null, "reactionVideos": [], @@ -259837,7 +259337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 1410961, "featuredRunMedia": null, "reactionVideos": [], @@ -259857,7 +259357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 1412359, "featuredRunMedia": null, "reactionVideos": [], @@ -259877,7 +259377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 1413956, "featuredRunMedia": null, "reactionVideos": [], @@ -259897,7 +259397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 447, + "teamId": "144517", "time": 1417256, "featuredRunMedia": null, "reactionVideos": [], @@ -259917,7 +259417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1417491, "featuredRunMedia": null, "reactionVideos": [], @@ -259937,7 +259437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1418714, "featuredRunMedia": null, "reactionVideos": [], @@ -259957,7 +259457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "144113", "time": 1419604, "featuredRunMedia": null, "reactionVideos": [], @@ -259977,7 +259477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "144174", "time": 1419822, "featuredRunMedia": null, "reactionVideos": [], @@ -259997,7 +259497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 163, + "teamId": "144233", "time": 1420068, "featuredRunMedia": null, "reactionVideos": [], @@ -260017,7 +259517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "144272", "time": 1420285, "featuredRunMedia": null, "reactionVideos": [], @@ -260037,7 +259537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 1420357, "featuredRunMedia": null, "reactionVideos": [], @@ -260057,7 +259557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "144120", "time": 1420412, "featuredRunMedia": null, "reactionVideos": [], @@ -260077,7 +259577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "144297", "time": 1422556, "featuredRunMedia": null, "reactionVideos": [], @@ -260097,7 +259597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 7, + "teamId": "144077", "time": 1424038, "featuredRunMedia": null, "reactionVideos": [], @@ -260117,7 +259617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 1424279, "featuredRunMedia": null, "reactionVideos": [], @@ -260137,7 +259637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 1424900, "featuredRunMedia": null, "reactionVideos": [], @@ -260157,7 +259657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "144227", "time": 1425187, "featuredRunMedia": null, "reactionVideos": [], @@ -260177,7 +259677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 2, + "teamId": "144072", "time": 1425281, "featuredRunMedia": null, "reactionVideos": [], @@ -260197,7 +259697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 331, + "teamId": "144401", "time": 1428128, "featuredRunMedia": null, "reactionVideos": [], @@ -260217,7 +259717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "144201", "time": 1429140, "featuredRunMedia": null, "reactionVideos": [], @@ -260237,7 +259737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 68, + "teamId": "144138", "time": 1429254, "featuredRunMedia": null, "reactionVideos": [], @@ -260257,7 +259757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 1429419, "featuredRunMedia": null, "reactionVideos": [], @@ -260277,7 +259777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "144393", "time": 1430205, "featuredRunMedia": null, "reactionVideos": [], @@ -260297,7 +259797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "144206", "time": 1433065, "featuredRunMedia": null, "reactionVideos": [], @@ -260317,7 +259817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 1433267, "featuredRunMedia": null, "reactionVideos": [], @@ -260337,7 +259837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 1433345, "featuredRunMedia": null, "reactionVideos": [], @@ -260357,7 +259857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 1435231, "featuredRunMedia": null, "reactionVideos": [], @@ -260377,7 +259877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "144159", "time": 1436286, "featuredRunMedia": null, "reactionVideos": [], @@ -260401,7 +259901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "144273", "time": 1437401, "featuredRunMedia": null, "reactionVideos": [], @@ -260421,7 +259921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1444134, "featuredRunMedia": null, "reactionVideos": [], @@ -260441,7 +259941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 97, + "teamId": "144167", "time": 1444546, "featuredRunMedia": null, "reactionVideos": [], @@ -260461,7 +259961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 1446407, "featuredRunMedia": null, "reactionVideos": [], @@ -260481,7 +259981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 404, + "teamId": "144474", "time": 1446745, "featuredRunMedia": null, "reactionVideos": [], @@ -260501,7 +260001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "144206", "time": 1447450, "featuredRunMedia": null, "reactionVideos": [], @@ -260521,7 +260021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "144349", "time": 1448634, "featuredRunMedia": null, "reactionVideos": [], @@ -260541,7 +260041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1449255, "featuredRunMedia": null, "reactionVideos": [], @@ -260561,7 +260061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 1452067, "featuredRunMedia": null, "reactionVideos": [], @@ -260581,7 +260081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 1454880, "featuredRunMedia": null, "reactionVideos": [], @@ -260601,7 +260101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 1455793, "featuredRunMedia": null, "reactionVideos": [], @@ -260621,7 +260121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 417, + "teamId": "144487", "time": 1457201, "featuredRunMedia": null, "reactionVideos": [], @@ -260641,7 +260141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "144201", "time": 1457428, "featuredRunMedia": null, "reactionVideos": [], @@ -260661,7 +260161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 1457567, "featuredRunMedia": null, "reactionVideos": [], @@ -260681,7 +260181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 1459062, "featuredRunMedia": null, "reactionVideos": [], @@ -260701,7 +260201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "144273", "time": 1465850, "featuredRunMedia": null, "reactionVideos": [], @@ -260721,7 +260221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 1468727, "featuredRunMedia": null, "reactionVideos": [], @@ -260741,7 +260241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 1472802, "featuredRunMedia": null, "reactionVideos": [], @@ -260761,7 +260261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 1475124, "featuredRunMedia": null, "reactionVideos": [], @@ -260781,7 +260281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1475212, "featuredRunMedia": null, "reactionVideos": [], @@ -260801,7 +260301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 47, + "teamId": "144117", "time": 1479625, "featuredRunMedia": null, "reactionVideos": [], @@ -260821,7 +260321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 1482299, "featuredRunMedia": null, "reactionVideos": [], @@ -260841,7 +260341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 1485000, "featuredRunMedia": null, "reactionVideos": [], @@ -260861,7 +260361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "144398", "time": 1487966, "featuredRunMedia": null, "reactionVideos": [], @@ -260881,7 +260381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "144088", "time": 1493257, "featuredRunMedia": null, "reactionVideos": [], @@ -260901,7 +260401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 1494003, "featuredRunMedia": null, "reactionVideos": [], @@ -260921,7 +260421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 1497769, "featuredRunMedia": null, "reactionVideos": [], @@ -260941,7 +260441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 1499885, "featuredRunMedia": null, "reactionVideos": [], @@ -260961,7 +260461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "144365", "time": 1502884, "featuredRunMedia": null, "reactionVideos": [], @@ -260981,7 +260481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 1507299, "featuredRunMedia": null, "reactionVideos": [], @@ -261001,7 +260501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 1509209, "featuredRunMedia": null, "reactionVideos": [], @@ -261021,7 +260521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "144289", "time": 1511506, "featuredRunMedia": null, "reactionVideos": [], @@ -261041,7 +260541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 1511560, "featuredRunMedia": null, "reactionVideos": [], @@ -261061,7 +260561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "144378", "time": 1513912, "featuredRunMedia": null, "reactionVideos": [], @@ -261081,7 +260581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 105, + "teamId": "144175", "time": 1514792, "featuredRunMedia": null, "reactionVideos": [], @@ -261101,7 +260601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 1516421, "featuredRunMedia": null, "reactionVideos": [], @@ -261121,7 +260621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "144084", "time": 1519583, "featuredRunMedia": null, "reactionVideos": [], @@ -261141,7 +260641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "144123", "time": 1519764, "featuredRunMedia": null, "reactionVideos": [], @@ -261165,7 +260665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 1520271, "featuredRunMedia": null, "reactionVideos": [], @@ -261185,7 +260685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 1523663, "featuredRunMedia": null, "reactionVideos": [], @@ -261205,7 +260705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "144277", "time": 1526005, "featuredRunMedia": null, "reactionVideos": [], @@ -261225,7 +260725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "144113", "time": 1526582, "featuredRunMedia": null, "reactionVideos": [], @@ -261245,7 +260745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "144125", "time": 1529553, "featuredRunMedia": null, "reactionVideos": [], @@ -261265,7 +260765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 1531767, "featuredRunMedia": null, "reactionVideos": [], @@ -261285,7 +260785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 387, + "teamId": "144457", "time": 1533724, "featuredRunMedia": null, "reactionVideos": [], @@ -261305,7 +260805,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 382, + "teamId": "144452", "time": 1533991, "featuredRunMedia": null, "reactionVideos": [], @@ -261325,7 +260825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 363, + "teamId": "144433", "time": 1534181, "featuredRunMedia": null, "reactionVideos": [], @@ -261345,7 +260845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 1537636, "featuredRunMedia": null, "reactionVideos": [], @@ -261365,7 +260865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "144299", "time": 1538533, "featuredRunMedia": null, "reactionVideos": [], @@ -261385,7 +260885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 1540633, "featuredRunMedia": null, "reactionVideos": [], @@ -261405,7 +260905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 422, + "teamId": "144492", "time": 1541493, "featuredRunMedia": null, "reactionVideos": [], @@ -261425,7 +260925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 353, + "teamId": "144423", "time": 1545529, "featuredRunMedia": null, "reactionVideos": [], @@ -261445,7 +260945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 1550143, "featuredRunMedia": null, "reactionVideos": [], @@ -261465,7 +260965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1550284, "featuredRunMedia": null, "reactionVideos": [], @@ -261485,7 +260985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "144227", "time": 1550915, "featuredRunMedia": null, "reactionVideos": [], @@ -261509,7 +261009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1552778, "featuredRunMedia": null, "reactionVideos": [], @@ -261529,7 +261029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 358, + "teamId": "144428", "time": 1553423, "featuredRunMedia": null, "reactionVideos": [], @@ -261549,7 +261049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "144398", "time": 1553624, "featuredRunMedia": null, "reactionVideos": [], @@ -261569,7 +261069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 1554173, "featuredRunMedia": null, "reactionVideos": [], @@ -261589,7 +261089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 1555903, "featuredRunMedia": null, "reactionVideos": [], @@ -261609,7 +261109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 1556203, "featuredRunMedia": null, "reactionVideos": [], @@ -261629,7 +261129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 1559235, "featuredRunMedia": null, "reactionVideos": [], @@ -261649,7 +261149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 1560953, "featuredRunMedia": null, "reactionVideos": [], @@ -261669,7 +261169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "144366", "time": 1565348, "featuredRunMedia": null, "reactionVideos": [], @@ -261689,7 +261189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "144277", "time": 1568649, "featuredRunMedia": null, "reactionVideos": [], @@ -261709,7 +261209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 1571163, "featuredRunMedia": null, "reactionVideos": [], @@ -261729,7 +261229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 1571449, "featuredRunMedia": null, "reactionVideos": [], @@ -261749,7 +261249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 1573537, "featuredRunMedia": null, "reactionVideos": [], @@ -261769,7 +261269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "144094", "time": 1574022, "featuredRunMedia": null, "reactionVideos": [], @@ -261789,7 +261289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 1575854, "featuredRunMedia": null, "reactionVideos": [], @@ -261809,7 +261309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 1576887, "featuredRunMedia": null, "reactionVideos": [], @@ -261829,7 +261329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1585920, "featuredRunMedia": null, "reactionVideos": [], @@ -261849,7 +261349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 1591279, "featuredRunMedia": null, "reactionVideos": [], @@ -261869,7 +261369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 1591517, "featuredRunMedia": null, "reactionVideos": [], @@ -261889,7 +261389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 1592617, "featuredRunMedia": null, "reactionVideos": [], @@ -261909,7 +261409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 1593580, "featuredRunMedia": null, "reactionVideos": [], @@ -261929,7 +261429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "144075", "time": 1596529, "featuredRunMedia": null, "reactionVideos": [], @@ -261949,7 +261449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 1601558, "featuredRunMedia": null, "reactionVideos": [], @@ -261973,7 +261473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 1604590, "featuredRunMedia": null, "reactionVideos": [], @@ -261993,7 +261493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "144254", "time": 1604662, "featuredRunMedia": null, "reactionVideos": [], @@ -262013,7 +261513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 1605541, "featuredRunMedia": null, "reactionVideos": [], @@ -262033,7 +261533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1606743, "featuredRunMedia": null, "reactionVideos": [], @@ -262053,7 +261553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 1606947, "featuredRunMedia": null, "reactionVideos": [], @@ -262073,7 +261573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "144085", "time": 1607269, "featuredRunMedia": null, "reactionVideos": [], @@ -262093,7 +261593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 1608683, "featuredRunMedia": null, "reactionVideos": [], @@ -262113,7 +261613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 1609326, "featuredRunMedia": null, "reactionVideos": [], @@ -262133,7 +261633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 1612360, "featuredRunMedia": null, "reactionVideos": [], @@ -262153,7 +261653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "144256", "time": 1613965, "featuredRunMedia": null, "reactionVideos": [], @@ -262173,7 +261673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 1615323, "featuredRunMedia": null, "reactionVideos": [], @@ -262197,7 +261697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1616453, "featuredRunMedia": null, "reactionVideos": [], @@ -262217,7 +261717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 345, + "teamId": "144415", "time": 1617689, "featuredRunMedia": null, "reactionVideos": [], @@ -262237,7 +261737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "144398", "time": 1618063, "featuredRunMedia": null, "reactionVideos": [], @@ -262257,7 +261757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1618110, "featuredRunMedia": null, "reactionVideos": [], @@ -262277,7 +261777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 1620279, "featuredRunMedia": null, "reactionVideos": [], @@ -262297,7 +261797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "144125", "time": 1620991, "featuredRunMedia": null, "reactionVideos": [], @@ -262317,7 +261817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 1621128, "featuredRunMedia": null, "reactionVideos": [], @@ -262337,7 +261837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "144315", "time": 1623094, "featuredRunMedia": null, "reactionVideos": [], @@ -262357,7 +261857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 1624757, "featuredRunMedia": null, "reactionVideos": [], @@ -262377,7 +261877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 1626205, "featuredRunMedia": null, "reactionVideos": [], @@ -262397,7 +261897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 1626745, "featuredRunMedia": null, "reactionVideos": [], @@ -262417,7 +261917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1627565, "featuredRunMedia": null, "reactionVideos": [], @@ -262437,7 +261937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 1628997, "featuredRunMedia": null, "reactionVideos": [], @@ -262457,7 +261957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1629715, "featuredRunMedia": null, "reactionVideos": [], @@ -262477,7 +261977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 1630640, "featuredRunMedia": null, "reactionVideos": [], @@ -262497,7 +261997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 1632454, "featuredRunMedia": null, "reactionVideos": [], @@ -262517,7 +262017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1635505, "featuredRunMedia": null, "reactionVideos": [], @@ -262537,7 +262037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 1635620, "featuredRunMedia": null, "reactionVideos": [], @@ -262557,7 +262057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "144111", "time": 1636223, "featuredRunMedia": null, "reactionVideos": [], @@ -262577,7 +262077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "144130", "time": 1636630, "featuredRunMedia": null, "reactionVideos": [], @@ -262597,7 +262097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "144190", "time": 1636812, "featuredRunMedia": null, "reactionVideos": [], @@ -262617,7 +262117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 1636940, "featuredRunMedia": null, "reactionVideos": [], @@ -262637,7 +262137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 1637799, "featuredRunMedia": null, "reactionVideos": [], @@ -262657,7 +262157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1640461, "featuredRunMedia": null, "reactionVideos": [], @@ -262677,7 +262177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 1641970, "featuredRunMedia": null, "reactionVideos": [], @@ -262697,7 +262197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 1643150, "featuredRunMedia": null, "reactionVideos": [], @@ -262717,7 +262217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 1645021, "featuredRunMedia": null, "reactionVideos": [], @@ -262737,7 +262237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 1645325, "featuredRunMedia": null, "reactionVideos": [], @@ -262757,7 +262257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "144113", "time": 1646845, "featuredRunMedia": null, "reactionVideos": [], @@ -262777,7 +262277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 1647137, "featuredRunMedia": null, "reactionVideos": [], @@ -262797,7 +262297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 1648503, "featuredRunMedia": null, "reactionVideos": [], @@ -262817,7 +262317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 1649093, "featuredRunMedia": null, "reactionVideos": [], @@ -262837,7 +262337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 1650011, "featuredRunMedia": null, "reactionVideos": [], @@ -262857,7 +262357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 376, + "teamId": "144446", "time": 1650922, "featuredRunMedia": null, "reactionVideos": [], @@ -262877,7 +262377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "144244", "time": 1653031, "featuredRunMedia": null, "reactionVideos": [], @@ -262897,7 +262397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 1653424, "featuredRunMedia": null, "reactionVideos": [], @@ -262917,7 +262417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 1655638, "featuredRunMedia": null, "reactionVideos": [], @@ -262937,7 +262437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "144290", "time": 1657520, "featuredRunMedia": null, "reactionVideos": [], @@ -262957,7 +262457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 356, + "teamId": "144426", "time": 1658428, "featuredRunMedia": null, "reactionVideos": [], @@ -262977,7 +262477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 1659216, "featuredRunMedia": null, "reactionVideos": [], @@ -262997,7 +262497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 1662182, "featuredRunMedia": null, "reactionVideos": [], @@ -263017,7 +262517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "144124", "time": 1664818, "featuredRunMedia": null, "reactionVideos": [], @@ -263037,7 +262537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "144094", "time": 1668730, "featuredRunMedia": null, "reactionVideos": [], @@ -263057,7 +262557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 444, + "teamId": "144514", "time": 1670586, "featuredRunMedia": null, "reactionVideos": [], @@ -263077,7 +262577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1672311, "featuredRunMedia": null, "reactionVideos": [], @@ -263097,7 +262597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "144174", "time": 1678839, "featuredRunMedia": null, "reactionVideos": [], @@ -263117,7 +262617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "144111", "time": 1679187, "featuredRunMedia": null, "reactionVideos": [], @@ -263137,7 +262637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "144228", "time": 1682336, "featuredRunMedia": null, "reactionVideos": [], @@ -263157,7 +262657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 1682881, "featuredRunMedia": null, "reactionVideos": [], @@ -263177,7 +262677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 1686259, "featuredRunMedia": null, "reactionVideos": [], @@ -263197,7 +262697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 1687137, "featuredRunMedia": null, "reactionVideos": [], @@ -263217,7 +262717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 1687982, "featuredRunMedia": null, "reactionVideos": [], @@ -263237,7 +262737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 1688718, "featuredRunMedia": null, "reactionVideos": [], @@ -263257,7 +262757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 1688823, "featuredRunMedia": null, "reactionVideos": [], @@ -263277,7 +262777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "144297", "time": 1689294, "featuredRunMedia": null, "reactionVideos": [], @@ -263297,7 +262797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1689878, "featuredRunMedia": null, "reactionVideos": [], @@ -263317,7 +262817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 1690418, "featuredRunMedia": null, "reactionVideos": [], @@ -263337,7 +262837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 1693046, "featuredRunMedia": null, "reactionVideos": [], @@ -263357,7 +262857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 1693694, "featuredRunMedia": null, "reactionVideos": [], @@ -263377,7 +262877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 1693980, "featuredRunMedia": null, "reactionVideos": [], @@ -263397,7 +262897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 1696713, "featuredRunMedia": null, "reactionVideos": [], @@ -263417,7 +262917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 1697094, "featuredRunMedia": null, "reactionVideos": [], @@ -263437,7 +262937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1698619, "featuredRunMedia": null, "reactionVideos": [], @@ -263457,7 +262957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1699178, "featuredRunMedia": null, "reactionVideos": [], @@ -263477,7 +262977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 1700478, "featuredRunMedia": null, "reactionVideos": [], @@ -263497,7 +262997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "144123", "time": 1700734, "featuredRunMedia": null, "reactionVideos": [], @@ -263517,7 +263017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 360, + "teamId": "144430", "time": 1701518, "featuredRunMedia": null, "reactionVideos": [], @@ -263537,7 +263037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 1702683, "featuredRunMedia": null, "reactionVideos": [], @@ -263557,7 +263057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1705063, "featuredRunMedia": null, "reactionVideos": [], @@ -263577,7 +263077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 1708322, "featuredRunMedia": null, "reactionVideos": [], @@ -263597,7 +263097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 1708406, "featuredRunMedia": null, "reactionVideos": [], @@ -263617,7 +263117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 1708946, "featuredRunMedia": null, "reactionVideos": [], @@ -263637,7 +263137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 1709262, "featuredRunMedia": null, "reactionVideos": [], @@ -263657,7 +263157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1710430, "featuredRunMedia": null, "reactionVideos": [], @@ -263677,7 +263177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 1711404, "featuredRunMedia": null, "reactionVideos": [], @@ -263697,7 +263197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 1714331, "featuredRunMedia": null, "reactionVideos": [], @@ -263717,7 +263217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 1714792, "featuredRunMedia": null, "reactionVideos": [], @@ -263737,7 +263237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 1720102, "featuredRunMedia": null, "reactionVideos": [], @@ -263757,7 +263257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 1720360, "featuredRunMedia": null, "reactionVideos": [], @@ -263777,7 +263277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1721870, "featuredRunMedia": null, "reactionVideos": [], @@ -263797,7 +263297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "144163", "time": 1723188, "featuredRunMedia": null, "reactionVideos": [], @@ -263817,7 +263317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "144244", "time": 1724201, "featuredRunMedia": null, "reactionVideos": [], @@ -263837,7 +263337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 1726429, "featuredRunMedia": null, "reactionVideos": [], @@ -263857,7 +263357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 1726925, "featuredRunMedia": null, "reactionVideos": [], @@ -263877,7 +263377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 1728586, "featuredRunMedia": null, "reactionVideos": [], @@ -263897,7 +263397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 1730567, "featuredRunMedia": null, "reactionVideos": [], @@ -263917,7 +263417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 1730812, "featuredRunMedia": null, "reactionVideos": [], @@ -263937,7 +263437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 1730919, "featuredRunMedia": null, "reactionVideos": [], @@ -263957,7 +263457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 1732509, "featuredRunMedia": null, "reactionVideos": [], @@ -263977,7 +263477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "144113", "time": 1734152, "featuredRunMedia": null, "reactionVideos": [], @@ -263997,7 +263497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1734499, "featuredRunMedia": null, "reactionVideos": [], @@ -264017,7 +263517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 1734655, "featuredRunMedia": null, "reactionVideos": [], @@ -264037,7 +263537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 2, + "teamId": "144072", "time": 1736798, "featuredRunMedia": null, "reactionVideos": [], @@ -264057,7 +263557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 1738885, "featuredRunMedia": null, "reactionVideos": [], @@ -264077,7 +263577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 1742701, "featuredRunMedia": null, "reactionVideos": [], @@ -264097,7 +263597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1744697, "featuredRunMedia": null, "reactionVideos": [], @@ -264117,7 +263617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 1745244, "featuredRunMedia": null, "reactionVideos": [], @@ -264137,7 +263637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 1745899, "featuredRunMedia": null, "reactionVideos": [], @@ -264157,7 +263657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 1746636, "featuredRunMedia": null, "reactionVideos": [], @@ -264177,7 +263677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "144297", "time": 1747099, "featuredRunMedia": null, "reactionVideos": [], @@ -264197,7 +263697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 1747739, "featuredRunMedia": null, "reactionVideos": [], @@ -264217,7 +263717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 400, + "teamId": "144470", "time": 1747912, "featuredRunMedia": null, "reactionVideos": [], @@ -264237,7 +263737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 1749075, "featuredRunMedia": null, "reactionVideos": [], @@ -264257,7 +263757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 1750151, "featuredRunMedia": null, "reactionVideos": [], @@ -264277,7 +263777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 382, + "teamId": "144452", "time": 1752521, "featuredRunMedia": null, "reactionVideos": [], @@ -264297,7 +263797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1752608, "featuredRunMedia": null, "reactionVideos": [], @@ -264317,7 +263817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "144111", "time": 1754793, "featuredRunMedia": null, "reactionVideos": [], @@ -264337,7 +263837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 1756447, "featuredRunMedia": null, "reactionVideos": [], @@ -264357,7 +263857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "144306", "time": 1759418, "featuredRunMedia": null, "reactionVideos": [], @@ -264377,7 +263877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 1760371, "featuredRunMedia": null, "reactionVideos": [], @@ -264397,7 +263897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "144120", "time": 1761664, "featuredRunMedia": null, "reactionVideos": [], @@ -264417,7 +263917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "144180", "time": 1762261, "featuredRunMedia": null, "reactionVideos": [], @@ -264437,7 +263937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "144075", "time": 1764839, "featuredRunMedia": null, "reactionVideos": [], @@ -264457,7 +263957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1764866, "featuredRunMedia": null, "reactionVideos": [], @@ -264477,7 +263977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 1766478, "featuredRunMedia": null, "reactionVideos": [], @@ -264497,7 +263997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 1767127, "featuredRunMedia": null, "reactionVideos": [], @@ -264517,7 +264017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "144150", "time": 1767871, "featuredRunMedia": null, "reactionVideos": [], @@ -264537,7 +264037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 1771362, "featuredRunMedia": null, "reactionVideos": [], @@ -264557,7 +264057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "144286", "time": 1771624, "featuredRunMedia": null, "reactionVideos": [], @@ -264577,7 +264077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1771856, "featuredRunMedia": null, "reactionVideos": [], @@ -264597,7 +264097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 1773464, "featuredRunMedia": null, "reactionVideos": [], @@ -264617,7 +264117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 1774462, "featuredRunMedia": null, "reactionVideos": [], @@ -264641,7 +264141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 1776163, "featuredRunMedia": null, "reactionVideos": [], @@ -264661,7 +264161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 439, + "teamId": "144509", "time": 1776585, "featuredRunMedia": null, "reactionVideos": [], @@ -264681,7 +264181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 345, + "teamId": "144415", "time": 1776798, "featuredRunMedia": null, "reactionVideos": [], @@ -264701,7 +264201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 1777072, "featuredRunMedia": null, "reactionVideos": [], @@ -264721,7 +264221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 1780594, "featuredRunMedia": null, "reactionVideos": [], @@ -264741,7 +264241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 1784620, "featuredRunMedia": null, "reactionVideos": [], @@ -264761,7 +264261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 1785519, "featuredRunMedia": null, "reactionVideos": [], @@ -264781,7 +264281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 1785587, "featuredRunMedia": null, "reactionVideos": [], @@ -264801,7 +264301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "144395", "time": 1787455, "featuredRunMedia": null, "reactionVideos": [], @@ -264821,7 +264321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "144344", "time": 1789913, "featuredRunMedia": null, "reactionVideos": [], @@ -264841,7 +264341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "144127", "time": 1790199, "featuredRunMedia": null, "reactionVideos": [], @@ -264861,7 +264361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "144297", "time": 1790465, "featuredRunMedia": null, "reactionVideos": [], @@ -264881,7 +264381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 1790717, "featuredRunMedia": null, "reactionVideos": [], @@ -264901,7 +264401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "144236", "time": 1791786, "featuredRunMedia": null, "reactionVideos": [], @@ -264921,7 +264421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 163, + "teamId": "144233", "time": 1793640, "featuredRunMedia": null, "reactionVideos": [], @@ -264941,7 +264441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 1793770, "featuredRunMedia": null, "reactionVideos": [], @@ -264961,7 +264461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 1795699, "featuredRunMedia": null, "reactionVideos": [], @@ -264981,7 +264481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 1796122, "featuredRunMedia": null, "reactionVideos": [], @@ -265001,7 +264501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "144151", "time": 1798108, "featuredRunMedia": null, "reactionVideos": [], @@ -265021,7 +264521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 1799834, "featuredRunMedia": null, "reactionVideos": [], @@ -265041,7 +264541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 1799940, "featuredRunMedia": null, "reactionVideos": [], @@ -265061,7 +264561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 1800918, "featuredRunMedia": null, "reactionVideos": [], @@ -265081,7 +264581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "144207", "time": 1801838, "featuredRunMedia": null, "reactionVideos": [], @@ -265101,7 +264601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "144253", "time": 1802258, "featuredRunMedia": null, "reactionVideos": [], @@ -265121,7 +264621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 1802704, "featuredRunMedia": null, "reactionVideos": [], @@ -265141,7 +264641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 1804303, "featuredRunMedia": null, "reactionVideos": [], @@ -265161,7 +264661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 1804366, "featuredRunMedia": null, "reactionVideos": [], @@ -265181,7 +264681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 1807897, "featuredRunMedia": null, "reactionVideos": [], @@ -265201,7 +264701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 1808116, "featuredRunMedia": null, "reactionVideos": [], @@ -265221,7 +264721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 1811205, "featuredRunMedia": null, "reactionVideos": [], @@ -265241,7 +264741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 105, + "teamId": "144175", "time": 1811838, "featuredRunMedia": null, "reactionVideos": [], @@ -265261,7 +264761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 1813437, "featuredRunMedia": null, "reactionVideos": [], @@ -265281,7 +264781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 88, + "teamId": "144158", "time": 1815984, "featuredRunMedia": null, "reactionVideos": [], @@ -265301,7 +264801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 1819227, "featuredRunMedia": null, "reactionVideos": [], @@ -265321,7 +264821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 1819262, "featuredRunMedia": null, "reactionVideos": [], @@ -265341,7 +264841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "144170", "time": 1820585, "featuredRunMedia": null, "reactionVideos": [], @@ -265361,7 +264861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 1820664, "featuredRunMedia": null, "reactionVideos": [], @@ -265381,7 +264881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 1820799, "featuredRunMedia": null, "reactionVideos": [], @@ -265401,7 +264901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 1821115, "featuredRunMedia": null, "reactionVideos": [], @@ -265421,7 +264921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 1822267, "featuredRunMedia": null, "reactionVideos": [], @@ -265441,7 +264941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1824063, "featuredRunMedia": null, "reactionVideos": [], @@ -265461,7 +264961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "144094", "time": 1824720, "featuredRunMedia": null, "reactionVideos": [], @@ -265481,7 +264981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 1826430, "featuredRunMedia": null, "reactionVideos": [], @@ -265501,7 +265001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1826679, "featuredRunMedia": null, "reactionVideos": [], @@ -265521,7 +265021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "144338", "time": 1828631, "featuredRunMedia": null, "reactionVideos": [], @@ -265541,7 +265041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 1829057, "featuredRunMedia": null, "reactionVideos": [], @@ -265561,7 +265061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 1830540, "featuredRunMedia": null, "reactionVideos": [], @@ -265581,7 +265081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 439, + "teamId": "144509", "time": 1832664, "featuredRunMedia": null, "reactionVideos": [], @@ -265601,7 +265101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1833377, "featuredRunMedia": null, "reactionVideos": [], @@ -265621,7 +265121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 1838211, "featuredRunMedia": null, "reactionVideos": [], @@ -265641,7 +265141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 1838653, "featuredRunMedia": null, "reactionVideos": [], @@ -265661,7 +265161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 1841180, "featuredRunMedia": null, "reactionVideos": [], @@ -265681,7 +265181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 1841309, "featuredRunMedia": null, "reactionVideos": [], @@ -265701,7 +265201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 1841451, "featuredRunMedia": null, "reactionVideos": [], @@ -265721,7 +265221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 1842731, "featuredRunMedia": null, "reactionVideos": [], @@ -265741,7 +265241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "144236", "time": 1845871, "featuredRunMedia": null, "reactionVideos": [], @@ -265761,7 +265261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "144107", "time": 1846160, "featuredRunMedia": null, "reactionVideos": [], @@ -265781,7 +265281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1846398, "featuredRunMedia": null, "reactionVideos": [], @@ -265801,7 +265301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 1847030, "featuredRunMedia": null, "reactionVideos": [], @@ -265821,7 +265321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 1847077, "featuredRunMedia": null, "reactionVideos": [], @@ -265841,7 +265341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1848267, "featuredRunMedia": null, "reactionVideos": [], @@ -265861,7 +265361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "144161", "time": 1848993, "featuredRunMedia": null, "reactionVideos": [], @@ -265881,7 +265381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "144269", "time": 1849988, "featuredRunMedia": null, "reactionVideos": [], @@ -265901,7 +265401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 1853772, "featuredRunMedia": null, "reactionVideos": [], @@ -265921,7 +265421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 1854178, "featuredRunMedia": null, "reactionVideos": [], @@ -265941,7 +265441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 1855960, "featuredRunMedia": null, "reactionVideos": [], @@ -265961,7 +265461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "144380", "time": 1856621, "featuredRunMedia": null, "reactionVideos": [], @@ -265981,7 +265481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 382, + "teamId": "144452", "time": 1857640, "featuredRunMedia": null, "reactionVideos": [], @@ -266001,7 +265501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 1860405, "featuredRunMedia": null, "reactionVideos": [], @@ -266021,7 +265521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 69, + "teamId": "144139", "time": 1863405, "featuredRunMedia": null, "reactionVideos": [], @@ -266041,7 +265541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 1864904, "featuredRunMedia": null, "reactionVideos": [], @@ -266061,7 +265561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 1867347, "featuredRunMedia": null, "reactionVideos": [], @@ -266081,7 +265581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 1868887, "featuredRunMedia": null, "reactionVideos": [], @@ -266101,7 +265601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 190, + "teamId": "144260", "time": 1869985, "featuredRunMedia": null, "reactionVideos": [], @@ -266121,7 +265621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 376, + "teamId": "144446", "time": 1870840, "featuredRunMedia": null, "reactionVideos": [], @@ -266141,7 +265641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 1872114, "featuredRunMedia": null, "reactionVideos": [], @@ -266161,7 +265661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "144103", "time": 1872161, "featuredRunMedia": null, "reactionVideos": [], @@ -266181,7 +265681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 1874314, "featuredRunMedia": null, "reactionVideos": [], @@ -266201,7 +265701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 1875718, "featuredRunMedia": null, "reactionVideos": [], @@ -266221,7 +265721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 1878419, "featuredRunMedia": null, "reactionVideos": [], @@ -266241,7 +265741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 412, + "teamId": "144482", "time": 1878755, "featuredRunMedia": null, "reactionVideos": [], @@ -266261,7 +265761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 400, + "teamId": "144470", "time": 1878888, "featuredRunMedia": null, "reactionVideos": [], @@ -266281,7 +265781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1878993, "featuredRunMedia": null, "reactionVideos": [], @@ -266301,7 +265801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "144193", "time": 1879706, "featuredRunMedia": null, "reactionVideos": [], @@ -266321,7 +265821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "144111", "time": 1879730, "featuredRunMedia": null, "reactionVideos": [], @@ -266341,7 +265841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 1880401, "featuredRunMedia": null, "reactionVideos": [], @@ -266361,7 +265861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 1881195, "featuredRunMedia": null, "reactionVideos": [], @@ -266381,7 +265881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 1882850, "featuredRunMedia": null, "reactionVideos": [], @@ -266401,7 +265901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 1882950, "featuredRunMedia": null, "reactionVideos": [], @@ -266421,7 +265921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 1883576, "featuredRunMedia": null, "reactionVideos": [], @@ -266445,7 +265945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 1884279, "featuredRunMedia": null, "reactionVideos": [], @@ -266465,7 +265965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1884736, "featuredRunMedia": null, "reactionVideos": [], @@ -266485,7 +265985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "144375", "time": 1887564, "featuredRunMedia": null, "reactionVideos": [], @@ -266505,7 +266005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 1887995, "featuredRunMedia": null, "reactionVideos": [], @@ -266525,7 +266025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 1888502, "featuredRunMedia": null, "reactionVideos": [], @@ -266545,7 +266045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 1890559, "featuredRunMedia": null, "reactionVideos": [], @@ -266565,7 +266065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 1891050, "featuredRunMedia": null, "reactionVideos": [], @@ -266585,7 +266085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 408, + "teamId": "144478", "time": 1892505, "featuredRunMedia": null, "reactionVideos": [], @@ -266605,7 +266105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "144190", "time": 1892788, "featuredRunMedia": null, "reactionVideos": [], @@ -266625,7 +266125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "144354", "time": 1894869, "featuredRunMedia": null, "reactionVideos": [], @@ -266645,7 +266145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 1895393, "featuredRunMedia": null, "reactionVideos": [], @@ -266665,7 +266165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1896817, "featuredRunMedia": null, "reactionVideos": [], @@ -266685,7 +266185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 364, + "teamId": "144434", "time": 1897890, "featuredRunMedia": null, "reactionVideos": [], @@ -266705,7 +266205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 1898255, "featuredRunMedia": null, "reactionVideos": [], @@ -266725,7 +266225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1899589, "featuredRunMedia": null, "reactionVideos": [], @@ -266745,7 +266245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "144172", "time": 1902519, "featuredRunMedia": null, "reactionVideos": [], @@ -266765,7 +266265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 1904357, "featuredRunMedia": null, "reactionVideos": [], @@ -266785,7 +266285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 1905829, "featuredRunMedia": null, "reactionVideos": [], @@ -266805,7 +266305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 1906952, "featuredRunMedia": null, "reactionVideos": [], @@ -266825,7 +266325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "144163", "time": 1907141, "featuredRunMedia": null, "reactionVideos": [], @@ -266845,7 +266345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 1909166, "featuredRunMedia": null, "reactionVideos": [], @@ -266865,7 +266365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 1909351, "featuredRunMedia": null, "reactionVideos": [], @@ -266885,7 +266385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1909703, "featuredRunMedia": null, "reactionVideos": [], @@ -266905,7 +266405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 1911348, "featuredRunMedia": null, "reactionVideos": [], @@ -266925,7 +266425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 1913343, "featuredRunMedia": null, "reactionVideos": [], @@ -266945,7 +266445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 1915013, "featuredRunMedia": null, "reactionVideos": [], @@ -266965,7 +266465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "144108", "time": 1916992, "featuredRunMedia": null, "reactionVideos": [], @@ -266989,7 +266489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 1918274, "featuredRunMedia": null, "reactionVideos": [], @@ -267009,7 +266509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 1919575, "featuredRunMedia": null, "reactionVideos": [], @@ -267029,7 +266529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "144289", "time": 1920605, "featuredRunMedia": null, "reactionVideos": [], @@ -267049,7 +266549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 1920953, "featuredRunMedia": null, "reactionVideos": [], @@ -267069,7 +266569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 1921402, "featuredRunMedia": null, "reactionVideos": [], @@ -267089,7 +266589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 1926745, "featuredRunMedia": null, "reactionVideos": [], @@ -267109,7 +266609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 1927145, "featuredRunMedia": null, "reactionVideos": [], @@ -267129,7 +266629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 1929447, "featuredRunMedia": null, "reactionVideos": [], @@ -267149,7 +266649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 1930601, "featuredRunMedia": null, "reactionVideos": [], @@ -267169,7 +266669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 1931428, "featuredRunMedia": null, "reactionVideos": [], @@ -267189,7 +266689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 1932096, "featuredRunMedia": null, "reactionVideos": [], @@ -267209,7 +266709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 1933968, "featuredRunMedia": null, "reactionVideos": [], @@ -267229,7 +266729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 1934789, "featuredRunMedia": null, "reactionVideos": [], @@ -267249,7 +266749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 1934958, "featuredRunMedia": null, "reactionVideos": [], @@ -267269,7 +266769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 1935216, "featuredRunMedia": null, "reactionVideos": [], @@ -267289,7 +266789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 1936975, "featuredRunMedia": null, "reactionVideos": [], @@ -267309,7 +266809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "144337", "time": 1938339, "featuredRunMedia": null, "reactionVideos": [], @@ -267329,7 +266829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 1940550, "featuredRunMedia": null, "reactionVideos": [], @@ -267349,7 +266849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 1940753, "featuredRunMedia": null, "reactionVideos": [], @@ -267369,7 +266869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 1941013, "featuredRunMedia": null, "reactionVideos": [], @@ -267389,7 +266889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 1943532, "featuredRunMedia": null, "reactionVideos": [], @@ -267409,7 +266909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 1944728, "featuredRunMedia": null, "reactionVideos": [], @@ -267429,7 +266929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 1944882, "featuredRunMedia": null, "reactionVideos": [], @@ -267449,7 +266949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 1946589, "featuredRunMedia": null, "reactionVideos": [], @@ -267469,7 +266969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 1947981, "featuredRunMedia": null, "reactionVideos": [], @@ -267489,7 +266989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 1948727, "featuredRunMedia": null, "reactionVideos": [], @@ -267509,7 +267009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 1949248, "featuredRunMedia": null, "reactionVideos": [], @@ -267529,7 +267029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 1951098, "featuredRunMedia": null, "reactionVideos": [], @@ -267549,7 +267049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 1952698, "featuredRunMedia": null, "reactionVideos": [], @@ -267569,7 +267069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "144253", "time": 1955343, "featuredRunMedia": null, "reactionVideos": [], @@ -267589,7 +267089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 1956580, "featuredRunMedia": null, "reactionVideos": [], @@ -267609,7 +267109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 1958657, "featuredRunMedia": null, "reactionVideos": [], @@ -267629,7 +267129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 1960950, "featuredRunMedia": null, "reactionVideos": [], @@ -267649,7 +267149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "144075", "time": 1961702, "featuredRunMedia": null, "reactionVideos": [], @@ -267669,7 +267169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 1962189, "featuredRunMedia": null, "reactionVideos": [], @@ -267689,7 +267189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "144400", "time": 1965896, "featuredRunMedia": null, "reactionVideos": [], @@ -267709,7 +267209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 1966788, "featuredRunMedia": null, "reactionVideos": [], @@ -267729,7 +267229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 1967167, "featuredRunMedia": null, "reactionVideos": [], @@ -267749,7 +267249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "144326", "time": 1971799, "featuredRunMedia": null, "reactionVideos": [], @@ -267769,7 +267269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 1974522, "featuredRunMedia": null, "reactionVideos": [], @@ -267789,7 +267289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 1978945, "featuredRunMedia": null, "reactionVideos": [], @@ -267809,7 +267309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "144096", "time": 1979066, "featuredRunMedia": null, "reactionVideos": [], @@ -267829,7 +267329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 1979403, "featuredRunMedia": null, "reactionVideos": [], @@ -267849,7 +267349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 1984056, "featuredRunMedia": null, "reactionVideos": [], @@ -267869,7 +267369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 1985331, "featuredRunMedia": null, "reactionVideos": [], @@ -267889,7 +267389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 1986017, "featuredRunMedia": null, "reactionVideos": [], @@ -267909,7 +267409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 1987478, "featuredRunMedia": null, "reactionVideos": [], @@ -267929,7 +267429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "144193", "time": 1989000, "featuredRunMedia": null, "reactionVideos": [], @@ -267949,7 +267449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 1989967, "featuredRunMedia": null, "reactionVideos": [], @@ -267969,7 +267469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 1990406, "featuredRunMedia": null, "reactionVideos": [], @@ -267989,7 +267489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 1990692, "featuredRunMedia": null, "reactionVideos": [], @@ -268009,7 +267509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "144129", "time": 1992296, "featuredRunMedia": null, "reactionVideos": [], @@ -268029,7 +267529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 1993323, "featuredRunMedia": null, "reactionVideos": [], @@ -268049,7 +267549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 1994789, "featuredRunMedia": null, "reactionVideos": [], @@ -268069,7 +267569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 1996246, "featuredRunMedia": null, "reactionVideos": [], @@ -268089,7 +267589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 1996443, "featuredRunMedia": null, "reactionVideos": [], @@ -268109,7 +267609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 1996889, "featuredRunMedia": null, "reactionVideos": [], @@ -268129,7 +267629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 1997884, "featuredRunMedia": null, "reactionVideos": [], @@ -268149,7 +267649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 1999335, "featuredRunMedia": null, "reactionVideos": [], @@ -268169,7 +267669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 2005027, "featuredRunMedia": null, "reactionVideos": [], @@ -268189,7 +267689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2006281, "featuredRunMedia": null, "reactionVideos": [], @@ -268209,7 +267709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "144400", "time": 2006321, "featuredRunMedia": null, "reactionVideos": [], @@ -268229,7 +267729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 2006964, "featuredRunMedia": null, "reactionVideos": [], @@ -268249,7 +267749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 2007229, "featuredRunMedia": null, "reactionVideos": [], @@ -268269,7 +267769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "144354", "time": 2008261, "featuredRunMedia": null, "reactionVideos": [], @@ -268289,7 +267789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 2011552, "featuredRunMedia": null, "reactionVideos": [], @@ -268309,7 +267809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 2013468, "featuredRunMedia": null, "reactionVideos": [], @@ -268329,7 +267829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "144120", "time": 2013948, "featuredRunMedia": null, "reactionVideos": [], @@ -268349,7 +267849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 400, + "teamId": "144470", "time": 2015835, "featuredRunMedia": null, "reactionVideos": [], @@ -268369,7 +267869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 2017142, "featuredRunMedia": null, "reactionVideos": [], @@ -268389,7 +267889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 2017251, "featuredRunMedia": null, "reactionVideos": [], @@ -268409,7 +267909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 2017926, "featuredRunMedia": null, "reactionVideos": [], @@ -268429,7 +267929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 2018023, "featuredRunMedia": null, "reactionVideos": [], @@ -268449,7 +267949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 2018493, "featuredRunMedia": null, "reactionVideos": [], @@ -268469,7 +267969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "144174", "time": 2020958, "featuredRunMedia": null, "reactionVideos": [], @@ -268489,7 +267989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "144075", "time": 2021893, "featuredRunMedia": null, "reactionVideos": [], @@ -268509,7 +268009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 2022289, "featuredRunMedia": null, "reactionVideos": [], @@ -268529,7 +268029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 2023067, "featuredRunMedia": null, "reactionVideos": [], @@ -268549,7 +268049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 2029341, "featuredRunMedia": null, "reactionVideos": [], @@ -268569,7 +268069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "144315", "time": 2030338, "featuredRunMedia": null, "reactionVideos": [], @@ -268589,7 +268089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 2032524, "featuredRunMedia": null, "reactionVideos": [], @@ -268609,7 +268109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "144180", "time": 2033685, "featuredRunMedia": null, "reactionVideos": [], @@ -268629,7 +268129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 2034028, "featuredRunMedia": null, "reactionVideos": [], @@ -268649,7 +268149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 2034228, "featuredRunMedia": null, "reactionVideos": [], @@ -268669,7 +268169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "144244", "time": 2039170, "featuredRunMedia": null, "reactionVideos": [], @@ -268693,7 +268193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 2039775, "featuredRunMedia": null, "reactionVideos": [], @@ -268713,7 +268213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "144296", "time": 2039838, "featuredRunMedia": null, "reactionVideos": [], @@ -268733,7 +268233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 2039972, "featuredRunMedia": null, "reactionVideos": [], @@ -268753,7 +268253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 2040362, "featuredRunMedia": null, "reactionVideos": [], @@ -268773,7 +268273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 2040663, "featuredRunMedia": null, "reactionVideos": [], @@ -268793,7 +268293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 2043616, "featuredRunMedia": null, "reactionVideos": [], @@ -268813,7 +268313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "144163", "time": 2043750, "featuredRunMedia": null, "reactionVideos": [], @@ -268833,7 +268333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 2044483, "featuredRunMedia": null, "reactionVideos": [], @@ -268853,7 +268353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 2044790, "featuredRunMedia": null, "reactionVideos": [], @@ -268873,7 +268373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2045221, "featuredRunMedia": null, "reactionVideos": [], @@ -268893,7 +268393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 2052364, "featuredRunMedia": null, "reactionVideos": [], @@ -268913,7 +268413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 2053076, "featuredRunMedia": null, "reactionVideos": [], @@ -268933,7 +268433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 385, + "teamId": "144455", "time": 2054132, "featuredRunMedia": null, "reactionVideos": [], @@ -268953,7 +268453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2054954, "featuredRunMedia": null, "reactionVideos": [], @@ -268973,7 +268473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 2057495, "featuredRunMedia": null, "reactionVideos": [], @@ -268993,7 +268493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 446, + "teamId": "144516", "time": 2058947, "featuredRunMedia": null, "reactionVideos": [], @@ -269013,7 +268513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "144273", "time": 2060647, "featuredRunMedia": null, "reactionVideos": [], @@ -269033,7 +268533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 2061391, "featuredRunMedia": null, "reactionVideos": [], @@ -269053,7 +268553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2062340, "featuredRunMedia": null, "reactionVideos": [], @@ -269073,7 +268573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 2062908, "featuredRunMedia": null, "reactionVideos": [], @@ -269093,7 +268593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 443, + "teamId": "144513", "time": 2063930, "featuredRunMedia": null, "reactionVideos": [], @@ -269113,7 +268613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2064204, "featuredRunMedia": null, "reactionVideos": [], @@ -269133,7 +268633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 2064757, "featuredRunMedia": null, "reactionVideos": [], @@ -269153,7 +268653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 2064931, "featuredRunMedia": null, "reactionVideos": [], @@ -269173,7 +268673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2066706, "featuredRunMedia": null, "reactionVideos": [], @@ -269193,7 +268693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 2066758, "featuredRunMedia": null, "reactionVideos": [], @@ -269213,7 +268713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 2067130, "featuredRunMedia": null, "reactionVideos": [], @@ -269233,7 +268733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "144365", "time": 2069429, "featuredRunMedia": null, "reactionVideos": [], @@ -269253,7 +268753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 2069586, "featuredRunMedia": null, "reactionVideos": [], @@ -269273,7 +268773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 2070516, "featuredRunMedia": null, "reactionVideos": [], @@ -269293,7 +268793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2071555, "featuredRunMedia": null, "reactionVideos": [], @@ -269313,7 +268813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "144290", "time": 2073527, "featuredRunMedia": null, "reactionVideos": [], @@ -269333,7 +268833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 2074601, "featuredRunMedia": null, "reactionVideos": [], @@ -269353,7 +268853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 2077165, "featuredRunMedia": null, "reactionVideos": [], @@ -269373,7 +268873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 2080465, "featuredRunMedia": null, "reactionVideos": [], @@ -269393,7 +268893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 2083515, "featuredRunMedia": null, "reactionVideos": [], @@ -269413,7 +268913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 2084185, "featuredRunMedia": null, "reactionVideos": [], @@ -269433,7 +268933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 2086200, "featuredRunMedia": null, "reactionVideos": [], @@ -269453,7 +268953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 2088322, "featuredRunMedia": null, "reactionVideos": [], @@ -269473,7 +268973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "144084", "time": 2089047, "featuredRunMedia": null, "reactionVideos": [], @@ -269493,7 +268993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 2089979, "featuredRunMedia": null, "reactionVideos": [], @@ -269513,7 +269013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 2090910, "featuredRunMedia": null, "reactionVideos": [], @@ -269533,7 +269033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "144236", "time": 2093033, "featuredRunMedia": null, "reactionVideos": [], @@ -269553,7 +269053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2095201, "featuredRunMedia": null, "reactionVideos": [], @@ -269573,7 +269073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 2096646, "featuredRunMedia": null, "reactionVideos": [], @@ -269593,7 +269093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 2097944, "featuredRunMedia": null, "reactionVideos": [], @@ -269613,7 +269113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "144378", "time": 2099343, "featuredRunMedia": null, "reactionVideos": [], @@ -269633,7 +269133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 2101177, "featuredRunMedia": null, "reactionVideos": [], @@ -269653,7 +269153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "144324", "time": 2101227, "featuredRunMedia": null, "reactionVideos": [], @@ -269673,7 +269173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 2102976, "featuredRunMedia": null, "reactionVideos": [], @@ -269693,7 +269193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "144129", "time": 2110722, "featuredRunMedia": null, "reactionVideos": [], @@ -269713,7 +269213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "144393", "time": 2111125, "featuredRunMedia": null, "reactionVideos": [], @@ -269733,7 +269233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2112066, "featuredRunMedia": null, "reactionVideos": [], @@ -269753,7 +269253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 2112156, "featuredRunMedia": null, "reactionVideos": [], @@ -269773,7 +269273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 2112426, "featuredRunMedia": null, "reactionVideos": [], @@ -269793,7 +269293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2114124, "featuredRunMedia": null, "reactionVideos": [], @@ -269813,7 +269313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "144290", "time": 2114786, "featuredRunMedia": null, "reactionVideos": [], @@ -269833,7 +269333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "144191", "time": 2116609, "featuredRunMedia": null, "reactionVideos": [], @@ -269853,7 +269353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 2118066, "featuredRunMedia": null, "reactionVideos": [], @@ -269873,7 +269373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 2119435, "featuredRunMedia": null, "reactionVideos": [], @@ -269893,7 +269393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2120796, "featuredRunMedia": null, "reactionVideos": [], @@ -269913,7 +269413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 425, + "teamId": "144495", "time": 2122641, "featuredRunMedia": null, "reactionVideos": [], @@ -269933,7 +269433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "144269", "time": 2122951, "featuredRunMedia": null, "reactionVideos": [], @@ -269953,7 +269453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 2123215, "featuredRunMedia": null, "reactionVideos": [], @@ -269973,7 +269473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2123435, "featuredRunMedia": null, "reactionVideos": [], @@ -269993,7 +269493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 2123506, "featuredRunMedia": null, "reactionVideos": [], @@ -270013,7 +269513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "144273", "time": 2123902, "featuredRunMedia": null, "reactionVideos": [], @@ -270033,7 +269533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 2124139, "featuredRunMedia": null, "reactionVideos": [], @@ -270053,7 +269553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "144291", "time": 2125893, "featuredRunMedia": null, "reactionVideos": [], @@ -270073,7 +269573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 2126449, "featuredRunMedia": null, "reactionVideos": [], @@ -270093,7 +269593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 2127532, "featuredRunMedia": null, "reactionVideos": [], @@ -270113,7 +269613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "144344", "time": 2129176, "featuredRunMedia": null, "reactionVideos": [], @@ -270133,7 +269633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 2130627, "featuredRunMedia": null, "reactionVideos": [], @@ -270153,7 +269653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "144342", "time": 2131035, "featuredRunMedia": null, "reactionVideos": [], @@ -270173,7 +269673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "144225", "time": 2131174, "featuredRunMedia": null, "reactionVideos": [], @@ -270193,7 +269693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "144296", "time": 2132648, "featuredRunMedia": null, "reactionVideos": [], @@ -270213,7 +269713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "144163", "time": 2133638, "featuredRunMedia": null, "reactionVideos": [], @@ -270233,7 +269733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "144395", "time": 2135183, "featuredRunMedia": null, "reactionVideos": [], @@ -270253,7 +269753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2137901, "featuredRunMedia": null, "reactionVideos": [], @@ -270273,7 +269773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "144269", "time": 2138918, "featuredRunMedia": null, "reactionVideos": [], @@ -270293,7 +269793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 2139622, "featuredRunMedia": null, "reactionVideos": [], @@ -270313,7 +269813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "144275", "time": 2141965, "featuredRunMedia": null, "reactionVideos": [], @@ -270333,7 +269833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2142279, "featuredRunMedia": null, "reactionVideos": [], @@ -270353,7 +269853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 196, + "teamId": "144266", "time": 2150600, "featuredRunMedia": null, "reactionVideos": [], @@ -270373,7 +269873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 2150671, "featuredRunMedia": null, "reactionVideos": [], @@ -270393,7 +269893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 2151148, "featuredRunMedia": null, "reactionVideos": [], @@ -270413,7 +269913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 2155548, "featuredRunMedia": null, "reactionVideos": [], @@ -270433,7 +269933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 2156249, "featuredRunMedia": null, "reactionVideos": [], @@ -270453,7 +269953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 2156288, "featuredRunMedia": null, "reactionVideos": [], @@ -270473,7 +269973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 2156884, "featuredRunMedia": null, "reactionVideos": [], @@ -270493,7 +269993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2157256, "featuredRunMedia": null, "reactionVideos": [], @@ -270513,7 +270013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "144354", "time": 2159501, "featuredRunMedia": null, "reactionVideos": [], @@ -270533,7 +270033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "144170", "time": 2165189, "featuredRunMedia": null, "reactionVideos": [], @@ -270553,7 +270053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 2165569, "featuredRunMedia": null, "reactionVideos": [], @@ -270573,7 +270073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "144322", "time": 2166121, "featuredRunMedia": null, "reactionVideos": [], @@ -270593,7 +270093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 2166153, "featuredRunMedia": null, "reactionVideos": [], @@ -270613,7 +270113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2167691, "featuredRunMedia": null, "reactionVideos": [], @@ -270633,7 +270133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 2171143, "featuredRunMedia": null, "reactionVideos": [], @@ -270653,7 +270153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 2171182, "featuredRunMedia": null, "reactionVideos": [], @@ -270673,7 +270173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2173543, "featuredRunMedia": null, "reactionVideos": [], @@ -270693,7 +270193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "144094", "time": 2177318, "featuredRunMedia": null, "reactionVideos": [], @@ -270713,7 +270213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 248, + "teamId": "144318", "time": 2177951, "featuredRunMedia": null, "reactionVideos": [], @@ -270733,7 +270233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "144337", "time": 2178053, "featuredRunMedia": null, "reactionVideos": [], @@ -270753,7 +270253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 134, + "teamId": "144204", "time": 2179925, "featuredRunMedia": null, "reactionVideos": [], @@ -270773,7 +270273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 2179950, "featuredRunMedia": null, "reactionVideos": [], @@ -270793,7 +270293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 2180186, "featuredRunMedia": null, "reactionVideos": [], @@ -270813,7 +270313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 2180851, "featuredRunMedia": null, "reactionVideos": [], @@ -270833,7 +270333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2181807, "featuredRunMedia": null, "reactionVideos": [], @@ -270853,7 +270353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 2183392, "featuredRunMedia": null, "reactionVideos": [], @@ -270873,7 +270373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "144230", "time": 2184382, "featuredRunMedia": null, "reactionVideos": [], @@ -270893,7 +270393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 2185397, "featuredRunMedia": null, "reactionVideos": [], @@ -270913,7 +270413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 2185519, "featuredRunMedia": null, "reactionVideos": [], @@ -270933,7 +270433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 2185827, "featuredRunMedia": null, "reactionVideos": [], @@ -270953,7 +270453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 2187692, "featuredRunMedia": null, "reactionVideos": [], @@ -270973,7 +270473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 2187826, "featuredRunMedia": null, "reactionVideos": [], @@ -270993,7 +270493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 2188496, "featuredRunMedia": null, "reactionVideos": [], @@ -271013,7 +270513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 2188928, "featuredRunMedia": null, "reactionVideos": [], @@ -271033,7 +270533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 2189909, "featuredRunMedia": null, "reactionVideos": [], @@ -271053,7 +270553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 2190309, "featuredRunMedia": null, "reactionVideos": [], @@ -271073,7 +270573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2191059, "featuredRunMedia": null, "reactionVideos": [], @@ -271093,7 +270593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2192372, "featuredRunMedia": null, "reactionVideos": [], @@ -271113,7 +270613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 2194715, "featuredRunMedia": null, "reactionVideos": [], @@ -271133,7 +270633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 2198186, "featuredRunMedia": null, "reactionVideos": [], @@ -271153,7 +270653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2198412, "featuredRunMedia": null, "reactionVideos": [], @@ -271173,7 +270673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 2198457, "featuredRunMedia": null, "reactionVideos": [], @@ -271193,7 +270693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2198730, "featuredRunMedia": null, "reactionVideos": [], @@ -271213,7 +270713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2199584, "featuredRunMedia": null, "reactionVideos": [], @@ -271233,7 +270733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2200984, "featuredRunMedia": null, "reactionVideos": [], @@ -271253,7 +270753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 2203038, "featuredRunMedia": null, "reactionVideos": [], @@ -271273,7 +270773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 69, + "teamId": "144139", "time": 2206028, "featuredRunMedia": null, "reactionVideos": [], @@ -271293,7 +270793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2206307, "featuredRunMedia": null, "reactionVideos": [], @@ -271313,7 +270813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "144365", "time": 2206728, "featuredRunMedia": null, "reactionVideos": [], @@ -271333,7 +270833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2208479, "featuredRunMedia": null, "reactionVideos": [], @@ -271353,7 +270853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 2209006, "featuredRunMedia": null, "reactionVideos": [], @@ -271373,7 +270873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "144326", "time": 2210284, "featuredRunMedia": null, "reactionVideos": [], @@ -271393,7 +270893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2210523, "featuredRunMedia": null, "reactionVideos": [], @@ -271413,7 +270913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "144335", "time": 2212009, "featuredRunMedia": null, "reactionVideos": [], @@ -271433,7 +270933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 196, + "teamId": "144266", "time": 2212143, "featuredRunMedia": null, "reactionVideos": [], @@ -271453,7 +270953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 2212581, "featuredRunMedia": null, "reactionVideos": [], @@ -271473,7 +270973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "144193", "time": 2214183, "featuredRunMedia": null, "reactionVideos": [], @@ -271493,7 +270993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 449, + "teamId": "144519", "time": 2219646, "featuredRunMedia": null, "reactionVideos": [], @@ -271513,7 +271013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 2222166, "featuredRunMedia": null, "reactionVideos": [], @@ -271533,7 +271033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 2224171, "featuredRunMedia": null, "reactionVideos": [], @@ -271553,7 +271053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2224947, "featuredRunMedia": null, "reactionVideos": [], @@ -271573,7 +271073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 2225326, "featuredRunMedia": null, "reactionVideos": [], @@ -271593,7 +271093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2225498, "featuredRunMedia": null, "reactionVideos": [], @@ -271613,7 +271113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 2227253, "featuredRunMedia": null, "reactionVideos": [], @@ -271633,7 +271133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 2227391, "featuredRunMedia": null, "reactionVideos": [], @@ -271653,7 +271153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2229836, "featuredRunMedia": null, "reactionVideos": [], @@ -271673,7 +271173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 2229982, "featuredRunMedia": null, "reactionVideos": [], @@ -271693,7 +271193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 2230188, "featuredRunMedia": null, "reactionVideos": [], @@ -271713,7 +271213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 2236715, "featuredRunMedia": null, "reactionVideos": [], @@ -271733,7 +271233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2237276, "featuredRunMedia": null, "reactionVideos": [], @@ -271753,7 +271253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2238992, "featuredRunMedia": null, "reactionVideos": [], @@ -271773,7 +271273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 2242661, "featuredRunMedia": null, "reactionVideos": [], @@ -271793,7 +271293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2243061, "featuredRunMedia": null, "reactionVideos": [], @@ -271813,7 +271313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 2244384, "featuredRunMedia": null, "reactionVideos": [], @@ -271833,7 +271333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 2245275, "featuredRunMedia": null, "reactionVideos": [], @@ -271853,7 +271353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 2246430, "featuredRunMedia": null, "reactionVideos": [], @@ -271873,7 +271373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "144376", "time": 2246896, "featuredRunMedia": null, "reactionVideos": [], @@ -271893,7 +271393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 2246995, "featuredRunMedia": null, "reactionVideos": [], @@ -271913,7 +271413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 2247916, "featuredRunMedia": null, "reactionVideos": [], @@ -271933,7 +271433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 2248978, "featuredRunMedia": null, "reactionVideos": [], @@ -271953,7 +271453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 449, + "teamId": "144519", "time": 2249440, "featuredRunMedia": null, "reactionVideos": [], @@ -271973,7 +271473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 2249853, "featuredRunMedia": null, "reactionVideos": [], @@ -271993,7 +271493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2252213, "featuredRunMedia": null, "reactionVideos": [], @@ -272013,7 +271513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 2252393, "featuredRunMedia": null, "reactionVideos": [], @@ -272033,7 +271533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 385, + "teamId": "144455", "time": 2254451, "featuredRunMedia": null, "reactionVideos": [], @@ -272053,7 +271553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 2255138, "featuredRunMedia": null, "reactionVideos": [], @@ -272073,7 +271573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "144189", "time": 2255497, "featuredRunMedia": null, "reactionVideos": [], @@ -272097,7 +271597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2256443, "featuredRunMedia": null, "reactionVideos": [], @@ -272117,7 +271617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 2257023, "featuredRunMedia": null, "reactionVideos": [], @@ -272137,7 +271637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 2259734, "featuredRunMedia": null, "reactionVideos": [], @@ -272157,7 +271657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 2259951, "featuredRunMedia": null, "reactionVideos": [], @@ -272177,7 +271677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "144075", "time": 2261029, "featuredRunMedia": null, "reactionVideos": [], @@ -272197,7 +271697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 2261685, "featuredRunMedia": null, "reactionVideos": [], @@ -272217,7 +271717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 2262176, "featuredRunMedia": null, "reactionVideos": [], @@ -272237,7 +271737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 2262722, "featuredRunMedia": null, "reactionVideos": [], @@ -272257,7 +271757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "144275", "time": 2262772, "featuredRunMedia": null, "reactionVideos": [], @@ -272277,7 +271777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 2263465, "featuredRunMedia": null, "reactionVideos": [], @@ -272297,7 +271797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 134, + "teamId": "144204", "time": 2264625, "featuredRunMedia": null, "reactionVideos": [], @@ -272317,7 +271817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 2266827, "featuredRunMedia": null, "reactionVideos": [], @@ -272337,7 +271837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 2267471, "featuredRunMedia": null, "reactionVideos": [], @@ -272357,7 +271857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 2267517, "featuredRunMedia": null, "reactionVideos": [], @@ -272377,7 +271877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 2268978, "featuredRunMedia": null, "reactionVideos": [], @@ -272397,7 +271897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 2269122, "featuredRunMedia": null, "reactionVideos": [], @@ -272417,7 +271917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2271320, "featuredRunMedia": null, "reactionVideos": [], @@ -272437,7 +271937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 368, + "teamId": "144438", "time": 2273302, "featuredRunMedia": null, "reactionVideos": [], @@ -272457,7 +271957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2278309, "featuredRunMedia": null, "reactionVideos": [], @@ -272477,7 +271977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 2279612, "featuredRunMedia": null, "reactionVideos": [], @@ -272497,7 +271997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 2282164, "featuredRunMedia": null, "reactionVideos": [], @@ -272517,7 +272017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2285474, "featuredRunMedia": null, "reactionVideos": [], @@ -272537,7 +272037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 2286720, "featuredRunMedia": null, "reactionVideos": [], @@ -272557,7 +272057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 2287202, "featuredRunMedia": null, "reactionVideos": [], @@ -272577,7 +272077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 2288461, "featuredRunMedia": null, "reactionVideos": [], @@ -272597,7 +272097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 2289629, "featuredRunMedia": null, "reactionVideos": [], @@ -272617,7 +272117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 2290035, "featuredRunMedia": null, "reactionVideos": [], @@ -272637,7 +272137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 2290153, "featuredRunMedia": null, "reactionVideos": [], @@ -272657,7 +272157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 2294290, "featuredRunMedia": null, "reactionVideos": [], @@ -272677,7 +272177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2295428, "featuredRunMedia": null, "reactionVideos": [], @@ -272697,7 +272197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 2296332, "featuredRunMedia": null, "reactionVideos": [], @@ -272717,7 +272217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "144156", "time": 2297060, "featuredRunMedia": null, "reactionVideos": [], @@ -272737,7 +272237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 2298065, "featuredRunMedia": null, "reactionVideos": [], @@ -272757,7 +272257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2301736, "featuredRunMedia": null, "reactionVideos": [], @@ -272777,7 +272277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 2301870, "featuredRunMedia": null, "reactionVideos": [], @@ -272797,7 +272297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2303064, "featuredRunMedia": null, "reactionVideos": [], @@ -272817,7 +272317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 2303484, "featuredRunMedia": null, "reactionVideos": [], @@ -272837,7 +272337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "144337", "time": 2305668, "featuredRunMedia": null, "reactionVideos": [], @@ -272857,7 +272357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 2306099, "featuredRunMedia": null, "reactionVideos": [], @@ -272877,7 +272377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "144320", "time": 2306346, "featuredRunMedia": null, "reactionVideos": [], @@ -272897,7 +272397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "144269", "time": 2306867, "featuredRunMedia": null, "reactionVideos": [], @@ -272917,7 +272417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 2307365, "featuredRunMedia": null, "reactionVideos": [], @@ -272937,7 +272437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2307787, "featuredRunMedia": null, "reactionVideos": [], @@ -272957,7 +272457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "144129", "time": 2308011, "featuredRunMedia": null, "reactionVideos": [], @@ -272977,7 +272477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2309012, "featuredRunMedia": null, "reactionVideos": [], @@ -272997,7 +272497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 2309150, "featuredRunMedia": null, "reactionVideos": [], @@ -273017,7 +272517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 2309694, "featuredRunMedia": null, "reactionVideos": [], @@ -273037,7 +272537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 2310101, "featuredRunMedia": null, "reactionVideos": [], @@ -273057,7 +272557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 2313730, "featuredRunMedia": null, "reactionVideos": [], @@ -273077,7 +272577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 2319984, "featuredRunMedia": null, "reactionVideos": [], @@ -273097,7 +272597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 2322202, "featuredRunMedia": null, "reactionVideos": [], @@ -273117,7 +272617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 2322382, "featuredRunMedia": null, "reactionVideos": [], @@ -273137,7 +272637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 2323179, "featuredRunMedia": null, "reactionVideos": [], @@ -273157,7 +272657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 2324410, "featuredRunMedia": null, "reactionVideos": [], @@ -273181,7 +272681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 2324558, "featuredRunMedia": null, "reactionVideos": [], @@ -273201,7 +272701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 408, + "teamId": "144478", "time": 2325721, "featuredRunMedia": null, "reactionVideos": [], @@ -273221,7 +272721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "144252", "time": 2326487, "featuredRunMedia": null, "reactionVideos": [], @@ -273241,7 +272741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2328126, "featuredRunMedia": null, "reactionVideos": [], @@ -273261,7 +272761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 99, + "teamId": "144169", "time": 2330395, "featuredRunMedia": null, "reactionVideos": [], @@ -273281,7 +272781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 2330984, "featuredRunMedia": null, "reactionVideos": [], @@ -273301,7 +272801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 2331690, "featuredRunMedia": null, "reactionVideos": [], @@ -273321,7 +272821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 2332017, "featuredRunMedia": null, "reactionVideos": [], @@ -273341,7 +272841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 2332051, "featuredRunMedia": null, "reactionVideos": [], @@ -273361,7 +272861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2332782, "featuredRunMedia": null, "reactionVideos": [], @@ -273381,7 +272881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "144167", "time": 2337601, "featuredRunMedia": null, "reactionVideos": [], @@ -273401,7 +272901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 261, + "teamId": "144331", "time": 2337750, "featuredRunMedia": null, "reactionVideos": [], @@ -273421,7 +272921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2338251, "featuredRunMedia": null, "reactionVideos": [], @@ -273441,7 +272941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 2340859, "featuredRunMedia": null, "reactionVideos": [], @@ -273461,7 +272961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 2341296, "featuredRunMedia": null, "reactionVideos": [], @@ -273481,7 +272981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2342045, "featuredRunMedia": null, "reactionVideos": [], @@ -273501,7 +273001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 2342776, "featuredRunMedia": null, "reactionVideos": [], @@ -273521,7 +273021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2342851, "featuredRunMedia": null, "reactionVideos": [], @@ -273541,7 +273041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 2343505, "featuredRunMedia": null, "reactionVideos": [], @@ -273561,7 +273061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "144096", "time": 2344120, "featuredRunMedia": null, "reactionVideos": [], @@ -273581,7 +273081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 2345000, "featuredRunMedia": null, "reactionVideos": [], @@ -273601,7 +273101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 2345878, "featuredRunMedia": null, "reactionVideos": [], @@ -273621,7 +273121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 2346009, "featuredRunMedia": null, "reactionVideos": [], @@ -273641,7 +273141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 2348013, "featuredRunMedia": null, "reactionVideos": [], @@ -273661,7 +273161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 2348070, "featuredRunMedia": null, "reactionVideos": [], @@ -273681,7 +273181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2348612, "featuredRunMedia": null, "reactionVideos": [], @@ -273701,7 +273201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2350784, "featuredRunMedia": null, "reactionVideos": [], @@ -273721,7 +273221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 2351152, "featuredRunMedia": null, "reactionVideos": [], @@ -273741,7 +273241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "144109", "time": 2351190, "featuredRunMedia": null, "reactionVideos": [], @@ -273761,7 +273261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2351505, "featuredRunMedia": null, "reactionVideos": [], @@ -273781,7 +273281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 2352078, "featuredRunMedia": null, "reactionVideos": [], @@ -273801,7 +273301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 2352361, "featuredRunMedia": null, "reactionVideos": [], @@ -273821,7 +273321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2352627, "featuredRunMedia": null, "reactionVideos": [], @@ -273841,7 +273341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 2352663, "featuredRunMedia": null, "reactionVideos": [], @@ -273861,7 +273361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "144290", "time": 2353312, "featuredRunMedia": null, "reactionVideos": [], @@ -273881,7 +273381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "144293", "time": 2354601, "featuredRunMedia": null, "reactionVideos": [], @@ -273901,7 +273401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2358406, "featuredRunMedia": null, "reactionVideos": [], @@ -273921,7 +273421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 2358950, "featuredRunMedia": null, "reactionVideos": [], @@ -273941,7 +273441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 2359359, "featuredRunMedia": null, "reactionVideos": [], @@ -273961,7 +273461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 2359820, "featuredRunMedia": null, "reactionVideos": [], @@ -273981,7 +273481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 2360981, "featuredRunMedia": null, "reactionVideos": [], @@ -274001,7 +273501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 2361084, "featuredRunMedia": null, "reactionVideos": [], @@ -274021,7 +273521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 2361459, "featuredRunMedia": null, "reactionVideos": [], @@ -274041,7 +273541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 2361495, "featuredRunMedia": null, "reactionVideos": [], @@ -274061,7 +273561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 2362726, "featuredRunMedia": null, "reactionVideos": [], @@ -274081,7 +273581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 2364626, "featuredRunMedia": null, "reactionVideos": [], @@ -274101,7 +273601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 120, + "teamId": "144190", "time": 2365838, "featuredRunMedia": null, "reactionVideos": [], @@ -274121,7 +273621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 2368163, "featuredRunMedia": null, "reactionVideos": [], @@ -274141,7 +273641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 2371589, "featuredRunMedia": null, "reactionVideos": [], @@ -274161,7 +273661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2371916, "featuredRunMedia": null, "reactionVideos": [], @@ -274181,7 +273681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "144289", "time": 2372187, "featuredRunMedia": null, "reactionVideos": [], @@ -274201,7 +273701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 2374931, "featuredRunMedia": null, "reactionVideos": [], @@ -274221,7 +273721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 2376061, "featuredRunMedia": null, "reactionVideos": [], @@ -274241,7 +273741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 2380689, "featuredRunMedia": null, "reactionVideos": [], @@ -274261,7 +273761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "144180", "time": 2382706, "featuredRunMedia": null, "reactionVideos": [], @@ -274281,7 +273781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 2382735, "featuredRunMedia": null, "reactionVideos": [], @@ -274301,7 +273801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 2383197, "featuredRunMedia": null, "reactionVideos": [], @@ -274321,7 +273821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 2384615, "featuredRunMedia": null, "reactionVideos": [], @@ -274341,7 +273841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 2384876, "featuredRunMedia": null, "reactionVideos": [], @@ -274361,7 +273861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 2385123, "featuredRunMedia": null, "reactionVideos": [], @@ -274381,7 +273881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2387633, "featuredRunMedia": null, "reactionVideos": [], @@ -274401,7 +273901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2389738, "featuredRunMedia": null, "reactionVideos": [], @@ -274421,7 +273921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2391121, "featuredRunMedia": null, "reactionVideos": [], @@ -274441,7 +273941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 403, + "teamId": "144473", "time": 2392310, "featuredRunMedia": null, "reactionVideos": [], @@ -274461,7 +273961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 2392437, "featuredRunMedia": null, "reactionVideos": [], @@ -274481,7 +273981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 2392766, "featuredRunMedia": null, "reactionVideos": [], @@ -274501,7 +274001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 2393846, "featuredRunMedia": null, "reactionVideos": [], @@ -274521,7 +274021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2394366, "featuredRunMedia": null, "reactionVideos": [], @@ -274541,7 +274041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 2395405, "featuredRunMedia": null, "reactionVideos": [], @@ -274561,7 +274061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2395838, "featuredRunMedia": null, "reactionVideos": [], @@ -274581,7 +274081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 2399005, "featuredRunMedia": null, "reactionVideos": [], @@ -274601,7 +274101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 2399281, "featuredRunMedia": null, "reactionVideos": [], @@ -274621,7 +274121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 2399919, "featuredRunMedia": null, "reactionVideos": [], @@ -274641,7 +274141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 2401478, "featuredRunMedia": null, "reactionVideos": [], @@ -274661,7 +274161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "144221", "time": 2401617, "featuredRunMedia": null, "reactionVideos": [], @@ -274681,7 +274181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2403740, "featuredRunMedia": null, "reactionVideos": [], @@ -274701,7 +274201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "144330", "time": 2405561, "featuredRunMedia": null, "reactionVideos": [], @@ -274721,7 +274221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 2406725, "featuredRunMedia": null, "reactionVideos": [], @@ -274741,7 +274241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 2407461, "featuredRunMedia": null, "reactionVideos": [], @@ -274761,7 +274261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2407487, "featuredRunMedia": null, "reactionVideos": [], @@ -274781,7 +274281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 317, + "teamId": "144387", "time": 2408221, "featuredRunMedia": null, "reactionVideos": [], @@ -274801,7 +274301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 2408535, "featuredRunMedia": null, "reactionVideos": [], @@ -274821,7 +274321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 2409528, "featuredRunMedia": null, "reactionVideos": [], @@ -274841,7 +274341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2409779, "featuredRunMedia": null, "reactionVideos": [], @@ -274861,7 +274361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "144208", "time": 2410756, "featuredRunMedia": null, "reactionVideos": [], @@ -274881,7 +274381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 2413744, "featuredRunMedia": null, "reactionVideos": [], @@ -274901,7 +274401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 2415029, "featuredRunMedia": null, "reactionVideos": [], @@ -274921,7 +274421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 2415757, "featuredRunMedia": null, "reactionVideos": [], @@ -274941,7 +274441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "144107", "time": 2417512, "featuredRunMedia": null, "reactionVideos": [], @@ -274961,7 +274461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 2417990, "featuredRunMedia": null, "reactionVideos": [], @@ -274981,7 +274481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 2418096, "featuredRunMedia": null, "reactionVideos": [], @@ -275001,7 +274501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 2418861, "featuredRunMedia": null, "reactionVideos": [], @@ -275021,7 +274521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 2419959, "featuredRunMedia": null, "reactionVideos": [], @@ -275041,7 +274541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 2420731, "featuredRunMedia": null, "reactionVideos": [], @@ -275061,7 +274561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 2421611, "featuredRunMedia": null, "reactionVideos": [], @@ -275081,7 +274581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 2423890, "featuredRunMedia": null, "reactionVideos": [], @@ -275101,7 +274601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 10, + "teamId": "144080", "time": 2424053, "featuredRunMedia": null, "reactionVideos": [], @@ -275121,7 +274621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 2427946, "featuredRunMedia": null, "reactionVideos": [], @@ -275141,7 +274641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2431161, "featuredRunMedia": null, "reactionVideos": [], @@ -275161,7 +274661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 2431187, "featuredRunMedia": null, "reactionVideos": [], @@ -275181,7 +274681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 2432588, "featuredRunMedia": null, "reactionVideos": [], @@ -275201,7 +274701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 2434176, "featuredRunMedia": null, "reactionVideos": [], @@ -275221,7 +274721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "144215", "time": 2435168, "featuredRunMedia": null, "reactionVideos": [], @@ -275241,7 +274741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 2436638, "featuredRunMedia": null, "reactionVideos": [], @@ -275261,7 +274761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "144096", "time": 2439433, "featuredRunMedia": null, "reactionVideos": [], @@ -275281,7 +274781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "144370", "time": 2439478, "featuredRunMedia": null, "reactionVideos": [], @@ -275301,7 +274801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "144380", "time": 2439875, "featuredRunMedia": null, "reactionVideos": [], @@ -275321,7 +274821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "144337", "time": 2440006, "featuredRunMedia": null, "reactionVideos": [], @@ -275341,7 +274841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2440033, "featuredRunMedia": null, "reactionVideos": [], @@ -275361,7 +274861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 2441514, "featuredRunMedia": null, "reactionVideos": [], @@ -275381,7 +274881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 2441977, "featuredRunMedia": null, "reactionVideos": [], @@ -275401,7 +274901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 2443845, "featuredRunMedia": null, "reactionVideos": [], @@ -275421,7 +274921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 2443983, "featuredRunMedia": null, "reactionVideos": [], @@ -275441,7 +274941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "144393", "time": 2444855, "featuredRunMedia": null, "reactionVideos": [], @@ -275461,7 +274961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 2445429, "featuredRunMedia": null, "reactionVideos": [], @@ -275481,7 +274981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 2445961, "featuredRunMedia": null, "reactionVideos": [], @@ -275501,7 +275001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 2446320, "featuredRunMedia": null, "reactionVideos": [], @@ -275521,7 +275021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2446553, "featuredRunMedia": null, "reactionVideos": [], @@ -275541,7 +275041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 2447161, "featuredRunMedia": null, "reactionVideos": [], @@ -275561,7 +275061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "144269", "time": 2449191, "featuredRunMedia": null, "reactionVideos": [], @@ -275581,7 +275081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 2450377, "featuredRunMedia": null, "reactionVideos": [], @@ -275601,7 +275101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "144365", "time": 2450914, "featuredRunMedia": null, "reactionVideos": [], @@ -275621,7 +275121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "144310", "time": 2451202, "featuredRunMedia": null, "reactionVideos": [], @@ -275641,7 +275141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2451703, "featuredRunMedia": null, "reactionVideos": [], @@ -275661,7 +275161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 2454052, "featuredRunMedia": null, "reactionVideos": [], @@ -275681,7 +275181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "144173", "time": 2455732, "featuredRunMedia": null, "reactionVideos": [], @@ -275701,7 +275201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 2456068, "featuredRunMedia": null, "reactionVideos": [], @@ -275721,7 +275221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 2458897, "featuredRunMedia": null, "reactionVideos": [], @@ -275741,7 +275241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 2460113, "featuredRunMedia": null, "reactionVideos": [], @@ -275761,7 +275261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 2461444, "featuredRunMedia": null, "reactionVideos": [], @@ -275781,7 +275281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 2461494, "featuredRunMedia": null, "reactionVideos": [], @@ -275801,7 +275301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "144258", "time": 2463221, "featuredRunMedia": null, "reactionVideos": [], @@ -275821,7 +275321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 163, + "teamId": "144233", "time": 2468270, "featuredRunMedia": null, "reactionVideos": [], @@ -275841,7 +275341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2469273, "featuredRunMedia": null, "reactionVideos": [], @@ -275861,7 +275361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "144120", "time": 2471274, "featuredRunMedia": null, "reactionVideos": [], @@ -275881,7 +275381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2476106, "featuredRunMedia": null, "reactionVideos": [], @@ -275901,7 +275401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "144141", "time": 2476366, "featuredRunMedia": null, "reactionVideos": [], @@ -275921,7 +275421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 2476895, "featuredRunMedia": null, "reactionVideos": [], @@ -275941,7 +275441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 2478539, "featuredRunMedia": null, "reactionVideos": [], @@ -275961,7 +275461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 449, + "teamId": "144519", "time": 2478719, "featuredRunMedia": null, "reactionVideos": [], @@ -275981,7 +275481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 2479332, "featuredRunMedia": null, "reactionVideos": [], @@ -276001,7 +275501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 2481331, "featuredRunMedia": null, "reactionVideos": [], @@ -276021,7 +275521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 2482197, "featuredRunMedia": null, "reactionVideos": [], @@ -276041,7 +275541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 2482347, "featuredRunMedia": null, "reactionVideos": [], @@ -276061,7 +275561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2483691, "featuredRunMedia": null, "reactionVideos": [], @@ -276081,7 +275581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 2485599, "featuredRunMedia": null, "reactionVideos": [], @@ -276101,7 +275601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 2488585, "featuredRunMedia": null, "reactionVideos": [], @@ -276121,7 +275621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 2489006, "featuredRunMedia": null, "reactionVideos": [], @@ -276141,7 +275641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "144165", "time": 2489568, "featuredRunMedia": null, "reactionVideos": [], @@ -276161,7 +275661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 2490628, "featuredRunMedia": null, "reactionVideos": [], @@ -276181,7 +275681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 2491595, "featuredRunMedia": null, "reactionVideos": [], @@ -276201,7 +275701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 2493772, "featuredRunMedia": null, "reactionVideos": [], @@ -276221,7 +275721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 2494159, "featuredRunMedia": null, "reactionVideos": [], @@ -276241,7 +275741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 2497577, "featuredRunMedia": null, "reactionVideos": [], @@ -276261,7 +275761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 2499010, "featuredRunMedia": null, "reactionVideos": [], @@ -276281,7 +275781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "144195", "time": 2499294, "featuredRunMedia": null, "reactionVideos": [], @@ -276301,7 +275801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 2499937, "featuredRunMedia": null, "reactionVideos": [], @@ -276321,7 +275821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 2500427, "featuredRunMedia": null, "reactionVideos": [], @@ -276341,7 +275841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 2500463, "featuredRunMedia": null, "reactionVideos": [], @@ -276361,7 +275861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 2501155, "featuredRunMedia": null, "reactionVideos": [], @@ -276381,7 +275881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 2503075, "featuredRunMedia": null, "reactionVideos": [], @@ -276401,7 +275901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 2503298, "featuredRunMedia": null, "reactionVideos": [], @@ -276421,7 +275921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "144087", "time": 2504285, "featuredRunMedia": null, "reactionVideos": [], @@ -276441,7 +275941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 2506295, "featuredRunMedia": null, "reactionVideos": [], @@ -276461,7 +275961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "144383", "time": 2508109, "featuredRunMedia": null, "reactionVideos": [], @@ -276481,7 +275981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2508441, "featuredRunMedia": null, "reactionVideos": [], @@ -276501,7 +276001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 2509226, "featuredRunMedia": null, "reactionVideos": [], @@ -276521,7 +276021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 2513577, "featuredRunMedia": null, "reactionVideos": [], @@ -276541,7 +276041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 2524771, "featuredRunMedia": null, "reactionVideos": [], @@ -276561,7 +276061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2526672, "featuredRunMedia": null, "reactionVideos": [], @@ -276581,7 +276081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 2527971, "featuredRunMedia": null, "reactionVideos": [], @@ -276601,7 +276101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 2528006, "featuredRunMedia": null, "reactionVideos": [], @@ -276621,7 +276121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 2528814, "featuredRunMedia": null, "reactionVideos": [], @@ -276641,7 +276141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 2533943, "featuredRunMedia": null, "reactionVideos": [], @@ -276661,7 +276161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 2534005, "featuredRunMedia": null, "reactionVideos": [], @@ -276681,7 +276181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "144111", "time": 2535174, "featuredRunMedia": null, "reactionVideos": [], @@ -276701,7 +276201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2536774, "featuredRunMedia": null, "reactionVideos": [], @@ -276721,7 +276221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2539327, "featuredRunMedia": null, "reactionVideos": [], @@ -276741,7 +276241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 2542617, "featuredRunMedia": null, "reactionVideos": [], @@ -276761,7 +276261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "144413", "time": 2544554, "featuredRunMedia": null, "reactionVideos": [], @@ -276781,7 +276281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "144180", "time": 2546264, "featuredRunMedia": null, "reactionVideos": [], @@ -276801,7 +276301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 2549430, "featuredRunMedia": null, "reactionVideos": [], @@ -276821,7 +276321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 2550013, "featuredRunMedia": null, "reactionVideos": [], @@ -276841,7 +276341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2550410, "featuredRunMedia": null, "reactionVideos": [], @@ -276861,7 +276361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 2551385, "featuredRunMedia": null, "reactionVideos": [], @@ -276881,7 +276381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 2551639, "featuredRunMedia": null, "reactionVideos": [], @@ -276901,7 +276401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 2552399, "featuredRunMedia": null, "reactionVideos": [], @@ -276921,7 +276421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 2555154, "featuredRunMedia": null, "reactionVideos": [], @@ -276941,7 +276441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 2555293, "featuredRunMedia": null, "reactionVideos": [], @@ -276961,7 +276461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 2558425, "featuredRunMedia": null, "reactionVideos": [], @@ -276981,7 +276481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 2559654, "featuredRunMedia": null, "reactionVideos": [], @@ -277001,7 +276501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 2560357, "featuredRunMedia": null, "reactionVideos": [], @@ -277021,7 +276521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 381, + "teamId": "144451", "time": 2560490, "featuredRunMedia": null, "reactionVideos": [], @@ -277041,7 +276541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 2564611, "featuredRunMedia": null, "reactionVideos": [], @@ -277061,7 +276561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2564951, "featuredRunMedia": null, "reactionVideos": [], @@ -277081,7 +276581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "144094", "time": 2565115, "featuredRunMedia": null, "reactionVideos": [], @@ -277101,7 +276601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "144395", "time": 2565639, "featuredRunMedia": null, "reactionVideos": [], @@ -277121,7 +276621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 2566865, "featuredRunMedia": null, "reactionVideos": [], @@ -277141,7 +276641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 120, + "teamId": "144190", "time": 2566949, "featuredRunMedia": null, "reactionVideos": [], @@ -277161,7 +276661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 2567703, "featuredRunMedia": null, "reactionVideos": [], @@ -277181,7 +276681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "144125", "time": 2568048, "featuredRunMedia": null, "reactionVideos": [], @@ -277201,7 +276701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 2568439, "featuredRunMedia": null, "reactionVideos": [], @@ -277221,7 +276721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2570170, "featuredRunMedia": null, "reactionVideos": [], @@ -277241,7 +276741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 2571024, "featuredRunMedia": null, "reactionVideos": [], @@ -277261,7 +276761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 2573878, "featuredRunMedia": null, "reactionVideos": [], @@ -277281,7 +276781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 2574444, "featuredRunMedia": null, "reactionVideos": [], @@ -277301,7 +276801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "144133", "time": 2574726, "featuredRunMedia": null, "reactionVideos": [], @@ -277321,7 +276821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 2575735, "featuredRunMedia": null, "reactionVideos": [], @@ -277341,7 +276841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2578081, "featuredRunMedia": null, "reactionVideos": [], @@ -277361,7 +276861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 2581519, "featuredRunMedia": null, "reactionVideos": [], @@ -277381,7 +276881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 2581598, "featuredRunMedia": null, "reactionVideos": [], @@ -277401,7 +276901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "144223", "time": 2582679, "featuredRunMedia": null, "reactionVideos": [], @@ -277421,7 +276921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "144380", "time": 2583293, "featuredRunMedia": null, "reactionVideos": [], @@ -277441,7 +276941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 2583429, "featuredRunMedia": null, "reactionVideos": [], @@ -277461,7 +276961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 2583576, "featuredRunMedia": null, "reactionVideos": [], @@ -277481,7 +276981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 2584418, "featuredRunMedia": null, "reactionVideos": [], @@ -277501,7 +277001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 2585002, "featuredRunMedia": null, "reactionVideos": [], @@ -277521,7 +277021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 2585714, "featuredRunMedia": null, "reactionVideos": [], @@ -277541,7 +277041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2593572, "featuredRunMedia": null, "reactionVideos": [], @@ -277561,7 +277061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 2594576, "featuredRunMedia": null, "reactionVideos": [], @@ -277581,7 +277081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 2595914, "featuredRunMedia": null, "reactionVideos": [], @@ -277601,7 +277101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "144150", "time": 2598640, "featuredRunMedia": null, "reactionVideos": [], @@ -277621,7 +277121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 2599029, "featuredRunMedia": null, "reactionVideos": [], @@ -277641,7 +277141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "144362", "time": 2606448, "featuredRunMedia": null, "reactionVideos": [], @@ -277661,7 +277161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 2608334, "featuredRunMedia": null, "reactionVideos": [], @@ -277681,7 +277181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "144408", "time": 2614095, "featuredRunMedia": null, "reactionVideos": [], @@ -277701,7 +277201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "144079", "time": 2618081, "featuredRunMedia": null, "reactionVideos": [], @@ -277721,7 +277221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 2619068, "featuredRunMedia": null, "reactionVideos": [], @@ -277741,7 +277241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 2619980, "featuredRunMedia": null, "reactionVideos": [], @@ -277761,7 +277261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 2620874, "featuredRunMedia": null, "reactionVideos": [], @@ -277781,7 +277281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2621632, "featuredRunMedia": null, "reactionVideos": [], @@ -277801,7 +277301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 2622804, "featuredRunMedia": null, "reactionVideos": [], @@ -277821,7 +277321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 2623026, "featuredRunMedia": null, "reactionVideos": [], @@ -277841,7 +277341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2625975, "featuredRunMedia": null, "reactionVideos": [], @@ -277861,7 +277361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 2628107, "featuredRunMedia": null, "reactionVideos": [], @@ -277881,7 +277381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 2628503, "featuredRunMedia": null, "reactionVideos": [], @@ -277901,7 +277401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "144365", "time": 2629667, "featuredRunMedia": null, "reactionVideos": [], @@ -277921,7 +277421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 425, + "teamId": "144495", "time": 2632540, "featuredRunMedia": null, "reactionVideos": [], @@ -277941,7 +277441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 2634030, "featuredRunMedia": null, "reactionVideos": [], @@ -277961,7 +277461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 2635234, "featuredRunMedia": null, "reactionVideos": [], @@ -277981,7 +277481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 2635435, "featuredRunMedia": null, "reactionVideos": [], @@ -278001,7 +277501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 2636356, "featuredRunMedia": null, "reactionVideos": [], @@ -278021,7 +277521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2638508, "featuredRunMedia": null, "reactionVideos": [], @@ -278041,7 +277541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 2639347, "featuredRunMedia": null, "reactionVideos": [], @@ -278061,7 +277561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2639576, "featuredRunMedia": null, "reactionVideos": [], @@ -278081,7 +277581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 2639607, "featuredRunMedia": null, "reactionVideos": [], @@ -278101,7 +277601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 2640712, "featuredRunMedia": null, "reactionVideos": [], @@ -278121,7 +277621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2643459, "featuredRunMedia": null, "reactionVideos": [], @@ -278141,7 +277641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 2645940, "featuredRunMedia": null, "reactionVideos": [], @@ -278161,7 +277661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 2646900, "featuredRunMedia": null, "reactionVideos": [], @@ -278181,7 +277681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2649567, "featuredRunMedia": null, "reactionVideos": [], @@ -278201,7 +277701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 2651124, "featuredRunMedia": null, "reactionVideos": [], @@ -278221,7 +277721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 2653723, "featuredRunMedia": null, "reactionVideos": [], @@ -278241,7 +277741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 2654408, "featuredRunMedia": null, "reactionVideos": [], @@ -278261,7 +277761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 2659933, "featuredRunMedia": null, "reactionVideos": [], @@ -278281,7 +277781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 2660752, "featuredRunMedia": null, "reactionVideos": [], @@ -278301,7 +277801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 2661547, "featuredRunMedia": null, "reactionVideos": [], @@ -278321,7 +277821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "144374", "time": 2662403, "featuredRunMedia": null, "reactionVideos": [], @@ -278341,7 +277841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 281, + "teamId": "144351", "time": 2663923, "featuredRunMedia": null, "reactionVideos": [], @@ -278361,7 +277861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 2665505, "featuredRunMedia": null, "reactionVideos": [], @@ -278381,7 +277881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "144316", "time": 2667962, "featuredRunMedia": null, "reactionVideos": [], @@ -278401,7 +277901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2668275, "featuredRunMedia": null, "reactionVideos": [], @@ -278421,7 +277921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 2669708, "featuredRunMedia": null, "reactionVideos": [], @@ -278441,7 +277941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 2670709, "featuredRunMedia": null, "reactionVideos": [], @@ -278461,7 +277961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "144184", "time": 2671169, "featuredRunMedia": null, "reactionVideos": [], @@ -278481,7 +277981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "144310", "time": 2672101, "featuredRunMedia": null, "reactionVideos": [], @@ -278501,7 +278001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 2672174, "featuredRunMedia": null, "reactionVideos": [], @@ -278521,7 +278021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "144104", "time": 2675560, "featuredRunMedia": null, "reactionVideos": [], @@ -278541,7 +278041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 2675869, "featuredRunMedia": null, "reactionVideos": [], @@ -278561,7 +278061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "144383", "time": 2678862, "featuredRunMedia": null, "reactionVideos": [], @@ -278581,7 +278081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 2679091, "featuredRunMedia": null, "reactionVideos": [], @@ -278601,7 +278101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 408, + "teamId": "144478", "time": 2679324, "featuredRunMedia": null, "reactionVideos": [], @@ -278621,7 +278121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 2679624, "featuredRunMedia": null, "reactionVideos": [], @@ -278641,7 +278141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 2679649, "featuredRunMedia": null, "reactionVideos": [], @@ -278661,7 +278161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "144328", "time": 2681489, "featuredRunMedia": null, "reactionVideos": [], @@ -278681,7 +278181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 2681911, "featuredRunMedia": null, "reactionVideos": [], @@ -278701,7 +278201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 2683348, "featuredRunMedia": null, "reactionVideos": [], @@ -278721,7 +278221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "144232", "time": 2687285, "featuredRunMedia": null, "reactionVideos": [], @@ -278741,7 +278241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 2697162, "featuredRunMedia": null, "reactionVideos": [], @@ -278761,7 +278261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 2699601, "featuredRunMedia": null, "reactionVideos": [], @@ -278781,7 +278281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 2701471, "featuredRunMedia": null, "reactionVideos": [], @@ -278801,7 +278301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "144299", "time": 2702022, "featuredRunMedia": null, "reactionVideos": [], @@ -278821,7 +278321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2704433, "featuredRunMedia": null, "reactionVideos": [], @@ -278841,7 +278341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 2704529, "featuredRunMedia": null, "reactionVideos": [], @@ -278861,7 +278361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2704617, "featuredRunMedia": null, "reactionVideos": [], @@ -278881,7 +278381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 2705003, "featuredRunMedia": null, "reactionVideos": [], @@ -278901,7 +278401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 2705035, "featuredRunMedia": null, "reactionVideos": [], @@ -278921,7 +278421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 420, + "teamId": "144490", "time": 2707764, "featuredRunMedia": null, "reactionVideos": [], @@ -278941,7 +278441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "144156", "time": 2713647, "featuredRunMedia": null, "reactionVideos": [], @@ -278961,7 +278461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 2720005, "featuredRunMedia": null, "reactionVideos": [], @@ -278981,7 +278481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 2720062, "featuredRunMedia": null, "reactionVideos": [], @@ -279001,7 +278501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 2721652, "featuredRunMedia": null, "reactionVideos": [], @@ -279021,7 +278521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 2726206, "featuredRunMedia": null, "reactionVideos": [], @@ -279041,7 +278541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 2726636, "featuredRunMedia": null, "reactionVideos": [], @@ -279061,7 +278561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 2727440, "featuredRunMedia": null, "reactionVideos": [], @@ -279081,7 +278581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 2729220, "featuredRunMedia": null, "reactionVideos": [], @@ -279101,7 +278601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2732452, "featuredRunMedia": null, "reactionVideos": [], @@ -279121,7 +278621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 2737081, "featuredRunMedia": null, "reactionVideos": [], @@ -279141,7 +278641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 2738731, "featuredRunMedia": null, "reactionVideos": [], @@ -279161,7 +278661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 436, + "teamId": "144506", "time": 2739900, "featuredRunMedia": null, "reactionVideos": [], @@ -279181,7 +278681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 2741202, "featuredRunMedia": null, "reactionVideos": [], @@ -279201,7 +278701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 2742403, "featuredRunMedia": null, "reactionVideos": [], @@ -279221,7 +278721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 2745558, "featuredRunMedia": null, "reactionVideos": [], @@ -279241,7 +278741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 2748366, "featuredRunMedia": null, "reactionVideos": [], @@ -279261,7 +278761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "144409", "time": 2749125, "featuredRunMedia": null, "reactionVideos": [], @@ -279285,7 +278785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2749405, "featuredRunMedia": null, "reactionVideos": [], @@ -279305,7 +278805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 2749718, "featuredRunMedia": null, "reactionVideos": [], @@ -279325,7 +278825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 2750908, "featuredRunMedia": null, "reactionVideos": [], @@ -279345,7 +278845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 2751497, "featuredRunMedia": null, "reactionVideos": [], @@ -279365,7 +278865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 2751631, "featuredRunMedia": null, "reactionVideos": [], @@ -279385,7 +278885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2752707, "featuredRunMedia": null, "reactionVideos": [], @@ -279405,7 +278905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 2752990, "featuredRunMedia": null, "reactionVideos": [], @@ -279425,7 +278925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 2755057, "featuredRunMedia": null, "reactionVideos": [], @@ -279445,7 +278945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 2756784, "featuredRunMedia": null, "reactionVideos": [], @@ -279465,7 +278965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 2756816, "featuredRunMedia": null, "reactionVideos": [], @@ -279485,7 +278985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 2759043, "featuredRunMedia": null, "reactionVideos": [], @@ -279505,7 +279005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2760854, "featuredRunMedia": null, "reactionVideos": [], @@ -279525,7 +279025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 2761392, "featuredRunMedia": null, "reactionVideos": [], @@ -279545,7 +279045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 423, + "teamId": "144493", "time": 2762104, "featuredRunMedia": null, "reactionVideos": [], @@ -279565,7 +279065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 2767148, "featuredRunMedia": null, "reactionVideos": [], @@ -279585,7 +279085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 2767284, "featuredRunMedia": null, "reactionVideos": [], @@ -279605,7 +279105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "144205", "time": 2767985, "featuredRunMedia": null, "reactionVideos": [], @@ -279625,7 +279125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 2769349, "featuredRunMedia": null, "reactionVideos": [], @@ -279645,7 +279145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 2771391, "featuredRunMedia": null, "reactionVideos": [], @@ -279665,7 +279165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 2772159, "featuredRunMedia": null, "reactionVideos": [], @@ -279689,7 +279189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2772583, "featuredRunMedia": null, "reactionVideos": [], @@ -279709,7 +279209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 2775965, "featuredRunMedia": null, "reactionVideos": [], @@ -279729,7 +279229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 2776912, "featuredRunMedia": null, "reactionVideos": [], @@ -279749,7 +279249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 2778797, "featuredRunMedia": null, "reactionVideos": [], @@ -279769,7 +279269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 2779096, "featuredRunMedia": null, "reactionVideos": [], @@ -279789,7 +279289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 2779806, "featuredRunMedia": null, "reactionVideos": [], @@ -279809,7 +279309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 2779989, "featuredRunMedia": null, "reactionVideos": [], @@ -279829,7 +279329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 2781022, "featuredRunMedia": null, "reactionVideos": [], @@ -279849,7 +279349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 2781079, "featuredRunMedia": null, "reactionVideos": [], @@ -279869,7 +279369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 2781214, "featuredRunMedia": null, "reactionVideos": [], @@ -279889,7 +279389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 2784371, "featuredRunMedia": null, "reactionVideos": [], @@ -279909,7 +279409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 2786854, "featuredRunMedia": null, "reactionVideos": [], @@ -279929,7 +279429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 2789423, "featuredRunMedia": null, "reactionVideos": [], @@ -279949,7 +279449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2790704, "featuredRunMedia": null, "reactionVideos": [], @@ -279969,7 +279469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2792137, "featuredRunMedia": null, "reactionVideos": [], @@ -279989,7 +279489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2796462, "featuredRunMedia": null, "reactionVideos": [], @@ -280009,7 +279509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 2796775, "featuredRunMedia": null, "reactionVideos": [], @@ -280029,7 +279529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 445, + "teamId": "144515", "time": 2800498, "featuredRunMedia": null, "reactionVideos": [], @@ -280049,7 +279549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 163, + "teamId": "144233", "time": 2802873, "featuredRunMedia": null, "reactionVideos": [], @@ -280069,7 +279569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2804189, "featuredRunMedia": null, "reactionVideos": [], @@ -280089,7 +279589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 2804730, "featuredRunMedia": null, "reactionVideos": [], @@ -280109,7 +279609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 2805216, "featuredRunMedia": null, "reactionVideos": [], @@ -280129,7 +279629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 2805839, "featuredRunMedia": null, "reactionVideos": [], @@ -280149,7 +279649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 2811351, "featuredRunMedia": null, "reactionVideos": [], @@ -280169,7 +279669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 2814243, "featuredRunMedia": null, "reactionVideos": [], @@ -280189,7 +279689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 2816848, "featuredRunMedia": null, "reactionVideos": [], @@ -280209,7 +279709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2819142, "featuredRunMedia": null, "reactionVideos": [], @@ -280229,7 +279729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 2819255, "featuredRunMedia": null, "reactionVideos": [], @@ -280249,7 +279749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 2822561, "featuredRunMedia": null, "reactionVideos": [], @@ -280269,7 +279769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 2822891, "featuredRunMedia": null, "reactionVideos": [], @@ -280293,7 +279793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 2823711, "featuredRunMedia": null, "reactionVideos": [], @@ -280313,7 +279813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2825386, "featuredRunMedia": null, "reactionVideos": [], @@ -280333,7 +279833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2826480, "featuredRunMedia": null, "reactionVideos": [], @@ -280353,7 +279853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 425, + "teamId": "144495", "time": 2830341, "featuredRunMedia": null, "reactionVideos": [], @@ -280373,7 +279873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "144136", "time": 2830600, "featuredRunMedia": null, "reactionVideos": [], @@ -280393,7 +279893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 2832366, "featuredRunMedia": null, "reactionVideos": [], @@ -280413,7 +279913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 2834304, "featuredRunMedia": null, "reactionVideos": [], @@ -280433,7 +279933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 2834574, "featuredRunMedia": null, "reactionVideos": [], @@ -280453,7 +279953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 2837414, "featuredRunMedia": null, "reactionVideos": [], @@ -280473,7 +279973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 2837683, "featuredRunMedia": null, "reactionVideos": [], @@ -280493,7 +279993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 406, + "teamId": "144476", "time": 2838525, "featuredRunMedia": null, "reactionVideos": [], @@ -280513,7 +280013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 2838547, "featuredRunMedia": null, "reactionVideos": [], @@ -280533,7 +280033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "144383", "time": 2841103, "featuredRunMedia": null, "reactionVideos": [], @@ -280553,7 +280053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 2843699, "featuredRunMedia": null, "reactionVideos": [], @@ -280573,7 +280073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 2846720, "featuredRunMedia": null, "reactionVideos": [], @@ -280593,7 +280093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 2847313, "featuredRunMedia": null, "reactionVideos": [], @@ -280613,7 +280113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 2847547, "featuredRunMedia": null, "reactionVideos": [], @@ -280633,7 +280133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "144110", "time": 2848693, "featuredRunMedia": null, "reactionVideos": [], @@ -280653,7 +280153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 2849127, "featuredRunMedia": null, "reactionVideos": [], @@ -280673,7 +280173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 2851430, "featuredRunMedia": null, "reactionVideos": [], @@ -280693,7 +280193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 2854185, "featuredRunMedia": null, "reactionVideos": [], @@ -280713,7 +280213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 2855854, "featuredRunMedia": null, "reactionVideos": [], @@ -280733,7 +280233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 2859515, "featuredRunMedia": null, "reactionVideos": [], @@ -280753,7 +280253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2861494, "featuredRunMedia": null, "reactionVideos": [], @@ -280773,7 +280273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 2864546, "featuredRunMedia": null, "reactionVideos": [], @@ -280793,7 +280293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "144084", "time": 2866009, "featuredRunMedia": null, "reactionVideos": [], @@ -280813,7 +280313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "144333", "time": 2870365, "featuredRunMedia": null, "reactionVideos": [], @@ -280833,7 +280333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 2873106, "featuredRunMedia": null, "reactionVideos": [], @@ -280853,7 +280353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 2874681, "featuredRunMedia": null, "reactionVideos": [], @@ -280873,7 +280373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 2875875, "featuredRunMedia": null, "reactionVideos": [], @@ -280893,7 +280393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "144327", "time": 2878268, "featuredRunMedia": null, "reactionVideos": [], @@ -280913,7 +280413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 2879230, "featuredRunMedia": null, "reactionVideos": [], @@ -280933,7 +280433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 2880957, "featuredRunMedia": null, "reactionVideos": [], @@ -280953,7 +280453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 2883869, "featuredRunMedia": null, "reactionVideos": [], @@ -280973,7 +280473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 2884724, "featuredRunMedia": null, "reactionVideos": [], @@ -280993,7 +280493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 2885726, "featuredRunMedia": null, "reactionVideos": [], @@ -281013,7 +280513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 281, + "teamId": "144351", "time": 2887138, "featuredRunMedia": null, "reactionVideos": [], @@ -281033,7 +280533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "144383", "time": 2887694, "featuredRunMedia": null, "reactionVideos": [], @@ -281053,7 +280553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 2890985, "featuredRunMedia": null, "reactionVideos": [], @@ -281073,7 +280573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 2893026, "featuredRunMedia": null, "reactionVideos": [], @@ -281093,7 +280593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "144377", "time": 2896646, "featuredRunMedia": null, "reactionVideos": [], @@ -281113,7 +280613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 2897665, "featuredRunMedia": null, "reactionVideos": [], @@ -281133,7 +280633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 317, + "teamId": "144387", "time": 2900034, "featuredRunMedia": null, "reactionVideos": [], @@ -281153,7 +280653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 2901089, "featuredRunMedia": null, "reactionVideos": [], @@ -281173,7 +280673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "144188", "time": 2901739, "featuredRunMedia": null, "reactionVideos": [], @@ -281193,7 +280693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 2901954, "featuredRunMedia": null, "reactionVideos": [], @@ -281213,7 +280713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 2903733, "featuredRunMedia": null, "reactionVideos": [], @@ -281233,7 +280733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "144274", "time": 2905567, "featuredRunMedia": null, "reactionVideos": [], @@ -281253,7 +280753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 2907393, "featuredRunMedia": null, "reactionVideos": [], @@ -281273,7 +280773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 2908886, "featuredRunMedia": null, "reactionVideos": [], @@ -281293,7 +280793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 2909334, "featuredRunMedia": null, "reactionVideos": [], @@ -281313,7 +280813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 2912950, "featuredRunMedia": null, "reactionVideos": [], @@ -281333,7 +280833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 2916285, "featuredRunMedia": null, "reactionVideos": [], @@ -281353,7 +280853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2916392, "featuredRunMedia": null, "reactionVideos": [], @@ -281377,7 +280877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 2917461, "featuredRunMedia": null, "reactionVideos": [], @@ -281397,7 +280897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 2918938, "featuredRunMedia": null, "reactionVideos": [], @@ -281417,7 +280917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 2919120, "featuredRunMedia": null, "reactionVideos": [], @@ -281437,7 +280937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 2919770, "featuredRunMedia": null, "reactionVideos": [], @@ -281457,7 +280957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 2926893, "featuredRunMedia": null, "reactionVideos": [], @@ -281477,7 +280977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 2929406, "featuredRunMedia": null, "reactionVideos": [], @@ -281497,7 +280997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 134, + "teamId": "144204", "time": 2930899, "featuredRunMedia": null, "reactionVideos": [], @@ -281517,7 +281017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 2932905, "featuredRunMedia": null, "reactionVideos": [], @@ -281537,7 +281037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 2933747, "featuredRunMedia": null, "reactionVideos": [], @@ -281557,7 +281057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 2936063, "featuredRunMedia": null, "reactionVideos": [], @@ -281577,7 +281077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 2938100, "featuredRunMedia": null, "reactionVideos": [], @@ -281597,7 +281097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "144104", "time": 2941111, "featuredRunMedia": null, "reactionVideos": [], @@ -281617,7 +281117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 2941676, "featuredRunMedia": null, "reactionVideos": [], @@ -281637,7 +281137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 2944447, "featuredRunMedia": null, "reactionVideos": [], @@ -281657,7 +281157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 2949323, "featuredRunMedia": null, "reactionVideos": [], @@ -281677,7 +281177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 2951435, "featuredRunMedia": null, "reactionVideos": [], @@ -281697,7 +281197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 318, + "teamId": "144388", "time": 2954890, "featuredRunMedia": null, "reactionVideos": [], @@ -281717,7 +281217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 2957383, "featuredRunMedia": null, "reactionVideos": [], @@ -281737,7 +281237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 2957688, "featuredRunMedia": null, "reactionVideos": [], @@ -281757,7 +281257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 2962872, "featuredRunMedia": null, "reactionVideos": [], @@ -281777,7 +281277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 2963016, "featuredRunMedia": null, "reactionVideos": [], @@ -281797,7 +281297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 2964676, "featuredRunMedia": null, "reactionVideos": [], @@ -281817,7 +281317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 2966198, "featuredRunMedia": null, "reactionVideos": [], @@ -281837,7 +281337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 2968886, "featuredRunMedia": null, "reactionVideos": [], @@ -281857,7 +281357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 2970730, "featuredRunMedia": null, "reactionVideos": [], @@ -281877,7 +281377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 2971235, "featuredRunMedia": null, "reactionVideos": [], @@ -281897,7 +281397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 2974053, "featuredRunMedia": null, "reactionVideos": [], @@ -281921,7 +281421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 2974424, "featuredRunMedia": null, "reactionVideos": [], @@ -281941,7 +281441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 2974516, "featuredRunMedia": null, "reactionVideos": [], @@ -281961,7 +281461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 148, + "teamId": "144218", "time": 2975406, "featuredRunMedia": null, "reactionVideos": [], @@ -281981,7 +281481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 2976455, "featuredRunMedia": null, "reactionVideos": [], @@ -282001,7 +281501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "144101", "time": 2981412, "featuredRunMedia": null, "reactionVideos": [], @@ -282021,7 +281521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 2983023, "featuredRunMedia": null, "reactionVideos": [], @@ -282041,7 +281541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 10, + "teamId": "144080", "time": 2985934, "featuredRunMedia": null, "reactionVideos": [], @@ -282061,7 +281561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 2989982, "featuredRunMedia": null, "reactionVideos": [], @@ -282081,7 +281581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 2990464, "featuredRunMedia": null, "reactionVideos": [], @@ -282101,7 +281601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "144111", "time": 2992085, "featuredRunMedia": null, "reactionVideos": [], @@ -282121,7 +281621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 2996154, "featuredRunMedia": null, "reactionVideos": [], @@ -282141,7 +281641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 2997010, "featuredRunMedia": null, "reactionVideos": [], @@ -282161,7 +281661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 2997445, "featuredRunMedia": null, "reactionVideos": [], @@ -282181,7 +281681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 2997671, "featuredRunMedia": null, "reactionVideos": [], @@ -282201,7 +281701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 2998365, "featuredRunMedia": null, "reactionVideos": [], @@ -282221,7 +281721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3002187, "featuredRunMedia": null, "reactionVideos": [], @@ -282241,7 +281741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 3002505, "featuredRunMedia": null, "reactionVideos": [], @@ -282261,7 +281761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 3002659, "featuredRunMedia": null, "reactionVideos": [], @@ -282281,7 +281781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 3003247, "featuredRunMedia": null, "reactionVideos": [], @@ -282301,7 +281801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3006770, "featuredRunMedia": null, "reactionVideos": [], @@ -282321,7 +281821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 3007645, "featuredRunMedia": null, "reactionVideos": [], @@ -282341,7 +281841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 3010748, "featuredRunMedia": null, "reactionVideos": [], @@ -282361,7 +281861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "144362", "time": 3013539, "featuredRunMedia": null, "reactionVideos": [], @@ -282381,7 +281881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 3016915, "featuredRunMedia": null, "reactionVideos": [], @@ -282401,7 +281901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3017067, "featuredRunMedia": null, "reactionVideos": [], @@ -282421,7 +281921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "144292", "time": 3018328, "featuredRunMedia": null, "reactionVideos": [], @@ -282441,7 +281941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 3021363, "featuredRunMedia": null, "reactionVideos": [], @@ -282461,7 +281961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 3022783, "featuredRunMedia": null, "reactionVideos": [], @@ -282481,7 +281981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "144326", "time": 3023907, "featuredRunMedia": null, "reactionVideos": [], @@ -282501,7 +282001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "144156", "time": 3025626, "featuredRunMedia": null, "reactionVideos": [], @@ -282521,7 +282021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "144073", "time": 3033714, "featuredRunMedia": null, "reactionVideos": [], @@ -282541,7 +282041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 254, + "teamId": "144324", "time": 3033771, "featuredRunMedia": null, "reactionVideos": [], @@ -282561,7 +282061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "144380", "time": 3036362, "featuredRunMedia": null, "reactionVideos": [], @@ -282581,7 +282081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 3037710, "featuredRunMedia": null, "reactionVideos": [], @@ -282601,7 +282101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 3042158, "featuredRunMedia": null, "reactionVideos": [], @@ -282621,7 +282121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 3050648, "featuredRunMedia": null, "reactionVideos": [], @@ -282641,7 +282141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3051643, "featuredRunMedia": null, "reactionVideos": [], @@ -282661,7 +282161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 3056243, "featuredRunMedia": null, "reactionVideos": [], @@ -282681,7 +282181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3057593, "featuredRunMedia": null, "reactionVideos": [], @@ -282701,7 +282201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 3058491, "featuredRunMedia": null, "reactionVideos": [], @@ -282721,7 +282221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 3059238, "featuredRunMedia": null, "reactionVideos": [], @@ -282741,7 +282241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 3059368, "featuredRunMedia": null, "reactionVideos": [], @@ -282761,7 +282261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "144134", "time": 3059460, "featuredRunMedia": null, "reactionVideos": [], @@ -282781,7 +282281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3060419, "featuredRunMedia": null, "reactionVideos": [], @@ -282801,7 +282301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "144316", "time": 3068102, "featuredRunMedia": null, "reactionVideos": [], @@ -282821,7 +282321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 3069895, "featuredRunMedia": null, "reactionVideos": [], @@ -282845,7 +282345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 3073963, "featuredRunMedia": null, "reactionVideos": [], @@ -282865,7 +282365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 3074228, "featuredRunMedia": null, "reactionVideos": [], @@ -282885,7 +282385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 3075492, "featuredRunMedia": null, "reactionVideos": [], @@ -282905,7 +282405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 3078137, "featuredRunMedia": null, "reactionVideos": [], @@ -282925,7 +282425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 3081239, "featuredRunMedia": null, "reactionVideos": [], @@ -282945,7 +282445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 3083175, "featuredRunMedia": null, "reactionVideos": [], @@ -282965,7 +282465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 3083747, "featuredRunMedia": null, "reactionVideos": [], @@ -282985,7 +282485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 3086681, "featuredRunMedia": null, "reactionVideos": [], @@ -283005,7 +282505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 3088702, "featuredRunMedia": null, "reactionVideos": [], @@ -283025,7 +282525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "144312", "time": 3092112, "featuredRunMedia": null, "reactionVideos": [], @@ -283045,7 +282545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 3092691, "featuredRunMedia": null, "reactionVideos": [], @@ -283065,7 +282565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "144376", "time": 3093159, "featuredRunMedia": null, "reactionVideos": [], @@ -283085,7 +282585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 3096326, "featuredRunMedia": null, "reactionVideos": [], @@ -283105,7 +282605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3096380, "featuredRunMedia": null, "reactionVideos": [], @@ -283125,7 +282625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 3096709, "featuredRunMedia": null, "reactionVideos": [], @@ -283145,7 +282645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 3097216, "featuredRunMedia": null, "reactionVideos": [], @@ -283165,7 +282665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "144186", "time": 3097315, "featuredRunMedia": null, "reactionVideos": [], @@ -283185,7 +282685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3097844, "featuredRunMedia": null, "reactionVideos": [], @@ -283205,7 +282705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 3103591, "featuredRunMedia": null, "reactionVideos": [], @@ -283225,7 +282725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 3104008, "featuredRunMedia": null, "reactionVideos": [], @@ -283245,7 +282745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 3105544, "featuredRunMedia": null, "reactionVideos": [], @@ -283265,7 +282765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 3105983, "featuredRunMedia": null, "reactionVideos": [], @@ -283285,7 +282785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 3106070, "featuredRunMedia": null, "reactionVideos": [], @@ -283305,7 +282805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 3107590, "featuredRunMedia": null, "reactionVideos": [], @@ -283325,7 +282825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 281, + "teamId": "144351", "time": 3109238, "featuredRunMedia": null, "reactionVideos": [], @@ -283345,7 +282845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 3110874, "featuredRunMedia": null, "reactionVideos": [], @@ -283365,7 +282865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3113629, "featuredRunMedia": null, "reactionVideos": [], @@ -283385,7 +282885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 3117338, "featuredRunMedia": null, "reactionVideos": [], @@ -283405,7 +282905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 3120629, "featuredRunMedia": null, "reactionVideos": [], @@ -283425,7 +282925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 3123154, "featuredRunMedia": null, "reactionVideos": [], @@ -283445,7 +282945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 3125846, "featuredRunMedia": null, "reactionVideos": [], @@ -283465,7 +282965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 3127821, "featuredRunMedia": null, "reactionVideos": [], @@ -283485,7 +282985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 3128247, "featuredRunMedia": null, "reactionVideos": [], @@ -283505,7 +283005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "144331", "time": 3129280, "featuredRunMedia": null, "reactionVideos": [], @@ -283525,7 +283025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3129597, "featuredRunMedia": null, "reactionVideos": [], @@ -283545,7 +283045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 3131483, "featuredRunMedia": null, "reactionVideos": [], @@ -283565,7 +283065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "144336", "time": 3132659, "featuredRunMedia": null, "reactionVideos": [], @@ -283585,7 +283085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "144282", "time": 3133609, "featuredRunMedia": null, "reactionVideos": [], @@ -283605,7 +283105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 3135630, "featuredRunMedia": null, "reactionVideos": [], @@ -283625,7 +283125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "144170", "time": 3136562, "featuredRunMedia": null, "reactionVideos": [], @@ -283645,7 +283145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 11, + "teamId": "144081", "time": 3137884, "featuredRunMedia": null, "reactionVideos": [], @@ -283665,7 +283165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 3140047, "featuredRunMedia": null, "reactionVideos": [], @@ -283685,7 +283185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "144167", "time": 3141959, "featuredRunMedia": null, "reactionVideos": [], @@ -283705,7 +283205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "144127", "time": 3143217, "featuredRunMedia": null, "reactionVideos": [], @@ -283725,7 +283225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 3143647, "featuredRunMedia": null, "reactionVideos": [], @@ -283745,7 +283245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 3145588, "featuredRunMedia": null, "reactionVideos": [], @@ -283765,7 +283265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "144198", "time": 3145801, "featuredRunMedia": null, "reactionVideos": [], @@ -283785,7 +283285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3148153, "featuredRunMedia": null, "reactionVideos": [], @@ -283805,7 +283305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 3149143, "featuredRunMedia": null, "reactionVideos": [], @@ -283825,7 +283325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 3149727, "featuredRunMedia": null, "reactionVideos": [], @@ -283845,7 +283345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "144375", "time": 3152135, "featuredRunMedia": null, "reactionVideos": [], @@ -283865,7 +283365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "144230", "time": 3153365, "featuredRunMedia": null, "reactionVideos": [], @@ -283885,7 +283385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 3154496, "featuredRunMedia": null, "reactionVideos": [], @@ -283905,7 +283405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 3157249, "featuredRunMedia": null, "reactionVideos": [], @@ -283925,7 +283425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 3158249, "featuredRunMedia": null, "reactionVideos": [], @@ -283945,7 +283445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 3159924, "featuredRunMedia": null, "reactionVideos": [], @@ -283965,7 +283465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 3164170, "featuredRunMedia": null, "reactionVideos": [], @@ -283985,7 +283485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 3164611, "featuredRunMedia": null, "reactionVideos": [], @@ -284005,7 +283505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 3169316, "featuredRunMedia": null, "reactionVideos": [], @@ -284025,7 +283525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 3169780, "featuredRunMedia": null, "reactionVideos": [], @@ -284045,7 +283545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 3170557, "featuredRunMedia": null, "reactionVideos": [], @@ -284065,7 +283565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 3171337, "featuredRunMedia": null, "reactionVideos": [], @@ -284085,7 +283585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 3171432, "featuredRunMedia": null, "reactionVideos": [], @@ -284105,7 +283605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 3174062, "featuredRunMedia": null, "reactionVideos": [], @@ -284125,7 +283625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 3175747, "featuredRunMedia": null, "reactionVideos": [], @@ -284145,7 +283645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 3181437, "featuredRunMedia": null, "reactionVideos": [], @@ -284165,7 +283665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 3181484, "featuredRunMedia": null, "reactionVideos": [], @@ -284185,7 +283685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 3182513, "featuredRunMedia": null, "reactionVideos": [], @@ -284205,7 +283705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3184388, "featuredRunMedia": null, "reactionVideos": [], @@ -284225,7 +283725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 3186791, "featuredRunMedia": null, "reactionVideos": [], @@ -284245,7 +283745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 3188653, "featuredRunMedia": null, "reactionVideos": [], @@ -284265,7 +283765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 3189304, "featuredRunMedia": null, "reactionVideos": [], @@ -284285,7 +283785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 3189336, "featuredRunMedia": null, "reactionVideos": [], @@ -284305,7 +283805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 276, + "teamId": "144346", "time": 3191804, "featuredRunMedia": null, "reactionVideos": [], @@ -284325,7 +283825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 3191958, "featuredRunMedia": null, "reactionVideos": [], @@ -284345,7 +283845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 3196507, "featuredRunMedia": null, "reactionVideos": [], @@ -284365,7 +283865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 3200064, "featuredRunMedia": null, "reactionVideos": [], @@ -284385,7 +283885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 3201321, "featuredRunMedia": null, "reactionVideos": [], @@ -284405,7 +283905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "144363", "time": 3203596, "featuredRunMedia": null, "reactionVideos": [], @@ -284425,7 +283925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 3206582, "featuredRunMedia": null, "reactionVideos": [], @@ -284445,7 +283945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "144208", "time": 3207012, "featuredRunMedia": null, "reactionVideos": [], @@ -284469,7 +283969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 3208572, "featuredRunMedia": null, "reactionVideos": [], @@ -284489,7 +283989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 3210576, "featuredRunMedia": null, "reactionVideos": [], @@ -284513,7 +284013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 3212335, "featuredRunMedia": null, "reactionVideos": [], @@ -284533,7 +284033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3215936, "featuredRunMedia": null, "reactionVideos": [], @@ -284553,7 +284053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 82, + "teamId": "144152", "time": 3218122, "featuredRunMedia": null, "reactionVideos": [], @@ -284573,7 +284073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3221160, "featuredRunMedia": null, "reactionVideos": [], @@ -284593,7 +284093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "144316", "time": 3221605, "featuredRunMedia": null, "reactionVideos": [], @@ -284613,7 +284113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 3222270, "featuredRunMedia": null, "reactionVideos": [], @@ -284633,7 +284133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 3225050, "featuredRunMedia": null, "reactionVideos": [], @@ -284653,7 +284153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 3227732, "featuredRunMedia": null, "reactionVideos": [], @@ -284673,7 +284173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 3227882, "featuredRunMedia": null, "reactionVideos": [], @@ -284693,7 +284193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 3228574, "featuredRunMedia": null, "reactionVideos": [], @@ -284713,7 +284213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3228669, "featuredRunMedia": null, "reactionVideos": [], @@ -284733,7 +284233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 3230486, "featuredRunMedia": null, "reactionVideos": [], @@ -284753,7 +284253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 3233466, "featuredRunMedia": null, "reactionVideos": [], @@ -284773,7 +284273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 3233622, "featuredRunMedia": null, "reactionVideos": [], @@ -284793,7 +284293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3236376, "featuredRunMedia": null, "reactionVideos": [], @@ -284813,7 +284313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "144150", "time": 3236940, "featuredRunMedia": null, "reactionVideos": [], @@ -284833,7 +284333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3240092, "featuredRunMedia": null, "reactionVideos": [], @@ -284853,7 +284353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3241679, "featuredRunMedia": null, "reactionVideos": [], @@ -284873,7 +284373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 3242158, "featuredRunMedia": null, "reactionVideos": [], @@ -284893,7 +284393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 3243114, "featuredRunMedia": null, "reactionVideos": [], @@ -284913,7 +284413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 3243352, "featuredRunMedia": null, "reactionVideos": [], @@ -284933,7 +284433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 3244862, "featuredRunMedia": null, "reactionVideos": [], @@ -284953,7 +284453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "144374", "time": 3246043, "featuredRunMedia": null, "reactionVideos": [], @@ -284973,7 +284473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "144264", "time": 3247187, "featuredRunMedia": null, "reactionVideos": [], @@ -284993,7 +284493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3247486, "featuredRunMedia": null, "reactionVideos": [], @@ -285013,7 +284513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 3249822, "featuredRunMedia": null, "reactionVideos": [], @@ -285033,7 +284533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "144376", "time": 3250827, "featuredRunMedia": null, "reactionVideos": [], @@ -285053,7 +284553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 425, + "teamId": "144495", "time": 3254080, "featuredRunMedia": null, "reactionVideos": [], @@ -285073,7 +284573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 3254470, "featuredRunMedia": null, "reactionVideos": [], @@ -285093,7 +284593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 3254969, "featuredRunMedia": null, "reactionVideos": [], @@ -285113,7 +284613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 3255169, "featuredRunMedia": null, "reactionVideos": [], @@ -285133,7 +284633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 3257116, "featuredRunMedia": null, "reactionVideos": [], @@ -285153,7 +284653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 3257397, "featuredRunMedia": null, "reactionVideos": [], @@ -285173,7 +284673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 3257572, "featuredRunMedia": null, "reactionVideos": [], @@ -285193,7 +284693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 3258922, "featuredRunMedia": null, "reactionVideos": [], @@ -285213,7 +284713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "144190", "time": 3260495, "featuredRunMedia": null, "reactionVideos": [], @@ -285233,7 +284733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 3261514, "featuredRunMedia": null, "reactionVideos": [], @@ -285253,7 +284753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 3262070, "featuredRunMedia": null, "reactionVideos": [], @@ -285273,7 +284773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 3264200, "featuredRunMedia": null, "reactionVideos": [], @@ -285293,7 +284793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 3264918, "featuredRunMedia": null, "reactionVideos": [], @@ -285313,7 +284813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 3268519, "featuredRunMedia": null, "reactionVideos": [], @@ -285333,7 +284833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 3269317, "featuredRunMedia": null, "reactionVideos": [], @@ -285353,7 +284853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 432, + "teamId": "144502", "time": 3270798, "featuredRunMedia": null, "reactionVideos": [], @@ -285373,7 +284873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3272977, "featuredRunMedia": null, "reactionVideos": [], @@ -285393,7 +284893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 281, + "teamId": "144351", "time": 3274051, "featuredRunMedia": null, "reactionVideos": [], @@ -285413,7 +284913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 3278824, "featuredRunMedia": null, "reactionVideos": [], @@ -285433,7 +284933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 3279499, "featuredRunMedia": null, "reactionVideos": [], @@ -285453,7 +284953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 3280374, "featuredRunMedia": null, "reactionVideos": [], @@ -285473,7 +284973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 3280880, "featuredRunMedia": null, "reactionVideos": [], @@ -285493,7 +284993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3280917, "featuredRunMedia": null, "reactionVideos": [], @@ -285513,7 +285013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "144166", "time": 3284755, "featuredRunMedia": null, "reactionVideos": [], @@ -285533,7 +285033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3284928, "featuredRunMedia": null, "reactionVideos": [], @@ -285553,7 +285053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 3288342, "featuredRunMedia": null, "reactionVideos": [], @@ -285573,7 +285073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 411, + "teamId": "144481", "time": 3288750, "featuredRunMedia": null, "reactionVideos": [], @@ -285593,7 +285093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 3290255, "featuredRunMedia": null, "reactionVideos": [], @@ -285613,7 +285113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "144190", "time": 3292025, "featuredRunMedia": null, "reactionVideos": [], @@ -285633,7 +285133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 3292182, "featuredRunMedia": null, "reactionVideos": [], @@ -285653,7 +285153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 3293449, "featuredRunMedia": null, "reactionVideos": [], @@ -285677,7 +285177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 3295130, "featuredRunMedia": null, "reactionVideos": [], @@ -285697,7 +285197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "144154", "time": 3298113, "featuredRunMedia": null, "reactionVideos": [], @@ -285717,7 +285217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 3298528, "featuredRunMedia": null, "reactionVideos": [], @@ -285737,7 +285237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "144156", "time": 3298569, "featuredRunMedia": null, "reactionVideos": [], @@ -285757,7 +285257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "144257", "time": 3299999, "featuredRunMedia": null, "reactionVideos": [], @@ -285777,7 +285277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 3300184, "featuredRunMedia": null, "reactionVideos": [], @@ -285797,7 +285297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 3300988, "featuredRunMedia": null, "reactionVideos": [], @@ -285821,7 +285321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 3307904, "featuredRunMedia": null, "reactionVideos": [], @@ -285841,7 +285341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 3310331, "featuredRunMedia": null, "reactionVideos": [], @@ -285861,7 +285361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 3312181, "featuredRunMedia": null, "reactionVideos": [], @@ -285881,7 +285381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 3312617, "featuredRunMedia": null, "reactionVideos": [], @@ -285901,7 +285401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 3315346, "featuredRunMedia": null, "reactionVideos": [], @@ -285921,7 +285421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 3315960, "featuredRunMedia": null, "reactionVideos": [], @@ -285941,7 +285441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 3316051, "featuredRunMedia": null, "reactionVideos": [], @@ -285961,7 +285461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 3320653, "featuredRunMedia": null, "reactionVideos": [], @@ -285981,7 +285481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 3321720, "featuredRunMedia": null, "reactionVideos": [], @@ -286001,7 +285501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 3324460, "featuredRunMedia": null, "reactionVideos": [], @@ -286021,7 +285521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 3324833, "featuredRunMedia": null, "reactionVideos": [], @@ -286041,7 +285541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 407, + "teamId": "144477", "time": 3325207, "featuredRunMedia": null, "reactionVideos": [], @@ -286061,7 +285561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 3326001, "featuredRunMedia": null, "reactionVideos": [], @@ -286081,7 +285581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 3326597, "featuredRunMedia": null, "reactionVideos": [], @@ -286101,7 +285601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 3328244, "featuredRunMedia": null, "reactionVideos": [], @@ -286121,7 +285621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 3328990, "featuredRunMedia": null, "reactionVideos": [], @@ -286141,7 +285641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "144387", "time": 3329931, "featuredRunMedia": null, "reactionVideos": [], @@ -286161,7 +285661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 3333932, "featuredRunMedia": null, "reactionVideos": [], @@ -286181,7 +285681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 3335398, "featuredRunMedia": null, "reactionVideos": [], @@ -286201,7 +285701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "144362", "time": 3335676, "featuredRunMedia": null, "reactionVideos": [], @@ -286221,7 +285721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 3337025, "featuredRunMedia": null, "reactionVideos": [], @@ -286241,7 +285741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "144101", "time": 3338510, "featuredRunMedia": null, "reactionVideos": [], @@ -286261,7 +285761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 3338549, "featuredRunMedia": null, "reactionVideos": [], @@ -286281,7 +285781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 3344530, "featuredRunMedia": null, "reactionVideos": [], @@ -286301,7 +285801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 3346058, "featuredRunMedia": null, "reactionVideos": [], @@ -286321,7 +285821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 3346948, "featuredRunMedia": null, "reactionVideos": [], @@ -286341,7 +285841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "144184", "time": 3350023, "featuredRunMedia": null, "reactionVideos": [], @@ -286361,7 +285861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3351040, "featuredRunMedia": null, "reactionVideos": [], @@ -286381,7 +285881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "144126", "time": 3354628, "featuredRunMedia": null, "reactionVideos": [], @@ -286401,7 +285901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 3356333, "featuredRunMedia": null, "reactionVideos": [], @@ -286421,7 +285921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "144282", "time": 3360557, "featuredRunMedia": null, "reactionVideos": [], @@ -286441,7 +285941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 3363991, "featuredRunMedia": null, "reactionVideos": [], @@ -286461,7 +285961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 3364382, "featuredRunMedia": null, "reactionVideos": [], @@ -286481,7 +285981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 3365474, "featuredRunMedia": null, "reactionVideos": [], @@ -286501,7 +286001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 3367504, "featuredRunMedia": null, "reactionVideos": [], @@ -286521,7 +286021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 3370733, "featuredRunMedia": null, "reactionVideos": [], @@ -286541,7 +286041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 3370768, "featuredRunMedia": null, "reactionVideos": [], @@ -286565,7 +286065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 3378061, "featuredRunMedia": null, "reactionVideos": [], @@ -286585,7 +286085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 3378784, "featuredRunMedia": null, "reactionVideos": [], @@ -286605,7 +286105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 3383321, "featuredRunMedia": null, "reactionVideos": [], @@ -286625,7 +286125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 3383402, "featuredRunMedia": null, "reactionVideos": [], @@ -286649,7 +286149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 3384973, "featuredRunMedia": null, "reactionVideos": [], @@ -286669,7 +286169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 3385013, "featuredRunMedia": null, "reactionVideos": [], @@ -286689,7 +286189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3387142, "featuredRunMedia": null, "reactionVideos": [], @@ -286709,7 +286209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 3388005, "featuredRunMedia": null, "reactionVideos": [], @@ -286729,7 +286229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 3390601, "featuredRunMedia": null, "reactionVideos": [], @@ -286749,7 +286249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "144393", "time": 3391560, "featuredRunMedia": null, "reactionVideos": [], @@ -286769,7 +286269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 3392927, "featuredRunMedia": null, "reactionVideos": [], @@ -286789,7 +286289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 3393117, "featuredRunMedia": null, "reactionVideos": [], @@ -286809,7 +286309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 3393822, "featuredRunMedia": null, "reactionVideos": [], @@ -286829,7 +286329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 3394288, "featuredRunMedia": null, "reactionVideos": [], @@ -286849,7 +286349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 432, + "teamId": "144502", "time": 3395006, "featuredRunMedia": null, "reactionVideos": [], @@ -286869,7 +286369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 309, + "teamId": "144379", "time": 3395271, "featuredRunMedia": null, "reactionVideos": [], @@ -286889,7 +286389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 3395613, "featuredRunMedia": null, "reactionVideos": [], @@ -286909,7 +286409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "144287", "time": 3397360, "featuredRunMedia": null, "reactionVideos": [], @@ -286929,7 +286429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 3397706, "featuredRunMedia": null, "reactionVideos": [], @@ -286949,7 +286449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 3399444, "featuredRunMedia": null, "reactionVideos": [], @@ -286969,7 +286469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 383, + "teamId": "144453", "time": 3399638, "featuredRunMedia": null, "reactionVideos": [], @@ -286989,7 +286489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 3402157, "featuredRunMedia": null, "reactionVideos": [], @@ -287009,7 +286509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 3403199, "featuredRunMedia": null, "reactionVideos": [], @@ -287029,7 +286529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 3407194, "featuredRunMedia": null, "reactionVideos": [], @@ -287049,7 +286549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "144188", "time": 3407850, "featuredRunMedia": null, "reactionVideos": [], @@ -287069,7 +286569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 3408823, "featuredRunMedia": null, "reactionVideos": [], @@ -287089,7 +286589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 3412503, "featuredRunMedia": null, "reactionVideos": [], @@ -287109,7 +286609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3413973, "featuredRunMedia": null, "reactionVideos": [], @@ -287129,7 +286629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 3414554, "featuredRunMedia": null, "reactionVideos": [], @@ -287149,7 +286649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 3414889, "featuredRunMedia": null, "reactionVideos": [], @@ -287169,7 +286669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 3417645, "featuredRunMedia": null, "reactionVideos": [], @@ -287189,7 +286689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 3418116, "featuredRunMedia": null, "reactionVideos": [], @@ -287209,7 +286709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "144267", "time": 3422516, "featuredRunMedia": null, "reactionVideos": [], @@ -287229,7 +286729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "144205", "time": 3422688, "featuredRunMedia": null, "reactionVideos": [], @@ -287249,7 +286749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "144361", "time": 3424566, "featuredRunMedia": null, "reactionVideos": [], @@ -287269,7 +286769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "144376", "time": 3428629, "featuredRunMedia": null, "reactionVideos": [], @@ -287289,7 +286789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 3429085, "featuredRunMedia": null, "reactionVideos": [], @@ -287309,7 +286809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 3430788, "featuredRunMedia": null, "reactionVideos": [], @@ -287329,7 +286829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "144190", "time": 3432797, "featuredRunMedia": null, "reactionVideos": [], @@ -287349,7 +286849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 3433805, "featuredRunMedia": null, "reactionVideos": [], @@ -287369,7 +286869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 3436335, "featuredRunMedia": null, "reactionVideos": [], @@ -287389,7 +286889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 404, + "teamId": "144474", "time": 3438897, "featuredRunMedia": null, "reactionVideos": [], @@ -287409,7 +286909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3438932, "featuredRunMedia": null, "reactionVideos": [], @@ -287429,7 +286929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 3439745, "featuredRunMedia": null, "reactionVideos": [], @@ -287449,7 +286949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 3440057, "featuredRunMedia": null, "reactionVideos": [], @@ -287469,7 +286969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 432, + "teamId": "144502", "time": 3440388, "featuredRunMedia": null, "reactionVideos": [], @@ -287489,7 +286989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 3442120, "featuredRunMedia": null, "reactionVideos": [], @@ -287509,7 +287009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 3443641, "featuredRunMedia": null, "reactionVideos": [], @@ -287529,7 +287029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 3447372, "featuredRunMedia": null, "reactionVideos": [], @@ -287549,7 +287049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 3447629, "featuredRunMedia": null, "reactionVideos": [], @@ -287569,7 +287069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 3450956, "featuredRunMedia": null, "reactionVideos": [], @@ -287589,7 +287089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 317, + "teamId": "144387", "time": 3458180, "featuredRunMedia": null, "reactionVideos": [], @@ -287609,7 +287109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 3458584, "featuredRunMedia": null, "reactionVideos": [], @@ -287629,7 +287129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 369, + "teamId": "144439", "time": 3458623, "featuredRunMedia": null, "reactionVideos": [], @@ -287649,7 +287149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 3459201, "featuredRunMedia": null, "reactionVideos": [], @@ -287669,7 +287169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "144320", "time": 3460987, "featuredRunMedia": null, "reactionVideos": [], @@ -287689,7 +287189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 3461940, "featuredRunMedia": null, "reactionVideos": [], @@ -287709,7 +287209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3464686, "featuredRunMedia": null, "reactionVideos": [], @@ -287729,7 +287229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 3474485, "featuredRunMedia": null, "reactionVideos": [], @@ -287749,7 +287249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 3474889, "featuredRunMedia": null, "reactionVideos": [], @@ -287769,7 +287269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 3476605, "featuredRunMedia": null, "reactionVideos": [], @@ -287789,7 +287289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 3477452, "featuredRunMedia": null, "reactionVideos": [], @@ -287809,7 +287309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "144110", "time": 3481010, "featuredRunMedia": null, "reactionVideos": [], @@ -287829,7 +287329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 3481449, "featuredRunMedia": null, "reactionVideos": [], @@ -287849,7 +287349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 3481509, "featuredRunMedia": null, "reactionVideos": [], @@ -287869,7 +287369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 3481985, "featuredRunMedia": null, "reactionVideos": [], @@ -287889,7 +287389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 3485765, "featuredRunMedia": null, "reactionVideos": [], @@ -287909,7 +287409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "144186", "time": 3486617, "featuredRunMedia": null, "reactionVideos": [], @@ -287929,7 +287429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 3493006, "featuredRunMedia": null, "reactionVideos": [], @@ -287953,7 +287453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 3496123, "featuredRunMedia": null, "reactionVideos": [], @@ -287973,7 +287473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 3498084, "featuredRunMedia": null, "reactionVideos": [], @@ -287993,7 +287493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "144118", "time": 3504942, "featuredRunMedia": null, "reactionVideos": [], @@ -288013,7 +287513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 3507133, "featuredRunMedia": null, "reactionVideos": [], @@ -288033,7 +287533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 3509073, "featuredRunMedia": null, "reactionVideos": [], @@ -288053,7 +287553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 3509861, "featuredRunMedia": null, "reactionVideos": [], @@ -288073,7 +287573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 3510567, "featuredRunMedia": null, "reactionVideos": [], @@ -288093,7 +287593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 3511918, "featuredRunMedia": null, "reactionVideos": [], @@ -288113,7 +287613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 3513416, "featuredRunMedia": null, "reactionVideos": [], @@ -288133,7 +287633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 3514135, "featuredRunMedia": null, "reactionVideos": [], @@ -288153,7 +287653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 3518380, "featuredRunMedia": null, "reactionVideos": [], @@ -288173,7 +287673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 3520312, "featuredRunMedia": null, "reactionVideos": [], @@ -288193,7 +287693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 368, + "teamId": "144438", "time": 3523133, "featuredRunMedia": null, "reactionVideos": [], @@ -288213,7 +287713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 3528756, "featuredRunMedia": null, "reactionVideos": [], @@ -288233,7 +287733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 3529112, "featuredRunMedia": null, "reactionVideos": [], @@ -288253,7 +287753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 3530462, "featuredRunMedia": null, "reactionVideos": [], @@ -288273,7 +287773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 3531274, "featuredRunMedia": null, "reactionVideos": [], @@ -288293,7 +287793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 3531672, "featuredRunMedia": null, "reactionVideos": [], @@ -288313,7 +287813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 3533167, "featuredRunMedia": null, "reactionVideos": [], @@ -288333,7 +287833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 3533880, "featuredRunMedia": null, "reactionVideos": [], @@ -288353,7 +287853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "144101", "time": 3539656, "featuredRunMedia": null, "reactionVideos": [], @@ -288373,7 +287873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 3543526, "featuredRunMedia": null, "reactionVideos": [], @@ -288393,7 +287893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 3545335, "featuredRunMedia": null, "reactionVideos": [], @@ -288413,7 +287913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "144127", "time": 3546163, "featuredRunMedia": null, "reactionVideos": [], @@ -288433,7 +287933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "144343", "time": 3551344, "featuredRunMedia": null, "reactionVideos": [], @@ -288453,7 +287953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 3551918, "featuredRunMedia": null, "reactionVideos": [], @@ -288473,7 +287973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 3552628, "featuredRunMedia": null, "reactionVideos": [], @@ -288493,7 +287993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3554877, "featuredRunMedia": null, "reactionVideos": [], @@ -288513,7 +288013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 3554934, "featuredRunMedia": null, "reactionVideos": [], @@ -288533,7 +288033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3556349, "featuredRunMedia": null, "reactionVideos": [], @@ -288553,7 +288053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 383, + "teamId": "144453", "time": 3558013, "featuredRunMedia": null, "reactionVideos": [], @@ -288573,7 +288073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3559118, "featuredRunMedia": null, "reactionVideos": [], @@ -288593,7 +288093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 3561065, "featuredRunMedia": null, "reactionVideos": [], @@ -288613,7 +288113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 3570060, "featuredRunMedia": null, "reactionVideos": [], @@ -288633,7 +288133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 3572925, "featuredRunMedia": null, "reactionVideos": [], @@ -288653,7 +288153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 420, + "teamId": "144490", "time": 3573818, "featuredRunMedia": null, "reactionVideos": [], @@ -288673,7 +288173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "144184", "time": 3576898, "featuredRunMedia": null, "reactionVideos": [], @@ -288693,7 +288193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 3577192, "featuredRunMedia": null, "reactionVideos": [], @@ -288713,7 +288213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 3579335, "featuredRunMedia": null, "reactionVideos": [], @@ -288733,7 +288233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "144072", "time": 3579691, "featuredRunMedia": null, "reactionVideos": [], @@ -288753,7 +288253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 3582395, "featuredRunMedia": null, "reactionVideos": [], @@ -288773,7 +288273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 427, + "teamId": "144497", "time": 3583149, "featuredRunMedia": null, "reactionVideos": [], @@ -288793,7 +288293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 3583235, "featuredRunMedia": null, "reactionVideos": [], @@ -288813,7 +288313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 3584012, "featuredRunMedia": null, "reactionVideos": [], @@ -288833,7 +288333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 3584906, "featuredRunMedia": null, "reactionVideos": [], @@ -288853,7 +288353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 237, + "teamId": "144307", "time": 3585204, "featuredRunMedia": null, "reactionVideos": [], @@ -288873,7 +288373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 3585593, "featuredRunMedia": null, "reactionVideos": [], @@ -288893,7 +288393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 3585790, "featuredRunMedia": null, "reactionVideos": [], @@ -288913,7 +288413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 3586289, "featuredRunMedia": null, "reactionVideos": [], @@ -288933,7 +288433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 377, + "teamId": "144447", "time": 3587932, "featuredRunMedia": null, "reactionVideos": [], @@ -288953,7 +288453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 3590671, "featuredRunMedia": null, "reactionVideos": [], @@ -288973,7 +288473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 3591959, "featuredRunMedia": null, "reactionVideos": [], @@ -288993,7 +288493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 3592836, "featuredRunMedia": null, "reactionVideos": [], @@ -289013,7 +288513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 3593477, "featuredRunMedia": null, "reactionVideos": [], @@ -289037,7 +288537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 3597263, "featuredRunMedia": null, "reactionVideos": [], @@ -289057,7 +288557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 3597444, "featuredRunMedia": null, "reactionVideos": [], @@ -289077,7 +288577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 3598254, "featuredRunMedia": null, "reactionVideos": [], @@ -289097,7 +288597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 3598810, "featuredRunMedia": null, "reactionVideos": [], @@ -289117,7 +288617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 3600211, "featuredRunMedia": null, "reactionVideos": [], @@ -289137,7 +288637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 3600859, "featuredRunMedia": null, "reactionVideos": [], @@ -289157,7 +288657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "144387", "time": 3601188, "featuredRunMedia": null, "reactionVideos": [], @@ -289177,7 +288677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 3603627, "featuredRunMedia": null, "reactionVideos": [], @@ -289197,7 +288697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 3603799, "featuredRunMedia": null, "reactionVideos": [], @@ -289217,7 +288717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 3608977, "featuredRunMedia": null, "reactionVideos": [], @@ -289237,7 +288737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "144100", "time": 3610493, "featuredRunMedia": null, "reactionVideos": [], @@ -289257,7 +288757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "144184", "time": 3611927, "featuredRunMedia": null, "reactionVideos": [], @@ -289277,7 +288777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 3614908, "featuredRunMedia": null, "reactionVideos": [], @@ -289297,7 +288797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 3617428, "featuredRunMedia": null, "reactionVideos": [], @@ -289317,7 +288817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 3617604, "featuredRunMedia": null, "reactionVideos": [], @@ -289337,7 +288837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 3618309, "featuredRunMedia": null, "reactionVideos": [], @@ -289357,7 +288857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 3618668, "featuredRunMedia": null, "reactionVideos": [], @@ -289377,7 +288877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 401, + "teamId": "144471", "time": 3618747, "featuredRunMedia": null, "reactionVideos": [], @@ -289397,7 +288897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 3619636, "featuredRunMedia": null, "reactionVideos": [], @@ -289417,7 +288917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 3620401, "featuredRunMedia": null, "reactionVideos": [], @@ -289441,7 +288941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3624628, "featuredRunMedia": null, "reactionVideos": [], @@ -289461,7 +288961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 3624689, "featuredRunMedia": null, "reactionVideos": [], @@ -289481,7 +288981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 3624798, "featuredRunMedia": null, "reactionVideos": [], @@ -289501,7 +289001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "144405", "time": 3625989, "featuredRunMedia": null, "reactionVideos": [], @@ -289521,7 +289021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 3627504, "featuredRunMedia": null, "reactionVideos": [], @@ -289541,7 +289041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 347, + "teamId": "144417", "time": 3628245, "featuredRunMedia": null, "reactionVideos": [], @@ -289561,7 +289061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 3629122, "featuredRunMedia": null, "reactionVideos": [], @@ -289585,7 +289085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 3629964, "featuredRunMedia": null, "reactionVideos": [], @@ -289605,7 +289105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 3630303, "featuredRunMedia": null, "reactionVideos": [], @@ -289625,7 +289125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 3632934, "featuredRunMedia": null, "reactionVideos": [], @@ -289645,7 +289145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 3633380, "featuredRunMedia": null, "reactionVideos": [], @@ -289665,7 +289165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 3635206, "featuredRunMedia": null, "reactionVideos": [], @@ -289685,7 +289185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "144167", "time": 3636066, "featuredRunMedia": null, "reactionVideos": [], @@ -289705,7 +289205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 3636552, "featuredRunMedia": null, "reactionVideos": [], @@ -289725,7 +289225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 3638484, "featuredRunMedia": null, "reactionVideos": [], @@ -289745,7 +289245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 3643110, "featuredRunMedia": null, "reactionVideos": [], @@ -289765,7 +289265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "144316", "time": 3643346, "featuredRunMedia": null, "reactionVideos": [], @@ -289785,7 +289285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 3644856, "featuredRunMedia": null, "reactionVideos": [], @@ -289805,7 +289305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 3644993, "featuredRunMedia": null, "reactionVideos": [], @@ -289825,7 +289325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 3647445, "featuredRunMedia": null, "reactionVideos": [], @@ -289845,7 +289345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "144230", "time": 3649364, "featuredRunMedia": null, "reactionVideos": [], @@ -289865,7 +289365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 3652761, "featuredRunMedia": null, "reactionVideos": [], @@ -289885,7 +289385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 3657483, "featuredRunMedia": null, "reactionVideos": [], @@ -289905,7 +289405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 3659525, "featuredRunMedia": null, "reactionVideos": [], @@ -289925,7 +289425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 3660054, "featuredRunMedia": null, "reactionVideos": [], @@ -289945,7 +289445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 3662738, "featuredRunMedia": null, "reactionVideos": [], @@ -289965,7 +289465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "144110", "time": 3663090, "featuredRunMedia": null, "reactionVideos": [], @@ -289985,7 +289485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 411, + "teamId": "144481", "time": 3664107, "featuredRunMedia": null, "reactionVideos": [], @@ -290005,7 +289505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 3667391, "featuredRunMedia": null, "reactionVideos": [], @@ -290025,7 +289525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 3667849, "featuredRunMedia": null, "reactionVideos": [], @@ -290045,7 +289545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 3670127, "featuredRunMedia": null, "reactionVideos": [], @@ -290065,7 +289565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 3671279, "featuredRunMedia": null, "reactionVideos": [], @@ -290085,7 +289585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 3672119, "featuredRunMedia": null, "reactionVideos": [], @@ -290105,7 +289605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 309, + "teamId": "144379", "time": 3672257, "featuredRunMedia": null, "reactionVideos": [], @@ -290125,7 +289625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 3672452, "featuredRunMedia": null, "reactionVideos": [], @@ -290145,7 +289645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 3675506, "featuredRunMedia": null, "reactionVideos": [], @@ -290165,7 +289665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "144188", "time": 3675789, "featuredRunMedia": null, "reactionVideos": [], @@ -290185,7 +289685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 3676315, "featuredRunMedia": null, "reactionVideos": [], @@ -290205,7 +289705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "144184", "time": 3676748, "featuredRunMedia": null, "reactionVideos": [], @@ -290225,7 +289725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 3677531, "featuredRunMedia": null, "reactionVideos": [], @@ -290245,7 +289745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 3681412, "featuredRunMedia": null, "reactionVideos": [], @@ -290265,7 +289765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 3681610, "featuredRunMedia": null, "reactionVideos": [], @@ -290285,7 +289785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 3682222, "featuredRunMedia": null, "reactionVideos": [], @@ -290305,7 +289805,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "144282", "time": 3685448, "featuredRunMedia": null, "reactionVideos": [], @@ -290325,7 +289825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 3690418, "featuredRunMedia": null, "reactionVideos": [], @@ -290345,7 +289845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 3691297, "featuredRunMedia": null, "reactionVideos": [], @@ -290365,7 +289865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 3692803, "featuredRunMedia": null, "reactionVideos": [], @@ -290385,7 +289885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3695882, "featuredRunMedia": null, "reactionVideos": [], @@ -290405,7 +289905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 3696966, "featuredRunMedia": null, "reactionVideos": [], @@ -290425,7 +289925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 3697992, "featuredRunMedia": null, "reactionVideos": [], @@ -290445,7 +289945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 3698046, "featuredRunMedia": null, "reactionVideos": [], @@ -290465,7 +289965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 3699624, "featuredRunMedia": null, "reactionVideos": [], @@ -290485,7 +289985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 3702459, "featuredRunMedia": null, "reactionVideos": [], @@ -290505,7 +290005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 3702503, "featuredRunMedia": null, "reactionVideos": [], @@ -290525,7 +290025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 3703548, "featuredRunMedia": null, "reactionVideos": [], @@ -290545,7 +290045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 3704232, "featuredRunMedia": null, "reactionVideos": [], @@ -290565,7 +290065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 3708571, "featuredRunMedia": null, "reactionVideos": [], @@ -290585,7 +290085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 3710357, "featuredRunMedia": null, "reactionVideos": [], @@ -290605,7 +290105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 3713607, "featuredRunMedia": null, "reactionVideos": [], @@ -290625,7 +290125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 3714279, "featuredRunMedia": null, "reactionVideos": [], @@ -290645,7 +290145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 3714919, "featuredRunMedia": null, "reactionVideos": [], @@ -290665,7 +290165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 3720931, "featuredRunMedia": null, "reactionVideos": [], @@ -290685,7 +290185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 3721082, "featuredRunMedia": null, "reactionVideos": [], @@ -290705,7 +290205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 3722126, "featuredRunMedia": null, "reactionVideos": [], @@ -290725,7 +290225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "144409", "time": 3723027, "featuredRunMedia": null, "reactionVideos": [], @@ -290745,7 +290245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 3724120, "featuredRunMedia": null, "reactionVideos": [], @@ -290765,7 +290265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 3725767, "featuredRunMedia": null, "reactionVideos": [], @@ -290785,7 +290285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 3725823, "featuredRunMedia": null, "reactionVideos": [], @@ -290805,7 +290305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 383, + "teamId": "144453", "time": 3726048, "featuredRunMedia": null, "reactionVideos": [], @@ -290825,7 +290325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 3729376, "featuredRunMedia": null, "reactionVideos": [], @@ -290845,7 +290345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "144205", "time": 3731093, "featuredRunMedia": null, "reactionVideos": [], @@ -290869,7 +290369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 3733520, "featuredRunMedia": null, "reactionVideos": [], @@ -290889,7 +290389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 3735837, "featuredRunMedia": null, "reactionVideos": [], @@ -290909,7 +290409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 3736475, "featuredRunMedia": null, "reactionVideos": [], @@ -290929,7 +290429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "144214", "time": 3738232, "featuredRunMedia": null, "reactionVideos": [], @@ -290949,7 +290449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 3739252, "featuredRunMedia": null, "reactionVideos": [], @@ -290969,7 +290469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 3740336, "featuredRunMedia": null, "reactionVideos": [], @@ -290989,7 +290489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 408, + "teamId": "144478", "time": 3741132, "featuredRunMedia": null, "reactionVideos": [], @@ -291009,7 +290509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 3744378, "featuredRunMedia": null, "reactionVideos": [], @@ -291029,7 +290529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 3744437, "featuredRunMedia": null, "reactionVideos": [], @@ -291049,7 +290549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 3744494, "featuredRunMedia": null, "reactionVideos": [], @@ -291069,7 +290569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 3745817, "featuredRunMedia": null, "reactionVideos": [], @@ -291089,7 +290589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 3746859, "featuredRunMedia": null, "reactionVideos": [], @@ -291109,7 +290609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "144118", "time": 3751231, "featuredRunMedia": null, "reactionVideos": [], @@ -291129,7 +290629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 3752231, "featuredRunMedia": null, "reactionVideos": [], @@ -291149,7 +290649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 3753252, "featuredRunMedia": null, "reactionVideos": [], @@ -291169,7 +290669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 3754875, "featuredRunMedia": null, "reactionVideos": [], @@ -291189,7 +290689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 3755634, "featuredRunMedia": null, "reactionVideos": [], @@ -291209,7 +290709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 3756644, "featuredRunMedia": null, "reactionVideos": [], @@ -291229,7 +290729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 3758622, "featuredRunMedia": null, "reactionVideos": [], @@ -291249,7 +290749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 3760296, "featuredRunMedia": null, "reactionVideos": [], @@ -291269,7 +290769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 3761365, "featuredRunMedia": null, "reactionVideos": [], @@ -291289,7 +290789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3762811, "featuredRunMedia": null, "reactionVideos": [], @@ -291309,7 +290809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 3765272, "featuredRunMedia": null, "reactionVideos": [], @@ -291329,7 +290829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 3766427, "featuredRunMedia": null, "reactionVideos": [], @@ -291349,7 +290849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 3767896, "featuredRunMedia": null, "reactionVideos": [], @@ -291369,7 +290869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 3768306, "featuredRunMedia": null, "reactionVideos": [], @@ -291389,7 +290889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "144375", "time": 3769111, "featuredRunMedia": null, "reactionVideos": [], @@ -291409,7 +290909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "144072", "time": 3771105, "featuredRunMedia": null, "reactionVideos": [], @@ -291429,7 +290929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 3771524, "featuredRunMedia": null, "reactionVideos": [], @@ -291449,7 +290949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 3773049, "featuredRunMedia": null, "reactionVideos": [], @@ -291469,7 +290969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 3773228, "featuredRunMedia": null, "reactionVideos": [], @@ -291489,7 +290989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 360, + "teamId": "144430", "time": 3774158, "featuredRunMedia": null, "reactionVideos": [], @@ -291509,7 +291009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 3774645, "featuredRunMedia": null, "reactionVideos": [], @@ -291529,7 +291029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 3776260, "featuredRunMedia": null, "reactionVideos": [], @@ -291549,7 +291049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 3777564, "featuredRunMedia": null, "reactionVideos": [], @@ -291569,7 +291069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 3780522, "featuredRunMedia": null, "reactionVideos": [], @@ -291589,7 +291089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 3780858, "featuredRunMedia": null, "reactionVideos": [], @@ -291609,7 +291109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 3782071, "featuredRunMedia": null, "reactionVideos": [], @@ -291629,7 +291129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 3782805, "featuredRunMedia": null, "reactionVideos": [], @@ -291649,7 +291149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 3784317, "featuredRunMedia": null, "reactionVideos": [], @@ -291669,7 +291169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 3784953, "featuredRunMedia": null, "reactionVideos": [], @@ -291689,7 +291189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 3786920, "featuredRunMedia": null, "reactionVideos": [], @@ -291709,7 +291209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 3788987, "featuredRunMedia": null, "reactionVideos": [], @@ -291729,7 +291229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 3789518, "featuredRunMedia": null, "reactionVideos": [], @@ -291749,7 +291249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 3789586, "featuredRunMedia": null, "reactionVideos": [], @@ -291769,7 +291269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 3792580, "featuredRunMedia": null, "reactionVideos": [], @@ -291789,7 +291289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 3792813, "featuredRunMedia": null, "reactionVideos": [], @@ -291809,7 +291309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 3794430, "featuredRunMedia": null, "reactionVideos": [], @@ -291829,7 +291329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "144126", "time": 3794875, "featuredRunMedia": null, "reactionVideos": [], @@ -291849,7 +291349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 3795852, "featuredRunMedia": null, "reactionVideos": [], @@ -291869,7 +291369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 3796047, "featuredRunMedia": null, "reactionVideos": [], @@ -291889,7 +291389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 3798982, "featuredRunMedia": null, "reactionVideos": [], @@ -291909,7 +291409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "144335", "time": 3799742, "featuredRunMedia": null, "reactionVideos": [], @@ -291929,7 +291429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 3801626, "featuredRunMedia": null, "reactionVideos": [], @@ -291949,7 +291449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 3802633, "featuredRunMedia": null, "reactionVideos": [], @@ -291969,7 +291469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 3803042, "featuredRunMedia": null, "reactionVideos": [], @@ -291989,7 +291489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 3804202, "featuredRunMedia": null, "reactionVideos": [], @@ -292009,7 +291509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 302, + "teamId": "144372", "time": 3807720, "featuredRunMedia": null, "reactionVideos": [], @@ -292029,7 +291529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 3808614, "featuredRunMedia": null, "reactionVideos": [], @@ -292053,7 +291553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 3814065, "featuredRunMedia": null, "reactionVideos": [], @@ -292073,7 +291573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 3816235, "featuredRunMedia": null, "reactionVideos": [], @@ -292093,7 +291593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "144100", "time": 3818788, "featuredRunMedia": null, "reactionVideos": [], @@ -292113,7 +291613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 3820335, "featuredRunMedia": null, "reactionVideos": [], @@ -292133,7 +291633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 3820766, "featuredRunMedia": null, "reactionVideos": [], @@ -292153,7 +291653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 3820912, "featuredRunMedia": null, "reactionVideos": [], @@ -292173,7 +291673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "144118", "time": 3823586, "featuredRunMedia": null, "reactionVideos": [], @@ -292193,7 +291693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 3825638, "featuredRunMedia": null, "reactionVideos": [], @@ -292213,7 +291713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 3826851, "featuredRunMedia": null, "reactionVideos": [], @@ -292233,7 +291733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 3827135, "featuredRunMedia": null, "reactionVideos": [], @@ -292253,7 +291753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 3827687, "featuredRunMedia": null, "reactionVideos": [], @@ -292273,7 +291773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 3830021, "featuredRunMedia": null, "reactionVideos": [], @@ -292293,7 +291793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 3830164, "featuredRunMedia": null, "reactionVideos": [], @@ -292313,7 +291813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 3830794, "featuredRunMedia": null, "reactionVideos": [], @@ -292333,7 +291833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 3831282, "featuredRunMedia": null, "reactionVideos": [], @@ -292353,7 +291853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 375, + "teamId": "144445", "time": 3834486, "featuredRunMedia": null, "reactionVideos": [], @@ -292373,7 +291873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 3835606, "featuredRunMedia": null, "reactionVideos": [], @@ -292393,7 +291893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 3840938, "featuredRunMedia": null, "reactionVideos": [], @@ -292413,7 +291913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 3841172, "featuredRunMedia": null, "reactionVideos": [], @@ -292433,7 +291933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "144393", "time": 3849959, "featuredRunMedia": null, "reactionVideos": [], @@ -292453,7 +291953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 3850287, "featuredRunMedia": null, "reactionVideos": [], @@ -292473,7 +291973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 3851890, "featuredRunMedia": null, "reactionVideos": [], @@ -292493,7 +291993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 3854013, "featuredRunMedia": null, "reactionVideos": [], @@ -292513,7 +292013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 3860657, "featuredRunMedia": null, "reactionVideos": [], @@ -292537,7 +292037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 3862926, "featuredRunMedia": null, "reactionVideos": [], @@ -292557,7 +292057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 3864960, "featuredRunMedia": null, "reactionVideos": [], @@ -292577,7 +292077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 3865970, "featuredRunMedia": null, "reactionVideos": [], @@ -292597,7 +292097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3868280, "featuredRunMedia": null, "reactionVideos": [], @@ -292617,7 +292117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 3872960, "featuredRunMedia": null, "reactionVideos": [], @@ -292637,7 +292137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 3880239, "featuredRunMedia": null, "reactionVideos": [], @@ -292657,7 +292157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 3881905, "featuredRunMedia": null, "reactionVideos": [], @@ -292677,7 +292177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 3884990, "featuredRunMedia": null, "reactionVideos": [], @@ -292697,7 +292197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 3886717, "featuredRunMedia": null, "reactionVideos": [], @@ -292717,7 +292217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 3886986, "featuredRunMedia": null, "reactionVideos": [], @@ -292737,7 +292237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 3889300, "featuredRunMedia": null, "reactionVideos": [], @@ -292757,7 +292257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 3890743, "featuredRunMedia": null, "reactionVideos": [], @@ -292777,7 +292277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 3891999, "featuredRunMedia": null, "reactionVideos": [], @@ -292797,7 +292297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 3892457, "featuredRunMedia": null, "reactionVideos": [], @@ -292817,7 +292317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 3893213, "featuredRunMedia": null, "reactionVideos": [], @@ -292837,7 +292337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 3894145, "featuredRunMedia": null, "reactionVideos": [], @@ -292857,7 +292357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 3894560, "featuredRunMedia": null, "reactionVideos": [], @@ -292877,7 +292377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 3897407, "featuredRunMedia": null, "reactionVideos": [], @@ -292897,7 +292397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 3898892, "featuredRunMedia": null, "reactionVideos": [], @@ -292917,7 +292417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "144235", "time": 3902384, "featuredRunMedia": null, "reactionVideos": [], @@ -292937,7 +292437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 3902866, "featuredRunMedia": null, "reactionVideos": [], @@ -292957,7 +292457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 3903898, "featuredRunMedia": null, "reactionVideos": [], @@ -292977,7 +292477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 3906933, "featuredRunMedia": null, "reactionVideos": [], @@ -292997,7 +292497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 3907104, "featuredRunMedia": null, "reactionVideos": [], @@ -293017,7 +292517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 3907246, "featuredRunMedia": null, "reactionVideos": [], @@ -293037,7 +292537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 3908421, "featuredRunMedia": null, "reactionVideos": [], @@ -293057,7 +292557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 3908593, "featuredRunMedia": null, "reactionVideos": [], @@ -293077,7 +292577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 3909534, "featuredRunMedia": null, "reactionVideos": [], @@ -293097,7 +292597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 351, + "teamId": "144421", "time": 3913953, "featuredRunMedia": null, "reactionVideos": [], @@ -293117,7 +292617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 3917273, "featuredRunMedia": null, "reactionVideos": [], @@ -293137,7 +292637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 3919735, "featuredRunMedia": null, "reactionVideos": [], @@ -293157,7 +292657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "144242", "time": 3920172, "featuredRunMedia": null, "reactionVideos": [], @@ -293177,7 +292677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 3922057, "featuredRunMedia": null, "reactionVideos": [], @@ -293197,7 +292697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 383, + "teamId": "144453", "time": 3923562, "featuredRunMedia": null, "reactionVideos": [], @@ -293217,7 +292717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 3923967, "featuredRunMedia": null, "reactionVideos": [], @@ -293237,7 +292737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 3927177, "featuredRunMedia": null, "reactionVideos": [], @@ -293257,7 +292757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 3928124, "featuredRunMedia": null, "reactionVideos": [], @@ -293277,7 +292777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 3930546, "featuredRunMedia": null, "reactionVideos": [], @@ -293297,7 +292797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 3930766, "featuredRunMedia": null, "reactionVideos": [], @@ -293317,7 +292817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 3932097, "featuredRunMedia": null, "reactionVideos": [], @@ -293337,7 +292837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 3933187, "featuredRunMedia": null, "reactionVideos": [], @@ -293361,7 +292861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 3935718, "featuredRunMedia": null, "reactionVideos": [], @@ -293381,7 +292881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 440, + "teamId": "144510", "time": 3938338, "featuredRunMedia": null, "reactionVideos": [], @@ -293405,7 +292905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 3938545, "featuredRunMedia": null, "reactionVideos": [], @@ -293425,7 +292925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 3943456, "featuredRunMedia": null, "reactionVideos": [], @@ -293445,7 +292945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "144345", "time": 3943779, "featuredRunMedia": null, "reactionVideos": [], @@ -293465,7 +292965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 3944543, "featuredRunMedia": null, "reactionVideos": [], @@ -293485,7 +292985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 3945304, "featuredRunMedia": null, "reactionVideos": [], @@ -293505,7 +293005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 3948067, "featuredRunMedia": null, "reactionVideos": [], @@ -293529,7 +293029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 3957539, "featuredRunMedia": null, "reactionVideos": [], @@ -293549,7 +293049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 3958356, "featuredRunMedia": null, "reactionVideos": [], @@ -293569,7 +293069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 3958832, "featuredRunMedia": null, "reactionVideos": [], @@ -293589,7 +293089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 3959401, "featuredRunMedia": null, "reactionVideos": [], @@ -293609,7 +293109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 3960824, "featuredRunMedia": null, "reactionVideos": [], @@ -293629,7 +293129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 3961100, "featuredRunMedia": null, "reactionVideos": [], @@ -293649,7 +293149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 3965474, "featuredRunMedia": null, "reactionVideos": [], @@ -293669,7 +293169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 3971272, "featuredRunMedia": null, "reactionVideos": [], @@ -293689,7 +293189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 3972181, "featuredRunMedia": null, "reactionVideos": [], @@ -293709,7 +293209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 3973828, "featuredRunMedia": null, "reactionVideos": [], @@ -293729,7 +293229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 3979506, "featuredRunMedia": null, "reactionVideos": [], @@ -293749,7 +293249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 3980103, "featuredRunMedia": null, "reactionVideos": [], @@ -293769,7 +293269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "144403", "time": 3980760, "featuredRunMedia": null, "reactionVideos": [], @@ -293789,7 +293289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 397, + "teamId": "144467", "time": 3981831, "featuredRunMedia": null, "reactionVideos": [], @@ -293809,7 +293309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 3983322, "featuredRunMedia": null, "reactionVideos": [], @@ -293829,7 +293329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 3983818, "featuredRunMedia": null, "reactionVideos": [], @@ -293849,7 +293349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 3986156, "featuredRunMedia": null, "reactionVideos": [], @@ -293869,7 +293369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 3987539, "featuredRunMedia": null, "reactionVideos": [], @@ -293889,7 +293389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 3991606, "featuredRunMedia": null, "reactionVideos": [], @@ -293909,7 +293409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 3993112, "featuredRunMedia": null, "reactionVideos": [], @@ -293929,7 +293429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 3993155, "featuredRunMedia": null, "reactionVideos": [], @@ -293949,7 +293449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 3995754, "featuredRunMedia": null, "reactionVideos": [], @@ -293969,7 +293469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 3997202, "featuredRunMedia": null, "reactionVideos": [], @@ -293989,7 +293489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 3997835, "featuredRunMedia": null, "reactionVideos": [], @@ -294009,7 +293509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 411, + "teamId": "144481", "time": 3998375, "featuredRunMedia": null, "reactionVideos": [], @@ -294029,7 +293529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 4000489, "featuredRunMedia": null, "reactionVideos": [], @@ -294049,7 +293549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 4000919, "featuredRunMedia": null, "reactionVideos": [], @@ -294069,7 +293569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 4001393, "featuredRunMedia": null, "reactionVideos": [], @@ -294089,7 +293589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 4004997, "featuredRunMedia": null, "reactionVideos": [], @@ -294109,7 +293609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "144404", "time": 4005376, "featuredRunMedia": null, "reactionVideos": [], @@ -294129,7 +293629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 4005645, "featuredRunMedia": null, "reactionVideos": [], @@ -294149,7 +293649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "144306", "time": 4006183, "featuredRunMedia": null, "reactionVideos": [], @@ -294169,7 +293669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 4006247, "featuredRunMedia": null, "reactionVideos": [], @@ -294189,7 +293689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "144174", "time": 4006982, "featuredRunMedia": null, "reactionVideos": [], @@ -294209,7 +293709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 4008467, "featuredRunMedia": null, "reactionVideos": [], @@ -294229,7 +293729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 4008853, "featuredRunMedia": null, "reactionVideos": [], @@ -294249,7 +293749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 4014961, "featuredRunMedia": null, "reactionVideos": [], @@ -294269,7 +293769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 4016259, "featuredRunMedia": null, "reactionVideos": [], @@ -294289,7 +293789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 4017196, "featuredRunMedia": null, "reactionVideos": [], @@ -294309,7 +293809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 4017673, "featuredRunMedia": null, "reactionVideos": [], @@ -294329,7 +293829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 4018610, "featuredRunMedia": null, "reactionVideos": [], @@ -294353,7 +293853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4021057, "featuredRunMedia": null, "reactionVideos": [], @@ -294373,7 +293873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 4024600, "featuredRunMedia": null, "reactionVideos": [], @@ -294393,7 +293893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 4025353, "featuredRunMedia": null, "reactionVideos": [], @@ -294413,7 +293913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 4031580, "featuredRunMedia": null, "reactionVideos": [], @@ -294433,7 +293933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4032377, "featuredRunMedia": null, "reactionVideos": [], @@ -294453,7 +293953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 4035284, "featuredRunMedia": null, "reactionVideos": [], @@ -294473,7 +293973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 4035500, "featuredRunMedia": null, "reactionVideos": [], @@ -294493,7 +293993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 4035680, "featuredRunMedia": null, "reactionVideos": [], @@ -294513,7 +294013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 4036989, "featuredRunMedia": null, "reactionVideos": [], @@ -294533,7 +294033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 4041001, "featuredRunMedia": null, "reactionVideos": [], @@ -294553,7 +294053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 4043788, "featuredRunMedia": null, "reactionVideos": [], @@ -294577,7 +294077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 4044100, "featuredRunMedia": null, "reactionVideos": [], @@ -294597,7 +294097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 4044448, "featuredRunMedia": null, "reactionVideos": [], @@ -294617,7 +294117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4047643, "featuredRunMedia": null, "reactionVideos": [], @@ -294637,7 +294137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 4047966, "featuredRunMedia": null, "reactionVideos": [], @@ -294657,7 +294157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 4048386, "featuredRunMedia": null, "reactionVideos": [], @@ -294681,7 +294181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 4052401, "featuredRunMedia": null, "reactionVideos": [], @@ -294701,7 +294201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 4053491, "featuredRunMedia": null, "reactionVideos": [], @@ -294721,7 +294221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 4053745, "featuredRunMedia": null, "reactionVideos": [], @@ -294741,7 +294241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 4055183, "featuredRunMedia": null, "reactionVideos": [], @@ -294761,7 +294261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 4055940, "featuredRunMedia": null, "reactionVideos": [], @@ -294781,7 +294281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 4057888, "featuredRunMedia": null, "reactionVideos": [], @@ -294801,7 +294301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4058178, "featuredRunMedia": null, "reactionVideos": [], @@ -294825,7 +294325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4058301, "featuredRunMedia": null, "reactionVideos": [], @@ -294845,7 +294345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 4058347, "featuredRunMedia": null, "reactionVideos": [], @@ -294865,7 +294365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 4059350, "featuredRunMedia": null, "reactionVideos": [], @@ -294885,7 +294385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 4059923, "featuredRunMedia": null, "reactionVideos": [], @@ -294905,7 +294405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 4063983, "featuredRunMedia": null, "reactionVideos": [], @@ -294925,7 +294425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 400, + "teamId": "144470", "time": 4064570, "featuredRunMedia": null, "reactionVideos": [], @@ -294945,7 +294445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 4064601, "featuredRunMedia": null, "reactionVideos": [], @@ -294965,7 +294465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 377, + "teamId": "144447", "time": 4064735, "featuredRunMedia": null, "reactionVideos": [], @@ -294985,7 +294485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 4065558, "featuredRunMedia": null, "reactionVideos": [], @@ -295005,7 +294505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 4068887, "featuredRunMedia": null, "reactionVideos": [], @@ -295025,7 +294525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 4069110, "featuredRunMedia": null, "reactionVideos": [], @@ -295045,7 +294545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 4070473, "featuredRunMedia": null, "reactionVideos": [], @@ -295065,7 +294565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 4071750, "featuredRunMedia": null, "reactionVideos": [], @@ -295085,7 +294585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4074844, "featuredRunMedia": null, "reactionVideos": [], @@ -295105,7 +294605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 4077256, "featuredRunMedia": null, "reactionVideos": [], @@ -295129,7 +294629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 4080004, "featuredRunMedia": null, "reactionVideos": [], @@ -295149,7 +294649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 4080676, "featuredRunMedia": null, "reactionVideos": [], @@ -295169,7 +294669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 4080815, "featuredRunMedia": null, "reactionVideos": [], @@ -295189,7 +294689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 4081056, "featuredRunMedia": null, "reactionVideos": [], @@ -295209,7 +294709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 4081462, "featuredRunMedia": null, "reactionVideos": [], @@ -295229,7 +294729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "144151", "time": 4082581, "featuredRunMedia": null, "reactionVideos": [], @@ -295249,7 +294749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 4083038, "featuredRunMedia": null, "reactionVideos": [], @@ -295269,7 +294769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 4084851, "featuredRunMedia": null, "reactionVideos": [], @@ -295289,7 +294789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 4084940, "featuredRunMedia": null, "reactionVideos": [], @@ -295309,7 +294809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 4085091, "featuredRunMedia": null, "reactionVideos": [], @@ -295329,7 +294829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 4086857, "featuredRunMedia": null, "reactionVideos": [], @@ -295349,7 +294849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 4087904, "featuredRunMedia": null, "reactionVideos": [], @@ -295369,7 +294869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4089044, "featuredRunMedia": null, "reactionVideos": [], @@ -295389,7 +294889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 411, + "teamId": "144481", "time": 4089917, "featuredRunMedia": null, "reactionVideos": [], @@ -295409,7 +294909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 4090150, "featuredRunMedia": null, "reactionVideos": [], @@ -295429,7 +294929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 4090380, "featuredRunMedia": null, "reactionVideos": [], @@ -295449,7 +294949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 381, + "teamId": "144451", "time": 4092638, "featuredRunMedia": null, "reactionVideos": [], @@ -295469,7 +294969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 4092941, "featuredRunMedia": null, "reactionVideos": [], @@ -295489,7 +294989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 4093365, "featuredRunMedia": null, "reactionVideos": [], @@ -295509,7 +295009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 4096215, "featuredRunMedia": null, "reactionVideos": [], @@ -295529,7 +295029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 4096822, "featuredRunMedia": null, "reactionVideos": [], @@ -295549,7 +295049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 4097390, "featuredRunMedia": null, "reactionVideos": [], @@ -295569,7 +295069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "144326", "time": 4097486, "featuredRunMedia": null, "reactionVideos": [], @@ -295589,7 +295089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "144076", "time": 4098081, "featuredRunMedia": null, "reactionVideos": [], @@ -295609,7 +295109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 4098617, "featuredRunMedia": null, "reactionVideos": [], @@ -295629,7 +295129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 4099934, "featuredRunMedia": null, "reactionVideos": [], @@ -295649,7 +295149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 4102520, "featuredRunMedia": null, "reactionVideos": [], @@ -295669,7 +295169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 4103068, "featuredRunMedia": null, "reactionVideos": [], @@ -295689,7 +295189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 4103565, "featuredRunMedia": null, "reactionVideos": [], @@ -295709,7 +295209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 4103717, "featuredRunMedia": null, "reactionVideos": [], @@ -295729,7 +295229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 4105906, "featuredRunMedia": null, "reactionVideos": [], @@ -295749,7 +295249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 4106781, "featuredRunMedia": null, "reactionVideos": [], @@ -295769,7 +295269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 4107608, "featuredRunMedia": null, "reactionVideos": [], @@ -295789,7 +295289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4109453, "featuredRunMedia": null, "reactionVideos": [], @@ -295809,7 +295309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 4111778, "featuredRunMedia": null, "reactionVideos": [], @@ -295829,7 +295329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 4113146, "featuredRunMedia": null, "reactionVideos": [], @@ -295849,7 +295349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4113192, "featuredRunMedia": null, "reactionVideos": [], @@ -295869,7 +295369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 4114057, "featuredRunMedia": null, "reactionVideos": [], @@ -295889,7 +295389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 4116956, "featuredRunMedia": null, "reactionVideos": [], @@ -295909,7 +295409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 4117683, "featuredRunMedia": null, "reactionVideos": [], @@ -295929,7 +295429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 4117760, "featuredRunMedia": null, "reactionVideos": [], @@ -295953,7 +295453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4117910, "featuredRunMedia": null, "reactionVideos": [], @@ -295973,7 +295473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 4119627, "featuredRunMedia": null, "reactionVideos": [], @@ -295993,7 +295493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 4121250, "featuredRunMedia": null, "reactionVideos": [], @@ -296013,7 +295513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 4121940, "featuredRunMedia": null, "reactionVideos": [], @@ -296033,7 +295533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "144374", "time": 4124543, "featuredRunMedia": null, "reactionVideos": [], @@ -296053,7 +295553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4125632, "featuredRunMedia": null, "reactionVideos": [], @@ -296073,7 +295573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4128878, "featuredRunMedia": null, "reactionVideos": [], @@ -296093,7 +295593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 4129859, "featuredRunMedia": null, "reactionVideos": [], @@ -296113,7 +295613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 4129965, "featuredRunMedia": null, "reactionVideos": [], @@ -296133,7 +295633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 4130760, "featuredRunMedia": null, "reactionVideos": [], @@ -296153,7 +295653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 4133277, "featuredRunMedia": null, "reactionVideos": [], @@ -296173,7 +295673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 4135060, "featuredRunMedia": null, "reactionVideos": [], @@ -296193,7 +295693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 4139204, "featuredRunMedia": null, "reactionVideos": [], @@ -296213,7 +295713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 4139816, "featuredRunMedia": null, "reactionVideos": [], @@ -296233,7 +295733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 4139880, "featuredRunMedia": null, "reactionVideos": [], @@ -296253,7 +295753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 4145353, "featuredRunMedia": null, "reactionVideos": [], @@ -296273,7 +295773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 4146005, "featuredRunMedia": null, "reactionVideos": [], @@ -296293,7 +295793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 4146855, "featuredRunMedia": null, "reactionVideos": [], @@ -296313,7 +295813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 4146888, "featuredRunMedia": null, "reactionVideos": [], @@ -296333,7 +295833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "144278", "time": 4148362, "featuredRunMedia": null, "reactionVideos": [], @@ -296353,7 +295853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 4148422, "featuredRunMedia": null, "reactionVideos": [], @@ -296373,7 +295873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 4150810, "featuredRunMedia": null, "reactionVideos": [], @@ -296393,7 +295893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 4152425, "featuredRunMedia": null, "reactionVideos": [], @@ -296413,7 +295913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 4153023, "featuredRunMedia": null, "reactionVideos": [], @@ -296433,7 +295933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "144335", "time": 4153739, "featuredRunMedia": null, "reactionVideos": [], @@ -296453,7 +295953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 4154831, "featuredRunMedia": null, "reactionVideos": [], @@ -296473,7 +295973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 4155385, "featuredRunMedia": null, "reactionVideos": [], @@ -296493,7 +295993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 411, + "teamId": "144481", "time": 4157175, "featuredRunMedia": null, "reactionVideos": [], @@ -296513,7 +296013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4160156, "featuredRunMedia": null, "reactionVideos": [], @@ -296533,7 +296033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 4162268, "featuredRunMedia": null, "reactionVideos": [], @@ -296553,7 +296053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 4162670, "featuredRunMedia": null, "reactionVideos": [], @@ -296577,7 +296077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 4167782, "featuredRunMedia": null, "reactionVideos": [], @@ -296597,7 +296097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 4168460, "featuredRunMedia": null, "reactionVideos": [], @@ -296617,7 +296117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 4172049, "featuredRunMedia": null, "reactionVideos": [], @@ -296637,7 +296137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 4172237, "featuredRunMedia": null, "reactionVideos": [], @@ -296657,7 +296157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 370, + "teamId": "144440", "time": 4172884, "featuredRunMedia": null, "reactionVideos": [], @@ -296677,7 +296177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 4173270, "featuredRunMedia": null, "reactionVideos": [], @@ -296697,7 +296197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 4175758, "featuredRunMedia": null, "reactionVideos": [], @@ -296717,7 +296217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 4180839, "featuredRunMedia": null, "reactionVideos": [], @@ -296737,7 +296237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 4181411, "featuredRunMedia": null, "reactionVideos": [], @@ -296757,7 +296257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 4182031, "featuredRunMedia": null, "reactionVideos": [], @@ -296777,7 +296277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "144188", "time": 4183550, "featuredRunMedia": null, "reactionVideos": [], @@ -296797,7 +296297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 145, + "teamId": "144215", "time": 4185255, "featuredRunMedia": null, "reactionVideos": [], @@ -296817,7 +296317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 4185529, "featuredRunMedia": null, "reactionVideos": [], @@ -296837,7 +296337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 245, + "teamId": "144315", "time": 4190183, "featuredRunMedia": null, "reactionVideos": [], @@ -296857,7 +296357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 4191702, "featuredRunMedia": null, "reactionVideos": [], @@ -296877,7 +296377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "144155", "time": 4193273, "featuredRunMedia": null, "reactionVideos": [], @@ -296897,7 +296397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 4194270, "featuredRunMedia": null, "reactionVideos": [], @@ -296917,7 +296417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 4196363, "featuredRunMedia": null, "reactionVideos": [], @@ -296937,7 +296437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 4196705, "featuredRunMedia": null, "reactionVideos": [], @@ -296957,7 +296457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 4197741, "featuredRunMedia": null, "reactionVideos": [], @@ -296977,7 +296477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 4198363, "featuredRunMedia": null, "reactionVideos": [], @@ -296997,7 +296497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 4199028, "featuredRunMedia": null, "reactionVideos": [], @@ -297017,7 +296517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 4200204, "featuredRunMedia": null, "reactionVideos": [], @@ -297037,7 +296537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 4202044, "featuredRunMedia": null, "reactionVideos": [], @@ -297057,7 +296557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4202683, "featuredRunMedia": null, "reactionVideos": [], @@ -297077,7 +296577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 4205112, "featuredRunMedia": null, "reactionVideos": [], @@ -297097,7 +296597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 4205401, "featuredRunMedia": null, "reactionVideos": [], @@ -297117,7 +296617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 4205915, "featuredRunMedia": null, "reactionVideos": [], @@ -297137,7 +296637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 4206845, "featuredRunMedia": null, "reactionVideos": [], @@ -297157,7 +296657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 4206949, "featuredRunMedia": null, "reactionVideos": [], @@ -297177,7 +296677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "144306", "time": 4207014, "featuredRunMedia": null, "reactionVideos": [], @@ -297197,7 +296697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4207206, "featuredRunMedia": null, "reactionVideos": [], @@ -297217,7 +296717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 4209208, "featuredRunMedia": null, "reactionVideos": [], @@ -297237,7 +296737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 4210075, "featuredRunMedia": null, "reactionVideos": [], @@ -297257,7 +296757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 4211246, "featuredRunMedia": null, "reactionVideos": [], @@ -297277,7 +296777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 4211378, "featuredRunMedia": null, "reactionVideos": [], @@ -297297,7 +296797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 4216625, "featuredRunMedia": null, "reactionVideos": [], @@ -297317,7 +296817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 4217443, "featuredRunMedia": null, "reactionVideos": [], @@ -297337,7 +296837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 447, + "teamId": "144517", "time": 4217831, "featuredRunMedia": null, "reactionVideos": [], @@ -297357,7 +296857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "144367", "time": 4218323, "featuredRunMedia": null, "reactionVideos": [], @@ -297377,7 +296877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 4219068, "featuredRunMedia": null, "reactionVideos": [], @@ -297397,7 +296897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 4224248, "featuredRunMedia": null, "reactionVideos": [], @@ -297417,7 +296917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 365, + "teamId": "144435", "time": 4225245, "featuredRunMedia": null, "reactionVideos": [], @@ -297437,7 +296937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 4226173, "featuredRunMedia": null, "reactionVideos": [], @@ -297457,7 +296957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 4226711, "featuredRunMedia": null, "reactionVideos": [], @@ -297477,7 +296977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 4228231, "featuredRunMedia": null, "reactionVideos": [], @@ -297497,7 +296997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 4229283, "featuredRunMedia": null, "reactionVideos": [], @@ -297517,7 +297017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "144088", "time": 4229837, "featuredRunMedia": null, "reactionVideos": [], @@ -297537,7 +297037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 4230000, "featuredRunMedia": null, "reactionVideos": [], @@ -297557,7 +297057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 4231994, "featuredRunMedia": null, "reactionVideos": [], @@ -297577,7 +297077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "144211", "time": 4232611, "featuredRunMedia": null, "reactionVideos": [], @@ -297597,7 +297097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "144216", "time": 4233283, "featuredRunMedia": null, "reactionVideos": [], @@ -297617,7 +297117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 4233311, "featuredRunMedia": null, "reactionVideos": [], @@ -297637,7 +297137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 4234634, "featuredRunMedia": null, "reactionVideos": [], @@ -297657,7 +297157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "144126", "time": 4237743, "featuredRunMedia": null, "reactionVideos": [], @@ -297677,7 +297177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 4238199, "featuredRunMedia": null, "reactionVideos": [], @@ -297697,7 +297197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 4239041, "featuredRunMedia": null, "reactionVideos": [], @@ -297717,7 +297217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 4241554, "featuredRunMedia": null, "reactionVideos": [], @@ -297737,7 +297237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 4242506, "featuredRunMedia": null, "reactionVideos": [], @@ -297757,7 +297257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 4242916, "featuredRunMedia": null, "reactionVideos": [], @@ -297777,7 +297277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 375, + "teamId": "144445", "time": 4243124, "featuredRunMedia": null, "reactionVideos": [], @@ -297797,7 +297297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 4244069, "featuredRunMedia": null, "reactionVideos": [], @@ -297817,7 +297317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 4247501, "featuredRunMedia": null, "reactionVideos": [], @@ -297837,7 +297337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 4247982, "featuredRunMedia": null, "reactionVideos": [], @@ -297857,7 +297357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 4248018, "featuredRunMedia": null, "reactionVideos": [], @@ -297877,7 +297377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 4249060, "featuredRunMedia": null, "reactionVideos": [], @@ -297897,7 +297397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4251630, "featuredRunMedia": null, "reactionVideos": [], @@ -297917,7 +297417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 4253297, "featuredRunMedia": null, "reactionVideos": [], @@ -297937,7 +297437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 4256111, "featuredRunMedia": null, "reactionVideos": [], @@ -297957,7 +297457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4256425, "featuredRunMedia": null, "reactionVideos": [], @@ -297977,7 +297477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 4256614, "featuredRunMedia": null, "reactionVideos": [], @@ -297997,7 +297497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "144172", "time": 4260788, "featuredRunMedia": null, "reactionVideos": [], @@ -298017,7 +297517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 385, + "teamId": "144455", "time": 4264174, "featuredRunMedia": null, "reactionVideos": [], @@ -298037,7 +297537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "144143", "time": 4265481, "featuredRunMedia": null, "reactionVideos": [], @@ -298057,7 +297557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 4265552, "featuredRunMedia": null, "reactionVideos": [], @@ -298077,7 +297577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 4266413, "featuredRunMedia": null, "reactionVideos": [], @@ -298097,7 +297597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 4268176, "featuredRunMedia": null, "reactionVideos": [], @@ -298117,7 +297617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 4268528, "featuredRunMedia": null, "reactionVideos": [], @@ -298137,7 +297637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 4269374, "featuredRunMedia": null, "reactionVideos": [], @@ -298161,7 +297661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 4276179, "featuredRunMedia": null, "reactionVideos": [], @@ -298181,7 +297681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 4279498, "featuredRunMedia": null, "reactionVideos": [], @@ -298201,7 +297701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4280609, "featuredRunMedia": null, "reactionVideos": [], @@ -298221,7 +297721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 4281759, "featuredRunMedia": null, "reactionVideos": [], @@ -298241,7 +297741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 4281825, "featuredRunMedia": null, "reactionVideos": [], @@ -298261,7 +297761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 4283965, "featuredRunMedia": null, "reactionVideos": [], @@ -298281,7 +297781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 4285827, "featuredRunMedia": null, "reactionVideos": [], @@ -298301,7 +297801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 4286212, "featuredRunMedia": null, "reactionVideos": [], @@ -298321,7 +297821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 4287767, "featuredRunMedia": null, "reactionVideos": [], @@ -298341,7 +297841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 4291041, "featuredRunMedia": null, "reactionVideos": [], @@ -298361,7 +297861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 4292402, "featuredRunMedia": null, "reactionVideos": [], @@ -298381,7 +297881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 4294929, "featuredRunMedia": null, "reactionVideos": [], @@ -298401,7 +297901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4299071, "featuredRunMedia": null, "reactionVideos": [], @@ -298425,7 +297925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 4299815, "featuredRunMedia": null, "reactionVideos": [], @@ -298445,7 +297945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 4301168, "featuredRunMedia": null, "reactionVideos": [], @@ -298465,7 +297965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 4303025, "featuredRunMedia": null, "reactionVideos": [], @@ -298485,7 +297985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 4306148, "featuredRunMedia": null, "reactionVideos": [], @@ -298505,7 +298005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 4306903, "featuredRunMedia": null, "reactionVideos": [], @@ -298525,7 +298025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 4307982, "featuredRunMedia": null, "reactionVideos": [], @@ -298545,7 +298045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 4308533, "featuredRunMedia": null, "reactionVideos": [], @@ -298565,7 +298065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "144072", "time": 4309091, "featuredRunMedia": null, "reactionVideos": [], @@ -298585,7 +298085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 4309131, "featuredRunMedia": null, "reactionVideos": [], @@ -298605,7 +298105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4309798, "featuredRunMedia": null, "reactionVideos": [], @@ -298625,7 +298125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 4310453, "featuredRunMedia": null, "reactionVideos": [], @@ -298645,7 +298145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 4310493, "featuredRunMedia": null, "reactionVideos": [], @@ -298665,7 +298165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 4311196, "featuredRunMedia": null, "reactionVideos": [], @@ -298685,7 +298185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 4311613, "featuredRunMedia": null, "reactionVideos": [], @@ -298705,7 +298205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 4314591, "featuredRunMedia": null, "reactionVideos": [], @@ -298725,7 +298225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 4317021, "featuredRunMedia": null, "reactionVideos": [], @@ -298745,7 +298245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 4318042, "featuredRunMedia": null, "reactionVideos": [], @@ -298765,7 +298265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 4321372, "featuredRunMedia": null, "reactionVideos": [], @@ -298785,7 +298285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 4322377, "featuredRunMedia": null, "reactionVideos": [], @@ -298805,7 +298305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 4323558, "featuredRunMedia": null, "reactionVideos": [], @@ -298825,7 +298325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4324262, "featuredRunMedia": null, "reactionVideos": [], @@ -298845,7 +298345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 4325004, "featuredRunMedia": null, "reactionVideos": [], @@ -298865,7 +298365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 4325876, "featuredRunMedia": null, "reactionVideos": [], @@ -298885,7 +298385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "144074", "time": 4327117, "featuredRunMedia": null, "reactionVideos": [], @@ -298905,7 +298405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 302, + "teamId": "144372", "time": 4328756, "featuredRunMedia": null, "reactionVideos": [], @@ -298925,7 +298425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4330422, "featuredRunMedia": null, "reactionVideos": [], @@ -298945,7 +298445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 4333683, "featuredRunMedia": null, "reactionVideos": [], @@ -298965,7 +298465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 4335270, "featuredRunMedia": null, "reactionVideos": [], @@ -298985,7 +298485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4340857, "featuredRunMedia": null, "reactionVideos": [], @@ -299005,7 +298505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 4341974, "featuredRunMedia": null, "reactionVideos": [], @@ -299025,7 +298525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 4345083, "featuredRunMedia": null, "reactionVideos": [], @@ -299045,7 +298545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 4345281, "featuredRunMedia": null, "reactionVideos": [], @@ -299065,7 +298565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 4349618, "featuredRunMedia": null, "reactionVideos": [], @@ -299085,7 +298585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 408, + "teamId": "144478", "time": 4350273, "featuredRunMedia": null, "reactionVideos": [], @@ -299105,7 +298605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 4352395, "featuredRunMedia": null, "reactionVideos": [], @@ -299125,7 +298625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 4353845, "featuredRunMedia": null, "reactionVideos": [], @@ -299145,7 +298645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 4355411, "featuredRunMedia": null, "reactionVideos": [], @@ -299165,7 +298665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4355652, "featuredRunMedia": null, "reactionVideos": [], @@ -299185,7 +298685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 4356025, "featuredRunMedia": null, "reactionVideos": [], @@ -299205,7 +298705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 4356361, "featuredRunMedia": null, "reactionVideos": [], @@ -299225,7 +298725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 4358015, "featuredRunMedia": null, "reactionVideos": [], @@ -299245,7 +298745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 4359300, "featuredRunMedia": null, "reactionVideos": [], @@ -299265,7 +298765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 4360740, "featuredRunMedia": null, "reactionVideos": [], @@ -299285,7 +298785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "144316", "time": 4361072, "featuredRunMedia": null, "reactionVideos": [], @@ -299305,7 +298805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 4363422, "featuredRunMedia": null, "reactionVideos": [], @@ -299325,7 +298825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 440, + "teamId": "144510", "time": 4365016, "featuredRunMedia": null, "reactionVideos": [], @@ -299345,7 +298845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 4368696, "featuredRunMedia": null, "reactionVideos": [], @@ -299365,7 +298865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 4369018, "featuredRunMedia": null, "reactionVideos": [], @@ -299385,7 +298885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 4377145, "featuredRunMedia": null, "reactionVideos": [], @@ -299405,7 +298905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 4380827, "featuredRunMedia": null, "reactionVideos": [], @@ -299425,7 +298925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 4383096, "featuredRunMedia": null, "reactionVideos": [], @@ -299445,7 +298945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 4385518, "featuredRunMedia": null, "reactionVideos": [], @@ -299465,7 +298965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 4386130, "featuredRunMedia": null, "reactionVideos": [], @@ -299485,7 +298985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 4386607, "featuredRunMedia": null, "reactionVideos": [], @@ -299505,7 +299005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 4387117, "featuredRunMedia": null, "reactionVideos": [], @@ -299525,7 +299025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "144203", "time": 4387796, "featuredRunMedia": null, "reactionVideos": [], @@ -299545,7 +299045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 4389623, "featuredRunMedia": null, "reactionVideos": [], @@ -299565,7 +299065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4392192, "featuredRunMedia": null, "reactionVideos": [], @@ -299585,7 +299085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 4393241, "featuredRunMedia": null, "reactionVideos": [], @@ -299605,7 +299105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 4393607, "featuredRunMedia": null, "reactionVideos": [], @@ -299625,7 +299125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 4396468, "featuredRunMedia": null, "reactionVideos": [], @@ -299645,7 +299145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "144151", "time": 4397661, "featuredRunMedia": null, "reactionVideos": [], @@ -299665,7 +299165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 4398383, "featuredRunMedia": null, "reactionVideos": [], @@ -299685,7 +299185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 4399860, "featuredRunMedia": null, "reactionVideos": [], @@ -299709,7 +299209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 4402064, "featuredRunMedia": null, "reactionVideos": [], @@ -299729,7 +299229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 4403516, "featuredRunMedia": null, "reactionVideos": [], @@ -299749,7 +299249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4406914, "featuredRunMedia": null, "reactionVideos": [], @@ -299769,7 +299269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 4410334, "featuredRunMedia": null, "reactionVideos": [], @@ -299789,7 +299289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 4411049, "featuredRunMedia": null, "reactionVideos": [], @@ -299809,7 +299309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 4414137, "featuredRunMedia": null, "reactionVideos": [], @@ -299829,7 +299329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 4415384, "featuredRunMedia": null, "reactionVideos": [], @@ -299849,7 +299349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 4415420, "featuredRunMedia": null, "reactionVideos": [], @@ -299869,7 +299369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 4419414, "featuredRunMedia": null, "reactionVideos": [], @@ -299889,7 +299389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4421538, "featuredRunMedia": null, "reactionVideos": [], @@ -299909,7 +299409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4426343, "featuredRunMedia": null, "reactionVideos": [], @@ -299929,7 +299429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 4426904, "featuredRunMedia": null, "reactionVideos": [], @@ -299949,7 +299449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 4428039, "featuredRunMedia": null, "reactionVideos": [], @@ -299969,7 +299469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4430717, "featuredRunMedia": null, "reactionVideos": [], @@ -299989,7 +299489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 4432165, "featuredRunMedia": null, "reactionVideos": [], @@ -300009,7 +299509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 4432445, "featuredRunMedia": null, "reactionVideos": [], @@ -300029,7 +299529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 4432521, "featuredRunMedia": null, "reactionVideos": [], @@ -300049,7 +299549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 4433614, "featuredRunMedia": null, "reactionVideos": [], @@ -300069,7 +299569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 4440322, "featuredRunMedia": null, "reactionVideos": [], @@ -300089,7 +299589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 4440639, "featuredRunMedia": null, "reactionVideos": [], @@ -300109,7 +299609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 4441941, "featuredRunMedia": null, "reactionVideos": [], @@ -300129,7 +299629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 4442387, "featuredRunMedia": null, "reactionVideos": [], @@ -300149,7 +299649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 4443955, "featuredRunMedia": null, "reactionVideos": [], @@ -300169,7 +299669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 4445646, "featuredRunMedia": null, "reactionVideos": [], @@ -300189,7 +299689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 4445684, "featuredRunMedia": null, "reactionVideos": [], @@ -300209,7 +299709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 4448001, "featuredRunMedia": null, "reactionVideos": [], @@ -300229,7 +299729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 4449460, "featuredRunMedia": null, "reactionVideos": [], @@ -300249,7 +299749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 190, + "teamId": "144260", "time": 4449552, "featuredRunMedia": null, "reactionVideos": [], @@ -300269,7 +299769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 4451241, "featuredRunMedia": null, "reactionVideos": [], @@ -300289,7 +299789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 4451686, "featuredRunMedia": null, "reactionVideos": [], @@ -300309,7 +299809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4452932, "featuredRunMedia": null, "reactionVideos": [], @@ -300329,7 +299829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4453201, "featuredRunMedia": null, "reactionVideos": [], @@ -300349,7 +299849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 440, + "teamId": "144510", "time": 4453980, "featuredRunMedia": null, "reactionVideos": [], @@ -300369,7 +299869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "144197", "time": 4454161, "featuredRunMedia": null, "reactionVideos": [], @@ -300389,7 +299889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 4454983, "featuredRunMedia": null, "reactionVideos": [], @@ -300409,7 +299909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 4455279, "featuredRunMedia": null, "reactionVideos": [], @@ -300429,7 +299929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "144186", "time": 4457059, "featuredRunMedia": null, "reactionVideos": [], @@ -300449,7 +299949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 4457120, "featuredRunMedia": null, "reactionVideos": [], @@ -300469,7 +299969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 4457809, "featuredRunMedia": null, "reactionVideos": [], @@ -300489,7 +299989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4463204, "featuredRunMedia": null, "reactionVideos": [], @@ -300509,7 +300009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 4463543, "featuredRunMedia": null, "reactionVideos": [], @@ -300529,7 +300029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 4467087, "featuredRunMedia": null, "reactionVideos": [], @@ -300549,7 +300049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 4468721, "featuredRunMedia": null, "reactionVideos": [], @@ -300569,7 +300069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 4468880, "featuredRunMedia": null, "reactionVideos": [], @@ -300589,7 +300089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 4476369, "featuredRunMedia": null, "reactionVideos": [], @@ -300609,7 +300109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 4477522, "featuredRunMedia": null, "reactionVideos": [], @@ -300629,7 +300129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 4484270, "featuredRunMedia": null, "reactionVideos": [], @@ -300649,7 +300149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 4484362, "featuredRunMedia": null, "reactionVideos": [], @@ -300669,7 +300169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 4486704, "featuredRunMedia": null, "reactionVideos": [], @@ -300689,7 +300189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4489734, "featuredRunMedia": null, "reactionVideos": [], @@ -300709,7 +300209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 4489773, "featuredRunMedia": null, "reactionVideos": [], @@ -300729,7 +300229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4494691, "featuredRunMedia": null, "reactionVideos": [], @@ -300749,7 +300249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 4497375, "featuredRunMedia": null, "reactionVideos": [], @@ -300769,7 +300269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 4497491, "featuredRunMedia": null, "reactionVideos": [], @@ -300789,7 +300289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 4497877, "featuredRunMedia": null, "reactionVideos": [], @@ -300809,7 +300309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 4498034, "featuredRunMedia": null, "reactionVideos": [], @@ -300829,7 +300329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 4500084, "featuredRunMedia": null, "reactionVideos": [], @@ -300849,7 +300349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "144170", "time": 4501910, "featuredRunMedia": null, "reactionVideos": [], @@ -300869,7 +300369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4502006, "featuredRunMedia": null, "reactionVideos": [], @@ -300889,7 +300389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 4507573, "featuredRunMedia": null, "reactionVideos": [], @@ -300909,7 +300409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 4508563, "featuredRunMedia": null, "reactionVideos": [], @@ -300929,7 +300429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 4510372, "featuredRunMedia": null, "reactionVideos": [], @@ -300949,7 +300449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 4514517, "featuredRunMedia": null, "reactionVideos": [], @@ -300969,7 +300469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "144190", "time": 4516425, "featuredRunMedia": null, "reactionVideos": [], @@ -300989,7 +300489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 381, + "teamId": "144451", "time": 4521226, "featuredRunMedia": null, "reactionVideos": [], @@ -301009,7 +300509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 4522967, "featuredRunMedia": null, "reactionVideos": [], @@ -301029,7 +300529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 4523546, "featuredRunMedia": null, "reactionVideos": [], @@ -301049,7 +300549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 4526329, "featuredRunMedia": null, "reactionVideos": [], @@ -301069,7 +300569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 4526773, "featuredRunMedia": null, "reactionVideos": [], @@ -301089,7 +300589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 4528191, "featuredRunMedia": null, "reactionVideos": [], @@ -301109,7 +300609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 4529204, "featuredRunMedia": null, "reactionVideos": [], @@ -301129,7 +300629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 4530655, "featuredRunMedia": null, "reactionVideos": [], @@ -301149,7 +300649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 4531734, "featuredRunMedia": null, "reactionVideos": [], @@ -301169,7 +300669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 4533060, "featuredRunMedia": null, "reactionVideos": [], @@ -301189,7 +300689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 4534722, "featuredRunMedia": null, "reactionVideos": [], @@ -301209,7 +300709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 4535262, "featuredRunMedia": null, "reactionVideos": [], @@ -301229,7 +300729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 4535620, "featuredRunMedia": null, "reactionVideos": [], @@ -301249,7 +300749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 4539520, "featuredRunMedia": null, "reactionVideos": [], @@ -301273,7 +300773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "144155", "time": 4541184, "featuredRunMedia": null, "reactionVideos": [], @@ -301293,7 +300793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "144387", "time": 4541214, "featuredRunMedia": null, "reactionVideos": [], @@ -301313,7 +300813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 4543455, "featuredRunMedia": null, "reactionVideos": [], @@ -301333,7 +300833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 4544826, "featuredRunMedia": null, "reactionVideos": [], @@ -301353,7 +300853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 4546069, "featuredRunMedia": null, "reactionVideos": [], @@ -301373,7 +300873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 4546376, "featuredRunMedia": null, "reactionVideos": [], @@ -301393,7 +300893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "144334", "time": 4547888, "featuredRunMedia": null, "reactionVideos": [], @@ -301413,7 +300913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 4548041, "featuredRunMedia": null, "reactionVideos": [], @@ -301433,7 +300933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 4549850, "featuredRunMedia": null, "reactionVideos": [], @@ -301453,7 +300953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 4551218, "featuredRunMedia": null, "reactionVideos": [], @@ -301473,7 +300973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 4552563, "featuredRunMedia": null, "reactionVideos": [], @@ -301493,7 +300993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "144155", "time": 4553441, "featuredRunMedia": null, "reactionVideos": [], @@ -301513,7 +301013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 4553859, "featuredRunMedia": null, "reactionVideos": [], @@ -301533,7 +301033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 4554643, "featuredRunMedia": null, "reactionVideos": [], @@ -301553,7 +301053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 4555467, "featuredRunMedia": null, "reactionVideos": [], @@ -301573,7 +301073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 4555664, "featuredRunMedia": null, "reactionVideos": [], @@ -301593,7 +301093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4556667, "featuredRunMedia": null, "reactionVideos": [], @@ -301613,7 +301113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4557026, "featuredRunMedia": null, "reactionVideos": [], @@ -301633,7 +301133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4557800, "featuredRunMedia": null, "reactionVideos": [], @@ -301653,7 +301153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 4558228, "featuredRunMedia": null, "reactionVideos": [], @@ -301673,7 +301173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4558915, "featuredRunMedia": null, "reactionVideos": [], @@ -301693,7 +301193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 4559033, "featuredRunMedia": null, "reactionVideos": [], @@ -301713,7 +301213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 4561141, "featuredRunMedia": null, "reactionVideos": [], @@ -301733,7 +301233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 4561226, "featuredRunMedia": null, "reactionVideos": [], @@ -301753,7 +301253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 4561554, "featuredRunMedia": null, "reactionVideos": [], @@ -301773,7 +301273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "144336", "time": 4562015, "featuredRunMedia": null, "reactionVideos": [], @@ -301793,7 +301293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 4562831, "featuredRunMedia": null, "reactionVideos": [], @@ -301813,7 +301313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 379, + "teamId": "144449", "time": 4563018, "featuredRunMedia": null, "reactionVideos": [], @@ -301833,7 +301333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 4563121, "featuredRunMedia": null, "reactionVideos": [], @@ -301853,7 +301353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 4563153, "featuredRunMedia": null, "reactionVideos": [], @@ -301873,7 +301373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 4564827, "featuredRunMedia": null, "reactionVideos": [], @@ -301893,7 +301393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 4566213, "featuredRunMedia": null, "reactionVideos": [], @@ -301913,7 +301413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 4566262, "featuredRunMedia": null, "reactionVideos": [], @@ -301933,7 +301433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 4567057, "featuredRunMedia": null, "reactionVideos": [], @@ -301953,7 +301453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 4568654, "featuredRunMedia": null, "reactionVideos": [], @@ -301973,7 +301473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 397, + "teamId": "144467", "time": 4570229, "featuredRunMedia": null, "reactionVideos": [], @@ -301993,7 +301493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 4575983, "featuredRunMedia": null, "reactionVideos": [], @@ -302013,7 +301513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 4577136, "featuredRunMedia": null, "reactionVideos": [], @@ -302033,7 +301533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 4577949, "featuredRunMedia": null, "reactionVideos": [], @@ -302053,7 +301553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 4579227, "featuredRunMedia": null, "reactionVideos": [], @@ -302077,7 +301577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 4582674, "featuredRunMedia": null, "reactionVideos": [], @@ -302097,7 +301597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 4586896, "featuredRunMedia": null, "reactionVideos": [], @@ -302117,7 +301617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 4587456, "featuredRunMedia": null, "reactionVideos": [], @@ -302137,7 +301637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 4587812, "featuredRunMedia": null, "reactionVideos": [], @@ -302157,7 +301657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 4588834, "featuredRunMedia": null, "reactionVideos": [], @@ -302177,7 +301677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "144076", "time": 4591145, "featuredRunMedia": null, "reactionVideos": [], @@ -302197,7 +301697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 4592920, "featuredRunMedia": null, "reactionVideos": [], @@ -302217,7 +301717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 4595363, "featuredRunMedia": null, "reactionVideos": [], @@ -302237,7 +301737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 4595801, "featuredRunMedia": null, "reactionVideos": [], @@ -302257,7 +301757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 380, + "teamId": "144450", "time": 4596184, "featuredRunMedia": null, "reactionVideos": [], @@ -302277,7 +301777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 418, + "teamId": "144488", "time": 4598258, "featuredRunMedia": null, "reactionVideos": [], @@ -302297,7 +301797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 4599548, "featuredRunMedia": null, "reactionVideos": [], @@ -302317,7 +301817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 428, + "teamId": "144498", "time": 4601397, "featuredRunMedia": null, "reactionVideos": [], @@ -302337,7 +301837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 4605087, "featuredRunMedia": null, "reactionVideos": [], @@ -302357,7 +301857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 4605669, "featuredRunMedia": null, "reactionVideos": [], @@ -302377,7 +301877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 4605724, "featuredRunMedia": null, "reactionVideos": [], @@ -302397,7 +301897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 4613024, "featuredRunMedia": null, "reactionVideos": [], @@ -302417,7 +301917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 4614733, "featuredRunMedia": null, "reactionVideos": [], @@ -302437,7 +301937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 157, + "teamId": "144227", "time": 4616142, "featuredRunMedia": null, "reactionVideos": [], @@ -302457,7 +301957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 4617505, "featuredRunMedia": null, "reactionVideos": [], @@ -302477,7 +301977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "144289", "time": 4618133, "featuredRunMedia": null, "reactionVideos": [], @@ -302497,7 +301997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 4623982, "featuredRunMedia": null, "reactionVideos": [], @@ -302517,7 +302017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 4624076, "featuredRunMedia": null, "reactionVideos": [], @@ -302537,7 +302037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 4624540, "featuredRunMedia": null, "reactionVideos": [], @@ -302557,7 +302057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 4625692, "featuredRunMedia": null, "reactionVideos": [], @@ -302577,7 +302077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 4630273, "featuredRunMedia": null, "reactionVideos": [], @@ -302597,7 +302097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 4630408, "featuredRunMedia": null, "reactionVideos": [], @@ -302617,7 +302117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 4632418, "featuredRunMedia": null, "reactionVideos": [], @@ -302637,7 +302137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 4633944, "featuredRunMedia": null, "reactionVideos": [], @@ -302657,7 +302157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4634377, "featuredRunMedia": null, "reactionVideos": [], @@ -302677,7 +302177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 4634712, "featuredRunMedia": null, "reactionVideos": [], @@ -302697,7 +302197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 4637033, "featuredRunMedia": null, "reactionVideos": [], @@ -302717,7 +302217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "144216", "time": 4637330, "featuredRunMedia": null, "reactionVideos": [], @@ -302737,7 +302237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 4639208, "featuredRunMedia": null, "reactionVideos": [], @@ -302757,7 +302257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 4640159, "featuredRunMedia": null, "reactionVideos": [], @@ -302777,7 +302277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 4640212, "featuredRunMedia": null, "reactionVideos": [], @@ -302797,7 +302297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 4640945, "featuredRunMedia": null, "reactionVideos": [], @@ -302817,7 +302317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 4642265, "featuredRunMedia": null, "reactionVideos": [], @@ -302837,7 +302337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "144289", "time": 4645176, "featuredRunMedia": null, "reactionVideos": [], @@ -302857,7 +302357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4645541, "featuredRunMedia": null, "reactionVideos": [], @@ -302877,7 +302377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 4646063, "featuredRunMedia": null, "reactionVideos": [], @@ -302897,7 +302397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 4646098, "featuredRunMedia": null, "reactionVideos": [], @@ -302917,7 +302417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 4647192, "featuredRunMedia": null, "reactionVideos": [], @@ -302937,7 +302437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 4648719, "featuredRunMedia": null, "reactionVideos": [], @@ -302957,7 +302457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 4653798, "featuredRunMedia": null, "reactionVideos": [], @@ -302977,7 +302477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 4654983, "featuredRunMedia": null, "reactionVideos": [], @@ -302997,7 +302497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 375, + "teamId": "144445", "time": 4655477, "featuredRunMedia": null, "reactionVideos": [], @@ -303017,7 +302517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "144174", "time": 4655556, "featuredRunMedia": null, "reactionVideos": [], @@ -303037,7 +302537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "144247", "time": 4658737, "featuredRunMedia": null, "reactionVideos": [], @@ -303057,7 +302557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 4658966, "featuredRunMedia": null, "reactionVideos": [], @@ -303077,7 +302577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 4659095, "featuredRunMedia": null, "reactionVideos": [], @@ -303097,7 +302597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "144151", "time": 4659421, "featuredRunMedia": null, "reactionVideos": [], @@ -303117,7 +302617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 145, + "teamId": "144215", "time": 4660690, "featuredRunMedia": null, "reactionVideos": [], @@ -303137,7 +302637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 4662641, "featuredRunMedia": null, "reactionVideos": [], @@ -303157,7 +302657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 4663019, "featuredRunMedia": null, "reactionVideos": [], @@ -303177,7 +302677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4665969, "featuredRunMedia": null, "reactionVideos": [], @@ -303197,7 +302697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4666961, "featuredRunMedia": null, "reactionVideos": [], @@ -303217,7 +302717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 4670173, "featuredRunMedia": null, "reactionVideos": [], @@ -303237,7 +302737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 4676428, "featuredRunMedia": null, "reactionVideos": [], @@ -303257,7 +302757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "144390", "time": 4682219, "featuredRunMedia": null, "reactionVideos": [], @@ -303277,7 +302777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 4682473, "featuredRunMedia": null, "reactionVideos": [], @@ -303297,7 +302797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4684877, "featuredRunMedia": null, "reactionVideos": [], @@ -303317,7 +302817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 4685245, "featuredRunMedia": null, "reactionVideos": [], @@ -303337,7 +302837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 4686925, "featuredRunMedia": null, "reactionVideos": [], @@ -303357,7 +302857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 93, + "teamId": "144163", "time": 4688635, "featuredRunMedia": null, "reactionVideos": [], @@ -303377,7 +302877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 4689577, "featuredRunMedia": null, "reactionVideos": [], @@ -303397,7 +302897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 4691163, "featuredRunMedia": null, "reactionVideos": [], @@ -303417,7 +302917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "144375", "time": 4691213, "featuredRunMedia": null, "reactionVideos": [], @@ -303437,7 +302937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 4691275, "featuredRunMedia": null, "reactionVideos": [], @@ -303457,7 +302957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 4692959, "featuredRunMedia": null, "reactionVideos": [], @@ -303477,7 +302977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 4694417, "featuredRunMedia": null, "reactionVideos": [], @@ -303497,7 +302997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 4694579, "featuredRunMedia": null, "reactionVideos": [], @@ -303517,7 +303017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4697295, "featuredRunMedia": null, "reactionVideos": [], @@ -303537,7 +303037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "144143", "time": 4697395, "featuredRunMedia": null, "reactionVideos": [], @@ -303557,7 +303057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "144407", "time": 4697962, "featuredRunMedia": null, "reactionVideos": [], @@ -303577,7 +303077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 4698432, "featuredRunMedia": null, "reactionVideos": [], @@ -303597,7 +303097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 4699247, "featuredRunMedia": null, "reactionVideos": [], @@ -303617,7 +303117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 4703607, "featuredRunMedia": null, "reactionVideos": [], @@ -303637,7 +303137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 4703779, "featuredRunMedia": null, "reactionVideos": [], @@ -303657,7 +303157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 4703899, "featuredRunMedia": null, "reactionVideos": [], @@ -303677,7 +303177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 4704226, "featuredRunMedia": null, "reactionVideos": [], @@ -303697,7 +303197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 4704509, "featuredRunMedia": null, "reactionVideos": [], @@ -303717,7 +303217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 4704764, "featuredRunMedia": null, "reactionVideos": [], @@ -303737,7 +303237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 4707146, "featuredRunMedia": null, "reactionVideos": [], @@ -303757,7 +303257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 4708711, "featuredRunMedia": null, "reactionVideos": [], @@ -303777,7 +303277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 170, + "teamId": "144240", "time": 4709705, "featuredRunMedia": null, "reactionVideos": [], @@ -303797,7 +303297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 4709918, "featuredRunMedia": null, "reactionVideos": [], @@ -303817,7 +303317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 4714787, "featuredRunMedia": null, "reactionVideos": [], @@ -303837,7 +303337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 4720346, "featuredRunMedia": null, "reactionVideos": [], @@ -303857,7 +303357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 4722680, "featuredRunMedia": null, "reactionVideos": [], @@ -303881,7 +303381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4723911, "featuredRunMedia": null, "reactionVideos": [], @@ -303901,7 +303401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 4728302, "featuredRunMedia": null, "reactionVideos": [], @@ -303921,7 +303421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 4728841, "featuredRunMedia": null, "reactionVideos": [], @@ -303941,7 +303441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 4731291, "featuredRunMedia": null, "reactionVideos": [], @@ -303961,7 +303461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 4733531, "featuredRunMedia": null, "reactionVideos": [], @@ -303981,7 +303481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 4735614, "featuredRunMedia": null, "reactionVideos": [], @@ -304001,7 +303501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4737502, "featuredRunMedia": null, "reactionVideos": [], @@ -304021,7 +303521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 4739654, "featuredRunMedia": null, "reactionVideos": [], @@ -304041,7 +303541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 4739811, "featuredRunMedia": null, "reactionVideos": [], @@ -304061,7 +303561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 4741714, "featuredRunMedia": null, "reactionVideos": [], @@ -304081,7 +303581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 4742182, "featuredRunMedia": null, "reactionVideos": [], @@ -304101,7 +303601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 4742817, "featuredRunMedia": null, "reactionVideos": [], @@ -304121,7 +303621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 4749118, "featuredRunMedia": null, "reactionVideos": [], @@ -304141,7 +303641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 4751139, "featuredRunMedia": null, "reactionVideos": [], @@ -304161,7 +303661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 4752882, "featuredRunMedia": null, "reactionVideos": [], @@ -304181,7 +303681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 4754510, "featuredRunMedia": null, "reactionVideos": [], @@ -304201,7 +303701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 321, + "teamId": "144391", "time": 4756906, "featuredRunMedia": null, "reactionVideos": [], @@ -304221,7 +303721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4757472, "featuredRunMedia": null, "reactionVideos": [], @@ -304241,7 +303741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 4758351, "featuredRunMedia": null, "reactionVideos": [], @@ -304261,7 +303761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 4758653, "featuredRunMedia": null, "reactionVideos": [], @@ -304281,7 +303781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4759817, "featuredRunMedia": null, "reactionVideos": [], @@ -304301,7 +303801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 4760150, "featuredRunMedia": null, "reactionVideos": [], @@ -304321,7 +303821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 4763592, "featuredRunMedia": null, "reactionVideos": [], @@ -304341,7 +303841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "144253", "time": 4764068, "featuredRunMedia": null, "reactionVideos": [], @@ -304361,7 +303861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 4766167, "featuredRunMedia": null, "reactionVideos": [], @@ -304381,7 +303881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 4766329, "featuredRunMedia": null, "reactionVideos": [], @@ -304401,7 +303901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 4767381, "featuredRunMedia": null, "reactionVideos": [], @@ -304421,7 +303921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 4767959, "featuredRunMedia": null, "reactionVideos": [], @@ -304441,7 +303941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 4770432, "featuredRunMedia": null, "reactionVideos": [], @@ -304461,7 +303961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 4772426, "featuredRunMedia": null, "reactionVideos": [], @@ -304481,7 +303981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "144137", "time": 4773210, "featuredRunMedia": null, "reactionVideos": [], @@ -304501,7 +304001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 4775681, "featuredRunMedia": null, "reactionVideos": [], @@ -304521,7 +304021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 395, + "teamId": "144465", "time": 4777175, "featuredRunMedia": null, "reactionVideos": [], @@ -304541,7 +304041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 4779014, "featuredRunMedia": null, "reactionVideos": [], @@ -304561,7 +304061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 4780107, "featuredRunMedia": null, "reactionVideos": [], @@ -304585,7 +304085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 4780896, "featuredRunMedia": null, "reactionVideos": [], @@ -304605,7 +304105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 4783407, "featuredRunMedia": null, "reactionVideos": [], @@ -304625,7 +304125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 4787271, "featuredRunMedia": null, "reactionVideos": [], @@ -304645,7 +304145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 4790202, "featuredRunMedia": null, "reactionVideos": [], @@ -304669,7 +304169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 4790583, "featuredRunMedia": null, "reactionVideos": [], @@ -304689,7 +304189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 4796752, "featuredRunMedia": null, "reactionVideos": [], @@ -304709,7 +304209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 4797038, "featuredRunMedia": null, "reactionVideos": [], @@ -304729,7 +304229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 4797270, "featuredRunMedia": null, "reactionVideos": [], @@ -304749,7 +304249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 4800982, "featuredRunMedia": null, "reactionVideos": [], @@ -304769,7 +304269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 4802504, "featuredRunMedia": null, "reactionVideos": [], @@ -304789,7 +304289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 4804457, "featuredRunMedia": null, "reactionVideos": [], @@ -304809,7 +304309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 4805354, "featuredRunMedia": null, "reactionVideos": [], @@ -304829,7 +304329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 381, + "teamId": "144451", "time": 4810360, "featuredRunMedia": null, "reactionVideos": [], @@ -304849,7 +304349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 4810424, "featuredRunMedia": null, "reactionVideos": [], @@ -304869,7 +304369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 4811111, "featuredRunMedia": null, "reactionVideos": [], @@ -304889,7 +304389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 4811922, "featuredRunMedia": null, "reactionVideos": [], @@ -304909,7 +304409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 4812377, "featuredRunMedia": null, "reactionVideos": [], @@ -304929,7 +304429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 4812460, "featuredRunMedia": null, "reactionVideos": [], @@ -304949,7 +304449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 4818091, "featuredRunMedia": null, "reactionVideos": [], @@ -304969,7 +304469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 4822832, "featuredRunMedia": null, "reactionVideos": [], @@ -304989,7 +304489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 4822920, "featuredRunMedia": null, "reactionVideos": [], @@ -305009,7 +304509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "144336", "time": 4823129, "featuredRunMedia": null, "reactionVideos": [], @@ -305029,7 +304529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4823299, "featuredRunMedia": null, "reactionVideos": [], @@ -305049,7 +304549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 4823788, "featuredRunMedia": null, "reactionVideos": [], @@ -305069,7 +304569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 4825173, "featuredRunMedia": null, "reactionVideos": [], @@ -305089,7 +304589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 4825273, "featuredRunMedia": null, "reactionVideos": [], @@ -305109,7 +304609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 4828076, "featuredRunMedia": null, "reactionVideos": [], @@ -305129,7 +304629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 4828128, "featuredRunMedia": null, "reactionVideos": [], @@ -305149,7 +304649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 4828252, "featuredRunMedia": null, "reactionVideos": [], @@ -305169,7 +304669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 4830749, "featuredRunMedia": null, "reactionVideos": [], @@ -305189,7 +304689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 4831814, "featuredRunMedia": null, "reactionVideos": [], @@ -305209,7 +304709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "144234", "time": 4832398, "featuredRunMedia": null, "reactionVideos": [], @@ -305229,7 +304729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 4837029, "featuredRunMedia": null, "reactionVideos": [], @@ -305249,7 +304749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 4837758, "featuredRunMedia": null, "reactionVideos": [], @@ -305269,7 +304769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 4837951, "featuredRunMedia": null, "reactionVideos": [], @@ -305289,7 +304789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "144409", "time": 4839106, "featuredRunMedia": null, "reactionVideos": [], @@ -305309,7 +304809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 4842163, "featuredRunMedia": null, "reactionVideos": [], @@ -305329,7 +304829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 4842766, "featuredRunMedia": null, "reactionVideos": [], @@ -305349,7 +304849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 4844319, "featuredRunMedia": null, "reactionVideos": [], @@ -305369,7 +304869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 4845640, "featuredRunMedia": null, "reactionVideos": [], @@ -305389,7 +304889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 4846124, "featuredRunMedia": null, "reactionVideos": [], @@ -305409,7 +304909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 4846383, "featuredRunMedia": null, "reactionVideos": [], @@ -305429,7 +304929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 4847253, "featuredRunMedia": null, "reactionVideos": [], @@ -305449,7 +304949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 4849299, "featuredRunMedia": null, "reactionVideos": [], @@ -305469,7 +304969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 4850902, "featuredRunMedia": null, "reactionVideos": [], @@ -305489,7 +304989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 4851548, "featuredRunMedia": null, "reactionVideos": [], @@ -305509,7 +305009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 4852446, "featuredRunMedia": null, "reactionVideos": [], @@ -305529,7 +305029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 4853136, "featuredRunMedia": null, "reactionVideos": [], @@ -305549,7 +305049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 4853549, "featuredRunMedia": null, "reactionVideos": [], @@ -305569,7 +305069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 4854707, "featuredRunMedia": null, "reactionVideos": [], @@ -305589,7 +305089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 4856960, "featuredRunMedia": null, "reactionVideos": [], @@ -305609,7 +305109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4857570, "featuredRunMedia": null, "reactionVideos": [], @@ -305629,7 +305129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "144237", "time": 4860506, "featuredRunMedia": null, "reactionVideos": [], @@ -305649,7 +305149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 4861036, "featuredRunMedia": null, "reactionVideos": [], @@ -305669,7 +305169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 4862037, "featuredRunMedia": null, "reactionVideos": [], @@ -305689,7 +305189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 4862853, "featuredRunMedia": null, "reactionVideos": [], @@ -305709,7 +305209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 4863008, "featuredRunMedia": null, "reactionVideos": [], @@ -305729,7 +305229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 4865096, "featuredRunMedia": null, "reactionVideos": [], @@ -305749,7 +305249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 4865873, "featuredRunMedia": null, "reactionVideos": [], @@ -305769,7 +305269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 4866005, "featuredRunMedia": null, "reactionVideos": [], @@ -305789,7 +305289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 4869452, "featuredRunMedia": null, "reactionVideos": [], @@ -305809,7 +305309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 4873412, "featuredRunMedia": null, "reactionVideos": [], @@ -305829,7 +305329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 4874574, "featuredRunMedia": null, "reactionVideos": [], @@ -305849,7 +305349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "144375", "time": 4875971, "featuredRunMedia": null, "reactionVideos": [], @@ -305873,7 +305373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 4876762, "featuredRunMedia": null, "reactionVideos": [], @@ -305893,7 +305393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 375, + "teamId": "144445", "time": 4878048, "featuredRunMedia": null, "reactionVideos": [], @@ -305913,7 +305413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 4878085, "featuredRunMedia": null, "reactionVideos": [], @@ -305933,7 +305433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4880310, "featuredRunMedia": null, "reactionVideos": [], @@ -305953,7 +305453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "144155", "time": 4883133, "featuredRunMedia": null, "reactionVideos": [], @@ -305973,7 +305473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 4883211, "featuredRunMedia": null, "reactionVideos": [], @@ -305993,7 +305493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 4883452, "featuredRunMedia": null, "reactionVideos": [], @@ -306013,7 +305513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "144216", "time": 4884174, "featuredRunMedia": null, "reactionVideos": [], @@ -306033,7 +305533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 4884317, "featuredRunMedia": null, "reactionVideos": [], @@ -306057,7 +305557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 4884468, "featuredRunMedia": null, "reactionVideos": [], @@ -306077,7 +305577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 4884938, "featuredRunMedia": null, "reactionVideos": [], @@ -306097,7 +305597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 4885296, "featuredRunMedia": null, "reactionVideos": [], @@ -306117,7 +305617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 4886546, "featuredRunMedia": null, "reactionVideos": [], @@ -306137,7 +305637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "144299", "time": 4886878, "featuredRunMedia": null, "reactionVideos": [], @@ -306157,7 +305657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 4886984, "featuredRunMedia": null, "reactionVideos": [], @@ -306177,7 +305677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 4889210, "featuredRunMedia": null, "reactionVideos": [], @@ -306197,7 +305697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "144267", "time": 4895446, "featuredRunMedia": null, "reactionVideos": [], @@ -306217,7 +305717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 4897776, "featuredRunMedia": null, "reactionVideos": [], @@ -306237,7 +305737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 4900438, "featuredRunMedia": null, "reactionVideos": [], @@ -306257,7 +305757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 302, + "teamId": "144372", "time": 4900664, "featuredRunMedia": null, "reactionVideos": [], @@ -306277,7 +305777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 4902221, "featuredRunMedia": null, "reactionVideos": [], @@ -306297,7 +305797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 4903305, "featuredRunMedia": null, "reactionVideos": [], @@ -306317,7 +305817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 4904455, "featuredRunMedia": null, "reactionVideos": [], @@ -306337,7 +305837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 400, + "teamId": "144470", "time": 4904572, "featuredRunMedia": null, "reactionVideos": [], @@ -306361,7 +305861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 4905798, "featuredRunMedia": null, "reactionVideos": [], @@ -306381,7 +305881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 377, + "teamId": "144447", "time": 4906589, "featuredRunMedia": null, "reactionVideos": [], @@ -306401,7 +305901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 4909285, "featuredRunMedia": null, "reactionVideos": [], @@ -306421,7 +305921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 4909877, "featuredRunMedia": null, "reactionVideos": [], @@ -306441,7 +305941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4914954, "featuredRunMedia": null, "reactionVideos": [], @@ -306461,7 +305961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 4916310, "featuredRunMedia": null, "reactionVideos": [], @@ -306481,7 +305981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 4917240, "featuredRunMedia": null, "reactionVideos": [], @@ -306501,7 +306001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 4917286, "featuredRunMedia": null, "reactionVideos": [], @@ -306521,7 +306021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 4921961, "featuredRunMedia": null, "reactionVideos": [], @@ -306541,7 +306041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 4922576, "featuredRunMedia": null, "reactionVideos": [], @@ -306561,7 +306061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 4924159, "featuredRunMedia": null, "reactionVideos": [], @@ -306581,7 +306081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 4927035, "featuredRunMedia": null, "reactionVideos": [], @@ -306601,7 +306101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 4928184, "featuredRunMedia": null, "reactionVideos": [], @@ -306621,7 +306121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 4928410, "featuredRunMedia": null, "reactionVideos": [], @@ -306641,7 +306141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 4929307, "featuredRunMedia": null, "reactionVideos": [], @@ -306665,7 +306165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 4929571, "featuredRunMedia": null, "reactionVideos": [], @@ -306685,7 +306185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 4930014, "featuredRunMedia": null, "reactionVideos": [], @@ -306705,7 +306205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 4933558, "featuredRunMedia": null, "reactionVideos": [], @@ -306725,7 +306225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 4935810, "featuredRunMedia": null, "reactionVideos": [], @@ -306745,7 +306245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 321, + "teamId": "144391", "time": 4935991, "featuredRunMedia": null, "reactionVideos": [], @@ -306765,7 +306265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 4937379, "featuredRunMedia": null, "reactionVideos": [], @@ -306785,7 +306285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 4937442, "featuredRunMedia": null, "reactionVideos": [], @@ -306805,7 +306305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 4937487, "featuredRunMedia": null, "reactionVideos": [], @@ -306825,7 +306325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 4938206, "featuredRunMedia": null, "reactionVideos": [], @@ -306845,7 +306345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 407, + "teamId": "144477", "time": 4939394, "featuredRunMedia": null, "reactionVideos": [], @@ -306865,7 +306365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 4940630, "featuredRunMedia": null, "reactionVideos": [], @@ -306885,7 +306385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 4941412, "featuredRunMedia": null, "reactionVideos": [], @@ -306905,7 +306405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 4941523, "featuredRunMedia": null, "reactionVideos": [], @@ -306925,7 +306425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "144190", "time": 4941944, "featuredRunMedia": null, "reactionVideos": [], @@ -306945,7 +306445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 4943859, "featuredRunMedia": null, "reactionVideos": [], @@ -306965,7 +306465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 4944140, "featuredRunMedia": null, "reactionVideos": [], @@ -306985,7 +306485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 4944619, "featuredRunMedia": null, "reactionVideos": [], @@ -307005,7 +306505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 4944936, "featuredRunMedia": null, "reactionVideos": [], @@ -307025,7 +306525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 4946998, "featuredRunMedia": null, "reactionVideos": [], @@ -307045,7 +306545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 4947187, "featuredRunMedia": null, "reactionVideos": [], @@ -307065,7 +306565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 4947356, "featuredRunMedia": null, "reactionVideos": [], @@ -307085,7 +306585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 4948505, "featuredRunMedia": null, "reactionVideos": [], @@ -307105,7 +306605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 4950988, "featuredRunMedia": null, "reactionVideos": [], @@ -307125,7 +306625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 4954286, "featuredRunMedia": null, "reactionVideos": [], @@ -307145,7 +306645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 4955072, "featuredRunMedia": null, "reactionVideos": [], @@ -307165,7 +306665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 4959732, "featuredRunMedia": null, "reactionVideos": [], @@ -307185,7 +306685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 4960721, "featuredRunMedia": null, "reactionVideos": [], @@ -307205,7 +306705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 4961282, "featuredRunMedia": null, "reactionVideos": [], @@ -307225,7 +306725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 4964723, "featuredRunMedia": null, "reactionVideos": [], @@ -307249,7 +306749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 4965053, "featuredRunMedia": null, "reactionVideos": [], @@ -307269,7 +306769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 4966496, "featuredRunMedia": null, "reactionVideos": [], @@ -307289,7 +306789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 4967472, "featuredRunMedia": null, "reactionVideos": [], @@ -307309,7 +306809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 397, + "teamId": "144467", "time": 4967577, "featuredRunMedia": null, "reactionVideos": [], @@ -307329,7 +306829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 4970632, "featuredRunMedia": null, "reactionVideos": [], @@ -307349,7 +306849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 4970761, "featuredRunMedia": null, "reactionVideos": [], @@ -307369,7 +306869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 4975119, "featuredRunMedia": null, "reactionVideos": [], @@ -307389,7 +306889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 4976162, "featuredRunMedia": null, "reactionVideos": [], @@ -307409,7 +306909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 4976871, "featuredRunMedia": null, "reactionVideos": [], @@ -307429,7 +306929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 4977396, "featuredRunMedia": null, "reactionVideos": [], @@ -307449,7 +306949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 4977465, "featuredRunMedia": null, "reactionVideos": [], @@ -307469,7 +306969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 4979775, "featuredRunMedia": null, "reactionVideos": [], @@ -307489,7 +306989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 4980814, "featuredRunMedia": null, "reactionVideos": [], @@ -307513,7 +307013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 4981774, "featuredRunMedia": null, "reactionVideos": [], @@ -307533,7 +307033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 4982374, "featuredRunMedia": null, "reactionVideos": [], @@ -307553,7 +307053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 4982996, "featuredRunMedia": null, "reactionVideos": [], @@ -307573,7 +307073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 4984331, "featuredRunMedia": null, "reactionVideos": [], @@ -307593,7 +307093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 4985747, "featuredRunMedia": null, "reactionVideos": [], @@ -307613,7 +307113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "144246", "time": 4987050, "featuredRunMedia": null, "reactionVideos": [], @@ -307633,7 +307133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 4987468, "featuredRunMedia": null, "reactionVideos": [], @@ -307653,7 +307153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 4988861, "featuredRunMedia": null, "reactionVideos": [], @@ -307673,7 +307173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 170, + "teamId": "144240", "time": 4990023, "featuredRunMedia": null, "reactionVideos": [], @@ -307693,7 +307193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 4990948, "featuredRunMedia": null, "reactionVideos": [], @@ -307713,7 +307213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 4991075, "featuredRunMedia": null, "reactionVideos": [], @@ -307733,7 +307233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 4991644, "featuredRunMedia": null, "reactionVideos": [], @@ -307753,7 +307253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 391, + "teamId": "144461", "time": 4994466, "featuredRunMedia": null, "reactionVideos": [], @@ -307773,7 +307273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 4995244, "featuredRunMedia": null, "reactionVideos": [], @@ -307793,7 +307293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 4995832, "featuredRunMedia": null, "reactionVideos": [], @@ -307813,7 +307313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 4999213, "featuredRunMedia": null, "reactionVideos": [], @@ -307833,7 +307333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 4999824, "featuredRunMedia": null, "reactionVideos": [], @@ -307853,7 +307353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5000260, "featuredRunMedia": null, "reactionVideos": [], @@ -307873,7 +307373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 5004668, "featuredRunMedia": null, "reactionVideos": [], @@ -307893,7 +307393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 5007932, "featuredRunMedia": null, "reactionVideos": [], @@ -307913,7 +307413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 5011136, "featuredRunMedia": null, "reactionVideos": [], @@ -307933,7 +307433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 5011653, "featuredRunMedia": null, "reactionVideos": [], @@ -307953,7 +307453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 5020740, "featuredRunMedia": null, "reactionVideos": [], @@ -307973,7 +307473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 5022548, "featuredRunMedia": null, "reactionVideos": [], @@ -307993,7 +307493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 5023226, "featuredRunMedia": null, "reactionVideos": [], @@ -308013,7 +307513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5025811, "featuredRunMedia": null, "reactionVideos": [], @@ -308033,7 +307533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 5028997, "featuredRunMedia": null, "reactionVideos": [], @@ -308053,7 +307553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "144072", "time": 5029349, "featuredRunMedia": null, "reactionVideos": [], @@ -308073,7 +307573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 5034130, "featuredRunMedia": null, "reactionVideos": [], @@ -308093,7 +307593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5034703, "featuredRunMedia": null, "reactionVideos": [], @@ -308113,7 +307613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 5037027, "featuredRunMedia": null, "reactionVideos": [], @@ -308133,7 +307633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "144186", "time": 5040716, "featuredRunMedia": null, "reactionVideos": [], @@ -308153,7 +307653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 5040878, "featuredRunMedia": null, "reactionVideos": [], @@ -308173,7 +307673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 5042997, "featuredRunMedia": null, "reactionVideos": [], @@ -308193,7 +307693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5044066, "featuredRunMedia": null, "reactionVideos": [], @@ -308213,7 +307713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 5044221, "featuredRunMedia": null, "reactionVideos": [], @@ -308233,7 +307733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 5044539, "featuredRunMedia": null, "reactionVideos": [], @@ -308253,7 +307753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 5047771, "featuredRunMedia": null, "reactionVideos": [], @@ -308273,7 +307773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "144278", "time": 5049859, "featuredRunMedia": null, "reactionVideos": [], @@ -308293,7 +307793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5051257, "featuredRunMedia": null, "reactionVideos": [], @@ -308313,7 +307813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 5052375, "featuredRunMedia": null, "reactionVideos": [], @@ -308333,7 +307833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "144135", "time": 5053447, "featuredRunMedia": null, "reactionVideos": [], @@ -308353,7 +307853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 5054380, "featuredRunMedia": null, "reactionVideos": [], @@ -308373,7 +307873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 5055711, "featuredRunMedia": null, "reactionVideos": [], @@ -308393,7 +307893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5056692, "featuredRunMedia": null, "reactionVideos": [], @@ -308413,7 +307913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 5058376, "featuredRunMedia": null, "reactionVideos": [], @@ -308433,7 +307933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 5062291, "featuredRunMedia": null, "reactionVideos": [], @@ -308453,7 +307953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 5063563, "featuredRunMedia": null, "reactionVideos": [], @@ -308473,7 +307973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 5064395, "featuredRunMedia": null, "reactionVideos": [], @@ -308493,7 +307993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 5067220, "featuredRunMedia": null, "reactionVideos": [], @@ -308513,7 +308013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 5067906, "featuredRunMedia": null, "reactionVideos": [], @@ -308533,7 +308033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 5068968, "featuredRunMedia": null, "reactionVideos": [], @@ -308553,7 +308053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 5071539, "featuredRunMedia": null, "reactionVideos": [], @@ -308573,7 +308073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 5072905, "featuredRunMedia": null, "reactionVideos": [], @@ -308593,7 +308093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "144216", "time": 5080144, "featuredRunMedia": null, "reactionVideos": [], @@ -308613,7 +308113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 358, + "teamId": "144428", "time": 5083608, "featuredRunMedia": null, "reactionVideos": [], @@ -308633,7 +308133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 5083908, "featuredRunMedia": null, "reactionVideos": [], @@ -308653,7 +308153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5084739, "featuredRunMedia": null, "reactionVideos": [], @@ -308673,7 +308173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 5084783, "featuredRunMedia": null, "reactionVideos": [], @@ -308693,7 +308193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 368, + "teamId": "144438", "time": 5085155, "featuredRunMedia": null, "reactionVideos": [], @@ -308713,7 +308213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 5085618, "featuredRunMedia": null, "reactionVideos": [], @@ -308733,7 +308233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 5086500, "featuredRunMedia": null, "reactionVideos": [], @@ -308753,7 +308253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 5086935, "featuredRunMedia": null, "reactionVideos": [], @@ -308773,7 +308273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 5087250, "featuredRunMedia": null, "reactionVideos": [], @@ -308793,7 +308293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 5090436, "featuredRunMedia": null, "reactionVideos": [], @@ -308813,7 +308313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 5091151, "featuredRunMedia": null, "reactionVideos": [], @@ -308833,7 +308333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 5093485, "featuredRunMedia": null, "reactionVideos": [], @@ -308853,7 +308353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 5094718, "featuredRunMedia": null, "reactionVideos": [], @@ -308873,7 +308373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 5096196, "featuredRunMedia": null, "reactionVideos": [], @@ -308893,7 +308393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 5097621, "featuredRunMedia": null, "reactionVideos": [], @@ -308917,7 +308417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5098184, "featuredRunMedia": null, "reactionVideos": [], @@ -308937,7 +308437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 5099834, "featuredRunMedia": null, "reactionVideos": [], @@ -308957,7 +308457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 5099992, "featuredRunMedia": null, "reactionVideos": [], @@ -308977,7 +308477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 5100760, "featuredRunMedia": null, "reactionVideos": [], @@ -308997,7 +308497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 5103120, "featuredRunMedia": null, "reactionVideos": [], @@ -309017,7 +308517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 5104823, "featuredRunMedia": null, "reactionVideos": [], @@ -309037,7 +308537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 5105644, "featuredRunMedia": null, "reactionVideos": [], @@ -309057,7 +308557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 5107707, "featuredRunMedia": null, "reactionVideos": [], @@ -309081,7 +308581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 377, + "teamId": "144447", "time": 5109226, "featuredRunMedia": null, "reactionVideos": [], @@ -309101,7 +308601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 5113255, "featuredRunMedia": null, "reactionVideos": [], @@ -309121,7 +308621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 5116573, "featuredRunMedia": null, "reactionVideos": [], @@ -309141,7 +308641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 5117689, "featuredRunMedia": null, "reactionVideos": [], @@ -309161,7 +308661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "144407", "time": 5118372, "featuredRunMedia": null, "reactionVideos": [], @@ -309181,7 +308681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 5121042, "featuredRunMedia": null, "reactionVideos": [], @@ -309201,7 +308701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 5122078, "featuredRunMedia": null, "reactionVideos": [], @@ -309221,7 +308721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 5123207, "featuredRunMedia": null, "reactionVideos": [], @@ -309241,7 +308741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 5124809, "featuredRunMedia": null, "reactionVideos": [], @@ -309261,7 +308761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 5125194, "featuredRunMedia": null, "reactionVideos": [], @@ -309281,7 +308781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 5125249, "featuredRunMedia": null, "reactionVideos": [], @@ -309301,7 +308801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 5125303, "featuredRunMedia": null, "reactionVideos": [], @@ -309321,7 +308821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5129697, "featuredRunMedia": null, "reactionVideos": [], @@ -309341,7 +308841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 5132281, "featuredRunMedia": null, "reactionVideos": [], @@ -309361,7 +308861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 5134160, "featuredRunMedia": null, "reactionVideos": [], @@ -309381,7 +308881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 5134894, "featuredRunMedia": null, "reactionVideos": [], @@ -309401,7 +308901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 5135489, "featuredRunMedia": null, "reactionVideos": [], @@ -309421,7 +308921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 5138275, "featuredRunMedia": null, "reactionVideos": [], @@ -309441,7 +308941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 5140554, "featuredRunMedia": null, "reactionVideos": [], @@ -309465,7 +308965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 5142031, "featuredRunMedia": null, "reactionVideos": [], @@ -309485,7 +308985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 5142254, "featuredRunMedia": null, "reactionVideos": [], @@ -309505,7 +309005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 321, + "teamId": "144391", "time": 5145336, "featuredRunMedia": null, "reactionVideos": [], @@ -309525,7 +309025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 5145662, "featuredRunMedia": null, "reactionVideos": [], @@ -309545,7 +309045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 5146132, "featuredRunMedia": null, "reactionVideos": [], @@ -309565,7 +309065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5147628, "featuredRunMedia": null, "reactionVideos": [], @@ -309585,7 +309085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 5148146, "featuredRunMedia": null, "reactionVideos": [], @@ -309605,7 +309105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "144128", "time": 5149369, "featuredRunMedia": null, "reactionVideos": [], @@ -309625,7 +309125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 5150179, "featuredRunMedia": null, "reactionVideos": [], @@ -309645,7 +309145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 5153948, "featuredRunMedia": null, "reactionVideos": [], @@ -309665,7 +309165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 5154718, "featuredRunMedia": null, "reactionVideos": [], @@ -309685,7 +309185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 5155108, "featuredRunMedia": null, "reactionVideos": [], @@ -309705,7 +309205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 5156915, "featuredRunMedia": null, "reactionVideos": [], @@ -309725,7 +309225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 5158204, "featuredRunMedia": null, "reactionVideos": [], @@ -309745,7 +309245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 5159914, "featuredRunMedia": null, "reactionVideos": [], @@ -309765,7 +309265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 5162206, "featuredRunMedia": null, "reactionVideos": [], @@ -309785,7 +309285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5164105, "featuredRunMedia": null, "reactionVideos": [], @@ -309805,7 +309305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 373, + "teamId": "144443", "time": 5171263, "featuredRunMedia": null, "reactionVideos": [], @@ -309825,7 +309325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 5171411, "featuredRunMedia": null, "reactionVideos": [], @@ -309845,7 +309345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 5173855, "featuredRunMedia": null, "reactionVideos": [], @@ -309865,7 +309365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 361, + "teamId": "144431", "time": 5174072, "featuredRunMedia": null, "reactionVideos": [], @@ -309885,7 +309385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 5176956, "featuredRunMedia": null, "reactionVideos": [], @@ -309905,7 +309405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 5178323, "featuredRunMedia": null, "reactionVideos": [], @@ -309925,7 +309425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 5178897, "featuredRunMedia": null, "reactionVideos": [], @@ -309945,7 +309445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 5179216, "featuredRunMedia": null, "reactionVideos": [], @@ -309965,7 +309465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 5180890, "featuredRunMedia": null, "reactionVideos": [], @@ -309989,7 +309489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5181706, "featuredRunMedia": null, "reactionVideos": [], @@ -310009,7 +309509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 5183910, "featuredRunMedia": null, "reactionVideos": [], @@ -310029,7 +309529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 5184513, "featuredRunMedia": null, "reactionVideos": [], @@ -310049,7 +309549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 5187077, "featuredRunMedia": null, "reactionVideos": [], @@ -310069,7 +309569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 5187653, "featuredRunMedia": null, "reactionVideos": [], @@ -310089,7 +309589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5188575, "featuredRunMedia": null, "reactionVideos": [], @@ -310109,7 +309609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 321, + "teamId": "144391", "time": 5189145, "featuredRunMedia": null, "reactionVideos": [], @@ -310129,7 +309629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 5190175, "featuredRunMedia": null, "reactionVideos": [], @@ -310149,7 +309649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 5191972, "featuredRunMedia": null, "reactionVideos": [], @@ -310169,7 +309669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 5192654, "featuredRunMedia": null, "reactionVideos": [], @@ -310189,7 +309689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 393, + "teamId": "144463", "time": 5194413, "featuredRunMedia": null, "reactionVideos": [], @@ -310209,7 +309709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 5194449, "featuredRunMedia": null, "reactionVideos": [], @@ -310229,7 +309729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 5194820, "featuredRunMedia": null, "reactionVideos": [], @@ -310249,7 +309749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 5195753, "featuredRunMedia": null, "reactionVideos": [], @@ -310269,7 +309769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 5199948, "featuredRunMedia": null, "reactionVideos": [], @@ -310289,7 +309789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 5200140, "featuredRunMedia": null, "reactionVideos": [], @@ -310309,7 +309809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 5200862, "featuredRunMedia": null, "reactionVideos": [], @@ -310329,7 +309829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 5201667, "featuredRunMedia": null, "reactionVideos": [], @@ -310349,7 +309849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 5204559, "featuredRunMedia": null, "reactionVideos": [], @@ -310369,7 +309869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 5204975, "featuredRunMedia": null, "reactionVideos": [], @@ -310389,7 +309889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 5205588, "featuredRunMedia": null, "reactionVideos": [], @@ -310409,7 +309909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 404, + "teamId": "144474", "time": 5206867, "featuredRunMedia": null, "reactionVideos": [], @@ -310429,7 +309929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 177, + "teamId": "144247", "time": 5207239, "featuredRunMedia": null, "reactionVideos": [], @@ -310449,7 +309949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "144387", "time": 5207962, "featuredRunMedia": null, "reactionVideos": [], @@ -310469,7 +309969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5212211, "featuredRunMedia": null, "reactionVideos": [], @@ -310489,7 +309989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 5213019, "featuredRunMedia": null, "reactionVideos": [], @@ -310509,7 +310009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 5213052, "featuredRunMedia": null, "reactionVideos": [], @@ -310529,7 +310029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 5215755, "featuredRunMedia": null, "reactionVideos": [], @@ -310549,7 +310049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 5217253, "featuredRunMedia": null, "reactionVideos": [], @@ -310569,7 +310069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5217404, "featuredRunMedia": null, "reactionVideos": [], @@ -310589,7 +310089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 5219188, "featuredRunMedia": null, "reactionVideos": [], @@ -310609,7 +310109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 5219265, "featuredRunMedia": null, "reactionVideos": [], @@ -310629,7 +310129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 5220098, "featuredRunMedia": null, "reactionVideos": [], @@ -310649,7 +310149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 5220456, "featuredRunMedia": null, "reactionVideos": [], @@ -310669,7 +310169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5226168, "featuredRunMedia": null, "reactionVideos": [], @@ -310689,7 +310189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 5226496, "featuredRunMedia": null, "reactionVideos": [], @@ -310709,7 +310209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5228226, "featuredRunMedia": null, "reactionVideos": [], @@ -310729,7 +310229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 5229390, "featuredRunMedia": null, "reactionVideos": [], @@ -310749,7 +310249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 5232192, "featuredRunMedia": null, "reactionVideos": [], @@ -310769,7 +310269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 5233011, "featuredRunMedia": null, "reactionVideos": [], @@ -310789,7 +310289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 5235472, "featuredRunMedia": null, "reactionVideos": [], @@ -310809,7 +310309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 5236476, "featuredRunMedia": null, "reactionVideos": [], @@ -310829,7 +310329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 5238324, "featuredRunMedia": null, "reactionVideos": [], @@ -310849,7 +310349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 5238567, "featuredRunMedia": null, "reactionVideos": [], @@ -310869,7 +310369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 5238904, "featuredRunMedia": null, "reactionVideos": [], @@ -310889,7 +310389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 5240569, "featuredRunMedia": null, "reactionVideos": [], @@ -310909,7 +310409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "144296", "time": 5243404, "featuredRunMedia": null, "reactionVideos": [], @@ -310929,7 +310429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 5249428, "featuredRunMedia": null, "reactionVideos": [], @@ -310949,7 +310449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 5250729, "featuredRunMedia": null, "reactionVideos": [], @@ -310969,7 +310469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 5251127, "featuredRunMedia": null, "reactionVideos": [], @@ -310989,7 +310489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5252161, "featuredRunMedia": null, "reactionVideos": [], @@ -311009,7 +310509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 5252860, "featuredRunMedia": null, "reactionVideos": [], @@ -311033,7 +310533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "144203", "time": 5254275, "featuredRunMedia": null, "reactionVideos": [], @@ -311053,7 +310553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 5256628, "featuredRunMedia": null, "reactionVideos": [], @@ -311073,7 +310573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5257425, "featuredRunMedia": null, "reactionVideos": [], @@ -311093,7 +310593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 5257859, "featuredRunMedia": null, "reactionVideos": [], @@ -311113,7 +310613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 5259830, "featuredRunMedia": null, "reactionVideos": [], @@ -311133,7 +310633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 5260668, "featuredRunMedia": null, "reactionVideos": [], @@ -311153,7 +310653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "144110", "time": 5262261, "featuredRunMedia": null, "reactionVideos": [], @@ -311173,7 +310673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "144216", "time": 5262430, "featuredRunMedia": null, "reactionVideos": [], @@ -311193,7 +310693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 5262474, "featuredRunMedia": null, "reactionVideos": [], @@ -311213,7 +310713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 5263396, "featuredRunMedia": null, "reactionVideos": [], @@ -311233,7 +310733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 5266530, "featuredRunMedia": null, "reactionVideos": [], @@ -311253,7 +310753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 5269223, "featuredRunMedia": null, "reactionVideos": [], @@ -311273,7 +310773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 5269289, "featuredRunMedia": null, "reactionVideos": [], @@ -311293,7 +310793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "144357", "time": 5275632, "featuredRunMedia": null, "reactionVideos": [], @@ -311313,7 +310813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 5276360, "featuredRunMedia": null, "reactionVideos": [], @@ -311333,7 +310833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 5278608, "featuredRunMedia": null, "reactionVideos": [], @@ -311353,7 +310853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 5279713, "featuredRunMedia": null, "reactionVideos": [], @@ -311373,7 +310873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 5281290, "featuredRunMedia": null, "reactionVideos": [], @@ -311393,7 +310893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 5281327, "featuredRunMedia": null, "reactionVideos": [], @@ -311413,7 +310913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 5282594, "featuredRunMedia": null, "reactionVideos": [], @@ -311433,7 +310933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 5283952, "featuredRunMedia": null, "reactionVideos": [], @@ -311453,7 +310953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 5285413, "featuredRunMedia": null, "reactionVideos": [], @@ -311473,7 +310973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 5288808, "featuredRunMedia": null, "reactionVideos": [], @@ -311497,7 +310997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "144203", "time": 5290000, "featuredRunMedia": null, "reactionVideos": [], @@ -311517,7 +311017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 5291445, "featuredRunMedia": null, "reactionVideos": [], @@ -311537,7 +311037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 5292773, "featuredRunMedia": null, "reactionVideos": [], @@ -311557,7 +311057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 5294675, "featuredRunMedia": null, "reactionVideos": [], @@ -311577,7 +311077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 5295268, "featuredRunMedia": null, "reactionVideos": [], @@ -311597,7 +311097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "144126", "time": 5298196, "featuredRunMedia": null, "reactionVideos": [], @@ -311617,7 +311117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 5299184, "featuredRunMedia": null, "reactionVideos": [], @@ -311637,7 +311137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 5299537, "featuredRunMedia": null, "reactionVideos": [], @@ -311657,7 +311157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5303189, "featuredRunMedia": null, "reactionVideos": [], @@ -311677,7 +311177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "144264", "time": 5303557, "featuredRunMedia": null, "reactionVideos": [], @@ -311697,7 +311197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 5307237, "featuredRunMedia": null, "reactionVideos": [], @@ -311717,7 +311217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 5307338, "featuredRunMedia": null, "reactionVideos": [], @@ -311737,7 +311237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 329, + "teamId": "144399", "time": 5307606, "featuredRunMedia": null, "reactionVideos": [], @@ -311757,7 +311257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 5309010, "featuredRunMedia": null, "reactionVideos": [], @@ -311777,7 +311277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "144374", "time": 5310104, "featuredRunMedia": null, "reactionVideos": [], @@ -311797,7 +311297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "144203", "time": 5311928, "featuredRunMedia": null, "reactionVideos": [], @@ -311817,7 +311317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 410, + "teamId": "144480", "time": 5313811, "featuredRunMedia": null, "reactionVideos": [], @@ -311837,7 +311337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 5314476, "featuredRunMedia": null, "reactionVideos": [], @@ -311857,7 +311357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 5314817, "featuredRunMedia": null, "reactionVideos": [], @@ -311877,7 +311377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5316953, "featuredRunMedia": null, "reactionVideos": [], @@ -311897,7 +311397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 5317121, "featuredRunMedia": null, "reactionVideos": [], @@ -311917,7 +311417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 5317435, "featuredRunMedia": null, "reactionVideos": [], @@ -311937,7 +311437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 5318612, "featuredRunMedia": null, "reactionVideos": [], @@ -311957,7 +311457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 5326788, "featuredRunMedia": null, "reactionVideos": [], @@ -311977,7 +311477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 5326849, "featuredRunMedia": null, "reactionVideos": [], @@ -311997,7 +311497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 5327995, "featuredRunMedia": null, "reactionVideos": [], @@ -312017,7 +311517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 5328093, "featuredRunMedia": null, "reactionVideos": [], @@ -312037,7 +311537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 5329509, "featuredRunMedia": null, "reactionVideos": [], @@ -312057,7 +311557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 5331679, "featuredRunMedia": null, "reactionVideos": [], @@ -312077,7 +311577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 5332387, "featuredRunMedia": null, "reactionVideos": [], @@ -312097,7 +311597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5332478, "featuredRunMedia": null, "reactionVideos": [], @@ -312121,7 +311621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 5332842, "featuredRunMedia": null, "reactionVideos": [], @@ -312141,7 +311641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 5334891, "featuredRunMedia": null, "reactionVideos": [], @@ -312161,7 +311661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 5335052, "featuredRunMedia": null, "reactionVideos": [], @@ -312181,7 +311681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 5337025, "featuredRunMedia": null, "reactionVideos": [], @@ -312201,7 +311701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 5337188, "featuredRunMedia": null, "reactionVideos": [], @@ -312221,7 +311721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 5337793, "featuredRunMedia": null, "reactionVideos": [], @@ -312241,7 +311741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "144357", "time": 5338605, "featuredRunMedia": null, "reactionVideos": [], @@ -312261,7 +311761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "144306", "time": 5338682, "featuredRunMedia": null, "reactionVideos": [], @@ -312281,7 +311781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 5339282, "featuredRunMedia": null, "reactionVideos": [], @@ -312301,7 +311801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 5339327, "featuredRunMedia": null, "reactionVideos": [], @@ -312321,7 +311821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 5341282, "featuredRunMedia": null, "reactionVideos": [], @@ -312341,7 +311841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 5341516, "featuredRunMedia": null, "reactionVideos": [], @@ -312361,7 +311861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 5342282, "featuredRunMedia": null, "reactionVideos": [], @@ -312381,7 +311881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 5344073, "featuredRunMedia": null, "reactionVideos": [], @@ -312401,7 +311901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 5344126, "featuredRunMedia": null, "reactionVideos": [], @@ -312421,7 +311921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 5344941, "featuredRunMedia": null, "reactionVideos": [], @@ -312441,7 +311941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "144174", "time": 5348756, "featuredRunMedia": null, "reactionVideos": [], @@ -312461,7 +311961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 5349697, "featuredRunMedia": null, "reactionVideos": [], @@ -312481,7 +311981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 5352348, "featuredRunMedia": null, "reactionVideos": [], @@ -312501,7 +312001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 5353523, "featuredRunMedia": null, "reactionVideos": [], @@ -312521,7 +312021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "144085", "time": 5354332, "featuredRunMedia": null, "reactionVideos": [], @@ -312541,7 +312041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 5355614, "featuredRunMedia": null, "reactionVideos": [], @@ -312561,7 +312061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 5355731, "featuredRunMedia": null, "reactionVideos": [], @@ -312581,7 +312081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 5359690, "featuredRunMedia": null, "reactionVideos": [], @@ -312601,7 +312101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 5360132, "featuredRunMedia": null, "reactionVideos": [], @@ -312621,7 +312121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 5360945, "featuredRunMedia": null, "reactionVideos": [], @@ -312641,7 +312141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 5361127, "featuredRunMedia": null, "reactionVideos": [], @@ -312661,7 +312161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5361293, "featuredRunMedia": null, "reactionVideos": [], @@ -312681,7 +312181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 5364418, "featuredRunMedia": null, "reactionVideos": [], @@ -312701,7 +312201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 5365531, "featuredRunMedia": null, "reactionVideos": [], @@ -312721,7 +312221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 5365801, "featuredRunMedia": null, "reactionVideos": [], @@ -312741,7 +312241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "144127", "time": 5370086, "featuredRunMedia": null, "reactionVideos": [], @@ -312761,7 +312261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 5371551, "featuredRunMedia": null, "reactionVideos": [], @@ -312781,7 +312281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 5372168, "featuredRunMedia": null, "reactionVideos": [], @@ -312801,7 +312301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 5374025, "featuredRunMedia": null, "reactionVideos": [], @@ -312821,7 +312321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "144237", "time": 5374104, "featuredRunMedia": null, "reactionVideos": [], @@ -312841,7 +312341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 5374253, "featuredRunMedia": null, "reactionVideos": [], @@ -312861,7 +312361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 5374730, "featuredRunMedia": null, "reactionVideos": [], @@ -312881,7 +312381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 5375110, "featuredRunMedia": null, "reactionVideos": [], @@ -312901,7 +312401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 5375210, "featuredRunMedia": null, "reactionVideos": [], @@ -312925,7 +312425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5376072, "featuredRunMedia": null, "reactionVideos": [], @@ -312945,7 +312445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 204, + "teamId": "144274", "time": 5376132, "featuredRunMedia": null, "reactionVideos": [], @@ -312965,7 +312465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5377047, "featuredRunMedia": null, "reactionVideos": [], @@ -312985,7 +312485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 5377242, "featuredRunMedia": null, "reactionVideos": [], @@ -313005,7 +312505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 5378120, "featuredRunMedia": null, "reactionVideos": [], @@ -313025,7 +312525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "144301", "time": 5378166, "featuredRunMedia": null, "reactionVideos": [], @@ -313045,7 +312545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 5378410, "featuredRunMedia": null, "reactionVideos": [], @@ -313065,7 +312565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 5379927, "featuredRunMedia": null, "reactionVideos": [], @@ -313085,7 +312585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 5381253, "featuredRunMedia": null, "reactionVideos": [], @@ -313105,7 +312605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 5381701, "featuredRunMedia": null, "reactionVideos": [], @@ -313125,7 +312625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 5382088, "featuredRunMedia": null, "reactionVideos": [], @@ -313145,7 +312645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 5382242, "featuredRunMedia": null, "reactionVideos": [], @@ -313169,7 +312669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5385337, "featuredRunMedia": null, "reactionVideos": [], @@ -313189,7 +312689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 5387603, "featuredRunMedia": null, "reactionVideos": [], @@ -313209,7 +312709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5388024, "featuredRunMedia": null, "reactionVideos": [], @@ -313229,7 +312729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 5388501, "featuredRunMedia": null, "reactionVideos": [], @@ -313249,7 +312749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 5390348, "featuredRunMedia": null, "reactionVideos": [], @@ -313269,7 +312769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "144244", "time": 5390925, "featuredRunMedia": null, "reactionVideos": [], @@ -313289,7 +312789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5393573, "featuredRunMedia": null, "reactionVideos": [], @@ -313309,7 +312809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 5394282, "featuredRunMedia": null, "reactionVideos": [], @@ -313329,7 +312829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "144203", "time": 5394466, "featuredRunMedia": null, "reactionVideos": [], @@ -313349,7 +312849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "144222", "time": 5395260, "featuredRunMedia": null, "reactionVideos": [], @@ -313369,7 +312869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 5396425, "featuredRunMedia": null, "reactionVideos": [], @@ -313389,7 +312889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "144296", "time": 5396466, "featuredRunMedia": null, "reactionVideos": [], @@ -313409,7 +312909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 5397285, "featuredRunMedia": null, "reactionVideos": [], @@ -313429,7 +312929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 5399665, "featuredRunMedia": null, "reactionVideos": [], @@ -313449,7 +312949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 5400252, "featuredRunMedia": null, "reactionVideos": [], @@ -313469,7 +312969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 5400958, "featuredRunMedia": null, "reactionVideos": [], @@ -313489,7 +312989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 375, + "teamId": "144445", "time": 5402306, "featuredRunMedia": null, "reactionVideos": [], @@ -313509,7 +313009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 5402573, "featuredRunMedia": null, "reactionVideos": [], @@ -313529,7 +313029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5402743, "featuredRunMedia": null, "reactionVideos": [], @@ -313549,7 +313049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 5405502, "featuredRunMedia": null, "reactionVideos": [], @@ -313569,7 +313069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 5405864, "featuredRunMedia": null, "reactionVideos": [], @@ -313589,7 +313089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 5406112, "featuredRunMedia": null, "reactionVideos": [], @@ -313609,7 +313109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 5407341, "featuredRunMedia": null, "reactionVideos": [], @@ -313629,7 +313129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 5408030, "featuredRunMedia": null, "reactionVideos": [], @@ -313649,7 +313149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "144374", "time": 5408557, "featuredRunMedia": null, "reactionVideos": [], @@ -313669,7 +313169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 5408837, "featuredRunMedia": null, "reactionVideos": [], @@ -313689,7 +313189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 5409605, "featuredRunMedia": null, "reactionVideos": [], @@ -313709,7 +313209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 5409914, "featuredRunMedia": null, "reactionVideos": [], @@ -313729,7 +313229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5410166, "featuredRunMedia": null, "reactionVideos": [], @@ -313749,7 +313249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 5410378, "featuredRunMedia": null, "reactionVideos": [], @@ -313769,7 +313269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 5410485, "featuredRunMedia": null, "reactionVideos": [], @@ -313789,7 +313289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 5411330, "featuredRunMedia": null, "reactionVideos": [], @@ -313809,7 +313309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 5411721, "featuredRunMedia": null, "reactionVideos": [], @@ -313829,7 +313329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 5412211, "featuredRunMedia": null, "reactionVideos": [], @@ -313849,7 +313349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "144110", "time": 5415027, "featuredRunMedia": null, "reactionVideos": [], @@ -313869,7 +313369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 5415573, "featuredRunMedia": null, "reactionVideos": [], @@ -313889,7 +313389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 5416489, "featuredRunMedia": null, "reactionVideos": [], @@ -313909,7 +313409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 5416872, "featuredRunMedia": null, "reactionVideos": [], @@ -313929,7 +313429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5418361, "featuredRunMedia": null, "reactionVideos": [], @@ -313949,7 +313449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 5419337, "featuredRunMedia": null, "reactionVideos": [], @@ -313969,7 +313469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 5419726, "featuredRunMedia": null, "reactionVideos": [], @@ -313989,7 +313489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 5419758, "featuredRunMedia": null, "reactionVideos": [], @@ -314009,7 +313509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 369, + "teamId": "144439", "time": 5420470, "featuredRunMedia": null, "reactionVideos": [], @@ -314029,7 +313529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 5421724, "featuredRunMedia": null, "reactionVideos": [], @@ -314049,7 +313549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 5422245, "featuredRunMedia": null, "reactionVideos": [], @@ -314069,7 +313569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 5422728, "featuredRunMedia": null, "reactionVideos": [], @@ -314089,7 +313589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5425167, "featuredRunMedia": null, "reactionVideos": [], @@ -314109,7 +313609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 5426636, "featuredRunMedia": null, "reactionVideos": [], @@ -314129,7 +313629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 5430115, "featuredRunMedia": null, "reactionVideos": [], @@ -314153,7 +313653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 5430936, "featuredRunMedia": null, "reactionVideos": [], @@ -314173,7 +313673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 5431635, "featuredRunMedia": null, "reactionVideos": [], @@ -314193,7 +313693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5432217, "featuredRunMedia": null, "reactionVideos": [], @@ -314213,7 +313713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 5432819, "featuredRunMedia": null, "reactionVideos": [], @@ -314233,7 +313733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 368, + "teamId": "144438", "time": 5435008, "featuredRunMedia": null, "reactionVideos": [], @@ -314253,7 +313753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 5435825, "featuredRunMedia": null, "reactionVideos": [], @@ -314273,7 +313773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5438847, "featuredRunMedia": null, "reactionVideos": [], @@ -314293,7 +313793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 5438979, "featuredRunMedia": null, "reactionVideos": [], @@ -314313,7 +313813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 5440123, "featuredRunMedia": null, "reactionVideos": [], @@ -314333,7 +313833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 5440231, "featuredRunMedia": null, "reactionVideos": [], @@ -314353,7 +313853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 5440508, "featuredRunMedia": null, "reactionVideos": [], @@ -314373,7 +313873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 5445951, "featuredRunMedia": null, "reactionVideos": [], @@ -314393,7 +313893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "144278", "time": 5446974, "featuredRunMedia": null, "reactionVideos": [], @@ -314413,7 +313913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5447154, "featuredRunMedia": null, "reactionVideos": [], @@ -314433,7 +313933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 5449497, "featuredRunMedia": null, "reactionVideos": [], @@ -314453,7 +313953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5449545, "featuredRunMedia": null, "reactionVideos": [], @@ -314473,7 +313973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 5450166, "featuredRunMedia": null, "reactionVideos": [], @@ -314493,7 +313993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5452560, "featuredRunMedia": null, "reactionVideos": [], @@ -314513,7 +314013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 5452626, "featuredRunMedia": null, "reactionVideos": [], @@ -314533,7 +314033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 5453152, "featuredRunMedia": null, "reactionVideos": [], @@ -314553,7 +314053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5453258, "featuredRunMedia": null, "reactionVideos": [], @@ -314573,7 +314073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 5454636, "featuredRunMedia": null, "reactionVideos": [], @@ -314593,7 +314093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 5454880, "featuredRunMedia": null, "reactionVideos": [], @@ -314613,7 +314113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 5457066, "featuredRunMedia": null, "reactionVideos": [], @@ -314633,7 +314133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 5459861, "featuredRunMedia": null, "reactionVideos": [], @@ -314653,7 +314153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 368, + "teamId": "144438", "time": 5459953, "featuredRunMedia": null, "reactionVideos": [], @@ -314673,7 +314173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 5460652, "featuredRunMedia": null, "reactionVideos": [], @@ -314693,7 +314193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 5461812, "featuredRunMedia": null, "reactionVideos": [], @@ -314713,7 +314213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 5462379, "featuredRunMedia": null, "reactionVideos": [], @@ -314733,7 +314233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 5464509, "featuredRunMedia": null, "reactionVideos": [], @@ -314753,7 +314253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "144151", "time": 5466114, "featuredRunMedia": null, "reactionVideos": [], @@ -314773,7 +314273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5466361, "featuredRunMedia": null, "reactionVideos": [], @@ -314793,7 +314293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 5468383, "featuredRunMedia": null, "reactionVideos": [], @@ -314813,7 +314313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "144179", "time": 5470394, "featuredRunMedia": null, "reactionVideos": [], @@ -314833,7 +314333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 5471684, "featuredRunMedia": null, "reactionVideos": [], @@ -314853,7 +314353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5471750, "featuredRunMedia": null, "reactionVideos": [], @@ -314873,7 +314373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5472545, "featuredRunMedia": null, "reactionVideos": [], @@ -314893,7 +314393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 5473747, "featuredRunMedia": null, "reactionVideos": [], @@ -314913,7 +314413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 5474112, "featuredRunMedia": null, "reactionVideos": [], @@ -314933,7 +314433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 5477564, "featuredRunMedia": null, "reactionVideos": [], @@ -314953,7 +314453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "144267", "time": 5478051, "featuredRunMedia": null, "reactionVideos": [], @@ -314973,7 +314473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "144193", "time": 5478381, "featuredRunMedia": null, "reactionVideos": [], @@ -314993,7 +314493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5478815, "featuredRunMedia": null, "reactionVideos": [], @@ -315013,7 +314513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 5479675, "featuredRunMedia": null, "reactionVideos": [], @@ -315033,7 +314533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5479958, "featuredRunMedia": null, "reactionVideos": [], @@ -315053,7 +314553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 5482202, "featuredRunMedia": null, "reactionVideos": [], @@ -315073,7 +314573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 5482275, "featuredRunMedia": null, "reactionVideos": [], @@ -315093,7 +314593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 5483732, "featuredRunMedia": null, "reactionVideos": [], @@ -315113,7 +314613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 5484243, "featuredRunMedia": null, "reactionVideos": [], @@ -315133,7 +314633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "144340", "time": 5484345, "featuredRunMedia": null, "reactionVideos": [], @@ -315153,7 +314653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 358, + "teamId": "144428", "time": 5486102, "featuredRunMedia": null, "reactionVideos": [], @@ -315173,7 +314673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5488033, "featuredRunMedia": null, "reactionVideos": [], @@ -315193,7 +314693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 5489834, "featuredRunMedia": null, "reactionVideos": [], @@ -315213,7 +314713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 5490378, "featuredRunMedia": null, "reactionVideos": [], @@ -315233,7 +314733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 5491253, "featuredRunMedia": null, "reactionVideos": [], @@ -315253,7 +314753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 5493002, "featuredRunMedia": null, "reactionVideos": [], @@ -315273,7 +314773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5494327, "featuredRunMedia": null, "reactionVideos": [], @@ -315293,7 +314793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 5497602, "featuredRunMedia": null, "reactionVideos": [], @@ -315313,7 +314813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 5499828, "featuredRunMedia": null, "reactionVideos": [], @@ -315337,7 +314837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 5500879, "featuredRunMedia": null, "reactionVideos": [], @@ -315357,7 +314857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 5503242, "featuredRunMedia": null, "reactionVideos": [], @@ -315377,7 +314877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5503668, "featuredRunMedia": null, "reactionVideos": [], @@ -315397,7 +314897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 5504850, "featuredRunMedia": null, "reactionVideos": [], @@ -315417,7 +314917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 5504993, "featuredRunMedia": null, "reactionVideos": [], @@ -315437,7 +314937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 5505059, "featuredRunMedia": null, "reactionVideos": [], @@ -315457,7 +314957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 5505648, "featuredRunMedia": null, "reactionVideos": [], @@ -315477,7 +314977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 5507096, "featuredRunMedia": null, "reactionVideos": [], @@ -315497,7 +314997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 5507318, "featuredRunMedia": null, "reactionVideos": [], @@ -315517,7 +315017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5507381, "featuredRunMedia": null, "reactionVideos": [], @@ -315537,7 +315037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 5507946, "featuredRunMedia": null, "reactionVideos": [], @@ -315557,7 +315057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 5508133, "featuredRunMedia": null, "reactionVideos": [], @@ -315577,7 +315077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 5508631, "featuredRunMedia": null, "reactionVideos": [], @@ -315597,7 +315097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 5509582, "featuredRunMedia": null, "reactionVideos": [], @@ -315617,7 +315117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5509621, "featuredRunMedia": null, "reactionVideos": [], @@ -315637,7 +315137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 5510910, "featuredRunMedia": null, "reactionVideos": [], @@ -315657,7 +315157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "144142", "time": 5511804, "featuredRunMedia": null, "reactionVideos": [], @@ -315677,7 +315177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 5514124, "featuredRunMedia": null, "reactionVideos": [], @@ -315697,7 +315197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5516547, "featuredRunMedia": null, "reactionVideos": [], @@ -315717,7 +315217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 5516971, "featuredRunMedia": null, "reactionVideos": [], @@ -315737,7 +315237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 5517644, "featuredRunMedia": null, "reactionVideos": [], @@ -315757,7 +315257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 5518744, "featuredRunMedia": null, "reactionVideos": [], @@ -315777,7 +315277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 5520429, "featuredRunMedia": null, "reactionVideos": [], @@ -315797,7 +315297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 5520806, "featuredRunMedia": null, "reactionVideos": [], @@ -315817,7 +315317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5520940, "featuredRunMedia": null, "reactionVideos": [], @@ -315837,7 +315337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 5521181, "featuredRunMedia": null, "reactionVideos": [], @@ -315857,7 +315357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 5522199, "featuredRunMedia": null, "reactionVideos": [], @@ -315877,7 +315377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 5522403, "featuredRunMedia": null, "reactionVideos": [], @@ -315897,7 +315397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5522458, "featuredRunMedia": null, "reactionVideos": [], @@ -315917,7 +315417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 5522738, "featuredRunMedia": null, "reactionVideos": [], @@ -315937,7 +315437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5525007, "featuredRunMedia": null, "reactionVideos": [], @@ -315957,7 +315457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 5525865, "featuredRunMedia": null, "reactionVideos": [], @@ -315977,7 +315477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 5526518, "featuredRunMedia": null, "reactionVideos": [], @@ -315997,7 +315497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 5526731, "featuredRunMedia": null, "reactionVideos": [], @@ -316017,7 +315517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 5528278, "featuredRunMedia": null, "reactionVideos": [], @@ -316037,7 +315537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 5528665, "featuredRunMedia": null, "reactionVideos": [], @@ -316057,7 +315557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 5530272, "featuredRunMedia": null, "reactionVideos": [], @@ -316077,7 +315577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 212, + "teamId": "144282", "time": 5530907, "featuredRunMedia": null, "reactionVideos": [], @@ -316097,7 +315597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 5531037, "featuredRunMedia": null, "reactionVideos": [], @@ -316117,7 +315617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 5531756, "featuredRunMedia": null, "reactionVideos": [], @@ -316137,7 +315637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 5531844, "featuredRunMedia": null, "reactionVideos": [], @@ -316161,7 +315661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 5532182, "featuredRunMedia": null, "reactionVideos": [], @@ -316181,7 +315681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 5535468, "featuredRunMedia": null, "reactionVideos": [], @@ -316201,7 +315701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 5539030, "featuredRunMedia": null, "reactionVideos": [], @@ -316221,7 +315721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 5541720, "featuredRunMedia": null, "reactionVideos": [], @@ -316241,7 +315741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 5541793, "featuredRunMedia": null, "reactionVideos": [], @@ -316261,7 +315761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 369, + "teamId": "144439", "time": 5545583, "featuredRunMedia": null, "reactionVideos": [], @@ -316281,7 +315781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 5546561, "featuredRunMedia": null, "reactionVideos": [], @@ -316305,7 +315805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 5549481, "featuredRunMedia": null, "reactionVideos": [], @@ -316325,7 +315825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 5553235, "featuredRunMedia": null, "reactionVideos": [], @@ -316345,7 +315845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "144131", "time": 5553345, "featuredRunMedia": null, "reactionVideos": [], @@ -316365,7 +315865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 5555330, "featuredRunMedia": null, "reactionVideos": [], @@ -316385,7 +315885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 5556124, "featuredRunMedia": null, "reactionVideos": [], @@ -316405,7 +315905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 5557214, "featuredRunMedia": null, "reactionVideos": [], @@ -316425,7 +315925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 5557405, "featuredRunMedia": null, "reactionVideos": [], @@ -316445,7 +315945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 5559038, "featuredRunMedia": null, "reactionVideos": [], @@ -316465,7 +315965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 5559557, "featuredRunMedia": null, "reactionVideos": [], @@ -316485,7 +315985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 5560706, "featuredRunMedia": null, "reactionVideos": [], @@ -316505,7 +316005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 5564770, "featuredRunMedia": null, "reactionVideos": [], @@ -316525,7 +316025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 5568124, "featuredRunMedia": null, "reactionVideos": [], @@ -316545,7 +316045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 5569478, "featuredRunMedia": null, "reactionVideos": [], @@ -316565,7 +316065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "144380", "time": 5570016, "featuredRunMedia": null, "reactionVideos": [], @@ -316585,7 +316085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 5570180, "featuredRunMedia": null, "reactionVideos": [], @@ -316605,7 +316105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5570698, "featuredRunMedia": null, "reactionVideos": [], @@ -316625,7 +316125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 5573134, "featuredRunMedia": null, "reactionVideos": [], @@ -316645,7 +316145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 5576097, "featuredRunMedia": null, "reactionVideos": [], @@ -316665,7 +316165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 5578505, "featuredRunMedia": null, "reactionVideos": [], @@ -316685,7 +316185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 5581191, "featuredRunMedia": null, "reactionVideos": [], @@ -316705,7 +316205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 5582497, "featuredRunMedia": null, "reactionVideos": [], @@ -316725,7 +316225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 5583961, "featuredRunMedia": null, "reactionVideos": [], @@ -316745,7 +316245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 5584133, "featuredRunMedia": null, "reactionVideos": [], @@ -316765,7 +316265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 5584572, "featuredRunMedia": null, "reactionVideos": [], @@ -316785,7 +316285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 5584922, "featuredRunMedia": null, "reactionVideos": [], @@ -316805,7 +316305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 5587818, "featuredRunMedia": null, "reactionVideos": [], @@ -316825,7 +316325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 5588724, "featuredRunMedia": null, "reactionVideos": [], @@ -316845,7 +316345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 5589885, "featuredRunMedia": null, "reactionVideos": [], @@ -316865,7 +316365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 5590496, "featuredRunMedia": null, "reactionVideos": [], @@ -316885,7 +316385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 5592243, "featuredRunMedia": null, "reactionVideos": [], @@ -316905,7 +316405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 329, + "teamId": "144399", "time": 5592279, "featuredRunMedia": null, "reactionVideos": [], @@ -316925,7 +316425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 5593624, "featuredRunMedia": null, "reactionVideos": [], @@ -316945,7 +316445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "144242", "time": 5595235, "featuredRunMedia": null, "reactionVideos": [], @@ -316965,7 +316465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 5599762, "featuredRunMedia": null, "reactionVideos": [], @@ -316985,7 +316485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5601372, "featuredRunMedia": null, "reactionVideos": [], @@ -317005,7 +316505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 5601738, "featuredRunMedia": null, "reactionVideos": [], @@ -317025,7 +316525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5602298, "featuredRunMedia": null, "reactionVideos": [], @@ -317045,7 +316545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 5603922, "featuredRunMedia": null, "reactionVideos": [], @@ -317065,7 +316565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 5606669, "featuredRunMedia": null, "reactionVideos": [], @@ -317085,7 +316585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 5606874, "featuredRunMedia": null, "reactionVideos": [], @@ -317105,7 +316605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 5608094, "featuredRunMedia": null, "reactionVideos": [], @@ -317125,7 +316625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 5610885, "featuredRunMedia": null, "reactionVideos": [], @@ -317145,7 +316645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 404, + "teamId": "144474", "time": 5611495, "featuredRunMedia": null, "reactionVideos": [], @@ -317165,7 +316665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 5611536, "featuredRunMedia": null, "reactionVideos": [], @@ -317185,7 +316685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 5614940, "featuredRunMedia": null, "reactionVideos": [], @@ -317205,7 +316705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 5617087, "featuredRunMedia": null, "reactionVideos": [], @@ -317225,7 +316725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5618207, "featuredRunMedia": null, "reactionVideos": [], @@ -317245,7 +316745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5618845, "featuredRunMedia": null, "reactionVideos": [], @@ -317265,7 +316765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 5618885, "featuredRunMedia": null, "reactionVideos": [], @@ -317285,7 +316785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 5620273, "featuredRunMedia": null, "reactionVideos": [], @@ -317305,7 +316805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 366, + "teamId": "144436", "time": 5620441, "featuredRunMedia": null, "reactionVideos": [], @@ -317325,7 +316825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 5620677, "featuredRunMedia": null, "reactionVideos": [], @@ -317345,7 +316845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 5621735, "featuredRunMedia": null, "reactionVideos": [], @@ -317365,7 +316865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 5624175, "featuredRunMedia": null, "reactionVideos": [], @@ -317385,7 +316885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 315, + "teamId": "144385", "time": 5626039, "featuredRunMedia": null, "reactionVideos": [], @@ -317405,7 +316905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 5626688, "featuredRunMedia": null, "reactionVideos": [], @@ -317425,7 +316925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 440, + "teamId": "144510", "time": 5627191, "featuredRunMedia": null, "reactionVideos": [], @@ -317445,7 +316945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 5627511, "featuredRunMedia": null, "reactionVideos": [], @@ -317465,7 +316965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 448, + "teamId": "144518", "time": 5628235, "featuredRunMedia": null, "reactionVideos": [], @@ -317485,7 +316985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 5629729, "featuredRunMedia": null, "reactionVideos": [], @@ -317505,7 +317005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 5633833, "featuredRunMedia": null, "reactionVideos": [], @@ -317525,7 +317025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "144221", "time": 5634847, "featuredRunMedia": null, "reactionVideos": [], @@ -317545,7 +317045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "144127", "time": 5642919, "featuredRunMedia": null, "reactionVideos": [], @@ -317565,7 +317065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 5643263, "featuredRunMedia": null, "reactionVideos": [], @@ -317585,7 +317085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 5645923, "featuredRunMedia": null, "reactionVideos": [], @@ -317605,7 +317105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 5646617, "featuredRunMedia": null, "reactionVideos": [], @@ -317625,7 +317125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 5646790, "featuredRunMedia": null, "reactionVideos": [], @@ -317645,7 +317145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 5647566, "featuredRunMedia": null, "reactionVideos": [], @@ -317665,7 +317165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 5649237, "featuredRunMedia": null, "reactionVideos": [], @@ -317685,7 +317185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 5651506, "featuredRunMedia": null, "reactionVideos": [], @@ -317709,7 +317209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 5651689, "featuredRunMedia": null, "reactionVideos": [], @@ -317729,7 +317229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5652130, "featuredRunMedia": null, "reactionVideos": [], @@ -317749,7 +317249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 5652224, "featuredRunMedia": null, "reactionVideos": [], @@ -317769,7 +317269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 5657132, "featuredRunMedia": null, "reactionVideos": [], @@ -317789,7 +317289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 5659020, "featuredRunMedia": null, "reactionVideos": [], @@ -317809,7 +317309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 5659369, "featuredRunMedia": null, "reactionVideos": [], @@ -317829,7 +317329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 5660715, "featuredRunMedia": null, "reactionVideos": [], @@ -317849,7 +317349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 5662121, "featuredRunMedia": null, "reactionVideos": [], @@ -317869,7 +317369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 5664441, "featuredRunMedia": null, "reactionVideos": [], @@ -317889,7 +317389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 5664549, "featuredRunMedia": null, "reactionVideos": [], @@ -317909,7 +317409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "144374", "time": 5664847, "featuredRunMedia": null, "reactionVideos": [], @@ -317929,7 +317429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 5665020, "featuredRunMedia": null, "reactionVideos": [], @@ -317949,7 +317449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 5667103, "featuredRunMedia": null, "reactionVideos": [], @@ -317973,7 +317473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5669544, "featuredRunMedia": null, "reactionVideos": [], @@ -317993,7 +317493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 5669772, "featuredRunMedia": null, "reactionVideos": [], @@ -318013,7 +317513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 5672599, "featuredRunMedia": null, "reactionVideos": [], @@ -318033,7 +317533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 5677699, "featuredRunMedia": null, "reactionVideos": [], @@ -318053,7 +317553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 5677771, "featuredRunMedia": null, "reactionVideos": [], @@ -318073,7 +317573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 5677983, "featuredRunMedia": null, "reactionVideos": [], @@ -318093,7 +317593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 5678399, "featuredRunMedia": null, "reactionVideos": [], @@ -318113,7 +317613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "144375", "time": 5679519, "featuredRunMedia": null, "reactionVideos": [], @@ -318133,7 +317633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 276, + "teamId": "144346", "time": 5682198, "featuredRunMedia": null, "reactionVideos": [], @@ -318153,7 +317653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 5682669, "featuredRunMedia": null, "reactionVideos": [], @@ -318173,7 +317673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 5684876, "featuredRunMedia": null, "reactionVideos": [], @@ -318193,7 +317693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 5685491, "featuredRunMedia": null, "reactionVideos": [], @@ -318213,7 +317713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 5686185, "featuredRunMedia": null, "reactionVideos": [], @@ -318233,7 +317733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 5687102, "featuredRunMedia": null, "reactionVideos": [], @@ -318253,7 +317753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 5687363, "featuredRunMedia": null, "reactionVideos": [], @@ -318273,7 +317773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 5688609, "featuredRunMedia": null, "reactionVideos": [], @@ -318293,7 +317793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 5693501, "featuredRunMedia": null, "reactionVideos": [], @@ -318313,7 +317813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 5694831, "featuredRunMedia": null, "reactionVideos": [], @@ -318333,7 +317833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 5695455, "featuredRunMedia": null, "reactionVideos": [], @@ -318353,7 +317853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 5696599, "featuredRunMedia": null, "reactionVideos": [], @@ -318373,7 +317873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 5698982, "featuredRunMedia": null, "reactionVideos": [], @@ -318393,7 +317893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 5699645, "featuredRunMedia": null, "reactionVideos": [], @@ -318413,7 +317913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 5700647, "featuredRunMedia": null, "reactionVideos": [], @@ -318433,7 +317933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 5701281, "featuredRunMedia": null, "reactionVideos": [], @@ -318453,7 +317953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 5703951, "featuredRunMedia": null, "reactionVideos": [], @@ -318473,7 +317973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 97, + "teamId": "144167", "time": 5704151, "featuredRunMedia": null, "reactionVideos": [], @@ -318497,7 +317997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 5706164, "featuredRunMedia": null, "reactionVideos": [], @@ -318517,7 +318017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 5706410, "featuredRunMedia": null, "reactionVideos": [], @@ -318537,7 +318037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5712666, "featuredRunMedia": null, "reactionVideos": [], @@ -318557,7 +318057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 5714843, "featuredRunMedia": null, "reactionVideos": [], @@ -318577,7 +318077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 5716958, "featuredRunMedia": null, "reactionVideos": [], @@ -318597,7 +318097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 5718572, "featuredRunMedia": null, "reactionVideos": [], @@ -318617,7 +318117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 5719030, "featuredRunMedia": null, "reactionVideos": [], @@ -318637,7 +318137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 5721591, "featuredRunMedia": null, "reactionVideos": [], @@ -318657,7 +318157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 5722150, "featuredRunMedia": null, "reactionVideos": [], @@ -318677,7 +318177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 5725650, "featuredRunMedia": null, "reactionVideos": [], @@ -318697,7 +318197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 5726198, "featuredRunMedia": null, "reactionVideos": [], @@ -318717,7 +318217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 5726574, "featuredRunMedia": null, "reactionVideos": [], @@ -318737,7 +318237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 418, + "teamId": "144488", "time": 5727240, "featuredRunMedia": null, "reactionVideos": [], @@ -318757,7 +318257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 5727669, "featuredRunMedia": null, "reactionVideos": [], @@ -318777,7 +318277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "144330", "time": 5730357, "featuredRunMedia": null, "reactionVideos": [], @@ -318797,7 +318297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 5731977, "featuredRunMedia": null, "reactionVideos": [], @@ -318817,7 +318317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 5732834, "featuredRunMedia": null, "reactionVideos": [], @@ -318837,7 +318337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 5738203, "featuredRunMedia": null, "reactionVideos": [], @@ -318857,7 +318357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 5738393, "featuredRunMedia": null, "reactionVideos": [], @@ -318877,7 +318377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 5738442, "featuredRunMedia": null, "reactionVideos": [], @@ -318897,7 +318397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 5740333, "featuredRunMedia": null, "reactionVideos": [], @@ -318921,7 +318421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 5748513, "featuredRunMedia": null, "reactionVideos": [], @@ -318941,7 +318441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 5751462, "featuredRunMedia": null, "reactionVideos": [], @@ -318961,7 +318461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 5751557, "featuredRunMedia": null, "reactionVideos": [], @@ -318981,7 +318481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 5752834, "featuredRunMedia": null, "reactionVideos": [], @@ -319001,7 +318501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 5754993, "featuredRunMedia": null, "reactionVideos": [], @@ -319021,7 +318521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5755058, "featuredRunMedia": null, "reactionVideos": [], @@ -319041,7 +318541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 5759648, "featuredRunMedia": null, "reactionVideos": [], @@ -319061,7 +318561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 5759915, "featuredRunMedia": null, "reactionVideos": [], @@ -319081,7 +318581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 5761322, "featuredRunMedia": null, "reactionVideos": [], @@ -319101,7 +318601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 5762912, "featuredRunMedia": null, "reactionVideos": [], @@ -319121,7 +318621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 5766100, "featuredRunMedia": null, "reactionVideos": [], @@ -319141,7 +318641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 5766475, "featuredRunMedia": null, "reactionVideos": [], @@ -319161,7 +318661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "144237", "time": 5766963, "featuredRunMedia": null, "reactionVideos": [], @@ -319181,7 +318681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 5770594, "featuredRunMedia": null, "reactionVideos": [], @@ -319201,7 +318701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 5774559, "featuredRunMedia": null, "reactionVideos": [], @@ -319221,7 +318721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 5775613, "featuredRunMedia": null, "reactionVideos": [], @@ -319241,7 +318741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5778586, "featuredRunMedia": null, "reactionVideos": [], @@ -319261,7 +318761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 5779428, "featuredRunMedia": null, "reactionVideos": [], @@ -319281,7 +318781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 5779642, "featuredRunMedia": null, "reactionVideos": [], @@ -319301,7 +318801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 400, + "teamId": "144470", "time": 5782412, "featuredRunMedia": null, "reactionVideos": [], @@ -319321,7 +318821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 5782454, "featuredRunMedia": null, "reactionVideos": [], @@ -319341,7 +318841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 5783576, "featuredRunMedia": null, "reactionVideos": [], @@ -319361,7 +318861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 5785545, "featuredRunMedia": null, "reactionVideos": [], @@ -319381,7 +318881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 5787541, "featuredRunMedia": null, "reactionVideos": [], @@ -319401,7 +318901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5789635, "featuredRunMedia": null, "reactionVideos": [], @@ -319421,7 +318921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 5789956, "featuredRunMedia": null, "reactionVideos": [], @@ -319441,7 +318941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 5793685, "featuredRunMedia": null, "reactionVideos": [], @@ -319461,7 +318961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "144143", "time": 5802992, "featuredRunMedia": null, "reactionVideos": [], @@ -319481,7 +318981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 5804923, "featuredRunMedia": null, "reactionVideos": [], @@ -319501,7 +319001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 5807376, "featuredRunMedia": null, "reactionVideos": [], @@ -319521,7 +319021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 5808906, "featuredRunMedia": null, "reactionVideos": [], @@ -319541,7 +319041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 5811417, "featuredRunMedia": null, "reactionVideos": [], @@ -319561,7 +319061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 5813187, "featuredRunMedia": null, "reactionVideos": [], @@ -319581,7 +319081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 5815128, "featuredRunMedia": null, "reactionVideos": [], @@ -319601,7 +319101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 5815380, "featuredRunMedia": null, "reactionVideos": [], @@ -319621,7 +319121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 5815521, "featuredRunMedia": null, "reactionVideos": [], @@ -319641,7 +319141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5815838, "featuredRunMedia": null, "reactionVideos": [], @@ -319661,7 +319161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 5815907, "featuredRunMedia": null, "reactionVideos": [], @@ -319681,7 +319181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 5816952, "featuredRunMedia": null, "reactionVideos": [], @@ -319701,7 +319201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 5818736, "featuredRunMedia": null, "reactionVideos": [], @@ -319721,7 +319221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 5819904, "featuredRunMedia": null, "reactionVideos": [], @@ -319741,7 +319241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "144255", "time": 5822297, "featuredRunMedia": null, "reactionVideos": [], @@ -319761,7 +319261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 5822858, "featuredRunMedia": null, "reactionVideos": [], @@ -319781,7 +319281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 5824614, "featuredRunMedia": null, "reactionVideos": [], @@ -319801,7 +319301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "144252", "time": 5828931, "featuredRunMedia": null, "reactionVideos": [], @@ -319821,7 +319321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 5830992, "featuredRunMedia": null, "reactionVideos": [], @@ -319841,7 +319341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 5832382, "featuredRunMedia": null, "reactionVideos": [], @@ -319861,7 +319361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 5834151, "featuredRunMedia": null, "reactionVideos": [], @@ -319881,7 +319381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5836778, "featuredRunMedia": null, "reactionVideos": [], @@ -319901,7 +319401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "144169", "time": 5838605, "featuredRunMedia": null, "reactionVideos": [], @@ -319921,7 +319421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 5841022, "featuredRunMedia": null, "reactionVideos": [], @@ -319941,7 +319441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 5845701, "featuredRunMedia": null, "reactionVideos": [], @@ -319961,7 +319461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 5846311, "featuredRunMedia": null, "reactionVideos": [], @@ -319981,7 +319481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 5846388, "featuredRunMedia": null, "reactionVideos": [], @@ -320001,7 +319501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 5847250, "featuredRunMedia": null, "reactionVideos": [], @@ -320021,7 +319521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 5847982, "featuredRunMedia": null, "reactionVideos": [], @@ -320041,7 +319541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 5849203, "featuredRunMedia": null, "reactionVideos": [], @@ -320061,7 +319561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 5850230, "featuredRunMedia": null, "reactionVideos": [], @@ -320081,7 +319581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5850564, "featuredRunMedia": null, "reactionVideos": [], @@ -320101,7 +319601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5850684, "featuredRunMedia": null, "reactionVideos": [], @@ -320121,7 +319621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 5851908, "featuredRunMedia": null, "reactionVideos": [], @@ -320141,7 +319641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 5852418, "featuredRunMedia": null, "reactionVideos": [], @@ -320161,7 +319661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 5854944, "featuredRunMedia": null, "reactionVideos": [], @@ -320181,7 +319681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 5855590, "featuredRunMedia": null, "reactionVideos": [], @@ -320201,7 +319701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5856352, "featuredRunMedia": null, "reactionVideos": [], @@ -320221,7 +319721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 5856982, "featuredRunMedia": null, "reactionVideos": [], @@ -320241,7 +319741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 5857420, "featuredRunMedia": null, "reactionVideos": [], @@ -320261,7 +319761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 5863265, "featuredRunMedia": null, "reactionVideos": [], @@ -320281,7 +319781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 5863523, "featuredRunMedia": null, "reactionVideos": [], @@ -320301,7 +319801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 386, + "teamId": "144456", "time": 5869917, "featuredRunMedia": null, "reactionVideos": [], @@ -320321,7 +319821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 5870076, "featuredRunMedia": null, "reactionVideos": [], @@ -320341,7 +319841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 5871192, "featuredRunMedia": null, "reactionVideos": [], @@ -320361,7 +319861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 5872416, "featuredRunMedia": null, "reactionVideos": [], @@ -320381,7 +319881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 5872800, "featuredRunMedia": null, "reactionVideos": [], @@ -320401,7 +319901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 5873519, "featuredRunMedia": null, "reactionVideos": [], @@ -320421,7 +319921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 5877203, "featuredRunMedia": null, "reactionVideos": [], @@ -320441,7 +319941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 5879141, "featuredRunMedia": null, "reactionVideos": [], @@ -320461,7 +319961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 82, + "teamId": "144152", "time": 5881802, "featuredRunMedia": null, "reactionVideos": [], @@ -320481,7 +319981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 5883752, "featuredRunMedia": null, "reactionVideos": [], @@ -320501,7 +320001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 5886309, "featuredRunMedia": null, "reactionVideos": [], @@ -320521,7 +320021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 5887740, "featuredRunMedia": null, "reactionVideos": [], @@ -320541,7 +320041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 5890812, "featuredRunMedia": null, "reactionVideos": [], @@ -320561,7 +320061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 5891417, "featuredRunMedia": null, "reactionVideos": [], @@ -320581,7 +320081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 418, + "teamId": "144488", "time": 5892255, "featuredRunMedia": null, "reactionVideos": [], @@ -320601,7 +320101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 5892724, "featuredRunMedia": null, "reactionVideos": [], @@ -320621,7 +320121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 5892792, "featuredRunMedia": null, "reactionVideos": [], @@ -320641,7 +320141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 5892827, "featuredRunMedia": null, "reactionVideos": [], @@ -320661,7 +320161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5893292, "featuredRunMedia": null, "reactionVideos": [], @@ -320681,7 +320181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 5894067, "featuredRunMedia": null, "reactionVideos": [], @@ -320701,7 +320201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 5895005, "featuredRunMedia": null, "reactionVideos": [], @@ -320721,7 +320221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 448, + "teamId": "144518", "time": 5896053, "featuredRunMedia": null, "reactionVideos": [], @@ -320741,7 +320241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 5896651, "featuredRunMedia": null, "reactionVideos": [], @@ -320761,7 +320261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 5898367, "featuredRunMedia": null, "reactionVideos": [], @@ -320785,7 +320285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 5901719, "featuredRunMedia": null, "reactionVideos": [], @@ -320805,7 +320305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 5902508, "featuredRunMedia": null, "reactionVideos": [], @@ -320825,7 +320325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 350, + "teamId": "144420", "time": 5904221, "featuredRunMedia": null, "reactionVideos": [], @@ -320845,7 +320345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 5905483, "featuredRunMedia": null, "reactionVideos": [], @@ -320865,7 +320365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 5908006, "featuredRunMedia": null, "reactionVideos": [], @@ -320885,7 +320385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 5911563, "featuredRunMedia": null, "reactionVideos": [], @@ -320909,7 +320409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 5912611, "featuredRunMedia": null, "reactionVideos": [], @@ -320929,7 +320429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 5914319, "featuredRunMedia": null, "reactionVideos": [], @@ -320949,7 +320449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 5914363, "featuredRunMedia": null, "reactionVideos": [], @@ -320969,7 +320469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 5916444, "featuredRunMedia": null, "reactionVideos": [], @@ -320989,7 +320489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "144178", "time": 5916549, "featuredRunMedia": null, "reactionVideos": [], @@ -321009,7 +320509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 5916594, "featuredRunMedia": null, "reactionVideos": [], @@ -321029,7 +320529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "144330", "time": 5917369, "featuredRunMedia": null, "reactionVideos": [], @@ -321049,7 +320549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "144135", "time": 5919253, "featuredRunMedia": null, "reactionVideos": [], @@ -321069,7 +320569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 5921056, "featuredRunMedia": null, "reactionVideos": [], @@ -321089,7 +320589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 5921359, "featuredRunMedia": null, "reactionVideos": [], @@ -321109,7 +320609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 5921767, "featuredRunMedia": null, "reactionVideos": [], @@ -321129,7 +320629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 5926169, "featuredRunMedia": null, "reactionVideos": [], @@ -321149,7 +320649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 5926794, "featuredRunMedia": null, "reactionVideos": [], @@ -321169,7 +320669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 363, + "teamId": "144433", "time": 5927566, "featuredRunMedia": null, "reactionVideos": [], @@ -321189,7 +320689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 5927825, "featuredRunMedia": null, "reactionVideos": [], @@ -321209,7 +320709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 5928506, "featuredRunMedia": null, "reactionVideos": [], @@ -321233,7 +320733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 5932990, "featuredRunMedia": null, "reactionVideos": [], @@ -321253,7 +320753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "144357", "time": 5933044, "featuredRunMedia": null, "reactionVideos": [], @@ -321273,7 +320773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 5936059, "featuredRunMedia": null, "reactionVideos": [], @@ -321297,7 +320797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 5938420, "featuredRunMedia": null, "reactionVideos": [], @@ -321317,7 +320817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 5942017, "featuredRunMedia": null, "reactionVideos": [], @@ -321337,7 +320837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 5942915, "featuredRunMedia": null, "reactionVideos": [], @@ -321357,7 +320857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 5945387, "featuredRunMedia": null, "reactionVideos": [], @@ -321377,7 +320877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 5949809, "featuredRunMedia": null, "reactionVideos": [], @@ -321397,7 +320897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 5952790, "featuredRunMedia": null, "reactionVideos": [], @@ -321417,7 +320917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 5957892, "featuredRunMedia": null, "reactionVideos": [], @@ -321437,7 +320937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 5960075, "featuredRunMedia": null, "reactionVideos": [], @@ -321457,7 +320957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 5960203, "featuredRunMedia": null, "reactionVideos": [], @@ -321477,7 +320977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 5961608, "featuredRunMedia": null, "reactionVideos": [], @@ -321497,7 +320997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 5966617, "featuredRunMedia": null, "reactionVideos": [], @@ -321517,7 +321017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 5970810, "featuredRunMedia": null, "reactionVideos": [], @@ -321537,7 +321037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 5971973, "featuredRunMedia": null, "reactionVideos": [], @@ -321557,7 +321057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 5975089, "featuredRunMedia": null, "reactionVideos": [], @@ -321577,7 +321077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 5975492, "featuredRunMedia": null, "reactionVideos": [], @@ -321597,7 +321097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 5976891, "featuredRunMedia": null, "reactionVideos": [], @@ -321617,7 +321117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 5977504, "featuredRunMedia": null, "reactionVideos": [], @@ -321637,7 +321137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 5978100, "featuredRunMedia": null, "reactionVideos": [], @@ -321657,7 +321157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 5978272, "featuredRunMedia": null, "reactionVideos": [], @@ -321677,7 +321177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "144179", "time": 5980057, "featuredRunMedia": null, "reactionVideos": [], @@ -321697,7 +321197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "144249", "time": 5980809, "featuredRunMedia": null, "reactionVideos": [], @@ -321717,7 +321217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 5982779, "featuredRunMedia": null, "reactionVideos": [], @@ -321737,7 +321237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 5984399, "featuredRunMedia": null, "reactionVideos": [], @@ -321757,7 +321257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 5987214, "featuredRunMedia": null, "reactionVideos": [], @@ -321777,7 +321277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 5992406, "featuredRunMedia": null, "reactionVideos": [], @@ -321797,7 +321297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 5993151, "featuredRunMedia": null, "reactionVideos": [], @@ -321817,7 +321317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 5995919, "featuredRunMedia": null, "reactionVideos": [], @@ -321837,7 +321337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6004091, "featuredRunMedia": null, "reactionVideos": [], @@ -321857,7 +321357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 6004200, "featuredRunMedia": null, "reactionVideos": [], @@ -321877,7 +321377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 6005897, "featuredRunMedia": null, "reactionVideos": [], @@ -321897,7 +321397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 6006068, "featuredRunMedia": null, "reactionVideos": [], @@ -321917,7 +321417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 6006112, "featuredRunMedia": null, "reactionVideos": [], @@ -321937,7 +321437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 6006460, "featuredRunMedia": null, "reactionVideos": [], @@ -321957,7 +321457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 6007247, "featuredRunMedia": null, "reactionVideos": [], @@ -321977,7 +321477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 367, + "teamId": "144437", "time": 6007465, "featuredRunMedia": null, "reactionVideos": [], @@ -321997,7 +321497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 6012408, "featuredRunMedia": null, "reactionVideos": [], @@ -322017,7 +321517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 6013738, "featuredRunMedia": null, "reactionVideos": [], @@ -322037,7 +321537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 6014500, "featuredRunMedia": null, "reactionVideos": [], @@ -322057,7 +321557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 6015909, "featuredRunMedia": null, "reactionVideos": [], @@ -322077,7 +321577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 6016068, "featuredRunMedia": null, "reactionVideos": [], @@ -322097,7 +321597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 6017309, "featuredRunMedia": null, "reactionVideos": [], @@ -322117,7 +321617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 6018181, "featuredRunMedia": null, "reactionVideos": [], @@ -322137,7 +321637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 6018265, "featuredRunMedia": null, "reactionVideos": [], @@ -322157,7 +321657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 6018420, "featuredRunMedia": null, "reactionVideos": [], @@ -322177,7 +321677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 6019459, "featuredRunMedia": null, "reactionVideos": [], @@ -322197,7 +321697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 6022934, "featuredRunMedia": null, "reactionVideos": [], @@ -322217,7 +321717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 6028026, "featuredRunMedia": null, "reactionVideos": [], @@ -322237,7 +321737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 6033918, "featuredRunMedia": null, "reactionVideos": [], @@ -322257,7 +321757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "144162", "time": 6039539, "featuredRunMedia": null, "reactionVideos": [], @@ -322277,7 +321777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 6042621, "featuredRunMedia": null, "reactionVideos": [], @@ -322297,7 +321797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 6044586, "featuredRunMedia": null, "reactionVideos": [], @@ -322317,7 +321817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 6044967, "featuredRunMedia": null, "reactionVideos": [], @@ -322341,7 +321841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 6045442, "featuredRunMedia": null, "reactionVideos": [], @@ -322361,7 +321861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 6046014, "featuredRunMedia": null, "reactionVideos": [], @@ -322381,7 +321881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 6046789, "featuredRunMedia": null, "reactionVideos": [], @@ -322401,7 +321901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 6055614, "featuredRunMedia": null, "reactionVideos": [], @@ -322421,7 +321921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 6056776, "featuredRunMedia": null, "reactionVideos": [], @@ -322445,7 +321945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 6057397, "featuredRunMedia": null, "reactionVideos": [], @@ -322465,7 +321965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 6063269, "featuredRunMedia": null, "reactionVideos": [], @@ -322485,7 +321985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 6063646, "featuredRunMedia": null, "reactionVideos": [], @@ -322505,7 +322005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 6064602, "featuredRunMedia": null, "reactionVideos": [], @@ -322525,7 +322025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 6064948, "featuredRunMedia": null, "reactionVideos": [], @@ -322545,7 +322045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 6066757, "featuredRunMedia": null, "reactionVideos": [], @@ -322565,7 +322065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 6067055, "featuredRunMedia": null, "reactionVideos": [], @@ -322585,7 +322085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 6070418, "featuredRunMedia": null, "reactionVideos": [], @@ -322605,7 +322105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 6072300, "featuredRunMedia": null, "reactionVideos": [], @@ -322625,7 +322125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 6074831, "featuredRunMedia": null, "reactionVideos": [], @@ -322645,7 +322145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 6075218, "featuredRunMedia": null, "reactionVideos": [], @@ -322665,7 +322165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "144226", "time": 6075665, "featuredRunMedia": null, "reactionVideos": [], @@ -322685,7 +322185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 10, + "teamId": "144080", "time": 6076159, "featuredRunMedia": null, "reactionVideos": [], @@ -322705,7 +322205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 6077784, "featuredRunMedia": null, "reactionVideos": [], @@ -322725,7 +322225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "144304", "time": 6081463, "featuredRunMedia": null, "reactionVideos": [], @@ -322745,7 +322245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 6083032, "featuredRunMedia": null, "reactionVideos": [], @@ -322765,7 +322265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 6084178, "featuredRunMedia": null, "reactionVideos": [], @@ -322785,7 +322285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 6086144, "featuredRunMedia": null, "reactionVideos": [], @@ -322805,7 +322305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "144242", "time": 6086191, "featuredRunMedia": null, "reactionVideos": [], @@ -322825,7 +322325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 6086726, "featuredRunMedia": null, "reactionVideos": [], @@ -322845,7 +322345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 6086896, "featuredRunMedia": null, "reactionVideos": [], @@ -322865,7 +322365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 6087059, "featuredRunMedia": null, "reactionVideos": [], @@ -322885,7 +322385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 6089166, "featuredRunMedia": null, "reactionVideos": [], @@ -322905,7 +322405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 6089206, "featuredRunMedia": null, "reactionVideos": [], @@ -322925,7 +322425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 6090045, "featuredRunMedia": null, "reactionVideos": [], @@ -322945,7 +322445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 6090446, "featuredRunMedia": null, "reactionVideos": [], @@ -322965,7 +322465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 6097442, "featuredRunMedia": null, "reactionVideos": [], @@ -322985,7 +322485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 6098373, "featuredRunMedia": null, "reactionVideos": [], @@ -323005,7 +322505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6098919, "featuredRunMedia": null, "reactionVideos": [], @@ -323025,7 +322525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 6103875, "featuredRunMedia": null, "reactionVideos": [], @@ -323045,7 +322545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 6105057, "featuredRunMedia": null, "reactionVideos": [], @@ -323065,7 +322565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 248, + "teamId": "144318", "time": 6106397, "featuredRunMedia": null, "reactionVideos": [], @@ -323085,7 +322585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 6106976, "featuredRunMedia": null, "reactionVideos": [], @@ -323105,7 +322605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 6107604, "featuredRunMedia": null, "reactionVideos": [], @@ -323125,7 +322625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 6111139, "featuredRunMedia": null, "reactionVideos": [], @@ -323145,7 +322645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 6111634, "featuredRunMedia": null, "reactionVideos": [], @@ -323165,7 +322665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 6116217, "featuredRunMedia": null, "reactionVideos": [], @@ -323185,7 +322685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 6119384, "featuredRunMedia": null, "reactionVideos": [], @@ -323205,7 +322705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 6122347, "featuredRunMedia": null, "reactionVideos": [], @@ -323225,7 +322725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 6123612, "featuredRunMedia": null, "reactionVideos": [], @@ -323245,7 +322745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 6124395, "featuredRunMedia": null, "reactionVideos": [], @@ -323265,7 +322765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 6126049, "featuredRunMedia": null, "reactionVideos": [], @@ -323285,7 +322785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 6127192, "featuredRunMedia": null, "reactionVideos": [], @@ -323305,7 +322805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 6129514, "featuredRunMedia": null, "reactionVideos": [], @@ -323325,7 +322825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 6129890, "featuredRunMedia": null, "reactionVideos": [], @@ -323345,7 +322845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 6131094, "featuredRunMedia": null, "reactionVideos": [], @@ -323365,7 +322865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 6131874, "featuredRunMedia": null, "reactionVideos": [], @@ -323385,7 +322885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 6133189, "featuredRunMedia": null, "reactionVideos": [], @@ -323405,7 +322905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 6133990, "featuredRunMedia": null, "reactionVideos": [], @@ -323425,7 +322925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 19, + "teamId": "144089", "time": 6134707, "featuredRunMedia": null, "reactionVideos": [], @@ -323445,7 +322945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 6136562, "featuredRunMedia": null, "reactionVideos": [], @@ -323465,7 +322965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 6139186, "featuredRunMedia": null, "reactionVideos": [], @@ -323485,7 +322985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "144374", "time": 6141907, "featuredRunMedia": null, "reactionVideos": [], @@ -323505,7 +323005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 6143408, "featuredRunMedia": null, "reactionVideos": [], @@ -323525,7 +323025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 443, + "teamId": "144513", "time": 6143937, "featuredRunMedia": null, "reactionVideos": [], @@ -323545,7 +323045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 6144419, "featuredRunMedia": null, "reactionVideos": [], @@ -323565,7 +323065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 6145034, "featuredRunMedia": null, "reactionVideos": [], @@ -323585,7 +323085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 6145592, "featuredRunMedia": null, "reactionVideos": [], @@ -323605,7 +323105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 6145993, "featuredRunMedia": null, "reactionVideos": [], @@ -323625,7 +323125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 6146053, "featuredRunMedia": null, "reactionVideos": [], @@ -323645,7 +323145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 6146577, "featuredRunMedia": null, "reactionVideos": [], @@ -323665,7 +323165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 6146756, "featuredRunMedia": null, "reactionVideos": [], @@ -323685,7 +323185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 6150477, "featuredRunMedia": null, "reactionVideos": [], @@ -323705,7 +323205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 6151784, "featuredRunMedia": null, "reactionVideos": [], @@ -323725,7 +323225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 6152427, "featuredRunMedia": null, "reactionVideos": [], @@ -323745,7 +323245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 6154278, "featuredRunMedia": null, "reactionVideos": [], @@ -323765,7 +323265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 6154711, "featuredRunMedia": null, "reactionVideos": [], @@ -323785,7 +323285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 6155533, "featuredRunMedia": null, "reactionVideos": [], @@ -323805,7 +323305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 6155574, "featuredRunMedia": null, "reactionVideos": [], @@ -323825,7 +323325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "144203", "time": 6156492, "featuredRunMedia": null, "reactionVideos": [], @@ -323845,7 +323345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 6159072, "featuredRunMedia": null, "reactionVideos": [], @@ -323865,7 +323365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 6160350, "featuredRunMedia": null, "reactionVideos": [], @@ -323889,7 +323389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 6162173, "featuredRunMedia": null, "reactionVideos": [], @@ -323909,7 +323409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 371, + "teamId": "144441", "time": 6162407, "featuredRunMedia": null, "reactionVideos": [], @@ -323929,7 +323429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 6162733, "featuredRunMedia": null, "reactionVideos": [], @@ -323949,7 +323449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "144299", "time": 6164299, "featuredRunMedia": null, "reactionVideos": [], @@ -323969,7 +323469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 6164473, "featuredRunMedia": null, "reactionVideos": [], @@ -323993,7 +323493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 6164868, "featuredRunMedia": null, "reactionVideos": [], @@ -324013,7 +323513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 6165131, "featuredRunMedia": null, "reactionVideos": [], @@ -324033,7 +323533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 6165375, "featuredRunMedia": null, "reactionVideos": [], @@ -324053,7 +323553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 6166289, "featuredRunMedia": null, "reactionVideos": [], @@ -324073,7 +323573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "144181", "time": 6167639, "featuredRunMedia": null, "reactionVideos": [], @@ -324093,7 +323593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 6167739, "featuredRunMedia": null, "reactionVideos": [], @@ -324113,7 +323613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "144259", "time": 6169052, "featuredRunMedia": null, "reactionVideos": [], @@ -324133,7 +323633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 6170417, "featuredRunMedia": null, "reactionVideos": [], @@ -324153,7 +323653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 6171118, "featuredRunMedia": null, "reactionVideos": [], @@ -324173,7 +323673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 6171671, "featuredRunMedia": null, "reactionVideos": [], @@ -324193,7 +323693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 6172435, "featuredRunMedia": null, "reactionVideos": [], @@ -324213,7 +323713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "144306", "time": 6172522, "featuredRunMedia": null, "reactionVideos": [], @@ -324233,7 +323733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 6172580, "featuredRunMedia": null, "reactionVideos": [], @@ -324253,7 +323753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 6174992, "featuredRunMedia": null, "reactionVideos": [], @@ -324273,7 +323773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 339, + "teamId": "144409", "time": 6176196, "featuredRunMedia": null, "reactionVideos": [], @@ -324293,7 +323793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 6180873, "featuredRunMedia": null, "reactionVideos": [], @@ -324313,7 +323813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 6181783, "featuredRunMedia": null, "reactionVideos": [], @@ -324333,7 +323833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 6183424, "featuredRunMedia": null, "reactionVideos": [], @@ -324353,7 +323853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 6184034, "featuredRunMedia": null, "reactionVideos": [], @@ -324373,7 +323873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 418, + "teamId": "144488", "time": 6185409, "featuredRunMedia": null, "reactionVideos": [], @@ -324393,7 +323893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 6190615, "featuredRunMedia": null, "reactionVideos": [], @@ -324413,7 +323913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 6191725, "featuredRunMedia": null, "reactionVideos": [], @@ -324433,7 +323933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 382, + "teamId": "144452", "time": 6192581, "featuredRunMedia": null, "reactionVideos": [], @@ -324453,7 +323953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 6194131, "featuredRunMedia": null, "reactionVideos": [], @@ -324473,7 +323973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 6196204, "featuredRunMedia": null, "reactionVideos": [], @@ -324493,7 +323993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "144118", "time": 6196547, "featuredRunMedia": null, "reactionVideos": [], @@ -324513,7 +324013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 6197812, "featuredRunMedia": null, "reactionVideos": [], @@ -324533,7 +324033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "144084", "time": 6201338, "featuredRunMedia": null, "reactionVideos": [], @@ -324553,7 +324053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 6202713, "featuredRunMedia": null, "reactionVideos": [], @@ -324573,7 +324073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 6203003, "featuredRunMedia": null, "reactionVideos": [], @@ -324593,7 +324093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 6203175, "featuredRunMedia": null, "reactionVideos": [], @@ -324613,7 +324113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 435, + "teamId": "144505", "time": 6204294, "featuredRunMedia": null, "reactionVideos": [], @@ -324633,7 +324133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 6205831, "featuredRunMedia": null, "reactionVideos": [], @@ -324653,7 +324153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 6206198, "featuredRunMedia": null, "reactionVideos": [], @@ -324673,7 +324173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6206457, "featuredRunMedia": null, "reactionVideos": [], @@ -324693,7 +324193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 6207137, "featuredRunMedia": null, "reactionVideos": [], @@ -324713,7 +324213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 6210226, "featuredRunMedia": null, "reactionVideos": [], @@ -324733,7 +324233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 6212524, "featuredRunMedia": null, "reactionVideos": [], @@ -324753,7 +324253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "144309", "time": 6213493, "featuredRunMedia": null, "reactionVideos": [], @@ -324773,7 +324273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 6215854, "featuredRunMedia": null, "reactionVideos": [], @@ -324793,7 +324293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 6220164, "featuredRunMedia": null, "reactionVideos": [], @@ -324813,7 +324313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 6220212, "featuredRunMedia": null, "reactionVideos": [], @@ -324833,7 +324333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 6220728, "featuredRunMedia": null, "reactionVideos": [], @@ -324853,7 +324353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 6222899, "featuredRunMedia": null, "reactionVideos": [], @@ -324873,7 +324373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 6226973, "featuredRunMedia": null, "reactionVideos": [], @@ -324893,7 +324393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 6227180, "featuredRunMedia": null, "reactionVideos": [], @@ -324913,7 +324413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 6228448, "featuredRunMedia": null, "reactionVideos": [], @@ -324933,7 +324433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 6230295, "featuredRunMedia": null, "reactionVideos": [], @@ -324953,7 +324453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "144267", "time": 6231330, "featuredRunMedia": null, "reactionVideos": [], @@ -324973,7 +324473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 6231509, "featuredRunMedia": null, "reactionVideos": [], @@ -324993,7 +324493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6231729, "featuredRunMedia": null, "reactionVideos": [], @@ -325013,7 +324513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "144186", "time": 6232820, "featuredRunMedia": null, "reactionVideos": [], @@ -325033,7 +324533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 6234340, "featuredRunMedia": null, "reactionVideos": [], @@ -325053,7 +324553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 6234393, "featuredRunMedia": null, "reactionVideos": [], @@ -325073,7 +324573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "144296", "time": 6235057, "featuredRunMedia": null, "reactionVideos": [], @@ -325093,7 +324593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 6236590, "featuredRunMedia": null, "reactionVideos": [], @@ -325113,7 +324613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 6236651, "featuredRunMedia": null, "reactionVideos": [], @@ -325133,7 +324633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 6238778, "featuredRunMedia": null, "reactionVideos": [], @@ -325153,7 +324653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 6239912, "featuredRunMedia": null, "reactionVideos": [], @@ -325173,7 +324673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 6240281, "featuredRunMedia": null, "reactionVideos": [], @@ -325193,7 +324693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 383, + "teamId": "144453", "time": 6243825, "featuredRunMedia": null, "reactionVideos": [], @@ -325213,7 +324713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6244023, "featuredRunMedia": null, "reactionVideos": [], @@ -325233,7 +324733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6244262, "featuredRunMedia": null, "reactionVideos": [], @@ -325253,7 +324753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 6244386, "featuredRunMedia": null, "reactionVideos": [], @@ -325273,7 +324773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 6246724, "featuredRunMedia": null, "reactionVideos": [], @@ -325293,7 +324793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 6248660, "featuredRunMedia": null, "reactionVideos": [], @@ -325313,7 +324813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 6249526, "featuredRunMedia": null, "reactionVideos": [], @@ -325333,7 +324833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 6250044, "featuredRunMedia": null, "reactionVideos": [], @@ -325353,7 +324853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 6250710, "featuredRunMedia": null, "reactionVideos": [], @@ -325373,7 +324873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 6257818, "featuredRunMedia": null, "reactionVideos": [], @@ -325393,7 +324893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 6259081, "featuredRunMedia": null, "reactionVideos": [], @@ -325413,7 +324913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 6260876, "featuredRunMedia": null, "reactionVideos": [], @@ -325433,7 +324933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 6261455, "featuredRunMedia": null, "reactionVideos": [], @@ -325453,7 +324953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 6262608, "featuredRunMedia": null, "reactionVideos": [], @@ -325473,7 +324973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 6263890, "featuredRunMedia": null, "reactionVideos": [], @@ -325493,7 +324993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 6263948, "featuredRunMedia": null, "reactionVideos": [], @@ -325513,7 +325013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 6264326, "featuredRunMedia": null, "reactionVideos": [], @@ -325533,7 +325033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 6264607, "featuredRunMedia": null, "reactionVideos": [], @@ -325553,7 +325053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6270768, "featuredRunMedia": null, "reactionVideos": [], @@ -325573,7 +325073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 6271349, "featuredRunMedia": null, "reactionVideos": [], @@ -325593,7 +325093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "144375", "time": 6271948, "featuredRunMedia": null, "reactionVideos": [], @@ -325613,7 +325113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 6279904, "featuredRunMedia": null, "reactionVideos": [], @@ -325633,7 +325133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "144267", "time": 6283321, "featuredRunMedia": null, "reactionVideos": [], @@ -325653,7 +325153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "144329", "time": 6284725, "featuredRunMedia": null, "reactionVideos": [], @@ -325673,7 +325173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 6285446, "featuredRunMedia": null, "reactionVideos": [], @@ -325693,7 +325193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 6285505, "featuredRunMedia": null, "reactionVideos": [], @@ -325713,7 +325213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6293117, "featuredRunMedia": null, "reactionVideos": [], @@ -325733,7 +325233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 6293169, "featuredRunMedia": null, "reactionVideos": [], @@ -325753,7 +325253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 6294562, "featuredRunMedia": null, "reactionVideos": [], @@ -325773,7 +325273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 6295087, "featuredRunMedia": null, "reactionVideos": [], @@ -325797,7 +325297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 6295536, "featuredRunMedia": null, "reactionVideos": [], @@ -325817,7 +325317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 6296433, "featuredRunMedia": null, "reactionVideos": [], @@ -325837,7 +325337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 6297019, "featuredRunMedia": null, "reactionVideos": [], @@ -325857,7 +325357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 6299349, "featuredRunMedia": null, "reactionVideos": [], @@ -325877,7 +325377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 6302403, "featuredRunMedia": null, "reactionVideos": [], @@ -325897,7 +325397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 6303344, "featuredRunMedia": null, "reactionVideos": [], @@ -325917,7 +325417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 6303927, "featuredRunMedia": null, "reactionVideos": [], @@ -325937,7 +325437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 6304810, "featuredRunMedia": null, "reactionVideos": [], @@ -325957,7 +325457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 441, + "teamId": "144511", "time": 6307631, "featuredRunMedia": null, "reactionVideos": [], @@ -325977,7 +325477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 6310867, "featuredRunMedia": null, "reactionVideos": [], @@ -325997,7 +325497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 6310939, "featuredRunMedia": null, "reactionVideos": [], @@ -326017,7 +325517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 6311473, "featuredRunMedia": null, "reactionVideos": [], @@ -326037,7 +325537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 6313978, "featuredRunMedia": null, "reactionVideos": [], @@ -326057,7 +325557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 6314185, "featuredRunMedia": null, "reactionVideos": [], @@ -326077,7 +325577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 6314958, "featuredRunMedia": null, "reactionVideos": [], @@ -326097,7 +325597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 6317489, "featuredRunMedia": null, "reactionVideos": [], @@ -326117,7 +325617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 6317755, "featuredRunMedia": null, "reactionVideos": [], @@ -326137,7 +325637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6319790, "featuredRunMedia": null, "reactionVideos": [], @@ -326157,7 +325657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 6320658, "featuredRunMedia": null, "reactionVideos": [], @@ -326177,7 +325677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 6323078, "featuredRunMedia": null, "reactionVideos": [], @@ -326197,7 +325697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "144110", "time": 6325221, "featuredRunMedia": null, "reactionVideos": [], @@ -326217,7 +325717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 6325558, "featuredRunMedia": null, "reactionVideos": [], @@ -326237,7 +325737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 6326811, "featuredRunMedia": null, "reactionVideos": [], @@ -326257,7 +325757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 6327082, "featuredRunMedia": null, "reactionVideos": [], @@ -326277,7 +325777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 6327468, "featuredRunMedia": null, "reactionVideos": [], @@ -326297,7 +325797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 6328052, "featuredRunMedia": null, "reactionVideos": [], @@ -326317,7 +325817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 6330125, "featuredRunMedia": null, "reactionVideos": [], @@ -326337,7 +325837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 6330557, "featuredRunMedia": null, "reactionVideos": [], @@ -326357,7 +325857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 6332855, "featuredRunMedia": null, "reactionVideos": [], @@ -326377,7 +325877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 6334252, "featuredRunMedia": null, "reactionVideos": [], @@ -326397,7 +325897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 448, + "teamId": "144518", "time": 6334353, "featuredRunMedia": null, "reactionVideos": [], @@ -326417,7 +325917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 6334822, "featuredRunMedia": null, "reactionVideos": [], @@ -326437,7 +325937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 6335842, "featuredRunMedia": null, "reactionVideos": [], @@ -326457,7 +325957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "144416", "time": 6336854, "featuredRunMedia": null, "reactionVideos": [], @@ -326477,7 +325977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 6342312, "featuredRunMedia": null, "reactionVideos": [], @@ -326497,7 +325997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 6342501, "featuredRunMedia": null, "reactionVideos": [], @@ -326517,7 +326017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 6343288, "featuredRunMedia": null, "reactionVideos": [], @@ -326537,7 +326037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 137, + "teamId": "144207", "time": 6344525, "featuredRunMedia": null, "reactionVideos": [], @@ -326557,7 +326057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 6344753, "featuredRunMedia": null, "reactionVideos": [], @@ -326577,7 +326077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 6353496, "featuredRunMedia": null, "reactionVideos": [], @@ -326597,7 +326097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "144334", "time": 6353591, "featuredRunMedia": null, "reactionVideos": [], @@ -326617,7 +326117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6355635, "featuredRunMedia": null, "reactionVideos": [], @@ -326637,7 +326137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 6356897, "featuredRunMedia": null, "reactionVideos": [], @@ -326657,7 +326157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 6356976, "featuredRunMedia": null, "reactionVideos": [], @@ -326681,7 +326181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 6357377, "featuredRunMedia": null, "reactionVideos": [], @@ -326701,7 +326201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 6362547, "featuredRunMedia": null, "reactionVideos": [], @@ -326721,7 +326221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 6363113, "featuredRunMedia": null, "reactionVideos": [], @@ -326741,7 +326241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 384, + "teamId": "144454", "time": 6365482, "featuredRunMedia": null, "reactionVideos": [], @@ -326761,7 +326261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 6367419, "featuredRunMedia": null, "reactionVideos": [], @@ -326781,7 +326281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 6368173, "featuredRunMedia": null, "reactionVideos": [], @@ -326801,7 +326301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 402, + "teamId": "144472", "time": 6368812, "featuredRunMedia": null, "reactionVideos": [], @@ -326821,7 +326321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 6370299, "featuredRunMedia": null, "reactionVideos": [], @@ -326841,7 +326341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 6371511, "featuredRunMedia": null, "reactionVideos": [], @@ -326861,7 +326361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 6371881, "featuredRunMedia": null, "reactionVideos": [], @@ -326881,7 +326381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 6372534, "featuredRunMedia": null, "reactionVideos": [], @@ -326901,7 +326401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 6372582, "featuredRunMedia": null, "reactionVideos": [], @@ -326921,7 +326421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "144329", "time": 6372940, "featuredRunMedia": null, "reactionVideos": [], @@ -326941,7 +326441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "144380", "time": 6373018, "featuredRunMedia": null, "reactionVideos": [], @@ -326961,7 +326461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 443, + "teamId": "144513", "time": 6374200, "featuredRunMedia": null, "reactionVideos": [], @@ -326981,7 +326481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 6374909, "featuredRunMedia": null, "reactionVideos": [], @@ -327001,7 +326501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 347, + "teamId": "144417", "time": 6377677, "featuredRunMedia": null, "reactionVideos": [], @@ -327021,7 +326521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 6378039, "featuredRunMedia": null, "reactionVideos": [], @@ -327041,7 +326541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6378199, "featuredRunMedia": null, "reactionVideos": [], @@ -327061,7 +326561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 6380113, "featuredRunMedia": null, "reactionVideos": [], @@ -327081,7 +326581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 6381774, "featuredRunMedia": null, "reactionVideos": [], @@ -327101,7 +326601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 6383011, "featuredRunMedia": null, "reactionVideos": [], @@ -327121,7 +326621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 6383818, "featuredRunMedia": null, "reactionVideos": [], @@ -327141,7 +326641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 6386544, "featuredRunMedia": null, "reactionVideos": [], @@ -327161,7 +326661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "144413", "time": 6387315, "featuredRunMedia": null, "reactionVideos": [], @@ -327181,7 +326681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "144304", "time": 6387467, "featuredRunMedia": null, "reactionVideos": [], @@ -327201,7 +326701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 6390860, "featuredRunMedia": null, "reactionVideos": [], @@ -327221,7 +326721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 6391502, "featuredRunMedia": null, "reactionVideos": [], @@ -327241,7 +326741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 6392233, "featuredRunMedia": null, "reactionVideos": [], @@ -327261,7 +326761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 6395274, "featuredRunMedia": null, "reactionVideos": [], @@ -327281,7 +326781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6395518, "featuredRunMedia": null, "reactionVideos": [], @@ -327301,7 +326801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 6397156, "featuredRunMedia": null, "reactionVideos": [], @@ -327321,7 +326821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6397893, "featuredRunMedia": null, "reactionVideos": [], @@ -327341,7 +326841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 6398300, "featuredRunMedia": null, "reactionVideos": [], @@ -327361,7 +326861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 6399764, "featuredRunMedia": null, "reactionVideos": [], @@ -327381,7 +326881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "144343", "time": 6401756, "featuredRunMedia": null, "reactionVideos": [], @@ -327401,7 +326901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 6405947, "featuredRunMedia": null, "reactionVideos": [], @@ -327421,7 +326921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 6407842, "featuredRunMedia": null, "reactionVideos": [], @@ -327441,7 +326941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 6408733, "featuredRunMedia": null, "reactionVideos": [], @@ -327461,7 +326961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 6411964, "featuredRunMedia": null, "reactionVideos": [], @@ -327481,7 +326981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 6413467, "featuredRunMedia": null, "reactionVideos": [], @@ -327501,7 +327001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 6414646, "featuredRunMedia": null, "reactionVideos": [], @@ -327521,7 +327021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 6415880, "featuredRunMedia": null, "reactionVideos": [], @@ -327541,7 +327041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 6416441, "featuredRunMedia": null, "reactionVideos": [], @@ -327561,7 +327061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 6417342, "featuredRunMedia": null, "reactionVideos": [], @@ -327581,7 +327081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 6419782, "featuredRunMedia": null, "reactionVideos": [], @@ -327601,7 +327101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6420256, "featuredRunMedia": null, "reactionVideos": [], @@ -327621,7 +327121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "144275", "time": 6420737, "featuredRunMedia": null, "reactionVideos": [], @@ -327641,7 +327141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 6421134, "featuredRunMedia": null, "reactionVideos": [], @@ -327661,7 +327161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "144221", "time": 6421661, "featuredRunMedia": null, "reactionVideos": [], @@ -327681,7 +327181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 6423324, "featuredRunMedia": null, "reactionVideos": [], @@ -327701,7 +327201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 6424239, "featuredRunMedia": null, "reactionVideos": [], @@ -327721,7 +327221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 6424503, "featuredRunMedia": null, "reactionVideos": [], @@ -327741,7 +327241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 10, + "teamId": "144080", "time": 6425609, "featuredRunMedia": null, "reactionVideos": [], @@ -327761,7 +327261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 6425737, "featuredRunMedia": null, "reactionVideos": [], @@ -327781,7 +327281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 6427914, "featuredRunMedia": null, "reactionVideos": [], @@ -327801,7 +327301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 6429544, "featuredRunMedia": null, "reactionVideos": [], @@ -327821,7 +327321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6438580, "featuredRunMedia": null, "reactionVideos": [], @@ -327841,7 +327341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 6438988, "featuredRunMedia": null, "reactionVideos": [], @@ -327861,7 +327361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "144181", "time": 6439372, "featuredRunMedia": null, "reactionVideos": [], @@ -327881,7 +327381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 6441558, "featuredRunMedia": null, "reactionVideos": [], @@ -327901,7 +327401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 6442244, "featuredRunMedia": null, "reactionVideos": [], @@ -327921,7 +327421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 6444286, "featuredRunMedia": null, "reactionVideos": [], @@ -327941,7 +327441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 6444351, "featuredRunMedia": null, "reactionVideos": [], @@ -327961,7 +327461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 6445306, "featuredRunMedia": null, "reactionVideos": [], @@ -327981,7 +327481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6447073, "featuredRunMedia": null, "reactionVideos": [], @@ -328001,7 +327501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 6447288, "featuredRunMedia": null, "reactionVideos": [], @@ -328021,7 +327521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 6451858, "featuredRunMedia": null, "reactionVideos": [], @@ -328041,7 +327541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 6452755, "featuredRunMedia": null, "reactionVideos": [], @@ -328065,7 +327565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 6453883, "featuredRunMedia": null, "reactionVideos": [], @@ -328085,7 +327585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 6454662, "featuredRunMedia": null, "reactionVideos": [], @@ -328105,7 +327605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 6457871, "featuredRunMedia": null, "reactionVideos": [], @@ -328125,7 +327625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 6459175, "featuredRunMedia": null, "reactionVideos": [], @@ -328145,7 +327645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "144287", "time": 6460417, "featuredRunMedia": null, "reactionVideos": [], @@ -328165,7 +327665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 6461182, "featuredRunMedia": null, "reactionVideos": [], @@ -328185,7 +327685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "144281", "time": 6463808, "featuredRunMedia": null, "reactionVideos": [], @@ -328205,7 +327705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 6467831, "featuredRunMedia": null, "reactionVideos": [], @@ -328225,7 +327725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 6468292, "featuredRunMedia": null, "reactionVideos": [], @@ -328245,7 +327745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 6468941, "featuredRunMedia": null, "reactionVideos": [], @@ -328265,7 +327765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 6469774, "featuredRunMedia": null, "reactionVideos": [], @@ -328285,7 +327785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 6471321, "featuredRunMedia": null, "reactionVideos": [], @@ -328305,7 +327805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 6471904, "featuredRunMedia": null, "reactionVideos": [], @@ -328325,7 +327825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 206, + "teamId": "144276", "time": 6473732, "featuredRunMedia": null, "reactionVideos": [], @@ -328345,7 +327845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "144327", "time": 6474504, "featuredRunMedia": null, "reactionVideos": [], @@ -328365,7 +327865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "144252", "time": 6476275, "featuredRunMedia": null, "reactionVideos": [], @@ -328389,7 +327889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 6476356, "featuredRunMedia": null, "reactionVideos": [], @@ -328409,7 +327909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 6477178, "featuredRunMedia": null, "reactionVideos": [], @@ -328429,7 +327929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 357, + "teamId": "144427", "time": 6477391, "featuredRunMedia": null, "reactionVideos": [], @@ -328449,7 +327949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 387, + "teamId": "144457", "time": 6482623, "featuredRunMedia": null, "reactionVideos": [], @@ -328469,7 +327969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "144124", "time": 6483445, "featuredRunMedia": null, "reactionVideos": [], @@ -328489,7 +327989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 6484166, "featuredRunMedia": null, "reactionVideos": [], @@ -328509,7 +328009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 412, + "teamId": "144482", "time": 6484693, "featuredRunMedia": null, "reactionVideos": [], @@ -328529,7 +328029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 6487407, "featuredRunMedia": null, "reactionVideos": [], @@ -328549,7 +328049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 6487591, "featuredRunMedia": null, "reactionVideos": [], @@ -328569,7 +328069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 6488523, "featuredRunMedia": null, "reactionVideos": [], @@ -328589,7 +328089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 6492971, "featuredRunMedia": null, "reactionVideos": [], @@ -328609,7 +328109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 6494763, "featuredRunMedia": null, "reactionVideos": [], @@ -328629,7 +328129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6494833, "featuredRunMedia": null, "reactionVideos": [], @@ -328649,7 +328149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6496843, "featuredRunMedia": null, "reactionVideos": [], @@ -328669,7 +328169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 6499787, "featuredRunMedia": null, "reactionVideos": [], @@ -328689,7 +328189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 6503260, "featuredRunMedia": null, "reactionVideos": [], @@ -328709,7 +328209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 6503790, "featuredRunMedia": null, "reactionVideos": [], @@ -328729,7 +328229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 6503899, "featuredRunMedia": null, "reactionVideos": [], @@ -328749,7 +328249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 6504800, "featuredRunMedia": null, "reactionVideos": [], @@ -328769,7 +328269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6505221, "featuredRunMedia": null, "reactionVideos": [], @@ -328789,7 +328289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 6511350, "featuredRunMedia": null, "reactionVideos": [], @@ -328809,7 +328309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 6512224, "featuredRunMedia": null, "reactionVideos": [], @@ -328829,7 +328329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 6513579, "featuredRunMedia": null, "reactionVideos": [], @@ -328853,7 +328353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 6521599, "featuredRunMedia": null, "reactionVideos": [], @@ -328873,7 +328373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 407, + "teamId": "144477", "time": 6522293, "featuredRunMedia": null, "reactionVideos": [], @@ -328893,7 +328393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 374, + "teamId": "144444", "time": 6523646, "featuredRunMedia": null, "reactionVideos": [], @@ -328913,7 +328413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6523772, "featuredRunMedia": null, "reactionVideos": [], @@ -328933,7 +328433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 6525613, "featuredRunMedia": null, "reactionVideos": [], @@ -328953,7 +328453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 6533220, "featuredRunMedia": null, "reactionVideos": [], @@ -328973,7 +328473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 366, + "teamId": "144436", "time": 6533688, "featuredRunMedia": null, "reactionVideos": [], @@ -328993,7 +328493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 6533893, "featuredRunMedia": null, "reactionVideos": [], @@ -329013,7 +328513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 6534909, "featuredRunMedia": null, "reactionVideos": [], @@ -329033,7 +328533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 6535542, "featuredRunMedia": null, "reactionVideos": [], @@ -329053,7 +328553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6537654, "featuredRunMedia": null, "reactionVideos": [], @@ -329073,7 +328573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6539341, "featuredRunMedia": null, "reactionVideos": [], @@ -329093,7 +328593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 6542278, "featuredRunMedia": null, "reactionVideos": [], @@ -329113,7 +328613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 6544790, "featuredRunMedia": null, "reactionVideos": [], @@ -329133,7 +328633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 6546836, "featuredRunMedia": null, "reactionVideos": [], @@ -329153,7 +328653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6546931, "featuredRunMedia": null, "reactionVideos": [], @@ -329173,7 +328673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 6547675, "featuredRunMedia": null, "reactionVideos": [], @@ -329193,7 +328693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 6548201, "featuredRunMedia": null, "reactionVideos": [], @@ -329213,7 +328713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 6548661, "featuredRunMedia": null, "reactionVideos": [], @@ -329233,7 +328733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "144329", "time": 6550627, "featuredRunMedia": null, "reactionVideos": [], @@ -329253,7 +328753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6553644, "featuredRunMedia": null, "reactionVideos": [], @@ -329273,7 +328773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 6554767, "featuredRunMedia": null, "reactionVideos": [], @@ -329293,7 +328793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 6555894, "featuredRunMedia": null, "reactionVideos": [], @@ -329313,7 +328813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 6559057, "featuredRunMedia": null, "reactionVideos": [], @@ -329333,7 +328833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6561948, "featuredRunMedia": null, "reactionVideos": [], @@ -329353,7 +328853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 6565210, "featuredRunMedia": null, "reactionVideos": [], @@ -329373,7 +328873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 6565551, "featuredRunMedia": null, "reactionVideos": [], @@ -329393,7 +328893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 6566261, "featuredRunMedia": null, "reactionVideos": [], @@ -329413,7 +328913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 6570034, "featuredRunMedia": null, "reactionVideos": [], @@ -329433,7 +328933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 6571869, "featuredRunMedia": null, "reactionVideos": [], @@ -329453,7 +328953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "144356", "time": 6572351, "featuredRunMedia": null, "reactionVideos": [], @@ -329473,7 +328973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6576438, "featuredRunMedia": null, "reactionVideos": [], @@ -329493,7 +328993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 6576883, "featuredRunMedia": null, "reactionVideos": [], @@ -329513,7 +329013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 6577505, "featuredRunMedia": null, "reactionVideos": [], @@ -329533,7 +329033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 6578297, "featuredRunMedia": null, "reactionVideos": [], @@ -329553,7 +329053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 6578392, "featuredRunMedia": null, "reactionVideos": [], @@ -329573,7 +329073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 6580137, "featuredRunMedia": null, "reactionVideos": [], @@ -329593,7 +329093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "144237", "time": 6581006, "featuredRunMedia": null, "reactionVideos": [], @@ -329613,7 +329113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 6581676, "featuredRunMedia": null, "reactionVideos": [], @@ -329633,7 +329133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 6583640, "featuredRunMedia": null, "reactionVideos": [], @@ -329653,7 +329153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 6584825, "featuredRunMedia": null, "reactionVideos": [], @@ -329673,7 +329173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 6585631, "featuredRunMedia": null, "reactionVideos": [], @@ -329693,7 +329193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6588528, "featuredRunMedia": null, "reactionVideos": [], @@ -329713,7 +329213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 6589154, "featuredRunMedia": null, "reactionVideos": [], @@ -329733,7 +329233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 6592310, "featuredRunMedia": null, "reactionVideos": [], @@ -329753,7 +329253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 6595477, "featuredRunMedia": null, "reactionVideos": [], @@ -329773,7 +329273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "144310", "time": 6595785, "featuredRunMedia": null, "reactionVideos": [], @@ -329793,7 +329293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 6596865, "featuredRunMedia": null, "reactionVideos": [], @@ -329813,7 +329313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 6597890, "featuredRunMedia": null, "reactionVideos": [], @@ -329833,7 +329333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 6598158, "featuredRunMedia": null, "reactionVideos": [], @@ -329853,7 +329353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 6598221, "featuredRunMedia": null, "reactionVideos": [], @@ -329877,7 +329377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 6599842, "featuredRunMedia": null, "reactionVideos": [], @@ -329897,7 +329397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 6601448, "featuredRunMedia": null, "reactionVideos": [], @@ -329917,7 +329417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "144299", "time": 6605366, "featuredRunMedia": null, "reactionVideos": [], @@ -329937,7 +329437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 369, + "teamId": "144439", "time": 6608459, "featuredRunMedia": null, "reactionVideos": [], @@ -329957,7 +329457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 6610837, "featuredRunMedia": null, "reactionVideos": [], @@ -329977,7 +329477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 6611261, "featuredRunMedia": null, "reactionVideos": [], @@ -329997,7 +329497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 6612765, "featuredRunMedia": null, "reactionVideos": [], @@ -330017,7 +329517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 6613678, "featuredRunMedia": null, "reactionVideos": [], @@ -330037,7 +329537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "144380", "time": 6613737, "featuredRunMedia": null, "reactionVideos": [], @@ -330057,7 +329557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 435, + "teamId": "144505", "time": 6616404, "featuredRunMedia": null, "reactionVideos": [], @@ -330077,7 +329577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 6616812, "featuredRunMedia": null, "reactionVideos": [], @@ -330097,7 +329597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 6621084, "featuredRunMedia": null, "reactionVideos": [], @@ -330117,7 +329617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 6624275, "featuredRunMedia": null, "reactionVideos": [], @@ -330137,7 +329637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 6629070, "featuredRunMedia": null, "reactionVideos": [], @@ -330161,7 +329661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6630646, "featuredRunMedia": null, "reactionVideos": [], @@ -330181,7 +329681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 6631162, "featuredRunMedia": null, "reactionVideos": [], @@ -330201,7 +329701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 6631347, "featuredRunMedia": null, "reactionVideos": [], @@ -330221,7 +329721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 6632694, "featuredRunMedia": null, "reactionVideos": [], @@ -330241,7 +329741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 6633663, "featuredRunMedia": null, "reactionVideos": [], @@ -330261,7 +329761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 6636029, "featuredRunMedia": null, "reactionVideos": [], @@ -330281,7 +329781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 6636271, "featuredRunMedia": null, "reactionVideos": [], @@ -330301,7 +329801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 6638579, "featuredRunMedia": null, "reactionVideos": [], @@ -330321,7 +329821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 6640312, "featuredRunMedia": null, "reactionVideos": [], @@ -330341,7 +329841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 6642715, "featuredRunMedia": null, "reactionVideos": [], @@ -330361,7 +329861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 6643652, "featuredRunMedia": null, "reactionVideos": [], @@ -330381,7 +329881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 6647585, "featuredRunMedia": null, "reactionVideos": [], @@ -330401,7 +329901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 6647886, "featuredRunMedia": null, "reactionVideos": [], @@ -330421,7 +329921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 6652925, "featuredRunMedia": null, "reactionVideos": [], @@ -330441,7 +329941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 6653254, "featuredRunMedia": null, "reactionVideos": [], @@ -330461,7 +329961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 6654402, "featuredRunMedia": null, "reactionVideos": [], @@ -330481,7 +329981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 6655485, "featuredRunMedia": null, "reactionVideos": [], @@ -330501,7 +330001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 6656302, "featuredRunMedia": null, "reactionVideos": [], @@ -330521,7 +330021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 6659722, "featuredRunMedia": null, "reactionVideos": [], @@ -330541,7 +330041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 6660840, "featuredRunMedia": null, "reactionVideos": [], @@ -330561,7 +330061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 6663479, "featuredRunMedia": null, "reactionVideos": [], @@ -330585,7 +330085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 6663835, "featuredRunMedia": null, "reactionVideos": [], @@ -330605,7 +330105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 6665224, "featuredRunMedia": null, "reactionVideos": [], @@ -330625,7 +330125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "144196", "time": 6670221, "featuredRunMedia": null, "reactionVideos": [], @@ -330645,7 +330145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 6673587, "featuredRunMedia": null, "reactionVideos": [], @@ -330665,7 +330165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 6676290, "featuredRunMedia": null, "reactionVideos": [], @@ -330685,7 +330185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 6676423, "featuredRunMedia": null, "reactionVideos": [], @@ -330705,7 +330205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 404, + "teamId": "144474", "time": 6677663, "featuredRunMedia": null, "reactionVideos": [], @@ -330725,7 +330225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 6678100, "featuredRunMedia": null, "reactionVideos": [], @@ -330745,7 +330245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 427, + "teamId": "144497", "time": 6678163, "featuredRunMedia": null, "reactionVideos": [], @@ -330769,7 +330269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 6678814, "featuredRunMedia": null, "reactionVideos": [], @@ -330789,7 +330289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 6679952, "featuredRunMedia": null, "reactionVideos": [], @@ -330809,7 +330309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 6681375, "featuredRunMedia": null, "reactionVideos": [], @@ -330829,7 +330329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 6683335, "featuredRunMedia": null, "reactionVideos": [], @@ -330849,7 +330349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 6685801, "featuredRunMedia": null, "reactionVideos": [], @@ -330869,7 +330369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 6686581, "featuredRunMedia": null, "reactionVideos": [], @@ -330889,7 +330389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 6687240, "featuredRunMedia": null, "reactionVideos": [], @@ -330909,7 +330409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "144237", "time": 6687374, "featuredRunMedia": null, "reactionVideos": [], @@ -330929,7 +330429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 6688226, "featuredRunMedia": null, "reactionVideos": [], @@ -330949,7 +330449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 6694533, "featuredRunMedia": null, "reactionVideos": [], @@ -330969,7 +330469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 6694680, "featuredRunMedia": null, "reactionVideos": [], @@ -330989,7 +330489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 6695025, "featuredRunMedia": null, "reactionVideos": [], @@ -331009,7 +330509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 6695295, "featuredRunMedia": null, "reactionVideos": [], @@ -331029,7 +330529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "144189", "time": 6695421, "featuredRunMedia": null, "reactionVideos": [], @@ -331049,7 +330549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 6697738, "featuredRunMedia": null, "reactionVideos": [], @@ -331069,7 +330569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 6698910, "featuredRunMedia": null, "reactionVideos": [], @@ -331089,7 +330589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 6698997, "featuredRunMedia": null, "reactionVideos": [], @@ -331109,7 +330609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "144361", "time": 6700656, "featuredRunMedia": null, "reactionVideos": [], @@ -331129,7 +330629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 6702232, "featuredRunMedia": null, "reactionVideos": [], @@ -331153,7 +330653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 6704422, "featuredRunMedia": null, "reactionVideos": [], @@ -331173,7 +330673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 6706508, "featuredRunMedia": null, "reactionVideos": [], @@ -331193,7 +330693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6707188, "featuredRunMedia": null, "reactionVideos": [], @@ -331213,7 +330713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 6707811, "featuredRunMedia": null, "reactionVideos": [], @@ -331233,7 +330733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 6709043, "featuredRunMedia": null, "reactionVideos": [], @@ -331253,7 +330753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "144187", "time": 6709804, "featuredRunMedia": null, "reactionVideos": [], @@ -331273,7 +330773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "144124", "time": 6710076, "featuredRunMedia": null, "reactionVideos": [], @@ -331293,7 +330793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 6714522, "featuredRunMedia": null, "reactionVideos": [], @@ -331313,7 +330813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6716717, "featuredRunMedia": null, "reactionVideos": [], @@ -331333,7 +330833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 250, + "teamId": "144320", "time": 6717023, "featuredRunMedia": null, "reactionVideos": [], @@ -331353,7 +330853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 6717810, "featuredRunMedia": null, "reactionVideos": [], @@ -331373,7 +330873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "144327", "time": 6721999, "featuredRunMedia": null, "reactionVideos": [], @@ -331393,7 +330893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 6722050, "featuredRunMedia": null, "reactionVideos": [], @@ -331413,7 +330913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "144415", "time": 6724482, "featuredRunMedia": null, "reactionVideos": [], @@ -331433,7 +330933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 6726789, "featuredRunMedia": null, "reactionVideos": [], @@ -331453,7 +330953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 6727831, "featuredRunMedia": null, "reactionVideos": [], @@ -331473,7 +330973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 6728377, "featuredRunMedia": null, "reactionVideos": [], @@ -331493,7 +330993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 6734667, "featuredRunMedia": null, "reactionVideos": [], @@ -331513,7 +331013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 6736288, "featuredRunMedia": null, "reactionVideos": [], @@ -331533,7 +331033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 6736875, "featuredRunMedia": null, "reactionVideos": [], @@ -331553,7 +331053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 6738120, "featuredRunMedia": null, "reactionVideos": [], @@ -331573,7 +331073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 6738933, "featuredRunMedia": null, "reactionVideos": [], @@ -331593,7 +331093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "144072", "time": 6739493, "featuredRunMedia": null, "reactionVideos": [], @@ -331613,7 +331113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6739717, "featuredRunMedia": null, "reactionVideos": [], @@ -331633,7 +331133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 6742670, "featuredRunMedia": null, "reactionVideos": [], @@ -331653,7 +331153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 107, + "teamId": "144177", "time": 6743762, "featuredRunMedia": null, "reactionVideos": [], @@ -331673,7 +331173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 6745738, "featuredRunMedia": null, "reactionVideos": [], @@ -331693,7 +331193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 6750727, "featuredRunMedia": null, "reactionVideos": [], @@ -331713,7 +331213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 6755573, "featuredRunMedia": null, "reactionVideos": [], @@ -331733,7 +331233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 6756779, "featuredRunMedia": null, "reactionVideos": [], @@ -331753,7 +331253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 6757860, "featuredRunMedia": null, "reactionVideos": [], @@ -331773,7 +331273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 6758977, "featuredRunMedia": null, "reactionVideos": [], @@ -331793,7 +331293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "144330", "time": 6759387, "featuredRunMedia": null, "reactionVideos": [], @@ -331813,7 +331313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 6760452, "featuredRunMedia": null, "reactionVideos": [], @@ -331833,7 +331333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "144100", "time": 6761093, "featuredRunMedia": null, "reactionVideos": [], @@ -331853,7 +331353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "144326", "time": 6762385, "featuredRunMedia": null, "reactionVideos": [], @@ -331873,7 +331373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 6765359, "featuredRunMedia": null, "reactionVideos": [], @@ -331893,7 +331393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 405, + "teamId": "144475", "time": 6770207, "featuredRunMedia": null, "reactionVideos": [], @@ -331913,7 +331413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 6772161, "featuredRunMedia": null, "reactionVideos": [], @@ -331933,7 +331433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 6772483, "featuredRunMedia": null, "reactionVideos": [], @@ -331953,7 +331453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 6772527, "featuredRunMedia": null, "reactionVideos": [], @@ -331973,7 +331473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 6772714, "featuredRunMedia": null, "reactionVideos": [], @@ -331993,7 +331493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 6772783, "featuredRunMedia": null, "reactionVideos": [], @@ -332013,7 +331513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 6773448, "featuredRunMedia": null, "reactionVideos": [], @@ -332033,7 +331533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 6776118, "featuredRunMedia": null, "reactionVideos": [], @@ -332053,7 +331553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 6779530, "featuredRunMedia": null, "reactionVideos": [], @@ -332073,7 +331573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 6779577, "featuredRunMedia": null, "reactionVideos": [], @@ -332093,7 +331593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "144170", "time": 6783417, "featuredRunMedia": null, "reactionVideos": [], @@ -332113,7 +331613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 6785880, "featuredRunMedia": null, "reactionVideos": [], @@ -332133,7 +331633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 6792170, "featuredRunMedia": null, "reactionVideos": [], @@ -332153,7 +331653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 6797076, "featuredRunMedia": null, "reactionVideos": [], @@ -332173,7 +331673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 443, + "teamId": "144513", "time": 6797207, "featuredRunMedia": null, "reactionVideos": [], @@ -332193,7 +331693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 6797242, "featuredRunMedia": null, "reactionVideos": [], @@ -332213,7 +331713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 6797615, "featuredRunMedia": null, "reactionVideos": [], @@ -332237,7 +331737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 6797926, "featuredRunMedia": null, "reactionVideos": [], @@ -332257,7 +331757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 6798183, "featuredRunMedia": null, "reactionVideos": [], @@ -332277,7 +331777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 6798802, "featuredRunMedia": null, "reactionVideos": [], @@ -332297,7 +331797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 6800952, "featuredRunMedia": null, "reactionVideos": [], @@ -332317,7 +331817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 6802685, "featuredRunMedia": null, "reactionVideos": [], @@ -332337,7 +331837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6805038, "featuredRunMedia": null, "reactionVideos": [], @@ -332357,7 +331857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 6805680, "featuredRunMedia": null, "reactionVideos": [], @@ -332377,7 +331877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 6806668, "featuredRunMedia": null, "reactionVideos": [], @@ -332397,7 +331897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 6807573, "featuredRunMedia": null, "reactionVideos": [], @@ -332417,7 +331917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 6811045, "featuredRunMedia": null, "reactionVideos": [], @@ -332437,7 +331937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 6811136, "featuredRunMedia": null, "reactionVideos": [], @@ -332457,7 +331957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6811184, "featuredRunMedia": null, "reactionVideos": [], @@ -332477,7 +331977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 6813135, "featuredRunMedia": null, "reactionVideos": [], @@ -332497,7 +331997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 6813667, "featuredRunMedia": null, "reactionVideos": [], @@ -332517,7 +332017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 6814340, "featuredRunMedia": null, "reactionVideos": [], @@ -332537,7 +332037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 6815152, "featuredRunMedia": null, "reactionVideos": [], @@ -332557,7 +332057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 6820169, "featuredRunMedia": null, "reactionVideos": [], @@ -332577,7 +332077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 6820323, "featuredRunMedia": null, "reactionVideos": [], @@ -332597,7 +332097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 6820364, "featuredRunMedia": null, "reactionVideos": [], @@ -332617,7 +332117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 125, + "teamId": "144195", "time": 6820423, "featuredRunMedia": null, "reactionVideos": [], @@ -332637,7 +332137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 6821868, "featuredRunMedia": null, "reactionVideos": [], @@ -332657,7 +332157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 6824358, "featuredRunMedia": null, "reactionVideos": [], @@ -332677,7 +332177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 6826156, "featuredRunMedia": null, "reactionVideos": [], @@ -332697,7 +332197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 6826547, "featuredRunMedia": null, "reactionVideos": [], @@ -332717,7 +332217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "144373", "time": 6827167, "featuredRunMedia": null, "reactionVideos": [], @@ -332737,7 +332237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 6827343, "featuredRunMedia": null, "reactionVideos": [], @@ -332757,7 +332257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "144371", "time": 6829215, "featuredRunMedia": null, "reactionVideos": [], @@ -332777,7 +332277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "144334", "time": 6831644, "featuredRunMedia": null, "reactionVideos": [], @@ -332797,7 +332297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 6834190, "featuredRunMedia": null, "reactionVideos": [], @@ -332817,7 +332317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 6835394, "featuredRunMedia": null, "reactionVideos": [], @@ -332837,7 +332337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "144143", "time": 6835547, "featuredRunMedia": null, "reactionVideos": [], @@ -332857,7 +332357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 6837105, "featuredRunMedia": null, "reactionVideos": [], @@ -332877,7 +332377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 6837842, "featuredRunMedia": null, "reactionVideos": [], @@ -332897,7 +332397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 6838067, "featuredRunMedia": null, "reactionVideos": [], @@ -332917,7 +332417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 6843018, "featuredRunMedia": null, "reactionVideos": [], @@ -332937,7 +332437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 366, + "teamId": "144436", "time": 6843647, "featuredRunMedia": null, "reactionVideos": [], @@ -332957,7 +332457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "144124", "time": 6843930, "featuredRunMedia": null, "reactionVideos": [], @@ -332977,7 +332477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6844832, "featuredRunMedia": null, "reactionVideos": [], @@ -332997,7 +332497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 6850867, "featuredRunMedia": null, "reactionVideos": [], @@ -333017,7 +332517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 6854114, "featuredRunMedia": null, "reactionVideos": [], @@ -333037,7 +332537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 6854521, "featuredRunMedia": null, "reactionVideos": [], @@ -333057,7 +332557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 6856644, "featuredRunMedia": null, "reactionVideos": [], @@ -333077,7 +332577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 6857236, "featuredRunMedia": null, "reactionVideos": [], @@ -333097,7 +332597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6861111, "featuredRunMedia": null, "reactionVideos": [], @@ -333117,7 +332617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 69, + "teamId": "144139", "time": 6862694, "featuredRunMedia": null, "reactionVideos": [], @@ -333137,7 +332637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 6865582, "featuredRunMedia": null, "reactionVideos": [], @@ -333157,7 +332657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 6865672, "featuredRunMedia": null, "reactionVideos": [], @@ -333177,7 +332677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6867223, "featuredRunMedia": null, "reactionVideos": [], @@ -333197,7 +332697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 186, + "teamId": "144256", "time": 6870633, "featuredRunMedia": null, "reactionVideos": [], @@ -333217,7 +332717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 6875131, "featuredRunMedia": null, "reactionVideos": [], @@ -333237,7 +332737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6875339, "featuredRunMedia": null, "reactionVideos": [], @@ -333257,7 +332757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6881331, "featuredRunMedia": null, "reactionVideos": [], @@ -333277,7 +332777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 6881809, "featuredRunMedia": null, "reactionVideos": [], @@ -333297,7 +332797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 52, + "teamId": "144122", "time": 6883940, "featuredRunMedia": null, "reactionVideos": [], @@ -333317,7 +332817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 6884400, "featuredRunMedia": null, "reactionVideos": [], @@ -333337,7 +332837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 6884756, "featuredRunMedia": null, "reactionVideos": [], @@ -333357,7 +332857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "144329", "time": 6885506, "featuredRunMedia": null, "reactionVideos": [], @@ -333377,7 +332877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "144181", "time": 6885916, "featuredRunMedia": null, "reactionVideos": [], @@ -333397,7 +332897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 399, + "teamId": "144469", "time": 6888834, "featuredRunMedia": null, "reactionVideos": [], @@ -333417,7 +332917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 6889331, "featuredRunMedia": null, "reactionVideos": [], @@ -333437,7 +332937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 6889656, "featuredRunMedia": null, "reactionVideos": [], @@ -333457,7 +332957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 6890920, "featuredRunMedia": null, "reactionVideos": [], @@ -333477,7 +332977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6892000, "featuredRunMedia": null, "reactionVideos": [], @@ -333497,7 +332997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "144118", "time": 6892567, "featuredRunMedia": null, "reactionVideos": [], @@ -333517,7 +333017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 6895059, "featuredRunMedia": null, "reactionVideos": [], @@ -333537,7 +333037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 6897608, "featuredRunMedia": null, "reactionVideos": [], @@ -333557,7 +333057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 6897645, "featuredRunMedia": null, "reactionVideos": [], @@ -333577,7 +333077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 6900057, "featuredRunMedia": null, "reactionVideos": [], @@ -333597,7 +333097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 6901564, "featuredRunMedia": null, "reactionVideos": [], @@ -333617,7 +333117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 6901696, "featuredRunMedia": null, "reactionVideos": [], @@ -333637,7 +333137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 6903831, "featuredRunMedia": null, "reactionVideos": [], @@ -333657,7 +333157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 6905831, "featuredRunMedia": null, "reactionVideos": [], @@ -333677,7 +333177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 428, + "teamId": "144498", "time": 6911028, "featuredRunMedia": null, "reactionVideos": [], @@ -333697,7 +333197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 6911562, "featuredRunMedia": null, "reactionVideos": [], @@ -333717,7 +333217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 6912248, "featuredRunMedia": null, "reactionVideos": [], @@ -333737,7 +333237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 6918089, "featuredRunMedia": null, "reactionVideos": [], @@ -333757,7 +333257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 6919000, "featuredRunMedia": null, "reactionVideos": [], @@ -333777,7 +333277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 6919325, "featuredRunMedia": null, "reactionVideos": [], @@ -333797,7 +333297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 6920746, "featuredRunMedia": null, "reactionVideos": [], @@ -333817,7 +333317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 6923812, "featuredRunMedia": null, "reactionVideos": [], @@ -333841,7 +333341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 6924748, "featuredRunMedia": null, "reactionVideos": [], @@ -333861,7 +333361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 6926069, "featuredRunMedia": null, "reactionVideos": [], @@ -333881,7 +333381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 6927361, "featuredRunMedia": null, "reactionVideos": [], @@ -333901,7 +333401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 6928948, "featuredRunMedia": null, "reactionVideos": [], @@ -333921,7 +333421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "144380", "time": 6929158, "featuredRunMedia": null, "reactionVideos": [], @@ -333941,7 +333441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "144151", "time": 6929221, "featuredRunMedia": null, "reactionVideos": [], @@ -333961,7 +333461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 26, + "teamId": "144096", "time": 6930736, "featuredRunMedia": null, "reactionVideos": [], @@ -333981,7 +333481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 6932467, "featuredRunMedia": null, "reactionVideos": [], @@ -334001,7 +333501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 6933578, "featuredRunMedia": null, "reactionVideos": [], @@ -334021,7 +333521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 6937474, "featuredRunMedia": null, "reactionVideos": [], @@ -334041,7 +333541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 6940083, "featuredRunMedia": null, "reactionVideos": [], @@ -334061,7 +333561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 448, + "teamId": "144518", "time": 6941072, "featuredRunMedia": null, "reactionVideos": [], @@ -334081,7 +333581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 6943479, "featuredRunMedia": null, "reactionVideos": [], @@ -334101,7 +333601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 6948649, "featuredRunMedia": null, "reactionVideos": [], @@ -334121,7 +333621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "144304", "time": 6949207, "featuredRunMedia": null, "reactionVideos": [], @@ -334141,7 +333641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 6951225, "featuredRunMedia": null, "reactionVideos": [], @@ -334161,7 +333661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 6952149, "featuredRunMedia": null, "reactionVideos": [], @@ -334181,7 +333681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 6952812, "featuredRunMedia": null, "reactionVideos": [], @@ -334201,7 +333701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 6954047, "featuredRunMedia": null, "reactionVideos": [], @@ -334221,7 +333721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 6955102, "featuredRunMedia": null, "reactionVideos": [], @@ -334241,7 +333741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 6957284, "featuredRunMedia": null, "reactionVideos": [], @@ -334261,7 +333761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 6960614, "featuredRunMedia": null, "reactionVideos": [], @@ -334281,7 +333781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 6962025, "featuredRunMedia": null, "reactionVideos": [], @@ -334301,7 +333801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 6965047, "featuredRunMedia": null, "reactionVideos": [], @@ -334321,7 +333821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6967930, "featuredRunMedia": null, "reactionVideos": [], @@ -334341,7 +333841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 6969705, "featuredRunMedia": null, "reactionVideos": [], @@ -334361,7 +333861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "144375", "time": 6971309, "featuredRunMedia": null, "reactionVideos": [], @@ -334381,7 +333881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 6975844, "featuredRunMedia": null, "reactionVideos": [], @@ -334401,7 +333901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6976705, "featuredRunMedia": null, "reactionVideos": [], @@ -334421,7 +333921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 6978954, "featuredRunMedia": null, "reactionVideos": [], @@ -334441,7 +333941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "144327", "time": 6979835, "featuredRunMedia": null, "reactionVideos": [], @@ -334461,7 +333961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 6979926, "featuredRunMedia": null, "reactionVideos": [], @@ -334481,7 +333981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 6980126, "featuredRunMedia": null, "reactionVideos": [], @@ -334505,7 +334005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 6981629, "featuredRunMedia": null, "reactionVideos": [], @@ -334525,7 +334025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 6981699, "featuredRunMedia": null, "reactionVideos": [], @@ -334545,7 +334045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6983292, "featuredRunMedia": null, "reactionVideos": [], @@ -334565,7 +334065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 6983373, "featuredRunMedia": null, "reactionVideos": [], @@ -334585,7 +334085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 6985110, "featuredRunMedia": null, "reactionVideos": [], @@ -334609,7 +334109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 6988794, "featuredRunMedia": null, "reactionVideos": [], @@ -334629,7 +334129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "144329", "time": 6989176, "featuredRunMedia": null, "reactionVideos": [], @@ -334649,7 +334149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 6989284, "featuredRunMedia": null, "reactionVideos": [], @@ -334669,7 +334169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 6993406, "featuredRunMedia": null, "reactionVideos": [], @@ -334689,7 +334189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 6993533, "featuredRunMedia": null, "reactionVideos": [], @@ -334709,7 +334209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 6994325, "featuredRunMedia": null, "reactionVideos": [], @@ -334729,7 +334229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 6999638, "featuredRunMedia": null, "reactionVideos": [], @@ -334749,7 +334249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 7001424, "featuredRunMedia": null, "reactionVideos": [], @@ -334769,7 +334269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "144170", "time": 7005249, "featuredRunMedia": null, "reactionVideos": [], @@ -334789,7 +334289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7006445, "featuredRunMedia": null, "reactionVideos": [], @@ -334813,7 +334313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 7011554, "featuredRunMedia": null, "reactionVideos": [], @@ -334833,7 +334333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 7011921, "featuredRunMedia": null, "reactionVideos": [], @@ -334853,7 +334353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 7012861, "featuredRunMedia": null, "reactionVideos": [], @@ -334873,7 +334373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "144361", "time": 7015062, "featuredRunMedia": null, "reactionVideos": [], @@ -334897,7 +334397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7015713, "featuredRunMedia": null, "reactionVideos": [], @@ -334917,7 +334417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 7016011, "featuredRunMedia": null, "reactionVideos": [], @@ -334937,7 +334437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 7016715, "featuredRunMedia": null, "reactionVideos": [], @@ -334957,7 +334457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7018814, "featuredRunMedia": null, "reactionVideos": [], @@ -334977,7 +334477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 362, + "teamId": "144432", "time": 7021661, "featuredRunMedia": null, "reactionVideos": [], @@ -334997,7 +334497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7022985, "featuredRunMedia": null, "reactionVideos": [], @@ -335017,7 +334517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 7023415, "featuredRunMedia": null, "reactionVideos": [], @@ -335037,7 +334537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 7024443, "featuredRunMedia": null, "reactionVideos": [], @@ -335061,7 +334561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7028055, "featuredRunMedia": null, "reactionVideos": [], @@ -335081,7 +334581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 435, + "teamId": "144505", "time": 7030238, "featuredRunMedia": null, "reactionVideos": [], @@ -335105,7 +334605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 7030600, "featuredRunMedia": null, "reactionVideos": [], @@ -335125,7 +334625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7034433, "featuredRunMedia": null, "reactionVideos": [], @@ -335145,7 +334645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 7035158, "featuredRunMedia": null, "reactionVideos": [], @@ -335165,7 +334665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 7035666, "featuredRunMedia": null, "reactionVideos": [], @@ -335185,7 +334685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 7036064, "featuredRunMedia": null, "reactionVideos": [], @@ -335205,7 +334705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 7036134, "featuredRunMedia": null, "reactionVideos": [], @@ -335225,7 +334725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 7041228, "featuredRunMedia": null, "reactionVideos": [], @@ -335245,7 +334745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 7044889, "featuredRunMedia": null, "reactionVideos": [], @@ -335265,7 +334765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7045096, "featuredRunMedia": null, "reactionVideos": [], @@ -335285,7 +334785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 7045504, "featuredRunMedia": null, "reactionVideos": [], @@ -335305,7 +334805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 7045559, "featuredRunMedia": null, "reactionVideos": [], @@ -335325,7 +334825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 7045612, "featuredRunMedia": null, "reactionVideos": [], @@ -335345,7 +334845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7045916, "featuredRunMedia": null, "reactionVideos": [], @@ -335365,7 +334865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 7046055, "featuredRunMedia": null, "reactionVideos": [], @@ -335385,7 +334885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7047132, "featuredRunMedia": null, "reactionVideos": [], @@ -335405,7 +334905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 7047948, "featuredRunMedia": null, "reactionVideos": [], @@ -335425,7 +334925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 7050176, "featuredRunMedia": null, "reactionVideos": [], @@ -335445,7 +334945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 7051833, "featuredRunMedia": null, "reactionVideos": [], @@ -335465,7 +334965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 7053232, "featuredRunMedia": null, "reactionVideos": [], @@ -335485,7 +334985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 7053752, "featuredRunMedia": null, "reactionVideos": [], @@ -335505,7 +335005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 7053992, "featuredRunMedia": null, "reactionVideos": [], @@ -335525,7 +335025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7054395, "featuredRunMedia": null, "reactionVideos": [], @@ -335545,7 +335045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 7054821, "featuredRunMedia": null, "reactionVideos": [], @@ -335565,7 +335065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 69, + "teamId": "144139", "time": 7056073, "featuredRunMedia": null, "reactionVideos": [], @@ -335585,7 +335085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 7056221, "featuredRunMedia": null, "reactionVideos": [], @@ -335605,7 +335105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "144181", "time": 7056627, "featuredRunMedia": null, "reactionVideos": [], @@ -335625,7 +335125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 7058802, "featuredRunMedia": null, "reactionVideos": [], @@ -335645,7 +335145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 7058854, "featuredRunMedia": null, "reactionVideos": [], @@ -335665,7 +335165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 7060179, "featuredRunMedia": null, "reactionVideos": [], @@ -335685,7 +335185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 7060873, "featuredRunMedia": null, "reactionVideos": [], @@ -335705,7 +335205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 7061143, "featuredRunMedia": null, "reactionVideos": [], @@ -335725,7 +335225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 7062267, "featuredRunMedia": null, "reactionVideos": [], @@ -335745,7 +335245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7065078, "featuredRunMedia": null, "reactionVideos": [], @@ -335765,7 +335265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "144326", "time": 7065691, "featuredRunMedia": null, "reactionVideos": [], @@ -335785,7 +335285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 7066298, "featuredRunMedia": null, "reactionVideos": [], @@ -335805,7 +335305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 332, + "teamId": "144402", "time": 7067332, "featuredRunMedia": null, "reactionVideos": [], @@ -335825,7 +335325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 289, + "teamId": "144359", "time": 7069272, "featuredRunMedia": null, "reactionVideos": [], @@ -335845,7 +335345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 7069321, "featuredRunMedia": null, "reactionVideos": [], @@ -335865,7 +335365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 7069359, "featuredRunMedia": null, "reactionVideos": [], @@ -335885,7 +335385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 7069410, "featuredRunMedia": null, "reactionVideos": [], @@ -335905,7 +335405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 7070834, "featuredRunMedia": null, "reactionVideos": [], @@ -335925,7 +335425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 7072111, "featuredRunMedia": null, "reactionVideos": [], @@ -335945,7 +335445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 7076528, "featuredRunMedia": null, "reactionVideos": [], @@ -335965,7 +335465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 7077533, "featuredRunMedia": null, "reactionVideos": [], @@ -335985,7 +335485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "144163", "time": 7077690, "featuredRunMedia": null, "reactionVideos": [], @@ -336005,7 +335505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 7078103, "featuredRunMedia": null, "reactionVideos": [], @@ -336025,7 +335525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 7078417, "featuredRunMedia": null, "reactionVideos": [], @@ -336045,7 +335545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 315, + "teamId": "144385", "time": 7079967, "featuredRunMedia": null, "reactionVideos": [], @@ -336065,7 +335565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 7080890, "featuredRunMedia": null, "reactionVideos": [], @@ -336085,7 +335585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 7081176, "featuredRunMedia": null, "reactionVideos": [], @@ -336105,7 +335605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 7081839, "featuredRunMedia": null, "reactionVideos": [], @@ -336125,7 +335625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 249, + "teamId": "144319", "time": 7082299, "featuredRunMedia": null, "reactionVideos": [], @@ -336145,7 +335645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7083033, "featuredRunMedia": null, "reactionVideos": [], @@ -336165,7 +335665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 7083310, "featuredRunMedia": null, "reactionVideos": [], @@ -336185,7 +335685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 7083758, "featuredRunMedia": null, "reactionVideos": [], @@ -336205,7 +335705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 7088255, "featuredRunMedia": null, "reactionVideos": [], @@ -336225,7 +335725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 7089536, "featuredRunMedia": null, "reactionVideos": [], @@ -336245,7 +335745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7089859, "featuredRunMedia": null, "reactionVideos": [], @@ -336265,7 +335765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 7091080, "featuredRunMedia": null, "reactionVideos": [], @@ -336285,7 +335785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7091309, "featuredRunMedia": null, "reactionVideos": [], @@ -336305,7 +335805,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 7092366, "featuredRunMedia": null, "reactionVideos": [], @@ -336325,7 +335825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 7093891, "featuredRunMedia": null, "reactionVideos": [], @@ -336345,7 +335845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 7096449, "featuredRunMedia": null, "reactionVideos": [], @@ -336365,7 +335865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 7097512, "featuredRunMedia": null, "reactionVideos": [], @@ -336385,7 +335885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 7099438, "featuredRunMedia": null, "reactionVideos": [], @@ -336405,7 +335905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 7100337, "featuredRunMedia": null, "reactionVideos": [], @@ -336425,7 +335925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 7101593, "featuredRunMedia": null, "reactionVideos": [], @@ -336445,7 +335945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "144130", "time": 7103354, "featuredRunMedia": null, "reactionVideos": [], @@ -336465,7 +335965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 7107099, "featuredRunMedia": null, "reactionVideos": [], @@ -336485,7 +335985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 7107372, "featuredRunMedia": null, "reactionVideos": [], @@ -336505,7 +336005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 366, + "teamId": "144436", "time": 7110633, "featuredRunMedia": null, "reactionVideos": [], @@ -336525,7 +336025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7111618, "featuredRunMedia": null, "reactionVideos": [], @@ -336545,7 +336045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 7112196, "featuredRunMedia": null, "reactionVideos": [], @@ -336565,7 +336065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 7115005, "featuredRunMedia": null, "reactionVideos": [], @@ -336585,7 +336085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 7115595, "featuredRunMedia": null, "reactionVideos": [], @@ -336605,7 +336105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 7116171, "featuredRunMedia": null, "reactionVideos": [], @@ -336625,7 +336125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 7119250, "featuredRunMedia": null, "reactionVideos": [], @@ -336645,7 +336145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 7119659, "featuredRunMedia": null, "reactionVideos": [], @@ -336665,7 +336165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7120232, "featuredRunMedia": null, "reactionVideos": [], @@ -336685,7 +336185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 7123388, "featuredRunMedia": null, "reactionVideos": [], @@ -336705,7 +336205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7124319, "featuredRunMedia": null, "reactionVideos": [], @@ -336725,7 +336225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7124739, "featuredRunMedia": null, "reactionVideos": [], @@ -336749,7 +336249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 7125180, "featuredRunMedia": null, "reactionVideos": [], @@ -336769,7 +336269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 7126515, "featuredRunMedia": null, "reactionVideos": [], @@ -336789,7 +336289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 7127395, "featuredRunMedia": null, "reactionVideos": [], @@ -336809,7 +336309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7129757, "featuredRunMedia": null, "reactionVideos": [], @@ -336829,7 +336329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 7131658, "featuredRunMedia": null, "reactionVideos": [], @@ -336849,7 +336349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "144316", "time": 7131699, "featuredRunMedia": null, "reactionVideos": [], @@ -336869,7 +336369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 7134290, "featuredRunMedia": null, "reactionVideos": [], @@ -336889,7 +336389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "144332", "time": 7135841, "featuredRunMedia": null, "reactionVideos": [], @@ -336909,7 +336409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 7137242, "featuredRunMedia": null, "reactionVideos": [], @@ -336929,7 +336429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 7137374, "featuredRunMedia": null, "reactionVideos": [], @@ -336949,7 +336449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 7137941, "featuredRunMedia": null, "reactionVideos": [], @@ -336969,7 +336469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 7140503, "featuredRunMedia": null, "reactionVideos": [], @@ -336989,7 +336489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 7142509, "featuredRunMedia": null, "reactionVideos": [], @@ -337009,7 +336509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 7144742, "featuredRunMedia": null, "reactionVideos": [], @@ -337029,7 +336529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 7146137, "featuredRunMedia": null, "reactionVideos": [], @@ -337049,7 +336549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "144306", "time": 7148151, "featuredRunMedia": null, "reactionVideos": [], @@ -337073,7 +336573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7150066, "featuredRunMedia": null, "reactionVideos": [], @@ -337093,7 +336593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7152009, "featuredRunMedia": null, "reactionVideos": [], @@ -337117,7 +336617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 7152135, "featuredRunMedia": null, "reactionVideos": [], @@ -337137,7 +336637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 7152969, "featuredRunMedia": null, "reactionVideos": [], @@ -337157,7 +336657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 7154775, "featuredRunMedia": null, "reactionVideos": [], @@ -337177,7 +336677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 7157426, "featuredRunMedia": null, "reactionVideos": [], @@ -337197,7 +336697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 7158043, "featuredRunMedia": null, "reactionVideos": [], @@ -337217,7 +336717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 7158317, "featuredRunMedia": null, "reactionVideos": [], @@ -337237,7 +336737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 7160471, "featuredRunMedia": null, "reactionVideos": [], @@ -337257,7 +336757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 7160629, "featuredRunMedia": null, "reactionVideos": [], @@ -337277,7 +336777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 7161198, "featuredRunMedia": null, "reactionVideos": [], @@ -337301,7 +336801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7164589, "featuredRunMedia": null, "reactionVideos": [], @@ -337321,7 +336821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7164681, "featuredRunMedia": null, "reactionVideos": [], @@ -337341,7 +336841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 7165618, "featuredRunMedia": null, "reactionVideos": [], @@ -337361,7 +336861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "144179", "time": 7167115, "featuredRunMedia": null, "reactionVideos": [], @@ -337381,7 +336881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 7167402, "featuredRunMedia": null, "reactionVideos": [], @@ -337401,7 +336901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7168378, "featuredRunMedia": null, "reactionVideos": [], @@ -337421,7 +336921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 7168461, "featuredRunMedia": null, "reactionVideos": [], @@ -337441,7 +336941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 7168578, "featuredRunMedia": null, "reactionVideos": [], @@ -337461,7 +336961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 7168928, "featuredRunMedia": null, "reactionVideos": [], @@ -337481,7 +336981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 7169495, "featuredRunMedia": null, "reactionVideos": [], @@ -337501,7 +337001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 7170465, "featuredRunMedia": null, "reactionVideos": [], @@ -337521,7 +337021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7171441, "featuredRunMedia": null, "reactionVideos": [], @@ -337541,7 +337041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 357, + "teamId": "144427", "time": 7173464, "featuredRunMedia": null, "reactionVideos": [], @@ -337561,7 +337061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 7174850, "featuredRunMedia": null, "reactionVideos": [], @@ -337581,7 +337081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 7174922, "featuredRunMedia": null, "reactionVideos": [], @@ -337601,7 +337101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 7175860, "featuredRunMedia": null, "reactionVideos": [], @@ -337621,7 +337121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 7176373, "featuredRunMedia": null, "reactionVideos": [], @@ -337641,7 +337141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 7178430, "featuredRunMedia": null, "reactionVideos": [], @@ -337661,7 +337161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 7179199, "featuredRunMedia": null, "reactionVideos": [], @@ -337681,7 +337181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 7179539, "featuredRunMedia": null, "reactionVideos": [], @@ -337701,7 +337201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "144118", "time": 7179872, "featuredRunMedia": null, "reactionVideos": [], @@ -337721,7 +337221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 7182217, "featuredRunMedia": null, "reactionVideos": [], @@ -337741,7 +337241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "144357", "time": 7184417, "featuredRunMedia": null, "reactionVideos": [], @@ -337761,7 +337261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "144261", "time": 7184821, "featuredRunMedia": null, "reactionVideos": [], @@ -337781,7 +337281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 7186377, "featuredRunMedia": null, "reactionVideos": [], @@ -337801,7 +337301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 7187096, "featuredRunMedia": null, "reactionVideos": [], @@ -337821,7 +337321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 7189983, "featuredRunMedia": null, "reactionVideos": [], @@ -337841,7 +337341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 52, + "teamId": "144122", "time": 7191307, "featuredRunMedia": null, "reactionVideos": [], @@ -337861,7 +337361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 7195297, "featuredRunMedia": null, "reactionVideos": [], @@ -337885,7 +337385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 7198692, "featuredRunMedia": null, "reactionVideos": [], @@ -337905,7 +337405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 404, + "teamId": "144474", "time": 7199294, "featuredRunMedia": null, "reactionVideos": [], @@ -337925,7 +337425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 7202387, "featuredRunMedia": null, "reactionVideos": [], @@ -337945,7 +337445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7202615, "featuredRunMedia": null, "reactionVideos": [], @@ -337965,7 +337465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 7204643, "featuredRunMedia": null, "reactionVideos": [], @@ -337985,7 +337485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 7205391, "featuredRunMedia": null, "reactionVideos": [], @@ -338005,7 +337505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 7208103, "featuredRunMedia": null, "reactionVideos": [], @@ -338025,7 +337525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "144083", "time": 7209163, "featuredRunMedia": null, "reactionVideos": [], @@ -338045,7 +337545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 7211961, "featuredRunMedia": null, "reactionVideos": [], @@ -338065,7 +337565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 7212558, "featuredRunMedia": null, "reactionVideos": [], @@ -338085,7 +337585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7213492, "featuredRunMedia": null, "reactionVideos": [], @@ -338105,7 +337605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 7216146, "featuredRunMedia": null, "reactionVideos": [], @@ -338125,7 +337625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 7218804, "featuredRunMedia": null, "reactionVideos": [], @@ -338145,7 +337645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "144078", "time": 7219257, "featuredRunMedia": null, "reactionVideos": [], @@ -338165,7 +337665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 7219304, "featuredRunMedia": null, "reactionVideos": [], @@ -338185,7 +337685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 7220866, "featuredRunMedia": null, "reactionVideos": [], @@ -338205,7 +337705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 7224450, "featuredRunMedia": null, "reactionVideos": [], @@ -338225,7 +337725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 7229963, "featuredRunMedia": null, "reactionVideos": [], @@ -338245,7 +337745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 7231941, "featuredRunMedia": null, "reactionVideos": [], @@ -338265,7 +337765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 7233075, "featuredRunMedia": null, "reactionVideos": [], @@ -338285,7 +337785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 7234258, "featuredRunMedia": null, "reactionVideos": [], @@ -338305,7 +337805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 282, + "teamId": "144352", "time": 7234460, "featuredRunMedia": null, "reactionVideos": [], @@ -338325,7 +337825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "144269", "time": 7234500, "featuredRunMedia": null, "reactionVideos": [], @@ -338345,7 +337845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "144395", "time": 7234972, "featuredRunMedia": null, "reactionVideos": [], @@ -338365,7 +337865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 7236172, "featuredRunMedia": null, "reactionVideos": [], @@ -338385,7 +337885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 7236780, "featuredRunMedia": null, "reactionVideos": [], @@ -338405,7 +337905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 7237858, "featuredRunMedia": null, "reactionVideos": [], @@ -338425,7 +337925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 19, + "teamId": "144089", "time": 7240417, "featuredRunMedia": null, "reactionVideos": [], @@ -338449,7 +337949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 7241540, "featuredRunMedia": null, "reactionVideos": [], @@ -338469,7 +337969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 7241596, "featuredRunMedia": null, "reactionVideos": [], @@ -338489,7 +337989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 7243139, "featuredRunMedia": null, "reactionVideos": [], @@ -338509,7 +338009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7244584, "featuredRunMedia": null, "reactionVideos": [], @@ -338529,7 +338029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 7245420, "featuredRunMedia": null, "reactionVideos": [], @@ -338549,7 +338049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 7250411, "featuredRunMedia": null, "reactionVideos": [], @@ -338569,7 +338069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 7251195, "featuredRunMedia": null, "reactionVideos": [], @@ -338589,7 +338089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 7254186, "featuredRunMedia": null, "reactionVideos": [], @@ -338609,7 +338109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 7254741, "featuredRunMedia": null, "reactionVideos": [], @@ -338629,7 +338129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7254779, "featuredRunMedia": null, "reactionVideos": [], @@ -338649,7 +338149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 7256496, "featuredRunMedia": null, "reactionVideos": [], @@ -338669,7 +338169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 7257220, "featuredRunMedia": null, "reactionVideos": [], @@ -338689,7 +338189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 7258213, "featuredRunMedia": null, "reactionVideos": [], @@ -338709,7 +338209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 7259335, "featuredRunMedia": null, "reactionVideos": [], @@ -338729,7 +338229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7262950, "featuredRunMedia": null, "reactionVideos": [], @@ -338753,7 +338253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 7264529, "featuredRunMedia": null, "reactionVideos": [], @@ -338773,7 +338273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7265861, "featuredRunMedia": null, "reactionVideos": [], @@ -338793,7 +338293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 7267069, "featuredRunMedia": null, "reactionVideos": [], @@ -338813,7 +338313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 7268288, "featuredRunMedia": null, "reactionVideos": [], @@ -338833,7 +338333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 7269637, "featuredRunMedia": null, "reactionVideos": [], @@ -338853,7 +338353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 7272504, "featuredRunMedia": null, "reactionVideos": [], @@ -338873,7 +338373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 7273730, "featuredRunMedia": null, "reactionVideos": [], @@ -338893,7 +338393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 7273928, "featuredRunMedia": null, "reactionVideos": [], @@ -338913,7 +338413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 145, + "teamId": "144215", "time": 7274394, "featuredRunMedia": null, "reactionVideos": [], @@ -338933,7 +338433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 7275106, "featuredRunMedia": null, "reactionVideos": [], @@ -338953,7 +338453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7275381, "featuredRunMedia": null, "reactionVideos": [], @@ -338973,7 +338473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 7277967, "featuredRunMedia": null, "reactionVideos": [], @@ -338993,7 +338493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7278457, "featuredRunMedia": null, "reactionVideos": [], @@ -339013,7 +338513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 7278802, "featuredRunMedia": null, "reactionVideos": [], @@ -339033,7 +338533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 7279668, "featuredRunMedia": null, "reactionVideos": [], @@ -339053,7 +338553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 7280510, "featuredRunMedia": null, "reactionVideos": [], @@ -339073,7 +338573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 7281101, "featuredRunMedia": null, "reactionVideos": [], @@ -339093,7 +338593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 7284846, "featuredRunMedia": null, "reactionVideos": [], @@ -339113,7 +338613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 7285002, "featuredRunMedia": null, "reactionVideos": [], @@ -339133,7 +338633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 7286277, "featuredRunMedia": null, "reactionVideos": [], @@ -339153,7 +338653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7291735, "featuredRunMedia": null, "reactionVideos": [], @@ -339173,7 +338673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 7291888, "featuredRunMedia": null, "reactionVideos": [], @@ -339193,7 +338693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 7292165, "featuredRunMedia": null, "reactionVideos": [], @@ -339213,7 +338713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 420, + "teamId": "144490", "time": 7293881, "featuredRunMedia": null, "reactionVideos": [], @@ -339233,7 +338733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 7295669, "featuredRunMedia": null, "reactionVideos": [], @@ -339253,7 +338753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 7299591, "featuredRunMedia": null, "reactionVideos": [], @@ -339273,7 +338773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "144104", "time": 7301863, "featuredRunMedia": null, "reactionVideos": [], @@ -339293,7 +338793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7302372, "featuredRunMedia": null, "reactionVideos": [], @@ -339313,7 +338813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "144306", "time": 7304647, "featuredRunMedia": null, "reactionVideos": [], @@ -339333,7 +338833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 7306737, "featuredRunMedia": null, "reactionVideos": [], @@ -339353,7 +338853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 7307685, "featuredRunMedia": null, "reactionVideos": [], @@ -339373,7 +338873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 7309028, "featuredRunMedia": null, "reactionVideos": [], @@ -339393,7 +338893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7311580, "featuredRunMedia": null, "reactionVideos": [], @@ -339413,7 +338913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 7314027, "featuredRunMedia": null, "reactionVideos": [], @@ -339433,7 +338933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 7314552, "featuredRunMedia": null, "reactionVideos": [], @@ -339457,7 +338957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7315748, "featuredRunMedia": null, "reactionVideos": [], @@ -339477,7 +338977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 7317732, "featuredRunMedia": null, "reactionVideos": [], @@ -339497,7 +338997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 7321240, "featuredRunMedia": null, "reactionVideos": [], @@ -339521,7 +339021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 7325046, "featuredRunMedia": null, "reactionVideos": [], @@ -339541,7 +339041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7325765, "featuredRunMedia": null, "reactionVideos": [], @@ -339561,7 +339061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 7326371, "featuredRunMedia": null, "reactionVideos": [], @@ -339585,7 +339085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 7326426, "featuredRunMedia": null, "reactionVideos": [], @@ -339605,7 +339105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "144143", "time": 7326627, "featuredRunMedia": null, "reactionVideos": [], @@ -339625,7 +339125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 7327052, "featuredRunMedia": null, "reactionVideos": [], @@ -339645,7 +339145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 7329129, "featuredRunMedia": null, "reactionVideos": [], @@ -339665,7 +339165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 7329384, "featuredRunMedia": null, "reactionVideos": [], @@ -339685,7 +339185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 7333519, "featuredRunMedia": null, "reactionVideos": [], @@ -339705,7 +339205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 7334880, "featuredRunMedia": null, "reactionVideos": [], @@ -339725,7 +339225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 7335032, "featuredRunMedia": null, "reactionVideos": [], @@ -339745,7 +339245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 7335396, "featuredRunMedia": null, "reactionVideos": [], @@ -339769,7 +339269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 7336957, "featuredRunMedia": null, "reactionVideos": [], @@ -339789,7 +339289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7337895, "featuredRunMedia": null, "reactionVideos": [], @@ -339809,7 +339309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7338090, "featuredRunMedia": null, "reactionVideos": [], @@ -339829,7 +339329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "144361", "time": 7342494, "featuredRunMedia": null, "reactionVideos": [], @@ -339849,7 +339349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 7346014, "featuredRunMedia": null, "reactionVideos": [], @@ -339869,7 +339369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "144306", "time": 7346408, "featuredRunMedia": null, "reactionVideos": [], @@ -339889,7 +339389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 7347291, "featuredRunMedia": null, "reactionVideos": [], @@ -339909,7 +339409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 371, + "teamId": "144441", "time": 7348825, "featuredRunMedia": null, "reactionVideos": [], @@ -339929,7 +339429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 7349931, "featuredRunMedia": null, "reactionVideos": [], @@ -339949,7 +339449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 7349995, "featuredRunMedia": null, "reactionVideos": [], @@ -339969,7 +339469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 7350370, "featuredRunMedia": null, "reactionVideos": [], @@ -339989,7 +339489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 7352074, "featuredRunMedia": null, "reactionVideos": [], @@ -340009,7 +339509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7356749, "featuredRunMedia": null, "reactionVideos": [], @@ -340029,7 +339529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 7363804, "featuredRunMedia": null, "reactionVideos": [], @@ -340049,7 +339549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 7364379, "featuredRunMedia": null, "reactionVideos": [], @@ -340069,7 +339569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 7367251, "featuredRunMedia": null, "reactionVideos": [], @@ -340089,7 +339589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 7368822, "featuredRunMedia": null, "reactionVideos": [], @@ -340109,7 +339609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 7370702, "featuredRunMedia": null, "reactionVideos": [], @@ -340129,7 +339629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 427, + "teamId": "144497", "time": 7371636, "featuredRunMedia": null, "reactionVideos": [], @@ -340149,7 +339649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "144097", "time": 7372540, "featuredRunMedia": null, "reactionVideos": [], @@ -340169,7 +339669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 7375239, "featuredRunMedia": null, "reactionVideos": [], @@ -340189,7 +339689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 7379664, "featuredRunMedia": null, "reactionVideos": [], @@ -340209,7 +339709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 7379965, "featuredRunMedia": null, "reactionVideos": [], @@ -340229,7 +339729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 7380076, "featuredRunMedia": null, "reactionVideos": [], @@ -340249,7 +339749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7380561, "featuredRunMedia": null, "reactionVideos": [], @@ -340269,7 +339769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 7380782, "featuredRunMedia": null, "reactionVideos": [], @@ -340289,7 +339789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 7382573, "featuredRunMedia": null, "reactionVideos": [], @@ -340309,7 +339809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 7384675, "featuredRunMedia": null, "reactionVideos": [], @@ -340329,7 +339829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 7388408, "featuredRunMedia": null, "reactionVideos": [], @@ -340353,7 +339853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 7388448, "featuredRunMedia": null, "reactionVideos": [], @@ -340373,7 +339873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 7394997, "featuredRunMedia": null, "reactionVideos": [], @@ -340393,7 +339893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7397363, "featuredRunMedia": null, "reactionVideos": [], @@ -340413,7 +339913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 7398456, "featuredRunMedia": null, "reactionVideos": [], @@ -340433,7 +339933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 7399328, "featuredRunMedia": null, "reactionVideos": [], @@ -340453,7 +339953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7399503, "featuredRunMedia": null, "reactionVideos": [], @@ -340473,7 +339973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7399628, "featuredRunMedia": null, "reactionVideos": [], @@ -340493,7 +339993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7400978, "featuredRunMedia": null, "reactionVideos": [], @@ -340513,7 +340013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7401014, "featuredRunMedia": null, "reactionVideos": [], @@ -340533,7 +340033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 7401798, "featuredRunMedia": null, "reactionVideos": [], @@ -340553,7 +340053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 7404259, "featuredRunMedia": null, "reactionVideos": [], @@ -340573,7 +340073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 7405240, "featuredRunMedia": null, "reactionVideos": [], @@ -340593,7 +340093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 7405820, "featuredRunMedia": null, "reactionVideos": [], @@ -340613,7 +340113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 7406512, "featuredRunMedia": null, "reactionVideos": [], @@ -340633,7 +340133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 7407136, "featuredRunMedia": null, "reactionVideos": [], @@ -340653,7 +340153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 7407650, "featuredRunMedia": null, "reactionVideos": [], @@ -340673,7 +340173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7408235, "featuredRunMedia": null, "reactionVideos": [], @@ -340693,7 +340193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 449, + "teamId": "144519", "time": 7409184, "featuredRunMedia": null, "reactionVideos": [], @@ -340713,7 +340213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7416169, "featuredRunMedia": null, "reactionVideos": [], @@ -340733,7 +340233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 7416828, "featuredRunMedia": null, "reactionVideos": [], @@ -340753,7 +340253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7419934, "featuredRunMedia": null, "reactionVideos": [], @@ -340773,7 +340273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 7420484, "featuredRunMedia": null, "reactionVideos": [], @@ -340793,7 +340293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7423809, "featuredRunMedia": null, "reactionVideos": [], @@ -340813,7 +340313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 435, + "teamId": "144505", "time": 7425656, "featuredRunMedia": null, "reactionVideos": [], @@ -340833,7 +340333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 7427041, "featuredRunMedia": null, "reactionVideos": [], @@ -340853,7 +340353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 337, + "teamId": "144407", "time": 7427633, "featuredRunMedia": null, "reactionVideos": [], @@ -340873,7 +340373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 7427836, "featuredRunMedia": null, "reactionVideos": [], @@ -340893,7 +340393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 356, + "teamId": "144426", "time": 7428332, "featuredRunMedia": null, "reactionVideos": [], @@ -340913,7 +340413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 7432366, "featuredRunMedia": null, "reactionVideos": [], @@ -340933,7 +340433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 7433902, "featuredRunMedia": null, "reactionVideos": [], @@ -340953,7 +340453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7435167, "featuredRunMedia": null, "reactionVideos": [], @@ -340973,7 +340473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 7435791, "featuredRunMedia": null, "reactionVideos": [], @@ -340993,7 +340493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7436379, "featuredRunMedia": null, "reactionVideos": [], @@ -341013,7 +340513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7438210, "featuredRunMedia": null, "reactionVideos": [], @@ -341033,7 +340533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "144083", "time": 7438691, "featuredRunMedia": null, "reactionVideos": [], @@ -341053,7 +340553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 7439091, "featuredRunMedia": null, "reactionVideos": [], @@ -341073,7 +340573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7440983, "featuredRunMedia": null, "reactionVideos": [], @@ -341093,7 +340593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 7445084, "featuredRunMedia": null, "reactionVideos": [], @@ -341113,7 +340613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 125, + "teamId": "144195", "time": 7446581, "featuredRunMedia": null, "reactionVideos": [], @@ -341133,7 +340633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7447042, "featuredRunMedia": null, "reactionVideos": [], @@ -341153,7 +340653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "144170", "time": 7450923, "featuredRunMedia": null, "reactionVideos": [], @@ -341173,7 +340673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "144395", "time": 7452010, "featuredRunMedia": null, "reactionVideos": [], @@ -341193,7 +340693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 7453027, "featuredRunMedia": null, "reactionVideos": [], @@ -341213,7 +340713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7454377, "featuredRunMedia": null, "reactionVideos": [], @@ -341233,7 +340733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 7457269, "featuredRunMedia": null, "reactionVideos": [], @@ -341253,7 +340753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 7458536, "featuredRunMedia": null, "reactionVideos": [], @@ -341273,7 +340773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7461189, "featuredRunMedia": null, "reactionVideos": [], @@ -341293,7 +340793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 7461261, "featuredRunMedia": null, "reactionVideos": [], @@ -341313,7 +340813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7461585, "featuredRunMedia": null, "reactionVideos": [], @@ -341333,7 +340833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 7463304, "featuredRunMedia": null, "reactionVideos": [], @@ -341353,7 +340853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 7463776, "featuredRunMedia": null, "reactionVideos": [], @@ -341373,7 +340873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 7467260, "featuredRunMedia": null, "reactionVideos": [], @@ -341393,7 +340893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 7467606, "featuredRunMedia": null, "reactionVideos": [], @@ -341413,7 +340913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7468686, "featuredRunMedia": null, "reactionVideos": [], @@ -341433,7 +340933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 7469210, "featuredRunMedia": null, "reactionVideos": [], @@ -341453,7 +340953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 7470527, "featuredRunMedia": null, "reactionVideos": [], @@ -341473,7 +340973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 7471516, "featuredRunMedia": null, "reactionVideos": [], @@ -341493,7 +340993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 7472704, "featuredRunMedia": null, "reactionVideos": [], @@ -341513,7 +341013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 7475126, "featuredRunMedia": null, "reactionVideos": [], @@ -341537,7 +341037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 150, + "teamId": "144220", "time": 7476239, "featuredRunMedia": null, "reactionVideos": [], @@ -341557,7 +341057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7477540, "featuredRunMedia": null, "reactionVideos": [], @@ -341577,7 +341077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 347, + "teamId": "144417", "time": 7479092, "featuredRunMedia": null, "reactionVideos": [], @@ -341597,7 +341097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 7479937, "featuredRunMedia": null, "reactionVideos": [], @@ -341617,7 +341117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "144128", "time": 7479980, "featuredRunMedia": null, "reactionVideos": [], @@ -341637,7 +341137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 7483041, "featuredRunMedia": null, "reactionVideos": [], @@ -341657,7 +341157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 7485032, "featuredRunMedia": null, "reactionVideos": [], @@ -341677,7 +341177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 7486698, "featuredRunMedia": null, "reactionVideos": [], @@ -341697,7 +341197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 7488792, "featuredRunMedia": null, "reactionVideos": [], @@ -341717,7 +341217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 7489349, "featuredRunMedia": null, "reactionVideos": [], @@ -341737,7 +341237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 7490494, "featuredRunMedia": null, "reactionVideos": [], @@ -341757,7 +341257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 7492116, "featuredRunMedia": null, "reactionVideos": [], @@ -341777,7 +341277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 7497402, "featuredRunMedia": null, "reactionVideos": [], @@ -341797,7 +341297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 7499678, "featuredRunMedia": null, "reactionVideos": [], @@ -341817,7 +341317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 7500243, "featuredRunMedia": null, "reactionVideos": [], @@ -341837,7 +341337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 7500400, "featuredRunMedia": null, "reactionVideos": [], @@ -341857,7 +341357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 7502923, "featuredRunMedia": null, "reactionVideos": [], @@ -341877,7 +341377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 7503794, "featuredRunMedia": null, "reactionVideos": [], @@ -341897,7 +341397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 7505892, "featuredRunMedia": null, "reactionVideos": [], @@ -341917,7 +341417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "144130", "time": 7509353, "featuredRunMedia": null, "reactionVideos": [], @@ -341937,7 +341437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 150, + "teamId": "144220", "time": 7510945, "featuredRunMedia": null, "reactionVideos": [], @@ -341957,7 +341457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 7512206, "featuredRunMedia": null, "reactionVideos": [], @@ -341977,7 +341477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 7512293, "featuredRunMedia": null, "reactionVideos": [], @@ -341997,7 +341497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 7514449, "featuredRunMedia": null, "reactionVideos": [], @@ -342017,7 +341517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 7516789, "featuredRunMedia": null, "reactionVideos": [], @@ -342037,7 +341537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 7517829, "featuredRunMedia": null, "reactionVideos": [], @@ -342057,7 +341557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 7522712, "featuredRunMedia": null, "reactionVideos": [], @@ -342077,7 +341577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 7524162, "featuredRunMedia": null, "reactionVideos": [], @@ -342097,7 +341597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 7525195, "featuredRunMedia": null, "reactionVideos": [], @@ -342117,7 +341617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "144162", "time": 7526931, "featuredRunMedia": null, "reactionVideos": [], @@ -342137,7 +341637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 7530259, "featuredRunMedia": null, "reactionVideos": [], @@ -342157,7 +341657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 7533032, "featuredRunMedia": null, "reactionVideos": [], @@ -342177,7 +341677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 7536293, "featuredRunMedia": null, "reactionVideos": [], @@ -342197,7 +341697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 250, + "teamId": "144320", "time": 7536856, "featuredRunMedia": null, "reactionVideos": [], @@ -342217,7 +341717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 7536912, "featuredRunMedia": null, "reactionVideos": [], @@ -342237,7 +341737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 7537112, "featuredRunMedia": null, "reactionVideos": [], @@ -342257,7 +341757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 7537339, "featuredRunMedia": null, "reactionVideos": [], @@ -342277,7 +341777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 7538552, "featuredRunMedia": null, "reactionVideos": [], @@ -342297,7 +341797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 7539384, "featuredRunMedia": null, "reactionVideos": [], @@ -342317,7 +341817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7539736, "featuredRunMedia": null, "reactionVideos": [], @@ -342337,7 +341837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 7541787, "featuredRunMedia": null, "reactionVideos": [], @@ -342357,7 +341857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 7542548, "featuredRunMedia": null, "reactionVideos": [], @@ -342377,7 +341877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 7545341, "featuredRunMedia": null, "reactionVideos": [], @@ -342397,7 +341897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7546198, "featuredRunMedia": null, "reactionVideos": [], @@ -342417,7 +341917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 7546997, "featuredRunMedia": null, "reactionVideos": [], @@ -342437,7 +341937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 7547332, "featuredRunMedia": null, "reactionVideos": [], @@ -342457,7 +341957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 7552672, "featuredRunMedia": null, "reactionVideos": [], @@ -342477,7 +341977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "144210", "time": 7553432, "featuredRunMedia": null, "reactionVideos": [], @@ -342497,7 +341997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 7554088, "featuredRunMedia": null, "reactionVideos": [], @@ -342517,7 +342017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 7554334, "featuredRunMedia": null, "reactionVideos": [], @@ -342537,7 +342037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "144163", "time": 7554486, "featuredRunMedia": null, "reactionVideos": [], @@ -342557,7 +342057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 7557596, "featuredRunMedia": null, "reactionVideos": [], @@ -342577,7 +342077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7558220, "featuredRunMedia": null, "reactionVideos": [], @@ -342597,7 +342097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 7558259, "featuredRunMedia": null, "reactionVideos": [], @@ -342617,7 +342117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 7559138, "featuredRunMedia": null, "reactionVideos": [], @@ -342637,7 +342137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 7559610, "featuredRunMedia": null, "reactionVideos": [], @@ -342657,7 +342157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7563799, "featuredRunMedia": null, "reactionVideos": [], @@ -342677,7 +342177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 7565148, "featuredRunMedia": null, "reactionVideos": [], @@ -342697,7 +342197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 7566729, "featuredRunMedia": null, "reactionVideos": [], @@ -342717,7 +342217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 7571781, "featuredRunMedia": null, "reactionVideos": [], @@ -342737,7 +342237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 7571846, "featuredRunMedia": null, "reactionVideos": [], @@ -342757,7 +342257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7572255, "featuredRunMedia": null, "reactionVideos": [], @@ -342777,7 +342277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 7573119, "featuredRunMedia": null, "reactionVideos": [], @@ -342797,7 +342297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 7574032, "featuredRunMedia": null, "reactionVideos": [], @@ -342817,7 +342317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 7576115, "featuredRunMedia": null, "reactionVideos": [], @@ -342837,7 +342337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7576905, "featuredRunMedia": null, "reactionVideos": [], @@ -342857,7 +342357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 433, + "teamId": "144503", "time": 7580289, "featuredRunMedia": null, "reactionVideos": [], @@ -342877,7 +342377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 7580341, "featuredRunMedia": null, "reactionVideos": [], @@ -342897,7 +342397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 7581298, "featuredRunMedia": null, "reactionVideos": [], @@ -342917,7 +342417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 7582112, "featuredRunMedia": null, "reactionVideos": [], @@ -342937,7 +342437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 7583260, "featuredRunMedia": null, "reactionVideos": [], @@ -342957,7 +342457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 7584456, "featuredRunMedia": null, "reactionVideos": [], @@ -342981,7 +342481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "144357", "time": 7586368, "featuredRunMedia": null, "reactionVideos": [], @@ -343001,7 +342501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 7586960, "featuredRunMedia": null, "reactionVideos": [], @@ -343021,7 +342521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 7589216, "featuredRunMedia": null, "reactionVideos": [], @@ -343041,7 +342541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 7589810, "featuredRunMedia": null, "reactionVideos": [], @@ -343061,7 +342561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7590026, "featuredRunMedia": null, "reactionVideos": [], @@ -343081,7 +342581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 7591226, "featuredRunMedia": null, "reactionVideos": [], @@ -343101,7 +342601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7594742, "featuredRunMedia": null, "reactionVideos": [], @@ -343121,7 +342621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 7595207, "featuredRunMedia": null, "reactionVideos": [], @@ -343141,7 +342641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 315, + "teamId": "144385", "time": 7596367, "featuredRunMedia": null, "reactionVideos": [], @@ -343161,7 +342661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 7597249, "featuredRunMedia": null, "reactionVideos": [], @@ -343181,7 +342681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 7597497, "featuredRunMedia": null, "reactionVideos": [], @@ -343201,7 +342701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "144175", "time": 7599253, "featuredRunMedia": null, "reactionVideos": [], @@ -343221,7 +342721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 7600096, "featuredRunMedia": null, "reactionVideos": [], @@ -343241,7 +342741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "144293", "time": 7602216, "featuredRunMedia": null, "reactionVideos": [], @@ -343261,7 +342761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 7605578, "featuredRunMedia": null, "reactionVideos": [], @@ -343281,7 +342781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 7605750, "featuredRunMedia": null, "reactionVideos": [], @@ -343301,7 +342801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 7609536, "featuredRunMedia": null, "reactionVideos": [], @@ -343321,7 +342821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 7610492, "featuredRunMedia": null, "reactionVideos": [], @@ -343341,7 +342841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 7611690, "featuredRunMedia": null, "reactionVideos": [], @@ -343361,7 +342861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 7613099, "featuredRunMedia": null, "reactionVideos": [], @@ -343381,7 +342881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "144107", "time": 7618493, "featuredRunMedia": null, "reactionVideos": [], @@ -343401,7 +342901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "144128", "time": 7619096, "featuredRunMedia": null, "reactionVideos": [], @@ -343421,7 +342921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 7619728, "featuredRunMedia": null, "reactionVideos": [], @@ -343441,7 +342941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 7619773, "featuredRunMedia": null, "reactionVideos": [], @@ -343461,7 +342961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7620504, "featuredRunMedia": null, "reactionVideos": [], @@ -343481,7 +342981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7622082, "featuredRunMedia": null, "reactionVideos": [], @@ -343501,7 +343001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 7626932, "featuredRunMedia": null, "reactionVideos": [], @@ -343521,7 +343021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7627606, "featuredRunMedia": null, "reactionVideos": [], @@ -343541,7 +343041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 420, + "teamId": "144490", "time": 7631789, "featuredRunMedia": null, "reactionVideos": [], @@ -343561,7 +343061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7633929, "featuredRunMedia": null, "reactionVideos": [], @@ -343581,7 +343081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 7636520, "featuredRunMedia": null, "reactionVideos": [], @@ -343601,7 +343101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 7637033, "featuredRunMedia": null, "reactionVideos": [], @@ -343621,7 +343121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 56, + "teamId": "144126", "time": 7637521, "featuredRunMedia": null, "reactionVideos": [], @@ -343641,7 +343141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 7638215, "featuredRunMedia": null, "reactionVideos": [], @@ -343661,7 +343161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 7641401, "featuredRunMedia": null, "reactionVideos": [], @@ -343681,7 +343181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 7643396, "featuredRunMedia": null, "reactionVideos": [], @@ -343701,7 +343201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 418, + "teamId": "144488", "time": 7647019, "featuredRunMedia": null, "reactionVideos": [], @@ -343725,7 +343225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 7647370, "featuredRunMedia": null, "reactionVideos": [], @@ -343745,7 +343245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 7650597, "featuredRunMedia": null, "reactionVideos": [], @@ -343765,7 +343265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 7651984, "featuredRunMedia": null, "reactionVideos": [], @@ -343785,7 +343285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 7652389, "featuredRunMedia": null, "reactionVideos": [], @@ -343805,7 +343305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 7652972, "featuredRunMedia": null, "reactionVideos": [], @@ -343825,7 +343325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 7655295, "featuredRunMedia": null, "reactionVideos": [], @@ -343845,7 +343345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 7656694, "featuredRunMedia": null, "reactionVideos": [], @@ -343865,7 +343365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 7660686, "featuredRunMedia": null, "reactionVideos": [], @@ -343885,7 +343385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 7661597, "featuredRunMedia": null, "reactionVideos": [], @@ -343905,7 +343405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 7663918, "featuredRunMedia": null, "reactionVideos": [], @@ -343925,7 +343425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 7669628, "featuredRunMedia": null, "reactionVideos": [], @@ -343945,7 +343445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 7669853, "featuredRunMedia": null, "reactionVideos": [], @@ -343965,7 +343465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 7670480, "featuredRunMedia": null, "reactionVideos": [], @@ -343985,7 +343485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 7671641, "featuredRunMedia": null, "reactionVideos": [], @@ -344005,7 +343505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "144242", "time": 7672595, "featuredRunMedia": null, "reactionVideos": [], @@ -344025,7 +343525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 7673181, "featuredRunMedia": null, "reactionVideos": [], @@ -344045,7 +343545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 7675001, "featuredRunMedia": null, "reactionVideos": [], @@ -344069,7 +343569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 7675078, "featuredRunMedia": null, "reactionVideos": [], @@ -344089,7 +343589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7677947, "featuredRunMedia": null, "reactionVideos": [], @@ -344109,7 +343609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "144200", "time": 7679009, "featuredRunMedia": null, "reactionVideos": [], @@ -344129,7 +343629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 7679428, "featuredRunMedia": null, "reactionVideos": [], @@ -344149,7 +343649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7680507, "featuredRunMedia": null, "reactionVideos": [], @@ -344169,7 +343669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7682690, "featuredRunMedia": null, "reactionVideos": [], @@ -344189,7 +343689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 7682821, "featuredRunMedia": null, "reactionVideos": [], @@ -344209,7 +343709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 7684544, "featuredRunMedia": null, "reactionVideos": [], @@ -344229,7 +343729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 7685218, "featuredRunMedia": null, "reactionVideos": [], @@ -344249,7 +343749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 7686070, "featuredRunMedia": null, "reactionVideos": [], @@ -344269,7 +343769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 7686868, "featuredRunMedia": null, "reactionVideos": [], @@ -344289,7 +343789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 7687881, "featuredRunMedia": null, "reactionVideos": [], @@ -344309,7 +343809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7688007, "featuredRunMedia": null, "reactionVideos": [], @@ -344329,7 +343829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 7688545, "featuredRunMedia": null, "reactionVideos": [], @@ -344349,7 +343849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7688787, "featuredRunMedia": null, "reactionVideos": [], @@ -344369,7 +343869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 387, + "teamId": "144457", "time": 7689391, "featuredRunMedia": null, "reactionVideos": [], @@ -344389,7 +343889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 7689743, "featuredRunMedia": null, "reactionVideos": [], @@ -344409,7 +343909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 7690029, "featuredRunMedia": null, "reactionVideos": [], @@ -344429,7 +343929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 7690942, "featuredRunMedia": null, "reactionVideos": [], @@ -344449,7 +343949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 7691361, "featuredRunMedia": null, "reactionVideos": [], @@ -344469,7 +343969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 7691536, "featuredRunMedia": null, "reactionVideos": [], @@ -344489,7 +343989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 7691579, "featuredRunMedia": null, "reactionVideos": [], @@ -344509,7 +344009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 7693158, "featuredRunMedia": null, "reactionVideos": [], @@ -344529,7 +344029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 7693698, "featuredRunMedia": null, "reactionVideos": [], @@ -344549,7 +344049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 7694555, "featuredRunMedia": null, "reactionVideos": [], @@ -344569,7 +344069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 7695634, "featuredRunMedia": null, "reactionVideos": [], @@ -344589,7 +344089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7696804, "featuredRunMedia": null, "reactionVideos": [], @@ -344609,7 +344109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 7697343, "featuredRunMedia": null, "reactionVideos": [], @@ -344629,7 +344129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 7697511, "featuredRunMedia": null, "reactionVideos": [], @@ -344649,7 +344149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 7699015, "featuredRunMedia": null, "reactionVideos": [], @@ -344669,7 +344169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 7700172, "featuredRunMedia": null, "reactionVideos": [], @@ -344689,7 +344189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 7700910, "featuredRunMedia": null, "reactionVideos": [], @@ -344709,7 +344209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7701210, "featuredRunMedia": null, "reactionVideos": [], @@ -344729,7 +344229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 7703202, "featuredRunMedia": null, "reactionVideos": [], @@ -344749,7 +344249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 7704304, "featuredRunMedia": null, "reactionVideos": [], @@ -344769,7 +344269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 7705388, "featuredRunMedia": null, "reactionVideos": [], @@ -344789,7 +344289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 7706825, "featuredRunMedia": null, "reactionVideos": [], @@ -344809,7 +344309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "144083", "time": 7709251, "featuredRunMedia": null, "reactionVideos": [], @@ -344829,7 +344329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 7711221, "featuredRunMedia": null, "reactionVideos": [], @@ -344849,7 +344349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "144120", "time": 7714459, "featuredRunMedia": null, "reactionVideos": [], @@ -344873,7 +344373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 7716935, "featuredRunMedia": null, "reactionVideos": [], @@ -344893,7 +344393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 7716998, "featuredRunMedia": null, "reactionVideos": [], @@ -344913,7 +344413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 7717071, "featuredRunMedia": null, "reactionVideos": [], @@ -344933,7 +344433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7717596, "featuredRunMedia": null, "reactionVideos": [], @@ -344953,7 +344453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "144160", "time": 7718072, "featuredRunMedia": null, "reactionVideos": [], @@ -344973,7 +344473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "144131", "time": 7718845, "featuredRunMedia": null, "reactionVideos": [], @@ -344993,7 +344493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 7719967, "featuredRunMedia": null, "reactionVideos": [], @@ -345013,7 +344513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 7720088, "featuredRunMedia": null, "reactionVideos": [], @@ -345033,7 +344533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 7721958, "featuredRunMedia": null, "reactionVideos": [], @@ -345053,7 +344553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 7722563, "featuredRunMedia": null, "reactionVideos": [], @@ -345073,7 +344573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 7723660, "featuredRunMedia": null, "reactionVideos": [], @@ -345093,7 +344593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 7723937, "featuredRunMedia": null, "reactionVideos": [], @@ -345113,7 +344613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 7727309, "featuredRunMedia": null, "reactionVideos": [], @@ -345133,7 +344633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 7727725, "featuredRunMedia": null, "reactionVideos": [], @@ -345153,7 +344653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7727997, "featuredRunMedia": null, "reactionVideos": [], @@ -345173,7 +344673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 137, + "teamId": "144207", "time": 7728946, "featuredRunMedia": null, "reactionVideos": [], @@ -345193,7 +344693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 7731309, "featuredRunMedia": null, "reactionVideos": [], @@ -345213,7 +344713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 7734485, "featuredRunMedia": null, "reactionVideos": [], @@ -345233,7 +344733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 7735099, "featuredRunMedia": null, "reactionVideos": [], @@ -345253,7 +344753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 7736337, "featuredRunMedia": null, "reactionVideos": [], @@ -345273,7 +344773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 7737129, "featuredRunMedia": null, "reactionVideos": [], @@ -345293,7 +344793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 7738306, "featuredRunMedia": null, "reactionVideos": [], @@ -345313,7 +344813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7740561, "featuredRunMedia": null, "reactionVideos": [], @@ -345333,7 +344833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7742078, "featuredRunMedia": null, "reactionVideos": [], @@ -345353,7 +344853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "144332", "time": 7742743, "featuredRunMedia": null, "reactionVideos": [], @@ -345373,7 +344873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7746289, "featuredRunMedia": null, "reactionVideos": [], @@ -345393,7 +344893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7747883, "featuredRunMedia": null, "reactionVideos": [], @@ -345413,7 +344913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 7751662, "featuredRunMedia": null, "reactionVideos": [], @@ -345433,7 +344933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 7752721, "featuredRunMedia": null, "reactionVideos": [], @@ -345453,7 +344953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 7753201, "featuredRunMedia": null, "reactionVideos": [], @@ -345473,7 +344973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 7753695, "featuredRunMedia": null, "reactionVideos": [], @@ -345493,7 +344993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7754615, "featuredRunMedia": null, "reactionVideos": [], @@ -345513,7 +345013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "144179", "time": 7755973, "featuredRunMedia": null, "reactionVideos": [], @@ -345537,7 +345037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 7758382, "featuredRunMedia": null, "reactionVideos": [], @@ -345557,7 +345057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7760050, "featuredRunMedia": null, "reactionVideos": [], @@ -345577,7 +345077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 7760370, "featuredRunMedia": null, "reactionVideos": [], @@ -345597,7 +345097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 7768689, "featuredRunMedia": null, "reactionVideos": [], @@ -345617,7 +345117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 7768825, "featuredRunMedia": null, "reactionVideos": [], @@ -345637,7 +345137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "144295", "time": 7770731, "featuredRunMedia": null, "reactionVideos": [], @@ -345657,7 +345157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7771082, "featuredRunMedia": null, "reactionVideos": [], @@ -345677,7 +345177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 7773017, "featuredRunMedia": null, "reactionVideos": [], @@ -345697,7 +345197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 7775160, "featuredRunMedia": null, "reactionVideos": [], @@ -345717,7 +345217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 7775206, "featuredRunMedia": null, "reactionVideos": [], @@ -345737,7 +345237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 7775528, "featuredRunMedia": null, "reactionVideos": [], @@ -345757,7 +345257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 7775698, "featuredRunMedia": null, "reactionVideos": [], @@ -345777,7 +345277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 7776049, "featuredRunMedia": null, "reactionVideos": [], @@ -345797,7 +345297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 7777020, "featuredRunMedia": null, "reactionVideos": [], @@ -345817,7 +345317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 7778035, "featuredRunMedia": null, "reactionVideos": [], @@ -345837,7 +345337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 7779409, "featuredRunMedia": null, "reactionVideos": [], @@ -345857,7 +345357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "144234", "time": 7780318, "featuredRunMedia": null, "reactionVideos": [], @@ -345881,7 +345381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 7780758, "featuredRunMedia": null, "reactionVideos": [], @@ -345901,7 +345401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 282, + "teamId": "144352", "time": 7783624, "featuredRunMedia": null, "reactionVideos": [], @@ -345921,7 +345421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 7783710, "featuredRunMedia": null, "reactionVideos": [], @@ -345941,7 +345441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7784433, "featuredRunMedia": null, "reactionVideos": [], @@ -345961,7 +345461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7784611, "featuredRunMedia": null, "reactionVideos": [], @@ -345981,7 +345481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 7785462, "featuredRunMedia": null, "reactionVideos": [], @@ -346001,7 +345501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7787099, "featuredRunMedia": null, "reactionVideos": [], @@ -346021,7 +345521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 7787299, "featuredRunMedia": null, "reactionVideos": [], @@ -346041,7 +345541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 7787761, "featuredRunMedia": null, "reactionVideos": [], @@ -346061,7 +345561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 7789262, "featuredRunMedia": null, "reactionVideos": [], @@ -346081,7 +345581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 7790190, "featuredRunMedia": null, "reactionVideos": [], @@ -346101,7 +345601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 7792169, "featuredRunMedia": null, "reactionVideos": [], @@ -346121,7 +345621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 7793589, "featuredRunMedia": null, "reactionVideos": [], @@ -346141,7 +345641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 7793924, "featuredRunMedia": null, "reactionVideos": [], @@ -346161,7 +345661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7797991, "featuredRunMedia": null, "reactionVideos": [], @@ -346181,7 +345681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 7799628, "featuredRunMedia": null, "reactionVideos": [], @@ -346201,7 +345701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 7800177, "featuredRunMedia": null, "reactionVideos": [], @@ -346221,7 +345721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7801409, "featuredRunMedia": null, "reactionVideos": [], @@ -346241,7 +345741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 7801914, "featuredRunMedia": null, "reactionVideos": [], @@ -346261,7 +345761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 7803336, "featuredRunMedia": null, "reactionVideos": [], @@ -346281,7 +345781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 7803373, "featuredRunMedia": null, "reactionVideos": [], @@ -346301,7 +345801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 7803407, "featuredRunMedia": null, "reactionVideos": [], @@ -346321,7 +345821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7803625, "featuredRunMedia": null, "reactionVideos": [], @@ -346341,7 +345841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 7806092, "featuredRunMedia": null, "reactionVideos": [], @@ -346361,7 +345861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "144116", "time": 7806537, "featuredRunMedia": null, "reactionVideos": [], @@ -346381,7 +345881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 126, + "teamId": "144196", "time": 7806804, "featuredRunMedia": null, "reactionVideos": [], @@ -346401,7 +345901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 7810711, "featuredRunMedia": null, "reactionVideos": [], @@ -346421,7 +345921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 7812238, "featuredRunMedia": null, "reactionVideos": [], @@ -346441,7 +345941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7812327, "featuredRunMedia": null, "reactionVideos": [], @@ -346461,7 +345961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 7813677, "featuredRunMedia": null, "reactionVideos": [], @@ -346481,7 +345981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 7815507, "featuredRunMedia": null, "reactionVideos": [], @@ -346501,7 +346001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 7815796, "featuredRunMedia": null, "reactionVideos": [], @@ -346521,7 +346021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "144242", "time": 7817195, "featuredRunMedia": null, "reactionVideos": [], @@ -346541,7 +346041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 7819031, "featuredRunMedia": null, "reactionVideos": [], @@ -346561,7 +346061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 7820850, "featuredRunMedia": null, "reactionVideos": [], @@ -346581,7 +346081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 7821017, "featuredRunMedia": null, "reactionVideos": [], @@ -346601,7 +346101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "144168", "time": 7821316, "featuredRunMedia": null, "reactionVideos": [], @@ -346621,7 +346121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7822219, "featuredRunMedia": null, "reactionVideos": [], @@ -346641,7 +346141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 7823236, "featuredRunMedia": null, "reactionVideos": [], @@ -346661,7 +346161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 7824078, "featuredRunMedia": null, "reactionVideos": [], @@ -346681,7 +346181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 7825285, "featuredRunMedia": null, "reactionVideos": [], @@ -346705,7 +346205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 7825693, "featuredRunMedia": null, "reactionVideos": [], @@ -346725,7 +346225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 7825907, "featuredRunMedia": null, "reactionVideos": [], @@ -346745,7 +346245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 7827886, "featuredRunMedia": null, "reactionVideos": [], @@ -346765,7 +346265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 7828004, "featuredRunMedia": null, "reactionVideos": [], @@ -346785,7 +346285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 7828286, "featuredRunMedia": null, "reactionVideos": [], @@ -346805,7 +346305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 7828492, "featuredRunMedia": null, "reactionVideos": [], @@ -346825,7 +346325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 7829689, "featuredRunMedia": null, "reactionVideos": [], @@ -346845,7 +346345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 7830464, "featuredRunMedia": null, "reactionVideos": [], @@ -346865,7 +346365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 7833357, "featuredRunMedia": null, "reactionVideos": [], @@ -346885,7 +346385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 7834440, "featuredRunMedia": null, "reactionVideos": [], @@ -346905,7 +346405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 7834928, "featuredRunMedia": null, "reactionVideos": [], @@ -346925,7 +346425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 7835701, "featuredRunMedia": null, "reactionVideos": [], @@ -346945,7 +346445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7835743, "featuredRunMedia": null, "reactionVideos": [], @@ -346965,7 +346465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 7836251, "featuredRunMedia": null, "reactionVideos": [], @@ -346985,7 +346485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 7836341, "featuredRunMedia": null, "reactionVideos": [], @@ -347005,7 +346505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 7838537, "featuredRunMedia": null, "reactionVideos": [], @@ -347025,7 +346525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 7840315, "featuredRunMedia": null, "reactionVideos": [], @@ -347045,7 +346545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 7842813, "featuredRunMedia": null, "reactionVideos": [], @@ -347065,7 +346565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 7846007, "featuredRunMedia": null, "reactionVideos": [], @@ -347085,7 +346585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 137, + "teamId": "144207", "time": 7847643, "featuredRunMedia": null, "reactionVideos": [], @@ -347105,7 +346605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 7849665, "featuredRunMedia": null, "reactionVideos": [], @@ -347125,7 +346625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7850943, "featuredRunMedia": null, "reactionVideos": [], @@ -347145,7 +346645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 7852158, "featuredRunMedia": null, "reactionVideos": [], @@ -347165,7 +346665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 7853340, "featuredRunMedia": null, "reactionVideos": [], @@ -347185,7 +346685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "144234", "time": 7854454, "featuredRunMedia": null, "reactionVideos": [], @@ -347205,7 +346705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 7854640, "featuredRunMedia": null, "reactionVideos": [], @@ -347225,7 +346725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "144163", "time": 7854718, "featuredRunMedia": null, "reactionVideos": [], @@ -347245,7 +346745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 7855417, "featuredRunMedia": null, "reactionVideos": [], @@ -347265,7 +346765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 7857566, "featuredRunMedia": null, "reactionVideos": [], @@ -347285,7 +346785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 7860356, "featuredRunMedia": null, "reactionVideos": [], @@ -347305,7 +346805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 7860855, "featuredRunMedia": null, "reactionVideos": [], @@ -347325,7 +346825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 7868812, "featuredRunMedia": null, "reactionVideos": [], @@ -347345,7 +346845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7874139, "featuredRunMedia": null, "reactionVideos": [], @@ -347365,7 +346865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7874851, "featuredRunMedia": null, "reactionVideos": [], @@ -347385,7 +346885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "144351", "time": 7877930, "featuredRunMedia": null, "reactionVideos": [], @@ -347405,7 +346905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7878351, "featuredRunMedia": null, "reactionVideos": [], @@ -347425,7 +346925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 7880255, "featuredRunMedia": null, "reactionVideos": [], @@ -347445,7 +346945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 7880854, "featuredRunMedia": null, "reactionVideos": [], @@ -347465,7 +346965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 7880995, "featuredRunMedia": null, "reactionVideos": [], @@ -347485,7 +346985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 307, + "teamId": "144377", "time": 7883224, "featuredRunMedia": null, "reactionVideos": [], @@ -347505,7 +347005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 7883457, "featuredRunMedia": null, "reactionVideos": [], @@ -347525,7 +347025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 7883492, "featuredRunMedia": null, "reactionVideos": [], @@ -347545,7 +347045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 337, + "teamId": "144407", "time": 7883710, "featuredRunMedia": null, "reactionVideos": [], @@ -347565,7 +347065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "144343", "time": 7884459, "featuredRunMedia": null, "reactionVideos": [], @@ -347585,7 +347085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7885242, "featuredRunMedia": null, "reactionVideos": [], @@ -347605,7 +347105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 7887224, "featuredRunMedia": null, "reactionVideos": [], @@ -347625,7 +347125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 7887451, "featuredRunMedia": null, "reactionVideos": [], @@ -347645,7 +347145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 7887723, "featuredRunMedia": null, "reactionVideos": [], @@ -347665,7 +347165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7888398, "featuredRunMedia": null, "reactionVideos": [], @@ -347689,7 +347189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 7893024, "featuredRunMedia": null, "reactionVideos": [], @@ -347709,7 +347209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 7898020, "featuredRunMedia": null, "reactionVideos": [], @@ -347729,7 +347229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "144118", "time": 7898300, "featuredRunMedia": null, "reactionVideos": [], @@ -347749,7 +347249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7899612, "featuredRunMedia": null, "reactionVideos": [], @@ -347769,7 +347269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 7900614, "featuredRunMedia": null, "reactionVideos": [], @@ -347789,7 +347289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 7901588, "featuredRunMedia": null, "reactionVideos": [], @@ -347809,7 +347309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 387, + "teamId": "144457", "time": 7901632, "featuredRunMedia": null, "reactionVideos": [], @@ -347829,7 +347329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 7902195, "featuredRunMedia": null, "reactionVideos": [], @@ -347849,7 +347349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "144128", "time": 7906670, "featuredRunMedia": null, "reactionVideos": [], @@ -347869,7 +347369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 7906702, "featuredRunMedia": null, "reactionVideos": [], @@ -347889,7 +347389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 7907157, "featuredRunMedia": null, "reactionVideos": [], @@ -347909,7 +347409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 7908452, "featuredRunMedia": null, "reactionVideos": [], @@ -347929,7 +347429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 7910981, "featuredRunMedia": null, "reactionVideos": [], @@ -347949,7 +347449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 7911274, "featuredRunMedia": null, "reactionVideos": [], @@ -347969,7 +347469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 7912853, "featuredRunMedia": null, "reactionVideos": [], @@ -347989,7 +347489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7913860, "featuredRunMedia": null, "reactionVideos": [], @@ -348009,7 +347509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 7914392, "featuredRunMedia": null, "reactionVideos": [], @@ -348029,7 +347529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 7915176, "featuredRunMedia": null, "reactionVideos": [], @@ -348049,7 +347549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 7915668, "featuredRunMedia": null, "reactionVideos": [], @@ -348069,7 +347569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 7916770, "featuredRunMedia": null, "reactionVideos": [], @@ -348089,7 +347589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 7919025, "featuredRunMedia": null, "reactionVideos": [], @@ -348109,7 +347609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 7920137, "featuredRunMedia": null, "reactionVideos": [], @@ -348129,7 +347629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 7920407, "featuredRunMedia": null, "reactionVideos": [], @@ -348149,7 +347649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7920878, "featuredRunMedia": null, "reactionVideos": [], @@ -348169,7 +347669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 7922571, "featuredRunMedia": null, "reactionVideos": [], @@ -348189,7 +347689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 7923019, "featuredRunMedia": null, "reactionVideos": [], @@ -348209,7 +347709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 7926076, "featuredRunMedia": null, "reactionVideos": [], @@ -348229,7 +347729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "144075", "time": 7926427, "featuredRunMedia": null, "reactionVideos": [], @@ -348249,7 +347749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 7927942, "featuredRunMedia": null, "reactionVideos": [], @@ -348269,7 +347769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 7928028, "featuredRunMedia": null, "reactionVideos": [], @@ -348289,7 +347789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 7928211, "featuredRunMedia": null, "reactionVideos": [], @@ -348309,7 +347809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 7928424, "featuredRunMedia": null, "reactionVideos": [], @@ -348329,7 +347829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "144332", "time": 7928758, "featuredRunMedia": null, "reactionVideos": [], @@ -348349,7 +347849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 7931968, "featuredRunMedia": null, "reactionVideos": [], @@ -348369,7 +347869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 7938975, "featuredRunMedia": null, "reactionVideos": [], @@ -348389,7 +347889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 7939771, "featuredRunMedia": null, "reactionVideos": [], @@ -348409,7 +347909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 7940469, "featuredRunMedia": null, "reactionVideos": [], @@ -348429,7 +347929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 7941200, "featuredRunMedia": null, "reactionVideos": [], @@ -348449,7 +347949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 7941622, "featuredRunMedia": null, "reactionVideos": [], @@ -348473,7 +347973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 7944750, "featuredRunMedia": null, "reactionVideos": [], @@ -348493,7 +347993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 7945830, "featuredRunMedia": null, "reactionVideos": [], @@ -348513,7 +348013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 7946229, "featuredRunMedia": null, "reactionVideos": [], @@ -348533,7 +348033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 7947869, "featuredRunMedia": null, "reactionVideos": [], @@ -348553,7 +348053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 7950281, "featuredRunMedia": null, "reactionVideos": [], @@ -348573,7 +348073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 7951662, "featuredRunMedia": null, "reactionVideos": [], @@ -348593,7 +348093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "144107", "time": 7951697, "featuredRunMedia": null, "reactionVideos": [], @@ -348613,7 +348113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 7952365, "featuredRunMedia": null, "reactionVideos": [], @@ -348633,7 +348133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 7953112, "featuredRunMedia": null, "reactionVideos": [], @@ -348653,7 +348153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 7953734, "featuredRunMedia": null, "reactionVideos": [], @@ -348673,7 +348173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "144160", "time": 7954910, "featuredRunMedia": null, "reactionVideos": [], @@ -348693,7 +348193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 7955737, "featuredRunMedia": null, "reactionVideos": [], @@ -348713,7 +348213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "144076", "time": 7956578, "featuredRunMedia": null, "reactionVideos": [], @@ -348733,7 +348233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 7956711, "featuredRunMedia": null, "reactionVideos": [], @@ -348753,7 +348253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 7957830, "featuredRunMedia": null, "reactionVideos": [], @@ -348773,7 +348273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 7959239, "featuredRunMedia": null, "reactionVideos": [], @@ -348793,7 +348293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 7959387, "featuredRunMedia": null, "reactionVideos": [], @@ -348813,7 +348313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "144124", "time": 7959903, "featuredRunMedia": null, "reactionVideos": [], @@ -348833,7 +348333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 7960191, "featuredRunMedia": null, "reactionVideos": [], @@ -348853,7 +348353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 7960310, "featuredRunMedia": null, "reactionVideos": [], @@ -348873,7 +348373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 7960546, "featuredRunMedia": null, "reactionVideos": [], @@ -348893,7 +348393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 7960603, "featuredRunMedia": null, "reactionVideos": [], @@ -348913,7 +348413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "144380", "time": 7960944, "featuredRunMedia": null, "reactionVideos": [], @@ -348933,7 +348433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 7962364, "featuredRunMedia": null, "reactionVideos": [], @@ -348953,7 +348453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 7964743, "featuredRunMedia": null, "reactionVideos": [], @@ -348973,7 +348473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 7965196, "featuredRunMedia": null, "reactionVideos": [], @@ -348993,7 +348493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 7967258, "featuredRunMedia": null, "reactionVideos": [], @@ -349013,7 +348513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 7967360, "featuredRunMedia": null, "reactionVideos": [], @@ -349033,7 +348533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 7968598, "featuredRunMedia": null, "reactionVideos": [], @@ -349053,7 +348553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 7968644, "featuredRunMedia": null, "reactionVideos": [], @@ -349073,7 +348573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 7969549, "featuredRunMedia": null, "reactionVideos": [], @@ -349093,7 +348593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 7971896, "featuredRunMedia": null, "reactionVideos": [], @@ -349113,7 +348613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 7972108, "featuredRunMedia": null, "reactionVideos": [], @@ -349133,7 +348633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 7972961, "featuredRunMedia": null, "reactionVideos": [], @@ -349153,7 +348653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "144419", "time": 7974581, "featuredRunMedia": null, "reactionVideos": [], @@ -349173,7 +348673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 7976989, "featuredRunMedia": null, "reactionVideos": [], @@ -349193,7 +348693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 7978023, "featuredRunMedia": null, "reactionVideos": [], @@ -349213,7 +348713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "144155", "time": 7979661, "featuredRunMedia": null, "reactionVideos": [], @@ -349233,7 +348733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 7979706, "featuredRunMedia": null, "reactionVideos": [], @@ -349253,7 +348753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 7980213, "featuredRunMedia": null, "reactionVideos": [], @@ -349273,7 +348773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 387, + "teamId": "144457", "time": 7980721, "featuredRunMedia": null, "reactionVideos": [], @@ -349293,7 +348793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 7982089, "featuredRunMedia": null, "reactionVideos": [], @@ -349313,7 +348813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7982466, "featuredRunMedia": null, "reactionVideos": [], @@ -349333,7 +348833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 7982586, "featuredRunMedia": null, "reactionVideos": [], @@ -349353,7 +348853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 7983651, "featuredRunMedia": null, "reactionVideos": [], @@ -349373,7 +348873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 7983975, "featuredRunMedia": null, "reactionVideos": [], @@ -349393,7 +348893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 7984892, "featuredRunMedia": null, "reactionVideos": [], @@ -349413,7 +348913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 7986045, "featuredRunMedia": null, "reactionVideos": [], @@ -349433,7 +348933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 7989089, "featuredRunMedia": null, "reactionVideos": [], @@ -349453,7 +348953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 7989468, "featuredRunMedia": null, "reactionVideos": [], @@ -349473,7 +348973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "144326", "time": 7989560, "featuredRunMedia": null, "reactionVideos": [], @@ -349493,7 +348993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 7990937, "featuredRunMedia": null, "reactionVideos": [], @@ -349513,7 +349013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 7992128, "featuredRunMedia": null, "reactionVideos": [], @@ -349533,7 +349033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 7992426, "featuredRunMedia": null, "reactionVideos": [], @@ -349553,7 +349053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 7993198, "featuredRunMedia": null, "reactionVideos": [], @@ -349573,7 +349073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 7993373, "featuredRunMedia": null, "reactionVideos": [], @@ -349593,7 +349093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 7993786, "featuredRunMedia": null, "reactionVideos": [], @@ -349613,7 +349113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 7994787, "featuredRunMedia": null, "reactionVideos": [], @@ -349633,7 +349133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 7995732, "featuredRunMedia": null, "reactionVideos": [], @@ -349653,7 +349153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 7995850, "featuredRunMedia": null, "reactionVideos": [], @@ -349673,7 +349173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 7997595, "featuredRunMedia": null, "reactionVideos": [], @@ -349693,7 +349193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 7997909, "featuredRunMedia": null, "reactionVideos": [], @@ -349713,7 +349213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 7998013, "featuredRunMedia": null, "reactionVideos": [], @@ -349733,7 +349233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 38, + "teamId": "144108", "time": 8000579, "featuredRunMedia": null, "reactionVideos": [], @@ -349753,7 +349253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 8006091, "featuredRunMedia": null, "reactionVideos": [], @@ -349773,7 +349273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8009270, "featuredRunMedia": null, "reactionVideos": [], @@ -349793,7 +349293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 8010027, "featuredRunMedia": null, "reactionVideos": [], @@ -349817,7 +349317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 8012324, "featuredRunMedia": null, "reactionVideos": [], @@ -349837,7 +349337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8012404, "featuredRunMedia": null, "reactionVideos": [], @@ -349857,7 +349357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 8013107, "featuredRunMedia": null, "reactionVideos": [], @@ -349877,7 +349377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 307, + "teamId": "144377", "time": 8014072, "featuredRunMedia": null, "reactionVideos": [], @@ -349897,7 +349397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8014607, "featuredRunMedia": null, "reactionVideos": [], @@ -349917,7 +349417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8015777, "featuredRunMedia": null, "reactionVideos": [], @@ -349937,7 +349437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8016452, "featuredRunMedia": null, "reactionVideos": [], @@ -349957,7 +349457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 8017987, "featuredRunMedia": null, "reactionVideos": [], @@ -349977,7 +349477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 8021423, "featuredRunMedia": null, "reactionVideos": [], @@ -349997,7 +349497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8023799, "featuredRunMedia": null, "reactionVideos": [], @@ -350017,7 +349517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 8027640, "featuredRunMedia": null, "reactionVideos": [], @@ -350037,7 +349537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 8027880, "featuredRunMedia": null, "reactionVideos": [], @@ -350057,7 +349557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 8028217, "featuredRunMedia": null, "reactionVideos": [], @@ -350077,7 +349577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 8028818, "featuredRunMedia": null, "reactionVideos": [], @@ -350097,7 +349597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "144162", "time": 8030013, "featuredRunMedia": null, "reactionVideos": [], @@ -350117,7 +349617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 8030861, "featuredRunMedia": null, "reactionVideos": [], @@ -350137,7 +349637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 8033050, "featuredRunMedia": null, "reactionVideos": [], @@ -350157,7 +349657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 8033110, "featuredRunMedia": null, "reactionVideos": [], @@ -350177,7 +349677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 8034244, "featuredRunMedia": null, "reactionVideos": [], @@ -350197,7 +349697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 289, + "teamId": "144359", "time": 8034695, "featuredRunMedia": null, "reactionVideos": [], @@ -350217,7 +349717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 8036818, "featuredRunMedia": null, "reactionVideos": [], @@ -350237,7 +349737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8037522, "featuredRunMedia": null, "reactionVideos": [], @@ -350257,7 +349757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "144155", "time": 8037867, "featuredRunMedia": null, "reactionVideos": [], @@ -350277,7 +349777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 8039169, "featuredRunMedia": null, "reactionVideos": [], @@ -350297,7 +349797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "144340", "time": 8039218, "featuredRunMedia": null, "reactionVideos": [], @@ -350317,7 +349817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 8039660, "featuredRunMedia": null, "reactionVideos": [], @@ -350337,7 +349837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 125, + "teamId": "144195", "time": 8040123, "featuredRunMedia": null, "reactionVideos": [], @@ -350357,7 +349857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8046564, "featuredRunMedia": null, "reactionVideos": [], @@ -350377,7 +349877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 8047691, "featuredRunMedia": null, "reactionVideos": [], @@ -350397,7 +349897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8047749, "featuredRunMedia": null, "reactionVideos": [], @@ -350417,7 +349917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 8047807, "featuredRunMedia": null, "reactionVideos": [], @@ -350437,7 +349937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 8048733, "featuredRunMedia": null, "reactionVideos": [], @@ -350457,7 +349957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 8056368, "featuredRunMedia": null, "reactionVideos": [], @@ -350477,7 +349977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 8057174, "featuredRunMedia": null, "reactionVideos": [], @@ -350497,7 +349997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 8057760, "featuredRunMedia": null, "reactionVideos": [], @@ -350517,7 +350017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8059689, "featuredRunMedia": null, "reactionVideos": [], @@ -350537,7 +350037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8060035, "featuredRunMedia": null, "reactionVideos": [], @@ -350557,7 +350057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 8063620, "featuredRunMedia": null, "reactionVideos": [], @@ -350577,7 +350077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8069138, "featuredRunMedia": null, "reactionVideos": [], @@ -350597,7 +350097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8070692, "featuredRunMedia": null, "reactionVideos": [], @@ -350617,7 +350117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 8070772, "featuredRunMedia": null, "reactionVideos": [], @@ -350637,7 +350137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 69, + "teamId": "144139", "time": 8070855, "featuredRunMedia": null, "reactionVideos": [], @@ -350657,7 +350157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "144302", "time": 8070908, "featuredRunMedia": null, "reactionVideos": [], @@ -350677,7 +350177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8071067, "featuredRunMedia": null, "reactionVideos": [], @@ -350697,7 +350197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 8071301, "featuredRunMedia": null, "reactionVideos": [], @@ -350717,7 +350217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 8072726, "featuredRunMedia": null, "reactionVideos": [], @@ -350737,7 +350237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 8073640, "featuredRunMedia": null, "reactionVideos": [], @@ -350757,7 +350257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 8075023, "featuredRunMedia": null, "reactionVideos": [], @@ -350777,7 +350277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 8075726, "featuredRunMedia": null, "reactionVideos": [], @@ -350797,7 +350297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8078004, "featuredRunMedia": null, "reactionVideos": [], @@ -350817,7 +350317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8078426, "featuredRunMedia": null, "reactionVideos": [], @@ -350837,7 +350337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 8078505, "featuredRunMedia": null, "reactionVideos": [], @@ -350857,7 +350357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 8081777, "featuredRunMedia": null, "reactionVideos": [], @@ -350881,7 +350381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8082703, "featuredRunMedia": null, "reactionVideos": [], @@ -350901,7 +350401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 8084056, "featuredRunMedia": null, "reactionVideos": [], @@ -350921,7 +350421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8085939, "featuredRunMedia": null, "reactionVideos": [], @@ -350941,7 +350441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "144117", "time": 8086843, "featuredRunMedia": null, "reactionVideos": [], @@ -350961,7 +350461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 8093445, "featuredRunMedia": null, "reactionVideos": [], @@ -350981,7 +350481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 8093641, "featuredRunMedia": null, "reactionVideos": [], @@ -351001,7 +350501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 8095239, "featuredRunMedia": null, "reactionVideos": [], @@ -351021,7 +350521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 8097409, "featuredRunMedia": null, "reactionVideos": [], @@ -351041,7 +350541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8100784, "featuredRunMedia": null, "reactionVideos": [], @@ -351061,7 +350561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8101547, "featuredRunMedia": null, "reactionVideos": [], @@ -351081,7 +350581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8102030, "featuredRunMedia": null, "reactionVideos": [], @@ -351101,7 +350601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 307, + "teamId": "144377", "time": 8102067, "featuredRunMedia": null, "reactionVideos": [], @@ -351121,7 +350621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 8102154, "featuredRunMedia": null, "reactionVideos": [], @@ -351141,7 +350641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 8103585, "featuredRunMedia": null, "reactionVideos": [], @@ -351161,7 +350661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 8107162, "featuredRunMedia": null, "reactionVideos": [], @@ -351181,7 +350681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8108430, "featuredRunMedia": null, "reactionVideos": [], @@ -351201,7 +350701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 8114127, "featuredRunMedia": null, "reactionVideos": [], @@ -351221,7 +350721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8114798, "featuredRunMedia": null, "reactionVideos": [], @@ -351241,7 +350741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 358, + "teamId": "144428", "time": 8115342, "featuredRunMedia": null, "reactionVideos": [], @@ -351261,7 +350761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8115438, "featuredRunMedia": null, "reactionVideos": [], @@ -351281,7 +350781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "144296", "time": 8115500, "featuredRunMedia": null, "reactionVideos": [], @@ -351301,7 +350801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 8115647, "featuredRunMedia": null, "reactionVideos": [], @@ -351321,7 +350821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 8116132, "featuredRunMedia": null, "reactionVideos": [], @@ -351341,7 +350841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 8116183, "featuredRunMedia": null, "reactionVideos": [], @@ -351361,7 +350861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 8119548, "featuredRunMedia": null, "reactionVideos": [], @@ -351381,7 +350881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8119999, "featuredRunMedia": null, "reactionVideos": [], @@ -351401,7 +350901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8123055, "featuredRunMedia": null, "reactionVideos": [], @@ -351421,7 +350921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 387, + "teamId": "144457", "time": 8123944, "featuredRunMedia": null, "reactionVideos": [], @@ -351441,7 +350941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8125009, "featuredRunMedia": null, "reactionVideos": [], @@ -351461,7 +350961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 8125075, "featuredRunMedia": null, "reactionVideos": [], @@ -351481,7 +350981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 8125817, "featuredRunMedia": null, "reactionVideos": [], @@ -351501,7 +351001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 8125881, "featuredRunMedia": null, "reactionVideos": [], @@ -351521,7 +351021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 8126577, "featuredRunMedia": null, "reactionVideos": [], @@ -351545,7 +351045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 8127624, "featuredRunMedia": null, "reactionVideos": [], @@ -351565,7 +351065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 8127904, "featuredRunMedia": null, "reactionVideos": [], @@ -351585,7 +351085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "144117", "time": 8128900, "featuredRunMedia": null, "reactionVideos": [], @@ -351605,7 +351105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 8129306, "featuredRunMedia": null, "reactionVideos": [], @@ -351625,7 +351125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 8129593, "featuredRunMedia": null, "reactionVideos": [], @@ -351645,7 +351145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8129639, "featuredRunMedia": null, "reactionVideos": [], @@ -351665,7 +351165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8130355, "featuredRunMedia": null, "reactionVideos": [], @@ -351685,7 +351185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "144163", "time": 8130998, "featuredRunMedia": null, "reactionVideos": [], @@ -351705,7 +351205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8131898, "featuredRunMedia": null, "reactionVideos": [], @@ -351725,7 +351225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8133843, "featuredRunMedia": null, "reactionVideos": [], @@ -351745,7 +351245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8134687, "featuredRunMedia": null, "reactionVideos": [], @@ -351765,7 +351265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 8134873, "featuredRunMedia": null, "reactionVideos": [], @@ -351785,7 +351285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 8136148, "featuredRunMedia": null, "reactionVideos": [], @@ -351805,7 +351305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 8136333, "featuredRunMedia": null, "reactionVideos": [], @@ -351825,7 +351325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 8137513, "featuredRunMedia": null, "reactionVideos": [], @@ -351845,7 +351345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "144234", "time": 8138545, "featuredRunMedia": null, "reactionVideos": [], @@ -351865,7 +351365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 8138878, "featuredRunMedia": null, "reactionVideos": [], @@ -351885,7 +351385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 8139717, "featuredRunMedia": null, "reactionVideos": [], @@ -351905,7 +351405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 8140147, "featuredRunMedia": null, "reactionVideos": [], @@ -351925,7 +351425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8140827, "featuredRunMedia": null, "reactionVideos": [], @@ -351945,7 +351445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8142807, "featuredRunMedia": null, "reactionVideos": [], @@ -351965,7 +351465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8144680, "featuredRunMedia": null, "reactionVideos": [], @@ -351985,7 +351485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 8145222, "featuredRunMedia": null, "reactionVideos": [], @@ -352005,7 +351505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 8146211, "featuredRunMedia": null, "reactionVideos": [], @@ -352025,7 +351525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 8146827, "featuredRunMedia": null, "reactionVideos": [], @@ -352045,7 +351545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 8147103, "featuredRunMedia": null, "reactionVideos": [], @@ -352065,7 +351565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 8148675, "featuredRunMedia": null, "reactionVideos": [], @@ -352085,7 +351585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "144160", "time": 8150591, "featuredRunMedia": null, "reactionVideos": [], @@ -352105,7 +351605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 38, + "teamId": "144108", "time": 8152826, "featuredRunMedia": null, "reactionVideos": [], @@ -352125,7 +351625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 8154983, "featuredRunMedia": null, "reactionVideos": [], @@ -352145,7 +351645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 8155432, "featuredRunMedia": null, "reactionVideos": [], @@ -352165,7 +351665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 8156020, "featuredRunMedia": null, "reactionVideos": [], @@ -352185,7 +351685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 8156935, "featuredRunMedia": null, "reactionVideos": [], @@ -352205,7 +351705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 367, + "teamId": "144437", "time": 8158775, "featuredRunMedia": null, "reactionVideos": [], @@ -352225,7 +351725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 8163236, "featuredRunMedia": null, "reactionVideos": [], @@ -352245,7 +351745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 8166258, "featuredRunMedia": null, "reactionVideos": [], @@ -352265,7 +351765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 239, + "teamId": "144309", "time": 8169106, "featuredRunMedia": null, "reactionVideos": [], @@ -352285,7 +351785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 8170189, "featuredRunMedia": null, "reactionVideos": [], @@ -352305,7 +351805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 8170862, "featuredRunMedia": null, "reactionVideos": [], @@ -352325,7 +351825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 389, + "teamId": "144459", "time": 8172527, "featuredRunMedia": null, "reactionVideos": [], @@ -352345,7 +351845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 8173434, "featuredRunMedia": null, "reactionVideos": [], @@ -352365,7 +351865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 8175702, "featuredRunMedia": null, "reactionVideos": [], @@ -352385,7 +351885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 8177542, "featuredRunMedia": null, "reactionVideos": [], @@ -352405,7 +351905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 8182609, "featuredRunMedia": null, "reactionVideos": [], @@ -352425,7 +351925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 8183707, "featuredRunMedia": null, "reactionVideos": [], @@ -352445,7 +351945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 8184688, "featuredRunMedia": null, "reactionVideos": [], @@ -352465,7 +351965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 8192472, "featuredRunMedia": null, "reactionVideos": [], @@ -352485,7 +351985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 8195301, "featuredRunMedia": null, "reactionVideos": [], @@ -352505,7 +352005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 8199456, "featuredRunMedia": null, "reactionVideos": [], @@ -352525,7 +352025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 8199628, "featuredRunMedia": null, "reactionVideos": [], @@ -352545,7 +352045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 8200522, "featuredRunMedia": null, "reactionVideos": [], @@ -352565,7 +352065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 19, + "teamId": "144089", "time": 8205656, "featuredRunMedia": null, "reactionVideos": [], @@ -352585,7 +352085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 8208025, "featuredRunMedia": null, "reactionVideos": [], @@ -352605,7 +352105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 8209098, "featuredRunMedia": null, "reactionVideos": [], @@ -352625,7 +352125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 8210349, "featuredRunMedia": null, "reactionVideos": [], @@ -352645,7 +352145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8210790, "featuredRunMedia": null, "reactionVideos": [], @@ -352665,7 +352165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8211786, "featuredRunMedia": null, "reactionVideos": [], @@ -352685,7 +352185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 8214344, "featuredRunMedia": null, "reactionVideos": [], @@ -352705,7 +352205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8214491, "featuredRunMedia": null, "reactionVideos": [], @@ -352725,7 +352225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 8216126, "featuredRunMedia": null, "reactionVideos": [], @@ -352745,7 +352245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8217345, "featuredRunMedia": null, "reactionVideos": [], @@ -352765,7 +352265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8221308, "featuredRunMedia": null, "reactionVideos": [], @@ -352785,7 +352285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8223547, "featuredRunMedia": null, "reactionVideos": [], @@ -352805,7 +352305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "144155", "time": 8223831, "featuredRunMedia": null, "reactionVideos": [], @@ -352825,7 +352325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 8224583, "featuredRunMedia": null, "reactionVideos": [], @@ -352845,7 +352345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 8225131, "featuredRunMedia": null, "reactionVideos": [], @@ -352865,7 +352365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 8230173, "featuredRunMedia": null, "reactionVideos": [], @@ -352885,7 +352385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 8232533, "featuredRunMedia": null, "reactionVideos": [], @@ -352905,7 +352405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 147, + "teamId": "144217", "time": 8234352, "featuredRunMedia": null, "reactionVideos": [], @@ -352925,7 +352425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 8234941, "featuredRunMedia": null, "reactionVideos": [], @@ -352945,7 +352445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 8235341, "featuredRunMedia": null, "reactionVideos": [], @@ -352965,7 +352465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8235645, "featuredRunMedia": null, "reactionVideos": [], @@ -352985,7 +352485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 8236358, "featuredRunMedia": null, "reactionVideos": [], @@ -353005,7 +352505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 8236505, "featuredRunMedia": null, "reactionVideos": [], @@ -353025,7 +352525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 8237093, "featuredRunMedia": null, "reactionVideos": [], @@ -353045,7 +352545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8237467, "featuredRunMedia": null, "reactionVideos": [], @@ -353065,7 +352565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 8238392, "featuredRunMedia": null, "reactionVideos": [], @@ -353085,7 +352585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 8239931, "featuredRunMedia": null, "reactionVideos": [], @@ -353105,7 +352605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8240816, "featuredRunMedia": null, "reactionVideos": [], @@ -353129,7 +352629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8241930, "featuredRunMedia": null, "reactionVideos": [], @@ -353149,7 +352649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 443, + "teamId": "144513", "time": 8244809, "featuredRunMedia": null, "reactionVideos": [], @@ -353169,7 +352669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 8244871, "featuredRunMedia": null, "reactionVideos": [], @@ -353189,7 +352689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 8245408, "featuredRunMedia": null, "reactionVideos": [], @@ -353209,7 +352709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 8250785, "featuredRunMedia": null, "reactionVideos": [], @@ -353229,7 +352729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 8250838, "featuredRunMedia": null, "reactionVideos": [], @@ -353249,7 +352749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 8251115, "featuredRunMedia": null, "reactionVideos": [], @@ -353269,7 +352769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 8254149, "featuredRunMedia": null, "reactionVideos": [], @@ -353289,7 +352789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 8258998, "featuredRunMedia": null, "reactionVideos": [], @@ -353309,7 +352809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8259167, "featuredRunMedia": null, "reactionVideos": [], @@ -353329,7 +352829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 8259342, "featuredRunMedia": null, "reactionVideos": [], @@ -353349,7 +352849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8260612, "featuredRunMedia": null, "reactionVideos": [], @@ -353369,7 +352869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 8261079, "featuredRunMedia": null, "reactionVideos": [], @@ -353389,7 +352889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "144176", "time": 8262366, "featuredRunMedia": null, "reactionVideos": [], @@ -353409,7 +352909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8262463, "featuredRunMedia": null, "reactionVideos": [], @@ -353429,7 +352929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8263031, "featuredRunMedia": null, "reactionVideos": [], @@ -353449,7 +352949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 8263501, "featuredRunMedia": null, "reactionVideos": [], @@ -353469,7 +352969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 8269701, "featuredRunMedia": null, "reactionVideos": [], @@ -353489,7 +352989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "144399", "time": 8270206, "featuredRunMedia": null, "reactionVideos": [], @@ -353509,7 +353009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 446, + "teamId": "144516", "time": 8271080, "featuredRunMedia": null, "reactionVideos": [], @@ -353529,7 +353029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8271159, "featuredRunMedia": null, "reactionVideos": [], @@ -353549,7 +353049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 8271214, "featuredRunMedia": null, "reactionVideos": [], @@ -353569,7 +353069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 8272592, "featuredRunMedia": null, "reactionVideos": [], @@ -353589,7 +353089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 8273381, "featuredRunMedia": null, "reactionVideos": [], @@ -353609,7 +353109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "144412", "time": 8274804, "featuredRunMedia": null, "reactionVideos": [], @@ -353629,7 +353129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 8276350, "featuredRunMedia": null, "reactionVideos": [], @@ -353649,7 +353149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 8276677, "featuredRunMedia": null, "reactionVideos": [], @@ -353669,7 +353169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8278883, "featuredRunMedia": null, "reactionVideos": [], @@ -353689,7 +353189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 8280222, "featuredRunMedia": null, "reactionVideos": [], @@ -353709,7 +353209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 8280490, "featuredRunMedia": null, "reactionVideos": [], @@ -353729,7 +353229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 8281316, "featuredRunMedia": null, "reactionVideos": [], @@ -353749,7 +353249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8281818, "featuredRunMedia": null, "reactionVideos": [], @@ -353769,7 +353269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 8282040, "featuredRunMedia": null, "reactionVideos": [], @@ -353789,7 +353289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 8283268, "featuredRunMedia": null, "reactionVideos": [], @@ -353809,7 +353309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 8285048, "featuredRunMedia": null, "reactionVideos": [], @@ -353829,7 +353329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 8285559, "featuredRunMedia": null, "reactionVideos": [], @@ -353849,7 +353349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 8285928, "featuredRunMedia": null, "reactionVideos": [], @@ -353869,7 +353369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8287797, "featuredRunMedia": null, "reactionVideos": [], @@ -353889,7 +353389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8288214, "featuredRunMedia": null, "reactionVideos": [], @@ -353909,7 +353409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 8289241, "featuredRunMedia": null, "reactionVideos": [], @@ -353929,7 +353429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 8291436, "featuredRunMedia": null, "reactionVideos": [], @@ -353949,7 +353449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 8291556, "featuredRunMedia": null, "reactionVideos": [], @@ -353969,7 +353469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 8291986, "featuredRunMedia": null, "reactionVideos": [], @@ -353989,7 +353489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 8292379, "featuredRunMedia": null, "reactionVideos": [], @@ -354009,7 +353509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 8293397, "featuredRunMedia": null, "reactionVideos": [], @@ -354029,7 +353529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 8293464, "featuredRunMedia": null, "reactionVideos": [], @@ -354049,7 +353549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 8293539, "featuredRunMedia": null, "reactionVideos": [], @@ -354069,7 +353569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 8294324, "featuredRunMedia": null, "reactionVideos": [], @@ -354089,7 +353589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "144308", "time": 8295138, "featuredRunMedia": null, "reactionVideos": [], @@ -354109,7 +353609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 8296949, "featuredRunMedia": null, "reactionVideos": [], @@ -354129,7 +353629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 8297759, "featuredRunMedia": null, "reactionVideos": [], @@ -354153,7 +353653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 8299629, "featuredRunMedia": null, "reactionVideos": [], @@ -354173,7 +353673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 8299680, "featuredRunMedia": null, "reactionVideos": [], @@ -354193,7 +353693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "144229", "time": 8300886, "featuredRunMedia": null, "reactionVideos": [], @@ -354213,7 +353713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 8301840, "featuredRunMedia": null, "reactionVideos": [], @@ -354233,7 +353733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "144286", "time": 8305267, "featuredRunMedia": null, "reactionVideos": [], @@ -354253,7 +353753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8307483, "featuredRunMedia": null, "reactionVideos": [], @@ -354273,7 +353773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8308002, "featuredRunMedia": null, "reactionVideos": [], @@ -354297,7 +353797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 8309441, "featuredRunMedia": null, "reactionVideos": [], @@ -354317,7 +353817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8309486, "featuredRunMedia": null, "reactionVideos": [], @@ -354337,7 +353837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 8310110, "featuredRunMedia": null, "reactionVideos": [], @@ -354357,7 +353857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8311174, "featuredRunMedia": null, "reactionVideos": [], @@ -354377,7 +353877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 402, + "teamId": "144472", "time": 8314130, "featuredRunMedia": null, "reactionVideos": [], @@ -354397,7 +353897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "144124", "time": 8315353, "featuredRunMedia": null, "reactionVideos": [], @@ -354417,7 +353917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 8315882, "featuredRunMedia": null, "reactionVideos": [], @@ -354437,7 +353937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 8317292, "featuredRunMedia": null, "reactionVideos": [], @@ -354457,7 +353957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 8323302, "featuredRunMedia": null, "reactionVideos": [], @@ -354477,7 +353977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 8323627, "featuredRunMedia": null, "reactionVideos": [], @@ -354497,7 +353997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "144150", "time": 8323803, "featuredRunMedia": null, "reactionVideos": [], @@ -354517,7 +354017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8325888, "featuredRunMedia": null, "reactionVideos": [], @@ -354537,7 +354037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 8327337, "featuredRunMedia": null, "reactionVideos": [], @@ -354557,7 +354057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 8327404, "featuredRunMedia": null, "reactionVideos": [], @@ -354577,7 +354077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8327634, "featuredRunMedia": null, "reactionVideos": [], @@ -354597,7 +354097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8329548, "featuredRunMedia": null, "reactionVideos": [], @@ -354617,7 +354117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8331820, "featuredRunMedia": null, "reactionVideos": [], @@ -354637,7 +354137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 8332395, "featuredRunMedia": null, "reactionVideos": [], @@ -354657,7 +354157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 8335551, "featuredRunMedia": null, "reactionVideos": [], @@ -354677,7 +354177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 8335916, "featuredRunMedia": null, "reactionVideos": [], @@ -354697,7 +354197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 8339029, "featuredRunMedia": null, "reactionVideos": [], @@ -354717,7 +354217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8339734, "featuredRunMedia": null, "reactionVideos": [], @@ -354737,7 +354237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 8340093, "featuredRunMedia": null, "reactionVideos": [], @@ -354757,7 +354257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 8340273, "featuredRunMedia": null, "reactionVideos": [], @@ -354777,7 +354277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 8343370, "featuredRunMedia": null, "reactionVideos": [], @@ -354797,7 +354297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 8343720, "featuredRunMedia": null, "reactionVideos": [], @@ -354817,7 +354317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8344588, "featuredRunMedia": null, "reactionVideos": [], @@ -354837,7 +354337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 8344883, "featuredRunMedia": null, "reactionVideos": [], @@ -354857,7 +354357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8346756, "featuredRunMedia": null, "reactionVideos": [], @@ -354877,7 +354377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8351620, "featuredRunMedia": null, "reactionVideos": [], @@ -354897,7 +354397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8351877, "featuredRunMedia": null, "reactionVideos": [], @@ -354917,7 +354417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8352909, "featuredRunMedia": null, "reactionVideos": [], @@ -354937,7 +354437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 8353061, "featuredRunMedia": null, "reactionVideos": [], @@ -354957,7 +354457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 8353245, "featuredRunMedia": null, "reactionVideos": [], @@ -354977,7 +354477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 8355051, "featuredRunMedia": null, "reactionVideos": [], @@ -354997,7 +354497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8355551, "featuredRunMedia": null, "reactionVideos": [], @@ -355017,7 +354517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 8355885, "featuredRunMedia": null, "reactionVideos": [], @@ -355037,7 +354537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 8356474, "featuredRunMedia": null, "reactionVideos": [], @@ -355057,7 +354557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8359203, "featuredRunMedia": null, "reactionVideos": [], @@ -355077,7 +354577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 8359745, "featuredRunMedia": null, "reactionVideos": [], @@ -355097,7 +354597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 8359970, "featuredRunMedia": null, "reactionVideos": [], @@ -355117,7 +354617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 8360014, "featuredRunMedia": null, "reactionVideos": [], @@ -355141,7 +354641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 8362281, "featuredRunMedia": null, "reactionVideos": [], @@ -355161,7 +354661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8362464, "featuredRunMedia": null, "reactionVideos": [], @@ -355181,7 +354681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 126, + "teamId": "144196", "time": 8364538, "featuredRunMedia": null, "reactionVideos": [], @@ -355201,7 +354701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8366664, "featuredRunMedia": null, "reactionVideos": [], @@ -355221,7 +354721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 8371670, "featuredRunMedia": null, "reactionVideos": [], @@ -355241,7 +354741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 8373693, "featuredRunMedia": null, "reactionVideos": [], @@ -355261,7 +354761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 8374201, "featuredRunMedia": null, "reactionVideos": [], @@ -355281,7 +354781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8379854, "featuredRunMedia": null, "reactionVideos": [], @@ -355301,7 +354801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8381175, "featuredRunMedia": null, "reactionVideos": [], @@ -355321,7 +354821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "144260", "time": 8381220, "featuredRunMedia": null, "reactionVideos": [], @@ -355341,7 +354841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8381667, "featuredRunMedia": null, "reactionVideos": [], @@ -355361,7 +354861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8381735, "featuredRunMedia": null, "reactionVideos": [], @@ -355381,7 +354881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 8383008, "featuredRunMedia": null, "reactionVideos": [], @@ -355401,7 +354901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 8384696, "featuredRunMedia": null, "reactionVideos": [], @@ -355421,7 +354921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 8385633, "featuredRunMedia": null, "reactionVideos": [], @@ -355441,7 +354941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 153, + "teamId": "144223", "time": 8387526, "featuredRunMedia": null, "reactionVideos": [], @@ -355461,7 +354961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8389197, "featuredRunMedia": null, "reactionVideos": [], @@ -355481,7 +354981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8390038, "featuredRunMedia": null, "reactionVideos": [], @@ -355501,7 +355001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8391082, "featuredRunMedia": null, "reactionVideos": [], @@ -355521,7 +355021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 8391149, "featuredRunMedia": null, "reactionVideos": [], @@ -355541,7 +355041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 8393297, "featuredRunMedia": null, "reactionVideos": [], @@ -355561,7 +355061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8397369, "featuredRunMedia": null, "reactionVideos": [], @@ -355581,7 +355081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8397462, "featuredRunMedia": null, "reactionVideos": [], @@ -355601,7 +355101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "144344", "time": 8399870, "featuredRunMedia": null, "reactionVideos": [], @@ -355621,7 +355121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 8400401, "featuredRunMedia": null, "reactionVideos": [], @@ -355641,7 +355141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 8401659, "featuredRunMedia": null, "reactionVideos": [], @@ -355661,7 +355161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 8404327, "featuredRunMedia": null, "reactionVideos": [], @@ -355681,7 +355181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "144153", "time": 8404474, "featuredRunMedia": null, "reactionVideos": [], @@ -355701,7 +355201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 8407874, "featuredRunMedia": null, "reactionVideos": [], @@ -355721,7 +355221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 8409873, "featuredRunMedia": null, "reactionVideos": [], @@ -355741,7 +355241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 8410251, "featuredRunMedia": null, "reactionVideos": [], @@ -355761,7 +355261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8410856, "featuredRunMedia": null, "reactionVideos": [], @@ -355781,7 +355281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 8411462, "featuredRunMedia": null, "reactionVideos": [], @@ -355801,7 +355301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 8412775, "featuredRunMedia": null, "reactionVideos": [], @@ -355821,7 +355321,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8415827, "featuredRunMedia": null, "reactionVideos": [], @@ -355841,7 +355341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8417268, "featuredRunMedia": null, "reactionVideos": [], @@ -355861,7 +355361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 8418313, "featuredRunMedia": null, "reactionVideos": [], @@ -355881,7 +355381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 8418661, "featuredRunMedia": null, "reactionVideos": [], @@ -355901,7 +355401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 8418953, "featuredRunMedia": null, "reactionVideos": [], @@ -355921,7 +355421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 8421815, "featuredRunMedia": null, "reactionVideos": [], @@ -355945,7 +355445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 8421948, "featuredRunMedia": null, "reactionVideos": [], @@ -355965,7 +355465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 8422456, "featuredRunMedia": null, "reactionVideos": [], @@ -355985,7 +355485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8426929, "featuredRunMedia": null, "reactionVideos": [], @@ -356005,7 +355505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 8427027, "featuredRunMedia": null, "reactionVideos": [], @@ -356029,7 +355529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8428615, "featuredRunMedia": null, "reactionVideos": [], @@ -356049,7 +355549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8429395, "featuredRunMedia": null, "reactionVideos": [], @@ -356069,7 +355569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 8431603, "featuredRunMedia": null, "reactionVideos": [], @@ -356089,7 +355589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8434153, "featuredRunMedia": null, "reactionVideos": [], @@ -356109,7 +355609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8435960, "featuredRunMedia": null, "reactionVideos": [], @@ -356129,7 +355629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8437071, "featuredRunMedia": null, "reactionVideos": [], @@ -356149,7 +355649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 239, + "teamId": "144309", "time": 8437506, "featuredRunMedia": null, "reactionVideos": [], @@ -356169,7 +355669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 8437657, "featuredRunMedia": null, "reactionVideos": [], @@ -356189,7 +355689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 8439005, "featuredRunMedia": null, "reactionVideos": [], @@ -356209,7 +355709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8439181, "featuredRunMedia": null, "reactionVideos": [], @@ -356229,7 +355729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 8439540, "featuredRunMedia": null, "reactionVideos": [], @@ -356249,7 +355749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 8440322, "featuredRunMedia": null, "reactionVideos": [], @@ -356269,7 +355769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 8440549, "featuredRunMedia": null, "reactionVideos": [], @@ -356289,7 +355789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8442600, "featuredRunMedia": null, "reactionVideos": [], @@ -356309,7 +355809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "144357", "time": 8442882, "featuredRunMedia": null, "reactionVideos": [], @@ -356329,7 +355829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 8443024, "featuredRunMedia": null, "reactionVideos": [], @@ -356349,7 +355849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 8443100, "featuredRunMedia": null, "reactionVideos": [], @@ -356369,7 +355869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 8445789, "featuredRunMedia": null, "reactionVideos": [], @@ -356389,7 +355889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "144148", "time": 8450302, "featuredRunMedia": null, "reactionVideos": [], @@ -356409,7 +355909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 371, + "teamId": "144441", "time": 8452332, "featuredRunMedia": null, "reactionVideos": [], @@ -356429,7 +355929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 8452996, "featuredRunMedia": null, "reactionVideos": [], @@ -356449,7 +355949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 446, + "teamId": "144516", "time": 8454839, "featuredRunMedia": null, "reactionVideos": [], @@ -356469,7 +355969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 8455309, "featuredRunMedia": null, "reactionVideos": [], @@ -356489,7 +355989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8455774, "featuredRunMedia": null, "reactionVideos": [], @@ -356509,7 +356009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 8457132, "featuredRunMedia": null, "reactionVideos": [], @@ -356529,7 +356029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 8457240, "featuredRunMedia": null, "reactionVideos": [], @@ -356549,7 +356049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 8458046, "featuredRunMedia": null, "reactionVideos": [], @@ -356569,7 +356069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 8459531, "featuredRunMedia": null, "reactionVideos": [], @@ -356593,7 +356093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8459587, "featuredRunMedia": null, "reactionVideos": [], @@ -356613,7 +356113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 8461985, "featuredRunMedia": null, "reactionVideos": [], @@ -356633,7 +356133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8463216, "featuredRunMedia": null, "reactionVideos": [], @@ -356653,7 +356153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8463864, "featuredRunMedia": null, "reactionVideos": [], @@ -356673,7 +356173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8466080, "featuredRunMedia": null, "reactionVideos": [], @@ -356693,7 +356193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8469778, "featuredRunMedia": null, "reactionVideos": [], @@ -356713,7 +356213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 8469818, "featuredRunMedia": null, "reactionVideos": [], @@ -356733,7 +356233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 8471089, "featuredRunMedia": null, "reactionVideos": [], @@ -356753,7 +356253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 8471649, "featuredRunMedia": null, "reactionVideos": [], @@ -356773,7 +356273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 8471743, "featuredRunMedia": null, "reactionVideos": [], @@ -356793,7 +356293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 8473441, "featuredRunMedia": null, "reactionVideos": [], @@ -356813,7 +356313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 8474716, "featuredRunMedia": null, "reactionVideos": [], @@ -356833,7 +356333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 8477381, "featuredRunMedia": null, "reactionVideos": [], @@ -356853,7 +356353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 8479058, "featuredRunMedia": null, "reactionVideos": [], @@ -356873,7 +356373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 8480313, "featuredRunMedia": null, "reactionVideos": [], @@ -356893,7 +356393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 8482117, "featuredRunMedia": null, "reactionVideos": [], @@ -356913,7 +356413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 8482691, "featuredRunMedia": null, "reactionVideos": [], @@ -356933,7 +356433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 8483243, "featuredRunMedia": null, "reactionVideos": [], @@ -356953,7 +356453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 8483649, "featuredRunMedia": null, "reactionVideos": [], @@ -356973,7 +356473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8485158, "featuredRunMedia": null, "reactionVideos": [], @@ -356993,7 +356493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8485543, "featuredRunMedia": null, "reactionVideos": [], @@ -357013,7 +356513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 8485865, "featuredRunMedia": null, "reactionVideos": [], @@ -357033,7 +356533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 8486482, "featuredRunMedia": null, "reactionVideos": [], @@ -357053,7 +356553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "144372", "time": 8487927, "featuredRunMedia": null, "reactionVideos": [], @@ -357073,7 +356573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 8489874, "featuredRunMedia": null, "reactionVideos": [], @@ -357093,7 +356593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 8490985, "featuredRunMedia": null, "reactionVideos": [], @@ -357113,7 +356613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 8491971, "featuredRunMedia": null, "reactionVideos": [], @@ -357133,7 +356633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "144242", "time": 8495387, "featuredRunMedia": null, "reactionVideos": [], @@ -357153,7 +356653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8495529, "featuredRunMedia": null, "reactionVideos": [], @@ -357173,7 +356673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 8496190, "featuredRunMedia": null, "reactionVideos": [], @@ -357193,7 +356693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 8496813, "featuredRunMedia": null, "reactionVideos": [], @@ -357213,7 +356713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 8500029, "featuredRunMedia": null, "reactionVideos": [], @@ -357233,7 +356733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 8502043, "featuredRunMedia": null, "reactionVideos": [], @@ -357253,7 +356753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 8504343, "featuredRunMedia": null, "reactionVideos": [], @@ -357273,7 +356773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 8504558, "featuredRunMedia": null, "reactionVideos": [], @@ -357293,7 +356793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 8504624, "featuredRunMedia": null, "reactionVideos": [], @@ -357313,7 +356813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 8505476, "featuredRunMedia": null, "reactionVideos": [], @@ -357333,7 +356833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 427, + "teamId": "144497", "time": 8505987, "featuredRunMedia": null, "reactionVideos": [], @@ -357353,7 +356853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 8506522, "featuredRunMedia": null, "reactionVideos": [], @@ -357373,7 +356873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8507440, "featuredRunMedia": null, "reactionVideos": [], @@ -357393,7 +356893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 8507689, "featuredRunMedia": null, "reactionVideos": [], @@ -357413,7 +356913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 337, + "teamId": "144407", "time": 8509425, "featuredRunMedia": null, "reactionVideos": [], @@ -357433,7 +356933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 8509684, "featuredRunMedia": null, "reactionVideos": [], @@ -357453,7 +356953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 8511284, "featuredRunMedia": null, "reactionVideos": [], @@ -357473,7 +356973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8511383, "featuredRunMedia": null, "reactionVideos": [], @@ -357493,7 +356993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 8514467, "featuredRunMedia": null, "reactionVideos": [], @@ -357513,7 +357013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 8514801, "featuredRunMedia": null, "reactionVideos": [], @@ -357533,7 +357033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 8515579, "featuredRunMedia": null, "reactionVideos": [], @@ -357553,7 +357053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 8516064, "featuredRunMedia": null, "reactionVideos": [], @@ -357573,7 +357073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 8518173, "featuredRunMedia": null, "reactionVideos": [], @@ -357593,7 +357093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 8518826, "featuredRunMedia": null, "reactionVideos": [], @@ -357613,7 +357113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8521946, "featuredRunMedia": null, "reactionVideos": [], @@ -357633,7 +357133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8524992, "featuredRunMedia": null, "reactionVideos": [], @@ -357653,7 +357153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 8527627, "featuredRunMedia": null, "reactionVideos": [], @@ -357673,7 +357173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 8529702, "featuredRunMedia": null, "reactionVideos": [], @@ -357693,7 +357193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 8533974, "featuredRunMedia": null, "reactionVideos": [], @@ -357713,7 +357213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8536040, "featuredRunMedia": null, "reactionVideos": [], @@ -357733,7 +357233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 8536241, "featuredRunMedia": null, "reactionVideos": [], @@ -357753,7 +357253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 8536374, "featuredRunMedia": null, "reactionVideos": [], @@ -357773,7 +357273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 8540821, "featuredRunMedia": null, "reactionVideos": [], @@ -357793,7 +357293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "144239", "time": 8541560, "featuredRunMedia": null, "reactionVideos": [], @@ -357813,7 +357313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 8542091, "featuredRunMedia": null, "reactionVideos": [], @@ -357833,7 +357333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8542340, "featuredRunMedia": null, "reactionVideos": [], @@ -357853,7 +357353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 8542602, "featuredRunMedia": null, "reactionVideos": [], @@ -357873,7 +357373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8542850, "featuredRunMedia": null, "reactionVideos": [], @@ -357893,7 +357393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 8543210, "featuredRunMedia": null, "reactionVideos": [], @@ -357913,7 +357413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 8543363, "featuredRunMedia": null, "reactionVideos": [], @@ -357933,7 +357433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 8543631, "featuredRunMedia": null, "reactionVideos": [], @@ -357953,7 +357453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 8544402, "featuredRunMedia": null, "reactionVideos": [], @@ -357973,7 +357473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 8544667, "featuredRunMedia": null, "reactionVideos": [], @@ -357993,7 +357493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 8546942, "featuredRunMedia": null, "reactionVideos": [], @@ -358013,7 +357513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8547739, "featuredRunMedia": null, "reactionVideos": [], @@ -358037,7 +357537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8548042, "featuredRunMedia": null, "reactionVideos": [], @@ -358057,7 +357557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 8550322, "featuredRunMedia": null, "reactionVideos": [], @@ -358077,7 +357577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8552433, "featuredRunMedia": null, "reactionVideos": [], @@ -358101,7 +357601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 8554406, "featuredRunMedia": null, "reactionVideos": [], @@ -358121,7 +357621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8554982, "featuredRunMedia": null, "reactionVideos": [], @@ -358141,7 +357641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 8555467, "featuredRunMedia": null, "reactionVideos": [], @@ -358161,7 +357661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 8555517, "featuredRunMedia": null, "reactionVideos": [], @@ -358181,7 +357681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 8555842, "featuredRunMedia": null, "reactionVideos": [], @@ -358201,7 +357701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 8556897, "featuredRunMedia": null, "reactionVideos": [], @@ -358225,7 +357725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8557744, "featuredRunMedia": null, "reactionVideos": [], @@ -358249,7 +357749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 8557913, "featuredRunMedia": null, "reactionVideos": [], @@ -358269,7 +357769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 8558095, "featuredRunMedia": null, "reactionVideos": [], @@ -358289,7 +357789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 8558312, "featuredRunMedia": null, "reactionVideos": [], @@ -358309,7 +357809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 431, + "teamId": "144501", "time": 8558476, "featuredRunMedia": null, "reactionVideos": [], @@ -358329,7 +357829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 8560099, "featuredRunMedia": null, "reactionVideos": [], @@ -358349,7 +357849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 8560150, "featuredRunMedia": null, "reactionVideos": [], @@ -358369,7 +357869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 285, + "teamId": "144355", "time": 8560744, "featuredRunMedia": null, "reactionVideos": [], @@ -358389,7 +357889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 8560828, "featuredRunMedia": null, "reactionVideos": [], @@ -358409,7 +357909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 8561221, "featuredRunMedia": null, "reactionVideos": [], @@ -358429,7 +357929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 8561843, "featuredRunMedia": null, "reactionVideos": [], @@ -358449,7 +357949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8562352, "featuredRunMedia": null, "reactionVideos": [], @@ -358469,7 +357969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 8562832, "featuredRunMedia": null, "reactionVideos": [], @@ -358493,7 +357993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 8563289, "featuredRunMedia": null, "reactionVideos": [], @@ -358513,7 +358013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 8563544, "featuredRunMedia": null, "reactionVideos": [], @@ -358533,7 +358033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 8564978, "featuredRunMedia": null, "reactionVideos": [], @@ -358553,7 +358053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 8566283, "featuredRunMedia": null, "reactionVideos": [], @@ -358573,7 +358073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "144214", "time": 8568969, "featuredRunMedia": null, "reactionVideos": [], @@ -358593,7 +358093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 8569834, "featuredRunMedia": null, "reactionVideos": [], @@ -358613,7 +358113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 8571273, "featuredRunMedia": null, "reactionVideos": [], @@ -358633,7 +358133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 8572314, "featuredRunMedia": null, "reactionVideos": [], @@ -358653,7 +358153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8573581, "featuredRunMedia": null, "reactionVideos": [], @@ -358673,7 +358173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 8573630, "featuredRunMedia": null, "reactionVideos": [], @@ -358693,7 +358193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 8577002, "featuredRunMedia": null, "reactionVideos": [], @@ -358713,7 +358213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 8577196, "featuredRunMedia": null, "reactionVideos": [], @@ -358733,7 +358233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "144251", "time": 8577252, "featuredRunMedia": null, "reactionVideos": [], @@ -358753,7 +358253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 8577764, "featuredRunMedia": null, "reactionVideos": [], @@ -358773,7 +358273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 8578886, "featuredRunMedia": null, "reactionVideos": [], @@ -358793,7 +358293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 8580516, "featuredRunMedia": null, "reactionVideos": [], @@ -358813,7 +358313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "144228", "time": 8582432, "featuredRunMedia": null, "reactionVideos": [], @@ -358833,7 +358333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 8583378, "featuredRunMedia": null, "reactionVideos": [], @@ -358853,7 +358353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8585270, "featuredRunMedia": null, "reactionVideos": [], @@ -358873,7 +358373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 8585808, "featuredRunMedia": null, "reactionVideos": [], @@ -358893,7 +358393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8585978, "featuredRunMedia": null, "reactionVideos": [], @@ -358913,7 +358413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "144260", "time": 8586582, "featuredRunMedia": null, "reactionVideos": [], @@ -358933,7 +358433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 8588028, "featuredRunMedia": null, "reactionVideos": [], @@ -358953,7 +358453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 8589162, "featuredRunMedia": null, "reactionVideos": [], @@ -358973,7 +358473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 229, + "teamId": "144299", "time": 8589838, "featuredRunMedia": null, "reactionVideos": [], @@ -358993,7 +358493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 8593449, "featuredRunMedia": null, "reactionVideos": [], @@ -359013,7 +358513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8597235, "featuredRunMedia": null, "reactionVideos": [], @@ -359033,7 +358533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 8598088, "featuredRunMedia": null, "reactionVideos": [], @@ -359053,7 +358553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 8598710, "featuredRunMedia": null, "reactionVideos": [], @@ -359073,7 +358573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 8600088, "featuredRunMedia": null, "reactionVideos": [], @@ -359093,7 +358593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "144170", "time": 8604347, "featuredRunMedia": null, "reactionVideos": [], @@ -359113,7 +358613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "144336", "time": 8604811, "featuredRunMedia": null, "reactionVideos": [], @@ -359133,7 +358633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 8607617, "featuredRunMedia": null, "reactionVideos": [], @@ -359153,7 +358653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8607975, "featuredRunMedia": null, "reactionVideos": [], @@ -359173,7 +358673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 8609694, "featuredRunMedia": null, "reactionVideos": [], @@ -359193,7 +358693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 354, + "teamId": "144424", "time": 8612170, "featuredRunMedia": null, "reactionVideos": [], @@ -359213,7 +358713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 8617705, "featuredRunMedia": null, "reactionVideos": [], @@ -359233,7 +358733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 8617754, "featuredRunMedia": null, "reactionVideos": [], @@ -359253,7 +358753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "144092", "time": 8617873, "featuredRunMedia": null, "reactionVideos": [], @@ -359273,7 +358773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8617965, "featuredRunMedia": null, "reactionVideos": [], @@ -359293,7 +358793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 8619277, "featuredRunMedia": null, "reactionVideos": [], @@ -359313,7 +358813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 8620499, "featuredRunMedia": null, "reactionVideos": [], @@ -359333,7 +358833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 8621460, "featuredRunMedia": null, "reactionVideos": [], @@ -359353,7 +358853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 8625955, "featuredRunMedia": null, "reactionVideos": [], @@ -359373,7 +358873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 8628566, "featuredRunMedia": null, "reactionVideos": [], @@ -359393,7 +358893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 8629172, "featuredRunMedia": null, "reactionVideos": [], @@ -359413,7 +358913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 8630865, "featuredRunMedia": null, "reactionVideos": [], @@ -359433,7 +358933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8631493, "featuredRunMedia": null, "reactionVideos": [], @@ -359453,7 +358953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "144229", "time": 8632176, "featuredRunMedia": null, "reactionVideos": [], @@ -359473,7 +358973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 8632819, "featuredRunMedia": null, "reactionVideos": [], @@ -359493,7 +358993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "144117", "time": 8635795, "featuredRunMedia": null, "reactionVideos": [], @@ -359513,7 +359013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "144107", "time": 8635892, "featuredRunMedia": null, "reactionVideos": [], @@ -359533,7 +359033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 8637651, "featuredRunMedia": null, "reactionVideos": [], @@ -359553,7 +359053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 8638612, "featuredRunMedia": null, "reactionVideos": [], @@ -359573,7 +359073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 8640219, "featuredRunMedia": null, "reactionVideos": [], @@ -359593,7 +359093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 8641781, "featuredRunMedia": null, "reactionVideos": [], @@ -359613,7 +359113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 8642244, "featuredRunMedia": null, "reactionVideos": [], @@ -359633,7 +359133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 8644891, "featuredRunMedia": null, "reactionVideos": [], @@ -359653,7 +359153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8647314, "featuredRunMedia": null, "reactionVideos": [], @@ -359673,7 +359173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 444, + "teamId": "144514", "time": 8652738, "featuredRunMedia": null, "reactionVideos": [], @@ -359693,7 +359193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "144159", "time": 8652990, "featuredRunMedia": null, "reactionVideos": [], @@ -359713,7 +359213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 8653053, "featuredRunMedia": null, "reactionVideos": [], @@ -359733,7 +359233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 8653973, "featuredRunMedia": null, "reactionVideos": [], @@ -359753,7 +359253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8654633, "featuredRunMedia": null, "reactionVideos": [], @@ -359773,7 +359273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8655890, "featuredRunMedia": null, "reactionVideos": [], @@ -359793,7 +359293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 8657246, "featuredRunMedia": null, "reactionVideos": [], @@ -359813,7 +359313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 8657425, "featuredRunMedia": null, "reactionVideos": [], @@ -359833,7 +359333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8657640, "featuredRunMedia": null, "reactionVideos": [], @@ -359853,7 +359353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8663012, "featuredRunMedia": null, "reactionVideos": [], @@ -359873,7 +359373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 8663138, "featuredRunMedia": null, "reactionVideos": [], @@ -359893,7 +359393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 8663250, "featuredRunMedia": null, "reactionVideos": [], @@ -359913,7 +359413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 8663661, "featuredRunMedia": null, "reactionVideos": [], @@ -359933,7 +359433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8663950, "featuredRunMedia": null, "reactionVideos": [], @@ -359953,7 +359453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 8665388, "featuredRunMedia": null, "reactionVideos": [], @@ -359973,7 +359473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 8665792, "featuredRunMedia": null, "reactionVideos": [], @@ -359993,7 +359493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 8667717, "featuredRunMedia": null, "reactionVideos": [], @@ -360013,7 +359513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8668067, "featuredRunMedia": null, "reactionVideos": [], @@ -360033,7 +359533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8669137, "featuredRunMedia": null, "reactionVideos": [], @@ -360057,7 +359557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "144230", "time": 8669348, "featuredRunMedia": null, "reactionVideos": [], @@ -360077,7 +359577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 8670451, "featuredRunMedia": null, "reactionVideos": [], @@ -360101,7 +359601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 8670992, "featuredRunMedia": null, "reactionVideos": [], @@ -360121,7 +359621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 289, + "teamId": "144359", "time": 8671064, "featuredRunMedia": null, "reactionVideos": [], @@ -360141,7 +359641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 8672553, "featuredRunMedia": null, "reactionVideos": [], @@ -360161,7 +359661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 8674954, "featuredRunMedia": null, "reactionVideos": [], @@ -360181,7 +359681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 8676387, "featuredRunMedia": null, "reactionVideos": [], @@ -360201,7 +359701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 8676451, "featuredRunMedia": null, "reactionVideos": [], @@ -360221,7 +359721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 8677131, "featuredRunMedia": null, "reactionVideos": [], @@ -360241,7 +359741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 8677341, "featuredRunMedia": null, "reactionVideos": [], @@ -360261,7 +359761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8677528, "featuredRunMedia": null, "reactionVideos": [], @@ -360281,7 +359781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 8681950, "featuredRunMedia": null, "reactionVideos": [], @@ -360305,7 +359805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8683118, "featuredRunMedia": null, "reactionVideos": [], @@ -360325,7 +359825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 8683485, "featuredRunMedia": null, "reactionVideos": [], @@ -360345,7 +359845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 8683710, "featuredRunMedia": null, "reactionVideos": [], @@ -360365,7 +359865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 8684318, "featuredRunMedia": null, "reactionVideos": [], @@ -360385,7 +359885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 8684521, "featuredRunMedia": null, "reactionVideos": [], @@ -360405,7 +359905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "144104", "time": 8686241, "featuredRunMedia": null, "reactionVideos": [], @@ -360425,7 +359925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8688564, "featuredRunMedia": null, "reactionVideos": [], @@ -360445,7 +359945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 8690230, "featuredRunMedia": null, "reactionVideos": [], @@ -360465,7 +359965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8690705, "featuredRunMedia": null, "reactionVideos": [], @@ -360485,7 +359985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 8691631, "featuredRunMedia": null, "reactionVideos": [], @@ -360505,7 +360005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 8692895, "featuredRunMedia": null, "reactionVideos": [], @@ -360525,7 +360025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 8692947, "featuredRunMedia": null, "reactionVideos": [], @@ -360545,7 +360045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 8693892, "featuredRunMedia": null, "reactionVideos": [], @@ -360565,7 +360065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 8694180, "featuredRunMedia": null, "reactionVideos": [], @@ -360585,7 +360085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8694223, "featuredRunMedia": null, "reactionVideos": [], @@ -360605,7 +360105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 8694566, "featuredRunMedia": null, "reactionVideos": [], @@ -360625,7 +360125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 8695112, "featuredRunMedia": null, "reactionVideos": [], @@ -360645,7 +360145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 8696431, "featuredRunMedia": null, "reactionVideos": [], @@ -360665,7 +360165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 8696494, "featuredRunMedia": null, "reactionVideos": [], @@ -360685,7 +360185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 8696789, "featuredRunMedia": null, "reactionVideos": [], @@ -360705,7 +360205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8699999, "featuredRunMedia": null, "reactionVideos": [], @@ -360725,7 +360225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 8700218, "featuredRunMedia": null, "reactionVideos": [], @@ -360745,7 +360245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 8701826, "featuredRunMedia": null, "reactionVideos": [], @@ -360765,7 +360265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8702637, "featuredRunMedia": null, "reactionVideos": [], @@ -360785,7 +360285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "144382", "time": 8703737, "featuredRunMedia": null, "reactionVideos": [], @@ -360805,7 +360305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 8704720, "featuredRunMedia": null, "reactionVideos": [], @@ -360825,7 +360325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "144111", "time": 8704925, "featuredRunMedia": null, "reactionVideos": [], @@ -360845,7 +360345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 8706660, "featuredRunMedia": null, "reactionVideos": [], @@ -360865,7 +360365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 354, + "teamId": "144424", "time": 8706760, "featuredRunMedia": null, "reactionVideos": [], @@ -360885,7 +360385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8708004, "featuredRunMedia": null, "reactionVideos": [], @@ -360905,7 +360405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 8709069, "featuredRunMedia": null, "reactionVideos": [], @@ -360925,7 +360425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 8710096, "featuredRunMedia": null, "reactionVideos": [], @@ -360945,7 +360445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 8711114, "featuredRunMedia": null, "reactionVideos": [], @@ -360965,7 +360465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 8712842, "featuredRunMedia": null, "reactionVideos": [], @@ -360985,7 +360485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8716122, "featuredRunMedia": null, "reactionVideos": [], @@ -361005,7 +360505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 8717576, "featuredRunMedia": null, "reactionVideos": [], @@ -361025,7 +360525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 8718809, "featuredRunMedia": null, "reactionVideos": [], @@ -361045,7 +360545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 8719435, "featuredRunMedia": null, "reactionVideos": [], @@ -361065,7 +360565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8721758, "featuredRunMedia": null, "reactionVideos": [], @@ -361085,7 +360585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8722123, "featuredRunMedia": null, "reactionVideos": [], @@ -361105,7 +360605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8722708, "featuredRunMedia": null, "reactionVideos": [], @@ -361125,7 +360625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 8723025, "featuredRunMedia": null, "reactionVideos": [], @@ -361145,7 +360645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 8728781, "featuredRunMedia": null, "reactionVideos": [], @@ -361165,7 +360665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8729512, "featuredRunMedia": null, "reactionVideos": [], @@ -361185,7 +360685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 8729765, "featuredRunMedia": null, "reactionVideos": [], @@ -361205,7 +360705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8730140, "featuredRunMedia": null, "reactionVideos": [], @@ -361225,7 +360725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 8730570, "featuredRunMedia": null, "reactionVideos": [], @@ -361245,7 +360745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 8734259, "featuredRunMedia": null, "reactionVideos": [], @@ -361265,7 +360765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 8734823, "featuredRunMedia": null, "reactionVideos": [], @@ -361285,7 +360785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 289, + "teamId": "144359", "time": 8739036, "featuredRunMedia": null, "reactionVideos": [], @@ -361305,7 +360805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 8739422, "featuredRunMedia": null, "reactionVideos": [], @@ -361325,7 +360825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8739897, "featuredRunMedia": null, "reactionVideos": [], @@ -361345,7 +360845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 8740183, "featuredRunMedia": null, "reactionVideos": [], @@ -361369,7 +360869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8740226, "featuredRunMedia": null, "reactionVideos": [], @@ -361389,7 +360889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8740267, "featuredRunMedia": null, "reactionVideos": [], @@ -361409,7 +360909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 8740423, "featuredRunMedia": null, "reactionVideos": [], @@ -361429,7 +360929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 8741789, "featuredRunMedia": null, "reactionVideos": [], @@ -361449,7 +360949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 8742499, "featuredRunMedia": null, "reactionVideos": [], @@ -361469,7 +360969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 8742732, "featuredRunMedia": null, "reactionVideos": [], @@ -361489,7 +360989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 8743574, "featuredRunMedia": null, "reactionVideos": [], @@ -361509,7 +361009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 8744044, "featuredRunMedia": null, "reactionVideos": [], @@ -361529,7 +361029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 8747989, "featuredRunMedia": null, "reactionVideos": [], @@ -361553,7 +361053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "144230", "time": 8748827, "featuredRunMedia": null, "reactionVideos": [], @@ -361573,7 +361073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 8748966, "featuredRunMedia": null, "reactionVideos": [], @@ -361593,7 +361093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 8749996, "featuredRunMedia": null, "reactionVideos": [], @@ -361613,7 +361113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 8751181, "featuredRunMedia": null, "reactionVideos": [], @@ -361637,7 +361137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 8751518, "featuredRunMedia": null, "reactionVideos": [], @@ -361657,7 +361157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8752012, "featuredRunMedia": null, "reactionVideos": [], @@ -361677,7 +361177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 8752400, "featuredRunMedia": null, "reactionVideos": [], @@ -361697,7 +361197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 415, + "teamId": "144485", "time": 8752950, "featuredRunMedia": null, "reactionVideos": [], @@ -361717,7 +361217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 8753706, "featuredRunMedia": null, "reactionVideos": [], @@ -361737,7 +361237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8754104, "featuredRunMedia": null, "reactionVideos": [], @@ -361757,7 +361257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 8754318, "featuredRunMedia": null, "reactionVideos": [], @@ -361777,7 +361277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 354, + "teamId": "144424", "time": 8755067, "featuredRunMedia": null, "reactionVideos": [], @@ -361797,7 +361297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 8755990, "featuredRunMedia": null, "reactionVideos": [], @@ -361817,7 +361317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8756577, "featuredRunMedia": null, "reactionVideos": [], @@ -361837,7 +361337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 8756620, "featuredRunMedia": null, "reactionVideos": [], @@ -361857,7 +361357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8759209, "featuredRunMedia": null, "reactionVideos": [], @@ -361877,7 +361377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8761361, "featuredRunMedia": null, "reactionVideos": [], @@ -361897,7 +361397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 8761666, "featuredRunMedia": null, "reactionVideos": [], @@ -361917,7 +361417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 8763330, "featuredRunMedia": null, "reactionVideos": [], @@ -361937,7 +361437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 8765143, "featuredRunMedia": null, "reactionVideos": [], @@ -361957,7 +361457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 8765493, "featuredRunMedia": null, "reactionVideos": [], @@ -361981,7 +361481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 8765607, "featuredRunMedia": null, "reactionVideos": [], @@ -362001,7 +361501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 8766520, "featuredRunMedia": null, "reactionVideos": [], @@ -362021,7 +361521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 8767354, "featuredRunMedia": null, "reactionVideos": [], @@ -362045,7 +361545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 8767805, "featuredRunMedia": null, "reactionVideos": [], @@ -362065,7 +361565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8768500, "featuredRunMedia": null, "reactionVideos": [], @@ -362085,7 +361585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 8769058, "featuredRunMedia": null, "reactionVideos": [], @@ -362105,7 +361605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8769133, "featuredRunMedia": null, "reactionVideos": [], @@ -362125,7 +361625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 8769832, "featuredRunMedia": null, "reactionVideos": [], @@ -362145,7 +361645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 8770188, "featuredRunMedia": null, "reactionVideos": [], @@ -362165,7 +361665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 8770993, "featuredRunMedia": null, "reactionVideos": [], @@ -362185,7 +361685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8771245, "featuredRunMedia": null, "reactionVideos": [], @@ -362205,7 +361705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 8773160, "featuredRunMedia": null, "reactionVideos": [], @@ -362225,7 +361725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 8773339, "featuredRunMedia": null, "reactionVideos": [], @@ -362245,7 +361745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 8773488, "featuredRunMedia": null, "reactionVideos": [], @@ -362265,7 +361765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 8773850, "featuredRunMedia": null, "reactionVideos": [], @@ -362285,7 +361785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "144145", "time": 8778885, "featuredRunMedia": null, "reactionVideos": [], @@ -362305,7 +361805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 8778942, "featuredRunMedia": null, "reactionVideos": [], @@ -362325,7 +361825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 8780261, "featuredRunMedia": null, "reactionVideos": [], @@ -362345,7 +361845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8780523, "featuredRunMedia": null, "reactionVideos": [], @@ -362365,7 +361865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8782015, "featuredRunMedia": null, "reactionVideos": [], @@ -362385,7 +361885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 8783303, "featuredRunMedia": null, "reactionVideos": [], @@ -362405,7 +361905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 8783692, "featuredRunMedia": null, "reactionVideos": [], @@ -362425,7 +361925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 229, + "teamId": "144299", "time": 8784208, "featuredRunMedia": null, "reactionVideos": [], @@ -362449,7 +361949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 8785843, "featuredRunMedia": null, "reactionVideos": [], @@ -362469,7 +361969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 8786093, "featuredRunMedia": null, "reactionVideos": [], @@ -362489,7 +361989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 8787540, "featuredRunMedia": null, "reactionVideos": [], @@ -362509,7 +362009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 8788844, "featuredRunMedia": null, "reactionVideos": [], @@ -362529,7 +362029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "144205", "time": 8790458, "featuredRunMedia": null, "reactionVideos": [], @@ -362549,7 +362049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 183, + "teamId": "144253", "time": 8790773, "featuredRunMedia": null, "reactionVideos": [], @@ -362569,7 +362069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8791036, "featuredRunMedia": null, "reactionVideos": [], @@ -362589,7 +362089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 8791328, "featuredRunMedia": null, "reactionVideos": [], @@ -362609,7 +362109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 8791559, "featuredRunMedia": null, "reactionVideos": [], @@ -362629,7 +362129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 8792418, "featuredRunMedia": null, "reactionVideos": [], @@ -362649,7 +362149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "144114", "time": 8792466, "featuredRunMedia": null, "reactionVideos": [], @@ -362669,7 +362169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "144245", "time": 8792653, "featuredRunMedia": null, "reactionVideos": [], @@ -362689,7 +362189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 8795355, "featuredRunMedia": null, "reactionVideos": [], @@ -362709,7 +362209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 8795506, "featuredRunMedia": null, "reactionVideos": [], @@ -362729,7 +362229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 8795814, "featuredRunMedia": null, "reactionVideos": [], @@ -362749,7 +362249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 443, + "teamId": "144513", "time": 8798654, "featuredRunMedia": null, "reactionVideos": [], @@ -362769,7 +362269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 8798713, "featuredRunMedia": null, "reactionVideos": [], @@ -362789,7 +362289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 8800237, "featuredRunMedia": null, "reactionVideos": [], @@ -362809,7 +362309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "144094", "time": 8801986, "featuredRunMedia": null, "reactionVideos": [], @@ -362829,7 +362329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 8802070, "featuredRunMedia": null, "reactionVideos": [], @@ -362853,7 +362353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8803125, "featuredRunMedia": null, "reactionVideos": [], @@ -362873,7 +362373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 8803852, "featuredRunMedia": null, "reactionVideos": [], @@ -362893,7 +362393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 8806223, "featuredRunMedia": null, "reactionVideos": [], @@ -362913,7 +362413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8806256, "featuredRunMedia": null, "reactionVideos": [], @@ -362933,7 +362433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 420, + "teamId": "144490", "time": 8806285, "featuredRunMedia": null, "reactionVideos": [], @@ -362953,7 +362453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 8806674, "featuredRunMedia": null, "reactionVideos": [], @@ -362973,7 +362473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 8807544, "featuredRunMedia": null, "reactionVideos": [], @@ -362993,7 +362493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 8807699, "featuredRunMedia": null, "reactionVideos": [], @@ -363013,7 +362513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 8808770, "featuredRunMedia": null, "reactionVideos": [], @@ -363033,7 +362533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 8811598, "featuredRunMedia": null, "reactionVideos": [], @@ -363053,7 +362553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 8815977, "featuredRunMedia": null, "reactionVideos": [], @@ -363073,7 +362573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "144230", "time": 8816049, "featuredRunMedia": null, "reactionVideos": [], @@ -363093,7 +362593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 8816655, "featuredRunMedia": null, "reactionVideos": [], @@ -363113,7 +362613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8817584, "featuredRunMedia": null, "reactionVideos": [], @@ -363133,7 +362633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8818072, "featuredRunMedia": null, "reactionVideos": [], @@ -363153,7 +362653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 8819200, "featuredRunMedia": null, "reactionVideos": [], @@ -363173,7 +362673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "144386", "time": 8819790, "featuredRunMedia": null, "reactionVideos": [], @@ -363193,7 +362693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 8820418, "featuredRunMedia": null, "reactionVideos": [], @@ -363213,7 +362713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8824004, "featuredRunMedia": null, "reactionVideos": [], @@ -363233,7 +362733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 8825507, "featuredRunMedia": null, "reactionVideos": [], @@ -363253,7 +362753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "144400", "time": 8826984, "featuredRunMedia": null, "reactionVideos": [], @@ -363273,7 +362773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 8827313, "featuredRunMedia": null, "reactionVideos": [], @@ -363293,7 +362793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 8827902, "featuredRunMedia": null, "reactionVideos": [], @@ -363313,7 +362813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8832104, "featuredRunMedia": null, "reactionVideos": [], @@ -363337,7 +362837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8832412, "featuredRunMedia": null, "reactionVideos": [], @@ -363357,7 +362857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 8834564, "featuredRunMedia": null, "reactionVideos": [], @@ -363377,7 +362877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 8834644, "featuredRunMedia": null, "reactionVideos": [], @@ -363397,7 +362897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8836946, "featuredRunMedia": null, "reactionVideos": [], @@ -363417,7 +362917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 8837231, "featuredRunMedia": null, "reactionVideos": [], @@ -363437,7 +362937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 8838774, "featuredRunMedia": null, "reactionVideos": [], @@ -363457,7 +362957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8839322, "featuredRunMedia": null, "reactionVideos": [], @@ -363477,7 +362977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 8839431, "featuredRunMedia": null, "reactionVideos": [], @@ -363497,7 +362997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 8839473, "featuredRunMedia": null, "reactionVideos": [], @@ -363517,7 +363017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 8839910, "featuredRunMedia": null, "reactionVideos": [], @@ -363537,7 +363037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8840980, "featuredRunMedia": null, "reactionVideos": [], @@ -363557,7 +363057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 8841164, "featuredRunMedia": null, "reactionVideos": [], @@ -363577,7 +363077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 8842449, "featuredRunMedia": null, "reactionVideos": [], @@ -363597,7 +363097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "144114", "time": 8842695, "featuredRunMedia": null, "reactionVideos": [], @@ -363617,7 +363117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 8842804, "featuredRunMedia": null, "reactionVideos": [], @@ -363637,7 +363137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 8843663, "featuredRunMedia": null, "reactionVideos": [], @@ -363657,7 +363157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 8843966, "featuredRunMedia": null, "reactionVideos": [], @@ -363677,7 +363177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 8845344, "featuredRunMedia": null, "reactionVideos": [], @@ -363697,7 +363197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 8845855, "featuredRunMedia": null, "reactionVideos": [], @@ -363717,7 +363217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 8847298, "featuredRunMedia": null, "reactionVideos": [], @@ -363737,7 +363237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 8848465, "featuredRunMedia": null, "reactionVideos": [], @@ -363757,7 +363257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 8849071, "featuredRunMedia": null, "reactionVideos": [], @@ -363777,7 +363277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 63, + "teamId": "144133", "time": 8849619, "featuredRunMedia": null, "reactionVideos": [], @@ -363797,7 +363297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8850006, "featuredRunMedia": null, "reactionVideos": [], @@ -363817,7 +363317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 8850373, "featuredRunMedia": null, "reactionVideos": [], @@ -363837,7 +363337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 8850596, "featuredRunMedia": null, "reactionVideos": [], @@ -363857,7 +363357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 8852202, "featuredRunMedia": null, "reactionVideos": [], @@ -363877,7 +363377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8855331, "featuredRunMedia": null, "reactionVideos": [], @@ -363897,7 +363397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8856267, "featuredRunMedia": null, "reactionVideos": [], @@ -363917,7 +363417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 8857270, "featuredRunMedia": null, "reactionVideos": [], @@ -363937,7 +363437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 8857361, "featuredRunMedia": null, "reactionVideos": [], @@ -363957,7 +363457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 8857632, "featuredRunMedia": null, "reactionVideos": [], @@ -363977,7 +363477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 8857744, "featuredRunMedia": null, "reactionVideos": [], @@ -363997,7 +363497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 315, + "teamId": "144385", "time": 8859512, "featuredRunMedia": null, "reactionVideos": [], @@ -364017,7 +363517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 8859637, "featuredRunMedia": null, "reactionVideos": [], @@ -364037,7 +363537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8860800, "featuredRunMedia": null, "reactionVideos": [], @@ -364057,7 +363557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8861122, "featuredRunMedia": null, "reactionVideos": [], @@ -364077,7 +363577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "144204", "time": 8863138, "featuredRunMedia": null, "reactionVideos": [], @@ -364097,7 +363597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8863354, "featuredRunMedia": null, "reactionVideos": [], @@ -364117,7 +363617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 8863387, "featuredRunMedia": null, "reactionVideos": [], @@ -364137,7 +363637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 8863538, "featuredRunMedia": null, "reactionVideos": [], @@ -364161,7 +363661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8864590, "featuredRunMedia": null, "reactionVideos": [], @@ -364181,7 +363681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 8864660, "featuredRunMedia": null, "reactionVideos": [], @@ -364201,7 +363701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 8865180, "featuredRunMedia": null, "reactionVideos": [], @@ -364221,7 +363721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 8866865, "featuredRunMedia": null, "reactionVideos": [], @@ -364241,7 +363741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 8867213, "featuredRunMedia": null, "reactionVideos": [], @@ -364261,7 +363761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 371, + "teamId": "144441", "time": 8872625, "featuredRunMedia": null, "reactionVideos": [], @@ -364281,7 +363781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 8873693, "featuredRunMedia": null, "reactionVideos": [], @@ -364301,7 +363801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 8876214, "featuredRunMedia": null, "reactionVideos": [], @@ -364321,7 +363821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 8876704, "featuredRunMedia": null, "reactionVideos": [], @@ -364341,7 +363841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 8877668, "featuredRunMedia": null, "reactionVideos": [], @@ -364361,7 +363861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 8877829, "featuredRunMedia": null, "reactionVideos": [], @@ -364381,7 +363881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 8879935, "featuredRunMedia": null, "reactionVideos": [], @@ -364401,7 +363901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8883288, "featuredRunMedia": null, "reactionVideos": [], @@ -364421,7 +363921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8886004, "featuredRunMedia": null, "reactionVideos": [], @@ -364441,7 +363941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8886486, "featuredRunMedia": null, "reactionVideos": [], @@ -364461,7 +363961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 367, + "teamId": "144437", "time": 8887553, "featuredRunMedia": null, "reactionVideos": [], @@ -364481,7 +363981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 8887706, "featuredRunMedia": null, "reactionVideos": [], @@ -364501,7 +364001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 8888495, "featuredRunMedia": null, "reactionVideos": [], @@ -364521,7 +364021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 8888924, "featuredRunMedia": null, "reactionVideos": [], @@ -364541,7 +364041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 8890011, "featuredRunMedia": null, "reactionVideos": [], @@ -364561,7 +364061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 8890635, "featuredRunMedia": null, "reactionVideos": [], @@ -364581,7 +364081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8891866, "featuredRunMedia": null, "reactionVideos": [], @@ -364601,7 +364101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 8892333, "featuredRunMedia": null, "reactionVideos": [], @@ -364621,7 +364121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8892965, "featuredRunMedia": null, "reactionVideos": [], @@ -364641,7 +364141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 8893007, "featuredRunMedia": null, "reactionVideos": [], @@ -364661,7 +364161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 8894123, "featuredRunMedia": null, "reactionVideos": [], @@ -364681,7 +364181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 8895084, "featuredRunMedia": null, "reactionVideos": [], @@ -364701,7 +364201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8895153, "featuredRunMedia": null, "reactionVideos": [], @@ -364721,7 +364221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8895385, "featuredRunMedia": null, "reactionVideos": [], @@ -364741,7 +364241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 8895763, "featuredRunMedia": null, "reactionVideos": [], @@ -364761,7 +364261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 8896830, "featuredRunMedia": null, "reactionVideos": [], @@ -364781,7 +364281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 8897280, "featuredRunMedia": null, "reactionVideos": [], @@ -364801,7 +364301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8897662, "featuredRunMedia": null, "reactionVideos": [], @@ -364821,7 +364321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 8898745, "featuredRunMedia": null, "reactionVideos": [], @@ -364841,7 +364341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8898816, "featuredRunMedia": null, "reactionVideos": [], @@ -364861,7 +364361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 8898889, "featuredRunMedia": null, "reactionVideos": [], @@ -364881,7 +364381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 8900028, "featuredRunMedia": null, "reactionVideos": [], @@ -364901,7 +364401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8900480, "featuredRunMedia": null, "reactionVideos": [], @@ -364921,7 +364421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 8900612, "featuredRunMedia": null, "reactionVideos": [], @@ -364941,7 +364441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 8900687, "featuredRunMedia": null, "reactionVideos": [], @@ -364961,7 +364461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 223, + "teamId": "144293", "time": 8900950, "featuredRunMedia": null, "reactionVideos": [], @@ -364981,7 +364481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8902569, "featuredRunMedia": null, "reactionVideos": [], @@ -365001,7 +364501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 8902764, "featuredRunMedia": null, "reactionVideos": [], @@ -365021,7 +364521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 8903110, "featuredRunMedia": null, "reactionVideos": [], @@ -365041,7 +364541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 8903841, "featuredRunMedia": null, "reactionVideos": [], @@ -365061,7 +364561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 8903903, "featuredRunMedia": null, "reactionVideos": [], @@ -365081,7 +364581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 289, + "teamId": "144359", "time": 8904194, "featuredRunMedia": null, "reactionVideos": [], @@ -365101,7 +364601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 8904295, "featuredRunMedia": null, "reactionVideos": [], @@ -365121,7 +364621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8904572, "featuredRunMedia": null, "reactionVideos": [], @@ -365141,7 +364641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 8905610, "featuredRunMedia": null, "reactionVideos": [], @@ -365161,7 +364661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 8906868, "featuredRunMedia": null, "reactionVideos": [], @@ -365181,7 +364681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 8907717, "featuredRunMedia": null, "reactionVideos": [], @@ -365201,7 +364701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 8908791, "featuredRunMedia": null, "reactionVideos": [], @@ -365221,7 +364721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 183, + "teamId": "144253", "time": 8913225, "featuredRunMedia": null, "reactionVideos": [], @@ -365241,7 +364741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 8913968, "featuredRunMedia": null, "reactionVideos": [], @@ -365261,7 +364761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 8914011, "featuredRunMedia": null, "reactionVideos": [], @@ -365281,7 +364781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 8914960, "featuredRunMedia": null, "reactionVideos": [], @@ -365301,7 +364801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8915011, "featuredRunMedia": null, "reactionVideos": [], @@ -365321,7 +364821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8916211, "featuredRunMedia": null, "reactionVideos": [], @@ -365341,7 +364841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 88, + "teamId": "144158", "time": 8916512, "featuredRunMedia": null, "reactionVideos": [], @@ -365361,7 +364861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 8917049, "featuredRunMedia": null, "reactionVideos": [], @@ -365381,7 +364881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 8919116, "featuredRunMedia": null, "reactionVideos": [], @@ -365401,7 +364901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8919898, "featuredRunMedia": null, "reactionVideos": [], @@ -365421,7 +364921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 8922479, "featuredRunMedia": null, "reactionVideos": [], @@ -365441,7 +364941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 8923255, "featuredRunMedia": null, "reactionVideos": [], @@ -365461,7 +364961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "144160", "time": 8925532, "featuredRunMedia": null, "reactionVideos": [], @@ -365481,7 +364981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 8925817, "featuredRunMedia": null, "reactionVideos": [], @@ -365501,7 +365001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 8927178, "featuredRunMedia": null, "reactionVideos": [], @@ -365521,7 +365021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 8927488, "featuredRunMedia": null, "reactionVideos": [], @@ -365541,7 +365041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 8928595, "featuredRunMedia": null, "reactionVideos": [], @@ -365561,7 +365061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 8929287, "featuredRunMedia": null, "reactionVideos": [], @@ -365581,7 +365081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "144242", "time": 8932109, "featuredRunMedia": null, "reactionVideos": [], @@ -365601,7 +365101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 8932969, "featuredRunMedia": null, "reactionVideos": [], @@ -365621,7 +365121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 8935643, "featuredRunMedia": null, "reactionVideos": [], @@ -365641,7 +365141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 8935936, "featuredRunMedia": null, "reactionVideos": [], @@ -365661,7 +365161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 8937658, "featuredRunMedia": null, "reactionVideos": [], @@ -365681,7 +365181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8937934, "featuredRunMedia": null, "reactionVideos": [], @@ -365701,7 +365201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 8938306, "featuredRunMedia": null, "reactionVideos": [], @@ -365721,7 +365221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 8939904, "featuredRunMedia": null, "reactionVideos": [], @@ -365741,7 +365241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 8940343, "featuredRunMedia": null, "reactionVideos": [], @@ -365761,7 +365261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 8940600, "featuredRunMedia": null, "reactionVideos": [], @@ -365781,7 +365281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 8942342, "featuredRunMedia": null, "reactionVideos": [], @@ -365801,7 +365301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 8942613, "featuredRunMedia": null, "reactionVideos": [], @@ -365821,7 +365321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 8944242, "featuredRunMedia": null, "reactionVideos": [], @@ -365841,7 +365341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 8946103, "featuredRunMedia": null, "reactionVideos": [], @@ -365861,7 +365361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 8946532, "featuredRunMedia": null, "reactionVideos": [], @@ -365881,7 +365381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 8947755, "featuredRunMedia": null, "reactionVideos": [], @@ -365901,7 +365401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 8948429, "featuredRunMedia": null, "reactionVideos": [], @@ -365921,7 +365421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 300, + "teamId": "144370", "time": 8949251, "featuredRunMedia": null, "reactionVideos": [], @@ -365941,7 +365441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 354, + "teamId": "144424", "time": 8949617, "featuredRunMedia": null, "reactionVideos": [], @@ -365961,7 +365461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 8949692, "featuredRunMedia": null, "reactionVideos": [], @@ -365981,7 +365481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 8952328, "featuredRunMedia": null, "reactionVideos": [], @@ -366001,7 +365501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 8952738, "featuredRunMedia": null, "reactionVideos": [], @@ -366021,7 +365521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 8953039, "featuredRunMedia": null, "reactionVideos": [], @@ -366041,7 +365541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 8953866, "featuredRunMedia": null, "reactionVideos": [], @@ -366061,7 +365561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 8954681, "featuredRunMedia": null, "reactionVideos": [], @@ -366081,7 +365581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 8958939, "featuredRunMedia": null, "reactionVideos": [], @@ -366101,7 +365601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 8959138, "featuredRunMedia": null, "reactionVideos": [], @@ -366121,7 +365621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 8960406, "featuredRunMedia": null, "reactionVideos": [], @@ -366141,7 +365641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 8961221, "featuredRunMedia": null, "reactionVideos": [], @@ -366161,7 +365661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "144205", "time": 8961711, "featuredRunMedia": null, "reactionVideos": [], @@ -366181,7 +365681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 8962147, "featuredRunMedia": null, "reactionVideos": [], @@ -366201,7 +365701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 8962695, "featuredRunMedia": null, "reactionVideos": [], @@ -366221,7 +365721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 8963622, "featuredRunMedia": null, "reactionVideos": [], @@ -366241,7 +365741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8965878, "featuredRunMedia": null, "reactionVideos": [], @@ -366261,7 +365761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 8965933, "featuredRunMedia": null, "reactionVideos": [], @@ -366281,7 +365781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 8966097, "featuredRunMedia": null, "reactionVideos": [], @@ -366301,7 +365801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 8967253, "featuredRunMedia": null, "reactionVideos": [], @@ -366321,7 +365821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 8967581, "featuredRunMedia": null, "reactionVideos": [], @@ -366341,7 +365841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 8967881, "featuredRunMedia": null, "reactionVideos": [], @@ -366361,7 +365861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 8968633, "featuredRunMedia": null, "reactionVideos": [], @@ -366381,7 +365881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 8969621, "featuredRunMedia": null, "reactionVideos": [], @@ -366401,7 +365901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 8970697, "featuredRunMedia": null, "reactionVideos": [], @@ -366421,7 +365921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 8971108, "featuredRunMedia": null, "reactionVideos": [], @@ -366441,7 +365941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 8971365, "featuredRunMedia": null, "reactionVideos": [], @@ -366461,7 +365961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 8971572, "featuredRunMedia": null, "reactionVideos": [], @@ -366481,7 +365981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 8972072, "featuredRunMedia": null, "reactionVideos": [], @@ -366501,7 +366001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 8972133, "featuredRunMedia": null, "reactionVideos": [], @@ -366521,7 +366021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 8972563, "featuredRunMedia": null, "reactionVideos": [], @@ -366541,7 +366041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 8973203, "featuredRunMedia": null, "reactionVideos": [], @@ -366561,7 +366061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 8974543, "featuredRunMedia": null, "reactionVideos": [], @@ -366581,7 +366081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 8975523, "featuredRunMedia": null, "reactionVideos": [], @@ -366601,7 +366101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 8976347, "featuredRunMedia": null, "reactionVideos": [], @@ -366621,7 +366121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 8977847, "featuredRunMedia": null, "reactionVideos": [], @@ -366641,7 +366141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 8982283, "featuredRunMedia": null, "reactionVideos": [], @@ -366665,7 +366165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 8984849, "featuredRunMedia": null, "reactionVideos": [], @@ -366685,7 +366185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 8984947, "featuredRunMedia": null, "reactionVideos": [], @@ -366705,7 +366205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 235, + "teamId": "144305", "time": 8985840, "featuredRunMedia": null, "reactionVideos": [], @@ -366725,7 +366225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 8987022, "featuredRunMedia": null, "reactionVideos": [], @@ -366745,7 +366245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "144347", "time": 8987065, "featuredRunMedia": null, "reactionVideos": [], @@ -366765,7 +366265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 8987139, "featuredRunMedia": null, "reactionVideos": [], @@ -366785,7 +366285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 8987975, "featuredRunMedia": null, "reactionVideos": [], @@ -366805,7 +366305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 8993035, "featuredRunMedia": null, "reactionVideos": [], @@ -366825,7 +366325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 8993324, "featuredRunMedia": null, "reactionVideos": [], @@ -366845,7 +366345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 8994381, "featuredRunMedia": null, "reactionVideos": [], @@ -366865,7 +366365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 8995555, "featuredRunMedia": null, "reactionVideos": [], @@ -366885,7 +366385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 8997409, "featuredRunMedia": null, "reactionVideos": [], @@ -366905,7 +366405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 8999175, "featuredRunMedia": null, "reactionVideos": [], @@ -366925,7 +366425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 9000105, "featuredRunMedia": null, "reactionVideos": [], @@ -366945,7 +366445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 9001419, "featuredRunMedia": null, "reactionVideos": [], @@ -366965,7 +366465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9001529, "featuredRunMedia": null, "reactionVideos": [], @@ -366985,7 +366485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 9001949, "featuredRunMedia": null, "reactionVideos": [], @@ -367005,7 +366505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 154, + "teamId": "144224", "time": 9006580, "featuredRunMedia": null, "reactionVideos": [], @@ -367025,7 +366525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9006670, "featuredRunMedia": null, "reactionVideos": [], @@ -367045,7 +366545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 9008737, "featuredRunMedia": null, "reactionVideos": [], @@ -367065,7 +366565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9011418, "featuredRunMedia": null, "reactionVideos": [], @@ -367085,7 +366585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 9012340, "featuredRunMedia": null, "reactionVideos": [], @@ -367105,7 +366605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "144371", "time": 9014061, "featuredRunMedia": null, "reactionVideos": [], @@ -367125,7 +366625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 356, + "teamId": "144426", "time": 9014892, "featuredRunMedia": null, "reactionVideos": [], @@ -367145,7 +366645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 9014997, "featuredRunMedia": null, "reactionVideos": [], @@ -367165,7 +366665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 9017170, "featuredRunMedia": null, "reactionVideos": [], @@ -367185,7 +366685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 9019357, "featuredRunMedia": null, "reactionVideos": [], @@ -367205,7 +366705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 9019488, "featuredRunMedia": null, "reactionVideos": [], @@ -367225,7 +366725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 9020833, "featuredRunMedia": null, "reactionVideos": [], @@ -367245,7 +366745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9022529, "featuredRunMedia": null, "reactionVideos": [], @@ -367265,7 +366765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 9023645, "featuredRunMedia": null, "reactionVideos": [], @@ -367285,7 +366785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 9025521, "featuredRunMedia": null, "reactionVideos": [], @@ -367305,7 +366805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 9026573, "featuredRunMedia": null, "reactionVideos": [], @@ -367325,7 +366825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "144107", "time": 9026859, "featuredRunMedia": null, "reactionVideos": [], @@ -367349,7 +366849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 9027528, "featuredRunMedia": null, "reactionVideos": [], @@ -367369,7 +366869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 9027565, "featuredRunMedia": null, "reactionVideos": [], @@ -367389,7 +366889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 9027750, "featuredRunMedia": null, "reactionVideos": [], @@ -367409,7 +366909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 9030624, "featuredRunMedia": null, "reactionVideos": [], @@ -367429,7 +366929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9030654, "featuredRunMedia": null, "reactionVideos": [], @@ -367449,7 +366949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9033635, "featuredRunMedia": null, "reactionVideos": [], @@ -367469,7 +366969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 9038383, "featuredRunMedia": null, "reactionVideos": [], @@ -367489,7 +366989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 9040277, "featuredRunMedia": null, "reactionVideos": [], @@ -367509,7 +367009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 9040400, "featuredRunMedia": null, "reactionVideos": [], @@ -367529,7 +367029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9041627, "featuredRunMedia": null, "reactionVideos": [], @@ -367549,7 +367049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9041963, "featuredRunMedia": null, "reactionVideos": [], @@ -367569,7 +367069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 9043601, "featuredRunMedia": null, "reactionVideos": [], @@ -367589,7 +367089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 9043733, "featuredRunMedia": null, "reactionVideos": [], @@ -367609,7 +367109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 9045659, "featuredRunMedia": null, "reactionVideos": [], @@ -367629,7 +367129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 9047730, "featuredRunMedia": null, "reactionVideos": [], @@ -367649,7 +367149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 9054254, "featuredRunMedia": null, "reactionVideos": [], @@ -367669,7 +367169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 9055526, "featuredRunMedia": null, "reactionVideos": [], @@ -367689,7 +367189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 9056022, "featuredRunMedia": null, "reactionVideos": [], @@ -367709,7 +367209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 391, + "teamId": "144461", "time": 9056636, "featuredRunMedia": null, "reactionVideos": [], @@ -367729,7 +367229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9057652, "featuredRunMedia": null, "reactionVideos": [], @@ -367749,7 +367249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 9057695, "featuredRunMedia": null, "reactionVideos": [], @@ -367769,7 +367269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 9057804, "featuredRunMedia": null, "reactionVideos": [], @@ -367789,7 +367289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 427, + "teamId": "144497", "time": 9057855, "featuredRunMedia": null, "reactionVideos": [], @@ -367809,7 +367309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 9059161, "featuredRunMedia": null, "reactionVideos": [], @@ -367829,7 +367329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 9059574, "featuredRunMedia": null, "reactionVideos": [], @@ -367849,7 +367349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9060387, "featuredRunMedia": null, "reactionVideos": [], @@ -367869,7 +367369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 9061511, "featuredRunMedia": null, "reactionVideos": [], @@ -367893,7 +367393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9061877, "featuredRunMedia": null, "reactionVideos": [], @@ -367913,7 +367413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9067600, "featuredRunMedia": null, "reactionVideos": [], @@ -367933,7 +367433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 9068493, "featuredRunMedia": null, "reactionVideos": [], @@ -367953,7 +367453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 9070358, "featuredRunMedia": null, "reactionVideos": [], @@ -367973,7 +367473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 9071337, "featuredRunMedia": null, "reactionVideos": [], @@ -367993,7 +367493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 9075153, "featuredRunMedia": null, "reactionVideos": [], @@ -368013,7 +367513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9075545, "featuredRunMedia": null, "reactionVideos": [], @@ -368033,7 +367533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 9076056, "featuredRunMedia": null, "reactionVideos": [], @@ -368053,7 +367553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 9076402, "featuredRunMedia": null, "reactionVideos": [], @@ -368073,7 +367573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9076700, "featuredRunMedia": null, "reactionVideos": [], @@ -368093,7 +367593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 9080259, "featuredRunMedia": null, "reactionVideos": [], @@ -368113,7 +367613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 9081417, "featuredRunMedia": null, "reactionVideos": [], @@ -368133,7 +367633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 9082596, "featuredRunMedia": null, "reactionVideos": [], @@ -368153,7 +367653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 9083437, "featuredRunMedia": null, "reactionVideos": [], @@ -368173,7 +367673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 9083999, "featuredRunMedia": null, "reactionVideos": [], @@ -368193,7 +367693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9087934, "featuredRunMedia": null, "reactionVideos": [], @@ -368213,7 +367713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9088673, "featuredRunMedia": null, "reactionVideos": [], @@ -368233,7 +367733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 295, + "teamId": "144365", "time": 9089082, "featuredRunMedia": null, "reactionVideos": [], @@ -368253,7 +367753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 9090289, "featuredRunMedia": null, "reactionVideos": [], @@ -368273,7 +367773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 9091868, "featuredRunMedia": null, "reactionVideos": [], @@ -368293,7 +367793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 9093961, "featuredRunMedia": null, "reactionVideos": [], @@ -368313,7 +367813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 9094453, "featuredRunMedia": null, "reactionVideos": [], @@ -368333,7 +367833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9094905, "featuredRunMedia": null, "reactionVideos": [], @@ -368353,7 +367853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 9095626, "featuredRunMedia": null, "reactionVideos": [], @@ -368373,7 +367873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 185, + "teamId": "144255", "time": 9098385, "featuredRunMedia": null, "reactionVideos": [], @@ -368393,7 +367893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 9098476, "featuredRunMedia": null, "reactionVideos": [], @@ -368413,7 +367913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 9099299, "featuredRunMedia": null, "reactionVideos": [], @@ -368433,7 +367933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9100120, "featuredRunMedia": null, "reactionVideos": [], @@ -368453,7 +367953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 154, + "teamId": "144224", "time": 9101583, "featuredRunMedia": null, "reactionVideos": [], @@ -368473,7 +367973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 9104442, "featuredRunMedia": null, "reactionVideos": [], @@ -368493,7 +367993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "144094", "time": 9104860, "featuredRunMedia": null, "reactionVideos": [], @@ -368513,7 +368013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 9105612, "featuredRunMedia": null, "reactionVideos": [], @@ -368533,7 +368033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "144270", "time": 9106148, "featuredRunMedia": null, "reactionVideos": [], @@ -368553,7 +368053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 9106201, "featuredRunMedia": null, "reactionVideos": [], @@ -368573,7 +368073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 9107178, "featuredRunMedia": null, "reactionVideos": [], @@ -368593,7 +368093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 9108074, "featuredRunMedia": null, "reactionVideos": [], @@ -368613,7 +368113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 9109400, "featuredRunMedia": null, "reactionVideos": [], @@ -368633,7 +368133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 9111477, "featuredRunMedia": null, "reactionVideos": [], @@ -368653,7 +368153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9113013, "featuredRunMedia": null, "reactionVideos": [], @@ -368673,7 +368173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 9114091, "featuredRunMedia": null, "reactionVideos": [], @@ -368693,7 +368193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 9115237, "featuredRunMedia": null, "reactionVideos": [], @@ -368713,7 +368213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 9117522, "featuredRunMedia": null, "reactionVideos": [], @@ -368733,7 +368233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 9117880, "featuredRunMedia": null, "reactionVideos": [], @@ -368753,7 +368253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 9118032, "featuredRunMedia": null, "reactionVideos": [], @@ -368773,7 +368273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9118750, "featuredRunMedia": null, "reactionVideos": [], @@ -368793,7 +368293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9119287, "featuredRunMedia": null, "reactionVideos": [], @@ -368813,7 +368313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9119381, "featuredRunMedia": null, "reactionVideos": [], @@ -368833,7 +368333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 9119455, "featuredRunMedia": null, "reactionVideos": [], @@ -368853,7 +368353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 9121576, "featuredRunMedia": null, "reactionVideos": [], @@ -368873,7 +368373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 9121821, "featuredRunMedia": null, "reactionVideos": [], @@ -368893,7 +368393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9122001, "featuredRunMedia": null, "reactionVideos": [], @@ -368913,7 +368413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 9122937, "featuredRunMedia": null, "reactionVideos": [], @@ -368933,7 +368433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 9123340, "featuredRunMedia": null, "reactionVideos": [], @@ -368953,7 +368453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 9124791, "featuredRunMedia": null, "reactionVideos": [], @@ -368973,7 +368473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 9127697, "featuredRunMedia": null, "reactionVideos": [], @@ -368993,7 +368493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 9128262, "featuredRunMedia": null, "reactionVideos": [], @@ -369013,7 +368513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 9128699, "featuredRunMedia": null, "reactionVideos": [], @@ -369033,7 +368533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 9129218, "featuredRunMedia": null, "reactionVideos": [], @@ -369053,7 +368553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 9130629, "featuredRunMedia": null, "reactionVideos": [], @@ -369073,7 +368573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 9130707, "featuredRunMedia": null, "reactionVideos": [], @@ -369093,7 +368593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9131662, "featuredRunMedia": null, "reactionVideos": [], @@ -369113,7 +368613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 9133532, "featuredRunMedia": null, "reactionVideos": [], @@ -369133,7 +368633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 9134322, "featuredRunMedia": null, "reactionVideos": [], @@ -369153,7 +368653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 9137362, "featuredRunMedia": null, "reactionVideos": [], @@ -369173,7 +368673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 9139121, "featuredRunMedia": null, "reactionVideos": [], @@ -369193,7 +368693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 9143108, "featuredRunMedia": null, "reactionVideos": [], @@ -369213,7 +368713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9144675, "featuredRunMedia": null, "reactionVideos": [], @@ -369233,7 +368733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 9149523, "featuredRunMedia": null, "reactionVideos": [], @@ -369253,7 +368753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 9150035, "featuredRunMedia": null, "reactionVideos": [], @@ -369273,7 +368773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 9150298, "featuredRunMedia": null, "reactionVideos": [], @@ -369293,7 +368793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 9150830, "featuredRunMedia": null, "reactionVideos": [], @@ -369313,7 +368813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9151895, "featuredRunMedia": null, "reactionVideos": [], @@ -369333,7 +368833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 9152116, "featuredRunMedia": null, "reactionVideos": [], @@ -369353,7 +368853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 186, + "teamId": "144256", "time": 9152186, "featuredRunMedia": null, "reactionVideos": [], @@ -369373,7 +368873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 300, + "teamId": "144370", "time": 9152753, "featuredRunMedia": null, "reactionVideos": [], @@ -369393,7 +368893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9154687, "featuredRunMedia": null, "reactionVideos": [], @@ -369413,7 +368913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 9155146, "featuredRunMedia": null, "reactionVideos": [], @@ -369433,7 +368933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 9155223, "featuredRunMedia": null, "reactionVideos": [], @@ -369453,7 +368953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 125, + "teamId": "144195", "time": 9156469, "featuredRunMedia": null, "reactionVideos": [], @@ -369473,7 +368973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9156518, "featuredRunMedia": null, "reactionVideos": [], @@ -369493,7 +368993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9156576, "featuredRunMedia": null, "reactionVideos": [], @@ -369513,7 +369013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "144210", "time": 9157171, "featuredRunMedia": null, "reactionVideos": [], @@ -369533,7 +369033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "144107", "time": 9158796, "featuredRunMedia": null, "reactionVideos": [], @@ -369553,7 +369053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9160871, "featuredRunMedia": null, "reactionVideos": [], @@ -369573,7 +369073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9161825, "featuredRunMedia": null, "reactionVideos": [], @@ -369593,7 +369093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 9162075, "featuredRunMedia": null, "reactionVideos": [], @@ -369613,7 +369113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 9162110, "featuredRunMedia": null, "reactionVideos": [], @@ -369633,7 +369133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9162920, "featuredRunMedia": null, "reactionVideos": [], @@ -369653,7 +369153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 26, + "teamId": "144096", "time": 9164523, "featuredRunMedia": null, "reactionVideos": [], @@ -369673,7 +369173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 9168206, "featuredRunMedia": null, "reactionVideos": [], @@ -369693,7 +369193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 9168259, "featuredRunMedia": null, "reactionVideos": [], @@ -369713,7 +369213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 9168943, "featuredRunMedia": null, "reactionVideos": [], @@ -369733,7 +369233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9169795, "featuredRunMedia": null, "reactionVideos": [], @@ -369753,7 +369253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "144099", "time": 9169864, "featuredRunMedia": null, "reactionVideos": [], @@ -369773,7 +369273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9174328, "featuredRunMedia": null, "reactionVideos": [], @@ -369793,7 +369293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 357, + "teamId": "144427", "time": 9177895, "featuredRunMedia": null, "reactionVideos": [], @@ -369813,7 +369313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9179427, "featuredRunMedia": null, "reactionVideos": [], @@ -369833,7 +369333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 9179464, "featuredRunMedia": null, "reactionVideos": [], @@ -369853,7 +369353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 9179713, "featuredRunMedia": null, "reactionVideos": [], @@ -369873,7 +369373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 9181476, "featuredRunMedia": null, "reactionVideos": [], @@ -369893,7 +369393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 9183302, "featuredRunMedia": null, "reactionVideos": [], @@ -369913,7 +369413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 9184164, "featuredRunMedia": null, "reactionVideos": [], @@ -369933,7 +369433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 9184668, "featuredRunMedia": null, "reactionVideos": [], @@ -369953,7 +369453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9189067, "featuredRunMedia": null, "reactionVideos": [], @@ -369973,7 +369473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "144371", "time": 9190277, "featuredRunMedia": null, "reactionVideos": [], @@ -369993,7 +369493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "144348", "time": 9193361, "featuredRunMedia": null, "reactionVideos": [], @@ -370013,7 +369513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 9193432, "featuredRunMedia": null, "reactionVideos": [], @@ -370033,7 +369533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "144099", "time": 9193884, "featuredRunMedia": null, "reactionVideos": [], @@ -370053,7 +369553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9193933, "featuredRunMedia": null, "reactionVideos": [], @@ -370073,7 +369573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 9194788, "featuredRunMedia": null, "reactionVideos": [], @@ -370093,7 +369593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9196539, "featuredRunMedia": null, "reactionVideos": [], @@ -370113,7 +369613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 9198532, "featuredRunMedia": null, "reactionVideos": [], @@ -370137,7 +369637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 9198919, "featuredRunMedia": null, "reactionVideos": [], @@ -370157,7 +369657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9200046, "featuredRunMedia": null, "reactionVideos": [], @@ -370177,7 +369677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 9200112, "featuredRunMedia": null, "reactionVideos": [], @@ -370197,7 +369697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 395, + "teamId": "144465", "time": 9202343, "featuredRunMedia": null, "reactionVideos": [], @@ -370217,7 +369717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 5, + "teamId": "144075", "time": 9207617, "featuredRunMedia": null, "reactionVideos": [], @@ -370237,7 +369737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "144085", "time": 9210495, "featuredRunMedia": null, "reactionVideos": [], @@ -370257,7 +369757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 9211520, "featuredRunMedia": null, "reactionVideos": [], @@ -370281,7 +369781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9212148, "featuredRunMedia": null, "reactionVideos": [], @@ -370301,7 +369801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9212923, "featuredRunMedia": null, "reactionVideos": [], @@ -370321,7 +369821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 9214634, "featuredRunMedia": null, "reactionVideos": [], @@ -370341,7 +369841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 9216245, "featuredRunMedia": null, "reactionVideos": [], @@ -370361,7 +369861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "144228", "time": 9217713, "featuredRunMedia": null, "reactionVideos": [], @@ -370381,7 +369881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 9218230, "featuredRunMedia": null, "reactionVideos": [], @@ -370401,7 +369901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9219102, "featuredRunMedia": null, "reactionVideos": [], @@ -370421,7 +369921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 9219753, "featuredRunMedia": null, "reactionVideos": [], @@ -370441,7 +369941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9219862, "featuredRunMedia": null, "reactionVideos": [], @@ -370461,7 +369961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 9221893, "featuredRunMedia": null, "reactionVideos": [], @@ -370481,7 +369981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "144357", "time": 9227404, "featuredRunMedia": null, "reactionVideos": [], @@ -370501,7 +370001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 9227872, "featuredRunMedia": null, "reactionVideos": [], @@ -370521,7 +370021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 9228224, "featuredRunMedia": null, "reactionVideos": [], @@ -370541,7 +370041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 9230309, "featuredRunMedia": null, "reactionVideos": [], @@ -370561,7 +370061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 9232794, "featuredRunMedia": null, "reactionVideos": [], @@ -370581,7 +370081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9232927, "featuredRunMedia": null, "reactionVideos": [], @@ -370601,7 +370101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 9234065, "featuredRunMedia": null, "reactionVideos": [], @@ -370621,7 +370121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 9234920, "featuredRunMedia": null, "reactionVideos": [], @@ -370641,7 +370141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 9237678, "featuredRunMedia": null, "reactionVideos": [], @@ -370661,7 +370161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 9238050, "featuredRunMedia": null, "reactionVideos": [], @@ -370681,7 +370181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9238111, "featuredRunMedia": null, "reactionVideos": [], @@ -370701,7 +370201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 9240707, "featuredRunMedia": null, "reactionVideos": [], @@ -370721,7 +370221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9240826, "featuredRunMedia": null, "reactionVideos": [], @@ -370741,7 +370241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 9241624, "featuredRunMedia": null, "reactionVideos": [], @@ -370761,7 +370261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "144231", "time": 9242418, "featuredRunMedia": null, "reactionVideos": [], @@ -370781,7 +370281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 9242851, "featuredRunMedia": null, "reactionVideos": [], @@ -370801,7 +370301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 9242900, "featuredRunMedia": null, "reactionVideos": [], @@ -370821,7 +370321,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 137, + "teamId": "144207", "time": 9243181, "featuredRunMedia": null, "reactionVideos": [], @@ -370841,7 +370341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9244373, "featuredRunMedia": null, "reactionVideos": [], @@ -370861,7 +370361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 9246119, "featuredRunMedia": null, "reactionVideos": [], @@ -370881,7 +370381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9246323, "featuredRunMedia": null, "reactionVideos": [], @@ -370901,7 +370401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 9248524, "featuredRunMedia": null, "reactionVideos": [], @@ -370921,7 +370421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 9249081, "featuredRunMedia": null, "reactionVideos": [], @@ -370941,7 +370441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 9249695, "featuredRunMedia": null, "reactionVideos": [], @@ -370965,7 +370465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9250010, "featuredRunMedia": null, "reactionVideos": [], @@ -370985,7 +370485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 9252697, "featuredRunMedia": null, "reactionVideos": [], @@ -371005,7 +370505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 9252737, "featuredRunMedia": null, "reactionVideos": [], @@ -371025,7 +370525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "144396", "time": 9254133, "featuredRunMedia": null, "reactionVideos": [], @@ -371045,7 +370545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 9255871, "featuredRunMedia": null, "reactionVideos": [], @@ -371065,7 +370565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 9256070, "featuredRunMedia": null, "reactionVideos": [], @@ -371085,7 +370585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 9257796, "featuredRunMedia": null, "reactionVideos": [], @@ -371105,7 +370605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9259705, "featuredRunMedia": null, "reactionVideos": [], @@ -371125,7 +370625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 9260683, "featuredRunMedia": null, "reactionVideos": [], @@ -371145,7 +370645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 9260756, "featuredRunMedia": null, "reactionVideos": [], @@ -371165,7 +370665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9261525, "featuredRunMedia": null, "reactionVideos": [], @@ -371185,7 +370685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9263954, "featuredRunMedia": null, "reactionVideos": [], @@ -371205,7 +370705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9264771, "featuredRunMedia": null, "reactionVideos": [], @@ -371225,7 +370725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9265033, "featuredRunMedia": null, "reactionVideos": [], @@ -371245,7 +370745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 9265236, "featuredRunMedia": null, "reactionVideos": [], @@ -371265,7 +370765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 9265692, "featuredRunMedia": null, "reactionVideos": [], @@ -371285,7 +370785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 9267544, "featuredRunMedia": null, "reactionVideos": [], @@ -371305,7 +370805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "144372", "time": 9269535, "featuredRunMedia": null, "reactionVideos": [], @@ -371325,7 +370825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 354, + "teamId": "144424", "time": 9270215, "featuredRunMedia": null, "reactionVideos": [], @@ -371345,7 +370845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9271956, "featuredRunMedia": null, "reactionVideos": [], @@ -371365,7 +370865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 9273100, "featuredRunMedia": null, "reactionVideos": [], @@ -371385,7 +370885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9273423, "featuredRunMedia": null, "reactionVideos": [], @@ -371405,7 +370905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 9276190, "featuredRunMedia": null, "reactionVideos": [], @@ -371429,7 +370929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 9276324, "featuredRunMedia": null, "reactionVideos": [], @@ -371449,7 +370949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 9276588, "featuredRunMedia": null, "reactionVideos": [], @@ -371469,7 +370969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 9276956, "featuredRunMedia": null, "reactionVideos": [], @@ -371489,7 +370989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "144325", "time": 9277296, "featuredRunMedia": null, "reactionVideos": [], @@ -371509,7 +371009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 9278623, "featuredRunMedia": null, "reactionVideos": [], @@ -371529,7 +371029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "144302", "time": 9279264, "featuredRunMedia": null, "reactionVideos": [], @@ -371553,7 +371053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 9280960, "featuredRunMedia": null, "reactionVideos": [], @@ -371573,7 +371073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 9282040, "featuredRunMedia": null, "reactionVideos": [], @@ -371597,7 +371097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 9282088, "featuredRunMedia": null, "reactionVideos": [], @@ -371617,7 +371117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 9282668, "featuredRunMedia": null, "reactionVideos": [], @@ -371637,7 +371137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 9284809, "featuredRunMedia": null, "reactionVideos": [], @@ -371657,7 +371157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9286334, "featuredRunMedia": null, "reactionVideos": [], @@ -371677,7 +371177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9289037, "featuredRunMedia": null, "reactionVideos": [], @@ -371697,7 +371197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 9289572, "featuredRunMedia": null, "reactionVideos": [], @@ -371717,7 +371217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9290143, "featuredRunMedia": null, "reactionVideos": [], @@ -371737,7 +371237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 9292697, "featuredRunMedia": null, "reactionVideos": [], @@ -371757,7 +371257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 9293005, "featuredRunMedia": null, "reactionVideos": [], @@ -371777,7 +371277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 9295268, "featuredRunMedia": null, "reactionVideos": [], @@ -371797,7 +371297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 9297077, "featuredRunMedia": null, "reactionVideos": [], @@ -371817,7 +371317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9297913, "featuredRunMedia": null, "reactionVideos": [], @@ -371837,7 +371337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9298362, "featuredRunMedia": null, "reactionVideos": [], @@ -371857,7 +371357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 9301046, "featuredRunMedia": null, "reactionVideos": [], @@ -371877,7 +371377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 9301282, "featuredRunMedia": null, "reactionVideos": [], @@ -371897,7 +371397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 9302494, "featuredRunMedia": null, "reactionVideos": [], @@ -371917,7 +371417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 9303654, "featuredRunMedia": null, "reactionVideos": [], @@ -371937,7 +371437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 9304145, "featuredRunMedia": null, "reactionVideos": [], @@ -371957,7 +371457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9304319, "featuredRunMedia": null, "reactionVideos": [], @@ -371977,7 +371477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 9306092, "featuredRunMedia": null, "reactionVideos": [], @@ -371997,7 +371497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 9306480, "featuredRunMedia": null, "reactionVideos": [], @@ -372017,7 +371517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9309230, "featuredRunMedia": null, "reactionVideos": [], @@ -372037,7 +371537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "144234", "time": 9309629, "featuredRunMedia": null, "reactionVideos": [], @@ -372057,7 +371557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 9311732, "featuredRunMedia": null, "reactionVideos": [], @@ -372077,7 +371577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 121, + "teamId": "144191", "time": 9313002, "featuredRunMedia": null, "reactionVideos": [], @@ -372097,7 +371597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 9313591, "featuredRunMedia": null, "reactionVideos": [], @@ -372117,7 +371617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 9314726, "featuredRunMedia": null, "reactionVideos": [], @@ -372137,7 +371637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "144071", "time": 9314898, "featuredRunMedia": null, "reactionVideos": [], @@ -372157,7 +371657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 9316927, "featuredRunMedia": null, "reactionVideos": [], @@ -372177,7 +371677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 9318219, "featuredRunMedia": null, "reactionVideos": [], @@ -372197,7 +371697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9320009, "featuredRunMedia": null, "reactionVideos": [], @@ -372217,7 +371717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9320055, "featuredRunMedia": null, "reactionVideos": [], @@ -372237,7 +371737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 9320354, "featuredRunMedia": null, "reactionVideos": [], @@ -372257,7 +371757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9320914, "featuredRunMedia": null, "reactionVideos": [], @@ -372277,7 +371777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 9321883, "featuredRunMedia": null, "reactionVideos": [], @@ -372297,7 +371797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9322500, "featuredRunMedia": null, "reactionVideos": [], @@ -372317,7 +371817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9323756, "featuredRunMedia": null, "reactionVideos": [], @@ -372337,7 +371837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "144356", "time": 9324688, "featuredRunMedia": null, "reactionVideos": [], @@ -372357,7 +371857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9325168, "featuredRunMedia": null, "reactionVideos": [], @@ -372377,7 +371877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 9325287, "featuredRunMedia": null, "reactionVideos": [], @@ -372397,7 +371897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9327355, "featuredRunMedia": null, "reactionVideos": [], @@ -372417,7 +371917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9327522, "featuredRunMedia": null, "reactionVideos": [], @@ -372437,7 +371937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9328265, "featuredRunMedia": null, "reactionVideos": [], @@ -372457,7 +371957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 9328534, "featuredRunMedia": null, "reactionVideos": [], @@ -372477,7 +371977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 9329271, "featuredRunMedia": null, "reactionVideos": [], @@ -372497,7 +371997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9330574, "featuredRunMedia": null, "reactionVideos": [], @@ -372521,7 +372021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9330632, "featuredRunMedia": null, "reactionVideos": [], @@ -372541,7 +372041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 9331539, "featuredRunMedia": null, "reactionVideos": [], @@ -372561,7 +372061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9332970, "featuredRunMedia": null, "reactionVideos": [], @@ -372581,7 +372081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9333200, "featuredRunMedia": null, "reactionVideos": [], @@ -372601,7 +372101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 9337723, "featuredRunMedia": null, "reactionVideos": [], @@ -372621,7 +372121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 9338239, "featuredRunMedia": null, "reactionVideos": [], @@ -372641,7 +372141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 9338693, "featuredRunMedia": null, "reactionVideos": [], @@ -372661,7 +372161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 400, + "teamId": "144470", "time": 9339014, "featuredRunMedia": null, "reactionVideos": [], @@ -372681,7 +372181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9339458, "featuredRunMedia": null, "reactionVideos": [], @@ -372701,7 +372201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 9341918, "featuredRunMedia": null, "reactionVideos": [], @@ -372721,7 +372221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "144094", "time": 9342882, "featuredRunMedia": null, "reactionVideos": [], @@ -372741,7 +372241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 9343075, "featuredRunMedia": null, "reactionVideos": [], @@ -372765,7 +372265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 9345602, "featuredRunMedia": null, "reactionVideos": [], @@ -372785,7 +372285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9345660, "featuredRunMedia": null, "reactionVideos": [], @@ -372805,7 +372305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "144164", "time": 9346403, "featuredRunMedia": null, "reactionVideos": [], @@ -372825,7 +372325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 9347485, "featuredRunMedia": null, "reactionVideos": [], @@ -372845,7 +372345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 51, + "teamId": "144121", "time": 9348206, "featuredRunMedia": null, "reactionVideos": [], @@ -372865,7 +372365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 9348400, "featuredRunMedia": null, "reactionVideos": [], @@ -372885,7 +372385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9349926, "featuredRunMedia": null, "reactionVideos": [], @@ -372905,7 +372405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 9350797, "featuredRunMedia": null, "reactionVideos": [], @@ -372925,7 +372425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 9353521, "featuredRunMedia": null, "reactionVideos": [], @@ -372945,7 +372445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 9354755, "featuredRunMedia": null, "reactionVideos": [], @@ -372965,7 +372465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9354872, "featuredRunMedia": null, "reactionVideos": [], @@ -372985,7 +372485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 9356336, "featuredRunMedia": null, "reactionVideos": [], @@ -373005,7 +372505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 427, + "teamId": "144497", "time": 9359051, "featuredRunMedia": null, "reactionVideos": [], @@ -373025,7 +372525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 9360529, "featuredRunMedia": null, "reactionVideos": [], @@ -373045,7 +372545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9362726, "featuredRunMedia": null, "reactionVideos": [], @@ -373065,7 +372565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 9363439, "featuredRunMedia": null, "reactionVideos": [], @@ -373085,7 +372585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9363904, "featuredRunMedia": null, "reactionVideos": [], @@ -373105,7 +372605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 9365070, "featuredRunMedia": null, "reactionVideos": [], @@ -373125,7 +372625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 9366585, "featuredRunMedia": null, "reactionVideos": [], @@ -373145,7 +372645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 9367282, "featuredRunMedia": null, "reactionVideos": [], @@ -373165,7 +372665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9367981, "featuredRunMedia": null, "reactionVideos": [], @@ -373185,7 +372685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 9369076, "featuredRunMedia": null, "reactionVideos": [], @@ -373205,7 +372705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9371040, "featuredRunMedia": null, "reactionVideos": [], @@ -373225,7 +372725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9372368, "featuredRunMedia": null, "reactionVideos": [], @@ -373245,7 +372745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 9372942, "featuredRunMedia": null, "reactionVideos": [], @@ -373265,7 +372765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "144205", "time": 9373016, "featuredRunMedia": null, "reactionVideos": [], @@ -373285,7 +372785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9373505, "featuredRunMedia": null, "reactionVideos": [], @@ -373305,7 +372805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9373834, "featuredRunMedia": null, "reactionVideos": [], @@ -373325,7 +372825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 9374979, "featuredRunMedia": null, "reactionVideos": [], @@ -373345,7 +372845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 9375487, "featuredRunMedia": null, "reactionVideos": [], @@ -373365,7 +372865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9375698, "featuredRunMedia": null, "reactionVideos": [], @@ -373385,7 +372885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9377218, "featuredRunMedia": null, "reactionVideos": [], @@ -373405,7 +372905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9378488, "featuredRunMedia": null, "reactionVideos": [], @@ -373425,7 +372925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 9378763, "featuredRunMedia": null, "reactionVideos": [], @@ -373445,7 +372945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 300, + "teamId": "144370", "time": 9379294, "featuredRunMedia": null, "reactionVideos": [], @@ -373465,7 +372965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 419, + "teamId": "144489", "time": 9379742, "featuredRunMedia": null, "reactionVideos": [], @@ -373485,7 +372985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 9379847, "featuredRunMedia": null, "reactionVideos": [], @@ -373505,7 +373005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 9381068, "featuredRunMedia": null, "reactionVideos": [], @@ -373525,7 +373025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9382685, "featuredRunMedia": null, "reactionVideos": [], @@ -373545,7 +373045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9383580, "featuredRunMedia": null, "reactionVideos": [], @@ -373565,7 +373065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9384843, "featuredRunMedia": null, "reactionVideos": [], @@ -373585,7 +373085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 296, + "teamId": "144366", "time": 9384904, "featuredRunMedia": null, "reactionVideos": [], @@ -373605,7 +373105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 9387255, "featuredRunMedia": null, "reactionVideos": [], @@ -373625,7 +373125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 9387969, "featuredRunMedia": null, "reactionVideos": [], @@ -373645,7 +373145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 9389260, "featuredRunMedia": null, "reactionVideos": [], @@ -373665,7 +373165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9389951, "featuredRunMedia": null, "reactionVideos": [], @@ -373685,7 +373185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9392802, "featuredRunMedia": null, "reactionVideos": [], @@ -373705,7 +373205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 9393779, "featuredRunMedia": null, "reactionVideos": [], @@ -373725,7 +373225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 9393956, "featuredRunMedia": null, "reactionVideos": [], @@ -373745,7 +373245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "144182", "time": 9394832, "featuredRunMedia": null, "reactionVideos": [], @@ -373765,7 +373265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9395874, "featuredRunMedia": null, "reactionVideos": [], @@ -373785,7 +373285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 121, + "teamId": "144191", "time": 9396567, "featuredRunMedia": null, "reactionVideos": [], @@ -373805,7 +373305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 185, + "teamId": "144255", "time": 9396748, "featuredRunMedia": null, "reactionVideos": [], @@ -373825,7 +373325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 9397311, "featuredRunMedia": null, "reactionVideos": [], @@ -373845,7 +373345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9397455, "featuredRunMedia": null, "reactionVideos": [], @@ -373865,7 +373365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9397506, "featuredRunMedia": null, "reactionVideos": [], @@ -373885,7 +373385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9397603, "featuredRunMedia": null, "reactionVideos": [], @@ -373905,7 +373405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9398038, "featuredRunMedia": null, "reactionVideos": [], @@ -373925,7 +373425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 9398668, "featuredRunMedia": null, "reactionVideos": [], @@ -373945,7 +373445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 9401652, "featuredRunMedia": null, "reactionVideos": [], @@ -373965,7 +373465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9402651, "featuredRunMedia": null, "reactionVideos": [], @@ -373985,7 +373485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9402707, "featuredRunMedia": null, "reactionVideos": [], @@ -374005,7 +373505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 9403510, "featuredRunMedia": null, "reactionVideos": [], @@ -374025,7 +373525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 9404160, "featuredRunMedia": null, "reactionVideos": [], @@ -374049,7 +373549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 9404664, "featuredRunMedia": null, "reactionVideos": [], @@ -374069,7 +373569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 56, + "teamId": "144126", "time": 9405925, "featuredRunMedia": null, "reactionVideos": [], @@ -374089,7 +373589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 9406583, "featuredRunMedia": null, "reactionVideos": [], @@ -374109,7 +373609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 9406694, "featuredRunMedia": null, "reactionVideos": [], @@ -374129,7 +373629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "144347", "time": 9408235, "featuredRunMedia": null, "reactionVideos": [], @@ -374149,7 +373649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 9408412, "featuredRunMedia": null, "reactionVideos": [], @@ -374169,7 +373669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 9408485, "featuredRunMedia": null, "reactionVideos": [], @@ -374189,7 +373689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 9410687, "featuredRunMedia": null, "reactionVideos": [], @@ -374209,7 +373709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 9410859, "featuredRunMedia": null, "reactionVideos": [], @@ -374229,7 +373729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 9411149, "featuredRunMedia": null, "reactionVideos": [], @@ -374249,7 +373749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9412103, "featuredRunMedia": null, "reactionVideos": [], @@ -374269,7 +373769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 9412579, "featuredRunMedia": null, "reactionVideos": [], @@ -374289,7 +373789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 9413173, "featuredRunMedia": null, "reactionVideos": [], @@ -374309,7 +373809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 9414147, "featuredRunMedia": null, "reactionVideos": [], @@ -374329,7 +373829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 356, + "teamId": "144426", "time": 9414752, "featuredRunMedia": null, "reactionVideos": [], @@ -374349,7 +373849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 9414887, "featuredRunMedia": null, "reactionVideos": [], @@ -374369,7 +373869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 9416129, "featuredRunMedia": null, "reactionVideos": [], @@ -374389,7 +373889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9417362, "featuredRunMedia": null, "reactionVideos": [], @@ -374409,7 +373909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 9419817, "featuredRunMedia": null, "reactionVideos": [], @@ -374429,7 +373929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 405, + "teamId": "144475", "time": 9419892, "featuredRunMedia": null, "reactionVideos": [], @@ -374449,7 +373949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 9420225, "featuredRunMedia": null, "reactionVideos": [], @@ -374469,7 +373969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9420514, "featuredRunMedia": null, "reactionVideos": [], @@ -374489,7 +373989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 9421571, "featuredRunMedia": null, "reactionVideos": [], @@ -374509,7 +374009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 9422133, "featuredRunMedia": null, "reactionVideos": [], @@ -374529,7 +374029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9422392, "featuredRunMedia": null, "reactionVideos": [], @@ -374549,7 +374049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 9422909, "featuredRunMedia": null, "reactionVideos": [], @@ -374569,7 +374069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9423098, "featuredRunMedia": null, "reactionVideos": [], @@ -374589,7 +374089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 9423485, "featuredRunMedia": null, "reactionVideos": [], @@ -374609,7 +374109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 9423728, "featuredRunMedia": null, "reactionVideos": [], @@ -374629,7 +374129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9424391, "featuredRunMedia": null, "reactionVideos": [], @@ -374649,7 +374149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 9425161, "featuredRunMedia": null, "reactionVideos": [], @@ -374669,7 +374169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 9426580, "featuredRunMedia": null, "reactionVideos": [], @@ -374689,7 +374189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9428217, "featuredRunMedia": null, "reactionVideos": [], @@ -374709,7 +374209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 9429130, "featuredRunMedia": null, "reactionVideos": [], @@ -374729,7 +374229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 9430407, "featuredRunMedia": null, "reactionVideos": [], @@ -374749,7 +374249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9430561, "featuredRunMedia": null, "reactionVideos": [], @@ -374769,7 +374269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 9430865, "featuredRunMedia": null, "reactionVideos": [], @@ -374789,7 +374289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 9432100, "featuredRunMedia": null, "reactionVideos": [], @@ -374809,7 +374309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 9432680, "featuredRunMedia": null, "reactionVideos": [], @@ -374829,7 +374329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 9432751, "featuredRunMedia": null, "reactionVideos": [], @@ -374849,7 +374349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 9432914, "featuredRunMedia": null, "reactionVideos": [], @@ -374869,7 +374369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9434294, "featuredRunMedia": null, "reactionVideos": [], @@ -374889,7 +374389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 9435380, "featuredRunMedia": null, "reactionVideos": [], @@ -374909,7 +374409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 9435534, "featuredRunMedia": null, "reactionVideos": [], @@ -374929,7 +374429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "144107", "time": 9436314, "featuredRunMedia": null, "reactionVideos": [], @@ -374949,7 +374449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 9436853, "featuredRunMedia": null, "reactionVideos": [], @@ -374969,7 +374469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "144128", "time": 9438453, "featuredRunMedia": null, "reactionVideos": [], @@ -374989,7 +374489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 9438746, "featuredRunMedia": null, "reactionVideos": [], @@ -375009,7 +374509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9440248, "featuredRunMedia": null, "reactionVideos": [], @@ -375029,7 +374529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 9442679, "featuredRunMedia": null, "reactionVideos": [], @@ -375049,7 +374549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9443381, "featuredRunMedia": null, "reactionVideos": [], @@ -375069,7 +374569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 9443593, "featuredRunMedia": null, "reactionVideos": [], @@ -375089,7 +374589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 9444363, "featuredRunMedia": null, "reactionVideos": [], @@ -375109,7 +374609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 9445167, "featuredRunMedia": null, "reactionVideos": [], @@ -375129,7 +374629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 9445553, "featuredRunMedia": null, "reactionVideos": [], @@ -375149,7 +374649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 9445688, "featuredRunMedia": null, "reactionVideos": [], @@ -375169,7 +374669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 9445807, "featuredRunMedia": null, "reactionVideos": [], @@ -375189,7 +374689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 9446393, "featuredRunMedia": null, "reactionVideos": [], @@ -375209,7 +374709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 447, + "teamId": "144517", "time": 9448330, "featuredRunMedia": null, "reactionVideos": [], @@ -375229,7 +374729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 9449212, "featuredRunMedia": null, "reactionVideos": [], @@ -375249,7 +374749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 9449591, "featuredRunMedia": null, "reactionVideos": [], @@ -375269,7 +374769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 9450006, "featuredRunMedia": null, "reactionVideos": [], @@ -375289,7 +374789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 9450043, "featuredRunMedia": null, "reactionVideos": [], @@ -375313,7 +374813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9450265, "featuredRunMedia": null, "reactionVideos": [], @@ -375333,7 +374833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9450714, "featuredRunMedia": null, "reactionVideos": [], @@ -375353,7 +374853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 9451014, "featuredRunMedia": null, "reactionVideos": [], @@ -375373,7 +374873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 9452046, "featuredRunMedia": null, "reactionVideos": [], @@ -375393,7 +374893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 9452634, "featuredRunMedia": null, "reactionVideos": [], @@ -375413,7 +374913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9453676, "featuredRunMedia": null, "reactionVideos": [], @@ -375433,7 +374933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 9453767, "featuredRunMedia": null, "reactionVideos": [], @@ -375453,7 +374953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 9454230, "featuredRunMedia": null, "reactionVideos": [], @@ -375473,7 +374973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 9455290, "featuredRunMedia": null, "reactionVideos": [], @@ -375493,7 +374993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 9455741, "featuredRunMedia": null, "reactionVideos": [], @@ -375513,7 +375013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 9457508, "featuredRunMedia": null, "reactionVideos": [], @@ -375533,7 +375033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9457894, "featuredRunMedia": null, "reactionVideos": [], @@ -375553,7 +375053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9459325, "featuredRunMedia": null, "reactionVideos": [], @@ -375573,7 +375073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9459360, "featuredRunMedia": null, "reactionVideos": [], @@ -375593,7 +375093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9459937, "featuredRunMedia": null, "reactionVideos": [], @@ -375613,7 +375113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 9462164, "featuredRunMedia": null, "reactionVideos": [], @@ -375633,7 +375133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9462226, "featuredRunMedia": null, "reactionVideos": [], @@ -375653,7 +375153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9464481, "featuredRunMedia": null, "reactionVideos": [], @@ -375673,7 +375173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 9465701, "featuredRunMedia": null, "reactionVideos": [], @@ -375693,7 +375193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 9466661, "featuredRunMedia": null, "reactionVideos": [], @@ -375713,7 +375213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9466944, "featuredRunMedia": null, "reactionVideos": [], @@ -375733,7 +375233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9468666, "featuredRunMedia": null, "reactionVideos": [], @@ -375753,7 +375253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9469943, "featuredRunMedia": null, "reactionVideos": [], @@ -375773,7 +375273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 9470509, "featuredRunMedia": null, "reactionVideos": [], @@ -375793,7 +375293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9470821, "featuredRunMedia": null, "reactionVideos": [], @@ -375813,7 +375313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 9472146, "featuredRunMedia": null, "reactionVideos": [], @@ -375833,7 +375333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9472821, "featuredRunMedia": null, "reactionVideos": [], @@ -375853,7 +375353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9476492, "featuredRunMedia": null, "reactionVideos": [], @@ -375877,7 +375377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9476747, "featuredRunMedia": null, "reactionVideos": [], @@ -375897,7 +375397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 9476835, "featuredRunMedia": null, "reactionVideos": [], @@ -375917,7 +375417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 9477151, "featuredRunMedia": null, "reactionVideos": [], @@ -375937,7 +375437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9477325, "featuredRunMedia": null, "reactionVideos": [], @@ -375957,7 +375457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9478486, "featuredRunMedia": null, "reactionVideos": [], @@ -375977,7 +375477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9479723, "featuredRunMedia": null, "reactionVideos": [], @@ -375997,7 +375497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 9480179, "featuredRunMedia": null, "reactionVideos": [], @@ -376017,7 +375517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 9480219, "featuredRunMedia": null, "reactionVideos": [], @@ -376037,7 +375537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 9480647, "featuredRunMedia": null, "reactionVideos": [], @@ -376057,7 +375557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9481040, "featuredRunMedia": null, "reactionVideos": [], @@ -376077,7 +375577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9482443, "featuredRunMedia": null, "reactionVideos": [], @@ -376097,7 +375597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 9482742, "featuredRunMedia": null, "reactionVideos": [], @@ -376117,7 +375617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 9483552, "featuredRunMedia": null, "reactionVideos": [], @@ -376137,7 +375637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 9483900, "featuredRunMedia": null, "reactionVideos": [], @@ -376157,7 +375657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9484173, "featuredRunMedia": null, "reactionVideos": [], @@ -376177,7 +375677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9489556, "featuredRunMedia": null, "reactionVideos": [], @@ -376197,7 +375697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 9491903, "featuredRunMedia": null, "reactionVideos": [], @@ -376217,7 +375717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 9492070, "featuredRunMedia": null, "reactionVideos": [], @@ -376237,7 +375737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 9492615, "featuredRunMedia": null, "reactionVideos": [], @@ -376257,7 +375757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9494727, "featuredRunMedia": null, "reactionVideos": [], @@ -376277,7 +375777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9494773, "featuredRunMedia": null, "reactionVideos": [], @@ -376297,7 +375797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 9495483, "featuredRunMedia": null, "reactionVideos": [], @@ -376317,7 +375817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 9495934, "featuredRunMedia": null, "reactionVideos": [], @@ -376337,7 +375837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 9496190, "featuredRunMedia": null, "reactionVideos": [], @@ -376357,7 +375857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9496996, "featuredRunMedia": null, "reactionVideos": [], @@ -376377,7 +375877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "144151", "time": 9497589, "featuredRunMedia": null, "reactionVideos": [], @@ -376397,7 +375897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 9500030, "featuredRunMedia": null, "reactionVideos": [], @@ -376421,7 +375921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 9501203, "featuredRunMedia": null, "reactionVideos": [], @@ -376441,7 +375941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 9501286, "featuredRunMedia": null, "reactionVideos": [], @@ -376461,7 +375961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9501371, "featuredRunMedia": null, "reactionVideos": [], @@ -376481,7 +375981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9501977, "featuredRunMedia": null, "reactionVideos": [], @@ -376501,7 +376001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 9502029, "featuredRunMedia": null, "reactionVideos": [], @@ -376521,7 +376021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 9502993, "featuredRunMedia": null, "reactionVideos": [], @@ -376541,7 +376041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 9503798, "featuredRunMedia": null, "reactionVideos": [], @@ -376561,7 +376061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 9506467, "featuredRunMedia": null, "reactionVideos": [], @@ -376581,7 +376081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 9508915, "featuredRunMedia": null, "reactionVideos": [], @@ -376601,7 +376101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 9511552, "featuredRunMedia": null, "reactionVideos": [], @@ -376621,7 +376121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9512117, "featuredRunMedia": null, "reactionVideos": [], @@ -376641,7 +376141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9513370, "featuredRunMedia": null, "reactionVideos": [], @@ -376661,7 +376161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 9513458, "featuredRunMedia": null, "reactionVideos": [], @@ -376681,7 +376181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9514374, "featuredRunMedia": null, "reactionVideos": [], @@ -376701,7 +376201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9514575, "featuredRunMedia": null, "reactionVideos": [], @@ -376721,7 +376221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9515128, "featuredRunMedia": null, "reactionVideos": [], @@ -376741,7 +376241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9517597, "featuredRunMedia": null, "reactionVideos": [], @@ -376761,7 +376261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9521361, "featuredRunMedia": null, "reactionVideos": [], @@ -376781,7 +376281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 9522092, "featuredRunMedia": null, "reactionVideos": [], @@ -376801,7 +376301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9522144, "featuredRunMedia": null, "reactionVideos": [], @@ -376821,7 +376321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 9524180, "featuredRunMedia": null, "reactionVideos": [], @@ -376841,7 +376341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 9524688, "featuredRunMedia": null, "reactionVideos": [], @@ -376861,7 +376361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 9525188, "featuredRunMedia": null, "reactionVideos": [], @@ -376881,7 +376381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 9526534, "featuredRunMedia": null, "reactionVideos": [], @@ -376901,7 +376401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 9529646, "featuredRunMedia": null, "reactionVideos": [], @@ -376921,7 +376421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 9530382, "featuredRunMedia": null, "reactionVideos": [], @@ -376941,7 +376441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 9530500, "featuredRunMedia": null, "reactionVideos": [], @@ -376961,7 +376461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9531016, "featuredRunMedia": null, "reactionVideos": [], @@ -376981,7 +376481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 9534263, "featuredRunMedia": null, "reactionVideos": [], @@ -377001,7 +376501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 9536568, "featuredRunMedia": null, "reactionVideos": [], @@ -377021,7 +376521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9536702, "featuredRunMedia": null, "reactionVideos": [], @@ -377041,7 +376541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 9538237, "featuredRunMedia": null, "reactionVideos": [], @@ -377061,7 +376561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 9538994, "featuredRunMedia": null, "reactionVideos": [], @@ -377081,7 +376581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 9540334, "featuredRunMedia": null, "reactionVideos": [], @@ -377101,7 +376601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 9541020, "featuredRunMedia": null, "reactionVideos": [], @@ -377121,7 +376621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9541147, "featuredRunMedia": null, "reactionVideos": [], @@ -377141,7 +376641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 9541730, "featuredRunMedia": null, "reactionVideos": [], @@ -377165,7 +376665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 9542342, "featuredRunMedia": null, "reactionVideos": [], @@ -377185,7 +376685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 137, + "teamId": "144207", "time": 9543181, "featuredRunMedia": null, "reactionVideos": [], @@ -377205,7 +376705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 9546002, "featuredRunMedia": null, "reactionVideos": [], @@ -377225,7 +376725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 9548509, "featuredRunMedia": null, "reactionVideos": [], @@ -377245,7 +376745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 9548714, "featuredRunMedia": null, "reactionVideos": [], @@ -377265,7 +376765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 9548781, "featuredRunMedia": null, "reactionVideos": [], @@ -377285,7 +376785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 9551283, "featuredRunMedia": null, "reactionVideos": [], @@ -377305,7 +376805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 9551691, "featuredRunMedia": null, "reactionVideos": [], @@ -377325,7 +376825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 9552087, "featuredRunMedia": null, "reactionVideos": [], @@ -377345,7 +376845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 9552422, "featuredRunMedia": null, "reactionVideos": [], @@ -377365,7 +376865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9552954, "featuredRunMedia": null, "reactionVideos": [], @@ -377385,7 +376885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 9553167, "featuredRunMedia": null, "reactionVideos": [], @@ -377405,7 +376905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 9553199, "featuredRunMedia": null, "reactionVideos": [], @@ -377425,7 +376925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "144231", "time": 9555540, "featuredRunMedia": null, "reactionVideos": [], @@ -377449,7 +376949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9556534, "featuredRunMedia": null, "reactionVideos": [], @@ -377469,7 +376969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 9557255, "featuredRunMedia": null, "reactionVideos": [], @@ -377489,7 +376989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9557801, "featuredRunMedia": null, "reactionVideos": [], @@ -377509,7 +377009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9559547, "featuredRunMedia": null, "reactionVideos": [], @@ -377529,7 +377029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 9560171, "featuredRunMedia": null, "reactionVideos": [], @@ -377549,7 +377049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 9560579, "featuredRunMedia": null, "reactionVideos": [], @@ -377569,7 +377069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9560839, "featuredRunMedia": null, "reactionVideos": [], @@ -377589,7 +377089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 9561483, "featuredRunMedia": null, "reactionVideos": [], @@ -377609,7 +377109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 9562532, "featuredRunMedia": null, "reactionVideos": [], @@ -377629,7 +377129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9562558, "featuredRunMedia": null, "reactionVideos": [], @@ -377649,7 +377149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9562825, "featuredRunMedia": null, "reactionVideos": [], @@ -377669,7 +377169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 9564000, "featuredRunMedia": null, "reactionVideos": [], @@ -377689,7 +377189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 9564363, "featuredRunMedia": null, "reactionVideos": [], @@ -377709,7 +377209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 9564825, "featuredRunMedia": null, "reactionVideos": [], @@ -377729,7 +377229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9565228, "featuredRunMedia": null, "reactionVideos": [], @@ -377749,7 +377249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 9565371, "featuredRunMedia": null, "reactionVideos": [], @@ -377769,7 +377269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 9566656, "featuredRunMedia": null, "reactionVideos": [], @@ -377789,7 +377289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 9567654, "featuredRunMedia": null, "reactionVideos": [], @@ -377809,7 +377309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 9568676, "featuredRunMedia": null, "reactionVideos": [], @@ -377829,7 +377329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9568887, "featuredRunMedia": null, "reactionVideos": [], @@ -377849,7 +377349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 9568931, "featuredRunMedia": null, "reactionVideos": [], @@ -377869,7 +377369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 9569154, "featuredRunMedia": null, "reactionVideos": [], @@ -377889,7 +377389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 9569190, "featuredRunMedia": null, "reactionVideos": [], @@ -377909,7 +377409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 9569482, "featuredRunMedia": null, "reactionVideos": [], @@ -377929,7 +377429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9570907, "featuredRunMedia": null, "reactionVideos": [], @@ -377949,7 +377449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 9572008, "featuredRunMedia": null, "reactionVideos": [], @@ -377969,7 +377469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9573809, "featuredRunMedia": null, "reactionVideos": [], @@ -377989,7 +377489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 9575833, "featuredRunMedia": null, "reactionVideos": [], @@ -378009,7 +377509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 9575880, "featuredRunMedia": null, "reactionVideos": [], @@ -378029,7 +377529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9576908, "featuredRunMedia": null, "reactionVideos": [], @@ -378049,7 +377549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 9577479, "featuredRunMedia": null, "reactionVideos": [], @@ -378073,7 +377573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9578304, "featuredRunMedia": null, "reactionVideos": [], @@ -378093,7 +377593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 129, + "teamId": "144199", "time": 9579463, "featuredRunMedia": null, "reactionVideos": [], @@ -378113,7 +377613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 9580625, "featuredRunMedia": null, "reactionVideos": [], @@ -378133,7 +377633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 9582133, "featuredRunMedia": null, "reactionVideos": [], @@ -378153,7 +377653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9582421, "featuredRunMedia": null, "reactionVideos": [], @@ -378173,7 +377673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 56, + "teamId": "144126", "time": 9582925, "featuredRunMedia": null, "reactionVideos": [], @@ -378193,7 +377693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 9582965, "featuredRunMedia": null, "reactionVideos": [], @@ -378213,7 +377713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 9583159, "featuredRunMedia": null, "reactionVideos": [], @@ -378233,7 +377733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9584305, "featuredRunMedia": null, "reactionVideos": [], @@ -378253,7 +377753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "144277", "time": 9587133, "featuredRunMedia": null, "reactionVideos": [], @@ -378273,7 +377773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 9587560, "featuredRunMedia": null, "reactionVideos": [], @@ -378293,7 +377793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9587922, "featuredRunMedia": null, "reactionVideos": [], @@ -378313,7 +377813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9588273, "featuredRunMedia": null, "reactionVideos": [], @@ -378333,7 +377833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 9592710, "featuredRunMedia": null, "reactionVideos": [], @@ -378353,7 +377853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 9592980, "featuredRunMedia": null, "reactionVideos": [], @@ -378373,7 +377873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9593042, "featuredRunMedia": null, "reactionVideos": [], @@ -378393,7 +377893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "144182", "time": 9594185, "featuredRunMedia": null, "reactionVideos": [], @@ -378413,7 +377913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 9596698, "featuredRunMedia": null, "reactionVideos": [], @@ -378433,7 +377933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 9599405, "featuredRunMedia": null, "reactionVideos": [], @@ -378453,7 +377953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 9599893, "featuredRunMedia": null, "reactionVideos": [], @@ -378473,7 +377973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "144088", "time": 9600512, "featuredRunMedia": null, "reactionVideos": [], @@ -378493,7 +377993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9600738, "featuredRunMedia": null, "reactionVideos": [], @@ -378517,7 +378017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9601615, "featuredRunMedia": null, "reactionVideos": [], @@ -378537,7 +378037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9603016, "featuredRunMedia": null, "reactionVideos": [], @@ -378557,7 +378057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 9603617, "featuredRunMedia": null, "reactionVideos": [], @@ -378577,7 +378077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9603661, "featuredRunMedia": null, "reactionVideos": [], @@ -378597,7 +378097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9605182, "featuredRunMedia": null, "reactionVideos": [], @@ -378617,7 +378117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9610400, "featuredRunMedia": null, "reactionVideos": [], @@ -378637,7 +378137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9610747, "featuredRunMedia": null, "reactionVideos": [], @@ -378657,7 +378157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9610997, "featuredRunMedia": null, "reactionVideos": [], @@ -378677,7 +378177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 9611584, "featuredRunMedia": null, "reactionVideos": [], @@ -378697,7 +378197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 9612492, "featuredRunMedia": null, "reactionVideos": [], @@ -378717,7 +378217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 9615289, "featuredRunMedia": null, "reactionVideos": [], @@ -378737,7 +378237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 9615540, "featuredRunMedia": null, "reactionVideos": [], @@ -378757,7 +378257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 9616127, "featuredRunMedia": null, "reactionVideos": [], @@ -378777,7 +378277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 9616342, "featuredRunMedia": null, "reactionVideos": [], @@ -378797,7 +378297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9616894, "featuredRunMedia": null, "reactionVideos": [], @@ -378817,7 +378317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9617993, "featuredRunMedia": null, "reactionVideos": [], @@ -378837,7 +378337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 9618066, "featuredRunMedia": null, "reactionVideos": [], @@ -378857,7 +378357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9618357, "featuredRunMedia": null, "reactionVideos": [], @@ -378877,7 +378377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 9624182, "featuredRunMedia": null, "reactionVideos": [], @@ -378897,7 +378397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 9624248, "featuredRunMedia": null, "reactionVideos": [], @@ -378917,7 +378417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 9624380, "featuredRunMedia": null, "reactionVideos": [], @@ -378937,7 +378437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9627005, "featuredRunMedia": null, "reactionVideos": [], @@ -378957,7 +378457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 9627136, "featuredRunMedia": null, "reactionVideos": [], @@ -378977,7 +378477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9628483, "featuredRunMedia": null, "reactionVideos": [], @@ -378997,7 +378497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 9629190, "featuredRunMedia": null, "reactionVideos": [], @@ -379017,7 +378517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 9631899, "featuredRunMedia": null, "reactionVideos": [], @@ -379037,7 +378537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 9632909, "featuredRunMedia": null, "reactionVideos": [], @@ -379057,7 +378557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 9632970, "featuredRunMedia": null, "reactionVideos": [], @@ -379077,7 +378577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 9634022, "featuredRunMedia": null, "reactionVideos": [], @@ -379097,7 +378597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 9634109, "featuredRunMedia": null, "reactionVideos": [], @@ -379117,7 +378617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9634966, "featuredRunMedia": null, "reactionVideos": [], @@ -379137,7 +378637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9634997, "featuredRunMedia": null, "reactionVideos": [], @@ -379157,7 +378657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 9637124, "featuredRunMedia": null, "reactionVideos": [], @@ -379177,7 +378677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9638299, "featuredRunMedia": null, "reactionVideos": [], @@ -379197,7 +378697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9639086, "featuredRunMedia": null, "reactionVideos": [], @@ -379217,7 +378717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 9639178, "featuredRunMedia": null, "reactionVideos": [], @@ -379237,7 +378737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9639426, "featuredRunMedia": null, "reactionVideos": [], @@ -379257,7 +378757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 9641110, "featuredRunMedia": null, "reactionVideos": [], @@ -379277,7 +378777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 9642173, "featuredRunMedia": null, "reactionVideos": [], @@ -379301,7 +378801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 9643649, "featuredRunMedia": null, "reactionVideos": [], @@ -379321,7 +378821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "144367", "time": 9643939, "featuredRunMedia": null, "reactionVideos": [], @@ -379341,7 +378841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 9644753, "featuredRunMedia": null, "reactionVideos": [], @@ -379361,7 +378861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9647489, "featuredRunMedia": null, "reactionVideos": [], @@ -379385,7 +378885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9649853, "featuredRunMedia": null, "reactionVideos": [], @@ -379405,7 +378905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9649911, "featuredRunMedia": null, "reactionVideos": [], @@ -379425,7 +378925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 9651483, "featuredRunMedia": null, "reactionVideos": [], @@ -379445,7 +378945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 9652561, "featuredRunMedia": null, "reactionVideos": [], @@ -379465,7 +378965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 9652699, "featuredRunMedia": null, "reactionVideos": [], @@ -379485,7 +378985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9653926, "featuredRunMedia": null, "reactionVideos": [], @@ -379505,7 +379005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 9653966, "featuredRunMedia": null, "reactionVideos": [], @@ -379525,7 +379025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9654676, "featuredRunMedia": null, "reactionVideos": [], @@ -379545,7 +379045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 9655310, "featuredRunMedia": null, "reactionVideos": [], @@ -379565,7 +379065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 9655561, "featuredRunMedia": null, "reactionVideos": [], @@ -379585,7 +379085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9655707, "featuredRunMedia": null, "reactionVideos": [], @@ -379605,7 +379105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9655748, "featuredRunMedia": null, "reactionVideos": [], @@ -379625,7 +379125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "144289", "time": 9656321, "featuredRunMedia": null, "reactionVideos": [], @@ -379645,7 +379145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 9656356, "featuredRunMedia": null, "reactionVideos": [], @@ -379665,7 +379165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9656381, "featuredRunMedia": null, "reactionVideos": [], @@ -379685,7 +379185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 9657207, "featuredRunMedia": null, "reactionVideos": [], @@ -379705,7 +379205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 129, + "teamId": "144199", "time": 9659496, "featuredRunMedia": null, "reactionVideos": [], @@ -379725,7 +379225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 9660126, "featuredRunMedia": null, "reactionVideos": [], @@ -379745,7 +379245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 9660689, "featuredRunMedia": null, "reactionVideos": [], @@ -379765,7 +379265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 9661398, "featuredRunMedia": null, "reactionVideos": [], @@ -379785,7 +379285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 9661965, "featuredRunMedia": null, "reactionVideos": [], @@ -379805,7 +379305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9663011, "featuredRunMedia": null, "reactionVideos": [], @@ -379825,7 +379325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 9663312, "featuredRunMedia": null, "reactionVideos": [], @@ -379845,7 +379345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 9663809, "featuredRunMedia": null, "reactionVideos": [], @@ -379865,7 +379365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 9664629, "featuredRunMedia": null, "reactionVideos": [], @@ -379885,7 +379385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 9664692, "featuredRunMedia": null, "reactionVideos": [], @@ -379905,7 +379405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 9665717, "featuredRunMedia": null, "reactionVideos": [], @@ -379925,7 +379425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9665754, "featuredRunMedia": null, "reactionVideos": [], @@ -379945,7 +379445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9666172, "featuredRunMedia": null, "reactionVideos": [], @@ -379965,7 +379465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 9666493, "featuredRunMedia": null, "reactionVideos": [], @@ -379985,7 +379485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9666658, "featuredRunMedia": null, "reactionVideos": [], @@ -380005,7 +379505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 9666947, "featuredRunMedia": null, "reactionVideos": [], @@ -380025,7 +379525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 9667788, "featuredRunMedia": null, "reactionVideos": [], @@ -380049,7 +379549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9668386, "featuredRunMedia": null, "reactionVideos": [], @@ -380069,7 +379569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9668764, "featuredRunMedia": null, "reactionVideos": [], @@ -380089,7 +379589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 9669984, "featuredRunMedia": null, "reactionVideos": [], @@ -380109,7 +379609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 9670860, "featuredRunMedia": null, "reactionVideos": [], @@ -380129,7 +379629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 9672888, "featuredRunMedia": null, "reactionVideos": [], @@ -380149,7 +379649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9673576, "featuredRunMedia": null, "reactionVideos": [], @@ -380169,7 +379669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 9674682, "featuredRunMedia": null, "reactionVideos": [], @@ -380189,7 +379689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 9674719, "featuredRunMedia": null, "reactionVideos": [], @@ -380209,7 +379709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9674851, "featuredRunMedia": null, "reactionVideos": [], @@ -380229,7 +379729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 9675973, "featuredRunMedia": null, "reactionVideos": [], @@ -380249,7 +379749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 9676031, "featuredRunMedia": null, "reactionVideos": [], @@ -380269,7 +379769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "144076", "time": 9677843, "featuredRunMedia": null, "reactionVideos": [], @@ -380289,7 +379789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 275, + "teamId": "144345", "time": 9679119, "featuredRunMedia": null, "reactionVideos": [], @@ -380309,7 +379809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 9679335, "featuredRunMedia": null, "reactionVideos": [], @@ -380329,7 +379829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "144356", "time": 9682509, "featuredRunMedia": null, "reactionVideos": [], @@ -380349,7 +379849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 9683924, "featuredRunMedia": null, "reactionVideos": [], @@ -380369,7 +379869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 9683987, "featuredRunMedia": null, "reactionVideos": [], @@ -380389,7 +379889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 9684045, "featuredRunMedia": null, "reactionVideos": [], @@ -380409,7 +379909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 9684203, "featuredRunMedia": null, "reactionVideos": [], @@ -380429,7 +379929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 9684298, "featuredRunMedia": null, "reactionVideos": [], @@ -380449,7 +379949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9686647, "featuredRunMedia": null, "reactionVideos": [], @@ -380469,7 +379969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9687297, "featuredRunMedia": null, "reactionVideos": [], @@ -380489,7 +379989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9688260, "featuredRunMedia": null, "reactionVideos": [], @@ -380509,7 +380009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 9688690, "featuredRunMedia": null, "reactionVideos": [], @@ -380529,7 +380029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 9688949, "featuredRunMedia": null, "reactionVideos": [], @@ -380549,7 +380049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 9689733, "featuredRunMedia": null, "reactionVideos": [], @@ -380569,7 +380069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 9689812, "featuredRunMedia": null, "reactionVideos": [], @@ -380589,7 +380089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 9690636, "featuredRunMedia": null, "reactionVideos": [], @@ -380609,7 +380109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9690755, "featuredRunMedia": null, "reactionVideos": [], @@ -380629,7 +380129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9692249, "featuredRunMedia": null, "reactionVideos": [], @@ -380649,7 +380149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 9698728, "featuredRunMedia": null, "reactionVideos": [], @@ -380669,7 +380169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 364, + "teamId": "144434", "time": 9701018, "featuredRunMedia": null, "reactionVideos": [], @@ -380689,7 +380189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 9701648, "featuredRunMedia": null, "reactionVideos": [], @@ -380709,7 +380209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 9701895, "featuredRunMedia": null, "reactionVideos": [], @@ -380729,7 +380229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 9701998, "featuredRunMedia": null, "reactionVideos": [], @@ -380749,7 +380249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 9702229, "featuredRunMedia": null, "reactionVideos": [], @@ -380769,7 +380269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9703345, "featuredRunMedia": null, "reactionVideos": [], @@ -380789,7 +380289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 9703495, "featuredRunMedia": null, "reactionVideos": [], @@ -380809,7 +380309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 9704380, "featuredRunMedia": null, "reactionVideos": [], @@ -380829,7 +380329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9705228, "featuredRunMedia": null, "reactionVideos": [], @@ -380849,7 +380349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 9707703, "featuredRunMedia": null, "reactionVideos": [], @@ -380869,7 +380369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 9709447, "featuredRunMedia": null, "reactionVideos": [], @@ -380889,7 +380389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9710102, "featuredRunMedia": null, "reactionVideos": [], @@ -380909,7 +380409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9710831, "featuredRunMedia": null, "reactionVideos": [], @@ -380929,7 +380429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9712112, "featuredRunMedia": null, "reactionVideos": [], @@ -380949,7 +380449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 9712166, "featuredRunMedia": null, "reactionVideos": [], @@ -380969,7 +380469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "144348", "time": 9712284, "featuredRunMedia": null, "reactionVideos": [], @@ -380989,7 +380489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 9713959, "featuredRunMedia": null, "reactionVideos": [], @@ -381009,7 +380509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9713984, "featuredRunMedia": null, "reactionVideos": [], @@ -381029,7 +380529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9716107, "featuredRunMedia": null, "reactionVideos": [], @@ -381049,7 +380549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9716641, "featuredRunMedia": null, "reactionVideos": [], @@ -381069,7 +380569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 9716915, "featuredRunMedia": null, "reactionVideos": [], @@ -381089,7 +380589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9717486, "featuredRunMedia": null, "reactionVideos": [], @@ -381109,7 +380609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "144204", "time": 9717526, "featuredRunMedia": null, "reactionVideos": [], @@ -381129,7 +380629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 56, + "teamId": "144126", "time": 9718470, "featuredRunMedia": null, "reactionVideos": [], @@ -381149,7 +380649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 9719541, "featuredRunMedia": null, "reactionVideos": [], @@ -381169,7 +380669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9720617, "featuredRunMedia": null, "reactionVideos": [], @@ -381189,7 +380689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "144092", "time": 9721199, "featuredRunMedia": null, "reactionVideos": [], @@ -381209,7 +380709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 9721440, "featuredRunMedia": null, "reactionVideos": [], @@ -381229,7 +380729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 9722669, "featuredRunMedia": null, "reactionVideos": [], @@ -381249,7 +380749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9724236, "featuredRunMedia": null, "reactionVideos": [], @@ -381269,7 +380769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9726076, "featuredRunMedia": null, "reactionVideos": [], @@ -381289,7 +380789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 9729272, "featuredRunMedia": null, "reactionVideos": [], @@ -381309,7 +380809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 9729653, "featuredRunMedia": null, "reactionVideos": [], @@ -381329,7 +380829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9729779, "featuredRunMedia": null, "reactionVideos": [], @@ -381349,7 +380849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 9730272, "featuredRunMedia": null, "reactionVideos": [], @@ -381369,7 +380869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 9732960, "featuredRunMedia": null, "reactionVideos": [], @@ -381389,7 +380889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 9733299, "featuredRunMedia": null, "reactionVideos": [], @@ -381409,7 +380909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 9734729, "featuredRunMedia": null, "reactionVideos": [], @@ -381429,7 +380929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9736948, "featuredRunMedia": null, "reactionVideos": [], @@ -381449,7 +380949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 360, + "teamId": "144430", "time": 9739640, "featuredRunMedia": null, "reactionVideos": [], @@ -381469,7 +380969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 9739846, "featuredRunMedia": null, "reactionVideos": [], @@ -381489,7 +380989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 9741863, "featuredRunMedia": null, "reactionVideos": [], @@ -381509,7 +381009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 9741897, "featuredRunMedia": null, "reactionVideos": [], @@ -381529,7 +381029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 9744666, "featuredRunMedia": null, "reactionVideos": [], @@ -381549,7 +381049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "144348", "time": 9745198, "featuredRunMedia": null, "reactionVideos": [], @@ -381569,7 +381069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 9745279, "featuredRunMedia": null, "reactionVideos": [], @@ -381589,7 +381089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 9746438, "featuredRunMedia": null, "reactionVideos": [], @@ -381609,7 +381109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9746482, "featuredRunMedia": null, "reactionVideos": [], @@ -381629,7 +381129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 9747479, "featuredRunMedia": null, "reactionVideos": [], @@ -381649,7 +381149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 9748666, "featuredRunMedia": null, "reactionVideos": [], @@ -381669,7 +381169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 9749029, "featuredRunMedia": null, "reactionVideos": [], @@ -381689,7 +381189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 9749893, "featuredRunMedia": null, "reactionVideos": [], @@ -381709,7 +381209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "144317", "time": 9750661, "featuredRunMedia": null, "reactionVideos": [], @@ -381729,7 +381229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9751410, "featuredRunMedia": null, "reactionVideos": [], @@ -381749,7 +381249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 9752998, "featuredRunMedia": null, "reactionVideos": [], @@ -381769,7 +381269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "144287", "time": 9753447, "featuredRunMedia": null, "reactionVideos": [], @@ -381789,7 +381289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 9753762, "featuredRunMedia": null, "reactionVideos": [], @@ -381809,7 +381309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 9754382, "featuredRunMedia": null, "reactionVideos": [], @@ -381829,7 +381329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 9754922, "featuredRunMedia": null, "reactionVideos": [], @@ -381849,7 +381349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 9755692, "featuredRunMedia": null, "reactionVideos": [], @@ -381869,7 +381369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 9757169, "featuredRunMedia": null, "reactionVideos": [], @@ -381889,7 +381389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9757655, "featuredRunMedia": null, "reactionVideos": [], @@ -381913,7 +381413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9758712, "featuredRunMedia": null, "reactionVideos": [], @@ -381933,7 +381433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 9759422, "featuredRunMedia": null, "reactionVideos": [], @@ -381953,7 +381453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 9760301, "featuredRunMedia": null, "reactionVideos": [], @@ -381973,7 +381473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 9763422, "featuredRunMedia": null, "reactionVideos": [], @@ -381993,7 +381493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "144160", "time": 9764872, "featuredRunMedia": null, "reactionVideos": [], @@ -382013,7 +381513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 9765015, "featuredRunMedia": null, "reactionVideos": [], @@ -382033,7 +381533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 9765077, "featuredRunMedia": null, "reactionVideos": [], @@ -382053,7 +381553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9765119, "featuredRunMedia": null, "reactionVideos": [], @@ -382073,7 +381573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 9767079, "featuredRunMedia": null, "reactionVideos": [], @@ -382093,7 +381593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 9767335, "featuredRunMedia": null, "reactionVideos": [], @@ -382113,7 +381613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9768090, "featuredRunMedia": null, "reactionVideos": [], @@ -382133,7 +381633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9771882, "featuredRunMedia": null, "reactionVideos": [], @@ -382153,7 +381653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9772036, "featuredRunMedia": null, "reactionVideos": [], @@ -382173,7 +381673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 100, + "teamId": "144170", "time": 9772501, "featuredRunMedia": null, "reactionVideos": [], @@ -382193,7 +381693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9772646, "featuredRunMedia": null, "reactionVideos": [], @@ -382213,7 +381713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 9772731, "featuredRunMedia": null, "reactionVideos": [], @@ -382233,7 +381733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9772782, "featuredRunMedia": null, "reactionVideos": [], @@ -382253,7 +381753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9772905, "featuredRunMedia": null, "reactionVideos": [], @@ -382273,7 +381773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "144356", "time": 9774423, "featuredRunMedia": null, "reactionVideos": [], @@ -382293,7 +381793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9777166, "featuredRunMedia": null, "reactionVideos": [], @@ -382313,7 +381813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "144073", "time": 9777416, "featuredRunMedia": null, "reactionVideos": [], @@ -382333,7 +381833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 9778309, "featuredRunMedia": null, "reactionVideos": [], @@ -382353,7 +381853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9779178, "featuredRunMedia": null, "reactionVideos": [], @@ -382373,7 +381873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9779374, "featuredRunMedia": null, "reactionVideos": [], @@ -382393,7 +381893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 9781273, "featuredRunMedia": null, "reactionVideos": [], @@ -382413,7 +381913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "144277", "time": 9781706, "featuredRunMedia": null, "reactionVideos": [], @@ -382433,7 +381933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9782806, "featuredRunMedia": null, "reactionVideos": [], @@ -382453,7 +381953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9783438, "featuredRunMedia": null, "reactionVideos": [], @@ -382473,7 +381973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9783695, "featuredRunMedia": null, "reactionVideos": [], @@ -382493,7 +381993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 9784532, "featuredRunMedia": null, "reactionVideos": [], @@ -382513,7 +382013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 9784567, "featuredRunMedia": null, "reactionVideos": [], @@ -382533,7 +382033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "144260", "time": 9784939, "featuredRunMedia": null, "reactionVideos": [], @@ -382553,7 +382053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 306, + "teamId": "144376", "time": 9785834, "featuredRunMedia": null, "reactionVideos": [], @@ -382573,7 +382073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 9786256, "featuredRunMedia": null, "reactionVideos": [], @@ -382593,7 +382093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 9786586, "featuredRunMedia": null, "reactionVideos": [], @@ -382613,7 +382113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9786752, "featuredRunMedia": null, "reactionVideos": [], @@ -382633,7 +382133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 9787203, "featuredRunMedia": null, "reactionVideos": [], @@ -382653,7 +382153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 121, + "teamId": "144191", "time": 9787701, "featuredRunMedia": null, "reactionVideos": [], @@ -382673,7 +382173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9788208, "featuredRunMedia": null, "reactionVideos": [], @@ -382693,7 +382193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 263, + "teamId": "144333", "time": 9789493, "featuredRunMedia": null, "reactionVideos": [], @@ -382713,7 +382213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9790756, "featuredRunMedia": null, "reactionVideos": [], @@ -382733,7 +382233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 9790902, "featuredRunMedia": null, "reactionVideos": [], @@ -382753,7 +382253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 9795027, "featuredRunMedia": null, "reactionVideos": [], @@ -382773,7 +382273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 9795071, "featuredRunMedia": null, "reactionVideos": [], @@ -382793,7 +382293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9795289, "featuredRunMedia": null, "reactionVideos": [], @@ -382813,7 +382313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9795738, "featuredRunMedia": null, "reactionVideos": [], @@ -382833,7 +382333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 9795970, "featuredRunMedia": null, "reactionVideos": [], @@ -382853,7 +382353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 9796015, "featuredRunMedia": null, "reactionVideos": [], @@ -382873,7 +382373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 9798517, "featuredRunMedia": null, "reactionVideos": [], @@ -382893,7 +382393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "144231", "time": 9799935, "featuredRunMedia": null, "reactionVideos": [], @@ -382913,7 +382413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 9800539, "featuredRunMedia": null, "reactionVideos": [], @@ -382933,7 +382433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 9801088, "featuredRunMedia": null, "reactionVideos": [], @@ -382953,7 +382453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 9801211, "featuredRunMedia": null, "reactionVideos": [], @@ -382973,7 +382473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 435, + "teamId": "144505", "time": 9801448, "featuredRunMedia": null, "reactionVideos": [], @@ -382993,7 +382493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 9801730, "featuredRunMedia": null, "reactionVideos": [], @@ -383013,7 +382513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9802627, "featuredRunMedia": null, "reactionVideos": [], @@ -383033,7 +382533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 9803347, "featuredRunMedia": null, "reactionVideos": [], @@ -383053,7 +382553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9803982, "featuredRunMedia": null, "reactionVideos": [], @@ -383073,7 +382573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 9804968, "featuredRunMedia": null, "reactionVideos": [], @@ -383093,7 +382593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9807278, "featuredRunMedia": null, "reactionVideos": [], @@ -383113,7 +382613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 9807617, "featuredRunMedia": null, "reactionVideos": [], @@ -383133,7 +382633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9807648, "featuredRunMedia": null, "reactionVideos": [], @@ -383153,7 +382653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 9810410, "featuredRunMedia": null, "reactionVideos": [], @@ -383173,7 +382673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 9812517, "featuredRunMedia": null, "reactionVideos": [], @@ -383193,7 +382693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 9814640, "featuredRunMedia": null, "reactionVideos": [], @@ -383213,7 +382713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9815143, "featuredRunMedia": null, "reactionVideos": [], @@ -383233,7 +382733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 9815181, "featuredRunMedia": null, "reactionVideos": [], @@ -383253,7 +382753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 9815484, "featuredRunMedia": null, "reactionVideos": [], @@ -383273,7 +382773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9815661, "featuredRunMedia": null, "reactionVideos": [], @@ -383293,7 +382793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9817806, "featuredRunMedia": null, "reactionVideos": [], @@ -383313,7 +382813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9817895, "featuredRunMedia": null, "reactionVideos": [], @@ -383333,7 +382833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9818979, "featuredRunMedia": null, "reactionVideos": [], @@ -383353,7 +382853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 9819691, "featuredRunMedia": null, "reactionVideos": [], @@ -383373,7 +382873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 9825453, "featuredRunMedia": null, "reactionVideos": [], @@ -383393,7 +382893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 9826402, "featuredRunMedia": null, "reactionVideos": [], @@ -383413,7 +382913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 9826496, "featuredRunMedia": null, "reactionVideos": [], @@ -383433,7 +382933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 9828288, "featuredRunMedia": null, "reactionVideos": [], @@ -383453,7 +382953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 9828339, "featuredRunMedia": null, "reactionVideos": [], @@ -383473,7 +382973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9828422, "featuredRunMedia": null, "reactionVideos": [], @@ -383493,7 +382993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 9828580, "featuredRunMedia": null, "reactionVideos": [], @@ -383513,7 +383013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 360, + "teamId": "144430", "time": 9829626, "featuredRunMedia": null, "reactionVideos": [], @@ -383533,7 +383033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 9829770, "featuredRunMedia": null, "reactionVideos": [], @@ -383553,7 +383053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 9830772, "featuredRunMedia": null, "reactionVideos": [], @@ -383573,7 +383073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "144144", "time": 9830970, "featuredRunMedia": null, "reactionVideos": [], @@ -383593,7 +383093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9831303, "featuredRunMedia": null, "reactionVideos": [], @@ -383613,7 +383113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "144101", "time": 9831339, "featuredRunMedia": null, "reactionVideos": [], @@ -383633,7 +383133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9831413, "featuredRunMedia": null, "reactionVideos": [], @@ -383653,7 +383153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9831456, "featuredRunMedia": null, "reactionVideos": [], @@ -383673,7 +383173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 9831999, "featuredRunMedia": null, "reactionVideos": [], @@ -383693,7 +383193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 9833421, "featuredRunMedia": null, "reactionVideos": [], @@ -383713,7 +383213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 9833579, "featuredRunMedia": null, "reactionVideos": [], @@ -383733,7 +383233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 9834868, "featuredRunMedia": null, "reactionVideos": [], @@ -383753,7 +383253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 9834991, "featuredRunMedia": null, "reactionVideos": [], @@ -383773,7 +383273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 9838346, "featuredRunMedia": null, "reactionVideos": [], @@ -383793,7 +383293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 9841948, "featuredRunMedia": null, "reactionVideos": [], @@ -383813,7 +383313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 9842993, "featuredRunMedia": null, "reactionVideos": [], @@ -383833,7 +383333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 357, + "teamId": "144427", "time": 9846558, "featuredRunMedia": null, "reactionVideos": [], @@ -383853,7 +383353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 9846647, "featuredRunMedia": null, "reactionVideos": [], @@ -383873,7 +383373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "144235", "time": 9847584, "featuredRunMedia": null, "reactionVideos": [], @@ -383893,7 +383393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 9849124, "featuredRunMedia": null, "reactionVideos": [], @@ -383913,7 +383413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9849615, "featuredRunMedia": null, "reactionVideos": [], @@ -383933,7 +383433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 9852715, "featuredRunMedia": null, "reactionVideos": [], @@ -383953,7 +383453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 9852861, "featuredRunMedia": null, "reactionVideos": [], @@ -383973,7 +383473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 9853348, "featuredRunMedia": null, "reactionVideos": [], @@ -383993,7 +383493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 9854100, "featuredRunMedia": null, "reactionVideos": [], @@ -384013,7 +383513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 9854944, "featuredRunMedia": null, "reactionVideos": [], @@ -384033,7 +383533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 9855018, "featuredRunMedia": null, "reactionVideos": [], @@ -384053,7 +383553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 9855841, "featuredRunMedia": null, "reactionVideos": [], @@ -384073,7 +383573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 9856148, "featuredRunMedia": null, "reactionVideos": [], @@ -384093,7 +383593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9856852, "featuredRunMedia": null, "reactionVideos": [], @@ -384113,7 +383613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 441, + "teamId": "144511", "time": 9857960, "featuredRunMedia": null, "reactionVideos": [], @@ -384133,7 +383633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9858115, "featuredRunMedia": null, "reactionVideos": [], @@ -384153,7 +383653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9858481, "featuredRunMedia": null, "reactionVideos": [], @@ -384173,7 +383673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 9859758, "featuredRunMedia": null, "reactionVideos": [], @@ -384193,7 +383693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 9859852, "featuredRunMedia": null, "reactionVideos": [], @@ -384213,7 +383713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 306, + "teamId": "144376", "time": 9860743, "featuredRunMedia": null, "reactionVideos": [], @@ -384233,7 +383733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 9863945, "featuredRunMedia": null, "reactionVideos": [], @@ -384253,7 +383753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9864189, "featuredRunMedia": null, "reactionVideos": [], @@ -384273,7 +383773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 9865068, "featuredRunMedia": null, "reactionVideos": [], @@ -384293,7 +383793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9868579, "featuredRunMedia": null, "reactionVideos": [], @@ -384313,7 +383813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9869113, "featuredRunMedia": null, "reactionVideos": [], @@ -384333,7 +383833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9871631, "featuredRunMedia": null, "reactionVideos": [], @@ -384353,7 +383853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 9872214, "featuredRunMedia": null, "reactionVideos": [], @@ -384373,7 +383873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9875235, "featuredRunMedia": null, "reactionVideos": [], @@ -384393,7 +383893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "144415", "time": 9877274, "featuredRunMedia": null, "reactionVideos": [], @@ -384413,7 +383913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 9878118, "featuredRunMedia": null, "reactionVideos": [], @@ -384433,7 +383933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 9878463, "featuredRunMedia": null, "reactionVideos": [], @@ -384453,7 +383953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 9879161, "featuredRunMedia": null, "reactionVideos": [], @@ -384473,7 +383973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 9879938, "featuredRunMedia": null, "reactionVideos": [], @@ -384493,7 +383993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9881326, "featuredRunMedia": null, "reactionVideos": [], @@ -384513,7 +384013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9881665, "featuredRunMedia": null, "reactionVideos": [], @@ -384533,7 +384033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 9882642, "featuredRunMedia": null, "reactionVideos": [], @@ -384553,7 +384053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 9883047, "featuredRunMedia": null, "reactionVideos": [], @@ -384573,7 +384073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 9883096, "featuredRunMedia": null, "reactionVideos": [], @@ -384593,7 +384093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "144174", "time": 9886150, "featuredRunMedia": null, "reactionVideos": [], @@ -384613,7 +384113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9886497, "featuredRunMedia": null, "reactionVideos": [], @@ -384633,7 +384133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 9886540, "featuredRunMedia": null, "reactionVideos": [], @@ -384653,7 +384153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 9888818, "featuredRunMedia": null, "reactionVideos": [], @@ -384673,7 +384173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 9890316, "featuredRunMedia": null, "reactionVideos": [], @@ -384693,7 +384193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 9891638, "featuredRunMedia": null, "reactionVideos": [], @@ -384713,7 +384213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 9893364, "featuredRunMedia": null, "reactionVideos": [], @@ -384733,7 +384233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 9895217, "featuredRunMedia": null, "reactionVideos": [], @@ -384753,7 +384253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9895668, "featuredRunMedia": null, "reactionVideos": [], @@ -384773,7 +384273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 9898326, "featuredRunMedia": null, "reactionVideos": [], @@ -384793,7 +384293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "144347", "time": 9899342, "featuredRunMedia": null, "reactionVideos": [], @@ -384813,7 +384313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 9899734, "featuredRunMedia": null, "reactionVideos": [], @@ -384833,7 +384333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 9901866, "featuredRunMedia": null, "reactionVideos": [], @@ -384853,7 +384353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 9904909, "featuredRunMedia": null, "reactionVideos": [], @@ -384873,7 +384373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 9907342, "featuredRunMedia": null, "reactionVideos": [], @@ -384893,7 +384393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 9907908, "featuredRunMedia": null, "reactionVideos": [], @@ -384913,7 +384413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 9908344, "featuredRunMedia": null, "reactionVideos": [], @@ -384933,7 +384433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9908798, "featuredRunMedia": null, "reactionVideos": [], @@ -384953,7 +384453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 9910449, "featuredRunMedia": null, "reactionVideos": [], @@ -384973,7 +384473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9910499, "featuredRunMedia": null, "reactionVideos": [], @@ -384993,7 +384493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9911187, "featuredRunMedia": null, "reactionVideos": [], @@ -385013,7 +384513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 9911221, "featuredRunMedia": null, "reactionVideos": [], @@ -385033,7 +384533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9911680, "featuredRunMedia": null, "reactionVideos": [], @@ -385053,7 +384553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 414, + "teamId": "144484", "time": 9913686, "featuredRunMedia": null, "reactionVideos": [], @@ -385073,7 +384573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 9914385, "featuredRunMedia": null, "reactionVideos": [], @@ -385093,7 +384593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 9914640, "featuredRunMedia": null, "reactionVideos": [], @@ -385113,7 +384613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 9914718, "featuredRunMedia": null, "reactionVideos": [], @@ -385133,7 +384633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 9914965, "featuredRunMedia": null, "reactionVideos": [], @@ -385153,7 +384653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "144394", "time": 9915495, "featuredRunMedia": null, "reactionVideos": [], @@ -385173,7 +384673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 9916101, "featuredRunMedia": null, "reactionVideos": [], @@ -385193,7 +384693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 9916628, "featuredRunMedia": null, "reactionVideos": [], @@ -385213,7 +384713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 9916752, "featuredRunMedia": null, "reactionVideos": [], @@ -385233,7 +384733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "144237", "time": 9916860, "featuredRunMedia": null, "reactionVideos": [], @@ -385253,7 +384753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 9917274, "featuredRunMedia": null, "reactionVideos": [], @@ -385273,7 +384773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 448, + "teamId": "144518", "time": 9919177, "featuredRunMedia": null, "reactionVideos": [], @@ -385293,7 +384793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 9920067, "featuredRunMedia": null, "reactionVideos": [], @@ -385313,7 +384813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 9921188, "featuredRunMedia": null, "reactionVideos": [], @@ -385333,7 +384833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9922057, "featuredRunMedia": null, "reactionVideos": [], @@ -385353,7 +384853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 9923854, "featuredRunMedia": null, "reactionVideos": [], @@ -385373,7 +384873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 9925445, "featuredRunMedia": null, "reactionVideos": [], @@ -385393,7 +384893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 9926301, "featuredRunMedia": null, "reactionVideos": [], @@ -385413,7 +384913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 9927091, "featuredRunMedia": null, "reactionVideos": [], @@ -385437,7 +384937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 9927394, "featuredRunMedia": null, "reactionVideos": [], @@ -385457,7 +384957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 9927518, "featuredRunMedia": null, "reactionVideos": [], @@ -385477,7 +384977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 9927551, "featuredRunMedia": null, "reactionVideos": [], @@ -385497,7 +384997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 9928816, "featuredRunMedia": null, "reactionVideos": [], @@ -385517,7 +385017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 306, + "teamId": "144376", "time": 9929702, "featuredRunMedia": null, "reactionVideos": [], @@ -385537,7 +385037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 9930086, "featuredRunMedia": null, "reactionVideos": [], @@ -385557,7 +385057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9930628, "featuredRunMedia": null, "reactionVideos": [], @@ -385577,7 +385077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 444, + "teamId": "144514", "time": 9932149, "featuredRunMedia": null, "reactionVideos": [], @@ -385597,7 +385097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "144180", "time": 9934053, "featuredRunMedia": null, "reactionVideos": [], @@ -385617,7 +385117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 9936448, "featuredRunMedia": null, "reactionVideos": [], @@ -385637,7 +385137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 9937435, "featuredRunMedia": null, "reactionVideos": [], @@ -385657,7 +385157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 9939451, "featuredRunMedia": null, "reactionVideos": [], @@ -385677,7 +385177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9940139, "featuredRunMedia": null, "reactionVideos": [], @@ -385697,7 +385197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 9941587, "featuredRunMedia": null, "reactionVideos": [], @@ -385717,7 +385217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 9944081, "featuredRunMedia": null, "reactionVideos": [], @@ -385737,7 +385237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 9945162, "featuredRunMedia": null, "reactionVideos": [], @@ -385757,7 +385257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 9946380, "featuredRunMedia": null, "reactionVideos": [], @@ -385777,7 +385277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 9947241, "featuredRunMedia": null, "reactionVideos": [], @@ -385797,7 +385297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 9948195, "featuredRunMedia": null, "reactionVideos": [], @@ -385817,7 +385317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 9948852, "featuredRunMedia": null, "reactionVideos": [], @@ -385837,7 +385337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 9949825, "featuredRunMedia": null, "reactionVideos": [], @@ -385857,7 +385357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 9951490, "featuredRunMedia": null, "reactionVideos": [], @@ -385877,7 +385377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 9953948, "featuredRunMedia": null, "reactionVideos": [], @@ -385897,7 +385397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 9955299, "featuredRunMedia": null, "reactionVideos": [], @@ -385917,7 +385417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9955364, "featuredRunMedia": null, "reactionVideos": [], @@ -385937,7 +385437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 9957024, "featuredRunMedia": null, "reactionVideos": [], @@ -385957,7 +385457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 9959453, "featuredRunMedia": null, "reactionVideos": [], @@ -385977,7 +385477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 9961142, "featuredRunMedia": null, "reactionVideos": [], @@ -385997,7 +385497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9961909, "featuredRunMedia": null, "reactionVideos": [], @@ -386017,7 +385517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9963817, "featuredRunMedia": null, "reactionVideos": [], @@ -386037,7 +385537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9966740, "featuredRunMedia": null, "reactionVideos": [], @@ -386057,7 +385557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9968880, "featuredRunMedia": null, "reactionVideos": [], @@ -386077,7 +385577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 357, + "teamId": "144427", "time": 9969902, "featuredRunMedia": null, "reactionVideos": [], @@ -386097,7 +385597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 9970187, "featuredRunMedia": null, "reactionVideos": [], @@ -386117,7 +385617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 9971504, "featuredRunMedia": null, "reactionVideos": [], @@ -386137,7 +385637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 9972376, "featuredRunMedia": null, "reactionVideos": [], @@ -386157,7 +385657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 9972778, "featuredRunMedia": null, "reactionVideos": [], @@ -386177,7 +385677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 9973647, "featuredRunMedia": null, "reactionVideos": [], @@ -386197,7 +385697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 43, + "teamId": "144113", "time": 9974196, "featuredRunMedia": null, "reactionVideos": [], @@ -386217,7 +385717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 9974796, "featuredRunMedia": null, "reactionVideos": [], @@ -386237,7 +385737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 9976695, "featuredRunMedia": null, "reactionVideos": [], @@ -386257,7 +385757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 9977095, "featuredRunMedia": null, "reactionVideos": [], @@ -386277,7 +385777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "144277", "time": 9977466, "featuredRunMedia": null, "reactionVideos": [], @@ -386297,7 +385797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 9977635, "featuredRunMedia": null, "reactionVideos": [], @@ -386317,7 +385817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 9977670, "featuredRunMedia": null, "reactionVideos": [], @@ -386337,7 +385837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 9977720, "featuredRunMedia": null, "reactionVideos": [], @@ -386357,7 +385857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 9978324, "featuredRunMedia": null, "reactionVideos": [], @@ -386377,7 +385877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 9978486, "featuredRunMedia": null, "reactionVideos": [], @@ -386397,7 +385897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "144144", "time": 9980424, "featuredRunMedia": null, "reactionVideos": [], @@ -386417,7 +385917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 9982968, "featuredRunMedia": null, "reactionVideos": [], @@ -386437,7 +385937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 183, + "teamId": "144253", "time": 9983419, "featuredRunMedia": null, "reactionVideos": [], @@ -386457,7 +385957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 9983576, "featuredRunMedia": null, "reactionVideos": [], @@ -386477,7 +385977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 9984119, "featuredRunMedia": null, "reactionVideos": [], @@ -386497,7 +385997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "144187", "time": 9984949, "featuredRunMedia": null, "reactionVideos": [], @@ -386517,7 +386017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 9985613, "featuredRunMedia": null, "reactionVideos": [], @@ -386537,7 +386037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 9987079, "featuredRunMedia": null, "reactionVideos": [], @@ -386557,7 +386057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 9987318, "featuredRunMedia": null, "reactionVideos": [], @@ -386577,7 +386077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 9989734, "featuredRunMedia": null, "reactionVideos": [], @@ -386597,7 +386097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 9990178, "featuredRunMedia": null, "reactionVideos": [], @@ -386617,7 +386117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 9990922, "featuredRunMedia": null, "reactionVideos": [], @@ -386637,7 +386137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 9992039, "featuredRunMedia": null, "reactionVideos": [], @@ -386657,7 +386157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 9992098, "featuredRunMedia": null, "reactionVideos": [], @@ -386677,7 +386177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 9994207, "featuredRunMedia": null, "reactionVideos": [], @@ -386697,7 +386197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "144072", "time": 9994703, "featuredRunMedia": null, "reactionVideos": [], @@ -386717,7 +386217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 9995543, "featuredRunMedia": null, "reactionVideos": [], @@ -386737,7 +386237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 9996018, "featuredRunMedia": null, "reactionVideos": [], @@ -386757,7 +386257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 9997166, "featuredRunMedia": null, "reactionVideos": [], @@ -386777,7 +386277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 9997418, "featuredRunMedia": null, "reactionVideos": [], @@ -386797,7 +386297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 9999900, "featuredRunMedia": null, "reactionVideos": [], @@ -386817,7 +386317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10001094, "featuredRunMedia": null, "reactionVideos": [], @@ -386837,7 +386337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 10003024, "featuredRunMedia": null, "reactionVideos": [], @@ -386857,7 +386357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 10003360, "featuredRunMedia": null, "reactionVideos": [], @@ -386877,7 +386377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10003394, "featuredRunMedia": null, "reactionVideos": [], @@ -386897,7 +386397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10004892, "featuredRunMedia": null, "reactionVideos": [], @@ -386917,7 +386417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 10005568, "featuredRunMedia": null, "reactionVideos": [], @@ -386937,7 +386437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 10005608, "featuredRunMedia": null, "reactionVideos": [], @@ -386957,7 +386457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 10005647, "featuredRunMedia": null, "reactionVideos": [], @@ -386977,7 +386477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "144369", "time": 10006677, "featuredRunMedia": null, "reactionVideos": [], @@ -386997,7 +386497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10007667, "featuredRunMedia": null, "reactionVideos": [], @@ -387017,7 +386517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 400, + "teamId": "144470", "time": 10010522, "featuredRunMedia": null, "reactionVideos": [], @@ -387037,7 +386537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 10010774, "featuredRunMedia": null, "reactionVideos": [], @@ -387057,7 +386557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10011234, "featuredRunMedia": null, "reactionVideos": [], @@ -387077,7 +386577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 10011790, "featuredRunMedia": null, "reactionVideos": [], @@ -387097,7 +386597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 10012463, "featuredRunMedia": null, "reactionVideos": [], @@ -387117,7 +386617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 10012533, "featuredRunMedia": null, "reactionVideos": [], @@ -387137,7 +386637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10013464, "featuredRunMedia": null, "reactionVideos": [], @@ -387157,7 +386657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 10014354, "featuredRunMedia": null, "reactionVideos": [], @@ -387177,7 +386677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 10014778, "featuredRunMedia": null, "reactionVideos": [], @@ -387197,7 +386697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 10015504, "featuredRunMedia": null, "reactionVideos": [], @@ -387217,7 +386717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 10015847, "featuredRunMedia": null, "reactionVideos": [], @@ -387237,7 +386737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 10018096, "featuredRunMedia": null, "reactionVideos": [], @@ -387257,7 +386757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10018132, "featuredRunMedia": null, "reactionVideos": [], @@ -387277,7 +386777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 10018444, "featuredRunMedia": null, "reactionVideos": [], @@ -387297,7 +386797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10018531, "featuredRunMedia": null, "reactionVideos": [], @@ -387317,7 +386817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 10018692, "featuredRunMedia": null, "reactionVideos": [], @@ -387337,7 +386837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 10018957, "featuredRunMedia": null, "reactionVideos": [], @@ -387357,7 +386857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 10021391, "featuredRunMedia": null, "reactionVideos": [], @@ -387377,7 +386877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 10021783, "featuredRunMedia": null, "reactionVideos": [], @@ -387397,7 +386897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 121, + "teamId": "144191", "time": 10024478, "featuredRunMedia": null, "reactionVideos": [], @@ -387417,7 +386917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "144231", "time": 10025874, "featuredRunMedia": null, "reactionVideos": [], @@ -387437,7 +386937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 384, + "teamId": "144454", "time": 10026078, "featuredRunMedia": null, "reactionVideos": [], @@ -387457,7 +386957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 10028210, "featuredRunMedia": null, "reactionVideos": [], @@ -387477,7 +386977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "144093", "time": 10028548, "featuredRunMedia": null, "reactionVideos": [], @@ -387497,7 +386997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 10029825, "featuredRunMedia": null, "reactionVideos": [], @@ -387517,7 +387017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10030453, "featuredRunMedia": null, "reactionVideos": [], @@ -387537,7 +387037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10030618, "featuredRunMedia": null, "reactionVideos": [], @@ -387557,7 +387057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 10031776, "featuredRunMedia": null, "reactionVideos": [], @@ -387577,7 +387077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 10031929, "featuredRunMedia": null, "reactionVideos": [], @@ -387597,7 +387097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 10034496, "featuredRunMedia": null, "reactionVideos": [], @@ -387617,7 +387117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10035942, "featuredRunMedia": null, "reactionVideos": [], @@ -387637,7 +387137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 10037148, "featuredRunMedia": null, "reactionVideos": [], @@ -387657,7 +387157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 10037197, "featuredRunMedia": null, "reactionVideos": [], @@ -387677,7 +387177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 10039629, "featuredRunMedia": null, "reactionVideos": [], @@ -387697,7 +387197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 10039981, "featuredRunMedia": null, "reactionVideos": [], @@ -387717,7 +387217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 10040278, "featuredRunMedia": null, "reactionVideos": [], @@ -387737,7 +387237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "144277", "time": 10042356, "featuredRunMedia": null, "reactionVideos": [], @@ -387757,7 +387257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 10044713, "featuredRunMedia": null, "reactionVideos": [], @@ -387777,7 +387277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 10045151, "featuredRunMedia": null, "reactionVideos": [], @@ -387797,7 +387297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "144149", "time": 10045589, "featuredRunMedia": null, "reactionVideos": [], @@ -387817,7 +387317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10046249, "featuredRunMedia": null, "reactionVideos": [], @@ -387837,7 +387337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10046304, "featuredRunMedia": null, "reactionVideos": [], @@ -387857,7 +387357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 10051237, "featuredRunMedia": null, "reactionVideos": [], @@ -387877,7 +387377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 10051981, "featuredRunMedia": null, "reactionVideos": [], @@ -387897,7 +387397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 10052751, "featuredRunMedia": null, "reactionVideos": [], @@ -387921,7 +387421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 10054804, "featuredRunMedia": null, "reactionVideos": [], @@ -387941,7 +387441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 10055775, "featuredRunMedia": null, "reactionVideos": [], @@ -387961,7 +387461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 10056287, "featuredRunMedia": null, "reactionVideos": [], @@ -387981,7 +387481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 10056589, "featuredRunMedia": null, "reactionVideos": [], @@ -388001,7 +387501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 10056872, "featuredRunMedia": null, "reactionVideos": [], @@ -388021,7 +387521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 10060142, "featuredRunMedia": null, "reactionVideos": [], @@ -388041,7 +387541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 10062006, "featuredRunMedia": null, "reactionVideos": [], @@ -388061,7 +387561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 10062828, "featuredRunMedia": null, "reactionVideos": [], @@ -388081,7 +387581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "144255", "time": 10063742, "featuredRunMedia": null, "reactionVideos": [], @@ -388101,7 +387601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10064274, "featuredRunMedia": null, "reactionVideos": [], @@ -388121,7 +387621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 10064726, "featuredRunMedia": null, "reactionVideos": [], @@ -388141,7 +387641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10066089, "featuredRunMedia": null, "reactionVideos": [], @@ -388161,7 +387661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10066859, "featuredRunMedia": null, "reactionVideos": [], @@ -388181,7 +387681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10070433, "featuredRunMedia": null, "reactionVideos": [], @@ -388201,7 +387701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 10070959, "featuredRunMedia": null, "reactionVideos": [], @@ -388221,7 +387721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10071996, "featuredRunMedia": null, "reactionVideos": [], @@ -388241,7 +387741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "144302", "time": 10073117, "featuredRunMedia": null, "reactionVideos": [], @@ -388261,7 +387761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 10073337, "featuredRunMedia": null, "reactionVideos": [], @@ -388281,7 +387781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 10073596, "featuredRunMedia": null, "reactionVideos": [], @@ -388301,7 +387801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10074301, "featuredRunMedia": null, "reactionVideos": [], @@ -388321,7 +387821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 10076254, "featuredRunMedia": null, "reactionVideos": [], @@ -388341,7 +387841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 10076812, "featuredRunMedia": null, "reactionVideos": [], @@ -388361,7 +387861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10077252, "featuredRunMedia": null, "reactionVideos": [], @@ -388381,7 +387881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 10077634, "featuredRunMedia": null, "reactionVideos": [], @@ -388401,7 +387901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 10077770, "featuredRunMedia": null, "reactionVideos": [], @@ -388421,7 +387921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10077919, "featuredRunMedia": null, "reactionVideos": [], @@ -388441,7 +387941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10079211, "featuredRunMedia": null, "reactionVideos": [], @@ -388461,7 +387961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "144182", "time": 10080179, "featuredRunMedia": null, "reactionVideos": [], @@ -388481,7 +387981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 10081976, "featuredRunMedia": null, "reactionVideos": [], @@ -388501,7 +388001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10082716, "featuredRunMedia": null, "reactionVideos": [], @@ -388521,7 +388021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10082898, "featuredRunMedia": null, "reactionVideos": [], @@ -388541,7 +388041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 10083523, "featuredRunMedia": null, "reactionVideos": [], @@ -388561,7 +388061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 10086889, "featuredRunMedia": null, "reactionVideos": [], @@ -388581,7 +388081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10086948, "featuredRunMedia": null, "reactionVideos": [], @@ -388601,7 +388101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 10090567, "featuredRunMedia": null, "reactionVideos": [], @@ -388621,7 +388121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10092074, "featuredRunMedia": null, "reactionVideos": [], @@ -388641,7 +388141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 10092267, "featuredRunMedia": null, "reactionVideos": [], @@ -388661,7 +388161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 10092805, "featuredRunMedia": null, "reactionVideos": [], @@ -388685,7 +388185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10094237, "featuredRunMedia": null, "reactionVideos": [], @@ -388705,7 +388205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10094481, "featuredRunMedia": null, "reactionVideos": [], @@ -388725,7 +388225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10094550, "featuredRunMedia": null, "reactionVideos": [], @@ -388745,7 +388245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10096393, "featuredRunMedia": null, "reactionVideos": [], @@ -388765,7 +388265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10096574, "featuredRunMedia": null, "reactionVideos": [], @@ -388785,7 +388285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 10098194, "featuredRunMedia": null, "reactionVideos": [], @@ -388805,7 +388305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "144092", "time": 10100293, "featuredRunMedia": null, "reactionVideos": [], @@ -388825,7 +388325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 10100417, "featuredRunMedia": null, "reactionVideos": [], @@ -388845,7 +388345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 10100704, "featuredRunMedia": null, "reactionVideos": [], @@ -388869,7 +388369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 10102369, "featuredRunMedia": null, "reactionVideos": [], @@ -388889,7 +388389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 10102786, "featuredRunMedia": null, "reactionVideos": [], @@ -388909,7 +388409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10104039, "featuredRunMedia": null, "reactionVideos": [], @@ -388929,7 +388429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10105672, "featuredRunMedia": null, "reactionVideos": [], @@ -388949,7 +388449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 10106066, "featuredRunMedia": null, "reactionVideos": [], @@ -388969,7 +388469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "144230", "time": 10106110, "featuredRunMedia": null, "reactionVideos": [], @@ -388989,7 +388489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "144208", "time": 10106252, "featuredRunMedia": null, "reactionVideos": [], @@ -389009,7 +388509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 10106643, "featuredRunMedia": null, "reactionVideos": [], @@ -389029,7 +388529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10109142, "featuredRunMedia": null, "reactionVideos": [], @@ -389049,7 +388549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 10109479, "featuredRunMedia": null, "reactionVideos": [], @@ -389069,7 +388569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10109978, "featuredRunMedia": null, "reactionVideos": [], @@ -389089,7 +388589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "144080", "time": 10110103, "featuredRunMedia": null, "reactionVideos": [], @@ -389109,7 +388609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 10110332, "featuredRunMedia": null, "reactionVideos": [], @@ -389129,7 +388629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 10112190, "featuredRunMedia": null, "reactionVideos": [], @@ -389149,7 +388649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10114599, "featuredRunMedia": null, "reactionVideos": [], @@ -389169,7 +388669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10115688, "featuredRunMedia": null, "reactionVideos": [], @@ -389189,7 +388689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 10119339, "featuredRunMedia": null, "reactionVideos": [], @@ -389209,7 +388709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 10119732, "featuredRunMedia": null, "reactionVideos": [], @@ -389229,7 +388729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 10120032, "featuredRunMedia": null, "reactionVideos": [], @@ -389249,7 +388749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 10120184, "featuredRunMedia": null, "reactionVideos": [], @@ -389269,7 +388769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 10120468, "featuredRunMedia": null, "reactionVideos": [], @@ -389289,7 +388789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "144257", "time": 10121126, "featuredRunMedia": null, "reactionVideos": [], @@ -389309,7 +388809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10121472, "featuredRunMedia": null, "reactionVideos": [], @@ -389329,7 +388829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 10124025, "featuredRunMedia": null, "reactionVideos": [], @@ -389349,7 +388849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10124415, "featuredRunMedia": null, "reactionVideos": [], @@ -389369,7 +388869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 10124593, "featuredRunMedia": null, "reactionVideos": [], @@ -389389,7 +388889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10124709, "featuredRunMedia": null, "reactionVideos": [], @@ -389409,7 +388909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 10125405, "featuredRunMedia": null, "reactionVideos": [], @@ -389429,7 +388929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 352, + "teamId": "144422", "time": 10127283, "featuredRunMedia": null, "reactionVideos": [], @@ -389449,7 +388949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 10130228, "featuredRunMedia": null, "reactionVideos": [], @@ -389469,7 +388969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 10133628, "featuredRunMedia": null, "reactionVideos": [], @@ -389489,7 +388989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10134861, "featuredRunMedia": null, "reactionVideos": [], @@ -389509,7 +389009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 10136290, "featuredRunMedia": null, "reactionVideos": [], @@ -389529,7 +389029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 10138048, "featuredRunMedia": null, "reactionVideos": [], @@ -389549,7 +389049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10138640, "featuredRunMedia": null, "reactionVideos": [], @@ -389569,7 +389069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 10141923, "featuredRunMedia": null, "reactionVideos": [], @@ -389589,7 +389089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "144153", "time": 10142050, "featuredRunMedia": null, "reactionVideos": [], @@ -389609,7 +389109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 10142328, "featuredRunMedia": null, "reactionVideos": [], @@ -389629,7 +389129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 10142957, "featuredRunMedia": null, "reactionVideos": [], @@ -389649,7 +389149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10143904, "featuredRunMedia": null, "reactionVideos": [], @@ -389669,7 +389169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 10147082, "featuredRunMedia": null, "reactionVideos": [], @@ -389689,7 +389189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 10147290, "featuredRunMedia": null, "reactionVideos": [], @@ -389709,7 +389209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 10147489, "featuredRunMedia": null, "reactionVideos": [], @@ -389729,7 +389229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10147909, "featuredRunMedia": null, "reactionVideos": [], @@ -389749,7 +389249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 10148115, "featuredRunMedia": null, "reactionVideos": [], @@ -389769,7 +389269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 10148176, "featuredRunMedia": null, "reactionVideos": [], @@ -389789,7 +389289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "144204", "time": 10149708, "featuredRunMedia": null, "reactionVideos": [], @@ -389809,7 +389309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 10151859, "featuredRunMedia": null, "reactionVideos": [], @@ -389829,7 +389329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10153765, "featuredRunMedia": null, "reactionVideos": [], @@ -389849,7 +389349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 10156370, "featuredRunMedia": null, "reactionVideos": [], @@ -389869,7 +389369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10158248, "featuredRunMedia": null, "reactionVideos": [], @@ -389889,7 +389389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 10158292, "featuredRunMedia": null, "reactionVideos": [], @@ -389909,7 +389409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10159867, "featuredRunMedia": null, "reactionVideos": [], @@ -389929,7 +389429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 10159913, "featuredRunMedia": null, "reactionVideos": [], @@ -389949,7 +389449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 10162052, "featuredRunMedia": null, "reactionVideos": [], @@ -389969,7 +389469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10162125, "featuredRunMedia": null, "reactionVideos": [], @@ -389989,7 +389489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 10162259, "featuredRunMedia": null, "reactionVideos": [], @@ -390009,7 +389509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "144114", "time": 10162530, "featuredRunMedia": null, "reactionVideos": [], @@ -390029,7 +389529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 10163874, "featuredRunMedia": null, "reactionVideos": [], @@ -390049,7 +389549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 10165172, "featuredRunMedia": null, "reactionVideos": [], @@ -390069,7 +389569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10166522, "featuredRunMedia": null, "reactionVideos": [], @@ -390089,7 +389589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "144277", "time": 10168347, "featuredRunMedia": null, "reactionVideos": [], @@ -390109,7 +389609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 10170231, "featuredRunMedia": null, "reactionVideos": [], @@ -390129,7 +389629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "144255", "time": 10172447, "featuredRunMedia": null, "reactionVideos": [], @@ -390149,7 +389649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 10176180, "featuredRunMedia": null, "reactionVideos": [], @@ -390169,7 +389669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10176235, "featuredRunMedia": null, "reactionVideos": [], @@ -390189,7 +389689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10177224, "featuredRunMedia": null, "reactionVideos": [], @@ -390209,7 +389709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 10178244, "featuredRunMedia": null, "reactionVideos": [], @@ -390229,7 +389729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10179427, "featuredRunMedia": null, "reactionVideos": [], @@ -390249,7 +389749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 10179562, "featuredRunMedia": null, "reactionVideos": [], @@ -390269,7 +389769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10180242, "featuredRunMedia": null, "reactionVideos": [], @@ -390289,7 +389789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10180481, "featuredRunMedia": null, "reactionVideos": [], @@ -390309,7 +389809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 10181361, "featuredRunMedia": null, "reactionVideos": [], @@ -390329,7 +389829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10181600, "featuredRunMedia": null, "reactionVideos": [], @@ -390349,7 +389849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 10182363, "featuredRunMedia": null, "reactionVideos": [], @@ -390369,7 +389869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 10185720, "featuredRunMedia": null, "reactionVideos": [], @@ -390389,7 +389889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 10185772, "featuredRunMedia": null, "reactionVideos": [], @@ -390409,7 +389909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 10187648, "featuredRunMedia": null, "reactionVideos": [], @@ -390429,7 +389929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 10188212, "featuredRunMedia": null, "reactionVideos": [], @@ -390449,7 +389949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 10189464, "featuredRunMedia": null, "reactionVideos": [], @@ -390469,7 +389969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 315, + "teamId": "144385", "time": 10190118, "featuredRunMedia": null, "reactionVideos": [], @@ -390489,7 +389989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10191067, "featuredRunMedia": null, "reactionVideos": [], @@ -390509,7 +390009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 10191116, "featuredRunMedia": null, "reactionVideos": [], @@ -390529,7 +390029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10191214, "featuredRunMedia": null, "reactionVideos": [], @@ -390549,7 +390049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 10191676, "featuredRunMedia": null, "reactionVideos": [], @@ -390569,7 +390069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 10191857, "featuredRunMedia": null, "reactionVideos": [], @@ -390589,7 +390089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 10192046, "featuredRunMedia": null, "reactionVideos": [], @@ -390609,7 +390109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10192602, "featuredRunMedia": null, "reactionVideos": [], @@ -390629,7 +390129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10193782, "featuredRunMedia": null, "reactionVideos": [], @@ -390649,7 +390149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "144339", "time": 10194835, "featuredRunMedia": null, "reactionVideos": [], @@ -390669,7 +390169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 10195018, "featuredRunMedia": null, "reactionVideos": [], @@ -390689,7 +390189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10195303, "featuredRunMedia": null, "reactionVideos": [], @@ -390709,7 +390209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 10195834, "featuredRunMedia": null, "reactionVideos": [], @@ -390729,7 +390229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 10195871, "featuredRunMedia": null, "reactionVideos": [], @@ -390749,7 +390249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 10196630, "featuredRunMedia": null, "reactionVideos": [], @@ -390769,7 +390269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10197660, "featuredRunMedia": null, "reactionVideos": [], @@ -390789,7 +390289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10197868, "featuredRunMedia": null, "reactionVideos": [], @@ -390809,7 +390309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 10198719, "featuredRunMedia": null, "reactionVideos": [], @@ -390829,7 +390329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 120, + "teamId": "144190", "time": 10200668, "featuredRunMedia": null, "reactionVideos": [], @@ -390849,7 +390349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "144250", "time": 10202380, "featuredRunMedia": null, "reactionVideos": [], @@ -390869,7 +390369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10202897, "featuredRunMedia": null, "reactionVideos": [], @@ -390889,7 +390389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 10203686, "featuredRunMedia": null, "reactionVideos": [], @@ -390909,7 +390409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10204752, "featuredRunMedia": null, "reactionVideos": [], @@ -390929,7 +390429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10206547, "featuredRunMedia": null, "reactionVideos": [], @@ -390949,7 +390449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10207783, "featuredRunMedia": null, "reactionVideos": [], @@ -390969,7 +390469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10208774, "featuredRunMedia": null, "reactionVideos": [], @@ -390989,7 +390489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 10209422, "featuredRunMedia": null, "reactionVideos": [], @@ -391009,7 +390509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 10209779, "featuredRunMedia": null, "reactionVideos": [], @@ -391029,7 +390529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 10211742, "featuredRunMedia": null, "reactionVideos": [], @@ -391049,7 +390549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10211802, "featuredRunMedia": null, "reactionVideos": [], @@ -391069,7 +390569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 10213686, "featuredRunMedia": null, "reactionVideos": [], @@ -391089,7 +390589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 316, + "teamId": "144386", "time": 10213997, "featuredRunMedia": null, "reactionVideos": [], @@ -391109,7 +390609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 10214553, "featuredRunMedia": null, "reactionVideos": [], @@ -391129,7 +390629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 10214655, "featuredRunMedia": null, "reactionVideos": [], @@ -391149,7 +390649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 10215152, "featuredRunMedia": null, "reactionVideos": [], @@ -391169,7 +390669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 10216830, "featuredRunMedia": null, "reactionVideos": [], @@ -391189,7 +390689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 10220683, "featuredRunMedia": null, "reactionVideos": [], @@ -391209,7 +390709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10221093, "featuredRunMedia": null, "reactionVideos": [], @@ -391229,7 +390729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10223644, "featuredRunMedia": null, "reactionVideos": [], @@ -391249,7 +390749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10224772, "featuredRunMedia": null, "reactionVideos": [], @@ -391269,7 +390769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 10224864, "featuredRunMedia": null, "reactionVideos": [], @@ -391289,7 +390789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 10226288, "featuredRunMedia": null, "reactionVideos": [], @@ -391309,7 +390809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 10226607, "featuredRunMedia": null, "reactionVideos": [], @@ -391329,7 +390829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 416, + "teamId": "144486", "time": 10226831, "featuredRunMedia": null, "reactionVideos": [], @@ -391349,7 +390849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 10227821, "featuredRunMedia": null, "reactionVideos": [], @@ -391369,7 +390869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 10228142, "featuredRunMedia": null, "reactionVideos": [], @@ -391389,7 +390889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 10231331, "featuredRunMedia": null, "reactionVideos": [], @@ -391409,7 +390909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10233171, "featuredRunMedia": null, "reactionVideos": [], @@ -391429,7 +390929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10234463, "featuredRunMedia": null, "reactionVideos": [], @@ -391449,7 +390949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10235983, "featuredRunMedia": null, "reactionVideos": [], @@ -391469,7 +390969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "144230", "time": 10236622, "featuredRunMedia": null, "reactionVideos": [], @@ -391489,7 +390989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10237406, "featuredRunMedia": null, "reactionVideos": [], @@ -391509,7 +391009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 10239273, "featuredRunMedia": null, "reactionVideos": [], @@ -391529,7 +391029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 10239659, "featuredRunMedia": null, "reactionVideos": [], @@ -391549,7 +391049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 10241958, "featuredRunMedia": null, "reactionVideos": [], @@ -391569,7 +391069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "144153", "time": 10242556, "featuredRunMedia": null, "reactionVideos": [], @@ -391589,7 +391089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10248083, "featuredRunMedia": null, "reactionVideos": [], @@ -391609,7 +391109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 10251600, "featuredRunMedia": null, "reactionVideos": [], @@ -391629,7 +391129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10252564, "featuredRunMedia": null, "reactionVideos": [], @@ -391649,7 +391149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 416, + "teamId": "144486", "time": 10253000, "featuredRunMedia": null, "reactionVideos": [], @@ -391669,7 +391169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 10254006, "featuredRunMedia": null, "reactionVideos": [], @@ -391689,7 +391189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 10254800, "featuredRunMedia": null, "reactionVideos": [], @@ -391709,7 +391209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 10255477, "featuredRunMedia": null, "reactionVideos": [], @@ -391729,7 +391229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10255817, "featuredRunMedia": null, "reactionVideos": [], @@ -391749,7 +391249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 10256666, "featuredRunMedia": null, "reactionVideos": [], @@ -391769,7 +391269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 10256768, "featuredRunMedia": null, "reactionVideos": [], @@ -391789,7 +391289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 10257306, "featuredRunMedia": null, "reactionVideos": [], @@ -391809,7 +391309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10258954, "featuredRunMedia": null, "reactionVideos": [], @@ -391829,7 +391329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 10259564, "featuredRunMedia": null, "reactionVideos": [], @@ -391849,7 +391349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 10263483, "featuredRunMedia": null, "reactionVideos": [], @@ -391869,7 +391369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10263744, "featuredRunMedia": null, "reactionVideos": [], @@ -391889,7 +391389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 10264006, "featuredRunMedia": null, "reactionVideos": [], @@ -391909,7 +391409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 10264295, "featuredRunMedia": null, "reactionVideos": [], @@ -391929,7 +391429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "144257", "time": 10265062, "featuredRunMedia": null, "reactionVideos": [], @@ -391949,7 +391449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10268494, "featuredRunMedia": null, "reactionVideos": [], @@ -391969,7 +391469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10268587, "featuredRunMedia": null, "reactionVideos": [], @@ -391989,7 +391489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "144204", "time": 10268715, "featuredRunMedia": null, "reactionVideos": [], @@ -392009,7 +391509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "144187", "time": 10269775, "featuredRunMedia": null, "reactionVideos": [], @@ -392029,7 +391529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 10272103, "featuredRunMedia": null, "reactionVideos": [], @@ -392049,7 +391549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 10273001, "featuredRunMedia": null, "reactionVideos": [], @@ -392069,7 +391569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10273594, "featuredRunMedia": null, "reactionVideos": [], @@ -392089,7 +391589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 10273787, "featuredRunMedia": null, "reactionVideos": [], @@ -392109,7 +391609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "144260", "time": 10273882, "featuredRunMedia": null, "reactionVideos": [], @@ -392129,7 +391629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10274126, "featuredRunMedia": null, "reactionVideos": [], @@ -392149,7 +391649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10274313, "featuredRunMedia": null, "reactionVideos": [], @@ -392169,7 +391669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10275758, "featuredRunMedia": null, "reactionVideos": [], @@ -392189,7 +391689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10281086, "featuredRunMedia": null, "reactionVideos": [], @@ -392209,7 +391709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10283042, "featuredRunMedia": null, "reactionVideos": [], @@ -392229,7 +391729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10283863, "featuredRunMedia": null, "reactionVideos": [], @@ -392249,7 +391749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10284713, "featuredRunMedia": null, "reactionVideos": [], @@ -392269,7 +391769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10284977, "featuredRunMedia": null, "reactionVideos": [], @@ -392289,7 +391789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 10285942, "featuredRunMedia": null, "reactionVideos": [], @@ -392309,7 +391809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10285986, "featuredRunMedia": null, "reactionVideos": [], @@ -392329,7 +391829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "144217", "time": 10286965, "featuredRunMedia": null, "reactionVideos": [], @@ -392349,7 +391849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10287296, "featuredRunMedia": null, "reactionVideos": [], @@ -392369,7 +391869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10289046, "featuredRunMedia": null, "reactionVideos": [], @@ -392389,7 +391889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10289256, "featuredRunMedia": null, "reactionVideos": [], @@ -392409,7 +391909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "144220", "time": 10289762, "featuredRunMedia": null, "reactionVideos": [], @@ -392429,7 +391929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 10291014, "featuredRunMedia": null, "reactionVideos": [], @@ -392449,7 +391949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 10291612, "featuredRunMedia": null, "reactionVideos": [], @@ -392469,7 +391969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 10291781, "featuredRunMedia": null, "reactionVideos": [], @@ -392489,7 +391989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 10294911, "featuredRunMedia": null, "reactionVideos": [], @@ -392509,7 +392009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10295493, "featuredRunMedia": null, "reactionVideos": [], @@ -392529,7 +392029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10295906, "featuredRunMedia": null, "reactionVideos": [], @@ -392549,7 +392049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 270, + "teamId": "144340", "time": 10297747, "featuredRunMedia": null, "reactionVideos": [], @@ -392569,7 +392069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 10298094, "featuredRunMedia": null, "reactionVideos": [], @@ -392589,7 +392089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 10298628, "featuredRunMedia": null, "reactionVideos": [], @@ -392609,7 +392109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10299420, "featuredRunMedia": null, "reactionVideos": [], @@ -392629,7 +392129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10300292, "featuredRunMedia": null, "reactionVideos": [], @@ -392649,7 +392149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 10300669, "featuredRunMedia": null, "reactionVideos": [], @@ -392669,7 +392169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 10302657, "featuredRunMedia": null, "reactionVideos": [], @@ -392689,7 +392189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 10302692, "featuredRunMedia": null, "reactionVideos": [], @@ -392713,7 +392213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 10303433, "featuredRunMedia": null, "reactionVideos": [], @@ -392733,7 +392233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 10305195, "featuredRunMedia": null, "reactionVideos": [], @@ -392753,7 +392253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10307408, "featuredRunMedia": null, "reactionVideos": [], @@ -392773,7 +392273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10307524, "featuredRunMedia": null, "reactionVideos": [], @@ -392793,7 +392293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10308909, "featuredRunMedia": null, "reactionVideos": [], @@ -392813,7 +392313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10309024, "featuredRunMedia": null, "reactionVideos": [], @@ -392833,7 +392333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "144110", "time": 10310958, "featuredRunMedia": null, "reactionVideos": [], @@ -392853,7 +392353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10312708, "featuredRunMedia": null, "reactionVideos": [], @@ -392873,7 +392373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10313550, "featuredRunMedia": null, "reactionVideos": [], @@ -392893,7 +392393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "144193", "time": 10313918, "featuredRunMedia": null, "reactionVideos": [], @@ -392913,7 +392413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 10315114, "featuredRunMedia": null, "reactionVideos": [], @@ -392933,7 +392433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 10316058, "featuredRunMedia": null, "reactionVideos": [], @@ -392953,7 +392453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 10317095, "featuredRunMedia": null, "reactionVideos": [], @@ -392973,7 +392473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 10319360, "featuredRunMedia": null, "reactionVideos": [], @@ -392993,7 +392493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 10320490, "featuredRunMedia": null, "reactionVideos": [], @@ -393013,7 +392513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 10321442, "featuredRunMedia": null, "reactionVideos": [], @@ -393033,7 +392533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 10324537, "featuredRunMedia": null, "reactionVideos": [], @@ -393053,7 +392553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 10325194, "featuredRunMedia": null, "reactionVideos": [], @@ -393073,7 +392573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 10325624, "featuredRunMedia": null, "reactionVideos": [], @@ -393093,7 +392593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10325988, "featuredRunMedia": null, "reactionVideos": [], @@ -393113,7 +392613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10326891, "featuredRunMedia": null, "reactionVideos": [], @@ -393133,7 +392633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 10328223, "featuredRunMedia": null, "reactionVideos": [], @@ -393153,7 +392653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10329391, "featuredRunMedia": null, "reactionVideos": [], @@ -393173,7 +392673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 10330060, "featuredRunMedia": null, "reactionVideos": [], @@ -393193,7 +392693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 10330876, "featuredRunMedia": null, "reactionVideos": [], @@ -393213,7 +392713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 10331241, "featuredRunMedia": null, "reactionVideos": [], @@ -393233,7 +392733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10331343, "featuredRunMedia": null, "reactionVideos": [], @@ -393253,7 +392753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10331598, "featuredRunMedia": null, "reactionVideos": [], @@ -393273,7 +392773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 10334584, "featuredRunMedia": null, "reactionVideos": [], @@ -393293,7 +392793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10336775, "featuredRunMedia": null, "reactionVideos": [], @@ -393313,7 +392813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 10336977, "featuredRunMedia": null, "reactionVideos": [], @@ -393333,7 +392833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10337662, "featuredRunMedia": null, "reactionVideos": [], @@ -393353,7 +392853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "144182", "time": 10338213, "featuredRunMedia": null, "reactionVideos": [], @@ -393373,7 +392873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 10339895, "featuredRunMedia": null, "reactionVideos": [], @@ -393393,7 +392893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 10340805, "featuredRunMedia": null, "reactionVideos": [], @@ -393413,7 +392913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 10341682, "featuredRunMedia": null, "reactionVideos": [], @@ -393433,7 +392933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10344795, "featuredRunMedia": null, "reactionVideos": [], @@ -393453,7 +392953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10345366, "featuredRunMedia": null, "reactionVideos": [], @@ -393473,7 +392973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10348825, "featuredRunMedia": null, "reactionVideos": [], @@ -393493,7 +392993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 10348921, "featuredRunMedia": null, "reactionVideos": [], @@ -393513,7 +393013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10349673, "featuredRunMedia": null, "reactionVideos": [], @@ -393533,7 +393033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10351453, "featuredRunMedia": null, "reactionVideos": [], @@ -393553,7 +393053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 10353585, "featuredRunMedia": null, "reactionVideos": [], @@ -393573,7 +393073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "144204", "time": 10354031, "featuredRunMedia": null, "reactionVideos": [], @@ -393593,7 +393093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 10355199, "featuredRunMedia": null, "reactionVideos": [], @@ -393617,7 +393117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 10355364, "featuredRunMedia": null, "reactionVideos": [], @@ -393637,7 +393137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10358138, "featuredRunMedia": null, "reactionVideos": [], @@ -393657,7 +393157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 10359675, "featuredRunMedia": null, "reactionVideos": [], @@ -393677,7 +393177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 10360797, "featuredRunMedia": null, "reactionVideos": [], @@ -393697,7 +393197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 10363357, "featuredRunMedia": null, "reactionVideos": [], @@ -393717,7 +393217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10364802, "featuredRunMedia": null, "reactionVideos": [], @@ -393737,7 +393237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 10365860, "featuredRunMedia": null, "reactionVideos": [], @@ -393757,7 +393257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 10367819, "featuredRunMedia": null, "reactionVideos": [], @@ -393777,7 +393277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 10368669, "featuredRunMedia": null, "reactionVideos": [], @@ -393797,7 +393297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 10370107, "featuredRunMedia": null, "reactionVideos": [], @@ -393817,7 +393317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10370454, "featuredRunMedia": null, "reactionVideos": [], @@ -393837,7 +393337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 10370492, "featuredRunMedia": null, "reactionVideos": [], @@ -393857,7 +393357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10370585, "featuredRunMedia": null, "reactionVideos": [], @@ -393877,7 +393377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 10370824, "featuredRunMedia": null, "reactionVideos": [], @@ -393897,7 +393397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 10371651, "featuredRunMedia": null, "reactionVideos": [], @@ -393917,7 +393417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 10372102, "featuredRunMedia": null, "reactionVideos": [], @@ -393937,7 +393437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10372406, "featuredRunMedia": null, "reactionVideos": [], @@ -393957,7 +393457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 10373519, "featuredRunMedia": null, "reactionVideos": [], @@ -393977,7 +393477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 10377620, "featuredRunMedia": null, "reactionVideos": [], @@ -393997,7 +393497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 10377921, "featuredRunMedia": null, "reactionVideos": [], @@ -394017,7 +393517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 10380212, "featuredRunMedia": null, "reactionVideos": [], @@ -394041,7 +393541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10381141, "featuredRunMedia": null, "reactionVideos": [], @@ -394061,7 +393561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 10381988, "featuredRunMedia": null, "reactionVideos": [], @@ -394081,7 +393581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10384062, "featuredRunMedia": null, "reactionVideos": [], @@ -394101,7 +393601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 10386319, "featuredRunMedia": null, "reactionVideos": [], @@ -394121,7 +393621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 10387823, "featuredRunMedia": null, "reactionVideos": [], @@ -394141,7 +393641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 10389105, "featuredRunMedia": null, "reactionVideos": [], @@ -394161,7 +393661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10389942, "featuredRunMedia": null, "reactionVideos": [], @@ -394181,7 +393681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 10391594, "featuredRunMedia": null, "reactionVideos": [], @@ -394201,7 +393701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "144153", "time": 10392131, "featuredRunMedia": null, "reactionVideos": [], @@ -394221,7 +393721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10392216, "featuredRunMedia": null, "reactionVideos": [], @@ -394241,7 +393741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "144196", "time": 10393027, "featuredRunMedia": null, "reactionVideos": [], @@ -394261,7 +393761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10393075, "featuredRunMedia": null, "reactionVideos": [], @@ -394281,7 +393781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 10393314, "featuredRunMedia": null, "reactionVideos": [], @@ -394301,7 +393801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 10393950, "featuredRunMedia": null, "reactionVideos": [], @@ -394321,7 +393821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 10393999, "featuredRunMedia": null, "reactionVideos": [], @@ -394341,7 +393841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10396317, "featuredRunMedia": null, "reactionVideos": [], @@ -394361,7 +393861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 10396434, "featuredRunMedia": null, "reactionVideos": [], @@ -394381,7 +393881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 10398477, "featuredRunMedia": null, "reactionVideos": [], @@ -394401,7 +393901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 10400115, "featuredRunMedia": null, "reactionVideos": [], @@ -394421,7 +393921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 10401984, "featuredRunMedia": null, "reactionVideos": [], @@ -394441,7 +393941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10403507, "featuredRunMedia": null, "reactionVideos": [], @@ -394461,7 +393961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 10404136, "featuredRunMedia": null, "reactionVideos": [], @@ -394481,7 +393981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "144104", "time": 10405078, "featuredRunMedia": null, "reactionVideos": [], @@ -394501,7 +394001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 10406310, "featuredRunMedia": null, "reactionVideos": [], @@ -394521,7 +394021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "144154", "time": 10407585, "featuredRunMedia": null, "reactionVideos": [], @@ -394541,7 +394041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10409420, "featuredRunMedia": null, "reactionVideos": [], @@ -394565,7 +394065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10411499, "featuredRunMedia": null, "reactionVideos": [], @@ -394585,7 +394085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 10411922, "featuredRunMedia": null, "reactionVideos": [], @@ -394605,7 +394105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 10412181, "featuredRunMedia": null, "reactionVideos": [], @@ -394625,7 +394125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10412578, "featuredRunMedia": null, "reactionVideos": [], @@ -394645,7 +394145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 10412999, "featuredRunMedia": null, "reactionVideos": [], @@ -394665,7 +394165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 69, + "teamId": "144139", "time": 10413037, "featuredRunMedia": null, "reactionVideos": [], @@ -394685,7 +394185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "144230", "time": 10413600, "featuredRunMedia": null, "reactionVideos": [], @@ -394705,7 +394205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 10415176, "featuredRunMedia": null, "reactionVideos": [], @@ -394725,7 +394225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 10417974, "featuredRunMedia": null, "reactionVideos": [], @@ -394745,7 +394245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10418492, "featuredRunMedia": null, "reactionVideos": [], @@ -394765,7 +394265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 10419134, "featuredRunMedia": null, "reactionVideos": [], @@ -394785,7 +394285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 10420047, "featuredRunMedia": null, "reactionVideos": [], @@ -394805,7 +394305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10420222, "featuredRunMedia": null, "reactionVideos": [], @@ -394825,7 +394325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 10421168, "featuredRunMedia": null, "reactionVideos": [], @@ -394845,7 +394345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 10421463, "featuredRunMedia": null, "reactionVideos": [], @@ -394865,7 +394365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10421733, "featuredRunMedia": null, "reactionVideos": [], @@ -394885,7 +394385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10422402, "featuredRunMedia": null, "reactionVideos": [], @@ -394905,7 +394405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 10424923, "featuredRunMedia": null, "reactionVideos": [], @@ -394925,7 +394425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10426655, "featuredRunMedia": null, "reactionVideos": [], @@ -394945,7 +394445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 278, + "teamId": "144348", "time": 10427443, "featuredRunMedia": null, "reactionVideos": [], @@ -394965,7 +394465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10427918, "featuredRunMedia": null, "reactionVideos": [], @@ -394985,7 +394485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "144196", "time": 10428621, "featuredRunMedia": null, "reactionVideos": [], @@ -395005,7 +394505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 10429085, "featuredRunMedia": null, "reactionVideos": [], @@ -395025,7 +394525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 10429314, "featuredRunMedia": null, "reactionVideos": [], @@ -395045,7 +394545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 10430046, "featuredRunMedia": null, "reactionVideos": [], @@ -395065,7 +394565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10430260, "featuredRunMedia": null, "reactionVideos": [], @@ -395085,7 +394585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10430296, "featuredRunMedia": null, "reactionVideos": [], @@ -395105,7 +394605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 10430719, "featuredRunMedia": null, "reactionVideos": [], @@ -395125,7 +394625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10434312, "featuredRunMedia": null, "reactionVideos": [], @@ -395145,7 +394645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 10435307, "featuredRunMedia": null, "reactionVideos": [], @@ -395165,7 +394665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10435371, "featuredRunMedia": null, "reactionVideos": [], @@ -395185,7 +394685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 10435781, "featuredRunMedia": null, "reactionVideos": [], @@ -395205,7 +394705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 10437081, "featuredRunMedia": null, "reactionVideos": [], @@ -395225,7 +394725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 10437118, "featuredRunMedia": null, "reactionVideos": [], @@ -395245,7 +394745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10437394, "featuredRunMedia": null, "reactionVideos": [], @@ -395265,7 +394765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 10437512, "featuredRunMedia": null, "reactionVideos": [], @@ -395289,7 +394789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10440170, "featuredRunMedia": null, "reactionVideos": [], @@ -395309,7 +394809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 10444302, "featuredRunMedia": null, "reactionVideos": [], @@ -395329,7 +394829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 10444930, "featuredRunMedia": null, "reactionVideos": [], @@ -395349,7 +394849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10445280, "featuredRunMedia": null, "reactionVideos": [], @@ -395369,7 +394869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 10445353, "featuredRunMedia": null, "reactionVideos": [], @@ -395389,7 +394889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10445614, "featuredRunMedia": null, "reactionVideos": [], @@ -395409,7 +394909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 10445896, "featuredRunMedia": null, "reactionVideos": [], @@ -395429,7 +394929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 10446720, "featuredRunMedia": null, "reactionVideos": [], @@ -395449,7 +394949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "144226", "time": 10447693, "featuredRunMedia": null, "reactionVideos": [], @@ -395469,7 +394969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 10451979, "featuredRunMedia": null, "reactionVideos": [], @@ -395489,7 +394989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10452107, "featuredRunMedia": null, "reactionVideos": [], @@ -395509,7 +395009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "144153", "time": 10452210, "featuredRunMedia": null, "reactionVideos": [], @@ -395529,7 +395029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 10453933, "featuredRunMedia": null, "reactionVideos": [], @@ -395549,7 +395049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 10454205, "featuredRunMedia": null, "reactionVideos": [], @@ -395569,7 +395069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "144187", "time": 10456209, "featuredRunMedia": null, "reactionVideos": [], @@ -395589,7 +395089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 10456619, "featuredRunMedia": null, "reactionVideos": [], @@ -395609,7 +395109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 10456663, "featuredRunMedia": null, "reactionVideos": [], @@ -395633,7 +395133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10456697, "featuredRunMedia": null, "reactionVideos": [], @@ -395653,7 +395153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 10458020, "featuredRunMedia": null, "reactionVideos": [], @@ -395673,7 +395173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 10459271, "featuredRunMedia": null, "reactionVideos": [], @@ -395693,7 +395193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "144080", "time": 10459415, "featuredRunMedia": null, "reactionVideos": [], @@ -395713,7 +395213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10461047, "featuredRunMedia": null, "reactionVideos": [], @@ -395733,7 +395233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 10461984, "featuredRunMedia": null, "reactionVideos": [], @@ -395753,7 +395253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10462594, "featuredRunMedia": null, "reactionVideos": [], @@ -395773,7 +395273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10462885, "featuredRunMedia": null, "reactionVideos": [], @@ -395793,7 +395293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10463715, "featuredRunMedia": null, "reactionVideos": [], @@ -395813,7 +395313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 10464455, "featuredRunMedia": null, "reactionVideos": [], @@ -395833,7 +395333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 10465157, "featuredRunMedia": null, "reactionVideos": [], @@ -395853,7 +395353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10465562, "featuredRunMedia": null, "reactionVideos": [], @@ -395873,7 +395373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 10465960, "featuredRunMedia": null, "reactionVideos": [], @@ -395893,7 +395393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 10466193, "featuredRunMedia": null, "reactionVideos": [], @@ -395913,7 +395413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 10468016, "featuredRunMedia": null, "reactionVideos": [], @@ -395933,7 +395433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 10468482, "featuredRunMedia": null, "reactionVideos": [], @@ -395953,7 +395453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10469223, "featuredRunMedia": null, "reactionVideos": [], @@ -395973,7 +395473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 10471083, "featuredRunMedia": null, "reactionVideos": [], @@ -395993,7 +395493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10471648, "featuredRunMedia": null, "reactionVideos": [], @@ -396013,7 +395513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "144255", "time": 10474539, "featuredRunMedia": null, "reactionVideos": [], @@ -396033,7 +395533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 10475458, "featuredRunMedia": null, "reactionVideos": [], @@ -396053,7 +395553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 10476355, "featuredRunMedia": null, "reactionVideos": [], @@ -396073,7 +395573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 10476832, "featuredRunMedia": null, "reactionVideos": [], @@ -396093,7 +395593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10478293, "featuredRunMedia": null, "reactionVideos": [], @@ -396117,7 +395617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 10479956, "featuredRunMedia": null, "reactionVideos": [], @@ -396137,7 +395637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "144302", "time": 10481015, "featuredRunMedia": null, "reactionVideos": [], @@ -396157,7 +395657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 10482403, "featuredRunMedia": null, "reactionVideos": [], @@ -396177,7 +395677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10483972, "featuredRunMedia": null, "reactionVideos": [], @@ -396197,7 +395697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 10486720, "featuredRunMedia": null, "reactionVideos": [], @@ -396217,7 +395717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 10486961, "featuredRunMedia": null, "reactionVideos": [], @@ -396237,7 +395737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 10487281, "featuredRunMedia": null, "reactionVideos": [], @@ -396257,7 +395757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 10487714, "featuredRunMedia": null, "reactionVideos": [], @@ -396277,7 +395777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "144389", "time": 10488399, "featuredRunMedia": null, "reactionVideos": [], @@ -396297,7 +395797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 10488957, "featuredRunMedia": null, "reactionVideos": [], @@ -396317,7 +395817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10489028, "featuredRunMedia": null, "reactionVideos": [], @@ -396337,7 +395837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 10489525, "featuredRunMedia": null, "reactionVideos": [], @@ -396357,7 +395857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "144288", "time": 10490191, "featuredRunMedia": null, "reactionVideos": [], @@ -396377,7 +395877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 10490451, "featuredRunMedia": null, "reactionVideos": [], @@ -396397,7 +395897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 10490584, "featuredRunMedia": null, "reactionVideos": [], @@ -396417,7 +395917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10490632, "featuredRunMedia": null, "reactionVideos": [], @@ -396437,7 +395937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10491024, "featuredRunMedia": null, "reactionVideos": [], @@ -396457,7 +395957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 10491785, "featuredRunMedia": null, "reactionVideos": [], @@ -396477,7 +395977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10491832, "featuredRunMedia": null, "reactionVideos": [], @@ -396497,7 +395997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10493572, "featuredRunMedia": null, "reactionVideos": [], @@ -396517,7 +396017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 342, + "teamId": "144412", "time": 10495033, "featuredRunMedia": null, "reactionVideos": [], @@ -396537,7 +396037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10497915, "featuredRunMedia": null, "reactionVideos": [], @@ -396557,7 +396057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 10498064, "featuredRunMedia": null, "reactionVideos": [], @@ -396577,7 +396077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 10499130, "featuredRunMedia": null, "reactionVideos": [], @@ -396597,7 +396097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10501267, "featuredRunMedia": null, "reactionVideos": [], @@ -396617,7 +396117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 10502124, "featuredRunMedia": null, "reactionVideos": [], @@ -396637,7 +396137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10503000, "featuredRunMedia": null, "reactionVideos": [], @@ -396657,7 +396157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 10503787, "featuredRunMedia": null, "reactionVideos": [], @@ -396677,7 +396177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 10504824, "featuredRunMedia": null, "reactionVideos": [], @@ -396697,7 +396197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 10505439, "featuredRunMedia": null, "reactionVideos": [], @@ -396717,7 +396217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 10505657, "featuredRunMedia": null, "reactionVideos": [], @@ -396737,7 +396237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 10507012, "featuredRunMedia": null, "reactionVideos": [], @@ -396757,7 +396257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "144096", "time": 10507433, "featuredRunMedia": null, "reactionVideos": [], @@ -396777,7 +396277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 10507929, "featuredRunMedia": null, "reactionVideos": [], @@ -396797,7 +396297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 10510532, "featuredRunMedia": null, "reactionVideos": [], @@ -396817,7 +396317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10510571, "featuredRunMedia": null, "reactionVideos": [], @@ -396841,7 +396341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 10510681, "featuredRunMedia": null, "reactionVideos": [], @@ -396861,7 +396361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10511393, "featuredRunMedia": null, "reactionVideos": [], @@ -396881,7 +396381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 10513611, "featuredRunMedia": null, "reactionVideos": [], @@ -396901,7 +396401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10514354, "featuredRunMedia": null, "reactionVideos": [], @@ -396921,7 +396421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10514423, "featuredRunMedia": null, "reactionVideos": [], @@ -396941,7 +396441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 10514858, "featuredRunMedia": null, "reactionVideos": [], @@ -396961,7 +396461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10515428, "featuredRunMedia": null, "reactionVideos": [], @@ -396981,7 +396481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 393, + "teamId": "144463", "time": 10515793, "featuredRunMedia": null, "reactionVideos": [], @@ -397001,7 +396501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 10516044, "featuredRunMedia": null, "reactionVideos": [], @@ -397021,7 +396521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10520684, "featuredRunMedia": null, "reactionVideos": [], @@ -397041,7 +396541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 10522400, "featuredRunMedia": null, "reactionVideos": [], @@ -397061,7 +396561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 10523173, "featuredRunMedia": null, "reactionVideos": [], @@ -397081,7 +396581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 10523283, "featuredRunMedia": null, "reactionVideos": [], @@ -397101,7 +396601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 10523734, "featuredRunMedia": null, "reactionVideos": [], @@ -397121,7 +396621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10524827, "featuredRunMedia": null, "reactionVideos": [], @@ -397141,7 +396641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 72, + "teamId": "144142", "time": 10525956, "featuredRunMedia": null, "reactionVideos": [], @@ -397161,7 +396661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 10526753, "featuredRunMedia": null, "reactionVideos": [], @@ -397181,7 +396681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 10527673, "featuredRunMedia": null, "reactionVideos": [], @@ -397201,7 +396701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 10528969, "featuredRunMedia": null, "reactionVideos": [], @@ -397221,7 +396721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10530033, "featuredRunMedia": null, "reactionVideos": [], @@ -397245,7 +396745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 10531250, "featuredRunMedia": null, "reactionVideos": [], @@ -397265,7 +396765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 10531315, "featuredRunMedia": null, "reactionVideos": [], @@ -397285,7 +396785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 10532082, "featuredRunMedia": null, "reactionVideos": [], @@ -397305,7 +396805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 10533561, "featuredRunMedia": null, "reactionVideos": [], @@ -397325,7 +396825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 10534748, "featuredRunMedia": null, "reactionVideos": [], @@ -397345,7 +396845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 10534896, "featuredRunMedia": null, "reactionVideos": [], @@ -397365,7 +396865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "144187", "time": 10536406, "featuredRunMedia": null, "reactionVideos": [], @@ -397385,7 +396885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 10537469, "featuredRunMedia": null, "reactionVideos": [], @@ -397405,7 +396905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 10538330, "featuredRunMedia": null, "reactionVideos": [], @@ -397425,7 +396925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 10538547, "featuredRunMedia": null, "reactionVideos": [], @@ -397445,7 +396945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10539614, "featuredRunMedia": null, "reactionVideos": [], @@ -397465,7 +396965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10540887, "featuredRunMedia": null, "reactionVideos": [], @@ -397485,7 +396985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10541461, "featuredRunMedia": null, "reactionVideos": [], @@ -397505,7 +397005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "144206", "time": 10545507, "featuredRunMedia": null, "reactionVideos": [], @@ -397525,7 +397025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10545680, "featuredRunMedia": null, "reactionVideos": [], @@ -397545,7 +397045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 10546766, "featuredRunMedia": null, "reactionVideos": [], @@ -397565,7 +397065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 10547088, "featuredRunMedia": null, "reactionVideos": [], @@ -397585,7 +397085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10547371, "featuredRunMedia": null, "reactionVideos": [], @@ -397605,7 +397105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 10547815, "featuredRunMedia": null, "reactionVideos": [], @@ -397625,7 +397125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 10548603, "featuredRunMedia": null, "reactionVideos": [], @@ -397645,7 +397145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10549610, "featuredRunMedia": null, "reactionVideos": [], @@ -397665,7 +397165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 10550327, "featuredRunMedia": null, "reactionVideos": [], @@ -397685,7 +397185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 439, + "teamId": "144509", "time": 10550981, "featuredRunMedia": null, "reactionVideos": [], @@ -397705,7 +397205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 10551744, "featuredRunMedia": null, "reactionVideos": [], @@ -397725,7 +397225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 10552107, "featuredRunMedia": null, "reactionVideos": [], @@ -397745,7 +397245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10552253, "featuredRunMedia": null, "reactionVideos": [], @@ -397765,7 +397265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 10556642, "featuredRunMedia": null, "reactionVideos": [], @@ -397785,7 +397285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 10557024, "featuredRunMedia": null, "reactionVideos": [], @@ -397805,7 +397305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 10557403, "featuredRunMedia": null, "reactionVideos": [], @@ -397825,7 +397325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "144110", "time": 10557790, "featuredRunMedia": null, "reactionVideos": [], @@ -397845,7 +397345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 10558014, "featuredRunMedia": null, "reactionVideos": [], @@ -397865,7 +397365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10559349, "featuredRunMedia": null, "reactionVideos": [], @@ -397885,7 +397385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "144392", "time": 10559830, "featuredRunMedia": null, "reactionVideos": [], @@ -397905,7 +397405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10560825, "featuredRunMedia": null, "reactionVideos": [], @@ -397925,7 +397425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 10561249, "featuredRunMedia": null, "reactionVideos": [], @@ -397945,7 +397445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 10561995, "featuredRunMedia": null, "reactionVideos": [], @@ -397965,7 +397465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10563166, "featuredRunMedia": null, "reactionVideos": [], @@ -397985,7 +397485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 10563257, "featuredRunMedia": null, "reactionVideos": [], @@ -398005,7 +397505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 10564357, "featuredRunMedia": null, "reactionVideos": [], @@ -398025,7 +397525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "144206", "time": 10564636, "featuredRunMedia": null, "reactionVideos": [], @@ -398045,7 +397545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "144133", "time": 10565374, "featuredRunMedia": null, "reactionVideos": [], @@ -398065,7 +397565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 10565544, "featuredRunMedia": null, "reactionVideos": [], @@ -398085,7 +397585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 10565787, "featuredRunMedia": null, "reactionVideos": [], @@ -398105,7 +397605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 10565830, "featuredRunMedia": null, "reactionVideos": [], @@ -398125,7 +397625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 10567773, "featuredRunMedia": null, "reactionVideos": [], @@ -398145,7 +397645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 10569512, "featuredRunMedia": null, "reactionVideos": [], @@ -398165,7 +397665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10569685, "featuredRunMedia": null, "reactionVideos": [], @@ -398185,7 +397685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10570711, "featuredRunMedia": null, "reactionVideos": [], @@ -398205,7 +397705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10571148, "featuredRunMedia": null, "reactionVideos": [], @@ -398225,7 +397725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "144192", "time": 10571386, "featuredRunMedia": null, "reactionVideos": [], @@ -398245,7 +397745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 10572256, "featuredRunMedia": null, "reactionVideos": [], @@ -398265,7 +397765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 10572637, "featuredRunMedia": null, "reactionVideos": [], @@ -398289,7 +397789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 10572916, "featuredRunMedia": null, "reactionVideos": [], @@ -398309,7 +397809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 10573149, "featuredRunMedia": null, "reactionVideos": [], @@ -398329,7 +397829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10573970, "featuredRunMedia": null, "reactionVideos": [], @@ -398349,7 +397849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 10574213, "featuredRunMedia": null, "reactionVideos": [], @@ -398369,7 +397869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 10574385, "featuredRunMedia": null, "reactionVideos": [], @@ -398389,7 +397889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "144228", "time": 10577298, "featuredRunMedia": null, "reactionVideos": [], @@ -398409,7 +397909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 10577406, "featuredRunMedia": null, "reactionVideos": [], @@ -398429,7 +397929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 10578202, "featuredRunMedia": null, "reactionVideos": [], @@ -398449,7 +397949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 10579120, "featuredRunMedia": null, "reactionVideos": [], @@ -398469,7 +397969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10580650, "featuredRunMedia": null, "reactionVideos": [], @@ -398489,7 +397989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 10583321, "featuredRunMedia": null, "reactionVideos": [], @@ -398509,7 +398009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10584468, "featuredRunMedia": null, "reactionVideos": [], @@ -398529,7 +398029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 10587972, "featuredRunMedia": null, "reactionVideos": [], @@ -398549,7 +398049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 10588199, "featuredRunMedia": null, "reactionVideos": [], @@ -398569,7 +398069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 10589918, "featuredRunMedia": null, "reactionVideos": [], @@ -398589,7 +398089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10592689, "featuredRunMedia": null, "reactionVideos": [], @@ -398609,7 +398109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 394, + "teamId": "144464", "time": 10593406, "featuredRunMedia": null, "reactionVideos": [], @@ -398629,7 +398129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 10594017, "featuredRunMedia": null, "reactionVideos": [], @@ -398649,7 +398149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10594760, "featuredRunMedia": null, "reactionVideos": [], @@ -398669,7 +398169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 10597184, "featuredRunMedia": null, "reactionVideos": [], @@ -398689,7 +398189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 10597536, "featuredRunMedia": null, "reactionVideos": [], @@ -398709,7 +398209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10599485, "featuredRunMedia": null, "reactionVideos": [], @@ -398729,7 +398229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 10600417, "featuredRunMedia": null, "reactionVideos": [], @@ -398749,7 +398249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 10602652, "featuredRunMedia": null, "reactionVideos": [], @@ -398769,7 +398269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 10603740, "featuredRunMedia": null, "reactionVideos": [], @@ -398789,7 +398289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 10605366, "featuredRunMedia": null, "reactionVideos": [], @@ -398809,7 +398309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 10606316, "featuredRunMedia": null, "reactionVideos": [], @@ -398829,7 +398329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 10607501, "featuredRunMedia": null, "reactionVideos": [], @@ -398849,7 +398349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 10608195, "featuredRunMedia": null, "reactionVideos": [], @@ -398869,7 +398369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10612660, "featuredRunMedia": null, "reactionVideos": [], @@ -398889,7 +398389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 10613656, "featuredRunMedia": null, "reactionVideos": [], @@ -398909,7 +398409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10614173, "featuredRunMedia": null, "reactionVideos": [], @@ -398929,7 +398429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 10615386, "featuredRunMedia": null, "reactionVideos": [], @@ -398949,7 +398449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 111, + "teamId": "144181", "time": 10620356, "featuredRunMedia": null, "reactionVideos": [], @@ -398969,7 +398469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10620391, "featuredRunMedia": null, "reactionVideos": [], @@ -398989,7 +398489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 10621830, "featuredRunMedia": null, "reactionVideos": [], @@ -399009,7 +398509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 10624894, "featuredRunMedia": null, "reactionVideos": [], @@ -399029,7 +398529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10628747, "featuredRunMedia": null, "reactionVideos": [], @@ -399049,7 +398549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 259, + "teamId": "144329", "time": 10631042, "featuredRunMedia": null, "reactionVideos": [], @@ -399069,7 +398569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 10634177, "featuredRunMedia": null, "reactionVideos": [], @@ -399089,7 +398589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 10635386, "featuredRunMedia": null, "reactionVideos": [], @@ -399109,7 +398609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10635463, "featuredRunMedia": null, "reactionVideos": [], @@ -399129,7 +398629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10637223, "featuredRunMedia": null, "reactionVideos": [], @@ -399149,7 +398649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "144182", "time": 10638410, "featuredRunMedia": null, "reactionVideos": [], @@ -399169,7 +398669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10638513, "featuredRunMedia": null, "reactionVideos": [], @@ -399189,7 +398689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 10638962, "featuredRunMedia": null, "reactionVideos": [], @@ -399209,7 +398709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 10639010, "featuredRunMedia": null, "reactionVideos": [], @@ -399229,7 +398729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 10640111, "featuredRunMedia": null, "reactionVideos": [], @@ -399249,7 +398749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10641428, "featuredRunMedia": null, "reactionVideos": [], @@ -399269,7 +398769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 10641477, "featuredRunMedia": null, "reactionVideos": [], @@ -399289,7 +398789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10641981, "featuredRunMedia": null, "reactionVideos": [], @@ -399309,7 +398809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "144206", "time": 10642725, "featuredRunMedia": null, "reactionVideos": [], @@ -399329,7 +398829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 10643098, "featuredRunMedia": null, "reactionVideos": [], @@ -399349,7 +398849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 10644421, "featuredRunMedia": null, "reactionVideos": [], @@ -399369,7 +398869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10644492, "featuredRunMedia": null, "reactionVideos": [], @@ -399389,7 +398889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "144388", "time": 10644957, "featuredRunMedia": null, "reactionVideos": [], @@ -399409,7 +398909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 10645015, "featuredRunMedia": null, "reactionVideos": [], @@ -399429,7 +398929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10647462, "featuredRunMedia": null, "reactionVideos": [], @@ -399449,7 +398949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10650511, "featuredRunMedia": null, "reactionVideos": [], @@ -399469,7 +398969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 10650898, "featuredRunMedia": null, "reactionVideos": [], @@ -399489,7 +398989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 10651114, "featuredRunMedia": null, "reactionVideos": [], @@ -399509,7 +399009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10651945, "featuredRunMedia": null, "reactionVideos": [], @@ -399529,7 +399029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "144206", "time": 10652390, "featuredRunMedia": null, "reactionVideos": [], @@ -399549,7 +399049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10653030, "featuredRunMedia": null, "reactionVideos": [], @@ -399569,7 +399069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 10653141, "featuredRunMedia": null, "reactionVideos": [], @@ -399589,7 +399089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10655463, "featuredRunMedia": null, "reactionVideos": [], @@ -399609,7 +399109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 10655494, "featuredRunMedia": null, "reactionVideos": [], @@ -399629,7 +399129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10660567, "featuredRunMedia": null, "reactionVideos": [], @@ -399649,7 +399149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 10662009, "featuredRunMedia": null, "reactionVideos": [], @@ -399669,7 +399169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 10662054, "featuredRunMedia": null, "reactionVideos": [], @@ -399689,7 +399189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 10662664, "featuredRunMedia": null, "reactionVideos": [], @@ -399709,7 +399209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 10668833, "featuredRunMedia": null, "reactionVideos": [], @@ -399729,7 +399229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "144374", "time": 10671344, "featuredRunMedia": null, "reactionVideos": [], @@ -399749,7 +399249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 10675954, "featuredRunMedia": null, "reactionVideos": [], @@ -399769,7 +399269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 10677813, "featuredRunMedia": null, "reactionVideos": [], @@ -399789,7 +399289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10681997, "featuredRunMedia": null, "reactionVideos": [], @@ -399809,7 +399309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "144077", "time": 10684426, "featuredRunMedia": null, "reactionVideos": [], @@ -399829,7 +399329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 10684849, "featuredRunMedia": null, "reactionVideos": [], @@ -399849,7 +399349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 10686829, "featuredRunMedia": null, "reactionVideos": [], @@ -399869,7 +399369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10688630, "featuredRunMedia": null, "reactionVideos": [], @@ -399889,7 +399389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 10688958, "featuredRunMedia": null, "reactionVideos": [], @@ -399909,7 +399409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10689713, "featuredRunMedia": null, "reactionVideos": [], @@ -399929,7 +399429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 10691696, "featuredRunMedia": null, "reactionVideos": [], @@ -399949,7 +399449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10692623, "featuredRunMedia": null, "reactionVideos": [], @@ -399969,7 +399469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10693079, "featuredRunMedia": null, "reactionVideos": [], @@ -399989,7 +399489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 10693231, "featuredRunMedia": null, "reactionVideos": [], @@ -400009,7 +399509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 10695253, "featuredRunMedia": null, "reactionVideos": [], @@ -400029,7 +399529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "144152", "time": 10697087, "featuredRunMedia": null, "reactionVideos": [], @@ -400049,7 +399549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 10698724, "featuredRunMedia": null, "reactionVideos": [], @@ -400069,7 +399569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10698849, "featuredRunMedia": null, "reactionVideos": [], @@ -400089,7 +399589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "144364", "time": 10699278, "featuredRunMedia": null, "reactionVideos": [], @@ -400109,7 +399609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 10703334, "featuredRunMedia": null, "reactionVideos": [], @@ -400129,7 +399629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10704955, "featuredRunMedia": null, "reactionVideos": [], @@ -400149,7 +399649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10706083, "featuredRunMedia": null, "reactionVideos": [], @@ -400169,7 +399669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 10707788, "featuredRunMedia": null, "reactionVideos": [], @@ -400189,7 +399689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 10708168, "featuredRunMedia": null, "reactionVideos": [], @@ -400209,7 +399709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 339, + "teamId": "144409", "time": 10708952, "featuredRunMedia": null, "reactionVideos": [], @@ -400229,7 +399729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 10709571, "featuredRunMedia": null, "reactionVideos": [], @@ -400249,7 +399749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "144203", "time": 10710198, "featuredRunMedia": null, "reactionVideos": [], @@ -400269,7 +399769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 10710278, "featuredRunMedia": null, "reactionVideos": [], @@ -400289,7 +399789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 10711360, "featuredRunMedia": null, "reactionVideos": [], @@ -400309,7 +399809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10711744, "featuredRunMedia": null, "reactionVideos": [], @@ -400329,7 +399829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10713549, "featuredRunMedia": null, "reactionVideos": [], @@ -400349,7 +399849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 10715268, "featuredRunMedia": null, "reactionVideos": [], @@ -400369,7 +399869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 10717442, "featuredRunMedia": null, "reactionVideos": [], @@ -400389,7 +399889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 10717528, "featuredRunMedia": null, "reactionVideos": [], @@ -400409,7 +399909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 10717644, "featuredRunMedia": null, "reactionVideos": [], @@ -400429,7 +399929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 10720619, "featuredRunMedia": null, "reactionVideos": [], @@ -400449,7 +399949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 10721502, "featuredRunMedia": null, "reactionVideos": [], @@ -400469,7 +399969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 10721754, "featuredRunMedia": null, "reactionVideos": [], @@ -400489,7 +399989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10721862, "featuredRunMedia": null, "reactionVideos": [], @@ -400509,7 +400009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "144259", "time": 10722778, "featuredRunMedia": null, "reactionVideos": [], @@ -400529,7 +400029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "144166", "time": 10723730, "featuredRunMedia": null, "reactionVideos": [], @@ -400549,7 +400049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 10723883, "featuredRunMedia": null, "reactionVideos": [], @@ -400569,7 +400069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 10724047, "featuredRunMedia": null, "reactionVideos": [], @@ -400589,7 +400089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 10724351, "featuredRunMedia": null, "reactionVideos": [], @@ -400609,7 +400109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10724672, "featuredRunMedia": null, "reactionVideos": [], @@ -400629,7 +400129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10732299, "featuredRunMedia": null, "reactionVideos": [], @@ -400649,7 +400149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 10732370, "featuredRunMedia": null, "reactionVideos": [], @@ -400669,7 +400169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 10732468, "featuredRunMedia": null, "reactionVideos": [], @@ -400689,7 +400189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10732889, "featuredRunMedia": null, "reactionVideos": [], @@ -400709,7 +400209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10732994, "featuredRunMedia": null, "reactionVideos": [], @@ -400729,7 +400229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "144321", "time": 10733973, "featuredRunMedia": null, "reactionVideos": [], @@ -400749,7 +400249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 10734182, "featuredRunMedia": null, "reactionVideos": [], @@ -400769,7 +400269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 10734519, "featuredRunMedia": null, "reactionVideos": [], @@ -400789,7 +400289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10736353, "featuredRunMedia": null, "reactionVideos": [], @@ -400809,7 +400309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 10736601, "featuredRunMedia": null, "reactionVideos": [], @@ -400829,7 +400329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 10738145, "featuredRunMedia": null, "reactionVideos": [], @@ -400849,7 +400349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 10738185, "featuredRunMedia": null, "reactionVideos": [], @@ -400869,7 +400369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 10741438, "featuredRunMedia": null, "reactionVideos": [], @@ -400889,7 +400389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10741770, "featuredRunMedia": null, "reactionVideos": [], @@ -400909,7 +400409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10742443, "featuredRunMedia": null, "reactionVideos": [], @@ -400929,7 +400429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "144249", "time": 10742991, "featuredRunMedia": null, "reactionVideos": [], @@ -400949,7 +400449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 10744070, "featuredRunMedia": null, "reactionVideos": [], @@ -400969,7 +400469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 10744244, "featuredRunMedia": null, "reactionVideos": [], @@ -400989,7 +400489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 10745315, "featuredRunMedia": null, "reactionVideos": [], @@ -401009,7 +400509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 10747353, "featuredRunMedia": null, "reactionVideos": [], @@ -401029,7 +400529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 10749195, "featuredRunMedia": null, "reactionVideos": [], @@ -401049,7 +400549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 10749258, "featuredRunMedia": null, "reactionVideos": [], @@ -401069,7 +400569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10749970, "featuredRunMedia": null, "reactionVideos": [], @@ -401089,7 +400589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 10750120, "featuredRunMedia": null, "reactionVideos": [], @@ -401109,7 +400609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 10750306, "featuredRunMedia": null, "reactionVideos": [], @@ -401129,7 +400629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10751095, "featuredRunMedia": null, "reactionVideos": [], @@ -401149,7 +400649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10751142, "featuredRunMedia": null, "reactionVideos": [], @@ -401173,7 +400673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10751307, "featuredRunMedia": null, "reactionVideos": [], @@ -401193,7 +400693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 10752611, "featuredRunMedia": null, "reactionVideos": [], @@ -401213,7 +400713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10753462, "featuredRunMedia": null, "reactionVideos": [], @@ -401233,7 +400733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 10756013, "featuredRunMedia": null, "reactionVideos": [], @@ -401253,7 +400753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "144179", "time": 10756815, "featuredRunMedia": null, "reactionVideos": [], @@ -401273,7 +400773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10757934, "featuredRunMedia": null, "reactionVideos": [], @@ -401293,7 +400793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10758789, "featuredRunMedia": null, "reactionVideos": [], @@ -401313,7 +400813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 10759004, "featuredRunMedia": null, "reactionVideos": [], @@ -401333,7 +400833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10759722, "featuredRunMedia": null, "reactionVideos": [], @@ -401353,7 +400853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10759773, "featuredRunMedia": null, "reactionVideos": [], @@ -401373,7 +400873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 10759824, "featuredRunMedia": null, "reactionVideos": [], @@ -401393,7 +400893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 10760006, "featuredRunMedia": null, "reactionVideos": [], @@ -401413,7 +400913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 10760850, "featuredRunMedia": null, "reactionVideos": [], @@ -401433,7 +400933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10762588, "featuredRunMedia": null, "reactionVideos": [], @@ -401453,7 +400953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 10763010, "featuredRunMedia": null, "reactionVideos": [], @@ -401473,7 +400973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10765073, "featuredRunMedia": null, "reactionVideos": [], @@ -401493,7 +400993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 10766249, "featuredRunMedia": null, "reactionVideos": [], @@ -401513,7 +401013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 10766446, "featuredRunMedia": null, "reactionVideos": [], @@ -401533,7 +401033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "144261", "time": 10767926, "featuredRunMedia": null, "reactionVideos": [], @@ -401553,7 +401053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 10769222, "featuredRunMedia": null, "reactionVideos": [], @@ -401573,7 +401073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "144270", "time": 10769294, "featuredRunMedia": null, "reactionVideos": [], @@ -401593,7 +401093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10770243, "featuredRunMedia": null, "reactionVideos": [], @@ -401613,7 +401113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 10770342, "featuredRunMedia": null, "reactionVideos": [], @@ -401633,7 +401133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 10770371, "featuredRunMedia": null, "reactionVideos": [], @@ -401653,7 +401153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 10770804, "featuredRunMedia": null, "reactionVideos": [], @@ -401673,7 +401173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10772889, "featuredRunMedia": null, "reactionVideos": [], @@ -401693,7 +401193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 407, + "teamId": "144477", "time": 10774119, "featuredRunMedia": null, "reactionVideos": [], @@ -401713,7 +401213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10775400, "featuredRunMedia": null, "reactionVideos": [], @@ -401733,7 +401233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 10776734, "featuredRunMedia": null, "reactionVideos": [], @@ -401753,7 +401253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 10776997, "featuredRunMedia": null, "reactionVideos": [], @@ -401773,7 +401273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10778530, "featuredRunMedia": null, "reactionVideos": [], @@ -401793,7 +401293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10778767, "featuredRunMedia": null, "reactionVideos": [], @@ -401813,7 +401313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 10778921, "featuredRunMedia": null, "reactionVideos": [], @@ -401833,7 +401333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 10779289, "featuredRunMedia": null, "reactionVideos": [], @@ -401853,7 +401353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "144392", "time": 10781491, "featuredRunMedia": null, "reactionVideos": [], @@ -401873,7 +401373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 10781814, "featuredRunMedia": null, "reactionVideos": [], @@ -401893,7 +401393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "144110", "time": 10781958, "featuredRunMedia": null, "reactionVideos": [], @@ -401913,7 +401413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 10783090, "featuredRunMedia": null, "reactionVideos": [], @@ -401933,7 +401433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10784878, "featuredRunMedia": null, "reactionVideos": [], @@ -401953,7 +401453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 10786528, "featuredRunMedia": null, "reactionVideos": [], @@ -401973,7 +401473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 10786695, "featuredRunMedia": null, "reactionVideos": [], @@ -401993,7 +401493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 10786834, "featuredRunMedia": null, "reactionVideos": [], @@ -402013,7 +401513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 10789436, "featuredRunMedia": null, "reactionVideos": [], @@ -402033,7 +401533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 10789513, "featuredRunMedia": null, "reactionVideos": [], @@ -402053,7 +401553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 10789969, "featuredRunMedia": null, "reactionVideos": [], @@ -402073,7 +401573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 10790703, "featuredRunMedia": null, "reactionVideos": [], @@ -402093,7 +401593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 10791226, "featuredRunMedia": null, "reactionVideos": [], @@ -402113,7 +401613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "144145", "time": 10792073, "featuredRunMedia": null, "reactionVideos": [], @@ -402133,7 +401633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10795214, "featuredRunMedia": null, "reactionVideos": [], @@ -402153,7 +401653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "144280", "time": 10796913, "featuredRunMedia": null, "reactionVideos": [], @@ -402173,7 +401673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 10797379, "featuredRunMedia": null, "reactionVideos": [], @@ -402193,7 +401693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 72, + "teamId": "144142", "time": 10801435, "featuredRunMedia": null, "reactionVideos": [], @@ -402217,7 +401717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10804984, "featuredRunMedia": null, "reactionVideos": [], @@ -402237,7 +401737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 10806054, "featuredRunMedia": null, "reactionVideos": [], @@ -402257,7 +401757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 10806285, "featuredRunMedia": null, "reactionVideos": [], @@ -402277,7 +401777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 10807810, "featuredRunMedia": null, "reactionVideos": [], @@ -402297,7 +401797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 326, + "teamId": "144396", "time": 10809653, "featuredRunMedia": null, "reactionVideos": [], @@ -402317,7 +401817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 10809833, "featuredRunMedia": null, "reactionVideos": [], @@ -402337,7 +401837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10810650, "featuredRunMedia": null, "reactionVideos": [], @@ -402357,7 +401857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "144372", "time": 10812314, "featuredRunMedia": null, "reactionVideos": [], @@ -402377,7 +401877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 10812426, "featuredRunMedia": null, "reactionVideos": [], @@ -402397,7 +401897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 10812548, "featuredRunMedia": null, "reactionVideos": [], @@ -402417,7 +401917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 10813399, "featuredRunMedia": null, "reactionVideos": [], @@ -402437,7 +401937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 10814540, "featuredRunMedia": null, "reactionVideos": [], @@ -402457,7 +401957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 10815036, "featuredRunMedia": null, "reactionVideos": [], @@ -402477,7 +401977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10819463, "featuredRunMedia": null, "reactionVideos": [], @@ -402497,7 +401997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 10820787, "featuredRunMedia": null, "reactionVideos": [], @@ -402517,7 +402017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10821827, "featuredRunMedia": null, "reactionVideos": [], @@ -402537,7 +402037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 427, + "teamId": "144497", "time": 10822190, "featuredRunMedia": null, "reactionVideos": [], @@ -402557,7 +402057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 10823945, "featuredRunMedia": null, "reactionVideos": [], @@ -402581,7 +402081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10824676, "featuredRunMedia": null, "reactionVideos": [], @@ -402601,7 +402101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10824874, "featuredRunMedia": null, "reactionVideos": [], @@ -402621,7 +402121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 10825535, "featuredRunMedia": null, "reactionVideos": [], @@ -402641,7 +402141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "144228", "time": 10825594, "featuredRunMedia": null, "reactionVideos": [], @@ -402661,7 +402161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 10826111, "featuredRunMedia": null, "reactionVideos": [], @@ -402681,7 +402181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 10826628, "featuredRunMedia": null, "reactionVideos": [], @@ -402701,7 +402201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 10829942, "featuredRunMedia": null, "reactionVideos": [], @@ -402721,7 +402221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 414, + "teamId": "144484", "time": 10830137, "featuredRunMedia": null, "reactionVideos": [], @@ -402741,7 +402241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 10831993, "featuredRunMedia": null, "reactionVideos": [], @@ -402761,7 +402261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 10832635, "featuredRunMedia": null, "reactionVideos": [], @@ -402781,7 +402281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10832857, "featuredRunMedia": null, "reactionVideos": [], @@ -402801,7 +402301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 10832992, "featuredRunMedia": null, "reactionVideos": [], @@ -402821,7 +402321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10833717, "featuredRunMedia": null, "reactionVideos": [], @@ -402841,7 +402341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 10835145, "featuredRunMedia": null, "reactionVideos": [], @@ -402865,7 +402365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10835220, "featuredRunMedia": null, "reactionVideos": [], @@ -402885,7 +402385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10836443, "featuredRunMedia": null, "reactionVideos": [], @@ -402905,7 +402405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10836649, "featuredRunMedia": null, "reactionVideos": [], @@ -402925,7 +402425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 10836691, "featuredRunMedia": null, "reactionVideos": [], @@ -402945,7 +402445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 10838236, "featuredRunMedia": null, "reactionVideos": [], @@ -402965,7 +402465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 10838610, "featuredRunMedia": null, "reactionVideos": [], @@ -402985,7 +402485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 10839696, "featuredRunMedia": null, "reactionVideos": [], @@ -403005,7 +402505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 10840355, "featuredRunMedia": null, "reactionVideos": [], @@ -403025,7 +402525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 10840445, "featuredRunMedia": null, "reactionVideos": [], @@ -403045,7 +402545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 177, + "teamId": "144247", "time": 10840651, "featuredRunMedia": null, "reactionVideos": [], @@ -403065,7 +402565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 330, + "teamId": "144400", "time": 10841202, "featuredRunMedia": null, "reactionVideos": [], @@ -403085,7 +402585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 10841975, "featuredRunMedia": null, "reactionVideos": [], @@ -403105,7 +402605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 10847136, "featuredRunMedia": null, "reactionVideos": [], @@ -403125,7 +402625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 10847174, "featuredRunMedia": null, "reactionVideos": [], @@ -403145,7 +402645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 10848319, "featuredRunMedia": null, "reactionVideos": [], @@ -403165,7 +402665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 10848908, "featuredRunMedia": null, "reactionVideos": [], @@ -403185,7 +402685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 10849249, "featuredRunMedia": null, "reactionVideos": [], @@ -403205,7 +402705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 10849319, "featuredRunMedia": null, "reactionVideos": [], @@ -403225,7 +402725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 10851339, "featuredRunMedia": null, "reactionVideos": [], @@ -403245,7 +402745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "144162", "time": 10851529, "featuredRunMedia": null, "reactionVideos": [], @@ -403265,7 +402765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 10851600, "featuredRunMedia": null, "reactionVideos": [], @@ -403285,7 +402785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 10852751, "featuredRunMedia": null, "reactionVideos": [], @@ -403305,7 +402805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 10853600, "featuredRunMedia": null, "reactionVideos": [], @@ -403325,7 +402825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10854741, "featuredRunMedia": null, "reactionVideos": [], @@ -403345,7 +402845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 10855438, "featuredRunMedia": null, "reactionVideos": [], @@ -403365,7 +402865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10857105, "featuredRunMedia": null, "reactionVideos": [], @@ -403385,7 +402885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 10857428, "featuredRunMedia": null, "reactionVideos": [], @@ -403405,7 +402905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 10857474, "featuredRunMedia": null, "reactionVideos": [], @@ -403425,7 +402925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 10858996, "featuredRunMedia": null, "reactionVideos": [], @@ -403445,7 +402945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 10859548, "featuredRunMedia": null, "reactionVideos": [], @@ -403465,7 +402965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 10860168, "featuredRunMedia": null, "reactionVideos": [], @@ -403485,7 +402985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 10860324, "featuredRunMedia": null, "reactionVideos": [], @@ -403505,7 +403005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 10863620, "featuredRunMedia": null, "reactionVideos": [], @@ -403525,7 +403025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 10866343, "featuredRunMedia": null, "reactionVideos": [], @@ -403545,7 +403045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 326, + "teamId": "144396", "time": 10867171, "featuredRunMedia": null, "reactionVideos": [], @@ -403565,7 +403065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 431, + "teamId": "144501", "time": 10869991, "featuredRunMedia": null, "reactionVideos": [], @@ -403585,7 +403085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 10870306, "featuredRunMedia": null, "reactionVideos": [], @@ -403605,7 +403105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10870874, "featuredRunMedia": null, "reactionVideos": [], @@ -403625,7 +403125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 10871756, "featuredRunMedia": null, "reactionVideos": [], @@ -403649,7 +403149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10872692, "featuredRunMedia": null, "reactionVideos": [], @@ -403669,7 +403169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 10873693, "featuredRunMedia": null, "reactionVideos": [], @@ -403689,7 +403189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 10875712, "featuredRunMedia": null, "reactionVideos": [], @@ -403709,7 +403209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 10876912, "featuredRunMedia": null, "reactionVideos": [], @@ -403729,7 +403229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 10877965, "featuredRunMedia": null, "reactionVideos": [], @@ -403749,7 +403249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 10879250, "featuredRunMedia": null, "reactionVideos": [], @@ -403769,7 +403269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 10880923, "featuredRunMedia": null, "reactionVideos": [], @@ -403789,7 +403289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 10881318, "featuredRunMedia": null, "reactionVideos": [], @@ -403809,7 +403309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 10882283, "featuredRunMedia": null, "reactionVideos": [], @@ -403829,7 +403329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 10882378, "featuredRunMedia": null, "reactionVideos": [], @@ -403849,7 +403349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 10883051, "featuredRunMedia": null, "reactionVideos": [], @@ -403869,7 +403369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 10883138, "featuredRunMedia": null, "reactionVideos": [], @@ -403889,7 +403389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 10884210, "featuredRunMedia": null, "reactionVideos": [], @@ -403909,7 +403409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 10887623, "featuredRunMedia": null, "reactionVideos": [], @@ -403929,7 +403429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 10888767, "featuredRunMedia": null, "reactionVideos": [], @@ -403949,7 +403449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 10890618, "featuredRunMedia": null, "reactionVideos": [], @@ -403969,7 +403469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 10892113, "featuredRunMedia": null, "reactionVideos": [], @@ -403993,7 +403493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10896892, "featuredRunMedia": null, "reactionVideos": [], @@ -404013,7 +403513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 10897546, "featuredRunMedia": null, "reactionVideos": [], @@ -404033,7 +403533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 10899696, "featuredRunMedia": null, "reactionVideos": [], @@ -404053,7 +403553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 10900383, "featuredRunMedia": null, "reactionVideos": [], @@ -404073,7 +403573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 10901822, "featuredRunMedia": null, "reactionVideos": [], @@ -404093,7 +403593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "144151", "time": 10907240, "featuredRunMedia": null, "reactionVideos": [], @@ -404113,7 +403613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 10908340, "featuredRunMedia": null, "reactionVideos": [], @@ -404133,7 +403633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 10913099, "featuredRunMedia": null, "reactionVideos": [], @@ -404153,7 +403653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 10917501, "featuredRunMedia": null, "reactionVideos": [], @@ -404173,7 +403673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "144377", "time": 10917916, "featuredRunMedia": null, "reactionVideos": [], @@ -404193,7 +403693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 10917964, "featuredRunMedia": null, "reactionVideos": [], @@ -404213,7 +403713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 10919148, "featuredRunMedia": null, "reactionVideos": [], @@ -404237,7 +403737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10919305, "featuredRunMedia": null, "reactionVideos": [], @@ -404257,7 +403757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10919549, "featuredRunMedia": null, "reactionVideos": [], @@ -404277,7 +403777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10919601, "featuredRunMedia": null, "reactionVideos": [], @@ -404297,7 +403797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 10922081, "featuredRunMedia": null, "reactionVideos": [], @@ -404321,7 +403821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 10926348, "featuredRunMedia": null, "reactionVideos": [], @@ -404341,7 +403841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 10927011, "featuredRunMedia": null, "reactionVideos": [], @@ -404361,7 +403861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 10927081, "featuredRunMedia": null, "reactionVideos": [], @@ -404381,7 +403881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 10927161, "featuredRunMedia": null, "reactionVideos": [], @@ -404401,7 +403901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10927504, "featuredRunMedia": null, "reactionVideos": [], @@ -404421,7 +403921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 10928150, "featuredRunMedia": null, "reactionVideos": [], @@ -404441,7 +403941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 10929096, "featuredRunMedia": null, "reactionVideos": [], @@ -404461,7 +403961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 10931820, "featuredRunMedia": null, "reactionVideos": [], @@ -404481,7 +403981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 10931874, "featuredRunMedia": null, "reactionVideos": [], @@ -404501,7 +404001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 10932119, "featuredRunMedia": null, "reactionVideos": [], @@ -404521,7 +404021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 177, + "teamId": "144247", "time": 10936851, "featuredRunMedia": null, "reactionVideos": [], @@ -404541,7 +404041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 10937303, "featuredRunMedia": null, "reactionVideos": [], @@ -404561,7 +404061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 10937817, "featuredRunMedia": null, "reactionVideos": [], @@ -404585,7 +404085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 10938607, "featuredRunMedia": null, "reactionVideos": [], @@ -404605,7 +404105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10939247, "featuredRunMedia": null, "reactionVideos": [], @@ -404625,7 +404125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 10939788, "featuredRunMedia": null, "reactionVideos": [], @@ -404645,7 +404145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 10940446, "featuredRunMedia": null, "reactionVideos": [], @@ -404665,7 +404165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 10940944, "featuredRunMedia": null, "reactionVideos": [], @@ -404685,7 +404185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 10941794, "featuredRunMedia": null, "reactionVideos": [], @@ -404705,7 +404205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "144144", "time": 10943668, "featuredRunMedia": null, "reactionVideos": [], @@ -404725,7 +404225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 10947069, "featuredRunMedia": null, "reactionVideos": [], @@ -404745,7 +404245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 10948427, "featuredRunMedia": null, "reactionVideos": [], @@ -404765,7 +404265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 10948733, "featuredRunMedia": null, "reactionVideos": [], @@ -404785,7 +404285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 10949788, "featuredRunMedia": null, "reactionVideos": [], @@ -404805,7 +404305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 10950932, "featuredRunMedia": null, "reactionVideos": [], @@ -404825,7 +404325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 10951138, "featuredRunMedia": null, "reactionVideos": [], @@ -404845,7 +404345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "144406", "time": 10951233, "featuredRunMedia": null, "reactionVideos": [], @@ -404865,7 +404365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 10951374, "featuredRunMedia": null, "reactionVideos": [], @@ -404885,7 +404385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 330, + "teamId": "144400", "time": 10952441, "featuredRunMedia": null, "reactionVideos": [], @@ -404905,7 +404405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 10952747, "featuredRunMedia": null, "reactionVideos": [], @@ -404925,7 +404425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 10953239, "featuredRunMedia": null, "reactionVideos": [], @@ -404949,7 +404449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 10954208, "featuredRunMedia": null, "reactionVideos": [], @@ -404969,7 +404469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "144354", "time": 10954493, "featuredRunMedia": null, "reactionVideos": [], @@ -404989,7 +404489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 10955332, "featuredRunMedia": null, "reactionVideos": [], @@ -405009,7 +404509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 10955821, "featuredRunMedia": null, "reactionVideos": [], @@ -405029,7 +404529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 10957293, "featuredRunMedia": null, "reactionVideos": [], @@ -405049,7 +404549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 10961763, "featuredRunMedia": null, "reactionVideos": [], @@ -405069,7 +404569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 10964990, "featuredRunMedia": null, "reactionVideos": [], @@ -405089,7 +404589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 10965528, "featuredRunMedia": null, "reactionVideos": [], @@ -405109,7 +404609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 10966234, "featuredRunMedia": null, "reactionVideos": [], @@ -405129,7 +404629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 372, + "teamId": "144442", "time": 10968039, "featuredRunMedia": null, "reactionVideos": [], @@ -405149,7 +404649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "144151", "time": 10970288, "featuredRunMedia": null, "reactionVideos": [], @@ -405169,7 +404669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 10971754, "featuredRunMedia": null, "reactionVideos": [], @@ -405189,7 +404689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 10973410, "featuredRunMedia": null, "reactionVideos": [], @@ -405209,7 +404709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 10973930, "featuredRunMedia": null, "reactionVideos": [], @@ -405229,7 +404729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 10974035, "featuredRunMedia": null, "reactionVideos": [], @@ -405249,7 +404749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "144114", "time": 10974471, "featuredRunMedia": null, "reactionVideos": [], @@ -405269,7 +404769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 10974639, "featuredRunMedia": null, "reactionVideos": [], @@ -405289,7 +404789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 10975559, "featuredRunMedia": null, "reactionVideos": [], @@ -405309,7 +404809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 10976585, "featuredRunMedia": null, "reactionVideos": [], @@ -405329,7 +404829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 10976956, "featuredRunMedia": null, "reactionVideos": [], @@ -405349,7 +404849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 10977521, "featuredRunMedia": null, "reactionVideos": [], @@ -405369,7 +404869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 10977773, "featuredRunMedia": null, "reactionVideos": [], @@ -405389,7 +404889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 10980344, "featuredRunMedia": null, "reactionVideos": [], @@ -405409,7 +404909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 10980856, "featuredRunMedia": null, "reactionVideos": [], @@ -405429,7 +404929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 265, + "teamId": "144335", "time": 10986096, "featuredRunMedia": null, "reactionVideos": [], @@ -405449,7 +404949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 10986193, "featuredRunMedia": null, "reactionVideos": [], @@ -405469,7 +404969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 414, + "teamId": "144484", "time": 10988723, "featuredRunMedia": null, "reactionVideos": [], @@ -405489,7 +404989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 10990067, "featuredRunMedia": null, "reactionVideos": [], @@ -405509,7 +405009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 10990538, "featuredRunMedia": null, "reactionVideos": [], @@ -405529,7 +405029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 10990978, "featuredRunMedia": null, "reactionVideos": [], @@ -405549,7 +405049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 10991782, "featuredRunMedia": null, "reactionVideos": [], @@ -405569,7 +405069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 10993993, "featuredRunMedia": null, "reactionVideos": [], @@ -405589,7 +405089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 10996438, "featuredRunMedia": null, "reactionVideos": [], @@ -405609,7 +405109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "144192", "time": 10997388, "featuredRunMedia": null, "reactionVideos": [], @@ -405629,7 +405129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 384, + "teamId": "144454", "time": 10998761, "featuredRunMedia": null, "reactionVideos": [], @@ -405649,7 +405149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 11000219, "featuredRunMedia": null, "reactionVideos": [], @@ -405669,7 +405169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11002198, "featuredRunMedia": null, "reactionVideos": [], @@ -405689,7 +405189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11002304, "featuredRunMedia": null, "reactionVideos": [], @@ -405709,7 +405209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 11002703, "featuredRunMedia": null, "reactionVideos": [], @@ -405729,7 +405229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 11003383, "featuredRunMedia": null, "reactionVideos": [], @@ -405749,7 +405249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 11005367, "featuredRunMedia": null, "reactionVideos": [], @@ -405769,7 +405269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 11007095, "featuredRunMedia": null, "reactionVideos": [], @@ -405789,7 +405289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11007430, "featuredRunMedia": null, "reactionVideos": [], @@ -405809,7 +405309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 11007723, "featuredRunMedia": null, "reactionVideos": [], @@ -405829,7 +405329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11008506, "featuredRunMedia": null, "reactionVideos": [], @@ -405849,7 +405349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11010943, "featuredRunMedia": null, "reactionVideos": [], @@ -405869,7 +405369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 11010991, "featuredRunMedia": null, "reactionVideos": [], @@ -405889,7 +405389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 11011473, "featuredRunMedia": null, "reactionVideos": [], @@ -405909,7 +405409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "144124", "time": 11011713, "featuredRunMedia": null, "reactionVideos": [], @@ -405929,7 +405429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11012073, "featuredRunMedia": null, "reactionVideos": [], @@ -405949,7 +405449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 11013440, "featuredRunMedia": null, "reactionVideos": [], @@ -405969,7 +405469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "144236", "time": 11013573, "featuredRunMedia": null, "reactionVideos": [], @@ -405989,7 +405489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11015490, "featuredRunMedia": null, "reactionVideos": [], @@ -406009,7 +405509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11015567, "featuredRunMedia": null, "reactionVideos": [], @@ -406029,7 +405529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 11015848, "featuredRunMedia": null, "reactionVideos": [], @@ -406049,7 +405549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 407, + "teamId": "144477", "time": 11016544, "featuredRunMedia": null, "reactionVideos": [], @@ -406069,7 +405569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 11016943, "featuredRunMedia": null, "reactionVideos": [], @@ -406089,7 +405589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 11017516, "featuredRunMedia": null, "reactionVideos": [], @@ -406109,7 +405609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 11018885, "featuredRunMedia": null, "reactionVideos": [], @@ -406129,7 +405629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 11019656, "featuredRunMedia": null, "reactionVideos": [], @@ -406149,7 +405649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 11019963, "featuredRunMedia": null, "reactionVideos": [], @@ -406169,7 +405669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 11020418, "featuredRunMedia": null, "reactionVideos": [], @@ -406189,7 +405689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 11022390, "featuredRunMedia": null, "reactionVideos": [], @@ -406213,7 +405713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11022867, "featuredRunMedia": null, "reactionVideos": [], @@ -406233,7 +405733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11024668, "featuredRunMedia": null, "reactionVideos": [], @@ -406253,7 +405753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 11025496, "featuredRunMedia": null, "reactionVideos": [], @@ -406273,7 +405773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 11026857, "featuredRunMedia": null, "reactionVideos": [], @@ -406293,7 +405793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11029816, "featuredRunMedia": null, "reactionVideos": [], @@ -406313,7 +405813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 11031086, "featuredRunMedia": null, "reactionVideos": [], @@ -406333,7 +405833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 11031153, "featuredRunMedia": null, "reactionVideos": [], @@ -406353,7 +405853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11033688, "featuredRunMedia": null, "reactionVideos": [], @@ -406373,7 +405873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 11035217, "featuredRunMedia": null, "reactionVideos": [], @@ -406393,7 +405893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11036255, "featuredRunMedia": null, "reactionVideos": [], @@ -406413,7 +405913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 11036725, "featuredRunMedia": null, "reactionVideos": [], @@ -406433,7 +405933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 11036774, "featuredRunMedia": null, "reactionVideos": [], @@ -406453,7 +405953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 11036970, "featuredRunMedia": null, "reactionVideos": [], @@ -406473,7 +405973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11037380, "featuredRunMedia": null, "reactionVideos": [], @@ -406493,7 +405993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11037768, "featuredRunMedia": null, "reactionVideos": [], @@ -406513,7 +406013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 11038255, "featuredRunMedia": null, "reactionVideos": [], @@ -406533,7 +406033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "144231", "time": 11038558, "featuredRunMedia": null, "reactionVideos": [], @@ -406553,7 +406053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 11039636, "featuredRunMedia": null, "reactionVideos": [], @@ -406573,7 +406073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 11041599, "featuredRunMedia": null, "reactionVideos": [], @@ -406597,7 +406097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11042484, "featuredRunMedia": null, "reactionVideos": [], @@ -406617,7 +406117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 11042727, "featuredRunMedia": null, "reactionVideos": [], @@ -406637,7 +406137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 11044761, "featuredRunMedia": null, "reactionVideos": [], @@ -406657,7 +406157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 11046077, "featuredRunMedia": null, "reactionVideos": [], @@ -406677,7 +406177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 11047123, "featuredRunMedia": null, "reactionVideos": [], @@ -406697,7 +406197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11049097, "featuredRunMedia": null, "reactionVideos": [], @@ -406717,7 +406217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11049513, "featuredRunMedia": null, "reactionVideos": [], @@ -406737,7 +406237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 11051559, "featuredRunMedia": null, "reactionVideos": [], @@ -406757,7 +406257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "144377", "time": 11052402, "featuredRunMedia": null, "reactionVideos": [], @@ -406777,7 +406277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 11055189, "featuredRunMedia": null, "reactionVideos": [], @@ -406797,7 +406297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11056266, "featuredRunMedia": null, "reactionVideos": [], @@ -406817,7 +406317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11056596, "featuredRunMedia": null, "reactionVideos": [], @@ -406837,7 +406337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 441, + "teamId": "144511", "time": 11056634, "featuredRunMedia": null, "reactionVideos": [], @@ -406857,7 +406357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11056751, "featuredRunMedia": null, "reactionVideos": [], @@ -406877,7 +406377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 11056922, "featuredRunMedia": null, "reactionVideos": [], @@ -406897,7 +406397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 11057058, "featuredRunMedia": null, "reactionVideos": [], @@ -406917,7 +406417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11057119, "featuredRunMedia": null, "reactionVideos": [], @@ -406937,7 +406437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 11057593, "featuredRunMedia": null, "reactionVideos": [], @@ -406957,7 +406457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 11057898, "featuredRunMedia": null, "reactionVideos": [], @@ -406977,7 +406477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "144266", "time": 11058020, "featuredRunMedia": null, "reactionVideos": [], @@ -406997,7 +406497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 446, + "teamId": "144516", "time": 11060299, "featuredRunMedia": null, "reactionVideos": [], @@ -407017,7 +406517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11060733, "featuredRunMedia": null, "reactionVideos": [], @@ -407037,7 +406537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 11061000, "featuredRunMedia": null, "reactionVideos": [], @@ -407057,7 +406557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "144279", "time": 11062946, "featuredRunMedia": null, "reactionVideos": [], @@ -407077,7 +406577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "144144", "time": 11063364, "featuredRunMedia": null, "reactionVideos": [], @@ -407097,7 +406597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11063959, "featuredRunMedia": null, "reactionVideos": [], @@ -407117,7 +406617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 11064742, "featuredRunMedia": null, "reactionVideos": [], @@ -407137,7 +406637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 11065282, "featuredRunMedia": null, "reactionVideos": [], @@ -407157,7 +406657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11065334, "featuredRunMedia": null, "reactionVideos": [], @@ -407177,7 +406677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 11069151, "featuredRunMedia": null, "reactionVideos": [], @@ -407197,7 +406697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 11069207, "featuredRunMedia": null, "reactionVideos": [], @@ -407217,7 +406717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11070936, "featuredRunMedia": null, "reactionVideos": [], @@ -407237,7 +406737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11072412, "featuredRunMedia": null, "reactionVideos": [], @@ -407257,7 +406757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 11073915, "featuredRunMedia": null, "reactionVideos": [], @@ -407277,7 +406777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 11075213, "featuredRunMedia": null, "reactionVideos": [], @@ -407297,7 +406797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11076467, "featuredRunMedia": null, "reactionVideos": [], @@ -407317,7 +406817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 11080737, "featuredRunMedia": null, "reactionVideos": [], @@ -407337,7 +406837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11080784, "featuredRunMedia": null, "reactionVideos": [], @@ -407357,7 +406857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11080837, "featuredRunMedia": null, "reactionVideos": [], @@ -407377,7 +406877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 11081432, "featuredRunMedia": null, "reactionVideos": [], @@ -407397,7 +406897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 11081927, "featuredRunMedia": null, "reactionVideos": [], @@ -407417,7 +406917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 11086936, "featuredRunMedia": null, "reactionVideos": [], @@ -407437,7 +406937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 11090932, "featuredRunMedia": null, "reactionVideos": [], @@ -407457,7 +406957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11091001, "featuredRunMedia": null, "reactionVideos": [], @@ -407477,7 +406977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 11091217, "featuredRunMedia": null, "reactionVideos": [], @@ -407497,7 +406997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11093461, "featuredRunMedia": null, "reactionVideos": [], @@ -407517,7 +407017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11093874, "featuredRunMedia": null, "reactionVideos": [], @@ -407537,7 +407037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "144105", "time": 11094799, "featuredRunMedia": null, "reactionVideos": [], @@ -407557,7 +407057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11096875, "featuredRunMedia": null, "reactionVideos": [], @@ -407581,7 +407081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 11096956, "featuredRunMedia": null, "reactionVideos": [], @@ -407601,7 +407101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 11098928, "featuredRunMedia": null, "reactionVideos": [], @@ -407621,7 +407121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 11099932, "featuredRunMedia": null, "reactionVideos": [], @@ -407641,7 +407141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 11100479, "featuredRunMedia": null, "reactionVideos": [], @@ -407661,7 +407161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 11100900, "featuredRunMedia": null, "reactionVideos": [], @@ -407681,7 +407181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 11101227, "featuredRunMedia": null, "reactionVideos": [], @@ -407701,7 +407201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "144150", "time": 11102367, "featuredRunMedia": null, "reactionVideos": [], @@ -407721,7 +407221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11103774, "featuredRunMedia": null, "reactionVideos": [], @@ -407741,7 +407241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11103811, "featuredRunMedia": null, "reactionVideos": [], @@ -407761,7 +407261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 11103956, "featuredRunMedia": null, "reactionVideos": [], @@ -407781,7 +407281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 11105299, "featuredRunMedia": null, "reactionVideos": [], @@ -407801,7 +407301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 11113144, "featuredRunMedia": null, "reactionVideos": [], @@ -407821,7 +407321,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 157, + "teamId": "144227", "time": 11114543, "featuredRunMedia": null, "reactionVideos": [], @@ -407841,7 +407341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 11114894, "featuredRunMedia": null, "reactionVideos": [], @@ -407861,7 +407361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 11115994, "featuredRunMedia": null, "reactionVideos": [], @@ -407881,7 +407381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 11116212, "featuredRunMedia": null, "reactionVideos": [], @@ -407901,7 +407401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11117064, "featuredRunMedia": null, "reactionVideos": [], @@ -407921,7 +407421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 11117560, "featuredRunMedia": null, "reactionVideos": [], @@ -407941,7 +407441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11121691, "featuredRunMedia": null, "reactionVideos": [], @@ -407961,7 +407461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 11122963, "featuredRunMedia": null, "reactionVideos": [], @@ -407981,7 +407481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11123248, "featuredRunMedia": null, "reactionVideos": [], @@ -408001,7 +407501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 11125530, "featuredRunMedia": null, "reactionVideos": [], @@ -408021,7 +407521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "144124", "time": 11125844, "featuredRunMedia": null, "reactionVideos": [], @@ -408041,7 +407541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 11126319, "featuredRunMedia": null, "reactionVideos": [], @@ -408061,7 +407561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 11126385, "featuredRunMedia": null, "reactionVideos": [], @@ -408081,7 +407581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 11127447, "featuredRunMedia": null, "reactionVideos": [], @@ -408105,7 +407605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 11129412, "featuredRunMedia": null, "reactionVideos": [], @@ -408125,7 +407625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 11130281, "featuredRunMedia": null, "reactionVideos": [], @@ -408145,7 +407645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "144288", "time": 11131154, "featuredRunMedia": null, "reactionVideos": [], @@ -408165,7 +407665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11132676, "featuredRunMedia": null, "reactionVideos": [], @@ -408185,7 +407685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 11132727, "featuredRunMedia": null, "reactionVideos": [], @@ -408205,7 +407705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 11132797, "featuredRunMedia": null, "reactionVideos": [], @@ -408225,7 +407725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "144395", "time": 11132890, "featuredRunMedia": null, "reactionVideos": [], @@ -408245,7 +407745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 11135130, "featuredRunMedia": null, "reactionVideos": [], @@ -408265,7 +407765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 11135472, "featuredRunMedia": null, "reactionVideos": [], @@ -408285,7 +407785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 11137818, "featuredRunMedia": null, "reactionVideos": [], @@ -408305,7 +407805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 11138295, "featuredRunMedia": null, "reactionVideos": [], @@ -408325,7 +407825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11138888, "featuredRunMedia": null, "reactionVideos": [], @@ -408345,7 +407845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 11140693, "featuredRunMedia": null, "reactionVideos": [], @@ -408365,7 +407865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 11141037, "featuredRunMedia": null, "reactionVideos": [], @@ -408385,7 +407885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "144290", "time": 11141122, "featuredRunMedia": null, "reactionVideos": [], @@ -408405,7 +407905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11141894, "featuredRunMedia": null, "reactionVideos": [], @@ -408425,7 +407925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 11143611, "featuredRunMedia": null, "reactionVideos": [], @@ -408445,7 +407945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 11143786, "featuredRunMedia": null, "reactionVideos": [], @@ -408465,7 +407965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 11144964, "featuredRunMedia": null, "reactionVideos": [], @@ -408485,7 +407985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 11146284, "featuredRunMedia": null, "reactionVideos": [], @@ -408505,7 +408005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 11146889, "featuredRunMedia": null, "reactionVideos": [], @@ -408525,7 +408025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11148272, "featuredRunMedia": null, "reactionVideos": [], @@ -408545,7 +408045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 11148767, "featuredRunMedia": null, "reactionVideos": [], @@ -408565,7 +408065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 11149110, "featuredRunMedia": null, "reactionVideos": [], @@ -408585,7 +408085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 11149259, "featuredRunMedia": null, "reactionVideos": [], @@ -408605,7 +408105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11150465, "featuredRunMedia": null, "reactionVideos": [], @@ -408625,7 +408125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11151588, "featuredRunMedia": null, "reactionVideos": [], @@ -408645,7 +408145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 11152808, "featuredRunMedia": null, "reactionVideos": [], @@ -408665,7 +408165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 11154813, "featuredRunMedia": null, "reactionVideos": [], @@ -408685,7 +408185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 11155966, "featuredRunMedia": null, "reactionVideos": [], @@ -408705,7 +408205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 11157966, "featuredRunMedia": null, "reactionVideos": [], @@ -408725,7 +408225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 11159413, "featuredRunMedia": null, "reactionVideos": [], @@ -408745,7 +408245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11159847, "featuredRunMedia": null, "reactionVideos": [], @@ -408765,7 +408265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11161634, "featuredRunMedia": null, "reactionVideos": [], @@ -408785,7 +408285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 11161819, "featuredRunMedia": null, "reactionVideos": [], @@ -408805,7 +408305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11162115, "featuredRunMedia": null, "reactionVideos": [], @@ -408825,7 +408325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 330, + "teamId": "144400", "time": 11162510, "featuredRunMedia": null, "reactionVideos": [], @@ -408845,7 +408345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 11162749, "featuredRunMedia": null, "reactionVideos": [], @@ -408865,7 +408365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 11164285, "featuredRunMedia": null, "reactionVideos": [], @@ -408885,7 +408385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "144347", "time": 11166625, "featuredRunMedia": null, "reactionVideos": [], @@ -408905,7 +408405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 11168612, "featuredRunMedia": null, "reactionVideos": [], @@ -408925,7 +408425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11169876, "featuredRunMedia": null, "reactionVideos": [], @@ -408945,7 +408445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 11170943, "featuredRunMedia": null, "reactionVideos": [], @@ -408965,7 +408465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 11171007, "featuredRunMedia": null, "reactionVideos": [], @@ -408985,7 +408485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 11171155, "featuredRunMedia": null, "reactionVideos": [], @@ -409005,7 +408505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "144165", "time": 11172394, "featuredRunMedia": null, "reactionVideos": [], @@ -409025,7 +408525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11173389, "featuredRunMedia": null, "reactionVideos": [], @@ -409045,7 +408545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 315, + "teamId": "144385", "time": 11174093, "featuredRunMedia": null, "reactionVideos": [], @@ -409065,7 +408565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11174754, "featuredRunMedia": null, "reactionVideos": [], @@ -409085,7 +408585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 11175021, "featuredRunMedia": null, "reactionVideos": [], @@ -409105,7 +408605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11175152, "featuredRunMedia": null, "reactionVideos": [], @@ -409125,7 +408625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11176725, "featuredRunMedia": null, "reactionVideos": [], @@ -409145,7 +408645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 11177762, "featuredRunMedia": null, "reactionVideos": [], @@ -409165,7 +408665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 11178275, "featuredRunMedia": null, "reactionVideos": [], @@ -409185,7 +408685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "144132", "time": 11180249, "featuredRunMedia": null, "reactionVideos": [], @@ -409205,7 +408705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 11180527, "featuredRunMedia": null, "reactionVideos": [], @@ -409225,7 +408725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 11182296, "featuredRunMedia": null, "reactionVideos": [], @@ -409245,7 +408745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "144119", "time": 11182714, "featuredRunMedia": null, "reactionVideos": [], @@ -409265,7 +408765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 11183466, "featuredRunMedia": null, "reactionVideos": [], @@ -409285,7 +408785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 11184185, "featuredRunMedia": null, "reactionVideos": [], @@ -409305,7 +408805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11184273, "featuredRunMedia": null, "reactionVideos": [], @@ -409325,7 +408825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 412, + "teamId": "144482", "time": 11184792, "featuredRunMedia": null, "reactionVideos": [], @@ -409345,7 +408845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 11185089, "featuredRunMedia": null, "reactionVideos": [], @@ -409365,7 +408865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 11188498, "featuredRunMedia": null, "reactionVideos": [], @@ -409385,7 +408885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "144187", "time": 11190076, "featuredRunMedia": null, "reactionVideos": [], @@ -409405,7 +408905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 11191501, "featuredRunMedia": null, "reactionVideos": [], @@ -409425,7 +408925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11192338, "featuredRunMedia": null, "reactionVideos": [], @@ -409445,7 +408945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 11193440, "featuredRunMedia": null, "reactionVideos": [], @@ -409465,7 +408965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11193661, "featuredRunMedia": null, "reactionVideos": [], @@ -409485,7 +408985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 11193991, "featuredRunMedia": null, "reactionVideos": [], @@ -409505,7 +409005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11195099, "featuredRunMedia": null, "reactionVideos": [], @@ -409525,7 +409025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "144230", "time": 11197354, "featuredRunMedia": null, "reactionVideos": [], @@ -409545,7 +409045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11198434, "featuredRunMedia": null, "reactionVideos": [], @@ -409565,7 +409065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11198711, "featuredRunMedia": null, "reactionVideos": [], @@ -409585,7 +409085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 11198772, "featuredRunMedia": null, "reactionVideos": [], @@ -409609,7 +409109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 11203824, "featuredRunMedia": null, "reactionVideos": [], @@ -409629,7 +409129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "144147", "time": 11204077, "featuredRunMedia": null, "reactionVideos": [], @@ -409649,7 +409149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 11205146, "featuredRunMedia": null, "reactionVideos": [], @@ -409669,7 +409169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 11206587, "featuredRunMedia": null, "reactionVideos": [], @@ -409689,7 +409189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 11209017, "featuredRunMedia": null, "reactionVideos": [], @@ -409709,7 +409209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 11209666, "featuredRunMedia": null, "reactionVideos": [], @@ -409729,7 +409229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "144144", "time": 11210186, "featuredRunMedia": null, "reactionVideos": [], @@ -409749,7 +409249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 11210660, "featuredRunMedia": null, "reactionVideos": [], @@ -409769,7 +409269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 11210879, "featuredRunMedia": null, "reactionVideos": [], @@ -409789,7 +409289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 11212027, "featuredRunMedia": null, "reactionVideos": [], @@ -409809,7 +409309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "144164", "time": 11213627, "featuredRunMedia": null, "reactionVideos": [], @@ -409829,7 +409329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 11215530, "featuredRunMedia": null, "reactionVideos": [], @@ -409849,7 +409349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11217040, "featuredRunMedia": null, "reactionVideos": [], @@ -409869,7 +409369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11219017, "featuredRunMedia": null, "reactionVideos": [], @@ -409889,7 +409389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "144325", "time": 11220190, "featuredRunMedia": null, "reactionVideos": [], @@ -409909,7 +409409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 11222153, "featuredRunMedia": null, "reactionVideos": [], @@ -409929,7 +409429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 11222733, "featuredRunMedia": null, "reactionVideos": [], @@ -409949,7 +409449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 11223591, "featuredRunMedia": null, "reactionVideos": [], @@ -409969,7 +409469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11223766, "featuredRunMedia": null, "reactionVideos": [], @@ -409989,7 +409489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "144411", "time": 11225533, "featuredRunMedia": null, "reactionVideos": [], @@ -410009,7 +409509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 11225660, "featuredRunMedia": null, "reactionVideos": [], @@ -410029,7 +409529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 11226949, "featuredRunMedia": null, "reactionVideos": [], @@ -410049,7 +409549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 11227720, "featuredRunMedia": null, "reactionVideos": [], @@ -410069,7 +409569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "144255", "time": 11227830, "featuredRunMedia": null, "reactionVideos": [], @@ -410089,7 +409589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 11228887, "featuredRunMedia": null, "reactionVideos": [], @@ -410109,7 +409609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 11230011, "featuredRunMedia": null, "reactionVideos": [], @@ -410129,7 +409629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 11231920, "featuredRunMedia": null, "reactionVideos": [], @@ -410149,7 +409649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 11233179, "featuredRunMedia": null, "reactionVideos": [], @@ -410169,7 +409669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 11234370, "featuredRunMedia": null, "reactionVideos": [], @@ -410189,7 +409689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 11234910, "featuredRunMedia": null, "reactionVideos": [], @@ -410209,7 +409709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 11235175, "featuredRunMedia": null, "reactionVideos": [], @@ -410229,7 +409729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 11235468, "featuredRunMedia": null, "reactionVideos": [], @@ -410249,7 +409749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11237025, "featuredRunMedia": null, "reactionVideos": [], @@ -410269,7 +409769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 11237969, "featuredRunMedia": null, "reactionVideos": [], @@ -410289,7 +409789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 11239880, "featuredRunMedia": null, "reactionVideos": [], @@ -410309,7 +409809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11241181, "featuredRunMedia": null, "reactionVideos": [], @@ -410329,7 +409829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11242626, "featuredRunMedia": null, "reactionVideos": [], @@ -410349,7 +409849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11244349, "featuredRunMedia": null, "reactionVideos": [], @@ -410369,7 +409869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11245039, "featuredRunMedia": null, "reactionVideos": [], @@ -410389,7 +409889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 11245124, "featuredRunMedia": null, "reactionVideos": [], @@ -410409,7 +409909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 11248862, "featuredRunMedia": null, "reactionVideos": [], @@ -410429,7 +409929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 11251316, "featuredRunMedia": null, "reactionVideos": [], @@ -410449,7 +409949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 11251385, "featuredRunMedia": null, "reactionVideos": [], @@ -410469,7 +409969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 11251803, "featuredRunMedia": null, "reactionVideos": [], @@ -410489,7 +409989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11252009, "featuredRunMedia": null, "reactionVideos": [], @@ -410509,7 +410009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 11252597, "featuredRunMedia": null, "reactionVideos": [], @@ -410529,7 +410029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 11253740, "featuredRunMedia": null, "reactionVideos": [], @@ -410549,7 +410049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 11254067, "featuredRunMedia": null, "reactionVideos": [], @@ -410569,7 +410069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 154, + "teamId": "144224", "time": 11254764, "featuredRunMedia": null, "reactionVideos": [], @@ -410589,7 +410089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "144183", "time": 11255560, "featuredRunMedia": null, "reactionVideos": [], @@ -410609,7 +410109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 11256292, "featuredRunMedia": null, "reactionVideos": [], @@ -410629,7 +410129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11256747, "featuredRunMedia": null, "reactionVideos": [], @@ -410649,7 +410149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11256819, "featuredRunMedia": null, "reactionVideos": [], @@ -410669,7 +410169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 11258840, "featuredRunMedia": null, "reactionVideos": [], @@ -410689,7 +410189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 11259398, "featuredRunMedia": null, "reactionVideos": [], @@ -410709,7 +410209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 11260412, "featuredRunMedia": null, "reactionVideos": [], @@ -410729,7 +410229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 11261904, "featuredRunMedia": null, "reactionVideos": [], @@ -410749,7 +410249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11263060, "featuredRunMedia": null, "reactionVideos": [], @@ -410769,7 +410269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11263437, "featuredRunMedia": null, "reactionVideos": [], @@ -410789,7 +410289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "144377", "time": 11264828, "featuredRunMedia": null, "reactionVideos": [], @@ -410809,7 +410309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 11266853, "featuredRunMedia": null, "reactionVideos": [], @@ -410829,7 +410329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 11268241, "featuredRunMedia": null, "reactionVideos": [], @@ -410849,7 +410349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 11268564, "featuredRunMedia": null, "reactionVideos": [], @@ -410869,7 +410369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11268857, "featuredRunMedia": null, "reactionVideos": [], @@ -410889,7 +410389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 11269987, "featuredRunMedia": null, "reactionVideos": [], @@ -410909,7 +410409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "144083", "time": 11270888, "featuredRunMedia": null, "reactionVideos": [], @@ -410929,7 +410429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 11272490, "featuredRunMedia": null, "reactionVideos": [], @@ -410949,7 +410449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11273801, "featuredRunMedia": null, "reactionVideos": [], @@ -410969,7 +410469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 11275217, "featuredRunMedia": null, "reactionVideos": [], @@ -410989,7 +410489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 11275984, "featuredRunMedia": null, "reactionVideos": [], @@ -411009,7 +410509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 11277352, "featuredRunMedia": null, "reactionVideos": [], @@ -411029,7 +410529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 11278289, "featuredRunMedia": null, "reactionVideos": [], @@ -411049,7 +410549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 11280353, "featuredRunMedia": null, "reactionVideos": [], @@ -411069,7 +410569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 11281176, "featuredRunMedia": null, "reactionVideos": [], @@ -411089,7 +410589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 11281437, "featuredRunMedia": null, "reactionVideos": [], @@ -411109,7 +410609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11283406, "featuredRunMedia": null, "reactionVideos": [], @@ -411129,7 +410629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 11285036, "featuredRunMedia": null, "reactionVideos": [], @@ -411149,7 +410649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 11285405, "featuredRunMedia": null, "reactionVideos": [], @@ -411169,7 +410669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 11287042, "featuredRunMedia": null, "reactionVideos": [], @@ -411189,7 +410689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 11288049, "featuredRunMedia": null, "reactionVideos": [], @@ -411209,7 +410709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11290739, "featuredRunMedia": null, "reactionVideos": [], @@ -411233,7 +410733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 11291450, "featuredRunMedia": null, "reactionVideos": [], @@ -411253,7 +410753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11292682, "featuredRunMedia": null, "reactionVideos": [], @@ -411273,7 +410773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11293987, "featuredRunMedia": null, "reactionVideos": [], @@ -411293,7 +410793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 11297131, "featuredRunMedia": null, "reactionVideos": [], @@ -411313,7 +410813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 11298778, "featuredRunMedia": null, "reactionVideos": [], @@ -411333,7 +410833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "144230", "time": 11301563, "featuredRunMedia": null, "reactionVideos": [], @@ -411353,7 +410853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 11302062, "featuredRunMedia": null, "reactionVideos": [], @@ -411373,7 +410873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 11302243, "featuredRunMedia": null, "reactionVideos": [], @@ -411393,7 +410893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 11302845, "featuredRunMedia": null, "reactionVideos": [], @@ -411413,7 +410913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 11303208, "featuredRunMedia": null, "reactionVideos": [], @@ -411433,7 +410933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 11303498, "featuredRunMedia": null, "reactionVideos": [], @@ -411453,7 +410953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 11306637, "featuredRunMedia": null, "reactionVideos": [], @@ -411473,7 +410973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 11307284, "featuredRunMedia": null, "reactionVideos": [], @@ -411493,7 +410993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 11312707, "featuredRunMedia": null, "reactionVideos": [], @@ -411513,7 +411013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11319472, "featuredRunMedia": null, "reactionVideos": [], @@ -411533,7 +411033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 11319684, "featuredRunMedia": null, "reactionVideos": [], @@ -411557,7 +411057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 11320677, "featuredRunMedia": null, "reactionVideos": [], @@ -411577,7 +411077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 11323529, "featuredRunMedia": null, "reactionVideos": [], @@ -411597,7 +411097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 11325415, "featuredRunMedia": null, "reactionVideos": [], @@ -411617,7 +411117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 11325597, "featuredRunMedia": null, "reactionVideos": [], @@ -411637,7 +411137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 11326536, "featuredRunMedia": null, "reactionVideos": [], @@ -411657,7 +411157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "144183", "time": 11327030, "featuredRunMedia": null, "reactionVideos": [], @@ -411677,7 +411177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 326, + "teamId": "144396", "time": 11328461, "featuredRunMedia": null, "reactionVideos": [], @@ -411697,7 +411197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 11328958, "featuredRunMedia": null, "reactionVideos": [], @@ -411717,7 +411217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11331795, "featuredRunMedia": null, "reactionVideos": [], @@ -411737,7 +411237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 11331929, "featuredRunMedia": null, "reactionVideos": [], @@ -411757,7 +411257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 11335120, "featuredRunMedia": null, "reactionVideos": [], @@ -411777,7 +411277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 11336896, "featuredRunMedia": null, "reactionVideos": [], @@ -411797,7 +411297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 11337721, "featuredRunMedia": null, "reactionVideos": [], @@ -411817,7 +411317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11340499, "featuredRunMedia": null, "reactionVideos": [], @@ -411837,7 +411337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 11342524, "featuredRunMedia": null, "reactionVideos": [], @@ -411857,7 +411357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 11344155, "featuredRunMedia": null, "reactionVideos": [], @@ -411877,7 +411377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 449, + "teamId": "144519", "time": 11344782, "featuredRunMedia": null, "reactionVideos": [], @@ -411897,7 +411397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 11345113, "featuredRunMedia": null, "reactionVideos": [], @@ -411917,7 +411417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 11345632, "featuredRunMedia": null, "reactionVideos": [], @@ -411937,7 +411437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 11346336, "featuredRunMedia": null, "reactionVideos": [], @@ -411957,7 +411457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11346910, "featuredRunMedia": null, "reactionVideos": [], @@ -411977,7 +411477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 11347132, "featuredRunMedia": null, "reactionVideos": [], @@ -411997,7 +411497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 11348395, "featuredRunMedia": null, "reactionVideos": [], @@ -412017,7 +411517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 11350350, "featuredRunMedia": null, "reactionVideos": [], @@ -412041,7 +411541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 11351675, "featuredRunMedia": null, "reactionVideos": [], @@ -412061,7 +411561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 11351728, "featuredRunMedia": null, "reactionVideos": [], @@ -412081,7 +411581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 11351809, "featuredRunMedia": null, "reactionVideos": [], @@ -412101,7 +411601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "144379", "time": 11352855, "featuredRunMedia": null, "reactionVideos": [], @@ -412121,7 +411621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11353972, "featuredRunMedia": null, "reactionVideos": [], @@ -412141,7 +411641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 11354773, "featuredRunMedia": null, "reactionVideos": [], @@ -412161,7 +411661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11355536, "featuredRunMedia": null, "reactionVideos": [], @@ -412181,7 +411681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 11356261, "featuredRunMedia": null, "reactionVideos": [], @@ -412201,7 +411701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11356365, "featuredRunMedia": null, "reactionVideos": [], @@ -412221,7 +411721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "144279", "time": 11357523, "featuredRunMedia": null, "reactionVideos": [], @@ -412241,7 +411741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11357840, "featuredRunMedia": null, "reactionVideos": [], @@ -412261,7 +411761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11357894, "featuredRunMedia": null, "reactionVideos": [], @@ -412281,7 +411781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 11358661, "featuredRunMedia": null, "reactionVideos": [], @@ -412301,7 +411801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11359025, "featuredRunMedia": null, "reactionVideos": [], @@ -412321,7 +411821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 11360475, "featuredRunMedia": null, "reactionVideos": [], @@ -412341,7 +411841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 11362555, "featuredRunMedia": null, "reactionVideos": [], @@ -412361,7 +411861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11362954, "featuredRunMedia": null, "reactionVideos": [], @@ -412381,7 +411881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 11363039, "featuredRunMedia": null, "reactionVideos": [], @@ -412401,7 +411901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11365595, "featuredRunMedia": null, "reactionVideos": [], @@ -412421,7 +411921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11371283, "featuredRunMedia": null, "reactionVideos": [], @@ -412441,7 +411941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11372254, "featuredRunMedia": null, "reactionVideos": [], @@ -412461,7 +411961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 11373262, "featuredRunMedia": null, "reactionVideos": [], @@ -412481,7 +411981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11374338, "featuredRunMedia": null, "reactionVideos": [], @@ -412501,7 +412001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 11374660, "featuredRunMedia": null, "reactionVideos": [], @@ -412521,7 +412021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 300, + "teamId": "144370", "time": 11376935, "featuredRunMedia": null, "reactionVideos": [], @@ -412541,7 +412041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 11377272, "featuredRunMedia": null, "reactionVideos": [], @@ -412561,7 +412061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 11380632, "featuredRunMedia": null, "reactionVideos": [], @@ -412581,7 +412081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11380698, "featuredRunMedia": null, "reactionVideos": [], @@ -412601,7 +412101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 11380946, "featuredRunMedia": null, "reactionVideos": [], @@ -412621,7 +412121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "144418", "time": 11381126, "featuredRunMedia": null, "reactionVideos": [], @@ -412645,7 +412145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11381582, "featuredRunMedia": null, "reactionVideos": [], @@ -412665,7 +412165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 11382197, "featuredRunMedia": null, "reactionVideos": [], @@ -412685,7 +412185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "144299", "time": 11382252, "featuredRunMedia": null, "reactionVideos": [], @@ -412705,7 +412205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11382912, "featuredRunMedia": null, "reactionVideos": [], @@ -412725,7 +412225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11385724, "featuredRunMedia": null, "reactionVideos": [], @@ -412749,7 +412249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 11387451, "featuredRunMedia": null, "reactionVideos": [], @@ -412769,7 +412269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 11388806, "featuredRunMedia": null, "reactionVideos": [], @@ -412789,7 +412289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 11389369, "featuredRunMedia": null, "reactionVideos": [], @@ -412809,7 +412309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11389808, "featuredRunMedia": null, "reactionVideos": [], @@ -412829,7 +412329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 11390168, "featuredRunMedia": null, "reactionVideos": [], @@ -412849,7 +412349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 11394236, "featuredRunMedia": null, "reactionVideos": [], @@ -412869,7 +412369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 380, + "teamId": "144450", "time": 11394668, "featuredRunMedia": null, "reactionVideos": [], @@ -412889,7 +412389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11397563, "featuredRunMedia": null, "reactionVideos": [], @@ -412909,7 +412409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 11398652, "featuredRunMedia": null, "reactionVideos": [], @@ -412929,7 +412429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11399078, "featuredRunMedia": null, "reactionVideos": [], @@ -412949,7 +412449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 11399400, "featuredRunMedia": null, "reactionVideos": [], @@ -412969,7 +412469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 11399897, "featuredRunMedia": null, "reactionVideos": [], @@ -412989,7 +412489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 11400559, "featuredRunMedia": null, "reactionVideos": [], @@ -413009,7 +412509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 370, + "teamId": "144440", "time": 11400994, "featuredRunMedia": null, "reactionVideos": [], @@ -413029,7 +412529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 11401118, "featuredRunMedia": null, "reactionVideos": [], @@ -413049,7 +412549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 11401620, "featuredRunMedia": null, "reactionVideos": [], @@ -413069,7 +412569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 11402037, "featuredRunMedia": null, "reactionVideos": [], @@ -413089,7 +412589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 11403235, "featuredRunMedia": null, "reactionVideos": [], @@ -413109,7 +412609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 11405274, "featuredRunMedia": null, "reactionVideos": [], @@ -413129,7 +412629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11405335, "featuredRunMedia": null, "reactionVideos": [], @@ -413149,7 +412649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 11407043, "featuredRunMedia": null, "reactionVideos": [], @@ -413169,7 +412669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 11408229, "featuredRunMedia": null, "reactionVideos": [], @@ -413189,7 +412689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11408762, "featuredRunMedia": null, "reactionVideos": [], @@ -413209,7 +412709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 11410244, "featuredRunMedia": null, "reactionVideos": [], @@ -413229,7 +412729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11410654, "featuredRunMedia": null, "reactionVideos": [], @@ -413249,7 +412749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 11412925, "featuredRunMedia": null, "reactionVideos": [], @@ -413269,7 +412769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "144113", "time": 11416774, "featuredRunMedia": null, "reactionVideos": [], @@ -413289,7 +412789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 11417630, "featuredRunMedia": null, "reactionVideos": [], @@ -413309,7 +412809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11423288, "featuredRunMedia": null, "reactionVideos": [], @@ -413329,7 +412829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 11423662, "featuredRunMedia": null, "reactionVideos": [], @@ -413349,7 +412849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11428728, "featuredRunMedia": null, "reactionVideos": [], @@ -413369,7 +412869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11429166, "featuredRunMedia": null, "reactionVideos": [], @@ -413389,7 +412889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 11430166, "featuredRunMedia": null, "reactionVideos": [], @@ -413409,7 +412909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 11430759, "featuredRunMedia": null, "reactionVideos": [], @@ -413429,7 +412929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 11431179, "featuredRunMedia": null, "reactionVideos": [], @@ -413449,7 +412949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 11431592, "featuredRunMedia": null, "reactionVideos": [], @@ -413469,7 +412969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11432035, "featuredRunMedia": null, "reactionVideos": [], @@ -413489,7 +412989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 11432977, "featuredRunMedia": null, "reactionVideos": [], @@ -413509,7 +413009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 11433371, "featuredRunMedia": null, "reactionVideos": [], @@ -413529,7 +413029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 11433468, "featuredRunMedia": null, "reactionVideos": [], @@ -413549,7 +413049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 11434120, "featuredRunMedia": null, "reactionVideos": [], @@ -413569,7 +413069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 11435698, "featuredRunMedia": null, "reactionVideos": [], @@ -413589,7 +413089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 11437096, "featuredRunMedia": null, "reactionVideos": [], @@ -413609,7 +413109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 11438219, "featuredRunMedia": null, "reactionVideos": [], @@ -413633,7 +413133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 300, + "teamId": "144370", "time": 11438564, "featuredRunMedia": null, "reactionVideos": [], @@ -413653,7 +413153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 11439309, "featuredRunMedia": null, "reactionVideos": [], @@ -413673,7 +413173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 11440137, "featuredRunMedia": null, "reactionVideos": [], @@ -413693,7 +413193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 11441162, "featuredRunMedia": null, "reactionVideos": [], @@ -413713,7 +413213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 11441224, "featuredRunMedia": null, "reactionVideos": [], @@ -413733,7 +413233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "144377", "time": 11444147, "featuredRunMedia": null, "reactionVideos": [], @@ -413753,7 +413253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 11444442, "featuredRunMedia": null, "reactionVideos": [], @@ -413773,7 +413273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11447495, "featuredRunMedia": null, "reactionVideos": [], @@ -413793,7 +413293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 11448022, "featuredRunMedia": null, "reactionVideos": [], @@ -413813,7 +413313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11450345, "featuredRunMedia": null, "reactionVideos": [], @@ -413833,7 +413333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 208, + "teamId": "144278", "time": 11451206, "featuredRunMedia": null, "reactionVideos": [], @@ -413853,7 +413353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 11451629, "featuredRunMedia": null, "reactionVideos": [], @@ -413873,7 +413373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 11452053, "featuredRunMedia": null, "reactionVideos": [], @@ -413893,7 +413393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11453303, "featuredRunMedia": null, "reactionVideos": [], @@ -413913,7 +413413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11453348, "featuredRunMedia": null, "reactionVideos": [], @@ -413933,7 +413433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 11455501, "featuredRunMedia": null, "reactionVideos": [], @@ -413953,7 +413453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "144368", "time": 11456590, "featuredRunMedia": null, "reactionVideos": [], @@ -413973,7 +413473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 11458617, "featuredRunMedia": null, "reactionVideos": [], @@ -413993,7 +413493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11459076, "featuredRunMedia": null, "reactionVideos": [], @@ -414013,7 +413513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 11459257, "featuredRunMedia": null, "reactionVideos": [], @@ -414033,7 +413533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11459406, "featuredRunMedia": null, "reactionVideos": [], @@ -414053,7 +413553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 11459792, "featuredRunMedia": null, "reactionVideos": [], @@ -414073,7 +413573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 414, + "teamId": "144484", "time": 11460065, "featuredRunMedia": null, "reactionVideos": [], @@ -414093,7 +413593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 11461556, "featuredRunMedia": null, "reactionVideos": [], @@ -414113,7 +413613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 11462220, "featuredRunMedia": null, "reactionVideos": [], @@ -414133,7 +413633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 11463752, "featuredRunMedia": null, "reactionVideos": [], @@ -414153,7 +413653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 11465634, "featuredRunMedia": null, "reactionVideos": [], @@ -414173,7 +413673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 11466295, "featuredRunMedia": null, "reactionVideos": [], @@ -414193,7 +413693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11466358, "featuredRunMedia": null, "reactionVideos": [], @@ -414213,7 +413713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11466607, "featuredRunMedia": null, "reactionVideos": [], @@ -414233,7 +413733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 11466860, "featuredRunMedia": null, "reactionVideos": [], @@ -414253,7 +413753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 300, + "teamId": "144370", "time": 11467088, "featuredRunMedia": null, "reactionVideos": [], @@ -414273,7 +413773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 11467498, "featuredRunMedia": null, "reactionVideos": [], @@ -414293,7 +413793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 11468289, "featuredRunMedia": null, "reactionVideos": [], @@ -414313,7 +413813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 11468657, "featuredRunMedia": null, "reactionVideos": [], @@ -414333,7 +413833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 11469379, "featuredRunMedia": null, "reactionVideos": [], @@ -414353,7 +413853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11470516, "featuredRunMedia": null, "reactionVideos": [], @@ -414373,7 +413873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 11471734, "featuredRunMedia": null, "reactionVideos": [], @@ -414393,7 +413893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 11471933, "featuredRunMedia": null, "reactionVideos": [], @@ -414413,7 +413913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11472660, "featuredRunMedia": null, "reactionVideos": [], @@ -414433,7 +413933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "144288", "time": 11474974, "featuredRunMedia": null, "reactionVideos": [], @@ -414453,7 +413953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "144279", "time": 11476428, "featuredRunMedia": null, "reactionVideos": [], @@ -414473,7 +413973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 11478267, "featuredRunMedia": null, "reactionVideos": [], @@ -414493,7 +413993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 11478617, "featuredRunMedia": null, "reactionVideos": [], @@ -414513,7 +414013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 11479194, "featuredRunMedia": null, "reactionVideos": [], @@ -414533,7 +414033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11479794, "featuredRunMedia": null, "reactionVideos": [], @@ -414553,7 +414053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 11480573, "featuredRunMedia": null, "reactionVideos": [], @@ -414573,7 +414073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11481441, "featuredRunMedia": null, "reactionVideos": [], @@ -414593,7 +414093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11482603, "featuredRunMedia": null, "reactionVideos": [], @@ -414613,7 +414113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 11484395, "featuredRunMedia": null, "reactionVideos": [], @@ -414633,7 +414133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 11484498, "featuredRunMedia": null, "reactionVideos": [], @@ -414653,7 +414153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11485149, "featuredRunMedia": null, "reactionVideos": [], @@ -414673,7 +414173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 11485789, "featuredRunMedia": null, "reactionVideos": [], @@ -414693,7 +414193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 11486195, "featuredRunMedia": null, "reactionVideos": [], @@ -414713,7 +414213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11486735, "featuredRunMedia": null, "reactionVideos": [], @@ -414733,7 +414233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 11487354, "featuredRunMedia": null, "reactionVideos": [], @@ -414753,7 +414253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11488150, "featuredRunMedia": null, "reactionVideos": [], @@ -414773,7 +414273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11489107, "featuredRunMedia": null, "reactionVideos": [], @@ -414793,7 +414293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11489619, "featuredRunMedia": null, "reactionVideos": [], @@ -414813,7 +414313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11489960, "featuredRunMedia": null, "reactionVideos": [], @@ -414833,7 +414333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11490210, "featuredRunMedia": null, "reactionVideos": [], @@ -414853,7 +414353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 11490683, "featuredRunMedia": null, "reactionVideos": [], @@ -414873,7 +414373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 11491273, "featuredRunMedia": null, "reactionVideos": [], @@ -414893,7 +414393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 11492082, "featuredRunMedia": null, "reactionVideos": [], @@ -414913,7 +414413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 11492132, "featuredRunMedia": null, "reactionVideos": [], @@ -414933,7 +414433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11492511, "featuredRunMedia": null, "reactionVideos": [], @@ -414953,7 +414453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 11493487, "featuredRunMedia": null, "reactionVideos": [], @@ -414973,7 +414473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 11494228, "featuredRunMedia": null, "reactionVideos": [], @@ -414993,7 +414493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11494395, "featuredRunMedia": null, "reactionVideos": [], @@ -415013,7 +414513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 11495440, "featuredRunMedia": null, "reactionVideos": [], @@ -415033,7 +414533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 11496804, "featuredRunMedia": null, "reactionVideos": [], @@ -415053,7 +414553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "144380", "time": 11497549, "featuredRunMedia": null, "reactionVideos": [], @@ -415077,7 +414577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 11498817, "featuredRunMedia": null, "reactionVideos": [], @@ -415097,7 +414597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 11500486, "featuredRunMedia": null, "reactionVideos": [], @@ -415117,7 +414617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11501064, "featuredRunMedia": null, "reactionVideos": [], @@ -415137,7 +414637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 11501142, "featuredRunMedia": null, "reactionVideos": [], @@ -415157,7 +414657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 11503789, "featuredRunMedia": null, "reactionVideos": [], @@ -415177,7 +414677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 11505554, "featuredRunMedia": null, "reactionVideos": [], @@ -415197,7 +414697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 11505813, "featuredRunMedia": null, "reactionVideos": [], @@ -415217,7 +414717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 11505865, "featuredRunMedia": null, "reactionVideos": [], @@ -415237,7 +414737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 11507398, "featuredRunMedia": null, "reactionVideos": [], @@ -415257,7 +414757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 11510005, "featuredRunMedia": null, "reactionVideos": [], @@ -415277,7 +414777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 11510883, "featuredRunMedia": null, "reactionVideos": [], @@ -415297,7 +414797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 11512084, "featuredRunMedia": null, "reactionVideos": [], @@ -415317,7 +414817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11513729, "featuredRunMedia": null, "reactionVideos": [], @@ -415337,7 +414837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 11514180, "featuredRunMedia": null, "reactionVideos": [], @@ -415357,7 +414857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11515697, "featuredRunMedia": null, "reactionVideos": [], @@ -415377,7 +414877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 11519198, "featuredRunMedia": null, "reactionVideos": [], @@ -415397,7 +414897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 11519375, "featuredRunMedia": null, "reactionVideos": [], @@ -415417,7 +414917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11519970, "featuredRunMedia": null, "reactionVideos": [], @@ -415437,7 +414937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 11522591, "featuredRunMedia": null, "reactionVideos": [], @@ -415457,7 +414957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 11526641, "featuredRunMedia": null, "reactionVideos": [], @@ -415477,7 +414977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 11527597, "featuredRunMedia": null, "reactionVideos": [], @@ -415497,7 +414997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11528811, "featuredRunMedia": null, "reactionVideos": [], @@ -415517,7 +415017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "144225", "time": 11529452, "featuredRunMedia": null, "reactionVideos": [], @@ -415537,7 +415037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 11529733, "featuredRunMedia": null, "reactionVideos": [], @@ -415557,7 +415057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 11530296, "featuredRunMedia": null, "reactionVideos": [], @@ -415577,7 +415077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 11531171, "featuredRunMedia": null, "reactionVideos": [], @@ -415597,7 +415097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 11531791, "featuredRunMedia": null, "reactionVideos": [], @@ -415617,7 +415117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "144122", "time": 11533392, "featuredRunMedia": null, "reactionVideos": [], @@ -415637,7 +415137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "144253", "time": 11535635, "featuredRunMedia": null, "reactionVideos": [], @@ -415657,7 +415157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11535801, "featuredRunMedia": null, "reactionVideos": [], @@ -415677,7 +415177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11538331, "featuredRunMedia": null, "reactionVideos": [], @@ -415697,7 +415197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 11538604, "featuredRunMedia": null, "reactionVideos": [], @@ -415717,7 +415217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 11539206, "featuredRunMedia": null, "reactionVideos": [], @@ -415737,7 +415237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 11540570, "featuredRunMedia": null, "reactionVideos": [], @@ -415757,7 +415257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "144092", "time": 11543113, "featuredRunMedia": null, "reactionVideos": [], @@ -415777,7 +415277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 384, + "teamId": "144454", "time": 11543167, "featuredRunMedia": null, "reactionVideos": [], @@ -415797,7 +415297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 11546366, "featuredRunMedia": null, "reactionVideos": [], @@ -415817,7 +415317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 11547087, "featuredRunMedia": null, "reactionVideos": [], @@ -415837,7 +415337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 11549285, "featuredRunMedia": null, "reactionVideos": [], @@ -415857,7 +415357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 69, + "teamId": "144139", "time": 11550210, "featuredRunMedia": null, "reactionVideos": [], @@ -415877,7 +415377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 11550899, "featuredRunMedia": null, "reactionVideos": [], @@ -415897,7 +415397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 11552355, "featuredRunMedia": null, "reactionVideos": [], @@ -415917,7 +415417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 11554390, "featuredRunMedia": null, "reactionVideos": [], @@ -415937,7 +415437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 11555458, "featuredRunMedia": null, "reactionVideos": [], @@ -415957,7 +415457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11556243, "featuredRunMedia": null, "reactionVideos": [], @@ -415977,7 +415477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 11557519, "featuredRunMedia": null, "reactionVideos": [], @@ -416001,7 +415501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11559387, "featuredRunMedia": null, "reactionVideos": [], @@ -416021,7 +415521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 11560525, "featuredRunMedia": null, "reactionVideos": [], @@ -416041,7 +415541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "144392", "time": 11562245, "featuredRunMedia": null, "reactionVideos": [], @@ -416061,7 +415561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "144184", "time": 11562662, "featuredRunMedia": null, "reactionVideos": [], @@ -416081,7 +415581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 11563044, "featuredRunMedia": null, "reactionVideos": [], @@ -416101,7 +415601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "144343", "time": 11564449, "featuredRunMedia": null, "reactionVideos": [], @@ -416121,7 +415621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 11564648, "featuredRunMedia": null, "reactionVideos": [], @@ -416141,7 +415641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11564852, "featuredRunMedia": null, "reactionVideos": [], @@ -416161,7 +415661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11568780, "featuredRunMedia": null, "reactionVideos": [], @@ -416181,7 +415681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 11569118, "featuredRunMedia": null, "reactionVideos": [], @@ -416201,7 +415701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 11569652, "featuredRunMedia": null, "reactionVideos": [], @@ -416221,7 +415721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 11569836, "featuredRunMedia": null, "reactionVideos": [], @@ -416241,7 +415741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 146, + "teamId": "144216", "time": 11570643, "featuredRunMedia": null, "reactionVideos": [], @@ -416261,7 +415761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11570957, "featuredRunMedia": null, "reactionVideos": [], @@ -416281,7 +415781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 11571517, "featuredRunMedia": null, "reactionVideos": [], @@ -416301,7 +415801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 417, + "teamId": "144487", "time": 11571648, "featuredRunMedia": null, "reactionVideos": [], @@ -416321,7 +415821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 11572093, "featuredRunMedia": null, "reactionVideos": [], @@ -416341,7 +415841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 11572172, "featuredRunMedia": null, "reactionVideos": [], @@ -416361,7 +415861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 141, + "teamId": "144211", "time": 11576600, "featuredRunMedia": null, "reactionVideos": [], @@ -416381,7 +415881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 11578475, "featuredRunMedia": null, "reactionVideos": [], @@ -416401,7 +415901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 11580773, "featuredRunMedia": null, "reactionVideos": [], @@ -416421,7 +415921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 340, + "teamId": "144410", "time": 11581313, "featuredRunMedia": null, "reactionVideos": [], @@ -416441,7 +415941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 11583364, "featuredRunMedia": null, "reactionVideos": [], @@ -416461,7 +415961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 11584357, "featuredRunMedia": null, "reactionVideos": [], @@ -416481,7 +415981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 11587261, "featuredRunMedia": null, "reactionVideos": [], @@ -416501,7 +416001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11588974, "featuredRunMedia": null, "reactionVideos": [], @@ -416521,7 +416021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 11589106, "featuredRunMedia": null, "reactionVideos": [], @@ -416541,7 +416041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 11589531, "featuredRunMedia": null, "reactionVideos": [], @@ -416561,7 +416061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 11591586, "featuredRunMedia": null, "reactionVideos": [], @@ -416581,7 +416081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 11593727, "featuredRunMedia": null, "reactionVideos": [], @@ -416601,7 +416101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11594748, "featuredRunMedia": null, "reactionVideos": [], @@ -416621,7 +416121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11594924, "featuredRunMedia": null, "reactionVideos": [], @@ -416641,7 +416141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 361, + "teamId": "144431", "time": 11597213, "featuredRunMedia": null, "reactionVideos": [], @@ -416661,7 +416161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 11597507, "featuredRunMedia": null, "reactionVideos": [], @@ -416681,7 +416181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 11597648, "featuredRunMedia": null, "reactionVideos": [], @@ -416701,7 +416201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11597731, "featuredRunMedia": null, "reactionVideos": [], @@ -416721,7 +416221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 399, + "teamId": "144469", "time": 11600818, "featuredRunMedia": null, "reactionVideos": [], @@ -416741,7 +416241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "144263", "time": 11603031, "featuredRunMedia": null, "reactionVideos": [], @@ -416761,7 +416261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 11605586, "featuredRunMedia": null, "reactionVideos": [], @@ -416781,7 +416281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 11606237, "featuredRunMedia": null, "reactionVideos": [], @@ -416801,7 +416301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 11610194, "featuredRunMedia": null, "reactionVideos": [], @@ -416821,7 +416321,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 11613324, "featuredRunMedia": null, "reactionVideos": [], @@ -416845,7 +416345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 11613513, "featuredRunMedia": null, "reactionVideos": [], @@ -416865,7 +416365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 11614694, "featuredRunMedia": null, "reactionVideos": [], @@ -416885,7 +416385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 11615129, "featuredRunMedia": null, "reactionVideos": [], @@ -416905,7 +416405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 342, + "teamId": "144412", "time": 11615314, "featuredRunMedia": null, "reactionVideos": [], @@ -416925,7 +416425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 11615815, "featuredRunMedia": null, "reactionVideos": [], @@ -416945,7 +416445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 11619941, "featuredRunMedia": null, "reactionVideos": [], @@ -416965,7 +416465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 11620378, "featuredRunMedia": null, "reactionVideos": [], @@ -416985,7 +416485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 11621806, "featuredRunMedia": null, "reactionVideos": [], @@ -417005,7 +416505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 11627414, "featuredRunMedia": null, "reactionVideos": [], @@ -417025,7 +416525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 11627558, "featuredRunMedia": null, "reactionVideos": [], @@ -417045,7 +416545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 11630713, "featuredRunMedia": null, "reactionVideos": [], @@ -417065,7 +416565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11631420, "featuredRunMedia": null, "reactionVideos": [], @@ -417085,7 +416585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11632502, "featuredRunMedia": null, "reactionVideos": [], @@ -417105,7 +416605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 11634262, "featuredRunMedia": null, "reactionVideos": [], @@ -417125,7 +416625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 416, + "teamId": "144486", "time": 11634937, "featuredRunMedia": null, "reactionVideos": [], @@ -417145,7 +416645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 11637389, "featuredRunMedia": null, "reactionVideos": [], @@ -417165,7 +416665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 11637786, "featuredRunMedia": null, "reactionVideos": [], @@ -417185,7 +416685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11637923, "featuredRunMedia": null, "reactionVideos": [], @@ -417205,7 +416705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 11638032, "featuredRunMedia": null, "reactionVideos": [], @@ -417225,7 +416725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11638495, "featuredRunMedia": null, "reactionVideos": [], @@ -417245,7 +416745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11638915, "featuredRunMedia": null, "reactionVideos": [], @@ -417265,7 +416765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "144347", "time": 11639407, "featuredRunMedia": null, "reactionVideos": [], @@ -417285,7 +416785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 11639779, "featuredRunMedia": null, "reactionVideos": [], @@ -417305,7 +416805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11639830, "featuredRunMedia": null, "reactionVideos": [], @@ -417325,7 +416825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11641726, "featuredRunMedia": null, "reactionVideos": [], @@ -417345,7 +416845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 11643853, "featuredRunMedia": null, "reactionVideos": [], @@ -417365,7 +416865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 11648067, "featuredRunMedia": null, "reactionVideos": [], @@ -417385,7 +416885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 11648596, "featuredRunMedia": null, "reactionVideos": [], @@ -417405,7 +416905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 11649734, "featuredRunMedia": null, "reactionVideos": [], @@ -417425,7 +416925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11649770, "featuredRunMedia": null, "reactionVideos": [], @@ -417445,7 +416945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 11650808, "featuredRunMedia": null, "reactionVideos": [], @@ -417465,7 +416965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11651625, "featuredRunMedia": null, "reactionVideos": [], @@ -417485,7 +416985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11652701, "featuredRunMedia": null, "reactionVideos": [], @@ -417505,7 +417005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11654907, "featuredRunMedia": null, "reactionVideos": [], @@ -417525,7 +417025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "144092", "time": 11655927, "featuredRunMedia": null, "reactionVideos": [], @@ -417545,7 +417045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11656061, "featuredRunMedia": null, "reactionVideos": [], @@ -417565,7 +417065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 11656102, "featuredRunMedia": null, "reactionVideos": [], @@ -417585,7 +417085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11658827, "featuredRunMedia": null, "reactionVideos": [], @@ -417605,7 +417105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11659164, "featuredRunMedia": null, "reactionVideos": [], @@ -417625,7 +417125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11659517, "featuredRunMedia": null, "reactionVideos": [], @@ -417645,7 +417145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 11660674, "featuredRunMedia": null, "reactionVideos": [], @@ -417665,7 +417165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 11663251, "featuredRunMedia": null, "reactionVideos": [], @@ -417685,7 +417185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 11663297, "featuredRunMedia": null, "reactionVideos": [], @@ -417705,7 +417205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 11664498, "featuredRunMedia": null, "reactionVideos": [], @@ -417725,7 +417225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11664599, "featuredRunMedia": null, "reactionVideos": [], @@ -417745,7 +417245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 11664625, "featuredRunMedia": null, "reactionVideos": [], @@ -417765,7 +417265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 11665425, "featuredRunMedia": null, "reactionVideos": [], @@ -417785,7 +417285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 11665472, "featuredRunMedia": null, "reactionVideos": [], @@ -417805,7 +417305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 11665505, "featuredRunMedia": null, "reactionVideos": [], @@ -417825,7 +417325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 11666065, "featuredRunMedia": null, "reactionVideos": [], @@ -417845,7 +417345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 11671890, "featuredRunMedia": null, "reactionVideos": [], @@ -417865,7 +417365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 11672844, "featuredRunMedia": null, "reactionVideos": [], @@ -417885,7 +417385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11673210, "featuredRunMedia": null, "reactionVideos": [], @@ -417905,7 +417405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11673534, "featuredRunMedia": null, "reactionVideos": [], @@ -417929,7 +417429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 11674906, "featuredRunMedia": null, "reactionVideos": [], @@ -417949,7 +417449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 11675083, "featuredRunMedia": null, "reactionVideos": [], @@ -417969,7 +417469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 11675229, "featuredRunMedia": null, "reactionVideos": [], @@ -417989,7 +417489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11675433, "featuredRunMedia": null, "reactionVideos": [], @@ -418009,7 +417509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11682695, "featuredRunMedia": null, "reactionVideos": [], @@ -418029,7 +417529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11683021, "featuredRunMedia": null, "reactionVideos": [], @@ -418049,7 +417549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "144253", "time": 11683272, "featuredRunMedia": null, "reactionVideos": [], @@ -418069,7 +417569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 11683769, "featuredRunMedia": null, "reactionVideos": [], @@ -418089,7 +417589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 11685489, "featuredRunMedia": null, "reactionVideos": [], @@ -418109,7 +417609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 11686699, "featuredRunMedia": null, "reactionVideos": [], @@ -418129,7 +417629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 11686944, "featuredRunMedia": null, "reactionVideos": [], @@ -418149,7 +417649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "144271", "time": 11687135, "featuredRunMedia": null, "reactionVideos": [], @@ -418169,7 +417669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 11688473, "featuredRunMedia": null, "reactionVideos": [], @@ -418189,7 +417689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11689387, "featuredRunMedia": null, "reactionVideos": [], @@ -418209,7 +417709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 11689920, "featuredRunMedia": null, "reactionVideos": [], @@ -418229,7 +417729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11690189, "featuredRunMedia": null, "reactionVideos": [], @@ -418249,7 +417749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 11692579, "featuredRunMedia": null, "reactionVideos": [], @@ -418269,7 +417769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11693119, "featuredRunMedia": null, "reactionVideos": [], @@ -418289,7 +417789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 11693675, "featuredRunMedia": null, "reactionVideos": [], @@ -418309,7 +417809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 11693771, "featuredRunMedia": null, "reactionVideos": [], @@ -418329,7 +417829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11694190, "featuredRunMedia": null, "reactionVideos": [], @@ -418349,7 +417849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 11695323, "featuredRunMedia": null, "reactionVideos": [], @@ -418369,7 +417869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 11696593, "featuredRunMedia": null, "reactionVideos": [], @@ -418389,7 +417889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 11697844, "featuredRunMedia": null, "reactionVideos": [], @@ -418409,7 +417909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "144173", "time": 11698262, "featuredRunMedia": null, "reactionVideos": [], @@ -418429,7 +417929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 11698908, "featuredRunMedia": null, "reactionVideos": [], @@ -418449,7 +417949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 11699242, "featuredRunMedia": null, "reactionVideos": [], @@ -418469,7 +417969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 11703424, "featuredRunMedia": null, "reactionVideos": [], @@ -418489,7 +417989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 11703783, "featuredRunMedia": null, "reactionVideos": [], @@ -418509,7 +418009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11704292, "featuredRunMedia": null, "reactionVideos": [], @@ -418529,7 +418029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11704575, "featuredRunMedia": null, "reactionVideos": [], @@ -418549,7 +418049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 11709906, "featuredRunMedia": null, "reactionVideos": [], @@ -418569,7 +418069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 11710358, "featuredRunMedia": null, "reactionVideos": [], @@ -418589,7 +418089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 11710529, "featuredRunMedia": null, "reactionVideos": [], @@ -418609,7 +418109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11710743, "featuredRunMedia": null, "reactionVideos": [], @@ -418629,7 +418129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 399, + "teamId": "144469", "time": 11711437, "featuredRunMedia": null, "reactionVideos": [], @@ -418649,7 +418149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 11711674, "featuredRunMedia": null, "reactionVideos": [], @@ -418669,7 +418169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 428, + "teamId": "144498", "time": 11712093, "featuredRunMedia": null, "reactionVideos": [], @@ -418689,7 +418189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 11713339, "featuredRunMedia": null, "reactionVideos": [], @@ -418709,7 +418209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 11714579, "featuredRunMedia": null, "reactionVideos": [], @@ -418729,7 +418229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11715055, "featuredRunMedia": null, "reactionVideos": [], @@ -418749,7 +418249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 11716543, "featuredRunMedia": null, "reactionVideos": [], @@ -418769,7 +418269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 11717229, "featuredRunMedia": null, "reactionVideos": [], @@ -418789,7 +418289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 11718722, "featuredRunMedia": null, "reactionVideos": [], @@ -418809,7 +418309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "144288", "time": 11719043, "featuredRunMedia": null, "reactionVideos": [], @@ -418829,7 +418329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 11719222, "featuredRunMedia": null, "reactionVideos": [], @@ -418849,7 +418349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11721214, "featuredRunMedia": null, "reactionVideos": [], @@ -418869,7 +418369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 11724651, "featuredRunMedia": null, "reactionVideos": [], @@ -418889,7 +418389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "144155", "time": 11724914, "featuredRunMedia": null, "reactionVideos": [], @@ -418909,7 +418409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11725321, "featuredRunMedia": null, "reactionVideos": [], @@ -418929,7 +418429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11725557, "featuredRunMedia": null, "reactionVideos": [], @@ -418949,7 +418449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 11726432, "featuredRunMedia": null, "reactionVideos": [], @@ -418969,7 +418469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 314, + "teamId": "144384", "time": 11728128, "featuredRunMedia": null, "reactionVideos": [], @@ -418989,7 +418489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 11728635, "featuredRunMedia": null, "reactionVideos": [], @@ -419009,7 +418509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 11728876, "featuredRunMedia": null, "reactionVideos": [], @@ -419029,7 +418529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 11730072, "featuredRunMedia": null, "reactionVideos": [], @@ -419049,7 +418549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "144110", "time": 11730388, "featuredRunMedia": null, "reactionVideos": [], @@ -419069,7 +418569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11732172, "featuredRunMedia": null, "reactionVideos": [], @@ -419089,7 +418589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 11733711, "featuredRunMedia": null, "reactionVideos": [], @@ -419109,7 +418609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 11733811, "featuredRunMedia": null, "reactionVideos": [], @@ -419129,7 +418629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11741211, "featuredRunMedia": null, "reactionVideos": [], @@ -419149,7 +418649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 11741446, "featuredRunMedia": null, "reactionVideos": [], @@ -419169,7 +418669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 11743496, "featuredRunMedia": null, "reactionVideos": [], @@ -419189,7 +418689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 384, + "teamId": "144454", "time": 11745355, "featuredRunMedia": null, "reactionVideos": [], @@ -419209,7 +418709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11746079, "featuredRunMedia": null, "reactionVideos": [], @@ -419229,7 +418729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 11747295, "featuredRunMedia": null, "reactionVideos": [], @@ -419249,7 +418749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11748127, "featuredRunMedia": null, "reactionVideos": [], @@ -419269,7 +418769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 11748166, "featuredRunMedia": null, "reactionVideos": [], @@ -419289,7 +418789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 11748907, "featuredRunMedia": null, "reactionVideos": [], @@ -419309,7 +418809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 11749231, "featuredRunMedia": null, "reactionVideos": [], @@ -419329,7 +418829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11750241, "featuredRunMedia": null, "reactionVideos": [], @@ -419349,7 +418849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11750847, "featuredRunMedia": null, "reactionVideos": [], @@ -419369,7 +418869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 11751329, "featuredRunMedia": null, "reactionVideos": [], @@ -419389,7 +418889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11752335, "featuredRunMedia": null, "reactionVideos": [], @@ -419409,7 +418909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 11752536, "featuredRunMedia": null, "reactionVideos": [], @@ -419429,7 +418929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 11752900, "featuredRunMedia": null, "reactionVideos": [], @@ -419449,7 +418949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11752941, "featuredRunMedia": null, "reactionVideos": [], @@ -419469,7 +418969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 11753298, "featuredRunMedia": null, "reactionVideos": [], @@ -419489,7 +418989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "144183", "time": 11753550, "featuredRunMedia": null, "reactionVideos": [], @@ -419509,7 +419009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 11754515, "featuredRunMedia": null, "reactionVideos": [], @@ -419529,7 +419029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 11755987, "featuredRunMedia": null, "reactionVideos": [], @@ -419549,7 +419049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11756462, "featuredRunMedia": null, "reactionVideos": [], @@ -419569,7 +419069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11757745, "featuredRunMedia": null, "reactionVideos": [], @@ -419589,7 +419089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 11758116, "featuredRunMedia": null, "reactionVideos": [], @@ -419609,7 +419109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 11758165, "featuredRunMedia": null, "reactionVideos": [], @@ -419629,7 +419129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 365, + "teamId": "144435", "time": 11758726, "featuredRunMedia": null, "reactionVideos": [], @@ -419649,7 +419149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11760808, "featuredRunMedia": null, "reactionVideos": [], @@ -419669,7 +419169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 11761660, "featuredRunMedia": null, "reactionVideos": [], @@ -419689,7 +419189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 11764071, "featuredRunMedia": null, "reactionVideos": [], @@ -419709,7 +419209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 11764157, "featuredRunMedia": null, "reactionVideos": [], @@ -419729,7 +419229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "144122", "time": 11765419, "featuredRunMedia": null, "reactionVideos": [], @@ -419749,7 +419249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 11765665, "featuredRunMedia": null, "reactionVideos": [], @@ -419769,7 +419269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11765826, "featuredRunMedia": null, "reactionVideos": [], @@ -419789,7 +419289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 11766483, "featuredRunMedia": null, "reactionVideos": [], @@ -419809,7 +419309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 11766704, "featuredRunMedia": null, "reactionVideos": [], @@ -419829,7 +419329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11767171, "featuredRunMedia": null, "reactionVideos": [], @@ -419849,7 +419349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 11769840, "featuredRunMedia": null, "reactionVideos": [], @@ -419869,7 +419369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11769921, "featuredRunMedia": null, "reactionVideos": [], @@ -419889,7 +419389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "144343", "time": 11771237, "featuredRunMedia": null, "reactionVideos": [], @@ -419909,7 +419409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 11774227, "featuredRunMedia": null, "reactionVideos": [], @@ -419929,7 +419429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "144363", "time": 11774452, "featuredRunMedia": null, "reactionVideos": [], @@ -419949,7 +419449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "144242", "time": 11774517, "featuredRunMedia": null, "reactionVideos": [], @@ -419969,7 +419469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11775609, "featuredRunMedia": null, "reactionVideos": [], @@ -419989,7 +419489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 11777625, "featuredRunMedia": null, "reactionVideos": [], @@ -420009,7 +419509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "144209", "time": 11778721, "featuredRunMedia": null, "reactionVideos": [], @@ -420029,7 +419529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 11778754, "featuredRunMedia": null, "reactionVideos": [], @@ -420049,7 +419549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 11779178, "featuredRunMedia": null, "reactionVideos": [], @@ -420069,7 +419569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11781946, "featuredRunMedia": null, "reactionVideos": [], @@ -420089,7 +419589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11781989, "featuredRunMedia": null, "reactionVideos": [], @@ -420109,7 +419609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 11782312, "featuredRunMedia": null, "reactionVideos": [], @@ -420129,7 +419629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 11782532, "featuredRunMedia": null, "reactionVideos": [], @@ -420149,7 +419649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 11783909, "featuredRunMedia": null, "reactionVideos": [], @@ -420169,7 +419669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11786533, "featuredRunMedia": null, "reactionVideos": [], @@ -420189,7 +419689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 11786789, "featuredRunMedia": null, "reactionVideos": [], @@ -420209,7 +419709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 11786847, "featuredRunMedia": null, "reactionVideos": [], @@ -420229,7 +419729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 11787758, "featuredRunMedia": null, "reactionVideos": [], @@ -420249,7 +419749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 334, + "teamId": "144404", "time": 11789170, "featuredRunMedia": null, "reactionVideos": [], @@ -420269,7 +419769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 223, + "teamId": "144293", "time": 11789283, "featuredRunMedia": null, "reactionVideos": [], @@ -420289,7 +419789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 11793839, "featuredRunMedia": null, "reactionVideos": [], @@ -420309,7 +419809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 365, + "teamId": "144435", "time": 11794586, "featuredRunMedia": null, "reactionVideos": [], @@ -420329,7 +419829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11795669, "featuredRunMedia": null, "reactionVideos": [], @@ -420349,7 +419849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 11796033, "featuredRunMedia": null, "reactionVideos": [], @@ -420369,7 +419869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 11798144, "featuredRunMedia": null, "reactionVideos": [], @@ -420389,7 +419889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 11798594, "featuredRunMedia": null, "reactionVideos": [], @@ -420409,7 +419909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "144325", "time": 11798728, "featuredRunMedia": null, "reactionVideos": [], @@ -420429,7 +419929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 11799886, "featuredRunMedia": null, "reactionVideos": [], @@ -420449,7 +419949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 11800349, "featuredRunMedia": null, "reactionVideos": [], @@ -420469,7 +419969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 11801187, "featuredRunMedia": null, "reactionVideos": [], @@ -420489,7 +419989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 11801740, "featuredRunMedia": null, "reactionVideos": [], @@ -420509,7 +420009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 11803523, "featuredRunMedia": null, "reactionVideos": [], @@ -420529,7 +420029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 11805990, "featuredRunMedia": null, "reactionVideos": [], @@ -420549,7 +420049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 11806379, "featuredRunMedia": null, "reactionVideos": [], @@ -420569,7 +420069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 11808444, "featuredRunMedia": null, "reactionVideos": [], @@ -420589,7 +420089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 11809649, "featuredRunMedia": null, "reactionVideos": [], @@ -420609,7 +420109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "144109", "time": 11811784, "featuredRunMedia": null, "reactionVideos": [], @@ -420629,7 +420129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11815187, "featuredRunMedia": null, "reactionVideos": [], @@ -420649,7 +420149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 11817401, "featuredRunMedia": null, "reactionVideos": [], @@ -420669,7 +420169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 11819958, "featuredRunMedia": null, "reactionVideos": [], @@ -420689,7 +420189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 11821117, "featuredRunMedia": null, "reactionVideos": [], @@ -420709,7 +420209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11823837, "featuredRunMedia": null, "reactionVideos": [], @@ -420729,7 +420229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 11824408, "featuredRunMedia": null, "reactionVideos": [], @@ -420749,7 +420249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 440, + "teamId": "144510", "time": 11827326, "featuredRunMedia": null, "reactionVideos": [], @@ -420769,7 +420269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 11829300, "featuredRunMedia": null, "reactionVideos": [], @@ -420789,7 +420289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 11831365, "featuredRunMedia": null, "reactionVideos": [], @@ -420809,7 +420309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 11832576, "featuredRunMedia": null, "reactionVideos": [], @@ -420829,7 +420329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 11832873, "featuredRunMedia": null, "reactionVideos": [], @@ -420849,7 +420349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 338, + "teamId": "144408", "time": 11834264, "featuredRunMedia": null, "reactionVideos": [], @@ -420869,7 +420369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 11834318, "featuredRunMedia": null, "reactionVideos": [], @@ -420889,7 +420389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 223, + "teamId": "144293", "time": 11835431, "featuredRunMedia": null, "reactionVideos": [], @@ -420909,7 +420409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11835761, "featuredRunMedia": null, "reactionVideos": [], @@ -420929,7 +420429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 11838825, "featuredRunMedia": null, "reactionVideos": [], @@ -420949,7 +420449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 11839052, "featuredRunMedia": null, "reactionVideos": [], @@ -420969,7 +420469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 11842947, "featuredRunMedia": null, "reactionVideos": [], @@ -420989,7 +420489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 11843621, "featuredRunMedia": null, "reactionVideos": [], @@ -421009,7 +420509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "144207", "time": 11844205, "featuredRunMedia": null, "reactionVideos": [], @@ -421029,7 +420529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 11844931, "featuredRunMedia": null, "reactionVideos": [], @@ -421049,7 +420549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 11846562, "featuredRunMedia": null, "reactionVideos": [], @@ -421069,7 +420569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 11846596, "featuredRunMedia": null, "reactionVideos": [], @@ -421089,7 +420589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 11848870, "featuredRunMedia": null, "reactionVideos": [], @@ -421109,7 +420609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 11849603, "featuredRunMedia": null, "reactionVideos": [], @@ -421129,7 +420629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 381, + "teamId": "144451", "time": 11849735, "featuredRunMedia": null, "reactionVideos": [], @@ -421149,7 +420649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 11851351, "featuredRunMedia": null, "reactionVideos": [], @@ -421169,7 +420669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 354, + "teamId": "144424", "time": 11851646, "featuredRunMedia": null, "reactionVideos": [], @@ -421189,7 +420689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 11851771, "featuredRunMedia": null, "reactionVideos": [], @@ -421209,7 +420709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 11855532, "featuredRunMedia": null, "reactionVideos": [], @@ -421229,7 +420729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 11856859, "featuredRunMedia": null, "reactionVideos": [], @@ -421249,7 +420749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 11857071, "featuredRunMedia": null, "reactionVideos": [], @@ -421269,7 +420769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 11858455, "featuredRunMedia": null, "reactionVideos": [], @@ -421289,7 +420789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 11858774, "featuredRunMedia": null, "reactionVideos": [], @@ -421309,7 +420809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 11859656, "featuredRunMedia": null, "reactionVideos": [], @@ -421333,7 +420833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 11859864, "featuredRunMedia": null, "reactionVideos": [], @@ -421353,7 +420853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 11860437, "featuredRunMedia": null, "reactionVideos": [], @@ -421373,7 +420873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "144279", "time": 11861087, "featuredRunMedia": null, "reactionVideos": [], @@ -421393,7 +420893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11863951, "featuredRunMedia": null, "reactionVideos": [], @@ -421413,7 +420913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 11864860, "featuredRunMedia": null, "reactionVideos": [], @@ -421433,7 +420933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 11865679, "featuredRunMedia": null, "reactionVideos": [], @@ -421453,7 +420953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "144183", "time": 11866753, "featuredRunMedia": null, "reactionVideos": [], @@ -421473,7 +420973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 11867330, "featuredRunMedia": null, "reactionVideos": [], @@ -421493,7 +420993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 11868263, "featuredRunMedia": null, "reactionVideos": [], @@ -421513,7 +421013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 11869643, "featuredRunMedia": null, "reactionVideos": [], @@ -421533,7 +421033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 11869858, "featuredRunMedia": null, "reactionVideos": [], @@ -421553,7 +421053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 11870219, "featuredRunMedia": null, "reactionVideos": [], @@ -421573,7 +421073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 11871139, "featuredRunMedia": null, "reactionVideos": [], @@ -421593,7 +421093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11872111, "featuredRunMedia": null, "reactionVideos": [], @@ -421613,7 +421113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 108, + "teamId": "144178", "time": 11872429, "featuredRunMedia": null, "reactionVideos": [], @@ -421633,7 +421133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 11873083, "featuredRunMedia": null, "reactionVideos": [], @@ -421653,7 +421153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 11875540, "featuredRunMedia": null, "reactionVideos": [], @@ -421673,7 +421173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 11877639, "featuredRunMedia": null, "reactionVideos": [], @@ -421693,7 +421193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 369, + "teamId": "144439", "time": 11878806, "featuredRunMedia": null, "reactionVideos": [], @@ -421713,7 +421213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 11880041, "featuredRunMedia": null, "reactionVideos": [], @@ -421733,7 +421233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 334, + "teamId": "144404", "time": 11880630, "featuredRunMedia": null, "reactionVideos": [], @@ -421753,7 +421253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 11881951, "featuredRunMedia": null, "reactionVideos": [], @@ -421777,7 +421277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11884061, "featuredRunMedia": null, "reactionVideos": [], @@ -421797,7 +421297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 11885052, "featuredRunMedia": null, "reactionVideos": [], @@ -421817,7 +421317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 11887005, "featuredRunMedia": null, "reactionVideos": [], @@ -421837,7 +421337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 11887575, "featuredRunMedia": null, "reactionVideos": [], @@ -421857,7 +421357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 11887622, "featuredRunMedia": null, "reactionVideos": [], @@ -421877,7 +421377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 11887910, "featuredRunMedia": null, "reactionVideos": [], @@ -421897,7 +421397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 11888110, "featuredRunMedia": null, "reactionVideos": [], @@ -421917,7 +421417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 364, + "teamId": "144434", "time": 11889204, "featuredRunMedia": null, "reactionVideos": [], @@ -421937,7 +421437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 11890234, "featuredRunMedia": null, "reactionVideos": [], @@ -421957,7 +421457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 11890941, "featuredRunMedia": null, "reactionVideos": [], @@ -421977,7 +421477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 11892052, "featuredRunMedia": null, "reactionVideos": [], @@ -421997,7 +421497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11893154, "featuredRunMedia": null, "reactionVideos": [], @@ -422017,7 +421517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 11893675, "featuredRunMedia": null, "reactionVideos": [], @@ -422037,7 +421537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11896717, "featuredRunMedia": null, "reactionVideos": [], @@ -422057,7 +421557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 11897950, "featuredRunMedia": null, "reactionVideos": [], @@ -422077,7 +421577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 11898004, "featuredRunMedia": null, "reactionVideos": [], @@ -422097,7 +421597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "144263", "time": 11899773, "featuredRunMedia": null, "reactionVideos": [], @@ -422117,7 +421617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 11901967, "featuredRunMedia": null, "reactionVideos": [], @@ -422137,7 +421637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 11904275, "featuredRunMedia": null, "reactionVideos": [], @@ -422157,7 +421657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 11906271, "featuredRunMedia": null, "reactionVideos": [], @@ -422177,7 +421677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 11906673, "featuredRunMedia": null, "reactionVideos": [], @@ -422197,7 +421697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 11906741, "featuredRunMedia": null, "reactionVideos": [], @@ -422217,7 +421717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 11906802, "featuredRunMedia": null, "reactionVideos": [], @@ -422237,7 +421737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 398, + "teamId": "144468", "time": 11908032, "featuredRunMedia": null, "reactionVideos": [], @@ -422257,7 +421757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 11911337, "featuredRunMedia": null, "reactionVideos": [], @@ -422277,7 +421777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 11911384, "featuredRunMedia": null, "reactionVideos": [], @@ -422297,7 +421797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 11912422, "featuredRunMedia": null, "reactionVideos": [], @@ -422317,7 +421817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 11912575, "featuredRunMedia": null, "reactionVideos": [], @@ -422337,7 +421837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11913872, "featuredRunMedia": null, "reactionVideos": [], @@ -422357,7 +421857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "144368", "time": 11914984, "featuredRunMedia": null, "reactionVideos": [], @@ -422377,7 +421877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 11915364, "featuredRunMedia": null, "reactionVideos": [], @@ -422401,7 +421901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 11915416, "featuredRunMedia": null, "reactionVideos": [], @@ -422421,7 +421921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 11916796, "featuredRunMedia": null, "reactionVideos": [], @@ -422441,7 +421941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 11917451, "featuredRunMedia": null, "reactionVideos": [], @@ -422461,7 +421961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 11917674, "featuredRunMedia": null, "reactionVideos": [], @@ -422481,7 +421981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "144202", "time": 11918049, "featuredRunMedia": null, "reactionVideos": [], @@ -422501,7 +422001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "144363", "time": 11923739, "featuredRunMedia": null, "reactionVideos": [], @@ -422521,7 +422021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11923777, "featuredRunMedia": null, "reactionVideos": [], @@ -422541,7 +422041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 11927290, "featuredRunMedia": null, "reactionVideos": [], @@ -422561,7 +422061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 11927624, "featuredRunMedia": null, "reactionVideos": [], @@ -422581,7 +422081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 11929761, "featuredRunMedia": null, "reactionVideos": [], @@ -422601,7 +422101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11930045, "featuredRunMedia": null, "reactionVideos": [], @@ -422621,7 +422121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 11932944, "featuredRunMedia": null, "reactionVideos": [], @@ -422641,7 +422141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "144104", "time": 11933517, "featuredRunMedia": null, "reactionVideos": [], @@ -422661,7 +422161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 11935457, "featuredRunMedia": null, "reactionVideos": [], @@ -422681,7 +422181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 11935652, "featuredRunMedia": null, "reactionVideos": [], @@ -422701,7 +422201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11937052, "featuredRunMedia": null, "reactionVideos": [], @@ -422725,7 +422225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 11937546, "featuredRunMedia": null, "reactionVideos": [], @@ -422745,7 +422245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 11937842, "featuredRunMedia": null, "reactionVideos": [], @@ -422765,7 +422265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 11938411, "featuredRunMedia": null, "reactionVideos": [], @@ -422785,7 +422285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 11941181, "featuredRunMedia": null, "reactionVideos": [], @@ -422805,7 +422305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 11941818, "featuredRunMedia": null, "reactionVideos": [], @@ -422825,7 +422325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 11942144, "featuredRunMedia": null, "reactionVideos": [], @@ -422845,7 +422345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 11942376, "featuredRunMedia": null, "reactionVideos": [], @@ -422865,7 +422365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "144341", "time": 11942630, "featuredRunMedia": null, "reactionVideos": [], @@ -422885,7 +422385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 11944121, "featuredRunMedia": null, "reactionVideos": [], @@ -422905,7 +422405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 11945251, "featuredRunMedia": null, "reactionVideos": [], @@ -422925,7 +422425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 11945873, "featuredRunMedia": null, "reactionVideos": [], @@ -422945,7 +422445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 11945969, "featuredRunMedia": null, "reactionVideos": [], @@ -422965,7 +422465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "144209", "time": 11946440, "featuredRunMedia": null, "reactionVideos": [], @@ -422985,7 +422485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 11948468, "featuredRunMedia": null, "reactionVideos": [], @@ -423005,7 +422505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11949427, "featuredRunMedia": null, "reactionVideos": [], @@ -423025,7 +422525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 11949545, "featuredRunMedia": null, "reactionVideos": [], @@ -423045,7 +422545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 11951084, "featuredRunMedia": null, "reactionVideos": [], @@ -423065,7 +422565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 11951304, "featuredRunMedia": null, "reactionVideos": [], @@ -423085,7 +422585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11951907, "featuredRunMedia": null, "reactionVideos": [], @@ -423105,7 +422605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 11952846, "featuredRunMedia": null, "reactionVideos": [], @@ -423125,7 +422625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 11954526, "featuredRunMedia": null, "reactionVideos": [], @@ -423145,7 +422645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 11955283, "featuredRunMedia": null, "reactionVideos": [], @@ -423165,7 +422665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 11956640, "featuredRunMedia": null, "reactionVideos": [], @@ -423185,7 +422685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "144325", "time": 11958588, "featuredRunMedia": null, "reactionVideos": [], @@ -423205,7 +422705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 11958773, "featuredRunMedia": null, "reactionVideos": [], @@ -423225,7 +422725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 11959444, "featuredRunMedia": null, "reactionVideos": [], @@ -423245,7 +422745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 11960430, "featuredRunMedia": null, "reactionVideos": [], @@ -423265,7 +422765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 11960481, "featuredRunMedia": null, "reactionVideos": [], @@ -423285,7 +422785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 11961906, "featuredRunMedia": null, "reactionVideos": [], @@ -423305,7 +422805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11962845, "featuredRunMedia": null, "reactionVideos": [], @@ -423325,7 +422825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 11963847, "featuredRunMedia": null, "reactionVideos": [], @@ -423345,7 +422845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 11965230, "featuredRunMedia": null, "reactionVideos": [], @@ -423365,7 +422865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "144243", "time": 11965369, "featuredRunMedia": null, "reactionVideos": [], @@ -423385,7 +422885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 11965418, "featuredRunMedia": null, "reactionVideos": [], @@ -423405,7 +422905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 11966625, "featuredRunMedia": null, "reactionVideos": [], @@ -423425,7 +422925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 11967412, "featuredRunMedia": null, "reactionVideos": [], @@ -423445,7 +422945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 11968591, "featuredRunMedia": null, "reactionVideos": [], @@ -423465,7 +422965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 11968878, "featuredRunMedia": null, "reactionVideos": [], @@ -423485,7 +422985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11969093, "featuredRunMedia": null, "reactionVideos": [], @@ -423505,7 +423005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 11969271, "featuredRunMedia": null, "reactionVideos": [], @@ -423525,7 +423025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 11970157, "featuredRunMedia": null, "reactionVideos": [], @@ -423545,7 +423045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 11970546, "featuredRunMedia": null, "reactionVideos": [], @@ -423565,7 +423065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 11970735, "featuredRunMedia": null, "reactionVideos": [], @@ -423585,7 +423085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 11971042, "featuredRunMedia": null, "reactionVideos": [], @@ -423605,7 +423105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 11971241, "featuredRunMedia": null, "reactionVideos": [], @@ -423625,7 +423125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "144323", "time": 11973449, "featuredRunMedia": null, "reactionVideos": [], @@ -423645,7 +423145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 11976492, "featuredRunMedia": null, "reactionVideos": [], @@ -423665,7 +423165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 11977764, "featuredRunMedia": null, "reactionVideos": [], @@ -423685,7 +423185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 11979399, "featuredRunMedia": null, "reactionVideos": [], @@ -423705,7 +423205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 11980244, "featuredRunMedia": null, "reactionVideos": [], @@ -423725,7 +423225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 11981479, "featuredRunMedia": null, "reactionVideos": [], @@ -423745,7 +423245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 11981857, "featuredRunMedia": null, "reactionVideos": [], @@ -423765,7 +423265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 11982238, "featuredRunMedia": null, "reactionVideos": [], @@ -423785,7 +423285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 11982276, "featuredRunMedia": null, "reactionVideos": [], @@ -423809,7 +423309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 11985693, "featuredRunMedia": null, "reactionVideos": [], @@ -423833,7 +423333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 11985740, "featuredRunMedia": null, "reactionVideos": [], @@ -423853,7 +423353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 11986319, "featuredRunMedia": null, "reactionVideos": [], @@ -423873,7 +423373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 11987334, "featuredRunMedia": null, "reactionVideos": [], @@ -423893,7 +423393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 11987781, "featuredRunMedia": null, "reactionVideos": [], @@ -423913,7 +423413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 11988080, "featuredRunMedia": null, "reactionVideos": [], @@ -423933,7 +423433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 11988527, "featuredRunMedia": null, "reactionVideos": [], @@ -423953,7 +423453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 11988704, "featuredRunMedia": null, "reactionVideos": [], @@ -423973,7 +423473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 11989146, "featuredRunMedia": null, "reactionVideos": [], @@ -423993,7 +423493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 11989458, "featuredRunMedia": null, "reactionVideos": [], @@ -424013,7 +423513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 11990602, "featuredRunMedia": null, "reactionVideos": [], @@ -424033,7 +423533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 11991567, "featuredRunMedia": null, "reactionVideos": [], @@ -424053,7 +423553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "144205", "time": 11993641, "featuredRunMedia": null, "reactionVideos": [], @@ -424073,7 +423573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 11994165, "featuredRunMedia": null, "reactionVideos": [], @@ -424093,7 +423593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 421, + "teamId": "144491", "time": 11995989, "featuredRunMedia": null, "reactionVideos": [], @@ -424113,7 +423613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "144196", "time": 11996879, "featuredRunMedia": null, "reactionVideos": [], @@ -424133,7 +423633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 12001375, "featuredRunMedia": null, "reactionVideos": [], @@ -424153,7 +423653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 12001809, "featuredRunMedia": null, "reactionVideos": [], @@ -424173,7 +423673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 12002030, "featuredRunMedia": null, "reactionVideos": [], @@ -424193,7 +423693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12003208, "featuredRunMedia": null, "reactionVideos": [], @@ -424213,7 +423713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 12004115, "featuredRunMedia": null, "reactionVideos": [], @@ -424233,7 +423733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 12004276, "featuredRunMedia": null, "reactionVideos": [], @@ -424257,7 +423757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 12004901, "featuredRunMedia": null, "reactionVideos": [], @@ -424277,7 +423777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 439, + "teamId": "144509", "time": 12006502, "featuredRunMedia": null, "reactionVideos": [], @@ -424297,7 +423797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 12007644, "featuredRunMedia": null, "reactionVideos": [], @@ -424317,7 +423817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 12007891, "featuredRunMedia": null, "reactionVideos": [], @@ -424341,7 +423841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12010203, "featuredRunMedia": null, "reactionVideos": [], @@ -424361,7 +423861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 12012270, "featuredRunMedia": null, "reactionVideos": [], @@ -424381,7 +423881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "144358", "time": 12014833, "featuredRunMedia": null, "reactionVideos": [], @@ -424401,7 +423901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12014970, "featuredRunMedia": null, "reactionVideos": [], @@ -424421,7 +423921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 12016290, "featuredRunMedia": null, "reactionVideos": [], @@ -424441,7 +423941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 12017308, "featuredRunMedia": null, "reactionVideos": [], @@ -424461,7 +423961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 12018020, "featuredRunMedia": null, "reactionVideos": [], @@ -424481,7 +423981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 12020568, "featuredRunMedia": null, "reactionVideos": [], @@ -424501,7 +424001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 12020661, "featuredRunMedia": null, "reactionVideos": [], @@ -424521,7 +424021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12020834, "featuredRunMedia": null, "reactionVideos": [], @@ -424541,7 +424041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 12021208, "featuredRunMedia": null, "reactionVideos": [], @@ -424561,7 +424061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 12021326, "featuredRunMedia": null, "reactionVideos": [], @@ -424581,7 +424081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12021731, "featuredRunMedia": null, "reactionVideos": [], @@ -424601,7 +424101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12021931, "featuredRunMedia": null, "reactionVideos": [], @@ -424621,7 +424121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 12022192, "featuredRunMedia": null, "reactionVideos": [], @@ -424641,7 +424141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 12022457, "featuredRunMedia": null, "reactionVideos": [], @@ -424665,7 +424165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 12028370, "featuredRunMedia": null, "reactionVideos": [], @@ -424685,7 +424185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 12029414, "featuredRunMedia": null, "reactionVideos": [], @@ -424705,7 +424205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 12029488, "featuredRunMedia": null, "reactionVideos": [], @@ -424725,7 +424225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 432, + "teamId": "144502", "time": 12032308, "featuredRunMedia": null, "reactionVideos": [], @@ -424745,7 +424245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 12032404, "featuredRunMedia": null, "reactionVideos": [], @@ -424765,7 +424265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 12033975, "featuredRunMedia": null, "reactionVideos": [], @@ -424785,7 +424285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "144263", "time": 12035703, "featuredRunMedia": null, "reactionVideos": [], @@ -424805,7 +424305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12036296, "featuredRunMedia": null, "reactionVideos": [], @@ -424825,7 +424325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 12037220, "featuredRunMedia": null, "reactionVideos": [], @@ -424845,7 +424345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12037584, "featuredRunMedia": null, "reactionVideos": [], @@ -424865,7 +424365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 12038362, "featuredRunMedia": null, "reactionVideos": [], @@ -424885,7 +424385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12038504, "featuredRunMedia": null, "reactionVideos": [], @@ -424905,7 +424405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 12042713, "featuredRunMedia": null, "reactionVideos": [], @@ -424925,7 +424425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "144209", "time": 12047775, "featuredRunMedia": null, "reactionVideos": [], @@ -424945,7 +424445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 12048065, "featuredRunMedia": null, "reactionVideos": [], @@ -424965,7 +424465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12051720, "featuredRunMedia": null, "reactionVideos": [], @@ -424985,7 +424485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "144134", "time": 12055298, "featuredRunMedia": null, "reactionVideos": [], @@ -425005,7 +424505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 12057298, "featuredRunMedia": null, "reactionVideos": [], @@ -425025,7 +424525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 12057740, "featuredRunMedia": null, "reactionVideos": [], @@ -425045,7 +424545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "144258", "time": 12058051, "featuredRunMedia": null, "reactionVideos": [], @@ -425065,7 +424565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 12060452, "featuredRunMedia": null, "reactionVideos": [], @@ -425085,7 +424585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 12060779, "featuredRunMedia": null, "reactionVideos": [], @@ -425105,7 +424605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12061022, "featuredRunMedia": null, "reactionVideos": [], @@ -425125,7 +424625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 12061146, "featuredRunMedia": null, "reactionVideos": [], @@ -425145,7 +424645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 12061468, "featuredRunMedia": null, "reactionVideos": [], @@ -425165,7 +424665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12062183, "featuredRunMedia": null, "reactionVideos": [], @@ -425185,7 +424685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "144141", "time": 12062320, "featuredRunMedia": null, "reactionVideos": [], @@ -425205,7 +424705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 12062399, "featuredRunMedia": null, "reactionVideos": [], @@ -425225,7 +424725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 12062565, "featuredRunMedia": null, "reactionVideos": [], @@ -425245,7 +424745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 12063611, "featuredRunMedia": null, "reactionVideos": [], @@ -425265,7 +424765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 12064994, "featuredRunMedia": null, "reactionVideos": [], @@ -425285,7 +424785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 12065092, "featuredRunMedia": null, "reactionVideos": [], @@ -425305,7 +424805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12068289, "featuredRunMedia": null, "reactionVideos": [], @@ -425325,7 +424825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "144257", "time": 12068625, "featuredRunMedia": null, "reactionVideos": [], @@ -425345,7 +424845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 12070995, "featuredRunMedia": null, "reactionVideos": [], @@ -425365,7 +424865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 350, + "teamId": "144420", "time": 12072997, "featuredRunMedia": null, "reactionVideos": [], @@ -425385,7 +424885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 12073450, "featuredRunMedia": null, "reactionVideos": [], @@ -425405,7 +424905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 12074401, "featuredRunMedia": null, "reactionVideos": [], @@ -425425,7 +424925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 396, + "teamId": "144466", "time": 12075123, "featuredRunMedia": null, "reactionVideos": [], @@ -425445,7 +424945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 12075241, "featuredRunMedia": null, "reactionVideos": [], @@ -425465,7 +424965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 416, + "teamId": "144486", "time": 12075504, "featuredRunMedia": null, "reactionVideos": [], @@ -425485,7 +424985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 12076253, "featuredRunMedia": null, "reactionVideos": [], @@ -425505,7 +425005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12079201, "featuredRunMedia": null, "reactionVideos": [], @@ -425525,7 +425025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12080632, "featuredRunMedia": null, "reactionVideos": [], @@ -425545,7 +425045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 12080867, "featuredRunMedia": null, "reactionVideos": [], @@ -425565,7 +425065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 12086101, "featuredRunMedia": null, "reactionVideos": [], @@ -425585,7 +425085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 12086928, "featuredRunMedia": null, "reactionVideos": [], @@ -425605,7 +425105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 12087787, "featuredRunMedia": null, "reactionVideos": [], @@ -425625,7 +425125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12088432, "featuredRunMedia": null, "reactionVideos": [], @@ -425645,7 +425145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 12090788, "featuredRunMedia": null, "reactionVideos": [], @@ -425665,7 +425165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 12091254, "featuredRunMedia": null, "reactionVideos": [], @@ -425685,7 +425185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 12091659, "featuredRunMedia": null, "reactionVideos": [], @@ -425705,7 +425205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 12091762, "featuredRunMedia": null, "reactionVideos": [], @@ -425725,7 +425225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12091913, "featuredRunMedia": null, "reactionVideos": [], @@ -425745,7 +425245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 12092312, "featuredRunMedia": null, "reactionVideos": [], @@ -425765,7 +425265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12092714, "featuredRunMedia": null, "reactionVideos": [], @@ -425785,7 +425285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12093953, "featuredRunMedia": null, "reactionVideos": [], @@ -425805,7 +425305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12094760, "featuredRunMedia": null, "reactionVideos": [], @@ -425825,7 +425325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 12095590, "featuredRunMedia": null, "reactionVideos": [], @@ -425845,7 +425345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 12095803, "featuredRunMedia": null, "reactionVideos": [], @@ -425865,7 +425365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 12096208, "featuredRunMedia": null, "reactionVideos": [], @@ -425885,7 +425385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12097090, "featuredRunMedia": null, "reactionVideos": [], @@ -425905,7 +425405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12101855, "featuredRunMedia": null, "reactionVideos": [], @@ -425929,7 +425429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 12104149, "featuredRunMedia": null, "reactionVideos": [], @@ -425949,7 +425449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12104295, "featuredRunMedia": null, "reactionVideos": [], @@ -425969,7 +425469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 12106171, "featuredRunMedia": null, "reactionVideos": [], @@ -425989,7 +425489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12106547, "featuredRunMedia": null, "reactionVideos": [], @@ -426009,7 +425509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 12107071, "featuredRunMedia": null, "reactionVideos": [], @@ -426029,7 +425529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 12108716, "featuredRunMedia": null, "reactionVideos": [], @@ -426049,7 +425549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 12109250, "featuredRunMedia": null, "reactionVideos": [], @@ -426069,7 +425569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12110261, "featuredRunMedia": null, "reactionVideos": [], @@ -426089,7 +425589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 12110306, "featuredRunMedia": null, "reactionVideos": [], @@ -426109,7 +425609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 12110507, "featuredRunMedia": null, "reactionVideos": [], @@ -426129,7 +425629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 12113106, "featuredRunMedia": null, "reactionVideos": [], @@ -426149,7 +425649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12113250, "featuredRunMedia": null, "reactionVideos": [], @@ -426169,7 +425669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12116175, "featuredRunMedia": null, "reactionVideos": [], @@ -426189,7 +425689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 154, + "teamId": "144224", "time": 12116223, "featuredRunMedia": null, "reactionVideos": [], @@ -426209,7 +425709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 12116597, "featuredRunMedia": null, "reactionVideos": [], @@ -426229,7 +425729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12117317, "featuredRunMedia": null, "reactionVideos": [], @@ -426249,7 +425749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 12120214, "featuredRunMedia": null, "reactionVideos": [], @@ -426269,7 +425769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12121583, "featuredRunMedia": null, "reactionVideos": [], @@ -426289,7 +425789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12123373, "featuredRunMedia": null, "reactionVideos": [], @@ -426309,7 +425809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 12123821, "featuredRunMedia": null, "reactionVideos": [], @@ -426329,7 +425829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 12124133, "featuredRunMedia": null, "reactionVideos": [], @@ -426349,7 +425849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 12124383, "featuredRunMedia": null, "reactionVideos": [], @@ -426369,7 +425869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 12126104, "featuredRunMedia": null, "reactionVideos": [], @@ -426393,7 +425893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 12126258, "featuredRunMedia": null, "reactionVideos": [], @@ -426413,7 +425913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 12126430, "featuredRunMedia": null, "reactionVideos": [], @@ -426433,7 +425933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12129751, "featuredRunMedia": null, "reactionVideos": [], @@ -426453,7 +425953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 12130586, "featuredRunMedia": null, "reactionVideos": [], @@ -426473,7 +425973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 12130637, "featuredRunMedia": null, "reactionVideos": [], @@ -426493,7 +425993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12132430, "featuredRunMedia": null, "reactionVideos": [], @@ -426513,7 +426013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12133598, "featuredRunMedia": null, "reactionVideos": [], @@ -426533,7 +426033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 12137640, "featuredRunMedia": null, "reactionVideos": [], @@ -426553,7 +426053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 12139906, "featuredRunMedia": null, "reactionVideos": [], @@ -426573,7 +426073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12139960, "featuredRunMedia": null, "reactionVideos": [], @@ -426593,7 +426093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 12141337, "featuredRunMedia": null, "reactionVideos": [], @@ -426617,7 +426117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 12143632, "featuredRunMedia": null, "reactionVideos": [], @@ -426637,7 +426137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 12147928, "featuredRunMedia": null, "reactionVideos": [], @@ -426657,7 +426157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 12148415, "featuredRunMedia": null, "reactionVideos": [], @@ -426677,7 +426177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12153150, "featuredRunMedia": null, "reactionVideos": [], @@ -426697,7 +426197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 12153474, "featuredRunMedia": null, "reactionVideos": [], @@ -426717,7 +426217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12154714, "featuredRunMedia": null, "reactionVideos": [], @@ -426737,7 +426237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 12155644, "featuredRunMedia": null, "reactionVideos": [], @@ -426757,7 +426257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12155874, "featuredRunMedia": null, "reactionVideos": [], @@ -426777,7 +426277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 12156529, "featuredRunMedia": null, "reactionVideos": [], @@ -426797,7 +426297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12158003, "featuredRunMedia": null, "reactionVideos": [], @@ -426817,7 +426317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 12159199, "featuredRunMedia": null, "reactionVideos": [], @@ -426837,7 +426337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 12160087, "featuredRunMedia": null, "reactionVideos": [], @@ -426857,7 +426357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 12160337, "featuredRunMedia": null, "reactionVideos": [], @@ -426877,7 +426377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 12160807, "featuredRunMedia": null, "reactionVideos": [], @@ -426897,7 +426397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 12161342, "featuredRunMedia": null, "reactionVideos": [], @@ -426917,7 +426417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12161414, "featuredRunMedia": null, "reactionVideos": [], @@ -426937,7 +426437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 12161470, "featuredRunMedia": null, "reactionVideos": [], @@ -426957,7 +426457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 12162067, "featuredRunMedia": null, "reactionVideos": [], @@ -426977,7 +426477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 12162731, "featuredRunMedia": null, "reactionVideos": [], @@ -426997,7 +426497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12164598, "featuredRunMedia": null, "reactionVideos": [], @@ -427017,7 +426517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 12164640, "featuredRunMedia": null, "reactionVideos": [], @@ -427037,7 +426537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 12165072, "featuredRunMedia": null, "reactionVideos": [], @@ -427061,7 +426561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 12166409, "featuredRunMedia": null, "reactionVideos": [], @@ -427081,7 +426581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 12168153, "featuredRunMedia": null, "reactionVideos": [], @@ -427101,7 +426601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 12169502, "featuredRunMedia": null, "reactionVideos": [], @@ -427121,7 +426621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12169992, "featuredRunMedia": null, "reactionVideos": [], @@ -427141,7 +426641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "144201", "time": 12171225, "featuredRunMedia": null, "reactionVideos": [], @@ -427161,7 +426661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 12172370, "featuredRunMedia": null, "reactionVideos": [], @@ -427181,7 +426681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 12172962, "featuredRunMedia": null, "reactionVideos": [], @@ -427201,7 +426701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 12174018, "featuredRunMedia": null, "reactionVideos": [], @@ -427221,7 +426721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 12175523, "featuredRunMedia": null, "reactionVideos": [], @@ -427241,7 +426741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12175598, "featuredRunMedia": null, "reactionVideos": [], @@ -427261,7 +426761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "144196", "time": 12177506, "featuredRunMedia": null, "reactionVideos": [], @@ -427281,7 +426781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 12178430, "featuredRunMedia": null, "reactionVideos": [], @@ -427301,7 +426801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 12180386, "featuredRunMedia": null, "reactionVideos": [], @@ -427321,7 +426821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 12180784, "featuredRunMedia": null, "reactionVideos": [], @@ -427341,7 +426841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12181059, "featuredRunMedia": null, "reactionVideos": [], @@ -427361,7 +426861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 12182564, "featuredRunMedia": null, "reactionVideos": [], @@ -427381,7 +426881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 12183043, "featuredRunMedia": null, "reactionVideos": [], @@ -427401,7 +426901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 12184152, "featuredRunMedia": null, "reactionVideos": [], @@ -427421,7 +426921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 12185466, "featuredRunMedia": null, "reactionVideos": [], @@ -427441,7 +426941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 12186799, "featuredRunMedia": null, "reactionVideos": [], @@ -427461,7 +426961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 12187047, "featuredRunMedia": null, "reactionVideos": [], @@ -427481,7 +426981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 12187834, "featuredRunMedia": null, "reactionVideos": [], @@ -427501,7 +427001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 351, + "teamId": "144421", "time": 12188119, "featuredRunMedia": null, "reactionVideos": [], @@ -427521,7 +427021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 12189181, "featuredRunMedia": null, "reactionVideos": [], @@ -427541,7 +427041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12189822, "featuredRunMedia": null, "reactionVideos": [], @@ -427561,7 +427061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 12190191, "featuredRunMedia": null, "reactionVideos": [], @@ -427581,7 +427081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 12190624, "featuredRunMedia": null, "reactionVideos": [], @@ -427601,7 +427101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12190836, "featuredRunMedia": null, "reactionVideos": [], @@ -427621,7 +427121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 12191110, "featuredRunMedia": null, "reactionVideos": [], @@ -427641,7 +427141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "144080", "time": 12191352, "featuredRunMedia": null, "reactionVideos": [], @@ -427661,7 +427161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 12197135, "featuredRunMedia": null, "reactionVideos": [], @@ -427681,7 +427181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12198825, "featuredRunMedia": null, "reactionVideos": [], @@ -427701,7 +427201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12199311, "featuredRunMedia": null, "reactionVideos": [], @@ -427721,7 +427221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 12200532, "featuredRunMedia": null, "reactionVideos": [], @@ -427741,7 +427241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 12200849, "featuredRunMedia": null, "reactionVideos": [], @@ -427761,7 +427261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 12201842, "featuredRunMedia": null, "reactionVideos": [], @@ -427781,7 +427281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 12201889, "featuredRunMedia": null, "reactionVideos": [], @@ -427801,7 +427301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 12201976, "featuredRunMedia": null, "reactionVideos": [], @@ -427821,7 +427321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12202207, "featuredRunMedia": null, "reactionVideos": [], @@ -427841,7 +427341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 435, + "teamId": "144505", "time": 12202256, "featuredRunMedia": null, "reactionVideos": [], @@ -427861,7 +427361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 12202415, "featuredRunMedia": null, "reactionVideos": [], @@ -427881,7 +427381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12204250, "featuredRunMedia": null, "reactionVideos": [], @@ -427901,7 +427401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 12205532, "featuredRunMedia": null, "reactionVideos": [], @@ -427921,7 +427421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 12207023, "featuredRunMedia": null, "reactionVideos": [], @@ -427941,7 +427441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 12207069, "featuredRunMedia": null, "reactionVideos": [], @@ -427961,7 +427461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 427, + "teamId": "144497", "time": 12209625, "featuredRunMedia": null, "reactionVideos": [], @@ -427981,7 +427481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 12210300, "featuredRunMedia": null, "reactionVideos": [], @@ -428001,7 +427501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12210955, "featuredRunMedia": null, "reactionVideos": [], @@ -428021,7 +427521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12212171, "featuredRunMedia": null, "reactionVideos": [], @@ -428041,7 +427541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12212256, "featuredRunMedia": null, "reactionVideos": [], @@ -428061,7 +427561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12213585, "featuredRunMedia": null, "reactionVideos": [], @@ -428085,7 +427585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12214001, "featuredRunMedia": null, "reactionVideos": [], @@ -428105,7 +427605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12215410, "featuredRunMedia": null, "reactionVideos": [], @@ -428125,7 +427625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 12216368, "featuredRunMedia": null, "reactionVideos": [], @@ -428145,7 +427645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12218090, "featuredRunMedia": null, "reactionVideos": [], @@ -428165,7 +427665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 12218257, "featuredRunMedia": null, "reactionVideos": [], @@ -428185,7 +427685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12218862, "featuredRunMedia": null, "reactionVideos": [], @@ -428205,7 +427705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 12221127, "featuredRunMedia": null, "reactionVideos": [], @@ -428225,7 +427725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 12222591, "featuredRunMedia": null, "reactionVideos": [], @@ -428245,7 +427745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12223472, "featuredRunMedia": null, "reactionVideos": [], @@ -428265,7 +427765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12224160, "featuredRunMedia": null, "reactionVideos": [], @@ -428285,7 +427785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 12224783, "featuredRunMedia": null, "reactionVideos": [], @@ -428305,7 +427805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12225850, "featuredRunMedia": null, "reactionVideos": [], @@ -428325,7 +427825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 399, + "teamId": "144469", "time": 12226130, "featuredRunMedia": null, "reactionVideos": [], @@ -428345,7 +427845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12228074, "featuredRunMedia": null, "reactionVideos": [], @@ -428365,7 +427865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12228190, "featuredRunMedia": null, "reactionVideos": [], @@ -428385,7 +427885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 12229281, "featuredRunMedia": null, "reactionVideos": [], @@ -428405,7 +427905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 12230399, "featuredRunMedia": null, "reactionVideos": [], @@ -428425,7 +427925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12230947, "featuredRunMedia": null, "reactionVideos": [], @@ -428445,7 +427945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 12232109, "featuredRunMedia": null, "reactionVideos": [], @@ -428465,7 +427965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "144345", "time": 12232716, "featuredRunMedia": null, "reactionVideos": [], @@ -428485,7 +427985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 12233073, "featuredRunMedia": null, "reactionVideos": [], @@ -428505,7 +428005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 12233679, "featuredRunMedia": null, "reactionVideos": [], @@ -428525,7 +428025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 12234670, "featuredRunMedia": null, "reactionVideos": [], @@ -428545,7 +428045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12234807, "featuredRunMedia": null, "reactionVideos": [], @@ -428565,7 +428065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 12235601, "featuredRunMedia": null, "reactionVideos": [], @@ -428585,7 +428085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12236203, "featuredRunMedia": null, "reactionVideos": [], @@ -428609,7 +428109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 12237226, "featuredRunMedia": null, "reactionVideos": [], @@ -428629,7 +428129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 12237879, "featuredRunMedia": null, "reactionVideos": [], @@ -428649,7 +428149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 12238753, "featuredRunMedia": null, "reactionVideos": [], @@ -428669,7 +428169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12239075, "featuredRunMedia": null, "reactionVideos": [], @@ -428689,7 +428189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 12242504, "featuredRunMedia": null, "reactionVideos": [], @@ -428709,7 +428209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 12253799, "featuredRunMedia": null, "reactionVideos": [], @@ -428729,7 +428229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 12254003, "featuredRunMedia": null, "reactionVideos": [], @@ -428749,7 +428249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "144226", "time": 12254849, "featuredRunMedia": null, "reactionVideos": [], @@ -428769,7 +428269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 12258424, "featuredRunMedia": null, "reactionVideos": [], @@ -428789,7 +428289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 12260471, "featuredRunMedia": null, "reactionVideos": [], @@ -428809,7 +428309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12260526, "featuredRunMedia": null, "reactionVideos": [], @@ -428829,7 +428329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 12261192, "featuredRunMedia": null, "reactionVideos": [], @@ -428849,7 +428349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "144288", "time": 12261327, "featuredRunMedia": null, "reactionVideos": [], @@ -428869,7 +428369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "144205", "time": 12262332, "featuredRunMedia": null, "reactionVideos": [], @@ -428889,7 +428389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12266625, "featuredRunMedia": null, "reactionVideos": [], @@ -428909,7 +428409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 12272045, "featuredRunMedia": null, "reactionVideos": [], @@ -428929,7 +428429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12272667, "featuredRunMedia": null, "reactionVideos": [], @@ -428949,7 +428449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "144079", "time": 12272759, "featuredRunMedia": null, "reactionVideos": [], @@ -428969,7 +428469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12273076, "featuredRunMedia": null, "reactionVideos": [], @@ -428989,7 +428489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12274015, "featuredRunMedia": null, "reactionVideos": [], @@ -429009,7 +428509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 12274159, "featuredRunMedia": null, "reactionVideos": [], @@ -429029,7 +428529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 216, + "teamId": "144286", "time": 12274609, "featuredRunMedia": null, "reactionVideos": [], @@ -429049,7 +428549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 12275668, "featuredRunMedia": null, "reactionVideos": [], @@ -429069,7 +428569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 12276155, "featuredRunMedia": null, "reactionVideos": [], @@ -429089,7 +428589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12276274, "featuredRunMedia": null, "reactionVideos": [], @@ -429109,7 +428609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12277465, "featuredRunMedia": null, "reactionVideos": [], @@ -429129,7 +428629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 12278753, "featuredRunMedia": null, "reactionVideos": [], @@ -429149,7 +428649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 12279387, "featuredRunMedia": null, "reactionVideos": [], @@ -429169,7 +428669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12279920, "featuredRunMedia": null, "reactionVideos": [], @@ -429189,7 +428689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 12280378, "featuredRunMedia": null, "reactionVideos": [], @@ -429209,7 +428709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 12280780, "featuredRunMedia": null, "reactionVideos": [], @@ -429229,7 +428729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "144312", "time": 12281555, "featuredRunMedia": null, "reactionVideos": [], @@ -429249,7 +428749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12281678, "featuredRunMedia": null, "reactionVideos": [], @@ -429269,7 +428769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12286460, "featuredRunMedia": null, "reactionVideos": [], @@ -429289,7 +428789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 438, + "teamId": "144508", "time": 12286573, "featuredRunMedia": null, "reactionVideos": [], @@ -429309,7 +428809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 12286651, "featuredRunMedia": null, "reactionVideos": [], @@ -429329,7 +428829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 368, + "teamId": "144438", "time": 12286761, "featuredRunMedia": null, "reactionVideos": [], @@ -429353,7 +428853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 12287301, "featuredRunMedia": null, "reactionVideos": [], @@ -429373,7 +428873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 435, + "teamId": "144505", "time": 12287737, "featuredRunMedia": null, "reactionVideos": [], @@ -429393,7 +428893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 12287901, "featuredRunMedia": null, "reactionVideos": [], @@ -429417,7 +428917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 12288996, "featuredRunMedia": null, "reactionVideos": [], @@ -429441,7 +428941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 12289316, "featuredRunMedia": null, "reactionVideos": [], @@ -429461,7 +428961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 12290956, "featuredRunMedia": null, "reactionVideos": [], @@ -429481,7 +428981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 12291097, "featuredRunMedia": null, "reactionVideos": [], @@ -429505,7 +429005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 12291222, "featuredRunMedia": null, "reactionVideos": [], @@ -429525,7 +429025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "144381", "time": 12291451, "featuredRunMedia": null, "reactionVideos": [], @@ -429545,7 +429045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 12291559, "featuredRunMedia": null, "reactionVideos": [], @@ -429569,7 +429069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 12291626, "featuredRunMedia": null, "reactionVideos": [], @@ -429589,7 +429089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 355, + "teamId": "144425", "time": 12294410, "featuredRunMedia": null, "reactionVideos": [], @@ -429609,7 +429109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12295078, "featuredRunMedia": null, "reactionVideos": [], @@ -429629,7 +429129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12295173, "featuredRunMedia": null, "reactionVideos": [], @@ -429649,7 +429149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 12296296, "featuredRunMedia": null, "reactionVideos": [], @@ -429669,7 +429169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12296565, "featuredRunMedia": null, "reactionVideos": [], @@ -429689,7 +429189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12297013, "featuredRunMedia": null, "reactionVideos": [], @@ -429709,7 +429209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 12297725, "featuredRunMedia": null, "reactionVideos": [], @@ -429729,7 +429229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 12298192, "featuredRunMedia": null, "reactionVideos": [], @@ -429749,7 +429249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 12298661, "featuredRunMedia": null, "reactionVideos": [], @@ -429769,7 +429269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 12299961, "featuredRunMedia": null, "reactionVideos": [], @@ -429789,7 +429289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 12300556, "featuredRunMedia": null, "reactionVideos": [], @@ -429809,7 +429309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12300813, "featuredRunMedia": null, "reactionVideos": [], @@ -429829,7 +429329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 12302036, "featuredRunMedia": null, "reactionVideos": [], @@ -429849,7 +429349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12305054, "featuredRunMedia": null, "reactionVideos": [], @@ -429869,7 +429369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 12306765, "featuredRunMedia": null, "reactionVideos": [], @@ -429889,7 +429389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "144196", "time": 12307243, "featuredRunMedia": null, "reactionVideos": [], @@ -429909,7 +429409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 12309025, "featuredRunMedia": null, "reactionVideos": [], @@ -429929,7 +429429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12311820, "featuredRunMedia": null, "reactionVideos": [], @@ -429949,7 +429449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "144137", "time": 12312233, "featuredRunMedia": null, "reactionVideos": [], @@ -429973,7 +429473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 12312514, "featuredRunMedia": null, "reactionVideos": [], @@ -429993,7 +429493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 12312662, "featuredRunMedia": null, "reactionVideos": [], @@ -430013,7 +429513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "144177", "time": 12314625, "featuredRunMedia": null, "reactionVideos": [], @@ -430033,7 +429533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 12315769, "featuredRunMedia": null, "reactionVideos": [], @@ -430053,7 +429553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 12317511, "featuredRunMedia": null, "reactionVideos": [], @@ -430073,7 +429573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12318749, "featuredRunMedia": null, "reactionVideos": [], @@ -430093,7 +429593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12318798, "featuredRunMedia": null, "reactionVideos": [], @@ -430113,7 +429613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 12320576, "featuredRunMedia": null, "reactionVideos": [], @@ -430133,7 +429633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 12320626, "featuredRunMedia": null, "reactionVideos": [], @@ -430153,7 +429653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 12321106, "featuredRunMedia": null, "reactionVideos": [], @@ -430173,7 +429673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 12321882, "featuredRunMedia": null, "reactionVideos": [], @@ -430193,7 +429693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12323128, "featuredRunMedia": null, "reactionVideos": [], @@ -430213,7 +429713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 12324184, "featuredRunMedia": null, "reactionVideos": [], @@ -430233,7 +429733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 12324404, "featuredRunMedia": null, "reactionVideos": [], @@ -430253,7 +429753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12326163, "featuredRunMedia": null, "reactionVideos": [], @@ -430273,7 +429773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12329919, "featuredRunMedia": null, "reactionVideos": [], @@ -430293,7 +429793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12332271, "featuredRunMedia": null, "reactionVideos": [], @@ -430313,7 +429813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12332445, "featuredRunMedia": null, "reactionVideos": [], @@ -430333,7 +429833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 12333491, "featuredRunMedia": null, "reactionVideos": [], @@ -430353,7 +429853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 12333620, "featuredRunMedia": null, "reactionVideos": [], @@ -430373,7 +429873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 12334097, "featuredRunMedia": null, "reactionVideos": [], @@ -430393,7 +429893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 12337293, "featuredRunMedia": null, "reactionVideos": [], @@ -430413,7 +429913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12337372, "featuredRunMedia": null, "reactionVideos": [], @@ -430433,7 +429933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12337486, "featuredRunMedia": null, "reactionVideos": [], @@ -430453,7 +429953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 12337641, "featuredRunMedia": null, "reactionVideos": [], @@ -430473,7 +429973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 12339190, "featuredRunMedia": null, "reactionVideos": [], @@ -430493,7 +429993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 12339328, "featuredRunMedia": null, "reactionVideos": [], @@ -430513,7 +430013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 12342156, "featuredRunMedia": null, "reactionVideos": [], @@ -430533,7 +430033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12344162, "featuredRunMedia": null, "reactionVideos": [], @@ -430553,7 +430053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 12344511, "featuredRunMedia": null, "reactionVideos": [], @@ -430573,7 +430073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 435, + "teamId": "144505", "time": 12347925, "featuredRunMedia": null, "reactionVideos": [], @@ -430593,7 +430093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 12347983, "featuredRunMedia": null, "reactionVideos": [], @@ -430613,7 +430113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "144079", "time": 12348828, "featuredRunMedia": null, "reactionVideos": [], @@ -430633,7 +430133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 12349085, "featuredRunMedia": null, "reactionVideos": [], @@ -430653,7 +430153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 12349159, "featuredRunMedia": null, "reactionVideos": [], @@ -430673,7 +430173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12349986, "featuredRunMedia": null, "reactionVideos": [], @@ -430693,7 +430193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 12350780, "featuredRunMedia": null, "reactionVideos": [], @@ -430713,7 +430213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 12353063, "featuredRunMedia": null, "reactionVideos": [], @@ -430733,7 +430233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 12353114, "featuredRunMedia": null, "reactionVideos": [], @@ -430753,7 +430253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 12354978, "featuredRunMedia": null, "reactionVideos": [], @@ -430773,7 +430273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12355642, "featuredRunMedia": null, "reactionVideos": [], @@ -430793,7 +430293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12356816, "featuredRunMedia": null, "reactionVideos": [], @@ -430813,7 +430313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 12358002, "featuredRunMedia": null, "reactionVideos": [], @@ -430833,7 +430333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 12358469, "featuredRunMedia": null, "reactionVideos": [], @@ -430853,7 +430353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12360198, "featuredRunMedia": null, "reactionVideos": [], @@ -430873,7 +430373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 12360845, "featuredRunMedia": null, "reactionVideos": [], @@ -430893,7 +430393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12363198, "featuredRunMedia": null, "reactionVideos": [], @@ -430913,7 +430413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "144080", "time": 12364011, "featuredRunMedia": null, "reactionVideos": [], @@ -430933,7 +430433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 318, + "teamId": "144388", "time": 12364713, "featuredRunMedia": null, "reactionVideos": [], @@ -430953,7 +430453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 12366403, "featuredRunMedia": null, "reactionVideos": [], @@ -430977,7 +430477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 12367194, "featuredRunMedia": null, "reactionVideos": [], @@ -430997,7 +430497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 12367882, "featuredRunMedia": null, "reactionVideos": [], @@ -431017,7 +430517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 12369824, "featuredRunMedia": null, "reactionVideos": [], @@ -431037,7 +430537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12370169, "featuredRunMedia": null, "reactionVideos": [], @@ -431057,7 +430557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12372997, "featuredRunMedia": null, "reactionVideos": [], @@ -431077,7 +430577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 12373458, "featuredRunMedia": null, "reactionVideos": [], @@ -431097,7 +430597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 400, + "teamId": "144470", "time": 12374347, "featuredRunMedia": null, "reactionVideos": [], @@ -431117,7 +430617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12375254, "featuredRunMedia": null, "reactionVideos": [], @@ -431137,7 +430637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12375296, "featuredRunMedia": null, "reactionVideos": [], @@ -431161,7 +430661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12376415, "featuredRunMedia": null, "reactionVideos": [], @@ -431181,7 +430681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 12377984, "featuredRunMedia": null, "reactionVideos": [], @@ -431201,7 +430701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 12381495, "featuredRunMedia": null, "reactionVideos": [], @@ -431221,7 +430721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 378, + "teamId": "144448", "time": 12381609, "featuredRunMedia": null, "reactionVideos": [], @@ -431241,7 +430741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 12382495, "featuredRunMedia": null, "reactionVideos": [], @@ -431261,7 +430761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 12384178, "featuredRunMedia": null, "reactionVideos": [], @@ -431281,7 +430781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 12386218, "featuredRunMedia": null, "reactionVideos": [], @@ -431301,7 +430801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12387869, "featuredRunMedia": null, "reactionVideos": [], @@ -431321,7 +430821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 12389404, "featuredRunMedia": null, "reactionVideos": [], @@ -431341,7 +430841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12391090, "featuredRunMedia": null, "reactionVideos": [], @@ -431361,7 +430861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12391805, "featuredRunMedia": null, "reactionVideos": [], @@ -431381,7 +430881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 12391943, "featuredRunMedia": null, "reactionVideos": [], @@ -431401,7 +430901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 12392127, "featuredRunMedia": null, "reactionVideos": [], @@ -431421,7 +430921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 12392864, "featuredRunMedia": null, "reactionVideos": [], @@ -431441,7 +430941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 12392900, "featuredRunMedia": null, "reactionVideos": [], @@ -431461,7 +430961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 12392978, "featuredRunMedia": null, "reactionVideos": [], @@ -431481,7 +430981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 397, + "teamId": "144467", "time": 12393204, "featuredRunMedia": null, "reactionVideos": [], @@ -431501,7 +431001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 12393435, "featuredRunMedia": null, "reactionVideos": [], @@ -431521,7 +431021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 12395404, "featuredRunMedia": null, "reactionVideos": [], @@ -431541,7 +431041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 12396221, "featuredRunMedia": null, "reactionVideos": [], @@ -431561,7 +431061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "144329", "time": 12396284, "featuredRunMedia": null, "reactionVideos": [], @@ -431581,7 +431081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "144204", "time": 12397722, "featuredRunMedia": null, "reactionVideos": [], @@ -431601,7 +431101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12401646, "featuredRunMedia": null, "reactionVideos": [], @@ -431621,7 +431121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 12401758, "featuredRunMedia": null, "reactionVideos": [], @@ -431641,7 +431141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 12402317, "featuredRunMedia": null, "reactionVideos": [], @@ -431661,7 +431161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 12403617, "featuredRunMedia": null, "reactionVideos": [], @@ -431681,7 +431181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 12403732, "featuredRunMedia": null, "reactionVideos": [], @@ -431701,7 +431201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "144363", "time": 12404735, "featuredRunMedia": null, "reactionVideos": [], @@ -431721,7 +431221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 12405170, "featuredRunMedia": null, "reactionVideos": [], @@ -431741,7 +431241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12405416, "featuredRunMedia": null, "reactionVideos": [], @@ -431761,7 +431261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12405912, "featuredRunMedia": null, "reactionVideos": [], @@ -431781,7 +431281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 12406383, "featuredRunMedia": null, "reactionVideos": [], @@ -431801,7 +431301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 231, + "teamId": "144301", "time": 12406672, "featuredRunMedia": null, "reactionVideos": [], @@ -431821,7 +431321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 329, + "teamId": "144399", "time": 12406889, "featuredRunMedia": null, "reactionVideos": [], @@ -431841,7 +431341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12407312, "featuredRunMedia": null, "reactionVideos": [], @@ -431861,7 +431361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12413021, "featuredRunMedia": null, "reactionVideos": [], @@ -431881,7 +431381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 12413851, "featuredRunMedia": null, "reactionVideos": [], @@ -431901,7 +431401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 12414275, "featuredRunMedia": null, "reactionVideos": [], @@ -431921,7 +431421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12415149, "featuredRunMedia": null, "reactionVideos": [], @@ -431941,7 +431441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 12417175, "featuredRunMedia": null, "reactionVideos": [], @@ -431961,7 +431461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 12417329, "featuredRunMedia": null, "reactionVideos": [], @@ -431985,7 +431485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 12418107, "featuredRunMedia": null, "reactionVideos": [], @@ -432005,7 +431505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 12418561, "featuredRunMedia": null, "reactionVideos": [], @@ -432025,7 +431525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 12422195, "featuredRunMedia": null, "reactionVideos": [], @@ -432045,7 +431545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12427295, "featuredRunMedia": null, "reactionVideos": [], @@ -432065,7 +431565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "144352", "time": 12427914, "featuredRunMedia": null, "reactionVideos": [], @@ -432085,7 +431585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 12428069, "featuredRunMedia": null, "reactionVideos": [], @@ -432105,7 +431605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 12428306, "featuredRunMedia": null, "reactionVideos": [], @@ -432125,7 +431625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 417, + "teamId": "144487", "time": 12428853, "featuredRunMedia": null, "reactionVideos": [], @@ -432145,7 +431645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 12431815, "featuredRunMedia": null, "reactionVideos": [], @@ -432165,7 +431665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 12432762, "featuredRunMedia": null, "reactionVideos": [], @@ -432185,7 +431685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 419, + "teamId": "144489", "time": 12433171, "featuredRunMedia": null, "reactionVideos": [], @@ -432205,7 +431705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 12434057, "featuredRunMedia": null, "reactionVideos": [], @@ -432225,7 +431725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 12434549, "featuredRunMedia": null, "reactionVideos": [], @@ -432245,7 +431745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 12435640, "featuredRunMedia": null, "reactionVideos": [], @@ -432265,7 +431765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "144107", "time": 12439129, "featuredRunMedia": null, "reactionVideos": [], @@ -432285,7 +431785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12440368, "featuredRunMedia": null, "reactionVideos": [], @@ -432305,7 +431805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 12440465, "featuredRunMedia": null, "reactionVideos": [], @@ -432325,7 +431825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 12441596, "featuredRunMedia": null, "reactionVideos": [], @@ -432345,7 +431845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 12441906, "featuredRunMedia": null, "reactionVideos": [], @@ -432365,7 +431865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "144368", "time": 12442020, "featuredRunMedia": null, "reactionVideos": [], @@ -432385,7 +431885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 12442167, "featuredRunMedia": null, "reactionVideos": [], @@ -432405,7 +431905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 12442766, "featuredRunMedia": null, "reactionVideos": [], @@ -432425,7 +431925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 12444850, "featuredRunMedia": null, "reactionVideos": [], @@ -432445,7 +431945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 12447802, "featuredRunMedia": null, "reactionVideos": [], @@ -432465,7 +431965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 12448939, "featuredRunMedia": null, "reactionVideos": [], @@ -432485,7 +431985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 12450229, "featuredRunMedia": null, "reactionVideos": [], @@ -432505,7 +432005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12450440, "featuredRunMedia": null, "reactionVideos": [], @@ -432525,7 +432025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 12450531, "featuredRunMedia": null, "reactionVideos": [], @@ -432545,7 +432045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 12451939, "featuredRunMedia": null, "reactionVideos": [], @@ -432565,7 +432065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 12451980, "featuredRunMedia": null, "reactionVideos": [], @@ -432585,7 +432085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 12452298, "featuredRunMedia": null, "reactionVideos": [], @@ -432605,7 +432105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "144270", "time": 12452490, "featuredRunMedia": null, "reactionVideos": [], @@ -432625,7 +432125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 12452977, "featuredRunMedia": null, "reactionVideos": [], @@ -432645,7 +432145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 12453099, "featuredRunMedia": null, "reactionVideos": [], @@ -432665,7 +432165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 12454795, "featuredRunMedia": null, "reactionVideos": [], @@ -432685,7 +432185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12455577, "featuredRunMedia": null, "reactionVideos": [], @@ -432705,7 +432205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12455777, "featuredRunMedia": null, "reactionVideos": [], @@ -432725,7 +432225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 446, + "teamId": "144516", "time": 12456520, "featuredRunMedia": null, "reactionVideos": [], @@ -432745,7 +432245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12458334, "featuredRunMedia": null, "reactionVideos": [], @@ -432765,7 +432265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 12458466, "featuredRunMedia": null, "reactionVideos": [], @@ -432785,7 +432285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12459785, "featuredRunMedia": null, "reactionVideos": [], @@ -432805,7 +432305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12460723, "featuredRunMedia": null, "reactionVideos": [], @@ -432825,7 +432325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 12461569, "featuredRunMedia": null, "reactionVideos": [], @@ -432845,7 +432345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12461759, "featuredRunMedia": null, "reactionVideos": [], @@ -432865,7 +432365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12462855, "featuredRunMedia": null, "reactionVideos": [], @@ -432889,7 +432389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12466539, "featuredRunMedia": null, "reactionVideos": [], @@ -432909,7 +432409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 12467631, "featuredRunMedia": null, "reactionVideos": [], @@ -432929,7 +432429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 12468200, "featuredRunMedia": null, "reactionVideos": [], @@ -432949,7 +432449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 12468892, "featuredRunMedia": null, "reactionVideos": [], @@ -432969,7 +432469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 12469156, "featuredRunMedia": null, "reactionVideos": [], @@ -432989,7 +432489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 12470161, "featuredRunMedia": null, "reactionVideos": [], @@ -433013,7 +432513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 12471413, "featuredRunMedia": null, "reactionVideos": [], @@ -433033,7 +432533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 12472137, "featuredRunMedia": null, "reactionVideos": [], @@ -433053,7 +432553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 12472696, "featuredRunMedia": null, "reactionVideos": [], @@ -433073,7 +432573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12472752, "featuredRunMedia": null, "reactionVideos": [], @@ -433093,7 +432593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12473348, "featuredRunMedia": null, "reactionVideos": [], @@ -433113,7 +432613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12475470, "featuredRunMedia": null, "reactionVideos": [], @@ -433133,7 +432633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "144248", "time": 12476458, "featuredRunMedia": null, "reactionVideos": [], @@ -433153,7 +432653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12477421, "featuredRunMedia": null, "reactionVideos": [], @@ -433173,7 +432673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 12477633, "featuredRunMedia": null, "reactionVideos": [], @@ -433193,7 +432693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12477913, "featuredRunMedia": null, "reactionVideos": [], @@ -433213,7 +432713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 12481086, "featuredRunMedia": null, "reactionVideos": [], @@ -433233,7 +432733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12481500, "featuredRunMedia": null, "reactionVideos": [], @@ -433253,7 +432753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "144307", "time": 12481923, "featuredRunMedia": null, "reactionVideos": [], @@ -433273,7 +432773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 12483178, "featuredRunMedia": null, "reactionVideos": [], @@ -433293,7 +432793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 12487249, "featuredRunMedia": null, "reactionVideos": [], @@ -433313,7 +432813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12487889, "featuredRunMedia": null, "reactionVideos": [], @@ -433333,7 +432833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 12488255, "featuredRunMedia": null, "reactionVideos": [], @@ -433353,7 +432853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 12488716, "featuredRunMedia": null, "reactionVideos": [], @@ -433373,7 +432873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 12489127, "featuredRunMedia": null, "reactionVideos": [], @@ -433393,7 +432893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12489890, "featuredRunMedia": null, "reactionVideos": [], @@ -433413,7 +432913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 12490521, "featuredRunMedia": null, "reactionVideos": [], @@ -433433,7 +432933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 12490595, "featuredRunMedia": null, "reactionVideos": [], @@ -433457,7 +432957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 12491685, "featuredRunMedia": null, "reactionVideos": [], @@ -433477,7 +432977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 12493737, "featuredRunMedia": null, "reactionVideos": [], @@ -433497,7 +432997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 12498247, "featuredRunMedia": null, "reactionVideos": [], @@ -433517,7 +433017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12498840, "featuredRunMedia": null, "reactionVideos": [], @@ -433537,7 +433037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 12499502, "featuredRunMedia": null, "reactionVideos": [], @@ -433557,7 +433057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 12500862, "featuredRunMedia": null, "reactionVideos": [], @@ -433577,7 +433077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 12500962, "featuredRunMedia": null, "reactionVideos": [], @@ -433601,7 +433101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 12501209, "featuredRunMedia": null, "reactionVideos": [], @@ -433621,7 +433121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 12502587, "featuredRunMedia": null, "reactionVideos": [], @@ -433641,7 +433141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 12505971, "featuredRunMedia": null, "reactionVideos": [], @@ -433661,7 +433161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 417, + "teamId": "144487", "time": 12506028, "featuredRunMedia": null, "reactionVideos": [], @@ -433681,7 +433181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 12508316, "featuredRunMedia": null, "reactionVideos": [], @@ -433701,7 +433201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 12508622, "featuredRunMedia": null, "reactionVideos": [], @@ -433721,7 +433221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 12508682, "featuredRunMedia": null, "reactionVideos": [], @@ -433741,7 +433241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 12508747, "featuredRunMedia": null, "reactionVideos": [], @@ -433761,7 +433261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 12509841, "featuredRunMedia": null, "reactionVideos": [], @@ -433781,7 +433281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12510014, "featuredRunMedia": null, "reactionVideos": [], @@ -433801,7 +433301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 414, + "teamId": "144484", "time": 12510245, "featuredRunMedia": null, "reactionVideos": [], @@ -433821,7 +433321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 12510736, "featuredRunMedia": null, "reactionVideos": [], @@ -433841,7 +433341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 12510902, "featuredRunMedia": null, "reactionVideos": [], @@ -433861,7 +433361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 12511899, "featuredRunMedia": null, "reactionVideos": [], @@ -433881,7 +433381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 12513671, "featuredRunMedia": null, "reactionVideos": [], @@ -433901,7 +433401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 12513956, "featuredRunMedia": null, "reactionVideos": [], @@ -433921,7 +433421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 12514007, "featuredRunMedia": null, "reactionVideos": [], @@ -433941,7 +433441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "144374", "time": 12514400, "featuredRunMedia": null, "reactionVideos": [], @@ -433961,7 +433461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 12515461, "featuredRunMedia": null, "reactionVideos": [], @@ -433981,7 +433481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12515610, "featuredRunMedia": null, "reactionVideos": [], @@ -434001,7 +433501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 48, + "teamId": "144118", "time": 12516775, "featuredRunMedia": null, "reactionVideos": [], @@ -434021,7 +433521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12518319, "featuredRunMedia": null, "reactionVideos": [], @@ -434041,7 +433541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12518423, "featuredRunMedia": null, "reactionVideos": [], @@ -434061,7 +433561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 12518589, "featuredRunMedia": null, "reactionVideos": [], @@ -434081,7 +433581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 12518994, "featuredRunMedia": null, "reactionVideos": [], @@ -434101,7 +433601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12519067, "featuredRunMedia": null, "reactionVideos": [], @@ -434121,7 +433621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 12520697, "featuredRunMedia": null, "reactionVideos": [], @@ -434141,7 +433641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12520966, "featuredRunMedia": null, "reactionVideos": [], @@ -434161,7 +433661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 12521695, "featuredRunMedia": null, "reactionVideos": [], @@ -434181,7 +433681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 12521748, "featuredRunMedia": null, "reactionVideos": [], @@ -434201,7 +433701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12522213, "featuredRunMedia": null, "reactionVideos": [], @@ -434221,7 +433721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12522363, "featuredRunMedia": null, "reactionVideos": [], @@ -434241,7 +433741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12522581, "featuredRunMedia": null, "reactionVideos": [], @@ -434261,7 +433761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12522641, "featuredRunMedia": null, "reactionVideos": [], @@ -434281,7 +433781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 12523665, "featuredRunMedia": null, "reactionVideos": [], @@ -434301,7 +433801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "144136", "time": 12525982, "featuredRunMedia": null, "reactionVideos": [], @@ -434321,7 +433821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12529395, "featuredRunMedia": null, "reactionVideos": [], @@ -434341,7 +433841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 12529457, "featuredRunMedia": null, "reactionVideos": [], @@ -434361,7 +433861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 12529985, "featuredRunMedia": null, "reactionVideos": [], @@ -434381,7 +433881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12530265, "featuredRunMedia": null, "reactionVideos": [], @@ -434401,7 +433901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 12531275, "featuredRunMedia": null, "reactionVideos": [], @@ -434421,7 +433921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 12534452, "featuredRunMedia": null, "reactionVideos": [], @@ -434441,7 +433941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 12535630, "featuredRunMedia": null, "reactionVideos": [], @@ -434461,7 +433961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 12536960, "featuredRunMedia": null, "reactionVideos": [], @@ -434481,7 +433981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "144386", "time": 12537405, "featuredRunMedia": null, "reactionVideos": [], @@ -434501,7 +434001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 12537850, "featuredRunMedia": null, "reactionVideos": [], @@ -434521,7 +434021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 12537905, "featuredRunMedia": null, "reactionVideos": [], @@ -434541,7 +434041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12538039, "featuredRunMedia": null, "reactionVideos": [], @@ -434561,7 +434061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 430, + "teamId": "144500", "time": 12539186, "featuredRunMedia": null, "reactionVideos": [], @@ -434581,7 +434081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 12539239, "featuredRunMedia": null, "reactionVideos": [], @@ -434601,7 +434101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 12539587, "featuredRunMedia": null, "reactionVideos": [], @@ -434621,7 +434121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 12540274, "featuredRunMedia": null, "reactionVideos": [], @@ -434645,7 +434145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 12542069, "featuredRunMedia": null, "reactionVideos": [], @@ -434665,7 +434165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 12542687, "featuredRunMedia": null, "reactionVideos": [], @@ -434685,7 +434185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12543594, "featuredRunMedia": null, "reactionVideos": [], @@ -434705,7 +434205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 12545130, "featuredRunMedia": null, "reactionVideos": [], @@ -434725,7 +434225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 12545387, "featuredRunMedia": null, "reactionVideos": [], @@ -434749,7 +434249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 12545520, "featuredRunMedia": null, "reactionVideos": [], @@ -434769,7 +434269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 12547047, "featuredRunMedia": null, "reactionVideos": [], @@ -434789,7 +434289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 12547313, "featuredRunMedia": null, "reactionVideos": [], @@ -434809,7 +434309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 12547657, "featuredRunMedia": null, "reactionVideos": [], @@ -434829,7 +434329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12548231, "featuredRunMedia": null, "reactionVideos": [], @@ -434849,7 +434349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12548354, "featuredRunMedia": null, "reactionVideos": [], @@ -434869,7 +434369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 12548805, "featuredRunMedia": null, "reactionVideos": [], @@ -434889,7 +434389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12551384, "featuredRunMedia": null, "reactionVideos": [], @@ -434909,7 +434409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 12551995, "featuredRunMedia": null, "reactionVideos": [], @@ -434933,7 +434433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 12553031, "featuredRunMedia": null, "reactionVideos": [], @@ -434953,7 +434453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 435, + "teamId": "144505", "time": 12559934, "featuredRunMedia": null, "reactionVideos": [], @@ -434973,7 +434473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12560394, "featuredRunMedia": null, "reactionVideos": [], @@ -434993,7 +434493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12564580, "featuredRunMedia": null, "reactionVideos": [], @@ -435013,7 +434513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 12564798, "featuredRunMedia": null, "reactionVideos": [], @@ -435033,7 +434533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12567237, "featuredRunMedia": null, "reactionVideos": [], @@ -435053,7 +434553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "144347", "time": 12567506, "featuredRunMedia": null, "reactionVideos": [], @@ -435073,7 +434573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 12568000, "featuredRunMedia": null, "reactionVideos": [], @@ -435093,7 +434593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12568386, "featuredRunMedia": null, "reactionVideos": [], @@ -435117,7 +434617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12571316, "featuredRunMedia": null, "reactionVideos": [], @@ -435141,7 +434641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12571902, "featuredRunMedia": null, "reactionVideos": [], @@ -435161,7 +434661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "144130", "time": 12572407, "featuredRunMedia": null, "reactionVideos": [], @@ -435181,7 +434681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 12572659, "featuredRunMedia": null, "reactionVideos": [], @@ -435201,7 +434701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 12573452, "featuredRunMedia": null, "reactionVideos": [], @@ -435221,7 +434721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 364, + "teamId": "144434", "time": 12575635, "featuredRunMedia": null, "reactionVideos": [], @@ -435241,7 +434741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 12577553, "featuredRunMedia": null, "reactionVideos": [], @@ -435261,7 +434761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 12578288, "featuredRunMedia": null, "reactionVideos": [], @@ -435281,7 +434781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 12578933, "featuredRunMedia": null, "reactionVideos": [], @@ -435301,7 +434801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 12579114, "featuredRunMedia": null, "reactionVideos": [], @@ -435325,7 +434825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 12579610, "featuredRunMedia": null, "reactionVideos": [], @@ -435345,7 +434845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12580084, "featuredRunMedia": null, "reactionVideos": [], @@ -435365,7 +434865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12582401, "featuredRunMedia": null, "reactionVideos": [], @@ -435385,7 +434885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 12582923, "featuredRunMedia": null, "reactionVideos": [], @@ -435405,7 +434905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 12583544, "featuredRunMedia": null, "reactionVideos": [], @@ -435425,7 +434925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "144276", "time": 12583588, "featuredRunMedia": null, "reactionVideos": [], @@ -435445,7 +434945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 320, + "teamId": "144390", "time": 12583843, "featuredRunMedia": null, "reactionVideos": [], @@ -435465,7 +434965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 12583927, "featuredRunMedia": null, "reactionVideos": [], @@ -435485,7 +434985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 12584110, "featuredRunMedia": null, "reactionVideos": [], @@ -435505,7 +435005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 12585051, "featuredRunMedia": null, "reactionVideos": [], @@ -435525,7 +435025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 12585252, "featuredRunMedia": null, "reactionVideos": [], @@ -435545,7 +435045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12585564, "featuredRunMedia": null, "reactionVideos": [], @@ -435565,7 +435065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12586113, "featuredRunMedia": null, "reactionVideos": [], @@ -435585,7 +435085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12588926, "featuredRunMedia": null, "reactionVideos": [], @@ -435605,7 +435105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12589342, "featuredRunMedia": null, "reactionVideos": [], @@ -435625,7 +435125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12589413, "featuredRunMedia": null, "reactionVideos": [], @@ -435645,7 +435145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 12589485, "featuredRunMedia": null, "reactionVideos": [], @@ -435665,7 +435165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12589830, "featuredRunMedia": null, "reactionVideos": [], @@ -435685,7 +435185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12591404, "featuredRunMedia": null, "reactionVideos": [], @@ -435705,7 +435205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 12591584, "featuredRunMedia": null, "reactionVideos": [], @@ -435725,7 +435225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 12591802, "featuredRunMedia": null, "reactionVideos": [], @@ -435745,7 +435245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 12592837, "featuredRunMedia": null, "reactionVideos": [], @@ -435765,7 +435265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 12593117, "featuredRunMedia": null, "reactionVideos": [], @@ -435785,7 +435285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 12593710, "featuredRunMedia": null, "reactionVideos": [], @@ -435805,7 +435305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 12594817, "featuredRunMedia": null, "reactionVideos": [], @@ -435825,7 +435325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 12595057, "featuredRunMedia": null, "reactionVideos": [], @@ -435845,7 +435345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 12595640, "featuredRunMedia": null, "reactionVideos": [], @@ -435865,7 +435365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12596116, "featuredRunMedia": null, "reactionVideos": [], @@ -435885,7 +435385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 12596415, "featuredRunMedia": null, "reactionVideos": [], @@ -435905,7 +435405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12596498, "featuredRunMedia": null, "reactionVideos": [], @@ -435925,7 +435425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 12599150, "featuredRunMedia": null, "reactionVideos": [], @@ -435945,7 +435445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12601591, "featuredRunMedia": null, "reactionVideos": [], @@ -435965,7 +435465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 12602292, "featuredRunMedia": null, "reactionVideos": [], @@ -435985,7 +435485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 12605689, "featuredRunMedia": null, "reactionVideos": [], @@ -436005,7 +435505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 12606166, "featuredRunMedia": null, "reactionVideos": [], @@ -436025,7 +435525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 12606830, "featuredRunMedia": null, "reactionVideos": [], @@ -436045,7 +435545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12607777, "featuredRunMedia": null, "reactionVideos": [], @@ -436069,7 +435569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 12607873, "featuredRunMedia": null, "reactionVideos": [], @@ -436089,7 +435589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 12608139, "featuredRunMedia": null, "reactionVideos": [], @@ -436109,7 +435609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 12609270, "featuredRunMedia": null, "reactionVideos": [], @@ -436129,7 +435629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 12610942, "featuredRunMedia": null, "reactionVideos": [], @@ -436149,7 +435649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 318, + "teamId": "144388", "time": 12611424, "featuredRunMedia": null, "reactionVideos": [], @@ -436169,7 +435669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 12611563, "featuredRunMedia": null, "reactionVideos": [], @@ -436189,7 +435689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 12613021, "featuredRunMedia": null, "reactionVideos": [], @@ -436209,7 +435709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 12614367, "featuredRunMedia": null, "reactionVideos": [], @@ -436229,7 +435729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 12616194, "featuredRunMedia": null, "reactionVideos": [], @@ -436249,7 +435749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 12617917, "featuredRunMedia": null, "reactionVideos": [], @@ -436269,7 +435769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12620614, "featuredRunMedia": null, "reactionVideos": [], @@ -436289,7 +435789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 12620700, "featuredRunMedia": null, "reactionVideos": [], @@ -436309,7 +435809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 12621018, "featuredRunMedia": null, "reactionVideos": [], @@ -436329,7 +435829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 209, + "teamId": "144279", "time": 12621375, "featuredRunMedia": null, "reactionVideos": [], @@ -436349,7 +435849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 12622866, "featuredRunMedia": null, "reactionVideos": [], @@ -436369,7 +435869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "144164", "time": 12622965, "featuredRunMedia": null, "reactionVideos": [], @@ -436389,7 +435889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 12623456, "featuredRunMedia": null, "reactionVideos": [], @@ -436409,7 +435909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12623994, "featuredRunMedia": null, "reactionVideos": [], @@ -436429,7 +435929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12624180, "featuredRunMedia": null, "reactionVideos": [], @@ -436449,7 +435949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12624265, "featuredRunMedia": null, "reactionVideos": [], @@ -436469,7 +435969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12625822, "featuredRunMedia": null, "reactionVideos": [], @@ -436489,7 +435989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 12627017, "featuredRunMedia": null, "reactionVideos": [], @@ -436509,7 +436009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 12627398, "featuredRunMedia": null, "reactionVideos": [], @@ -436529,7 +436029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 12627591, "featuredRunMedia": null, "reactionVideos": [], @@ -436553,7 +436053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 12628117, "featuredRunMedia": null, "reactionVideos": [], @@ -436573,7 +436073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 12629388, "featuredRunMedia": null, "reactionVideos": [], @@ -436593,7 +436093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 12629627, "featuredRunMedia": null, "reactionVideos": [], @@ -436613,7 +436113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 12630126, "featuredRunMedia": null, "reactionVideos": [], @@ -436633,7 +436133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 12630195, "featuredRunMedia": null, "reactionVideos": [], @@ -436653,7 +436153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 12630840, "featuredRunMedia": null, "reactionVideos": [], @@ -436673,7 +436173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "144260", "time": 12631340, "featuredRunMedia": null, "reactionVideos": [], @@ -436693,7 +436193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 12631991, "featuredRunMedia": null, "reactionVideos": [], @@ -436713,7 +436213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12632069, "featuredRunMedia": null, "reactionVideos": [], @@ -436733,7 +436233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 12633581, "featuredRunMedia": null, "reactionVideos": [], @@ -436753,7 +436253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 12635901, "featuredRunMedia": null, "reactionVideos": [], @@ -436773,7 +436273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 12638582, "featuredRunMedia": null, "reactionVideos": [], @@ -436793,7 +436293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 12639491, "featuredRunMedia": null, "reactionVideos": [], @@ -436813,7 +436313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "144155", "time": 12640003, "featuredRunMedia": null, "reactionVideos": [], @@ -436833,7 +436333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 12641792, "featuredRunMedia": null, "reactionVideos": [], @@ -436853,7 +436353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 12641894, "featuredRunMedia": null, "reactionVideos": [], @@ -436873,7 +436373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 12642148, "featuredRunMedia": null, "reactionVideos": [], @@ -436893,7 +436393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12643127, "featuredRunMedia": null, "reactionVideos": [], @@ -436913,7 +436413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12643411, "featuredRunMedia": null, "reactionVideos": [], @@ -436933,7 +436433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "144104", "time": 12643734, "featuredRunMedia": null, "reactionVideos": [], @@ -436953,7 +436453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 12645291, "featuredRunMedia": null, "reactionVideos": [], @@ -436973,7 +436473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "144251", "time": 12645417, "featuredRunMedia": null, "reactionVideos": [], @@ -436993,7 +436493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 12646418, "featuredRunMedia": null, "reactionVideos": [], @@ -437013,7 +436513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 12646640, "featuredRunMedia": null, "reactionVideos": [], @@ -437033,7 +436533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12646771, "featuredRunMedia": null, "reactionVideos": [], @@ -437053,7 +436553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 77, + "teamId": "144147", "time": 12647822, "featuredRunMedia": null, "reactionVideos": [], @@ -437073,7 +436573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12647886, "featuredRunMedia": null, "reactionVideos": [], @@ -437093,7 +436593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 12650180, "featuredRunMedia": null, "reactionVideos": [], @@ -437113,7 +436613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 12651768, "featuredRunMedia": null, "reactionVideos": [], @@ -437137,7 +436637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 12652820, "featuredRunMedia": null, "reactionVideos": [], @@ -437157,7 +436657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 12654483, "featuredRunMedia": null, "reactionVideos": [], @@ -437177,7 +436677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12654881, "featuredRunMedia": null, "reactionVideos": [], @@ -437197,7 +436697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 12655104, "featuredRunMedia": null, "reactionVideos": [], @@ -437217,7 +436717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12655291, "featuredRunMedia": null, "reactionVideos": [], @@ -437237,7 +436737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12655752, "featuredRunMedia": null, "reactionVideos": [], @@ -437257,7 +436757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 12655832, "featuredRunMedia": null, "reactionVideos": [], @@ -437277,7 +436777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12655892, "featuredRunMedia": null, "reactionVideos": [], @@ -437297,7 +436797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 12659926, "featuredRunMedia": null, "reactionVideos": [], @@ -437317,7 +436817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "144265", "time": 12660046, "featuredRunMedia": null, "reactionVideos": [], @@ -437337,7 +436837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 12661873, "featuredRunMedia": null, "reactionVideos": [], @@ -437357,7 +436857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 12662409, "featuredRunMedia": null, "reactionVideos": [], @@ -437377,7 +436877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 12663161, "featuredRunMedia": null, "reactionVideos": [], @@ -437397,7 +436897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 12666982, "featuredRunMedia": null, "reactionVideos": [], @@ -437417,7 +436917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 12671235, "featuredRunMedia": null, "reactionVideos": [], @@ -437437,7 +436937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12672011, "featuredRunMedia": null, "reactionVideos": [], @@ -437457,7 +436957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 12672876, "featuredRunMedia": null, "reactionVideos": [], @@ -437477,7 +436977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 12674490, "featuredRunMedia": null, "reactionVideos": [], @@ -437497,7 +436997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 12675136, "featuredRunMedia": null, "reactionVideos": [], @@ -437517,7 +437017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 12680013, "featuredRunMedia": null, "reactionVideos": [], @@ -437537,7 +437037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 12680577, "featuredRunMedia": null, "reactionVideos": [], @@ -437557,7 +437057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12686147, "featuredRunMedia": null, "reactionVideos": [], @@ -437577,7 +437077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 12687220, "featuredRunMedia": null, "reactionVideos": [], @@ -437597,7 +437097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 12687268, "featuredRunMedia": null, "reactionVideos": [], @@ -437617,7 +437117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "144087", "time": 12690775, "featuredRunMedia": null, "reactionVideos": [], @@ -437637,7 +437137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 12691505, "featuredRunMedia": null, "reactionVideos": [], @@ -437657,7 +437157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 12693876, "featuredRunMedia": null, "reactionVideos": [], @@ -437677,7 +437177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "144123", "time": 12694103, "featuredRunMedia": null, "reactionVideos": [], @@ -437697,7 +437197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 415, + "teamId": "144485", "time": 12694624, "featuredRunMedia": null, "reactionVideos": [], @@ -437717,7 +437217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 12694922, "featuredRunMedia": null, "reactionVideos": [], @@ -437737,7 +437237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 12696124, "featuredRunMedia": null, "reactionVideos": [], @@ -437757,7 +437257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12698134, "featuredRunMedia": null, "reactionVideos": [], @@ -437777,7 +437277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 446, + "teamId": "144516", "time": 12698388, "featuredRunMedia": null, "reactionVideos": [], @@ -437797,7 +437297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12699155, "featuredRunMedia": null, "reactionVideos": [], @@ -437817,7 +437317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12699808, "featuredRunMedia": null, "reactionVideos": [], @@ -437837,7 +437337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 12701205, "featuredRunMedia": null, "reactionVideos": [], @@ -437857,7 +437357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 12702439, "featuredRunMedia": null, "reactionVideos": [], @@ -437881,7 +437381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12707048, "featuredRunMedia": null, "reactionVideos": [], @@ -437901,7 +437401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12708839, "featuredRunMedia": null, "reactionVideos": [], @@ -437921,7 +437421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 417, + "teamId": "144487", "time": 12712401, "featuredRunMedia": null, "reactionVideos": [], @@ -437945,7 +437445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 12712568, "featuredRunMedia": null, "reactionVideos": [], @@ -437965,7 +437465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 12712931, "featuredRunMedia": null, "reactionVideos": [], @@ -437985,7 +437485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12713964, "featuredRunMedia": null, "reactionVideos": [], @@ -438005,7 +437505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12715282, "featuredRunMedia": null, "reactionVideos": [], @@ -438025,7 +437525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12717189, "featuredRunMedia": null, "reactionVideos": [], @@ -438045,7 +437545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 12718119, "featuredRunMedia": null, "reactionVideos": [], @@ -438065,7 +437565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 12718212, "featuredRunMedia": null, "reactionVideos": [], @@ -438085,7 +437585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 12719506, "featuredRunMedia": null, "reactionVideos": [], @@ -438105,7 +437605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 12720683, "featuredRunMedia": null, "reactionVideos": [], @@ -438125,7 +437625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 12721040, "featuredRunMedia": null, "reactionVideos": [], @@ -438145,7 +437645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 12723603, "featuredRunMedia": null, "reactionVideos": [], @@ -438165,7 +437665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12724125, "featuredRunMedia": null, "reactionVideos": [], @@ -438185,7 +437685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12724810, "featuredRunMedia": null, "reactionVideos": [], @@ -438205,7 +437705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12726347, "featuredRunMedia": null, "reactionVideos": [], @@ -438225,7 +437725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 12727851, "featuredRunMedia": null, "reactionVideos": [], @@ -438245,7 +437745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 12727894, "featuredRunMedia": null, "reactionVideos": [], @@ -438265,7 +437765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "144104", "time": 12728845, "featuredRunMedia": null, "reactionVideos": [], @@ -438285,7 +437785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 12730048, "featuredRunMedia": null, "reactionVideos": [], @@ -438305,7 +437805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 12731944, "featuredRunMedia": null, "reactionVideos": [], @@ -438325,7 +437825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12732003, "featuredRunMedia": null, "reactionVideos": [], @@ -438345,7 +437845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 12732248, "featuredRunMedia": null, "reactionVideos": [], @@ -438365,7 +437865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12734266, "featuredRunMedia": null, "reactionVideos": [], @@ -438385,7 +437885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12734451, "featuredRunMedia": null, "reactionVideos": [], @@ -438405,7 +437905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 12736193, "featuredRunMedia": null, "reactionVideos": [], @@ -438425,7 +437925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12736809, "featuredRunMedia": null, "reactionVideos": [], @@ -438445,7 +437945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 151, + "teamId": "144221", "time": 12736885, "featuredRunMedia": null, "reactionVideos": [], @@ -438465,7 +437965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 12737531, "featuredRunMedia": null, "reactionVideos": [], @@ -438489,7 +437989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 12737738, "featuredRunMedia": null, "reactionVideos": [], @@ -438509,7 +438009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 12737797, "featuredRunMedia": null, "reactionVideos": [], @@ -438529,7 +438029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12737978, "featuredRunMedia": null, "reactionVideos": [], @@ -438549,7 +438049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12742233, "featuredRunMedia": null, "reactionVideos": [], @@ -438569,7 +438069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12743187, "featuredRunMedia": null, "reactionVideos": [], @@ -438589,7 +438089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12743311, "featuredRunMedia": null, "reactionVideos": [], @@ -438609,7 +438109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 12744697, "featuredRunMedia": null, "reactionVideos": [], @@ -438629,7 +438129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 387, + "teamId": "144457", "time": 12746268, "featuredRunMedia": null, "reactionVideos": [], @@ -438649,7 +438149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 12746738, "featuredRunMedia": null, "reactionVideos": [], @@ -438669,7 +438169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12747158, "featuredRunMedia": null, "reactionVideos": [], @@ -438689,7 +438189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 12748594, "featuredRunMedia": null, "reactionVideos": [], @@ -438709,7 +438209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 12748771, "featuredRunMedia": null, "reactionVideos": [], @@ -438729,7 +438229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 12749144, "featuredRunMedia": null, "reactionVideos": [], @@ -438749,7 +438249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 12749764, "featuredRunMedia": null, "reactionVideos": [], @@ -438769,7 +438269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12750088, "featuredRunMedia": null, "reactionVideos": [], @@ -438789,7 +438289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 12750373, "featuredRunMedia": null, "reactionVideos": [], @@ -438809,7 +438309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 12753914, "featuredRunMedia": null, "reactionVideos": [], @@ -438829,7 +438329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12754357, "featuredRunMedia": null, "reactionVideos": [], @@ -438849,7 +438349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "144127", "time": 12755480, "featuredRunMedia": null, "reactionVideos": [], @@ -438869,7 +438369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 12756445, "featuredRunMedia": null, "reactionVideos": [], @@ -438889,7 +438389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12756715, "featuredRunMedia": null, "reactionVideos": [], @@ -438909,7 +438409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 12758082, "featuredRunMedia": null, "reactionVideos": [], @@ -438929,7 +438429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 12758938, "featuredRunMedia": null, "reactionVideos": [], @@ -438949,7 +438449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 12759533, "featuredRunMedia": null, "reactionVideos": [], @@ -438969,7 +438469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 12760340, "featuredRunMedia": null, "reactionVideos": [], @@ -438989,7 +438489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 436, + "teamId": "144506", "time": 12760515, "featuredRunMedia": null, "reactionVideos": [], @@ -439009,7 +438509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "144308", "time": 12764044, "featuredRunMedia": null, "reactionVideos": [], @@ -439029,7 +438529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 12764956, "featuredRunMedia": null, "reactionVideos": [], @@ -439049,7 +438549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 12765670, "featuredRunMedia": null, "reactionVideos": [], @@ -439069,7 +438569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 12766573, "featuredRunMedia": null, "reactionVideos": [], @@ -439089,7 +438589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 12766631, "featuredRunMedia": null, "reactionVideos": [], @@ -439109,7 +438609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 12767818, "featuredRunMedia": null, "reactionVideos": [], @@ -439129,7 +438629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 12769269, "featuredRunMedia": null, "reactionVideos": [], @@ -439149,7 +438649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12770111, "featuredRunMedia": null, "reactionVideos": [], @@ -439169,7 +438669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12770596, "featuredRunMedia": null, "reactionVideos": [], @@ -439189,7 +438689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 12770661, "featuredRunMedia": null, "reactionVideos": [], @@ -439209,7 +438709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 12771155, "featuredRunMedia": null, "reactionVideos": [], @@ -439229,7 +438729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 12773475, "featuredRunMedia": null, "reactionVideos": [], @@ -439249,7 +438749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 12776118, "featuredRunMedia": null, "reactionVideos": [], @@ -439269,7 +438769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 12776342, "featuredRunMedia": null, "reactionVideos": [], @@ -439289,7 +438789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 12777016, "featuredRunMedia": null, "reactionVideos": [], @@ -439309,7 +438809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "144150", "time": 12777254, "featuredRunMedia": null, "reactionVideos": [], @@ -439329,7 +438829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 12778312, "featuredRunMedia": null, "reactionVideos": [], @@ -439349,7 +438849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "144082", "time": 12778877, "featuredRunMedia": null, "reactionVideos": [], @@ -439369,7 +438869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 12778985, "featuredRunMedia": null, "reactionVideos": [], @@ -439389,7 +438889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "144158", "time": 12779417, "featuredRunMedia": null, "reactionVideos": [], @@ -439409,7 +438909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 12780455, "featuredRunMedia": null, "reactionVideos": [], @@ -439429,7 +438929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 12780749, "featuredRunMedia": null, "reactionVideos": [], @@ -439449,7 +438949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 12781647, "featuredRunMedia": null, "reactionVideos": [], @@ -439469,7 +438969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 365, + "teamId": "144435", "time": 12782085, "featuredRunMedia": null, "reactionVideos": [], @@ -439489,7 +438989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 12782832, "featuredRunMedia": null, "reactionVideos": [], @@ -439509,7 +439009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 387, + "teamId": "144457", "time": 12784741, "featuredRunMedia": null, "reactionVideos": [], @@ -439529,7 +439029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12785424, "featuredRunMedia": null, "reactionVideos": [], @@ -439549,7 +439049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 12787485, "featuredRunMedia": null, "reactionVideos": [], @@ -439573,7 +439073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 12787543, "featuredRunMedia": null, "reactionVideos": [], @@ -439593,7 +439093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 12788810, "featuredRunMedia": null, "reactionVideos": [], @@ -439613,7 +439113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12789160, "featuredRunMedia": null, "reactionVideos": [], @@ -439633,7 +439133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 12791241, "featuredRunMedia": null, "reactionVideos": [], @@ -439653,7 +439153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12791875, "featuredRunMedia": null, "reactionVideos": [], @@ -439673,7 +439173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 12792210, "featuredRunMedia": null, "reactionVideos": [], @@ -439693,7 +439193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12793012, "featuredRunMedia": null, "reactionVideos": [], @@ -439713,7 +439213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 12794433, "featuredRunMedia": null, "reactionVideos": [], @@ -439733,7 +439233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 12794943, "featuredRunMedia": null, "reactionVideos": [], @@ -439753,7 +439253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 12796047, "featuredRunMedia": null, "reactionVideos": [], @@ -439773,7 +439273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 12799929, "featuredRunMedia": null, "reactionVideos": [], @@ -439793,7 +439293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 365, + "teamId": "144435", "time": 12800357, "featuredRunMedia": null, "reactionVideos": [], @@ -439813,7 +439313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "144087", "time": 12803584, "featuredRunMedia": null, "reactionVideos": [], @@ -439833,7 +439333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 12803638, "featuredRunMedia": null, "reactionVideos": [], @@ -439853,7 +439353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 12804977, "featuredRunMedia": null, "reactionVideos": [], @@ -439873,7 +439373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "144189", "time": 12806275, "featuredRunMedia": null, "reactionVideos": [], @@ -439893,7 +439393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 12806485, "featuredRunMedia": null, "reactionVideos": [], @@ -439913,7 +439413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12807307, "featuredRunMedia": null, "reactionVideos": [], @@ -439933,7 +439433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 12807393, "featuredRunMedia": null, "reactionVideos": [], @@ -439953,7 +439453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 12808491, "featuredRunMedia": null, "reactionVideos": [], @@ -439973,7 +439473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 12809022, "featuredRunMedia": null, "reactionVideos": [], @@ -439993,7 +439493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 12809249, "featuredRunMedia": null, "reactionVideos": [], @@ -440013,7 +439513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 12809980, "featuredRunMedia": null, "reactionVideos": [], @@ -440033,7 +439533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12812219, "featuredRunMedia": null, "reactionVideos": [], @@ -440053,7 +439553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 12812574, "featuredRunMedia": null, "reactionVideos": [], @@ -440073,7 +439573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "144087", "time": 12813165, "featuredRunMedia": null, "reactionVideos": [], @@ -440093,7 +439593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12813666, "featuredRunMedia": null, "reactionVideos": [], @@ -440117,7 +439617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "144249", "time": 12814796, "featuredRunMedia": null, "reactionVideos": [], @@ -440137,7 +439637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 12814952, "featuredRunMedia": null, "reactionVideos": [], @@ -440157,7 +439657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 12815547, "featuredRunMedia": null, "reactionVideos": [], @@ -440177,7 +439677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 12819327, "featuredRunMedia": null, "reactionVideos": [], @@ -440197,7 +439697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 435, + "teamId": "144505", "time": 12819775, "featuredRunMedia": null, "reactionVideos": [], @@ -440217,7 +439717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 12821216, "featuredRunMedia": null, "reactionVideos": [], @@ -440237,7 +439737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 12825296, "featuredRunMedia": null, "reactionVideos": [], @@ -440257,7 +439757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 12826110, "featuredRunMedia": null, "reactionVideos": [], @@ -440277,7 +439777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 12826519, "featuredRunMedia": null, "reactionVideos": [], @@ -440297,7 +439797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "144079", "time": 12830675, "featuredRunMedia": null, "reactionVideos": [], @@ -440317,7 +439817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 12831446, "featuredRunMedia": null, "reactionVideos": [], @@ -440337,7 +439837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12832460, "featuredRunMedia": null, "reactionVideos": [], @@ -440357,7 +439857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "144089", "time": 12833194, "featuredRunMedia": null, "reactionVideos": [], @@ -440377,7 +439877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 12836303, "featuredRunMedia": null, "reactionVideos": [], @@ -440397,7 +439897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12836582, "featuredRunMedia": null, "reactionVideos": [], @@ -440417,7 +439917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 12839653, "featuredRunMedia": null, "reactionVideos": [], @@ -440437,7 +439937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 12840589, "featuredRunMedia": null, "reactionVideos": [], @@ -440457,7 +439957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12841401, "featuredRunMedia": null, "reactionVideos": [], @@ -440477,7 +439977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 12844234, "featuredRunMedia": null, "reactionVideos": [], @@ -440497,7 +439997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12844660, "featuredRunMedia": null, "reactionVideos": [], @@ -440517,7 +440017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "144282", "time": 12845127, "featuredRunMedia": null, "reactionVideos": [], @@ -440537,7 +440037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 12845864, "featuredRunMedia": null, "reactionVideos": [], @@ -440557,7 +440057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 12847036, "featuredRunMedia": null, "reactionVideos": [], @@ -440577,7 +440077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 12850703, "featuredRunMedia": null, "reactionVideos": [], @@ -440597,7 +440097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 12853724, "featuredRunMedia": null, "reactionVideos": [], @@ -440617,7 +440117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "144343", "time": 12854576, "featuredRunMedia": null, "reactionVideos": [], @@ -440637,7 +440137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 12854831, "featuredRunMedia": null, "reactionVideos": [], @@ -440657,7 +440157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 12856041, "featuredRunMedia": null, "reactionVideos": [], @@ -440677,7 +440177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 12856402, "featuredRunMedia": null, "reactionVideos": [], @@ -440697,7 +440197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 12856454, "featuredRunMedia": null, "reactionVideos": [], @@ -440717,7 +440217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 12858277, "featuredRunMedia": null, "reactionVideos": [], @@ -440737,7 +440237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 12858359, "featuredRunMedia": null, "reactionVideos": [], @@ -440757,7 +440257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 12859054, "featuredRunMedia": null, "reactionVideos": [], @@ -440777,7 +440277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 12860812, "featuredRunMedia": null, "reactionVideos": [], @@ -440797,7 +440297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 12861025, "featuredRunMedia": null, "reactionVideos": [], @@ -440817,7 +440317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12861597, "featuredRunMedia": null, "reactionVideos": [], @@ -440837,7 +440337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "144363", "time": 12862891, "featuredRunMedia": null, "reactionVideos": [], @@ -440857,7 +440357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 12863352, "featuredRunMedia": null, "reactionVideos": [], @@ -440877,7 +440377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 12863411, "featuredRunMedia": null, "reactionVideos": [], @@ -440897,7 +440397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 12864062, "featuredRunMedia": null, "reactionVideos": [], @@ -440917,7 +440417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 12864120, "featuredRunMedia": null, "reactionVideos": [], @@ -440937,7 +440437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 12864161, "featuredRunMedia": null, "reactionVideos": [], @@ -440957,7 +440457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12864997, "featuredRunMedia": null, "reactionVideos": [], @@ -440977,7 +440477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 12867306, "featuredRunMedia": null, "reactionVideos": [], @@ -440997,7 +440497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12868874, "featuredRunMedia": null, "reactionVideos": [], @@ -441017,7 +440517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "144358", "time": 12870208, "featuredRunMedia": null, "reactionVideos": [], @@ -441037,7 +440537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 12870860, "featuredRunMedia": null, "reactionVideos": [], @@ -441057,7 +440557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "144281", "time": 12870910, "featuredRunMedia": null, "reactionVideos": [], @@ -441077,7 +440577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 12870951, "featuredRunMedia": null, "reactionVideos": [], @@ -441097,7 +440597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 12871766, "featuredRunMedia": null, "reactionVideos": [], @@ -441117,7 +440617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12872037, "featuredRunMedia": null, "reactionVideos": [], @@ -441137,7 +440637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12875937, "featuredRunMedia": null, "reactionVideos": [], @@ -441157,7 +440657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 436, + "teamId": "144506", "time": 12878014, "featuredRunMedia": null, "reactionVideos": [], @@ -441177,7 +440677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12879007, "featuredRunMedia": null, "reactionVideos": [], @@ -441197,7 +440697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12879693, "featuredRunMedia": null, "reactionVideos": [], @@ -441217,7 +440717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 12879750, "featuredRunMedia": null, "reactionVideos": [], @@ -441241,7 +440741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12880187, "featuredRunMedia": null, "reactionVideos": [], @@ -441261,7 +440761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 12880564, "featuredRunMedia": null, "reactionVideos": [], @@ -441281,7 +440781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 268, + "teamId": "144338", "time": 12882081, "featuredRunMedia": null, "reactionVideos": [], @@ -441301,7 +440801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 12884955, "featuredRunMedia": null, "reactionVideos": [], @@ -441321,7 +440821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 12885952, "featuredRunMedia": null, "reactionVideos": [], @@ -441341,7 +440841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "144367", "time": 12888452, "featuredRunMedia": null, "reactionVideos": [], @@ -441361,7 +440861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 12888577, "featuredRunMedia": null, "reactionVideos": [], @@ -441381,7 +440881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 12888958, "featuredRunMedia": null, "reactionVideos": [], @@ -441401,7 +440901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 12889404, "featuredRunMedia": null, "reactionVideos": [], @@ -441421,7 +440921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12890868, "featuredRunMedia": null, "reactionVideos": [], @@ -441441,7 +440941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 12891558, "featuredRunMedia": null, "reactionVideos": [], @@ -441461,7 +440961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 12892039, "featuredRunMedia": null, "reactionVideos": [], @@ -441481,7 +440981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 12893215, "featuredRunMedia": null, "reactionVideos": [], @@ -441501,7 +441001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "144249", "time": 12895513, "featuredRunMedia": null, "reactionVideos": [], @@ -441521,7 +441021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12896727, "featuredRunMedia": null, "reactionVideos": [], @@ -441541,7 +441041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 12896892, "featuredRunMedia": null, "reactionVideos": [], @@ -441561,7 +441061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 12897769, "featuredRunMedia": null, "reactionVideos": [], @@ -441581,7 +441081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 12898050, "featuredRunMedia": null, "reactionVideos": [], @@ -441601,7 +441101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 12898941, "featuredRunMedia": null, "reactionVideos": [], @@ -441621,7 +441121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "144205", "time": 12900505, "featuredRunMedia": null, "reactionVideos": [], @@ -441641,7 +441141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 12900890, "featuredRunMedia": null, "reactionVideos": [], @@ -441661,7 +441161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 12903269, "featuredRunMedia": null, "reactionVideos": [], @@ -441681,7 +441181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 445, + "teamId": "144515", "time": 12903310, "featuredRunMedia": null, "reactionVideos": [], @@ -441701,7 +441201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "144127", "time": 12904311, "featuredRunMedia": null, "reactionVideos": [], @@ -441725,7 +441225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12905347, "featuredRunMedia": null, "reactionVideos": [], @@ -441745,7 +441245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 12905378, "featuredRunMedia": null, "reactionVideos": [], @@ -441765,7 +441265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12906392, "featuredRunMedia": null, "reactionVideos": [], @@ -441785,7 +441285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 12907120, "featuredRunMedia": null, "reactionVideos": [], @@ -441805,7 +441305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "144285", "time": 12911093, "featuredRunMedia": null, "reactionVideos": [], @@ -441825,7 +441325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 12911748, "featuredRunMedia": null, "reactionVideos": [], @@ -441845,7 +441345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 12915311, "featuredRunMedia": null, "reactionVideos": [], @@ -441865,7 +441365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 12915643, "featuredRunMedia": null, "reactionVideos": [], @@ -441885,7 +441385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 12916934, "featuredRunMedia": null, "reactionVideos": [], @@ -441905,7 +441405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 12917812, "featuredRunMedia": null, "reactionVideos": [], @@ -441929,7 +441429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12918545, "featuredRunMedia": null, "reactionVideos": [], @@ -441949,7 +441449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 12918582, "featuredRunMedia": null, "reactionVideos": [], @@ -441969,7 +441469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 12919833, "featuredRunMedia": null, "reactionVideos": [], @@ -441989,7 +441489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 12920179, "featuredRunMedia": null, "reactionVideos": [], @@ -442009,7 +441509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 12920772, "featuredRunMedia": null, "reactionVideos": [], @@ -442029,7 +441529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 12920811, "featuredRunMedia": null, "reactionVideos": [], @@ -442049,7 +441549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 12920957, "featuredRunMedia": null, "reactionVideos": [], @@ -442069,7 +441569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 12923661, "featuredRunMedia": null, "reactionVideos": [], @@ -442089,7 +441589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 12925477, "featuredRunMedia": null, "reactionVideos": [], @@ -442109,7 +441609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 12926583, "featuredRunMedia": null, "reactionVideos": [], @@ -442129,7 +441629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "144190", "time": 12927029, "featuredRunMedia": null, "reactionVideos": [], @@ -442149,7 +441649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 12927920, "featuredRunMedia": null, "reactionVideos": [], @@ -442169,7 +441669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "144229", "time": 12928516, "featuredRunMedia": null, "reactionVideos": [], @@ -442189,7 +441689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 12931650, "featuredRunMedia": null, "reactionVideos": [], @@ -442209,7 +441709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 12931888, "featuredRunMedia": null, "reactionVideos": [], @@ -442229,7 +441729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 302, + "teamId": "144372", "time": 12932106, "featuredRunMedia": null, "reactionVideos": [], @@ -442249,7 +441749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 12936043, "featuredRunMedia": null, "reactionVideos": [], @@ -442269,7 +441769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 12938363, "featuredRunMedia": null, "reactionVideos": [], @@ -442289,7 +441789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 12943429, "featuredRunMedia": null, "reactionVideos": [], @@ -442309,7 +441809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 12945607, "featuredRunMedia": null, "reactionVideos": [], @@ -442329,7 +441829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 12946337, "featuredRunMedia": null, "reactionVideos": [], @@ -442349,7 +441849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12947596, "featuredRunMedia": null, "reactionVideos": [], @@ -442369,7 +441869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 12948587, "featuredRunMedia": null, "reactionVideos": [], @@ -442389,7 +441889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 12948643, "featuredRunMedia": null, "reactionVideos": [], @@ -442409,7 +441909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 12950208, "featuredRunMedia": null, "reactionVideos": [], @@ -442433,7 +441933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12950602, "featuredRunMedia": null, "reactionVideos": [], @@ -442453,7 +441953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 12951856, "featuredRunMedia": null, "reactionVideos": [], @@ -442473,7 +441973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 12953573, "featuredRunMedia": null, "reactionVideos": [], @@ -442493,7 +441993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "144358", "time": 12954410, "featuredRunMedia": null, "reactionVideos": [], @@ -442513,7 +442013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 12958385, "featuredRunMedia": null, "reactionVideos": [], @@ -442533,7 +442033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 12960132, "featuredRunMedia": null, "reactionVideos": [], @@ -442553,7 +442053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12960760, "featuredRunMedia": null, "reactionVideos": [], @@ -442573,7 +442073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 12961949, "featuredRunMedia": null, "reactionVideos": [], @@ -442593,7 +442093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 12963494, "featuredRunMedia": null, "reactionVideos": [], @@ -442613,7 +442113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 12963691, "featuredRunMedia": null, "reactionVideos": [], @@ -442633,7 +442133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 12963954, "featuredRunMedia": null, "reactionVideos": [], @@ -442653,7 +442153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 12964904, "featuredRunMedia": null, "reactionVideos": [], @@ -442673,7 +442173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "144162", "time": 12964958, "featuredRunMedia": null, "reactionVideos": [], @@ -442693,7 +442193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "144087", "time": 12966612, "featuredRunMedia": null, "reactionVideos": [], @@ -442713,7 +442213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 12973607, "featuredRunMedia": null, "reactionVideos": [], @@ -442733,7 +442233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 12974604, "featuredRunMedia": null, "reactionVideos": [], @@ -442753,7 +442253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 12975839, "featuredRunMedia": null, "reactionVideos": [], @@ -442773,7 +442273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 12976172, "featuredRunMedia": null, "reactionVideos": [], @@ -442793,7 +442293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 12976216, "featuredRunMedia": null, "reactionVideos": [], @@ -442813,7 +442313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "144270", "time": 12976673, "featuredRunMedia": null, "reactionVideos": [], @@ -442833,7 +442333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 12979055, "featuredRunMedia": null, "reactionVideos": [], @@ -442853,7 +442353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 12979312, "featuredRunMedia": null, "reactionVideos": [], @@ -442873,7 +442373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 12983118, "featuredRunMedia": null, "reactionVideos": [], @@ -442893,7 +442393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 12983209, "featuredRunMedia": null, "reactionVideos": [], @@ -442913,7 +442413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 12985476, "featuredRunMedia": null, "reactionVideos": [], @@ -442933,7 +442433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "144299", "time": 12987205, "featuredRunMedia": null, "reactionVideos": [], @@ -442953,7 +442453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 12987257, "featuredRunMedia": null, "reactionVideos": [], @@ -442973,7 +442473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 12988886, "featuredRunMedia": null, "reactionVideos": [], @@ -442993,7 +442493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 12990157, "featuredRunMedia": null, "reactionVideos": [], @@ -443013,7 +442513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 12990440, "featuredRunMedia": null, "reactionVideos": [], @@ -443033,7 +442533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 12991334, "featuredRunMedia": null, "reactionVideos": [], @@ -443053,7 +442553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 12991431, "featuredRunMedia": null, "reactionVideos": [], @@ -443073,7 +442573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 12993994, "featuredRunMedia": null, "reactionVideos": [], @@ -443093,7 +442593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 12994722, "featuredRunMedia": null, "reactionVideos": [], @@ -443113,7 +442613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 12994767, "featuredRunMedia": null, "reactionVideos": [], @@ -443133,7 +442633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 12996268, "featuredRunMedia": null, "reactionVideos": [], @@ -443153,7 +442653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 12996498, "featuredRunMedia": null, "reactionVideos": [], @@ -443173,7 +442673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 12996702, "featuredRunMedia": null, "reactionVideos": [], @@ -443193,7 +442693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 12997245, "featuredRunMedia": null, "reactionVideos": [], @@ -443213,7 +442713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 12997624, "featuredRunMedia": null, "reactionVideos": [], @@ -443233,7 +442733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13000233, "featuredRunMedia": null, "reactionVideos": [], @@ -443253,7 +442753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 13000275, "featuredRunMedia": null, "reactionVideos": [], @@ -443273,7 +442773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 13001223, "featuredRunMedia": null, "reactionVideos": [], @@ -443293,7 +442793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 13001847, "featuredRunMedia": null, "reactionVideos": [], @@ -443313,7 +442813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 13002163, "featuredRunMedia": null, "reactionVideos": [], @@ -443333,7 +442833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 13003515, "featuredRunMedia": null, "reactionVideos": [], @@ -443353,7 +442853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 13003553, "featuredRunMedia": null, "reactionVideos": [], @@ -443373,7 +442873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13009130, "featuredRunMedia": null, "reactionVideos": [], @@ -443393,7 +442893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 13009935, "featuredRunMedia": null, "reactionVideos": [], @@ -443413,7 +442913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 375, + "teamId": "144445", "time": 13009988, "featuredRunMedia": null, "reactionVideos": [], @@ -443433,7 +442933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 309, + "teamId": "144379", "time": 13011768, "featuredRunMedia": null, "reactionVideos": [], @@ -443453,7 +442953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 13012198, "featuredRunMedia": null, "reactionVideos": [], @@ -443473,7 +442973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13012915, "featuredRunMedia": null, "reactionVideos": [], @@ -443493,7 +442993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 13013147, "featuredRunMedia": null, "reactionVideos": [], @@ -443513,7 +443013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 13013804, "featuredRunMedia": null, "reactionVideos": [], @@ -443533,7 +443033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "144150", "time": 13018308, "featuredRunMedia": null, "reactionVideos": [], @@ -443553,7 +443053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 13018361, "featuredRunMedia": null, "reactionVideos": [], @@ -443573,7 +443073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 13019120, "featuredRunMedia": null, "reactionVideos": [], @@ -443593,7 +443093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "144310", "time": 13020435, "featuredRunMedia": null, "reactionVideos": [], @@ -443617,7 +443117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 13022090, "featuredRunMedia": null, "reactionVideos": [], @@ -443637,7 +443137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 13024640, "featuredRunMedia": null, "reactionVideos": [], @@ -443657,7 +443157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 397, + "teamId": "144467", "time": 13025276, "featuredRunMedia": null, "reactionVideos": [], @@ -443677,7 +443177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 13028252, "featuredRunMedia": null, "reactionVideos": [], @@ -443697,7 +443197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 13030662, "featuredRunMedia": null, "reactionVideos": [], @@ -443717,7 +443217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13031330, "featuredRunMedia": null, "reactionVideos": [], @@ -443737,7 +443237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13033172, "featuredRunMedia": null, "reactionVideos": [], @@ -443757,7 +443257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "144261", "time": 13034383, "featuredRunMedia": null, "reactionVideos": [], @@ -443777,7 +443277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 13035416, "featuredRunMedia": null, "reactionVideos": [], @@ -443797,7 +443297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 13040013, "featuredRunMedia": null, "reactionVideos": [], @@ -443817,7 +443317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 13041399, "featuredRunMedia": null, "reactionVideos": [], @@ -443837,7 +443337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 13041976, "featuredRunMedia": null, "reactionVideos": [], @@ -443861,7 +443361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 13042650, "featuredRunMedia": null, "reactionVideos": [], @@ -443881,7 +443381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "144249", "time": 13043399, "featuredRunMedia": null, "reactionVideos": [], @@ -443901,7 +443401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 13044195, "featuredRunMedia": null, "reactionVideos": [], @@ -443921,7 +443421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 13044383, "featuredRunMedia": null, "reactionVideos": [], @@ -443941,7 +443441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 13044421, "featuredRunMedia": null, "reactionVideos": [], @@ -443961,7 +443461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 108, + "teamId": "144178", "time": 13046833, "featuredRunMedia": null, "reactionVideos": [], @@ -443981,7 +443481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 13046884, "featuredRunMedia": null, "reactionVideos": [], @@ -444001,7 +443501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 266, + "teamId": "144336", "time": 13049362, "featuredRunMedia": null, "reactionVideos": [], @@ -444025,7 +443525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 13050114, "featuredRunMedia": null, "reactionVideos": [], @@ -444045,7 +443545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 13050899, "featuredRunMedia": null, "reactionVideos": [], @@ -444065,7 +443565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13051680, "featuredRunMedia": null, "reactionVideos": [], @@ -444085,7 +443585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 13051994, "featuredRunMedia": null, "reactionVideos": [], @@ -444105,7 +443605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 13056331, "featuredRunMedia": null, "reactionVideos": [], @@ -444125,7 +443625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 442, + "teamId": "144512", "time": 13056408, "featuredRunMedia": null, "reactionVideos": [], @@ -444145,7 +443645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13058628, "featuredRunMedia": null, "reactionVideos": [], @@ -444165,7 +443665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 13058764, "featuredRunMedia": null, "reactionVideos": [], @@ -444189,7 +443689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13059212, "featuredRunMedia": null, "reactionVideos": [], @@ -444209,7 +443709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 13059937, "featuredRunMedia": null, "reactionVideos": [], @@ -444229,7 +443729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 13060729, "featuredRunMedia": null, "reactionVideos": [], @@ -444249,7 +443749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13061119, "featuredRunMedia": null, "reactionVideos": [], @@ -444269,7 +443769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 13062498, "featuredRunMedia": null, "reactionVideos": [], @@ -444289,7 +443789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 13062856, "featuredRunMedia": null, "reactionVideos": [], @@ -444309,7 +443809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 13064508, "featuredRunMedia": null, "reactionVideos": [], @@ -444329,7 +443829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 13064616, "featuredRunMedia": null, "reactionVideos": [], @@ -444349,7 +443849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 13065293, "featuredRunMedia": null, "reactionVideos": [], @@ -444369,7 +443869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 13065423, "featuredRunMedia": null, "reactionVideos": [], @@ -444389,7 +443889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 13069738, "featuredRunMedia": null, "reactionVideos": [], @@ -444409,7 +443909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13073020, "featuredRunMedia": null, "reactionVideos": [], @@ -444429,7 +443929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13073997, "featuredRunMedia": null, "reactionVideos": [], @@ -444449,7 +443949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "144368", "time": 13074571, "featuredRunMedia": null, "reactionVideos": [], @@ -444469,7 +443969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 13075857, "featuredRunMedia": null, "reactionVideos": [], @@ -444489,7 +443989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 71, + "teamId": "144141", "time": 13075987, "featuredRunMedia": null, "reactionVideos": [], @@ -444509,7 +444009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 5, + "teamId": "144075", "time": 13079479, "featuredRunMedia": null, "reactionVideos": [], @@ -444529,7 +444029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 13080233, "featuredRunMedia": null, "reactionVideos": [], @@ -444549,7 +444049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 13081375, "featuredRunMedia": null, "reactionVideos": [], @@ -444569,7 +444069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13081948, "featuredRunMedia": null, "reactionVideos": [], @@ -444589,7 +444089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 13081996, "featuredRunMedia": null, "reactionVideos": [], @@ -444609,7 +444109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13084222, "featuredRunMedia": null, "reactionVideos": [], @@ -444629,7 +444129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 13084982, "featuredRunMedia": null, "reactionVideos": [], @@ -444649,7 +444149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 13085560, "featuredRunMedia": null, "reactionVideos": [], @@ -444669,7 +444169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 13085766, "featuredRunMedia": null, "reactionVideos": [], @@ -444689,7 +444189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 108, + "teamId": "144178", "time": 13091879, "featuredRunMedia": null, "reactionVideos": [], @@ -444709,7 +444209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 13092517, "featuredRunMedia": null, "reactionVideos": [], @@ -444729,7 +444229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 13092828, "featuredRunMedia": null, "reactionVideos": [], @@ -444749,7 +444249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13093015, "featuredRunMedia": null, "reactionVideos": [], @@ -444769,7 +444269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 13094907, "featuredRunMedia": null, "reactionVideos": [], @@ -444789,7 +444289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 13095033, "featuredRunMedia": null, "reactionVideos": [], @@ -444809,7 +444309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13096071, "featuredRunMedia": null, "reactionVideos": [], @@ -444829,7 +444329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 13096416, "featuredRunMedia": null, "reactionVideos": [], @@ -444849,7 +444349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 13096470, "featuredRunMedia": null, "reactionVideos": [], @@ -444869,7 +444369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13096985, "featuredRunMedia": null, "reactionVideos": [], @@ -444889,7 +444389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 13097184, "featuredRunMedia": null, "reactionVideos": [], @@ -444909,7 +444409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 13097495, "featuredRunMedia": null, "reactionVideos": [], @@ -444929,7 +444429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 13098444, "featuredRunMedia": null, "reactionVideos": [], @@ -444949,7 +444449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "144131", "time": 13099656, "featuredRunMedia": null, "reactionVideos": [], @@ -444969,7 +444469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "144376", "time": 13099962, "featuredRunMedia": null, "reactionVideos": [], @@ -444989,7 +444489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 13100365, "featuredRunMedia": null, "reactionVideos": [], @@ -445009,7 +444509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13101120, "featuredRunMedia": null, "reactionVideos": [], @@ -445029,7 +444529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 13101888, "featuredRunMedia": null, "reactionVideos": [], @@ -445049,7 +444549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13103037, "featuredRunMedia": null, "reactionVideos": [], @@ -445069,7 +444569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 353, + "teamId": "144423", "time": 13103708, "featuredRunMedia": null, "reactionVideos": [], @@ -445089,7 +444589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13103939, "featuredRunMedia": null, "reactionVideos": [], @@ -445109,7 +444609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13104268, "featuredRunMedia": null, "reactionVideos": [], @@ -445129,7 +444629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 71, + "teamId": "144141", "time": 13104705, "featuredRunMedia": null, "reactionVideos": [], @@ -445149,7 +444649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 13104964, "featuredRunMedia": null, "reactionVideos": [], @@ -445169,7 +444669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 13107193, "featuredRunMedia": null, "reactionVideos": [], @@ -445189,7 +444689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 13108058, "featuredRunMedia": null, "reactionVideos": [], @@ -445213,7 +444713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 13108275, "featuredRunMedia": null, "reactionVideos": [], @@ -445233,7 +444733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 13108853, "featuredRunMedia": null, "reactionVideos": [], @@ -445253,7 +444753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13109555, "featuredRunMedia": null, "reactionVideos": [], @@ -445273,7 +444773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13110250, "featuredRunMedia": null, "reactionVideos": [], @@ -445293,7 +444793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 13110484, "featuredRunMedia": null, "reactionVideos": [], @@ -445313,7 +444813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 13112388, "featuredRunMedia": null, "reactionVideos": [], @@ -445333,7 +444833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "144170", "time": 13112587, "featuredRunMedia": null, "reactionVideos": [], @@ -445353,7 +444853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 13113819, "featuredRunMedia": null, "reactionVideos": [], @@ -445373,7 +444873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13114186, "featuredRunMedia": null, "reactionVideos": [], @@ -445393,7 +444893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 13115708, "featuredRunMedia": null, "reactionVideos": [], @@ -445413,7 +444913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13116323, "featuredRunMedia": null, "reactionVideos": [], @@ -445433,7 +444933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 13116367, "featuredRunMedia": null, "reactionVideos": [], @@ -445453,7 +444953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 13117133, "featuredRunMedia": null, "reactionVideos": [], @@ -445473,7 +444973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 13119328, "featuredRunMedia": null, "reactionVideos": [], @@ -445493,7 +444993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13120106, "featuredRunMedia": null, "reactionVideos": [], @@ -445513,7 +445013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13120669, "featuredRunMedia": null, "reactionVideos": [], @@ -445533,7 +445033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 13121444, "featuredRunMedia": null, "reactionVideos": [], @@ -445553,7 +445053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 13121743, "featuredRunMedia": null, "reactionVideos": [], @@ -445573,7 +445073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 13122969, "featuredRunMedia": null, "reactionVideos": [], @@ -445593,7 +445093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 13123837, "featuredRunMedia": null, "reactionVideos": [], @@ -445613,7 +445113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 13124179, "featuredRunMedia": null, "reactionVideos": [], @@ -445633,7 +445133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 13124726, "featuredRunMedia": null, "reactionVideos": [], @@ -445653,7 +445153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13125013, "featuredRunMedia": null, "reactionVideos": [], @@ -445673,7 +445173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 13125745, "featuredRunMedia": null, "reactionVideos": [], @@ -445693,7 +445193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 13126615, "featuredRunMedia": null, "reactionVideos": [], @@ -445713,7 +445213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 13126764, "featuredRunMedia": null, "reactionVideos": [], @@ -445733,7 +445233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 13127221, "featuredRunMedia": null, "reactionVideos": [], @@ -445753,7 +445253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 13127843, "featuredRunMedia": null, "reactionVideos": [], @@ -445773,7 +445273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 13128107, "featuredRunMedia": null, "reactionVideos": [], @@ -445793,7 +445293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 13128174, "featuredRunMedia": null, "reactionVideos": [], @@ -445813,7 +445313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 13129307, "featuredRunMedia": null, "reactionVideos": [], @@ -445833,7 +445333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13129405, "featuredRunMedia": null, "reactionVideos": [], @@ -445853,7 +445353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 13130692, "featuredRunMedia": null, "reactionVideos": [], @@ -445873,7 +445373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13130749, "featuredRunMedia": null, "reactionVideos": [], @@ -445893,7 +445393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "144129", "time": 13132831, "featuredRunMedia": null, "reactionVideos": [], @@ -445913,7 +445413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13135240, "featuredRunMedia": null, "reactionVideos": [], @@ -445933,7 +445433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 13136714, "featuredRunMedia": null, "reactionVideos": [], @@ -445953,7 +445453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13136915, "featuredRunMedia": null, "reactionVideos": [], @@ -445973,7 +445473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "144119", "time": 13137342, "featuredRunMedia": null, "reactionVideos": [], @@ -445993,7 +445493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 13137878, "featuredRunMedia": null, "reactionVideos": [], @@ -446013,7 +445513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13138420, "featuredRunMedia": null, "reactionVideos": [], @@ -446033,7 +445533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 13139880, "featuredRunMedia": null, "reactionVideos": [], @@ -446053,7 +445553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 13140745, "featuredRunMedia": null, "reactionVideos": [], @@ -446073,7 +445573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 13140962, "featuredRunMedia": null, "reactionVideos": [], @@ -446093,7 +445593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13141554, "featuredRunMedia": null, "reactionVideos": [], @@ -446113,7 +445613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 309, + "teamId": "144379", "time": 13141601, "featuredRunMedia": null, "reactionVideos": [], @@ -446133,7 +445633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13141659, "featuredRunMedia": null, "reactionVideos": [], @@ -446153,7 +445653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 13142454, "featuredRunMedia": null, "reactionVideos": [], @@ -446173,7 +445673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13142619, "featuredRunMedia": null, "reactionVideos": [], @@ -446193,7 +445693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13142717, "featuredRunMedia": null, "reactionVideos": [], @@ -446213,7 +445713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13143338, "featuredRunMedia": null, "reactionVideos": [], @@ -446233,7 +445733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 13143812, "featuredRunMedia": null, "reactionVideos": [], @@ -446253,7 +445753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 13144616, "featuredRunMedia": null, "reactionVideos": [], @@ -446273,7 +445773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 13144952, "featuredRunMedia": null, "reactionVideos": [], @@ -446293,7 +445793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 13146231, "featuredRunMedia": null, "reactionVideos": [], @@ -446313,7 +445813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13147053, "featuredRunMedia": null, "reactionVideos": [], @@ -446333,7 +445833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13147478, "featuredRunMedia": null, "reactionVideos": [], @@ -446353,7 +445853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 13148051, "featuredRunMedia": null, "reactionVideos": [], @@ -446373,7 +445873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13148738, "featuredRunMedia": null, "reactionVideos": [], @@ -446393,7 +445893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 13151219, "featuredRunMedia": null, "reactionVideos": [], @@ -446413,7 +445913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 13152438, "featuredRunMedia": null, "reactionVideos": [], @@ -446433,7 +445933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 302, + "teamId": "144372", "time": 13154083, "featuredRunMedia": null, "reactionVideos": [], @@ -446453,7 +445953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13155856, "featuredRunMedia": null, "reactionVideos": [], @@ -446473,7 +445973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 13158196, "featuredRunMedia": null, "reactionVideos": [], @@ -446493,7 +445993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 13158416, "featuredRunMedia": null, "reactionVideos": [], @@ -446513,7 +446013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "144231", "time": 13158584, "featuredRunMedia": null, "reactionVideos": [], @@ -446533,7 +446033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13158876, "featuredRunMedia": null, "reactionVideos": [], @@ -446553,7 +446053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "144229", "time": 13159866, "featuredRunMedia": null, "reactionVideos": [], @@ -446573,7 +446073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 13161081, "featuredRunMedia": null, "reactionVideos": [], @@ -446593,7 +446093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 13161500, "featuredRunMedia": null, "reactionVideos": [], @@ -446613,7 +446113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13162135, "featuredRunMedia": null, "reactionVideos": [], @@ -446633,7 +446133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13162357, "featuredRunMedia": null, "reactionVideos": [], @@ -446653,7 +446153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 13162870, "featuredRunMedia": null, "reactionVideos": [], @@ -446673,7 +446173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 13163597, "featuredRunMedia": null, "reactionVideos": [], @@ -446693,7 +446193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 13164048, "featuredRunMedia": null, "reactionVideos": [], @@ -446713,7 +446213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 13166280, "featuredRunMedia": null, "reactionVideos": [], @@ -446733,7 +446233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 13166436, "featuredRunMedia": null, "reactionVideos": [], @@ -446753,7 +446253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13167324, "featuredRunMedia": null, "reactionVideos": [], @@ -446773,7 +446273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13168961, "featuredRunMedia": null, "reactionVideos": [], @@ -446793,7 +446293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 13169437, "featuredRunMedia": null, "reactionVideos": [], @@ -446813,7 +446313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 13170039, "featuredRunMedia": null, "reactionVideos": [], @@ -446833,7 +446333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 13170083, "featuredRunMedia": null, "reactionVideos": [], @@ -446853,7 +446353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 13170651, "featuredRunMedia": null, "reactionVideos": [], @@ -446873,7 +446373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 13170950, "featuredRunMedia": null, "reactionVideos": [], @@ -446897,7 +446397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13173086, "featuredRunMedia": null, "reactionVideos": [], @@ -446917,7 +446417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 13174278, "featuredRunMedia": null, "reactionVideos": [], @@ -446937,7 +446437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13175597, "featuredRunMedia": null, "reactionVideos": [], @@ -446957,7 +446457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 13177067, "featuredRunMedia": null, "reactionVideos": [], @@ -446977,7 +446477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13179324, "featuredRunMedia": null, "reactionVideos": [], @@ -446997,7 +446497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 412, + "teamId": "144482", "time": 13180695, "featuredRunMedia": null, "reactionVideos": [], @@ -447017,7 +446517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13183811, "featuredRunMedia": null, "reactionVideos": [], @@ -447037,7 +446537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 13185423, "featuredRunMedia": null, "reactionVideos": [], @@ -447057,7 +446557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 13185505, "featuredRunMedia": null, "reactionVideos": [], @@ -447077,7 +446577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 13187710, "featuredRunMedia": null, "reactionVideos": [], @@ -447097,7 +446597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "144249", "time": 13190195, "featuredRunMedia": null, "reactionVideos": [], @@ -447117,7 +446617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 13191597, "featuredRunMedia": null, "reactionVideos": [], @@ -447137,7 +446637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13192056, "featuredRunMedia": null, "reactionVideos": [], @@ -447157,7 +446657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13192189, "featuredRunMedia": null, "reactionVideos": [], @@ -447177,7 +446677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 13192798, "featuredRunMedia": null, "reactionVideos": [], @@ -447197,7 +446697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "144087", "time": 13192855, "featuredRunMedia": null, "reactionVideos": [], @@ -447217,7 +446717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 13193193, "featuredRunMedia": null, "reactionVideos": [], @@ -447237,7 +446737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 13193291, "featuredRunMedia": null, "reactionVideos": [], @@ -447257,7 +446757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 13196113, "featuredRunMedia": null, "reactionVideos": [], @@ -447277,7 +446777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13196740, "featuredRunMedia": null, "reactionVideos": [], @@ -447297,7 +446797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 13197723, "featuredRunMedia": null, "reactionVideos": [], @@ -447317,7 +446817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13198601, "featuredRunMedia": null, "reactionVideos": [], @@ -447337,7 +446837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13199011, "featuredRunMedia": null, "reactionVideos": [], @@ -447357,7 +446857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 13200753, "featuredRunMedia": null, "reactionVideos": [], @@ -447377,7 +446877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 13201857, "featuredRunMedia": null, "reactionVideos": [], @@ -447397,7 +446897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 13203784, "featuredRunMedia": null, "reactionVideos": [], @@ -447417,7 +446917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 13205736, "featuredRunMedia": null, "reactionVideos": [], @@ -447437,7 +446937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 13205787, "featuredRunMedia": null, "reactionVideos": [], @@ -447457,7 +446957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 13205892, "featuredRunMedia": null, "reactionVideos": [], @@ -447477,7 +446977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 13205973, "featuredRunMedia": null, "reactionVideos": [], @@ -447497,7 +446997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13206013, "featuredRunMedia": null, "reactionVideos": [], @@ -447517,7 +447017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13207754, "featuredRunMedia": null, "reactionVideos": [], @@ -447537,7 +447037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 13209429, "featuredRunMedia": null, "reactionVideos": [], @@ -447557,7 +447057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 13212227, "featuredRunMedia": null, "reactionVideos": [], @@ -447577,7 +447077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13213104, "featuredRunMedia": null, "reactionVideos": [], @@ -447597,7 +447097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 13213488, "featuredRunMedia": null, "reactionVideos": [], @@ -447617,7 +447117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 13213849, "featuredRunMedia": null, "reactionVideos": [], @@ -447637,7 +447137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13215360, "featuredRunMedia": null, "reactionVideos": [], @@ -447657,7 +447157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13216123, "featuredRunMedia": null, "reactionVideos": [], @@ -447677,7 +447177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13216649, "featuredRunMedia": null, "reactionVideos": [], @@ -447697,7 +447197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 13217622, "featuredRunMedia": null, "reactionVideos": [], @@ -447717,7 +447217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13220462, "featuredRunMedia": null, "reactionVideos": [], @@ -447737,7 +447237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13222181, "featuredRunMedia": null, "reactionVideos": [], @@ -447757,7 +447257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 13222378, "featuredRunMedia": null, "reactionVideos": [], @@ -447777,7 +447277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 13223636, "featuredRunMedia": null, "reactionVideos": [], @@ -447797,7 +447297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 13223914, "featuredRunMedia": null, "reactionVideos": [], @@ -447817,7 +447317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13224588, "featuredRunMedia": null, "reactionVideos": [], @@ -447837,7 +447337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 13224890, "featuredRunMedia": null, "reactionVideos": [], @@ -447857,7 +447357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 13225263, "featuredRunMedia": null, "reactionVideos": [], @@ -447877,7 +447377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 13225742, "featuredRunMedia": null, "reactionVideos": [], @@ -447897,7 +447397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 13227075, "featuredRunMedia": null, "reactionVideos": [], @@ -447917,7 +447417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 13227250, "featuredRunMedia": null, "reactionVideos": [], @@ -447937,7 +447437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13227729, "featuredRunMedia": null, "reactionVideos": [], @@ -447957,7 +447457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "144231", "time": 13227852, "featuredRunMedia": null, "reactionVideos": [], @@ -447977,7 +447477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13228071, "featuredRunMedia": null, "reactionVideos": [], @@ -447997,7 +447497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 13228774, "featuredRunMedia": null, "reactionVideos": [], @@ -448017,7 +447517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 13228970, "featuredRunMedia": null, "reactionVideos": [], @@ -448037,7 +447537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13229011, "featuredRunMedia": null, "reactionVideos": [], @@ -448057,7 +447557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13229121, "featuredRunMedia": null, "reactionVideos": [], @@ -448077,7 +447577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 13229244, "featuredRunMedia": null, "reactionVideos": [], @@ -448097,7 +447597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 13229470, "featuredRunMedia": null, "reactionVideos": [], @@ -448117,7 +447617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 13229677, "featuredRunMedia": null, "reactionVideos": [], @@ -448137,7 +447637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 13230095, "featuredRunMedia": null, "reactionVideos": [], @@ -448157,7 +447657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 13231367, "featuredRunMedia": null, "reactionVideos": [], @@ -448177,7 +447677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13232236, "featuredRunMedia": null, "reactionVideos": [], @@ -448201,7 +447701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 13232902, "featuredRunMedia": null, "reactionVideos": [], @@ -448221,7 +447721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 13232944, "featuredRunMedia": null, "reactionVideos": [], @@ -448241,7 +447741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13233328, "featuredRunMedia": null, "reactionVideos": [], @@ -448261,7 +447761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 13233873, "featuredRunMedia": null, "reactionVideos": [], @@ -448281,7 +447781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 13234273, "featuredRunMedia": null, "reactionVideos": [], @@ -448301,7 +447801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13234522, "featuredRunMedia": null, "reactionVideos": [], @@ -448321,7 +447821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "144114", "time": 13237280, "featuredRunMedia": null, "reactionVideos": [], @@ -448341,7 +447841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 13238271, "featuredRunMedia": null, "reactionVideos": [], @@ -448361,7 +447861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13239097, "featuredRunMedia": null, "reactionVideos": [], @@ -448381,7 +447881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13239743, "featuredRunMedia": null, "reactionVideos": [], @@ -448401,7 +447901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13242622, "featuredRunMedia": null, "reactionVideos": [], @@ -448421,7 +447921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 442, + "teamId": "144512", "time": 13244244, "featuredRunMedia": null, "reactionVideos": [], @@ -448441,7 +447941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 13244775, "featuredRunMedia": null, "reactionVideos": [], @@ -448461,7 +447961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13245428, "featuredRunMedia": null, "reactionVideos": [], @@ -448481,7 +447981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13246603, "featuredRunMedia": null, "reactionVideos": [], @@ -448501,7 +448001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 13246857, "featuredRunMedia": null, "reactionVideos": [], @@ -448521,7 +448021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 13247413, "featuredRunMedia": null, "reactionVideos": [], @@ -448541,7 +448041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13247964, "featuredRunMedia": null, "reactionVideos": [], @@ -448561,7 +448061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13248219, "featuredRunMedia": null, "reactionVideos": [], @@ -448581,7 +448081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 13251239, "featuredRunMedia": null, "reactionVideos": [], @@ -448601,7 +448101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 13253454, "featuredRunMedia": null, "reactionVideos": [], @@ -448621,7 +448121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 309, + "teamId": "144379", "time": 13253955, "featuredRunMedia": null, "reactionVideos": [], @@ -448641,7 +448141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13254559, "featuredRunMedia": null, "reactionVideos": [], @@ -448661,7 +448161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13256387, "featuredRunMedia": null, "reactionVideos": [], @@ -448681,7 +448181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13258545, "featuredRunMedia": null, "reactionVideos": [], @@ -448701,7 +448201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13258941, "featuredRunMedia": null, "reactionVideos": [], @@ -448721,7 +448221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 13260755, "featuredRunMedia": null, "reactionVideos": [], @@ -448741,7 +448241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13264155, "featuredRunMedia": null, "reactionVideos": [], @@ -448761,7 +448261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 389, + "teamId": "144459", "time": 13265839, "featuredRunMedia": null, "reactionVideos": [], @@ -448781,7 +448281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 13266158, "featuredRunMedia": null, "reactionVideos": [], @@ -448801,7 +448301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13266653, "featuredRunMedia": null, "reactionVideos": [], @@ -448821,7 +448321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 13267417, "featuredRunMedia": null, "reactionVideos": [], @@ -448841,7 +448341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13268863, "featuredRunMedia": null, "reactionVideos": [], @@ -448861,7 +448361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 13270733, "featuredRunMedia": null, "reactionVideos": [], @@ -448881,7 +448381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 13272226, "featuredRunMedia": null, "reactionVideos": [], @@ -448901,7 +448401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13272492, "featuredRunMedia": null, "reactionVideos": [], @@ -448921,7 +448421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 13274173, "featuredRunMedia": null, "reactionVideos": [], @@ -448941,7 +448441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13275816, "featuredRunMedia": null, "reactionVideos": [], @@ -448961,7 +448461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13276826, "featuredRunMedia": null, "reactionVideos": [], @@ -448981,7 +448481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "144273", "time": 13277862, "featuredRunMedia": null, "reactionVideos": [], @@ -449001,7 +448501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13277927, "featuredRunMedia": null, "reactionVideos": [], @@ -449021,7 +448521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13278750, "featuredRunMedia": null, "reactionVideos": [], @@ -449041,7 +448541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13279091, "featuredRunMedia": null, "reactionVideos": [], @@ -449061,7 +448561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "144171", "time": 13279359, "featuredRunMedia": null, "reactionVideos": [], @@ -449081,7 +448581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 13280442, "featuredRunMedia": null, "reactionVideos": [], @@ -449101,7 +448601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 13280661, "featuredRunMedia": null, "reactionVideos": [], @@ -449125,7 +448625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13283945, "featuredRunMedia": null, "reactionVideos": [], @@ -449149,7 +448649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13286850, "featuredRunMedia": null, "reactionVideos": [], @@ -449169,7 +448669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 13288329, "featuredRunMedia": null, "reactionVideos": [], @@ -449189,7 +448689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 13290463, "featuredRunMedia": null, "reactionVideos": [], @@ -449209,7 +448709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 13290501, "featuredRunMedia": null, "reactionVideos": [], @@ -449229,7 +448729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 13293542, "featuredRunMedia": null, "reactionVideos": [], @@ -449249,7 +448749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 13295290, "featuredRunMedia": null, "reactionVideos": [], @@ -449269,7 +448769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 13296191, "featuredRunMedia": null, "reactionVideos": [], @@ -449289,7 +448789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 13296509, "featuredRunMedia": null, "reactionVideos": [], @@ -449309,7 +448809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 334, + "teamId": "144404", "time": 13297143, "featuredRunMedia": null, "reactionVideos": [], @@ -449329,7 +448829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 13297659, "featuredRunMedia": null, "reactionVideos": [], @@ -449349,7 +448849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13297719, "featuredRunMedia": null, "reactionVideos": [], @@ -449369,7 +448869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 13297750, "featuredRunMedia": null, "reactionVideos": [], @@ -449389,7 +448889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 13298266, "featuredRunMedia": null, "reactionVideos": [], @@ -449409,7 +448909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 13298873, "featuredRunMedia": null, "reactionVideos": [], @@ -449429,7 +448929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13300932, "featuredRunMedia": null, "reactionVideos": [], @@ -449449,7 +448949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 185, + "teamId": "144255", "time": 13301158, "featuredRunMedia": null, "reactionVideos": [], @@ -449469,7 +448969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 439, + "teamId": "144509", "time": 13301292, "featuredRunMedia": null, "reactionVideos": [], @@ -449489,7 +448989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 13302836, "featuredRunMedia": null, "reactionVideos": [], @@ -449509,7 +449009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13303759, "featuredRunMedia": null, "reactionVideos": [], @@ -449529,7 +449029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 13304064, "featuredRunMedia": null, "reactionVideos": [], @@ -449549,7 +449049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 13304163, "featuredRunMedia": null, "reactionVideos": [], @@ -449569,7 +449069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13307020, "featuredRunMedia": null, "reactionVideos": [], @@ -449589,7 +449089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13307369, "featuredRunMedia": null, "reactionVideos": [], @@ -449609,7 +449109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13307564, "featuredRunMedia": null, "reactionVideos": [], @@ -449629,7 +449129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 13307660, "featuredRunMedia": null, "reactionVideos": [], @@ -449649,7 +449149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13309196, "featuredRunMedia": null, "reactionVideos": [], @@ -449669,7 +449169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "144194", "time": 13310002, "featuredRunMedia": null, "reactionVideos": [], @@ -449689,7 +449189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 13311355, "featuredRunMedia": null, "reactionVideos": [], @@ -449709,7 +449209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 13312455, "featuredRunMedia": null, "reactionVideos": [], @@ -449729,7 +449229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "144187", "time": 13313445, "featuredRunMedia": null, "reactionVideos": [], @@ -449749,7 +449249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13315916, "featuredRunMedia": null, "reactionVideos": [], @@ -449769,7 +449269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13317345, "featuredRunMedia": null, "reactionVideos": [], @@ -449789,7 +449289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 13317540, "featuredRunMedia": null, "reactionVideos": [], @@ -449809,7 +449309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13319386, "featuredRunMedia": null, "reactionVideos": [], @@ -449829,7 +449329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 302, + "teamId": "144372", "time": 13321556, "featuredRunMedia": null, "reactionVideos": [], @@ -449849,7 +449349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 13322102, "featuredRunMedia": null, "reactionVideos": [], @@ -449869,7 +449369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 13322942, "featuredRunMedia": null, "reactionVideos": [], @@ -449889,7 +449389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 13323120, "featuredRunMedia": null, "reactionVideos": [], @@ -449909,7 +449409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13323985, "featuredRunMedia": null, "reactionVideos": [], @@ -449929,7 +449429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 13324622, "featuredRunMedia": null, "reactionVideos": [], @@ -449949,7 +449449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 13324906, "featuredRunMedia": null, "reactionVideos": [], @@ -449969,7 +449469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13328466, "featuredRunMedia": null, "reactionVideos": [], @@ -449989,7 +449489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 13329151, "featuredRunMedia": null, "reactionVideos": [], @@ -450009,7 +449509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13329203, "featuredRunMedia": null, "reactionVideos": [], @@ -450029,7 +449529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 13329540, "featuredRunMedia": null, "reactionVideos": [], @@ -450049,7 +449549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 13330540, "featuredRunMedia": null, "reactionVideos": [], @@ -450069,7 +449569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 13331129, "featuredRunMedia": null, "reactionVideos": [], @@ -450089,7 +449589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13331833, "featuredRunMedia": null, "reactionVideos": [], @@ -450109,7 +449609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 13333132, "featuredRunMedia": null, "reactionVideos": [], @@ -450129,7 +449629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 13333821, "featuredRunMedia": null, "reactionVideos": [], @@ -450149,7 +449649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 13334474, "featuredRunMedia": null, "reactionVideos": [], @@ -450169,7 +449669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "144265", "time": 13335359, "featuredRunMedia": null, "reactionVideos": [], @@ -450189,7 +449689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "144206", "time": 13335842, "featuredRunMedia": null, "reactionVideos": [], @@ -450209,7 +449709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 13336239, "featuredRunMedia": null, "reactionVideos": [], @@ -450229,7 +449729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 13336284, "featuredRunMedia": null, "reactionVideos": [], @@ -450249,7 +449749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 13336784, "featuredRunMedia": null, "reactionVideos": [], @@ -450269,7 +449769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13336930, "featuredRunMedia": null, "reactionVideos": [], @@ -450289,7 +449789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13337705, "featuredRunMedia": null, "reactionVideos": [], @@ -450309,7 +449809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 13338273, "featuredRunMedia": null, "reactionVideos": [], @@ -450329,7 +449829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13338331, "featuredRunMedia": null, "reactionVideos": [], @@ -450349,7 +449849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13338389, "featuredRunMedia": null, "reactionVideos": [], @@ -450369,7 +449869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 13340968, "featuredRunMedia": null, "reactionVideos": [], @@ -450389,7 +449889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 13343939, "featuredRunMedia": null, "reactionVideos": [], @@ -450409,7 +449909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13344314, "featuredRunMedia": null, "reactionVideos": [], @@ -450429,7 +449929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13344924, "featuredRunMedia": null, "reactionVideos": [], @@ -450449,7 +449949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 13346743, "featuredRunMedia": null, "reactionVideos": [], @@ -450469,7 +449969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13347595, "featuredRunMedia": null, "reactionVideos": [], @@ -450489,7 +449989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 13348055, "featuredRunMedia": null, "reactionVideos": [], @@ -450509,7 +450009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "144231", "time": 13349941, "featuredRunMedia": null, "reactionVideos": [], @@ -450529,7 +450029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 309, + "teamId": "144379", "time": 13350321, "featuredRunMedia": null, "reactionVideos": [], @@ -450549,7 +450049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13350705, "featuredRunMedia": null, "reactionVideos": [], @@ -450569,7 +450069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13352106, "featuredRunMedia": null, "reactionVideos": [], @@ -450589,7 +450089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13353181, "featuredRunMedia": null, "reactionVideos": [], @@ -450609,7 +450109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 13353839, "featuredRunMedia": null, "reactionVideos": [], @@ -450629,7 +450129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 13354138, "featuredRunMedia": null, "reactionVideos": [], @@ -450649,7 +450149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 13354170, "featuredRunMedia": null, "reactionVideos": [], @@ -450669,7 +450169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 13354231, "featuredRunMedia": null, "reactionVideos": [], @@ -450689,7 +450189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 13357207, "featuredRunMedia": null, "reactionVideos": [], @@ -450709,7 +450209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "144134", "time": 13357824, "featuredRunMedia": null, "reactionVideos": [], @@ -450729,7 +450229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13358556, "featuredRunMedia": null, "reactionVideos": [], @@ -450749,7 +450249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 13360077, "featuredRunMedia": null, "reactionVideos": [], @@ -450769,7 +450269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 13361166, "featuredRunMedia": null, "reactionVideos": [], @@ -450789,7 +450289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 13362385, "featuredRunMedia": null, "reactionVideos": [], @@ -450809,7 +450309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13362983, "featuredRunMedia": null, "reactionVideos": [], @@ -450829,7 +450329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 371, + "teamId": "144441", "time": 13363057, "featuredRunMedia": null, "reactionVideos": [], @@ -450849,7 +450349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 13363883, "featuredRunMedia": null, "reactionVideos": [], @@ -450869,7 +450369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 13364223, "featuredRunMedia": null, "reactionVideos": [], @@ -450889,7 +450389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 283, + "teamId": "144353", "time": 13365006, "featuredRunMedia": null, "reactionVideos": [], @@ -450909,7 +450409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13368213, "featuredRunMedia": null, "reactionVideos": [], @@ -450929,7 +450429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13368269, "featuredRunMedia": null, "reactionVideos": [], @@ -450949,7 +450449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13368315, "featuredRunMedia": null, "reactionVideos": [], @@ -450969,7 +450469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 13372241, "featuredRunMedia": null, "reactionVideos": [], @@ -450989,7 +450489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 13372278, "featuredRunMedia": null, "reactionVideos": [], @@ -451009,7 +450509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13373245, "featuredRunMedia": null, "reactionVideos": [], @@ -451029,7 +450529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 13374362, "featuredRunMedia": null, "reactionVideos": [], @@ -451049,7 +450549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13376791, "featuredRunMedia": null, "reactionVideos": [], @@ -451069,7 +450569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13377236, "featuredRunMedia": null, "reactionVideos": [], @@ -451089,7 +450589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 399, + "teamId": "144469", "time": 13377730, "featuredRunMedia": null, "reactionVideos": [], @@ -451109,7 +450609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 13378600, "featuredRunMedia": null, "reactionVideos": [], @@ -451129,7 +450629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 13379391, "featuredRunMedia": null, "reactionVideos": [], @@ -451149,7 +450649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 13379575, "featuredRunMedia": null, "reactionVideos": [], @@ -451169,7 +450669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13379793, "featuredRunMedia": null, "reactionVideos": [], @@ -451189,7 +450689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 13381123, "featuredRunMedia": null, "reactionVideos": [], @@ -451209,7 +450709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13381296, "featuredRunMedia": null, "reactionVideos": [], @@ -451229,7 +450729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 13381637, "featuredRunMedia": null, "reactionVideos": [], @@ -451249,7 +450749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 13381714, "featuredRunMedia": null, "reactionVideos": [], @@ -451269,7 +450769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 13381814, "featuredRunMedia": null, "reactionVideos": [], @@ -451289,7 +450789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 13382106, "featuredRunMedia": null, "reactionVideos": [], @@ -451309,7 +450809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 13382138, "featuredRunMedia": null, "reactionVideos": [], @@ -451329,7 +450829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 13384681, "featuredRunMedia": null, "reactionVideos": [], @@ -451349,7 +450849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 13386041, "featuredRunMedia": null, "reactionVideos": [], @@ -451369,7 +450869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13386342, "featuredRunMedia": null, "reactionVideos": [], @@ -451389,7 +450889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13387168, "featuredRunMedia": null, "reactionVideos": [], @@ -451409,7 +450909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 13387441, "featuredRunMedia": null, "reactionVideos": [], @@ -451429,7 +450929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 13387688, "featuredRunMedia": null, "reactionVideos": [], @@ -451449,7 +450949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "144218", "time": 13388182, "featuredRunMedia": null, "reactionVideos": [], @@ -451469,7 +450969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13388996, "featuredRunMedia": null, "reactionVideos": [], @@ -451489,7 +450989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13389053, "featuredRunMedia": null, "reactionVideos": [], @@ -451509,7 +451009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 334, + "teamId": "144404", "time": 13389294, "featuredRunMedia": null, "reactionVideos": [], @@ -451529,7 +451029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 415, + "teamId": "144485", "time": 13391718, "featuredRunMedia": null, "reactionVideos": [], @@ -451549,7 +451049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 13392716, "featuredRunMedia": null, "reactionVideos": [], @@ -451569,7 +451069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 13392916, "featuredRunMedia": null, "reactionVideos": [], @@ -451589,7 +451089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13393746, "featuredRunMedia": null, "reactionVideos": [], @@ -451609,7 +451109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13394243, "featuredRunMedia": null, "reactionVideos": [], @@ -451629,7 +451129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 13394800, "featuredRunMedia": null, "reactionVideos": [], @@ -451649,7 +451149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 13395939, "featuredRunMedia": null, "reactionVideos": [], @@ -451669,7 +451169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 13399193, "featuredRunMedia": null, "reactionVideos": [], @@ -451689,7 +451189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 13399359, "featuredRunMedia": null, "reactionVideos": [], @@ -451709,7 +451209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 13400007, "featuredRunMedia": null, "reactionVideos": [], @@ -451733,7 +451233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13400811, "featuredRunMedia": null, "reactionVideos": [], @@ -451753,7 +451253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 13401018, "featuredRunMedia": null, "reactionVideos": [], @@ -451773,7 +451273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 13401347, "featuredRunMedia": null, "reactionVideos": [], @@ -451793,7 +451293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13403441, "featuredRunMedia": null, "reactionVideos": [], @@ -451813,7 +451313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13406101, "featuredRunMedia": null, "reactionVideos": [], @@ -451833,7 +451333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13406750, "featuredRunMedia": null, "reactionVideos": [], @@ -451853,7 +451353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "144358", "time": 13406809, "featuredRunMedia": null, "reactionVideos": [], @@ -451873,7 +451373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13408489, "featuredRunMedia": null, "reactionVideos": [], @@ -451893,7 +451393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13408870, "featuredRunMedia": null, "reactionVideos": [], @@ -451913,7 +451413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "144177", "time": 13409977, "featuredRunMedia": null, "reactionVideos": [], @@ -451933,7 +451433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 13412251, "featuredRunMedia": null, "reactionVideos": [], @@ -451953,7 +451453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "144189", "time": 13414567, "featuredRunMedia": null, "reactionVideos": [], @@ -451973,7 +451473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 13414938, "featuredRunMedia": null, "reactionVideos": [], @@ -451993,7 +451493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13415105, "featuredRunMedia": null, "reactionVideos": [], @@ -452013,7 +451513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 13415916, "featuredRunMedia": null, "reactionVideos": [], @@ -452033,7 +451533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13416117, "featuredRunMedia": null, "reactionVideos": [], @@ -452053,7 +451553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13418088, "featuredRunMedia": null, "reactionVideos": [], @@ -452073,7 +451573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 13418464, "featuredRunMedia": null, "reactionVideos": [], @@ -452093,7 +451593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "144157", "time": 13418526, "featuredRunMedia": null, "reactionVideos": [], @@ -452113,7 +451613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13418602, "featuredRunMedia": null, "reactionVideos": [], @@ -452133,7 +451633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 13419366, "featuredRunMedia": null, "reactionVideos": [], @@ -452153,7 +451653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13419997, "featuredRunMedia": null, "reactionVideos": [], @@ -452173,7 +451673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 13421896, "featuredRunMedia": null, "reactionVideos": [], @@ -452193,7 +451693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 13422382, "featuredRunMedia": null, "reactionVideos": [], @@ -452213,7 +451713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13424131, "featuredRunMedia": null, "reactionVideos": [], @@ -452233,7 +451733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13424742, "featuredRunMedia": null, "reactionVideos": [], @@ -452253,7 +451753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 13426347, "featuredRunMedia": null, "reactionVideos": [], @@ -452273,7 +451773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 13427303, "featuredRunMedia": null, "reactionVideos": [], @@ -452293,7 +451793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 13430096, "featuredRunMedia": null, "reactionVideos": [], @@ -452313,7 +451813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 13434337, "featuredRunMedia": null, "reactionVideos": [], @@ -452333,7 +451833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 375, + "teamId": "144445", "time": 13435609, "featuredRunMedia": null, "reactionVideos": [], @@ -452353,7 +451853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 13435780, "featuredRunMedia": null, "reactionVideos": [], @@ -452373,7 +451873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 13437278, "featuredRunMedia": null, "reactionVideos": [], @@ -452393,7 +451893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 13437488, "featuredRunMedia": null, "reactionVideos": [], @@ -452413,7 +451913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13438585, "featuredRunMedia": null, "reactionVideos": [], @@ -452437,7 +451937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 13439585, "featuredRunMedia": null, "reactionVideos": [], @@ -452457,7 +451957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 13440550, "featuredRunMedia": null, "reactionVideos": [], @@ -452477,7 +451977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13441157, "featuredRunMedia": null, "reactionVideos": [], @@ -452497,7 +451997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 13444604, "featuredRunMedia": null, "reactionVideos": [], @@ -452517,7 +452017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13444842, "featuredRunMedia": null, "reactionVideos": [], @@ -452537,7 +452037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 13445885, "featuredRunMedia": null, "reactionVideos": [], @@ -452561,7 +452061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 13448057, "featuredRunMedia": null, "reactionVideos": [], @@ -452581,7 +452081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13448178, "featuredRunMedia": null, "reactionVideos": [], @@ -452601,7 +452101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 399, + "teamId": "144469", "time": 13449764, "featuredRunMedia": null, "reactionVideos": [], @@ -452621,7 +452121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 13450645, "featuredRunMedia": null, "reactionVideos": [], @@ -452641,7 +452141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13451081, "featuredRunMedia": null, "reactionVideos": [], @@ -452661,7 +452161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "144265", "time": 13451922, "featuredRunMedia": null, "reactionVideos": [], @@ -452681,7 +452181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 13452375, "featuredRunMedia": null, "reactionVideos": [], @@ -452701,7 +452201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13452922, "featuredRunMedia": null, "reactionVideos": [], @@ -452721,7 +452221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 13453792, "featuredRunMedia": null, "reactionVideos": [], @@ -452741,7 +452241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13454879, "featuredRunMedia": null, "reactionVideos": [], @@ -452761,7 +452261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13454936, "featuredRunMedia": null, "reactionVideos": [], @@ -452781,7 +452281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 13457033, "featuredRunMedia": null, "reactionVideos": [], @@ -452801,7 +452301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13458397, "featuredRunMedia": null, "reactionVideos": [], @@ -452821,7 +452321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 436, + "teamId": "144506", "time": 13458458, "featuredRunMedia": null, "reactionVideos": [], @@ -452841,7 +452341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 13459006, "featuredRunMedia": null, "reactionVideos": [], @@ -452861,7 +452361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "144200", "time": 13459455, "featuredRunMedia": null, "reactionVideos": [], @@ -452881,7 +452381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 13461330, "featuredRunMedia": null, "reactionVideos": [], @@ -452901,7 +452401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13462061, "featuredRunMedia": null, "reactionVideos": [], @@ -452921,7 +452421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 13463230, "featuredRunMedia": null, "reactionVideos": [], @@ -452941,7 +452441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 13464086, "featuredRunMedia": null, "reactionVideos": [], @@ -452961,7 +452461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 13464917, "featuredRunMedia": null, "reactionVideos": [], @@ -452981,7 +452481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 386, + "teamId": "144456", "time": 13465988, "featuredRunMedia": null, "reactionVideos": [], @@ -453001,7 +452501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 13466201, "featuredRunMedia": null, "reactionVideos": [], @@ -453021,7 +452521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 13466929, "featuredRunMedia": null, "reactionVideos": [], @@ -453041,7 +452541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 13468262, "featuredRunMedia": null, "reactionVideos": [], @@ -453061,7 +452561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 13468416, "featuredRunMedia": null, "reactionVideos": [], @@ -453081,7 +452581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 13469121, "featuredRunMedia": null, "reactionVideos": [], @@ -453105,7 +452605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 13472128, "featuredRunMedia": null, "reactionVideos": [], @@ -453125,7 +452625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13472237, "featuredRunMedia": null, "reactionVideos": [], @@ -453145,7 +452645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 13473511, "featuredRunMedia": null, "reactionVideos": [], @@ -453165,7 +452665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13474072, "featuredRunMedia": null, "reactionVideos": [], @@ -453185,7 +452685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13474346, "featuredRunMedia": null, "reactionVideos": [], @@ -453205,7 +452705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 13475043, "featuredRunMedia": null, "reactionVideos": [], @@ -453225,7 +452725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 13475114, "featuredRunMedia": null, "reactionVideos": [], @@ -453245,7 +452745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 13476198, "featuredRunMedia": null, "reactionVideos": [], @@ -453265,7 +452765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13477193, "featuredRunMedia": null, "reactionVideos": [], @@ -453285,7 +452785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13477640, "featuredRunMedia": null, "reactionVideos": [], @@ -453305,7 +452805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 232, + "teamId": "144302", "time": 13478264, "featuredRunMedia": null, "reactionVideos": [], @@ -453325,7 +452825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 13479683, "featuredRunMedia": null, "reactionVideos": [], @@ -453345,7 +452845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13484002, "featuredRunMedia": null, "reactionVideos": [], @@ -453365,7 +452865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13484216, "featuredRunMedia": null, "reactionVideos": [], @@ -453385,7 +452885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13485332, "featuredRunMedia": null, "reactionVideos": [], @@ -453405,7 +452905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13486374, "featuredRunMedia": null, "reactionVideos": [], @@ -453425,7 +452925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 13488068, "featuredRunMedia": null, "reactionVideos": [], @@ -453445,7 +452945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13488190, "featuredRunMedia": null, "reactionVideos": [], @@ -453465,7 +452965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "144103", "time": 13488546, "featuredRunMedia": null, "reactionVideos": [], @@ -453485,7 +452985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 13489253, "featuredRunMedia": null, "reactionVideos": [], @@ -453505,7 +453005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 13490080, "featuredRunMedia": null, "reactionVideos": [], @@ -453525,7 +453025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13491403, "featuredRunMedia": null, "reactionVideos": [], @@ -453545,7 +453045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "144371", "time": 13491515, "featuredRunMedia": null, "reactionVideos": [], @@ -453565,7 +453065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 13494768, "featuredRunMedia": null, "reactionVideos": [], @@ -453585,7 +453085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 13494903, "featuredRunMedia": null, "reactionVideos": [], @@ -453605,7 +453105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13495233, "featuredRunMedia": null, "reactionVideos": [], @@ -453625,7 +453125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 13495668, "featuredRunMedia": null, "reactionVideos": [], @@ -453645,7 +453145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13496069, "featuredRunMedia": null, "reactionVideos": [], @@ -453669,7 +453169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13496843, "featuredRunMedia": null, "reactionVideos": [], @@ -453689,7 +453189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 13497017, "featuredRunMedia": null, "reactionVideos": [], @@ -453709,7 +453209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13501516, "featuredRunMedia": null, "reactionVideos": [], @@ -453729,7 +453229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 13501668, "featuredRunMedia": null, "reactionVideos": [], @@ -453749,7 +453249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 13501814, "featuredRunMedia": null, "reactionVideos": [], @@ -453769,7 +453269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 13503085, "featuredRunMedia": null, "reactionVideos": [], @@ -453793,7 +453293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 13503287, "featuredRunMedia": null, "reactionVideos": [], @@ -453813,7 +453313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 13503404, "featuredRunMedia": null, "reactionVideos": [], @@ -453833,7 +453333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13503606, "featuredRunMedia": null, "reactionVideos": [], @@ -453853,7 +453353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 13505486, "featuredRunMedia": null, "reactionVideos": [], @@ -453873,7 +453373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "144152", "time": 13506547, "featuredRunMedia": null, "reactionVideos": [], @@ -453893,7 +453393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 13507236, "featuredRunMedia": null, "reactionVideos": [], @@ -453913,7 +453413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "144240", "time": 13507886, "featuredRunMedia": null, "reactionVideos": [], @@ -453933,7 +453433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 13508306, "featuredRunMedia": null, "reactionVideos": [], @@ -453953,7 +453453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13508749, "featuredRunMedia": null, "reactionVideos": [], @@ -453973,7 +453473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13509703, "featuredRunMedia": null, "reactionVideos": [], @@ -453993,7 +453493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 13512475, "featuredRunMedia": null, "reactionVideos": [], @@ -454013,7 +453513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "144206", "time": 13513671, "featuredRunMedia": null, "reactionVideos": [], @@ -454033,7 +453533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 13514607, "featuredRunMedia": null, "reactionVideos": [], @@ -454053,7 +453553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 236, + "teamId": "144306", "time": 13514683, "featuredRunMedia": null, "reactionVideos": [], @@ -454073,7 +453573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 13516284, "featuredRunMedia": null, "reactionVideos": [], @@ -454093,7 +453593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 13518183, "featuredRunMedia": null, "reactionVideos": [], @@ -454113,7 +453613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13518806, "featuredRunMedia": null, "reactionVideos": [], @@ -454133,7 +453633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 13521718, "featuredRunMedia": null, "reactionVideos": [], @@ -454153,7 +453653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13522780, "featuredRunMedia": null, "reactionVideos": [], @@ -454173,7 +453673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 13522898, "featuredRunMedia": null, "reactionVideos": [], @@ -454193,7 +453693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 13524812, "featuredRunMedia": null, "reactionVideos": [], @@ -454213,7 +453713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 13525017, "featuredRunMedia": null, "reactionVideos": [], @@ -454233,7 +453733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13525700, "featuredRunMedia": null, "reactionVideos": [], @@ -454253,7 +453753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 13527014, "featuredRunMedia": null, "reactionVideos": [], @@ -454273,7 +453773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 13529977, "featuredRunMedia": null, "reactionVideos": [], @@ -454293,7 +453793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 13530990, "featuredRunMedia": null, "reactionVideos": [], @@ -454313,7 +453813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 13532060, "featuredRunMedia": null, "reactionVideos": [], @@ -454333,7 +453833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 13534008, "featuredRunMedia": null, "reactionVideos": [], @@ -454353,7 +453853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 13537131, "featuredRunMedia": null, "reactionVideos": [], @@ -454373,7 +453873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 383, + "teamId": "144453", "time": 13538906, "featuredRunMedia": null, "reactionVideos": [], @@ -454393,7 +453893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 13539563, "featuredRunMedia": null, "reactionVideos": [], @@ -454413,7 +453913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 13540938, "featuredRunMedia": null, "reactionVideos": [], @@ -454433,7 +453933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13541239, "featuredRunMedia": null, "reactionVideos": [], @@ -454453,7 +453953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 13541935, "featuredRunMedia": null, "reactionVideos": [], @@ -454473,7 +453973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 13543499, "featuredRunMedia": null, "reactionVideos": [], @@ -454493,7 +453993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13543738, "featuredRunMedia": null, "reactionVideos": [], @@ -454513,7 +454013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 13546369, "featuredRunMedia": null, "reactionVideos": [], @@ -454533,7 +454033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13547282, "featuredRunMedia": null, "reactionVideos": [], @@ -454553,7 +454053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 13552764, "featuredRunMedia": null, "reactionVideos": [], @@ -454573,7 +454073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13554336, "featuredRunMedia": null, "reactionVideos": [], @@ -454593,7 +454093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 13556092, "featuredRunMedia": null, "reactionVideos": [], @@ -454613,7 +454113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 362, + "teamId": "144432", "time": 13557198, "featuredRunMedia": null, "reactionVideos": [], @@ -454633,7 +454133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 13557286, "featuredRunMedia": null, "reactionVideos": [], @@ -454653,7 +454153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 13561654, "featuredRunMedia": null, "reactionVideos": [], @@ -454673,7 +454173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 190, + "teamId": "144260", "time": 13561701, "featuredRunMedia": null, "reactionVideos": [], @@ -454693,7 +454193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 13563722, "featuredRunMedia": null, "reactionVideos": [], @@ -454713,7 +454213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13564021, "featuredRunMedia": null, "reactionVideos": [], @@ -454733,7 +454233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 13565168, "featuredRunMedia": null, "reactionVideos": [], @@ -454753,7 +454253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "144398", "time": 13565431, "featuredRunMedia": null, "reactionVideos": [], @@ -454773,7 +454273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 13565551, "featuredRunMedia": null, "reactionVideos": [], @@ -454793,7 +454293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 13565647, "featuredRunMedia": null, "reactionVideos": [], @@ -454813,7 +454313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 13565701, "featuredRunMedia": null, "reactionVideos": [], @@ -454833,7 +454333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13568182, "featuredRunMedia": null, "reactionVideos": [], @@ -454853,7 +454353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 13568213, "featuredRunMedia": null, "reactionVideos": [], @@ -454873,7 +454373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 13568665, "featuredRunMedia": null, "reactionVideos": [], @@ -454893,7 +454393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13569428, "featuredRunMedia": null, "reactionVideos": [], @@ -454913,7 +454413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 13569471, "featuredRunMedia": null, "reactionVideos": [], @@ -454933,7 +454433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13571561, "featuredRunMedia": null, "reactionVideos": [], @@ -454953,7 +454453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 13571812, "featuredRunMedia": null, "reactionVideos": [], @@ -454973,7 +454473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 13573377, "featuredRunMedia": null, "reactionVideos": [], @@ -454993,7 +454493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "144206", "time": 13575344, "featuredRunMedia": null, "reactionVideos": [], @@ -455013,7 +454513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 13575682, "featuredRunMedia": null, "reactionVideos": [], @@ -455033,7 +454533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13579351, "featuredRunMedia": null, "reactionVideos": [], @@ -455053,7 +454553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 13584239, "featuredRunMedia": null, "reactionVideos": [], @@ -455077,7 +454577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13584546, "featuredRunMedia": null, "reactionVideos": [], @@ -455097,7 +454597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 13584673, "featuredRunMedia": null, "reactionVideos": [], @@ -455117,7 +454617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13585136, "featuredRunMedia": null, "reactionVideos": [], @@ -455137,7 +454637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13585700, "featuredRunMedia": null, "reactionVideos": [], @@ -455157,7 +454657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13585771, "featuredRunMedia": null, "reactionVideos": [], @@ -455177,7 +454677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13586138, "featuredRunMedia": null, "reactionVideos": [], @@ -455197,7 +454697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13586178, "featuredRunMedia": null, "reactionVideos": [], @@ -455217,7 +454717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "144154", "time": 13588988, "featuredRunMedia": null, "reactionVideos": [], @@ -455237,7 +454737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 13589712, "featuredRunMedia": null, "reactionVideos": [], @@ -455257,7 +454757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "144142", "time": 13590541, "featuredRunMedia": null, "reactionVideos": [], @@ -455277,7 +454777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "144231", "time": 13591197, "featuredRunMedia": null, "reactionVideos": [], @@ -455297,7 +454797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13591607, "featuredRunMedia": null, "reactionVideos": [], @@ -455317,7 +454817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13591917, "featuredRunMedia": null, "reactionVideos": [], @@ -455337,7 +454837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13593445, "featuredRunMedia": null, "reactionVideos": [], @@ -455357,7 +454857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 13594153, "featuredRunMedia": null, "reactionVideos": [], @@ -455377,7 +454877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13597196, "featuredRunMedia": null, "reactionVideos": [], @@ -455397,7 +454897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 13598770, "featuredRunMedia": null, "reactionVideos": [], @@ -455417,7 +454917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13599576, "featuredRunMedia": null, "reactionVideos": [], @@ -455437,7 +454937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 13600432, "featuredRunMedia": null, "reactionVideos": [], @@ -455457,7 +454957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 379, + "teamId": "144449", "time": 13601932, "featuredRunMedia": null, "reactionVideos": [], @@ -455477,7 +454977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13603084, "featuredRunMedia": null, "reactionVideos": [], @@ -455497,7 +454997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 13603143, "featuredRunMedia": null, "reactionVideos": [], @@ -455517,7 +455017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 13603461, "featuredRunMedia": null, "reactionVideos": [], @@ -455537,7 +455037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 13604329, "featuredRunMedia": null, "reactionVideos": [], @@ -455557,7 +455057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 13605101, "featuredRunMedia": null, "reactionVideos": [], @@ -455577,7 +455077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "144154", "time": 13605626, "featuredRunMedia": null, "reactionVideos": [], @@ -455597,7 +455097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13605998, "featuredRunMedia": null, "reactionVideos": [], @@ -455617,7 +455117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13606405, "featuredRunMedia": null, "reactionVideos": [], @@ -455637,7 +455137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13606971, "featuredRunMedia": null, "reactionVideos": [], @@ -455657,7 +455157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 13607258, "featuredRunMedia": null, "reactionVideos": [], @@ -455677,7 +455177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13608492, "featuredRunMedia": null, "reactionVideos": [], @@ -455697,7 +455197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 13610049, "featuredRunMedia": null, "reactionVideos": [], @@ -455717,7 +455217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13610471, "featuredRunMedia": null, "reactionVideos": [], @@ -455737,7 +455237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13610523, "featuredRunMedia": null, "reactionVideos": [], @@ -455757,7 +455257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 13610708, "featuredRunMedia": null, "reactionVideos": [], @@ -455777,7 +455277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 13610796, "featuredRunMedia": null, "reactionVideos": [], @@ -455797,7 +455297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 13611682, "featuredRunMedia": null, "reactionVideos": [], @@ -455817,7 +455317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13611970, "featuredRunMedia": null, "reactionVideos": [], @@ -455837,7 +455337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13612181, "featuredRunMedia": null, "reactionVideos": [], @@ -455857,7 +455357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 13615917, "featuredRunMedia": null, "reactionVideos": [], @@ -455877,7 +455377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 13618704, "featuredRunMedia": null, "reactionVideos": [], @@ -455897,7 +455397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 13618853, "featuredRunMedia": null, "reactionVideos": [], @@ -455917,7 +455417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 13619124, "featuredRunMedia": null, "reactionVideos": [], @@ -455937,7 +455437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13621419, "featuredRunMedia": null, "reactionVideos": [], @@ -455957,7 +455457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13621726, "featuredRunMedia": null, "reactionVideos": [], @@ -455977,7 +455477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 13621961, "featuredRunMedia": null, "reactionVideos": [], @@ -455997,7 +455497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 13622521, "featuredRunMedia": null, "reactionVideos": [], @@ -456017,7 +455517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "144313", "time": 13622804, "featuredRunMedia": null, "reactionVideos": [], @@ -456037,7 +455537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "144237", "time": 13623609, "featuredRunMedia": null, "reactionVideos": [], @@ -456057,7 +455557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "144371", "time": 13627566, "featuredRunMedia": null, "reactionVideos": [], @@ -456077,7 +455577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13629757, "featuredRunMedia": null, "reactionVideos": [], @@ -456097,7 +455597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 381, + "teamId": "144451", "time": 13631568, "featuredRunMedia": null, "reactionVideos": [], @@ -456117,7 +455617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 13633051, "featuredRunMedia": null, "reactionVideos": [], @@ -456137,7 +455637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "144285", "time": 13635250, "featuredRunMedia": null, "reactionVideos": [], @@ -456157,7 +455657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13635392, "featuredRunMedia": null, "reactionVideos": [], @@ -456177,7 +455677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "144152", "time": 13636497, "featuredRunMedia": null, "reactionVideos": [], @@ -456197,7 +455697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13637250, "featuredRunMedia": null, "reactionVideos": [], @@ -456217,7 +455717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13637539, "featuredRunMedia": null, "reactionVideos": [], @@ -456237,7 +455737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 13638735, "featuredRunMedia": null, "reactionVideos": [], @@ -456257,7 +455757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13640645, "featuredRunMedia": null, "reactionVideos": [], @@ -456277,7 +455777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 13642889, "featuredRunMedia": null, "reactionVideos": [], @@ -456297,7 +455797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 13643153, "featuredRunMedia": null, "reactionVideos": [], @@ -456317,7 +455817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13644761, "featuredRunMedia": null, "reactionVideos": [], @@ -456337,7 +455837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 13645177, "featuredRunMedia": null, "reactionVideos": [], @@ -456357,7 +455857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13645995, "featuredRunMedia": null, "reactionVideos": [], @@ -456377,7 +455877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 13647176, "featuredRunMedia": null, "reactionVideos": [], @@ -456397,7 +455897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13650447, "featuredRunMedia": null, "reactionVideos": [], @@ -456417,7 +455917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 13651088, "featuredRunMedia": null, "reactionVideos": [], @@ -456437,7 +455937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13651191, "featuredRunMedia": null, "reactionVideos": [], @@ -456457,7 +455957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 13651568, "featuredRunMedia": null, "reactionVideos": [], @@ -456477,7 +455977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13653137, "featuredRunMedia": null, "reactionVideos": [], @@ -456497,7 +455997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13653984, "featuredRunMedia": null, "reactionVideos": [], @@ -456517,7 +456017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 13654089, "featuredRunMedia": null, "reactionVideos": [], @@ -456537,7 +456037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 13654565, "featuredRunMedia": null, "reactionVideos": [], @@ -456557,7 +456057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13655388, "featuredRunMedia": null, "reactionVideos": [], @@ -456577,7 +456077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13657208, "featuredRunMedia": null, "reactionVideos": [], @@ -456597,7 +456097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13657527, "featuredRunMedia": null, "reactionVideos": [], @@ -456617,7 +456117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 13658377, "featuredRunMedia": null, "reactionVideos": [], @@ -456637,7 +456137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13658599, "featuredRunMedia": null, "reactionVideos": [], @@ -456657,7 +456157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 13659645, "featuredRunMedia": null, "reactionVideos": [], @@ -456677,7 +456177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 13661508, "featuredRunMedia": null, "reactionVideos": [], @@ -456697,7 +456197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 13662477, "featuredRunMedia": null, "reactionVideos": [], @@ -456717,7 +456217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13663193, "featuredRunMedia": null, "reactionVideos": [], @@ -456737,7 +456237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 13665686, "featuredRunMedia": null, "reactionVideos": [], @@ -456757,7 +456257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 414, + "teamId": "144484", "time": 13666900, "featuredRunMedia": null, "reactionVideos": [], @@ -456777,7 +456277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "144295", "time": 13666984, "featuredRunMedia": null, "reactionVideos": [], @@ -456797,7 +456297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13667057, "featuredRunMedia": null, "reactionVideos": [], @@ -456817,7 +456317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 13667451, "featuredRunMedia": null, "reactionVideos": [], @@ -456837,7 +456337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 13667984, "featuredRunMedia": null, "reactionVideos": [], @@ -456857,7 +456357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 13668499, "featuredRunMedia": null, "reactionVideos": [], @@ -456877,7 +456377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "144398", "time": 13670172, "featuredRunMedia": null, "reactionVideos": [], @@ -456897,7 +456397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 13670276, "featuredRunMedia": null, "reactionVideos": [], @@ -456917,7 +456417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 13671020, "featuredRunMedia": null, "reactionVideos": [], @@ -456937,7 +456437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 13671751, "featuredRunMedia": null, "reactionVideos": [], @@ -456957,7 +456457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 13673345, "featuredRunMedia": null, "reactionVideos": [], @@ -456977,7 +456477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 13675006, "featuredRunMedia": null, "reactionVideos": [], @@ -456997,7 +456497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 13675209, "featuredRunMedia": null, "reactionVideos": [], @@ -457017,7 +456517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13678349, "featuredRunMedia": null, "reactionVideos": [], @@ -457037,7 +456537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13679156, "featuredRunMedia": null, "reactionVideos": [], @@ -457057,7 +456557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 13679261, "featuredRunMedia": null, "reactionVideos": [], @@ -457077,7 +456577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13680051, "featuredRunMedia": null, "reactionVideos": [], @@ -457097,7 +456597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "144398", "time": 13681107, "featuredRunMedia": null, "reactionVideos": [], @@ -457117,7 +456617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 13681946, "featuredRunMedia": null, "reactionVideos": [], @@ -457137,7 +456637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 13683351, "featuredRunMedia": null, "reactionVideos": [], @@ -457157,7 +456657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 13684978, "featuredRunMedia": null, "reactionVideos": [], @@ -457177,7 +456677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 13686850, "featuredRunMedia": null, "reactionVideos": [], @@ -457197,7 +456697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13688652, "featuredRunMedia": null, "reactionVideos": [], @@ -457217,7 +456717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 13690346, "featuredRunMedia": null, "reactionVideos": [], @@ -457237,7 +456737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 13692629, "featuredRunMedia": null, "reactionVideos": [], @@ -457257,7 +456757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13693109, "featuredRunMedia": null, "reactionVideos": [], @@ -457277,7 +456777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "144152", "time": 13696430, "featuredRunMedia": null, "reactionVideos": [], @@ -457297,7 +456797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 0, + "teamId": "144070", "time": 13697543, "featuredRunMedia": null, "reactionVideos": [], @@ -457317,7 +456817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13698008, "featuredRunMedia": null, "reactionVideos": [], @@ -457337,7 +456837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 13700743, "featuredRunMedia": null, "reactionVideos": [], @@ -457357,7 +456857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 13701265, "featuredRunMedia": null, "reactionVideos": [], @@ -457377,7 +456877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 13703082, "featuredRunMedia": null, "reactionVideos": [], @@ -457397,7 +456897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 13703189, "featuredRunMedia": null, "reactionVideos": [], @@ -457417,7 +456917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 13704072, "featuredRunMedia": null, "reactionVideos": [], @@ -457437,7 +456937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13704153, "featuredRunMedia": null, "reactionVideos": [], @@ -457457,7 +456957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 13705529, "featuredRunMedia": null, "reactionVideos": [], @@ -457477,7 +456977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 13707217, "featuredRunMedia": null, "reactionVideos": [], @@ -457497,7 +456997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13708751, "featuredRunMedia": null, "reactionVideos": [], @@ -457517,7 +457017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 13709456, "featuredRunMedia": null, "reactionVideos": [], @@ -457537,7 +457037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 13710038, "featuredRunMedia": null, "reactionVideos": [], @@ -457557,7 +457057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13710095, "featuredRunMedia": null, "reactionVideos": [], @@ -457577,7 +457077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13712344, "featuredRunMedia": null, "reactionVideos": [], @@ -457597,7 +457097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13712637, "featuredRunMedia": null, "reactionVideos": [], @@ -457617,7 +457117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13713031, "featuredRunMedia": null, "reactionVideos": [], @@ -457637,7 +457137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 13713081, "featuredRunMedia": null, "reactionVideos": [], @@ -457657,7 +457157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13713145, "featuredRunMedia": null, "reactionVideos": [], @@ -457677,7 +457177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13713345, "featuredRunMedia": null, "reactionVideos": [], @@ -457697,7 +457197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 13715787, "featuredRunMedia": null, "reactionVideos": [], @@ -457717,7 +457217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13716925, "featuredRunMedia": null, "reactionVideos": [], @@ -457737,7 +457237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 13717511, "featuredRunMedia": null, "reactionVideos": [], @@ -457757,7 +457257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 13717807, "featuredRunMedia": null, "reactionVideos": [], @@ -457777,7 +457277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 13719751, "featuredRunMedia": null, "reactionVideos": [], @@ -457797,7 +457297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 13719788, "featuredRunMedia": null, "reactionVideos": [], @@ -457817,7 +457317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 13721758, "featuredRunMedia": null, "reactionVideos": [], @@ -457837,7 +457337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13722798, "featuredRunMedia": null, "reactionVideos": [], @@ -457857,7 +457357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 13723209, "featuredRunMedia": null, "reactionVideos": [], @@ -457877,7 +457377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 393, + "teamId": "144463", "time": 13723933, "featuredRunMedia": null, "reactionVideos": [], @@ -457897,7 +457397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13724273, "featuredRunMedia": null, "reactionVideos": [], @@ -457917,7 +457417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13725170, "featuredRunMedia": null, "reactionVideos": [], @@ -457937,7 +457437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13728686, "featuredRunMedia": null, "reactionVideos": [], @@ -457957,7 +457457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13729073, "featuredRunMedia": null, "reactionVideos": [], @@ -457977,7 +457477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13729871, "featuredRunMedia": null, "reactionVideos": [], @@ -457997,7 +457497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 13730306, "featuredRunMedia": null, "reactionVideos": [], @@ -458017,7 +457517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13731117, "featuredRunMedia": null, "reactionVideos": [], @@ -458037,7 +457537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "144358", "time": 13732527, "featuredRunMedia": null, "reactionVideos": [], @@ -458057,7 +457557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 13733953, "featuredRunMedia": null, "reactionVideos": [], @@ -458081,7 +457581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 13734050, "featuredRunMedia": null, "reactionVideos": [], @@ -458101,7 +457601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13735979, "featuredRunMedia": null, "reactionVideos": [], @@ -458121,7 +457621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 13736275, "featuredRunMedia": null, "reactionVideos": [], @@ -458141,7 +457641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 13736700, "featuredRunMedia": null, "reactionVideos": [], @@ -458161,7 +457661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 13738540, "featuredRunMedia": null, "reactionVideos": [], @@ -458181,7 +457681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 13738879, "featuredRunMedia": null, "reactionVideos": [], @@ -458201,7 +457701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13739446, "featuredRunMedia": null, "reactionVideos": [], @@ -458221,7 +457721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13743622, "featuredRunMedia": null, "reactionVideos": [], @@ -458245,7 +457745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 13743975, "featuredRunMedia": null, "reactionVideos": [], @@ -458265,7 +457765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13744213, "featuredRunMedia": null, "reactionVideos": [], @@ -458285,7 +457785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 13744634, "featuredRunMedia": null, "reactionVideos": [], @@ -458305,7 +457805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13745498, "featuredRunMedia": null, "reactionVideos": [], @@ -458325,7 +457825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 13746179, "featuredRunMedia": null, "reactionVideos": [], @@ -458345,7 +457845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 13748309, "featuredRunMedia": null, "reactionVideos": [], @@ -458365,7 +457865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 13748366, "featuredRunMedia": null, "reactionVideos": [], @@ -458385,7 +457885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 13749914, "featuredRunMedia": null, "reactionVideos": [], @@ -458405,7 +457905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 13750397, "featuredRunMedia": null, "reactionVideos": [], @@ -458429,7 +457929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 13750537, "featuredRunMedia": null, "reactionVideos": [], @@ -458449,7 +457949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13750830, "featuredRunMedia": null, "reactionVideos": [], @@ -458469,7 +457969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13751137, "featuredRunMedia": null, "reactionVideos": [], @@ -458489,7 +457989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13751356, "featuredRunMedia": null, "reactionVideos": [], @@ -458509,7 +458009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 13751916, "featuredRunMedia": null, "reactionVideos": [], @@ -458529,7 +458029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "144121", "time": 13751979, "featuredRunMedia": null, "reactionVideos": [], @@ -458549,7 +458049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 13753197, "featuredRunMedia": null, "reactionVideos": [], @@ -458569,7 +458069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 13753854, "featuredRunMedia": null, "reactionVideos": [], @@ -458589,7 +458089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 13754406, "featuredRunMedia": null, "reactionVideos": [], @@ -458609,7 +458109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 222, + "teamId": "144292", "time": 13756219, "featuredRunMedia": null, "reactionVideos": [], @@ -458629,7 +458129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 13758060, "featuredRunMedia": null, "reactionVideos": [], @@ -458649,7 +458149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "144398", "time": 13758588, "featuredRunMedia": null, "reactionVideos": [], @@ -458669,7 +458169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13760509, "featuredRunMedia": null, "reactionVideos": [], @@ -458689,7 +458189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13760764, "featuredRunMedia": null, "reactionVideos": [], @@ -458709,7 +458209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 13761226, "featuredRunMedia": null, "reactionVideos": [], @@ -458729,7 +458229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 13761281, "featuredRunMedia": null, "reactionVideos": [], @@ -458749,7 +458249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 13762408, "featuredRunMedia": null, "reactionVideos": [], @@ -458769,7 +458269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 13762666, "featuredRunMedia": null, "reactionVideos": [], @@ -458789,7 +458289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13762926, "featuredRunMedia": null, "reactionVideos": [], @@ -458809,7 +458309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 13763329, "featuredRunMedia": null, "reactionVideos": [], @@ -458829,7 +458329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 13766300, "featuredRunMedia": null, "reactionVideos": [], @@ -458849,7 +458349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 13767661, "featuredRunMedia": null, "reactionVideos": [], @@ -458869,7 +458369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13768139, "featuredRunMedia": null, "reactionVideos": [], @@ -458889,7 +458389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 13769656, "featuredRunMedia": null, "reactionVideos": [], @@ -458909,7 +458409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13769768, "featuredRunMedia": null, "reactionVideos": [], @@ -458929,7 +458429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 13769828, "featuredRunMedia": null, "reactionVideos": [], @@ -458949,7 +458449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13771769, "featuredRunMedia": null, "reactionVideos": [], @@ -458969,7 +458469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 13772942, "featuredRunMedia": null, "reactionVideos": [], @@ -458989,7 +458489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 13773158, "featuredRunMedia": null, "reactionVideos": [], @@ -459009,7 +458509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13775337, "featuredRunMedia": null, "reactionVideos": [], @@ -459029,7 +458529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 13776389, "featuredRunMedia": null, "reactionVideos": [], @@ -459053,7 +458553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13776499, "featuredRunMedia": null, "reactionVideos": [], @@ -459073,7 +458573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 13780853, "featuredRunMedia": null, "reactionVideos": [], @@ -459093,7 +458593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 13781019, "featuredRunMedia": null, "reactionVideos": [], @@ -459113,7 +458613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13782165, "featuredRunMedia": null, "reactionVideos": [], @@ -459133,7 +458633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 13782906, "featuredRunMedia": null, "reactionVideos": [], @@ -459153,7 +458653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13784580, "featuredRunMedia": null, "reactionVideos": [], @@ -459173,7 +458673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13785025, "featuredRunMedia": null, "reactionVideos": [], @@ -459193,7 +458693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 13786560, "featuredRunMedia": null, "reactionVideos": [], @@ -459213,7 +458713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13787576, "featuredRunMedia": null, "reactionVideos": [], @@ -459233,7 +458733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 13788228, "featuredRunMedia": null, "reactionVideos": [], @@ -459257,7 +458757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13788638, "featuredRunMedia": null, "reactionVideos": [], @@ -459277,7 +458777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 13789926, "featuredRunMedia": null, "reactionVideos": [], @@ -459297,7 +458797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13790541, "featuredRunMedia": null, "reactionVideos": [], @@ -459317,7 +458817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "144152", "time": 13793014, "featuredRunMedia": null, "reactionVideos": [], @@ -459337,7 +458837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 13793074, "featuredRunMedia": null, "reactionVideos": [], @@ -459357,7 +458857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 13794187, "featuredRunMedia": null, "reactionVideos": [], @@ -459377,7 +458877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13795246, "featuredRunMedia": null, "reactionVideos": [], @@ -459397,7 +458897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13795369, "featuredRunMedia": null, "reactionVideos": [], @@ -459417,7 +458917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 13796503, "featuredRunMedia": null, "reactionVideos": [], @@ -459441,7 +458941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 13797757, "featuredRunMedia": null, "reactionVideos": [], @@ -459461,7 +458961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 13798137, "featuredRunMedia": null, "reactionVideos": [], @@ -459481,7 +458981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13798298, "featuredRunMedia": null, "reactionVideos": [], @@ -459505,7 +459005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13798920, "featuredRunMedia": null, "reactionVideos": [], @@ -459525,7 +459025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 13799218, "featuredRunMedia": null, "reactionVideos": [], @@ -459545,7 +459045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 13799634, "featuredRunMedia": null, "reactionVideos": [], @@ -459565,7 +459065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 208, + "teamId": "144278", "time": 13800431, "featuredRunMedia": null, "reactionVideos": [], @@ -459585,7 +459085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 13800789, "featuredRunMedia": null, "reactionVideos": [], @@ -459605,7 +459105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 420, + "teamId": "144490", "time": 13800830, "featuredRunMedia": null, "reactionVideos": [], @@ -459625,7 +459125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "144132", "time": 13801809, "featuredRunMedia": null, "reactionVideos": [], @@ -459645,7 +459145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 13802808, "featuredRunMedia": null, "reactionVideos": [], @@ -459665,7 +459165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 13804011, "featuredRunMedia": null, "reactionVideos": [], @@ -459685,7 +459185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 295, + "teamId": "144365", "time": 13805111, "featuredRunMedia": null, "reactionVideos": [], @@ -459705,7 +459205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "144324", "time": 13805161, "featuredRunMedia": null, "reactionVideos": [], @@ -459725,7 +459225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 13805402, "featuredRunMedia": null, "reactionVideos": [], @@ -459745,7 +459245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 141, + "teamId": "144211", "time": 13805821, "featuredRunMedia": null, "reactionVideos": [], @@ -459765,7 +459265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 13806568, "featuredRunMedia": null, "reactionVideos": [], @@ -459785,7 +459285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 13807601, "featuredRunMedia": null, "reactionVideos": [], @@ -459805,7 +459305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13808449, "featuredRunMedia": null, "reactionVideos": [], @@ -459825,7 +459325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "144154", "time": 13808516, "featuredRunMedia": null, "reactionVideos": [], @@ -459845,7 +459345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13808859, "featuredRunMedia": null, "reactionVideos": [], @@ -459865,7 +459365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13809908, "featuredRunMedia": null, "reactionVideos": [], @@ -459885,7 +459385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 13810332, "featuredRunMedia": null, "reactionVideos": [], @@ -459909,7 +459409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 13810510, "featuredRunMedia": null, "reactionVideos": [], @@ -459929,7 +459429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13810569, "featuredRunMedia": null, "reactionVideos": [], @@ -459949,7 +459449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 13810988, "featuredRunMedia": null, "reactionVideos": [], @@ -459969,7 +459469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 13812104, "featuredRunMedia": null, "reactionVideos": [], @@ -459989,7 +459489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13812692, "featuredRunMedia": null, "reactionVideos": [], @@ -460009,7 +459509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "144244", "time": 13812957, "featuredRunMedia": null, "reactionVideos": [], @@ -460029,7 +459529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 13813247, "featuredRunMedia": null, "reactionVideos": [], @@ -460049,7 +459549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 13813667, "featuredRunMedia": null, "reactionVideos": [], @@ -460069,7 +459569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 13814776, "featuredRunMedia": null, "reactionVideos": [], @@ -460089,7 +459589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 13816659, "featuredRunMedia": null, "reactionVideos": [], @@ -460109,7 +459609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13816870, "featuredRunMedia": null, "reactionVideos": [], @@ -460129,7 +459629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 13817449, "featuredRunMedia": null, "reactionVideos": [], @@ -460153,7 +459653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 13817667, "featuredRunMedia": null, "reactionVideos": [], @@ -460173,7 +459673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 13818248, "featuredRunMedia": null, "reactionVideos": [], @@ -460193,7 +459693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 13818463, "featuredRunMedia": null, "reactionVideos": [], @@ -460213,7 +459713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13818693, "featuredRunMedia": null, "reactionVideos": [], @@ -460233,7 +459733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 414, + "teamId": "144484", "time": 13819165, "featuredRunMedia": null, "reactionVideos": [], @@ -460253,7 +459753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "144411", "time": 13820089, "featuredRunMedia": null, "reactionVideos": [], @@ -460273,7 +459773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 13820148, "featuredRunMedia": null, "reactionVideos": [], @@ -460293,7 +459793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 440, + "teamId": "144510", "time": 13820197, "featuredRunMedia": null, "reactionVideos": [], @@ -460313,7 +459813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 13820326, "featuredRunMedia": null, "reactionVideos": [], @@ -460333,7 +459833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 13820379, "featuredRunMedia": null, "reactionVideos": [], @@ -460353,7 +459853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13821098, "featuredRunMedia": null, "reactionVideos": [], @@ -460373,7 +459873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 13821556, "featuredRunMedia": null, "reactionVideos": [], @@ -460393,7 +459893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 13822850, "featuredRunMedia": null, "reactionVideos": [], @@ -460413,7 +459913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "144358", "time": 13823746, "featuredRunMedia": null, "reactionVideos": [], @@ -460433,7 +459933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13823872, "featuredRunMedia": null, "reactionVideos": [], @@ -460453,7 +459953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 286, + "teamId": "144356", "time": 13825853, "featuredRunMedia": null, "reactionVideos": [], @@ -460473,7 +459973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 13825897, "featuredRunMedia": null, "reactionVideos": [], @@ -460493,7 +459993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 13825999, "featuredRunMedia": null, "reactionVideos": [], @@ -460513,7 +460013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 13826225, "featuredRunMedia": null, "reactionVideos": [], @@ -460533,7 +460033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "144151", "time": 13826481, "featuredRunMedia": null, "reactionVideos": [], @@ -460553,7 +460053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13826545, "featuredRunMedia": null, "reactionVideos": [], @@ -460573,7 +460073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 13827746, "featuredRunMedia": null, "reactionVideos": [], @@ -460593,7 +460093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13828572, "featuredRunMedia": null, "reactionVideos": [], @@ -460613,7 +460113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 13829176, "featuredRunMedia": null, "reactionVideos": [], @@ -460633,7 +460133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 13830397, "featuredRunMedia": null, "reactionVideos": [], @@ -460653,7 +460153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 13831233, "featuredRunMedia": null, "reactionVideos": [], @@ -460673,7 +460173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 13831780, "featuredRunMedia": null, "reactionVideos": [], @@ -460693,7 +460193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 13832471, "featuredRunMedia": null, "reactionVideos": [], @@ -460713,7 +460213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 13834160, "featuredRunMedia": null, "reactionVideos": [], @@ -460733,7 +460233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 222, + "teamId": "144292", "time": 13835245, "featuredRunMedia": null, "reactionVideos": [], @@ -460753,7 +460253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 13835277, "featuredRunMedia": null, "reactionVideos": [], @@ -460773,7 +460273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 24, + "teamId": "144094", "time": 13836919, "featuredRunMedia": null, "reactionVideos": [], @@ -460793,7 +460293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 13841220, "featuredRunMedia": null, "reactionVideos": [], @@ -460813,7 +460313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 13842719, "featuredRunMedia": null, "reactionVideos": [], @@ -460833,7 +460333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13845299, "featuredRunMedia": null, "reactionVideos": [], @@ -460853,7 +460353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "144142", "time": 13845607, "featuredRunMedia": null, "reactionVideos": [], @@ -460873,7 +460373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 13845946, "featuredRunMedia": null, "reactionVideos": [], @@ -460893,7 +460393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13846090, "featuredRunMedia": null, "reactionVideos": [], @@ -460913,7 +460413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13846134, "featuredRunMedia": null, "reactionVideos": [], @@ -460933,7 +460433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "144316", "time": 13846298, "featuredRunMedia": null, "reactionVideos": [], @@ -460953,7 +460453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 13846977, "featuredRunMedia": null, "reactionVideos": [], @@ -460973,7 +460473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 13847191, "featuredRunMedia": null, "reactionVideos": [], @@ -460993,7 +460493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 13847779, "featuredRunMedia": null, "reactionVideos": [], @@ -461013,7 +460513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 13848448, "featuredRunMedia": null, "reactionVideos": [], @@ -461037,7 +460537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 13848629, "featuredRunMedia": null, "reactionVideos": [], @@ -461057,7 +460557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13848756, "featuredRunMedia": null, "reactionVideos": [], @@ -461077,7 +460577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 13850382, "featuredRunMedia": null, "reactionVideos": [], @@ -461097,7 +460597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 13854127, "featuredRunMedia": null, "reactionVideos": [], @@ -461117,7 +460617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13854621, "featuredRunMedia": null, "reactionVideos": [], @@ -461137,7 +460637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 13855180, "featuredRunMedia": null, "reactionVideos": [], @@ -461157,7 +460657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 13855457, "featuredRunMedia": null, "reactionVideos": [], @@ -461177,7 +460677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 13855724, "featuredRunMedia": null, "reactionVideos": [], @@ -461201,7 +460701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 13856118, "featuredRunMedia": null, "reactionVideos": [], @@ -461221,7 +460721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13856185, "featuredRunMedia": null, "reactionVideos": [], @@ -461241,7 +460741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 13856462, "featuredRunMedia": null, "reactionVideos": [], @@ -461261,7 +460761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "144398", "time": 13856516, "featuredRunMedia": null, "reactionVideos": [], @@ -461281,7 +460781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 13856629, "featuredRunMedia": null, "reactionVideos": [], @@ -461301,7 +460801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 13856721, "featuredRunMedia": null, "reactionVideos": [], @@ -461321,7 +460821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 13857298, "featuredRunMedia": null, "reactionVideos": [], @@ -461341,7 +460841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13857668, "featuredRunMedia": null, "reactionVideos": [], @@ -461361,7 +460861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "144381", "time": 13857761, "featuredRunMedia": null, "reactionVideos": [], @@ -461381,7 +460881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 13858171, "featuredRunMedia": null, "reactionVideos": [], @@ -461401,7 +460901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 13858424, "featuredRunMedia": null, "reactionVideos": [], @@ -461421,7 +460921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 13858476, "featuredRunMedia": null, "reactionVideos": [], @@ -461441,7 +460941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13859911, "featuredRunMedia": null, "reactionVideos": [], @@ -461461,7 +460961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 13861977, "featuredRunMedia": null, "reactionVideos": [], @@ -461481,7 +460981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 13862039, "featuredRunMedia": null, "reactionVideos": [], @@ -461501,7 +461001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 339, + "teamId": "144409", "time": 13862095, "featuredRunMedia": null, "reactionVideos": [], @@ -461521,7 +461021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 13863803, "featuredRunMedia": null, "reactionVideos": [], @@ -461541,7 +461041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 417, + "teamId": "144487", "time": 13864235, "featuredRunMedia": null, "reactionVideos": [], @@ -461561,7 +461061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 13865523, "featuredRunMedia": null, "reactionVideos": [], @@ -461581,7 +461081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 13865633, "featuredRunMedia": null, "reactionVideos": [], @@ -461601,7 +461101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 13866272, "featuredRunMedia": null, "reactionVideos": [], @@ -461621,7 +461121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 13866315, "featuredRunMedia": null, "reactionVideos": [], @@ -461641,7 +461141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 13867756, "featuredRunMedia": null, "reactionVideos": [], @@ -461661,7 +461161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13868154, "featuredRunMedia": null, "reactionVideos": [], @@ -461681,7 +461181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 13868490, "featuredRunMedia": null, "reactionVideos": [], @@ -461701,7 +461201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 13868639, "featuredRunMedia": null, "reactionVideos": [], @@ -461721,7 +461221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 13871401, "featuredRunMedia": null, "reactionVideos": [], @@ -461741,7 +461241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13872694, "featuredRunMedia": null, "reactionVideos": [], @@ -461761,7 +461261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 13875186, "featuredRunMedia": null, "reactionVideos": [], @@ -461781,7 +461281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 13877140, "featuredRunMedia": null, "reactionVideos": [], @@ -461801,7 +461301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 13879534, "featuredRunMedia": null, "reactionVideos": [], @@ -461821,7 +461321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 13880108, "featuredRunMedia": null, "reactionVideos": [], @@ -461841,7 +461341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 13881236, "featuredRunMedia": null, "reactionVideos": [], @@ -461861,7 +461361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 13881540, "featuredRunMedia": null, "reactionVideos": [], @@ -461881,7 +461381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 13882264, "featuredRunMedia": null, "reactionVideos": [], @@ -461905,7 +461405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 13882550, "featuredRunMedia": null, "reactionVideos": [], @@ -461925,7 +461425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 13882607, "featuredRunMedia": null, "reactionVideos": [], @@ -461945,7 +461445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 13884660, "featuredRunMedia": null, "reactionVideos": [], @@ -461965,7 +461465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 13887460, "featuredRunMedia": null, "reactionVideos": [], @@ -461985,7 +461485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 13887800, "featuredRunMedia": null, "reactionVideos": [], @@ -462005,7 +461505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 13887926, "featuredRunMedia": null, "reactionVideos": [], @@ -462025,7 +461525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 13890602, "featuredRunMedia": null, "reactionVideos": [], @@ -462045,7 +461545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 13891396, "featuredRunMedia": null, "reactionVideos": [], @@ -462065,7 +461565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "144173", "time": 13893220, "featuredRunMedia": null, "reactionVideos": [], @@ -462085,7 +461585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 404, + "teamId": "144474", "time": 13894115, "featuredRunMedia": null, "reactionVideos": [], @@ -462105,7 +461605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 13895465, "featuredRunMedia": null, "reactionVideos": [], @@ -462125,7 +461625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "144342", "time": 13896569, "featuredRunMedia": null, "reactionVideos": [], @@ -462145,7 +461645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 13896881, "featuredRunMedia": null, "reactionVideos": [], @@ -462165,7 +461665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 13897250, "featuredRunMedia": null, "reactionVideos": [], @@ -462185,7 +461685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13897329, "featuredRunMedia": null, "reactionVideos": [], @@ -462205,7 +461705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13898865, "featuredRunMedia": null, "reactionVideos": [], @@ -462225,7 +461725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 13900415, "featuredRunMedia": null, "reactionVideos": [], @@ -462245,7 +461745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13901069, "featuredRunMedia": null, "reactionVideos": [], @@ -462265,7 +461765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 13901899, "featuredRunMedia": null, "reactionVideos": [], @@ -462285,7 +461785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 88, + "teamId": "144158", "time": 13903105, "featuredRunMedia": null, "reactionVideos": [], @@ -462305,7 +461805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 13903211, "featuredRunMedia": null, "reactionVideos": [], @@ -462325,7 +461825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13906278, "featuredRunMedia": null, "reactionVideos": [], @@ -462345,7 +461845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13907129, "featuredRunMedia": null, "reactionVideos": [], @@ -462365,7 +461865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13907682, "featuredRunMedia": null, "reactionVideos": [], @@ -462385,7 +461885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 13908905, "featuredRunMedia": null, "reactionVideos": [], @@ -462405,7 +461905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 13908991, "featuredRunMedia": null, "reactionVideos": [], @@ -462425,7 +461925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13909824, "featuredRunMedia": null, "reactionVideos": [], @@ -462445,7 +461945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 13910868, "featuredRunMedia": null, "reactionVideos": [], @@ -462465,7 +461965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 13910914, "featuredRunMedia": null, "reactionVideos": [], @@ -462485,7 +461985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 13911339, "featuredRunMedia": null, "reactionVideos": [], @@ -462505,7 +462005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 13913262, "featuredRunMedia": null, "reactionVideos": [], @@ -462525,7 +462025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 13914330, "featuredRunMedia": null, "reactionVideos": [], @@ -462545,7 +462045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 13914653, "featuredRunMedia": null, "reactionVideos": [], @@ -462565,7 +462065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 13915008, "featuredRunMedia": null, "reactionVideos": [], @@ -462585,7 +462085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13915241, "featuredRunMedia": null, "reactionVideos": [], @@ -462605,7 +462105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "144265", "time": 13915287, "featuredRunMedia": null, "reactionVideos": [], @@ -462625,7 +462125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 13916869, "featuredRunMedia": null, "reactionVideos": [], @@ -462645,7 +462145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13918378, "featuredRunMedia": null, "reactionVideos": [], @@ -462665,7 +462165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 13919659, "featuredRunMedia": null, "reactionVideos": [], @@ -462685,7 +462185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "144359", "time": 13920873, "featuredRunMedia": null, "reactionVideos": [], @@ -462705,7 +462205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 13922044, "featuredRunMedia": null, "reactionVideos": [], @@ -462725,7 +462225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13922971, "featuredRunMedia": null, "reactionVideos": [], @@ -462745,7 +462245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 13926005, "featuredRunMedia": null, "reactionVideos": [], @@ -462765,7 +462265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 13926550, "featuredRunMedia": null, "reactionVideos": [], @@ -462785,7 +462285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 13927409, "featuredRunMedia": null, "reactionVideos": [], @@ -462805,7 +462305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13928797, "featuredRunMedia": null, "reactionVideos": [], @@ -462825,7 +462325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13929411, "featuredRunMedia": null, "reactionVideos": [], @@ -462845,7 +462345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 13929902, "featuredRunMedia": null, "reactionVideos": [], @@ -462865,7 +462365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 13932809, "featuredRunMedia": null, "reactionVideos": [], @@ -462885,7 +462385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 13933366, "featuredRunMedia": null, "reactionVideos": [], @@ -462905,7 +462405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13933796, "featuredRunMedia": null, "reactionVideos": [], @@ -462925,7 +462425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 13933952, "featuredRunMedia": null, "reactionVideos": [], @@ -462945,7 +462445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 13937147, "featuredRunMedia": null, "reactionVideos": [], @@ -462965,7 +462465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 13938489, "featuredRunMedia": null, "reactionVideos": [], @@ -462989,7 +462489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13938957, "featuredRunMedia": null, "reactionVideos": [], @@ -463009,7 +462509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 13940124, "featuredRunMedia": null, "reactionVideos": [], @@ -463029,7 +462529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 13940815, "featuredRunMedia": null, "reactionVideos": [], @@ -463049,7 +462549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 13940922, "featuredRunMedia": null, "reactionVideos": [], @@ -463069,7 +462569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 13941972, "featuredRunMedia": null, "reactionVideos": [], @@ -463089,7 +462589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 13942604, "featuredRunMedia": null, "reactionVideos": [], @@ -463109,7 +462609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 13943278, "featuredRunMedia": null, "reactionVideos": [], @@ -463129,7 +462629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13947766, "featuredRunMedia": null, "reactionVideos": [], @@ -463149,7 +462649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 13948194, "featuredRunMedia": null, "reactionVideos": [], @@ -463169,7 +462669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 13949403, "featuredRunMedia": null, "reactionVideos": [], @@ -463189,7 +462689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 13949752, "featuredRunMedia": null, "reactionVideos": [], @@ -463209,7 +462709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 13950165, "featuredRunMedia": null, "reactionVideos": [], @@ -463229,7 +462729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 13950370, "featuredRunMedia": null, "reactionVideos": [], @@ -463249,7 +462749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13951736, "featuredRunMedia": null, "reactionVideos": [], @@ -463269,7 +462769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 13951889, "featuredRunMedia": null, "reactionVideos": [], @@ -463289,7 +462789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 13953319, "featuredRunMedia": null, "reactionVideos": [], @@ -463309,7 +462809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 13953785, "featuredRunMedia": null, "reactionVideos": [], @@ -463329,7 +462829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 13954169, "featuredRunMedia": null, "reactionVideos": [], @@ -463349,7 +462849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 13955079, "featuredRunMedia": null, "reactionVideos": [], @@ -463369,7 +462869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 13955632, "featuredRunMedia": null, "reactionVideos": [], @@ -463389,7 +462889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 13955771, "featuredRunMedia": null, "reactionVideos": [], @@ -463409,7 +462909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 13956503, "featuredRunMedia": null, "reactionVideos": [], @@ -463429,7 +462929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 13957020, "featuredRunMedia": null, "reactionVideos": [], @@ -463449,7 +462949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 13957233, "featuredRunMedia": null, "reactionVideos": [], @@ -463469,7 +462969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "144109", "time": 13957733, "featuredRunMedia": null, "reactionVideos": [], @@ -463489,7 +462989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 13958410, "featuredRunMedia": null, "reactionVideos": [], @@ -463509,7 +463009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13961750, "featuredRunMedia": null, "reactionVideos": [], @@ -463529,7 +463029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "144151", "time": 13964039, "featuredRunMedia": null, "reactionVideos": [], @@ -463549,7 +463049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13964209, "featuredRunMedia": null, "reactionVideos": [], @@ -463569,7 +463069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 13965258, "featuredRunMedia": null, "reactionVideos": [], @@ -463589,7 +463089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 13965532, "featuredRunMedia": null, "reactionVideos": [], @@ -463609,7 +463109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 13965898, "featuredRunMedia": null, "reactionVideos": [], @@ -463633,7 +463133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 13966057, "featuredRunMedia": null, "reactionVideos": [], @@ -463653,7 +463153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 13966503, "featuredRunMedia": null, "reactionVideos": [], @@ -463673,7 +463173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 13966614, "featuredRunMedia": null, "reactionVideos": [], @@ -463693,7 +463193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 13968161, "featuredRunMedia": null, "reactionVideos": [], @@ -463713,7 +463213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 13969660, "featuredRunMedia": null, "reactionVideos": [], @@ -463733,7 +463233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 13971919, "featuredRunMedia": null, "reactionVideos": [], @@ -463753,7 +463253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 13972354, "featuredRunMedia": null, "reactionVideos": [], @@ -463773,7 +463273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 13972989, "featuredRunMedia": null, "reactionVideos": [], @@ -463793,7 +463293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 13973951, "featuredRunMedia": null, "reactionVideos": [], @@ -463813,7 +463313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 13974018, "featuredRunMedia": null, "reactionVideos": [], @@ -463833,7 +463333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 13975691, "featuredRunMedia": null, "reactionVideos": [], @@ -463853,7 +463353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 13978324, "featuredRunMedia": null, "reactionVideos": [], @@ -463873,7 +463373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 13978976, "featuredRunMedia": null, "reactionVideos": [], @@ -463893,7 +463393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "144176", "time": 13980869, "featuredRunMedia": null, "reactionVideos": [], @@ -463913,7 +463413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "144289", "time": 13981960, "featuredRunMedia": null, "reactionVideos": [], @@ -463933,7 +463433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 13984249, "featuredRunMedia": null, "reactionVideos": [], @@ -463953,7 +463453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 13984645, "featuredRunMedia": null, "reactionVideos": [], @@ -463973,7 +463473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 13985420, "featuredRunMedia": null, "reactionVideos": [], @@ -463993,7 +463493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 13985734, "featuredRunMedia": null, "reactionVideos": [], @@ -464013,7 +463513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13987019, "featuredRunMedia": null, "reactionVideos": [], @@ -464033,7 +463533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13987601, "featuredRunMedia": null, "reactionVideos": [], @@ -464053,7 +463553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 13988016, "featuredRunMedia": null, "reactionVideos": [], @@ -464073,7 +463573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 13988184, "featuredRunMedia": null, "reactionVideos": [], @@ -464093,7 +463593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 13988806, "featuredRunMedia": null, "reactionVideos": [], @@ -464113,7 +463613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 13989500, "featuredRunMedia": null, "reactionVideos": [], @@ -464133,7 +463633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 13990243, "featuredRunMedia": null, "reactionVideos": [], @@ -464153,7 +463653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "144123", "time": 13990671, "featuredRunMedia": null, "reactionVideos": [], @@ -464173,7 +463673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 13992715, "featuredRunMedia": null, "reactionVideos": [], @@ -464193,7 +463693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 13992884, "featuredRunMedia": null, "reactionVideos": [], @@ -464213,7 +463713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 13993318, "featuredRunMedia": null, "reactionVideos": [], @@ -464233,7 +463733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 13993504, "featuredRunMedia": null, "reactionVideos": [], @@ -464253,7 +463753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 13995346, "featuredRunMedia": null, "reactionVideos": [], @@ -464273,7 +463773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 13995978, "featuredRunMedia": null, "reactionVideos": [], @@ -464293,7 +463793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "144346", "time": 13996411, "featuredRunMedia": null, "reactionVideos": [], @@ -464313,7 +463813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 13997176, "featuredRunMedia": null, "reactionVideos": [], @@ -464333,7 +463833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 13998709, "featuredRunMedia": null, "reactionVideos": [], @@ -464353,7 +463853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 13999015, "featuredRunMedia": null, "reactionVideos": [], @@ -464373,7 +463873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 14000593, "featuredRunMedia": null, "reactionVideos": [], @@ -464393,7 +463893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 14001638, "featuredRunMedia": null, "reactionVideos": [], @@ -464413,7 +463913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "144107", "time": 14003909, "featuredRunMedia": null, "reactionVideos": [], @@ -464433,7 +463933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 14004804, "featuredRunMedia": null, "reactionVideos": [], @@ -464453,7 +463953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14007242, "featuredRunMedia": null, "reactionVideos": [], @@ -464473,7 +463973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14009153, "featuredRunMedia": null, "reactionVideos": [], @@ -464493,7 +463993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 14009728, "featuredRunMedia": null, "reactionVideos": [], @@ -464513,7 +464013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 14010127, "featuredRunMedia": null, "reactionVideos": [], @@ -464533,7 +464033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 14010881, "featuredRunMedia": null, "reactionVideos": [], @@ -464553,7 +464053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14014871, "featuredRunMedia": null, "reactionVideos": [], @@ -464573,7 +464073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14014925, "featuredRunMedia": null, "reactionVideos": [], @@ -464593,7 +464093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14015958, "featuredRunMedia": null, "reactionVideos": [], @@ -464613,7 +464113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 229, + "teamId": "144299", "time": 14016364, "featuredRunMedia": null, "reactionVideos": [], @@ -464633,7 +464133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14017166, "featuredRunMedia": null, "reactionVideos": [], @@ -464653,7 +464153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 14018212, "featuredRunMedia": null, "reactionVideos": [], @@ -464673,7 +464173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 14019021, "featuredRunMedia": null, "reactionVideos": [], @@ -464693,7 +464193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 14022280, "featuredRunMedia": null, "reactionVideos": [], @@ -464713,7 +464213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 14023158, "featuredRunMedia": null, "reactionVideos": [], @@ -464733,7 +464233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 14024582, "featuredRunMedia": null, "reactionVideos": [], @@ -464753,7 +464253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 14024874, "featuredRunMedia": null, "reactionVideos": [], @@ -464773,7 +464273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 14025300, "featuredRunMedia": null, "reactionVideos": [], @@ -464793,7 +464293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "144173", "time": 14030296, "featuredRunMedia": null, "reactionVideos": [], @@ -464813,7 +464313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 440, + "teamId": "144510", "time": 14030800, "featuredRunMedia": null, "reactionVideos": [], @@ -464833,7 +464333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 14032585, "featuredRunMedia": null, "reactionVideos": [], @@ -464853,7 +464353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 14033266, "featuredRunMedia": null, "reactionVideos": [], @@ -464873,7 +464373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "144249", "time": 14035006, "featuredRunMedia": null, "reactionVideos": [], @@ -464893,7 +464393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 14035106, "featuredRunMedia": null, "reactionVideos": [], @@ -464913,7 +464413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 14035208, "featuredRunMedia": null, "reactionVideos": [], @@ -464937,7 +464437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 14035788, "featuredRunMedia": null, "reactionVideos": [], @@ -464957,7 +464457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "144092", "time": 14036183, "featuredRunMedia": null, "reactionVideos": [], @@ -464977,7 +464477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14036412, "featuredRunMedia": null, "reactionVideos": [], @@ -464997,7 +464497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 14037965, "featuredRunMedia": null, "reactionVideos": [], @@ -465017,7 +464517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 14041271, "featuredRunMedia": null, "reactionVideos": [], @@ -465037,7 +464537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 14041486, "featuredRunMedia": null, "reactionVideos": [], @@ -465057,7 +464557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 14041968, "featuredRunMedia": null, "reactionVideos": [], @@ -465077,7 +464577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 325, + "teamId": "144395", "time": 14043727, "featuredRunMedia": null, "reactionVideos": [], @@ -465097,7 +464597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14044997, "featuredRunMedia": null, "reactionVideos": [], @@ -465117,7 +464617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 14046588, "featuredRunMedia": null, "reactionVideos": [], @@ -465137,7 +464637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 14047421, "featuredRunMedia": null, "reactionVideos": [], @@ -465157,7 +464657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 14048842, "featuredRunMedia": null, "reactionVideos": [], @@ -465177,7 +464677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 14049500, "featuredRunMedia": null, "reactionVideos": [], @@ -465197,7 +464697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14050565, "featuredRunMedia": null, "reactionVideos": [], @@ -465217,7 +464717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 14052089, "featuredRunMedia": null, "reactionVideos": [], @@ -465237,7 +464737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 14053891, "featuredRunMedia": null, "reactionVideos": [], @@ -465257,7 +464757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 14054204, "featuredRunMedia": null, "reactionVideos": [], @@ -465277,7 +464777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 14054288, "featuredRunMedia": null, "reactionVideos": [], @@ -465297,7 +464797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14054875, "featuredRunMedia": null, "reactionVideos": [], @@ -465321,7 +464821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14054912, "featuredRunMedia": null, "reactionVideos": [], @@ -465341,7 +464841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 14059573, "featuredRunMedia": null, "reactionVideos": [], @@ -465361,7 +464861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14060056, "featuredRunMedia": null, "reactionVideos": [], @@ -465381,7 +464881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 14060311, "featuredRunMedia": null, "reactionVideos": [], @@ -465401,7 +464901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 340, + "teamId": "144410", "time": 14060681, "featuredRunMedia": null, "reactionVideos": [], @@ -465421,7 +464921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14068113, "featuredRunMedia": null, "reactionVideos": [], @@ -465441,7 +464941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14069016, "featuredRunMedia": null, "reactionVideos": [], @@ -465461,7 +464961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 14070557, "featuredRunMedia": null, "reactionVideos": [], @@ -465481,7 +464981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 14074634, "featuredRunMedia": null, "reactionVideos": [], @@ -465501,7 +465001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "144116", "time": 14075512, "featuredRunMedia": null, "reactionVideos": [], @@ -465521,7 +465021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 101, + "teamId": "144171", "time": 14077547, "featuredRunMedia": null, "reactionVideos": [], @@ -465541,7 +465041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14077605, "featuredRunMedia": null, "reactionVideos": [], @@ -465561,7 +465061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 14077792, "featuredRunMedia": null, "reactionVideos": [], @@ -465581,7 +465081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 14077912, "featuredRunMedia": null, "reactionVideos": [], @@ -465601,7 +465101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 14079562, "featuredRunMedia": null, "reactionVideos": [], @@ -465621,7 +465121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 14080529, "featuredRunMedia": null, "reactionVideos": [], @@ -465641,7 +465141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 14080867, "featuredRunMedia": null, "reactionVideos": [], @@ -465661,7 +465161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 14081793, "featuredRunMedia": null, "reactionVideos": [], @@ -465681,7 +465181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 14083509, "featuredRunMedia": null, "reactionVideos": [], @@ -465701,7 +465201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 14084593, "featuredRunMedia": null, "reactionVideos": [], @@ -465721,7 +465221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 14084939, "featuredRunMedia": null, "reactionVideos": [], @@ -465741,7 +465241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 14085081, "featuredRunMedia": null, "reactionVideos": [], @@ -465761,7 +465261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 14088299, "featuredRunMedia": null, "reactionVideos": [], @@ -465781,7 +465281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 414, + "teamId": "144484", "time": 14089394, "featuredRunMedia": null, "reactionVideos": [], @@ -465801,7 +465301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 14090599, "featuredRunMedia": null, "reactionVideos": [], @@ -465821,7 +465321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 14090708, "featuredRunMedia": null, "reactionVideos": [], @@ -465845,7 +465345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 14091659, "featuredRunMedia": null, "reactionVideos": [], @@ -465865,7 +465365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 14092778, "featuredRunMedia": null, "reactionVideos": [], @@ -465885,7 +465385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14093408, "featuredRunMedia": null, "reactionVideos": [], @@ -465905,7 +465405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 14093593, "featuredRunMedia": null, "reactionVideos": [], @@ -465925,7 +465425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 14094683, "featuredRunMedia": null, "reactionVideos": [], @@ -465945,7 +465445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 14094838, "featuredRunMedia": null, "reactionVideos": [], @@ -465965,7 +465465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 14095784, "featuredRunMedia": null, "reactionVideos": [], @@ -465985,7 +465485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 14098493, "featuredRunMedia": null, "reactionVideos": [], @@ -466005,7 +465505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 14102279, "featuredRunMedia": null, "reactionVideos": [], @@ -466025,7 +465525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 14102535, "featuredRunMedia": null, "reactionVideos": [], @@ -466045,7 +465545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14102883, "featuredRunMedia": null, "reactionVideos": [], @@ -466065,7 +465565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "144328", "time": 14104200, "featuredRunMedia": null, "reactionVideos": [], @@ -466085,7 +465585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14104891, "featuredRunMedia": null, "reactionVideos": [], @@ -466105,7 +465605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 14105458, "featuredRunMedia": null, "reactionVideos": [], @@ -466125,7 +465625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 14105741, "featuredRunMedia": null, "reactionVideos": [], @@ -466145,7 +465645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 14106786, "featuredRunMedia": null, "reactionVideos": [], @@ -466165,7 +465665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 14106979, "featuredRunMedia": null, "reactionVideos": [], @@ -466185,7 +465685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 14108537, "featuredRunMedia": null, "reactionVideos": [], @@ -466205,7 +465705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 14109629, "featuredRunMedia": null, "reactionVideos": [], @@ -466225,7 +465725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 14110913, "featuredRunMedia": null, "reactionVideos": [], @@ -466245,7 +465745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 14111504, "featuredRunMedia": null, "reactionVideos": [], @@ -466265,7 +465765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 14112128, "featuredRunMedia": null, "reactionVideos": [], @@ -466285,7 +465785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 401, + "teamId": "144471", "time": 14113131, "featuredRunMedia": null, "reactionVideos": [], @@ -466305,7 +465805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14113312, "featuredRunMedia": null, "reactionVideos": [], @@ -466325,7 +465825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 14113535, "featuredRunMedia": null, "reactionVideos": [], @@ -466345,7 +465845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14114935, "featuredRunMedia": null, "reactionVideos": [], @@ -466365,7 +465865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 14115987, "featuredRunMedia": null, "reactionVideos": [], @@ -466385,7 +465885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 14116387, "featuredRunMedia": null, "reactionVideos": [], @@ -466405,7 +465905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 14116671, "featuredRunMedia": null, "reactionVideos": [], @@ -466425,7 +465925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 14117816, "featuredRunMedia": null, "reactionVideos": [], @@ -466445,7 +465945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14118122, "featuredRunMedia": null, "reactionVideos": [], @@ -466465,7 +465965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14119466, "featuredRunMedia": null, "reactionVideos": [], @@ -466485,7 +465985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "144110", "time": 14120198, "featuredRunMedia": null, "reactionVideos": [], @@ -466505,7 +466005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "144301", "time": 14120971, "featuredRunMedia": null, "reactionVideos": [], @@ -466525,7 +466025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 14121096, "featuredRunMedia": null, "reactionVideos": [], @@ -466545,7 +466045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 14121532, "featuredRunMedia": null, "reactionVideos": [], @@ -466565,7 +466065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 14123131, "featuredRunMedia": null, "reactionVideos": [], @@ -466585,7 +466085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 14123270, "featuredRunMedia": null, "reactionVideos": [], @@ -466605,7 +466105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 14123550, "featuredRunMedia": null, "reactionVideos": [], @@ -466625,7 +466125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "144209", "time": 14125099, "featuredRunMedia": null, "reactionVideos": [], @@ -466645,7 +466145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 414, + "teamId": "144484", "time": 14126490, "featuredRunMedia": null, "reactionVideos": [], @@ -466665,7 +466165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14127292, "featuredRunMedia": null, "reactionVideos": [], @@ -466685,7 +466185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14127381, "featuredRunMedia": null, "reactionVideos": [], @@ -466705,7 +466205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14128107, "featuredRunMedia": null, "reactionVideos": [], @@ -466725,7 +466225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14129453, "featuredRunMedia": null, "reactionVideos": [], @@ -466745,7 +466245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 14129500, "featuredRunMedia": null, "reactionVideos": [], @@ -466765,7 +466265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 14130203, "featuredRunMedia": null, "reactionVideos": [], @@ -466785,7 +466285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 14131027, "featuredRunMedia": null, "reactionVideos": [], @@ -466805,7 +466305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14131324, "featuredRunMedia": null, "reactionVideos": [], @@ -466825,7 +466325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14131751, "featuredRunMedia": null, "reactionVideos": [], @@ -466845,7 +466345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 14132054, "featuredRunMedia": null, "reactionVideos": [], @@ -466865,7 +466365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 14134737, "featuredRunMedia": null, "reactionVideos": [], @@ -466885,7 +466385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 14135695, "featuredRunMedia": null, "reactionVideos": [], @@ -466905,7 +466405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14135991, "featuredRunMedia": null, "reactionVideos": [], @@ -466925,7 +466425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14136428, "featuredRunMedia": null, "reactionVideos": [], @@ -466945,7 +466445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14137658, "featuredRunMedia": null, "reactionVideos": [], @@ -466965,7 +466465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 14139424, "featuredRunMedia": null, "reactionVideos": [], @@ -466985,7 +466485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14139853, "featuredRunMedia": null, "reactionVideos": [], @@ -467005,7 +466505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14140803, "featuredRunMedia": null, "reactionVideos": [], @@ -467025,7 +466525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14141911, "featuredRunMedia": null, "reactionVideos": [], @@ -467045,7 +466545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14142111, "featuredRunMedia": null, "reactionVideos": [], @@ -467065,7 +466565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 14142425, "featuredRunMedia": null, "reactionVideos": [], @@ -467085,7 +466585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 14142627, "featuredRunMedia": null, "reactionVideos": [], @@ -467105,7 +466605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "144263", "time": 14142737, "featuredRunMedia": null, "reactionVideos": [], @@ -467125,7 +466625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 14142994, "featuredRunMedia": null, "reactionVideos": [], @@ -467145,7 +466645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 14145561, "featuredRunMedia": null, "reactionVideos": [], @@ -467165,7 +466665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "144259", "time": 14147809, "featuredRunMedia": null, "reactionVideos": [], @@ -467185,7 +466685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 14148073, "featuredRunMedia": null, "reactionVideos": [], @@ -467205,7 +466705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14150161, "featuredRunMedia": null, "reactionVideos": [], @@ -467225,7 +466725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14150324, "featuredRunMedia": null, "reactionVideos": [], @@ -467245,7 +466745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14150836, "featuredRunMedia": null, "reactionVideos": [], @@ -467265,7 +466765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14151019, "featuredRunMedia": null, "reactionVideos": [], @@ -467285,7 +466785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 14151678, "featuredRunMedia": null, "reactionVideos": [], @@ -467309,7 +466809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 14151818, "featuredRunMedia": null, "reactionVideos": [], @@ -467329,7 +466829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14154372, "featuredRunMedia": null, "reactionVideos": [], @@ -467349,7 +466849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14155592, "featuredRunMedia": null, "reactionVideos": [], @@ -467369,7 +466869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14156075, "featuredRunMedia": null, "reactionVideos": [], @@ -467389,7 +466889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 14156186, "featuredRunMedia": null, "reactionVideos": [], @@ -467409,7 +466909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 14160617, "featuredRunMedia": null, "reactionVideos": [], @@ -467429,7 +466929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 14160908, "featuredRunMedia": null, "reactionVideos": [], @@ -467449,7 +466949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 14161379, "featuredRunMedia": null, "reactionVideos": [], @@ -467469,7 +466969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14161432, "featuredRunMedia": null, "reactionVideos": [], @@ -467489,7 +466989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 109, + "teamId": "144179", "time": 14162284, "featuredRunMedia": null, "reactionVideos": [], @@ -467509,7 +467009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 356, + "teamId": "144426", "time": 14163498, "featuredRunMedia": null, "reactionVideos": [], @@ -467529,7 +467029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 14163989, "featuredRunMedia": null, "reactionVideos": [], @@ -467549,7 +467049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 14164381, "featuredRunMedia": null, "reactionVideos": [], @@ -467569,7 +467069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 14164658, "featuredRunMedia": null, "reactionVideos": [], @@ -467589,7 +467089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 14165443, "featuredRunMedia": null, "reactionVideos": [], @@ -467609,7 +467109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 14165767, "featuredRunMedia": null, "reactionVideos": [], @@ -467629,7 +467129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 14167240, "featuredRunMedia": null, "reactionVideos": [], @@ -467649,7 +467149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 14168138, "featuredRunMedia": null, "reactionVideos": [], @@ -467669,7 +467169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 14168317, "featuredRunMedia": null, "reactionVideos": [], @@ -467689,7 +467189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 14172134, "featuredRunMedia": null, "reactionVideos": [], @@ -467709,7 +467209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 14172182, "featuredRunMedia": null, "reactionVideos": [], @@ -467733,7 +467233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 14173330, "featuredRunMedia": null, "reactionVideos": [], @@ -467753,7 +467253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 14174020, "featuredRunMedia": null, "reactionVideos": [], @@ -467773,7 +467273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14174641, "featuredRunMedia": null, "reactionVideos": [], @@ -467793,7 +467293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 14175473, "featuredRunMedia": null, "reactionVideos": [], @@ -467813,7 +467313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "144411", "time": 14176100, "featuredRunMedia": null, "reactionVideos": [], @@ -467833,7 +467333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 14177112, "featuredRunMedia": null, "reactionVideos": [], @@ -467853,7 +467353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 14177286, "featuredRunMedia": null, "reactionVideos": [], @@ -467873,7 +467373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 14178253, "featuredRunMedia": null, "reactionVideos": [], @@ -467893,7 +467393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 14183257, "featuredRunMedia": null, "reactionVideos": [], @@ -467913,7 +467413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 14183747, "featuredRunMedia": null, "reactionVideos": [], @@ -467933,7 +467433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 14183789, "featuredRunMedia": null, "reactionVideos": [], @@ -467953,7 +467453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "144150", "time": 14185592, "featuredRunMedia": null, "reactionVideos": [], @@ -467973,7 +467473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 14186308, "featuredRunMedia": null, "reactionVideos": [], @@ -467993,7 +467493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 14187063, "featuredRunMedia": null, "reactionVideos": [], @@ -468013,7 +467513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "144218", "time": 14189092, "featuredRunMedia": null, "reactionVideos": [], @@ -468033,7 +467533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 14189594, "featuredRunMedia": null, "reactionVideos": [], @@ -468053,7 +467553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14190273, "featuredRunMedia": null, "reactionVideos": [], @@ -468073,7 +467573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 14191400, "featuredRunMedia": null, "reactionVideos": [], @@ -468093,7 +467593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14194814, "featuredRunMedia": null, "reactionVideos": [], @@ -468113,7 +467613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14196836, "featuredRunMedia": null, "reactionVideos": [], @@ -468133,7 +467633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 14197460, "featuredRunMedia": null, "reactionVideos": [], @@ -468153,7 +467653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "144192", "time": 14202060, "featuredRunMedia": null, "reactionVideos": [], @@ -468173,7 +467673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 14202225, "featuredRunMedia": null, "reactionVideos": [], @@ -468193,7 +467693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 14202393, "featuredRunMedia": null, "reactionVideos": [], @@ -468213,7 +467713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14202627, "featuredRunMedia": null, "reactionVideos": [], @@ -468233,7 +467733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 14204420, "featuredRunMedia": null, "reactionVideos": [], @@ -468253,7 +467753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "144308", "time": 14205094, "featuredRunMedia": null, "reactionVideos": [], @@ -468273,7 +467773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14205471, "featuredRunMedia": null, "reactionVideos": [], @@ -468293,7 +467793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 14205521, "featuredRunMedia": null, "reactionVideos": [], @@ -468313,7 +467813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 14206303, "featuredRunMedia": null, "reactionVideos": [], @@ -468333,7 +467833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14209492, "featuredRunMedia": null, "reactionVideos": [], @@ -468353,7 +467853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 14210245, "featuredRunMedia": null, "reactionVideos": [], @@ -468373,7 +467873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 14210349, "featuredRunMedia": null, "reactionVideos": [], @@ -468393,7 +467893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 14211527, "featuredRunMedia": null, "reactionVideos": [], @@ -468413,7 +467913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "144226", "time": 14212266, "featuredRunMedia": null, "reactionVideos": [], @@ -468433,7 +467933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 14213564, "featuredRunMedia": null, "reactionVideos": [], @@ -468453,7 +467953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14214267, "featuredRunMedia": null, "reactionVideos": [], @@ -468473,7 +467973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14216131, "featuredRunMedia": null, "reactionVideos": [], @@ -468493,7 +467993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 14217109, "featuredRunMedia": null, "reactionVideos": [], @@ -468513,7 +468013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14217148, "featuredRunMedia": null, "reactionVideos": [], @@ -468533,7 +468033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 440, + "teamId": "144510", "time": 14218990, "featuredRunMedia": null, "reactionVideos": [], @@ -468553,7 +468053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "144373", "time": 14219682, "featuredRunMedia": null, "reactionVideos": [], @@ -468573,7 +468073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 14221638, "featuredRunMedia": null, "reactionVideos": [], @@ -468593,7 +468093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 14222357, "featuredRunMedia": null, "reactionVideos": [], @@ -468613,7 +468113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 14223834, "featuredRunMedia": null, "reactionVideos": [], @@ -468633,7 +468133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 14224157, "featuredRunMedia": null, "reactionVideos": [], @@ -468653,7 +468153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14224217, "featuredRunMedia": null, "reactionVideos": [], @@ -468673,7 +468173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14224686, "featuredRunMedia": null, "reactionVideos": [], @@ -468693,7 +468193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 14224928, "featuredRunMedia": null, "reactionVideos": [], @@ -468713,7 +468213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 14227868, "featuredRunMedia": null, "reactionVideos": [], @@ -468733,7 +468233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 14228534, "featuredRunMedia": null, "reactionVideos": [], @@ -468753,7 +468253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 14229549, "featuredRunMedia": null, "reactionVideos": [], @@ -468773,7 +468273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 14233233, "featuredRunMedia": null, "reactionVideos": [], @@ -468793,7 +468293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 14233677, "featuredRunMedia": null, "reactionVideos": [], @@ -468813,7 +468313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14236652, "featuredRunMedia": null, "reactionVideos": [], @@ -468833,7 +468333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 14238489, "featuredRunMedia": null, "reactionVideos": [], @@ -468853,7 +468353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 243, + "teamId": "144313", "time": 14239637, "featuredRunMedia": null, "reactionVideos": [], @@ -468873,7 +468373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 14239989, "featuredRunMedia": null, "reactionVideos": [], @@ -468893,7 +468393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14240109, "featuredRunMedia": null, "reactionVideos": [], @@ -468917,7 +468417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14240185, "featuredRunMedia": null, "reactionVideos": [], @@ -468937,7 +468437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "144182", "time": 14240497, "featuredRunMedia": null, "reactionVideos": [], @@ -468957,7 +468457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 14243602, "featuredRunMedia": null, "reactionVideos": [], @@ -468977,7 +468477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 14244379, "featuredRunMedia": null, "reactionVideos": [], @@ -468997,7 +468497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 141, + "teamId": "144211", "time": 14245601, "featuredRunMedia": null, "reactionVideos": [], @@ -469017,7 +468517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 272, + "teamId": "144342", "time": 14246545, "featuredRunMedia": null, "reactionVideos": [], @@ -469041,7 +468541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 14247442, "featuredRunMedia": null, "reactionVideos": [], @@ -469061,7 +468561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "144212", "time": 14252102, "featuredRunMedia": null, "reactionVideos": [], @@ -469081,7 +468581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 14252620, "featuredRunMedia": null, "reactionVideos": [], @@ -469101,7 +468601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 14253606, "featuredRunMedia": null, "reactionVideos": [], @@ -469121,7 +468621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14253903, "featuredRunMedia": null, "reactionVideos": [], @@ -469141,7 +468641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 14257704, "featuredRunMedia": null, "reactionVideos": [], @@ -469161,7 +468661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 14260015, "featuredRunMedia": null, "reactionVideos": [], @@ -469181,7 +468681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 14260247, "featuredRunMedia": null, "reactionVideos": [], @@ -469201,7 +468701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 14260891, "featuredRunMedia": null, "reactionVideos": [], @@ -469221,7 +468721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 359, + "teamId": "144429", "time": 14264338, "featuredRunMedia": null, "reactionVideos": [], @@ -469241,7 +468741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 14264670, "featuredRunMedia": null, "reactionVideos": [], @@ -469261,7 +468761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 14264824, "featuredRunMedia": null, "reactionVideos": [], @@ -469281,7 +468781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 14267658, "featuredRunMedia": null, "reactionVideos": [], @@ -469301,7 +468801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 14268864, "featuredRunMedia": null, "reactionVideos": [], @@ -469321,7 +468821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 14269600, "featuredRunMedia": null, "reactionVideos": [], @@ -469341,7 +468841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 14272100, "featuredRunMedia": null, "reactionVideos": [], @@ -469361,7 +468861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 14272716, "featuredRunMedia": null, "reactionVideos": [], @@ -469381,7 +468881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14273073, "featuredRunMedia": null, "reactionVideos": [], @@ -469401,7 +468901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 14273441, "featuredRunMedia": null, "reactionVideos": [], @@ -469421,7 +468921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 14273498, "featuredRunMedia": null, "reactionVideos": [], @@ -469441,7 +468941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 14274010, "featuredRunMedia": null, "reactionVideos": [], @@ -469461,7 +468961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14274087, "featuredRunMedia": null, "reactionVideos": [], @@ -469481,7 +468981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 14275298, "featuredRunMedia": null, "reactionVideos": [], @@ -469501,7 +469001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 14275328, "featuredRunMedia": null, "reactionVideos": [], @@ -469521,7 +469021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 14275488, "featuredRunMedia": null, "reactionVideos": [], @@ -469541,7 +469041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 14276245, "featuredRunMedia": null, "reactionVideos": [], @@ -469561,7 +469061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "144235", "time": 14276371, "featuredRunMedia": null, "reactionVideos": [], @@ -469581,7 +469081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 14278807, "featuredRunMedia": null, "reactionVideos": [], @@ -469601,7 +469101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 14278844, "featuredRunMedia": null, "reactionVideos": [], @@ -469621,7 +469121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 14279435, "featuredRunMedia": null, "reactionVideos": [], @@ -469641,7 +469141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "144173", "time": 14280050, "featuredRunMedia": null, "reactionVideos": [], @@ -469661,7 +469161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 14280604, "featuredRunMedia": null, "reactionVideos": [], @@ -469681,7 +469181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 14281087, "featuredRunMedia": null, "reactionVideos": [], @@ -469701,7 +469201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 420, + "teamId": "144490", "time": 14283460, "featuredRunMedia": null, "reactionVideos": [], @@ -469721,7 +469221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14283846, "featuredRunMedia": null, "reactionVideos": [], @@ -469741,7 +469241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 141, + "teamId": "144211", "time": 14285644, "featuredRunMedia": null, "reactionVideos": [], @@ -469761,7 +469261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 14287259, "featuredRunMedia": null, "reactionVideos": [], @@ -469781,7 +469281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14287474, "featuredRunMedia": null, "reactionVideos": [], @@ -469801,7 +469301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "144096", "time": 14287542, "featuredRunMedia": null, "reactionVideos": [], @@ -469821,7 +469321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 14288139, "featuredRunMedia": null, "reactionVideos": [], @@ -469841,7 +469341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 14288335, "featuredRunMedia": null, "reactionVideos": [], @@ -469865,7 +469365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 14288951, "featuredRunMedia": null, "reactionVideos": [], @@ -469885,7 +469385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 14289135, "featuredRunMedia": null, "reactionVideos": [], @@ -469905,7 +469405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14290253, "featuredRunMedia": null, "reactionVideos": [], @@ -469925,7 +469425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 14291331, "featuredRunMedia": null, "reactionVideos": [], @@ -469945,7 +469445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 14292307, "featuredRunMedia": null, "reactionVideos": [], @@ -469965,7 +469465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "144225", "time": 14293049, "featuredRunMedia": null, "reactionVideos": [], @@ -469985,7 +469485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 14293427, "featuredRunMedia": null, "reactionVideos": [], @@ -470005,7 +469505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 14294048, "featuredRunMedia": null, "reactionVideos": [], @@ -470025,7 +469525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 14294087, "featuredRunMedia": null, "reactionVideos": [], @@ -470045,7 +469545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "144259", "time": 14294120, "featuredRunMedia": null, "reactionVideos": [], @@ -470065,7 +469565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 14295315, "featuredRunMedia": null, "reactionVideos": [], @@ -470085,7 +469585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 14295482, "featuredRunMedia": null, "reactionVideos": [], @@ -470105,7 +469605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 14295770, "featuredRunMedia": null, "reactionVideos": [], @@ -470125,7 +469625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 14296555, "featuredRunMedia": null, "reactionVideos": [], @@ -470145,7 +469645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14296671, "featuredRunMedia": null, "reactionVideos": [], @@ -470165,7 +469665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 14299439, "featuredRunMedia": null, "reactionVideos": [], @@ -470185,7 +469685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 14302022, "featuredRunMedia": null, "reactionVideos": [], @@ -470205,7 +469705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 14302409, "featuredRunMedia": null, "reactionVideos": [], @@ -470225,7 +469725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14304821, "featuredRunMedia": null, "reactionVideos": [], @@ -470245,7 +469745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 14305475, "featuredRunMedia": null, "reactionVideos": [], @@ -470265,7 +469765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 14305629, "featuredRunMedia": null, "reactionVideos": [], @@ -470285,7 +469785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 116, + "teamId": "144186", "time": 14305712, "featuredRunMedia": null, "reactionVideos": [], @@ -470305,7 +469805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "144157", "time": 14306122, "featuredRunMedia": null, "reactionVideos": [], @@ -470325,7 +469825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 14308201, "featuredRunMedia": null, "reactionVideos": [], @@ -470345,7 +469845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 14310087, "featuredRunMedia": null, "reactionVideos": [], @@ -470365,7 +469865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14313910, "featuredRunMedia": null, "reactionVideos": [], @@ -470385,7 +469885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 14314033, "featuredRunMedia": null, "reactionVideos": [], @@ -470405,7 +469905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 14316555, "featuredRunMedia": null, "reactionVideos": [], @@ -470425,7 +469925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14317387, "featuredRunMedia": null, "reactionVideos": [], @@ -470445,7 +469945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14317769, "featuredRunMedia": null, "reactionVideos": [], @@ -470465,7 +469965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14318133, "featuredRunMedia": null, "reactionVideos": [], @@ -470485,7 +469985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14320305, "featuredRunMedia": null, "reactionVideos": [], @@ -470509,7 +470009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 14323827, "featuredRunMedia": null, "reactionVideos": [], @@ -470529,7 +470029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "144173", "time": 14325127, "featuredRunMedia": null, "reactionVideos": [], @@ -470549,7 +470049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14325539, "featuredRunMedia": null, "reactionVideos": [], @@ -470569,7 +470069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14326174, "featuredRunMedia": null, "reactionVideos": [], @@ -470589,7 +470089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14326344, "featuredRunMedia": null, "reactionVideos": [], @@ -470609,7 +470109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 14328204, "featuredRunMedia": null, "reactionVideos": [], @@ -470629,7 +470129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 14328517, "featuredRunMedia": null, "reactionVideos": [], @@ -470649,7 +470149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 14330724, "featuredRunMedia": null, "reactionVideos": [], @@ -470673,7 +470173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14330994, "featuredRunMedia": null, "reactionVideos": [], @@ -470693,7 +470193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 14333214, "featuredRunMedia": null, "reactionVideos": [], @@ -470713,7 +470213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 96, + "teamId": "144166", "time": 14333432, "featuredRunMedia": null, "reactionVideos": [], @@ -470733,7 +470233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 14333751, "featuredRunMedia": null, "reactionVideos": [], @@ -470753,7 +470253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 14334382, "featuredRunMedia": null, "reactionVideos": [], @@ -470773,7 +470273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 14335157, "featuredRunMedia": null, "reactionVideos": [], @@ -470793,7 +470293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "144123", "time": 14336418, "featuredRunMedia": null, "reactionVideos": [], @@ -470813,7 +470313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 14336518, "featuredRunMedia": null, "reactionVideos": [], @@ -470833,7 +470333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14337372, "featuredRunMedia": null, "reactionVideos": [], @@ -470853,7 +470353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 14338417, "featuredRunMedia": null, "reactionVideos": [], @@ -470873,7 +470373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 436, + "teamId": "144506", "time": 14338674, "featuredRunMedia": null, "reactionVideos": [], @@ -470893,7 +470393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 14339008, "featuredRunMedia": null, "reactionVideos": [], @@ -470913,7 +470413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 14339189, "featuredRunMedia": null, "reactionVideos": [], @@ -470933,7 +470433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 14340166, "featuredRunMedia": null, "reactionVideos": [], @@ -470953,7 +470453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 14340808, "featuredRunMedia": null, "reactionVideos": [], @@ -470973,7 +470473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 14341306, "featuredRunMedia": null, "reactionVideos": [], @@ -470993,7 +470493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14341751, "featuredRunMedia": null, "reactionVideos": [], @@ -471013,7 +470513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 14342263, "featuredRunMedia": null, "reactionVideos": [], @@ -471033,7 +470533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "144238", "time": 14343074, "featuredRunMedia": null, "reactionVideos": [], @@ -471053,7 +470553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 14346601, "featuredRunMedia": null, "reactionVideos": [], @@ -471073,7 +470573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 14347035, "featuredRunMedia": null, "reactionVideos": [], @@ -471093,7 +470593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 14348201, "featuredRunMedia": null, "reactionVideos": [], @@ -471113,7 +470613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 14349323, "featuredRunMedia": null, "reactionVideos": [], @@ -471133,7 +470633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 14349613, "featuredRunMedia": null, "reactionVideos": [], @@ -471157,7 +470657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14349722, "featuredRunMedia": null, "reactionVideos": [], @@ -471177,7 +470677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 14350574, "featuredRunMedia": null, "reactionVideos": [], @@ -471197,7 +470697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 109, + "teamId": "144179", "time": 14351105, "featuredRunMedia": null, "reactionVideos": [], @@ -471217,7 +470717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 14351293, "featuredRunMedia": null, "reactionVideos": [], @@ -471237,7 +470737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "144080", "time": 14352213, "featuredRunMedia": null, "reactionVideos": [], @@ -471257,7 +470757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14352272, "featuredRunMedia": null, "reactionVideos": [], @@ -471277,7 +470777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 14353650, "featuredRunMedia": null, "reactionVideos": [], @@ -471297,7 +470797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "144383", "time": 14353741, "featuredRunMedia": null, "reactionVideos": [], @@ -471317,7 +470817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 14354513, "featuredRunMedia": null, "reactionVideos": [], @@ -471337,7 +470837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 14354553, "featuredRunMedia": null, "reactionVideos": [], @@ -471357,7 +470857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 14354608, "featuredRunMedia": null, "reactionVideos": [], @@ -471377,7 +470877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 14354657, "featuredRunMedia": null, "reactionVideos": [], @@ -471397,7 +470897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 14355158, "featuredRunMedia": null, "reactionVideos": [], @@ -471417,7 +470917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 449, + "teamId": "144519", "time": 14355827, "featuredRunMedia": null, "reactionVideos": [], @@ -471437,7 +470937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "144114", "time": 14357891, "featuredRunMedia": null, "reactionVideos": [], @@ -471457,7 +470957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 14359951, "featuredRunMedia": null, "reactionVideos": [], @@ -471477,7 +470977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 14360506, "featuredRunMedia": null, "reactionVideos": [], @@ -471501,7 +471001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 14361053, "featuredRunMedia": null, "reactionVideos": [], @@ -471521,7 +471021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "144226", "time": 14361669, "featuredRunMedia": null, "reactionVideos": [], @@ -471541,7 +471041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14362447, "featuredRunMedia": null, "reactionVideos": [], @@ -471561,7 +471061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 14362696, "featuredRunMedia": null, "reactionVideos": [], @@ -471581,7 +471081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "144246", "time": 14364879, "featuredRunMedia": null, "reactionVideos": [], @@ -471601,7 +471101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 14365906, "featuredRunMedia": null, "reactionVideos": [], @@ -471621,7 +471121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 14368365, "featuredRunMedia": null, "reactionVideos": [], @@ -471641,7 +471141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 14369306, "featuredRunMedia": null, "reactionVideos": [], @@ -471661,7 +471161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 14369588, "featuredRunMedia": null, "reactionVideos": [], @@ -471681,7 +471181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 14370750, "featuredRunMedia": null, "reactionVideos": [], @@ -471701,7 +471201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "144173", "time": 14370812, "featuredRunMedia": null, "reactionVideos": [], @@ -471721,7 +471221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 14371744, "featuredRunMedia": null, "reactionVideos": [], @@ -471741,7 +471241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 14371872, "featuredRunMedia": null, "reactionVideos": [], @@ -471761,7 +471261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14372651, "featuredRunMedia": null, "reactionVideos": [], @@ -471781,7 +471281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 14374569, "featuredRunMedia": null, "reactionVideos": [], @@ -471801,7 +471301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 14375594, "featuredRunMedia": null, "reactionVideos": [], @@ -471821,7 +471321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14375754, "featuredRunMedia": null, "reactionVideos": [], @@ -471841,7 +471341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14377558, "featuredRunMedia": null, "reactionVideos": [], @@ -471861,7 +471361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "144240", "time": 14378373, "featuredRunMedia": null, "reactionVideos": [], @@ -471881,7 +471381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 14378623, "featuredRunMedia": null, "reactionVideos": [], @@ -471901,7 +471401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14379522, "featuredRunMedia": null, "reactionVideos": [], @@ -471921,7 +471421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 14380837, "featuredRunMedia": null, "reactionVideos": [], @@ -471941,7 +471441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14383966, "featuredRunMedia": null, "reactionVideos": [], @@ -471961,7 +471461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "144144", "time": 14384813, "featuredRunMedia": null, "reactionVideos": [], @@ -471981,7 +471481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 14386820, "featuredRunMedia": null, "reactionVideos": [], @@ -472001,7 +471501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14387100, "featuredRunMedia": null, "reactionVideos": [], @@ -472025,7 +471525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 141, + "teamId": "144211", "time": 14389044, "featuredRunMedia": null, "reactionVideos": [], @@ -472045,7 +471545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 14389454, "featuredRunMedia": null, "reactionVideos": [], @@ -472065,7 +471565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 14389514, "featuredRunMedia": null, "reactionVideos": [], @@ -472085,7 +471585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 14389717, "featuredRunMedia": null, "reactionVideos": [], @@ -472105,7 +471605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 14390460, "featuredRunMedia": null, "reactionVideos": [], @@ -472125,7 +471625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 14390680, "featuredRunMedia": null, "reactionVideos": [], @@ -472145,7 +471645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 14391179, "featuredRunMedia": null, "reactionVideos": [], @@ -472165,7 +471665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "144390", "time": 14391506, "featuredRunMedia": null, "reactionVideos": [], @@ -472185,7 +471685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 14391834, "featuredRunMedia": null, "reactionVideos": [], @@ -472205,7 +471705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14392110, "featuredRunMedia": null, "reactionVideos": [], @@ -472225,7 +471725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14393119, "featuredRunMedia": null, "reactionVideos": [], @@ -472245,7 +471745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 414, + "teamId": "144484", "time": 14393454, "featuredRunMedia": null, "reactionVideos": [], @@ -472265,7 +471765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14393736, "featuredRunMedia": null, "reactionVideos": [], @@ -472285,7 +471785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14395068, "featuredRunMedia": null, "reactionVideos": [], @@ -472305,7 +471805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 267, + "teamId": "144337", "time": 14396168, "featuredRunMedia": null, "reactionVideos": [], @@ -472325,7 +471825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14396411, "featuredRunMedia": null, "reactionVideos": [], @@ -472345,7 +471845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 14397828, "featuredRunMedia": null, "reactionVideos": [], @@ -472365,7 +471865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14398967, "featuredRunMedia": null, "reactionVideos": [], @@ -472385,7 +471885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 14399417, "featuredRunMedia": null, "reactionVideos": [], @@ -472405,7 +471905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14402748, "featuredRunMedia": null, "reactionVideos": [], @@ -472425,7 +471925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 14403149, "featuredRunMedia": null, "reactionVideos": [], @@ -472445,7 +471945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 14404278, "featuredRunMedia": null, "reactionVideos": [], @@ -472465,7 +471965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14405245, "featuredRunMedia": null, "reactionVideos": [], @@ -472485,7 +471985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 14406468, "featuredRunMedia": null, "reactionVideos": [], @@ -472505,7 +472005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14406661, "featuredRunMedia": null, "reactionVideos": [], @@ -472525,7 +472025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 14408209, "featuredRunMedia": null, "reactionVideos": [], @@ -472545,7 +472045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "144411", "time": 14412886, "featuredRunMedia": null, "reactionVideos": [], @@ -472565,7 +472065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 14414607, "featuredRunMedia": null, "reactionVideos": [], @@ -472585,7 +472085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 362, + "teamId": "144432", "time": 14416636, "featuredRunMedia": null, "reactionVideos": [], @@ -472605,7 +472105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14417095, "featuredRunMedia": null, "reactionVideos": [], @@ -472625,7 +472125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 14417666, "featuredRunMedia": null, "reactionVideos": [], @@ -472645,7 +472145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14421005, "featuredRunMedia": null, "reactionVideos": [], @@ -472665,7 +472165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 14421562, "featuredRunMedia": null, "reactionVideos": [], @@ -472685,7 +472185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14422035, "featuredRunMedia": null, "reactionVideos": [], @@ -472705,7 +472205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 14423780, "featuredRunMedia": null, "reactionVideos": [], @@ -472725,7 +472225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14424751, "featuredRunMedia": null, "reactionVideos": [], @@ -472745,7 +472245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 14425745, "featuredRunMedia": null, "reactionVideos": [], @@ -472765,7 +472265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 244, + "teamId": "144314", "time": 14428899, "featuredRunMedia": null, "reactionVideos": [], @@ -472785,7 +472285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 14429895, "featuredRunMedia": null, "reactionVideos": [], @@ -472805,7 +472305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14432409, "featuredRunMedia": null, "reactionVideos": [], @@ -472825,7 +472325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 14434039, "featuredRunMedia": null, "reactionVideos": [], @@ -472845,7 +472345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14438789, "featuredRunMedia": null, "reactionVideos": [], @@ -472865,7 +472365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 14439688, "featuredRunMedia": null, "reactionVideos": [], @@ -472885,7 +472385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 14439838, "featuredRunMedia": null, "reactionVideos": [], @@ -472905,7 +472405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "144149", "time": 14443132, "featuredRunMedia": null, "reactionVideos": [], @@ -472925,7 +472425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 14443510, "featuredRunMedia": null, "reactionVideos": [], @@ -472945,7 +472445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 14445036, "featuredRunMedia": null, "reactionVideos": [], @@ -472965,7 +472465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "144073", "time": 14446756, "featuredRunMedia": null, "reactionVideos": [], @@ -472985,7 +472485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 14447485, "featuredRunMedia": null, "reactionVideos": [], @@ -473005,7 +472505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14451525, "featuredRunMedia": null, "reactionVideos": [], @@ -473025,7 +472525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14452717, "featuredRunMedia": null, "reactionVideos": [], @@ -473045,7 +472545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14453897, "featuredRunMedia": null, "reactionVideos": [], @@ -473065,7 +472565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "144129", "time": 14454173, "featuredRunMedia": null, "reactionVideos": [], @@ -473085,7 +472585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 14454217, "featuredRunMedia": null, "reactionVideos": [], @@ -473105,7 +472605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14455520, "featuredRunMedia": null, "reactionVideos": [], @@ -473125,7 +472625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 14456527, "featuredRunMedia": null, "reactionVideos": [], @@ -473145,7 +472645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 14456807, "featuredRunMedia": null, "reactionVideos": [], @@ -473165,7 +472665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "144119", "time": 14458111, "featuredRunMedia": null, "reactionVideos": [], @@ -473185,7 +472685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 14458413, "featuredRunMedia": null, "reactionVideos": [], @@ -473205,7 +472705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 14458810, "featuredRunMedia": null, "reactionVideos": [], @@ -473225,7 +472725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 14459029, "featuredRunMedia": null, "reactionVideos": [], @@ -473245,7 +472745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 14462460, "featuredRunMedia": null, "reactionVideos": [], @@ -473269,7 +472769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 14462641, "featuredRunMedia": null, "reactionVideos": [], @@ -473289,7 +472789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 14462805, "featuredRunMedia": null, "reactionVideos": [], @@ -473309,7 +472809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 14464565, "featuredRunMedia": null, "reactionVideos": [], @@ -473329,7 +472829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "144128", "time": 14464613, "featuredRunMedia": null, "reactionVideos": [], @@ -473349,7 +472849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 14465383, "featuredRunMedia": null, "reactionVideos": [], @@ -473369,7 +472869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14465517, "featuredRunMedia": null, "reactionVideos": [], @@ -473389,7 +472889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 14465599, "featuredRunMedia": null, "reactionVideos": [], @@ -473409,7 +472909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14465646, "featuredRunMedia": null, "reactionVideos": [], @@ -473429,7 +472929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "144159", "time": 14468505, "featuredRunMedia": null, "reactionVideos": [], @@ -473449,7 +472949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14468710, "featuredRunMedia": null, "reactionVideos": [], @@ -473469,7 +472969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 14468758, "featuredRunMedia": null, "reactionVideos": [], @@ -473489,7 +472989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "144317", "time": 14471431, "featuredRunMedia": null, "reactionVideos": [], @@ -473509,7 +473009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14472116, "featuredRunMedia": null, "reactionVideos": [], @@ -473529,7 +473029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 14472877, "featuredRunMedia": null, "reactionVideos": [], @@ -473549,7 +473049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 14473327, "featuredRunMedia": null, "reactionVideos": [], @@ -473569,7 +473069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 14473730, "featuredRunMedia": null, "reactionVideos": [], @@ -473589,7 +473089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14474498, "featuredRunMedia": null, "reactionVideos": [], @@ -473609,7 +473109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 14475514, "featuredRunMedia": null, "reactionVideos": [], @@ -473629,7 +473129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14476290, "featuredRunMedia": null, "reactionVideos": [], @@ -473649,7 +473149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 14478619, "featuredRunMedia": null, "reactionVideos": [], @@ -473669,7 +473169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 14479376, "featuredRunMedia": null, "reactionVideos": [], @@ -473689,7 +473189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 14480734, "featuredRunMedia": null, "reactionVideos": [], @@ -473709,7 +473209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 14481264, "featuredRunMedia": null, "reactionVideos": [], @@ -473729,7 +473229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 14481730, "featuredRunMedia": null, "reactionVideos": [], @@ -473749,7 +473249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 14481764, "featuredRunMedia": null, "reactionVideos": [], @@ -473769,7 +473269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14482817, "featuredRunMedia": null, "reactionVideos": [], @@ -473789,7 +473289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 14484215, "featuredRunMedia": null, "reactionVideos": [], @@ -473809,7 +473309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 14484476, "featuredRunMedia": null, "reactionVideos": [], @@ -473829,7 +473329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14485024, "featuredRunMedia": null, "reactionVideos": [], @@ -473849,7 +473349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 14485262, "featuredRunMedia": null, "reactionVideos": [], @@ -473869,7 +473369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 14485839, "featuredRunMedia": null, "reactionVideos": [], @@ -473889,7 +473389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 14486214, "featuredRunMedia": null, "reactionVideos": [], @@ -473909,7 +473409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14486797, "featuredRunMedia": null, "reactionVideos": [], @@ -473929,7 +473429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14489077, "featuredRunMedia": null, "reactionVideos": [], @@ -473949,7 +473449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 14489885, "featuredRunMedia": null, "reactionVideos": [], @@ -473969,7 +473469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 14490321, "featuredRunMedia": null, "reactionVideos": [], @@ -473989,7 +473489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14490737, "featuredRunMedia": null, "reactionVideos": [], @@ -474009,7 +473509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14492112, "featuredRunMedia": null, "reactionVideos": [], @@ -474029,7 +473529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 316, + "teamId": "144386", "time": 14492555, "featuredRunMedia": null, "reactionVideos": [], @@ -474049,7 +473549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14493432, "featuredRunMedia": null, "reactionVideos": [], @@ -474069,7 +473569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14494532, "featuredRunMedia": null, "reactionVideos": [], @@ -474089,7 +473589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 14494605, "featuredRunMedia": null, "reactionVideos": [], @@ -474109,7 +473609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 14495226, "featuredRunMedia": null, "reactionVideos": [], @@ -474129,7 +473629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 14496668, "featuredRunMedia": null, "reactionVideos": [], @@ -474149,7 +473649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14502055, "featuredRunMedia": null, "reactionVideos": [], @@ -474169,7 +473669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14502165, "featuredRunMedia": null, "reactionVideos": [], @@ -474189,7 +473689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14502851, "featuredRunMedia": null, "reactionVideos": [], @@ -474209,7 +473709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "144275", "time": 14503167, "featuredRunMedia": null, "reactionVideos": [], @@ -474229,7 +473729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "144393", "time": 14503212, "featuredRunMedia": null, "reactionVideos": [], @@ -474249,7 +473749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14504586, "featuredRunMedia": null, "reactionVideos": [], @@ -474269,7 +473769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 14506263, "featuredRunMedia": null, "reactionVideos": [], @@ -474289,7 +473789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14508854, "featuredRunMedia": null, "reactionVideos": [], @@ -474309,7 +473809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14508914, "featuredRunMedia": null, "reactionVideos": [], @@ -474329,7 +473829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 14508959, "featuredRunMedia": null, "reactionVideos": [], @@ -474349,7 +473849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 14510486, "featuredRunMedia": null, "reactionVideos": [], @@ -474369,7 +473869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 116, + "teamId": "144186", "time": 14511051, "featuredRunMedia": null, "reactionVideos": [], @@ -474389,7 +473889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 14512067, "featuredRunMedia": null, "reactionVideos": [], @@ -474409,7 +473909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 14513159, "featuredRunMedia": null, "reactionVideos": [], @@ -474429,7 +473929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14513584, "featuredRunMedia": null, "reactionVideos": [], @@ -474449,7 +473949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14513964, "featuredRunMedia": null, "reactionVideos": [], @@ -474469,7 +473969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 14514825, "featuredRunMedia": null, "reactionVideos": [], @@ -474489,7 +473989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 14516011, "featuredRunMedia": null, "reactionVideos": [], @@ -474509,7 +474009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 14516824, "featuredRunMedia": null, "reactionVideos": [], @@ -474529,7 +474029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 389, + "teamId": "144459", "time": 14520333, "featuredRunMedia": null, "reactionVideos": [], @@ -474549,7 +474049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14520836, "featuredRunMedia": null, "reactionVideos": [], @@ -474569,7 +474069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14520924, "featuredRunMedia": null, "reactionVideos": [], @@ -474589,7 +474089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14521155, "featuredRunMedia": null, "reactionVideos": [], @@ -474609,7 +474109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 14521404, "featuredRunMedia": null, "reactionVideos": [], @@ -474629,7 +474129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 396, + "teamId": "144466", "time": 14521789, "featuredRunMedia": null, "reactionVideos": [], @@ -474649,7 +474149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 14524626, "featuredRunMedia": null, "reactionVideos": [], @@ -474669,7 +474169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 14526268, "featuredRunMedia": null, "reactionVideos": [], @@ -474689,7 +474189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14526953, "featuredRunMedia": null, "reactionVideos": [], @@ -474709,7 +474209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 14527600, "featuredRunMedia": null, "reactionVideos": [], @@ -474729,7 +474229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 14527943, "featuredRunMedia": null, "reactionVideos": [], @@ -474749,7 +474249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 14528476, "featuredRunMedia": null, "reactionVideos": [], @@ -474769,7 +474269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14529405, "featuredRunMedia": null, "reactionVideos": [], @@ -474789,7 +474289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 14529721, "featuredRunMedia": null, "reactionVideos": [], @@ -474809,7 +474309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 14530407, "featuredRunMedia": null, "reactionVideos": [], @@ -474829,7 +474329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14530806, "featuredRunMedia": null, "reactionVideos": [], @@ -474849,7 +474349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 14533322, "featuredRunMedia": null, "reactionVideos": [], @@ -474869,7 +474369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 436, + "teamId": "144506", "time": 14534325, "featuredRunMedia": null, "reactionVideos": [], @@ -474889,7 +474389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14534410, "featuredRunMedia": null, "reactionVideos": [], @@ -474909,7 +474409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 14534633, "featuredRunMedia": null, "reactionVideos": [], @@ -474929,7 +474429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 14535339, "featuredRunMedia": null, "reactionVideos": [], @@ -474949,7 +474449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 14535813, "featuredRunMedia": null, "reactionVideos": [], @@ -474969,7 +474469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 14537015, "featuredRunMedia": null, "reactionVideos": [], @@ -474989,7 +474489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 14539061, "featuredRunMedia": null, "reactionVideos": [], @@ -475009,7 +474509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 351, + "teamId": "144421", "time": 14539469, "featuredRunMedia": null, "reactionVideos": [], @@ -475029,7 +474529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 14541402, "featuredRunMedia": null, "reactionVideos": [], @@ -475049,7 +474549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 14542739, "featuredRunMedia": null, "reactionVideos": [], @@ -475069,7 +474569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14543868, "featuredRunMedia": null, "reactionVideos": [], @@ -475089,7 +474589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 14544767, "featuredRunMedia": null, "reactionVideos": [], @@ -475109,7 +474609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 14545044, "featuredRunMedia": null, "reactionVideos": [], @@ -475129,7 +474629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 14545237, "featuredRunMedia": null, "reactionVideos": [], @@ -475149,7 +474649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 14545921, "featuredRunMedia": null, "reactionVideos": [], @@ -475169,7 +474669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "144286", "time": 14546139, "featuredRunMedia": null, "reactionVideos": [], @@ -475189,7 +474689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 14546810, "featuredRunMedia": null, "reactionVideos": [], @@ -475209,7 +474709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 14548195, "featuredRunMedia": null, "reactionVideos": [], @@ -475229,7 +474729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 14550049, "featuredRunMedia": null, "reactionVideos": [], @@ -475249,7 +474749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "144256", "time": 14550756, "featuredRunMedia": null, "reactionVideos": [], @@ -475269,7 +474769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14551995, "featuredRunMedia": null, "reactionVideos": [], @@ -475289,7 +474789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 14554393, "featuredRunMedia": null, "reactionVideos": [], @@ -475309,7 +474809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14556876, "featuredRunMedia": null, "reactionVideos": [], @@ -475329,7 +474829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 14559025, "featuredRunMedia": null, "reactionVideos": [], @@ -475349,7 +474849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 14559752, "featuredRunMedia": null, "reactionVideos": [], @@ -475369,7 +474869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 14560697, "featuredRunMedia": null, "reactionVideos": [], @@ -475389,7 +474889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 14562737, "featuredRunMedia": null, "reactionVideos": [], @@ -475409,7 +474909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 14563173, "featuredRunMedia": null, "reactionVideos": [], @@ -475429,7 +474929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 96, + "teamId": "144166", "time": 14564037, "featuredRunMedia": null, "reactionVideos": [], @@ -475449,7 +474949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14564940, "featuredRunMedia": null, "reactionVideos": [], @@ -475469,7 +474969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 14566952, "featuredRunMedia": null, "reactionVideos": [], @@ -475489,7 +474989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14567020, "featuredRunMedia": null, "reactionVideos": [], @@ -475509,7 +475009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 14567501, "featuredRunMedia": null, "reactionVideos": [], @@ -475529,7 +475029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14568110, "featuredRunMedia": null, "reactionVideos": [], @@ -475549,7 +475049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "144411", "time": 14573129, "featuredRunMedia": null, "reactionVideos": [], @@ -475569,7 +475069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 14573188, "featuredRunMedia": null, "reactionVideos": [], @@ -475589,7 +475089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 14574014, "featuredRunMedia": null, "reactionVideos": [], @@ -475609,7 +475109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 14574936, "featuredRunMedia": null, "reactionVideos": [], @@ -475629,7 +475129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 14576101, "featuredRunMedia": null, "reactionVideos": [], @@ -475649,7 +475149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 361, + "teamId": "144431", "time": 14576358, "featuredRunMedia": null, "reactionVideos": [], @@ -475669,7 +475169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 101, + "teamId": "144171", "time": 14577420, "featuredRunMedia": null, "reactionVideos": [], @@ -475689,7 +475189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 14578153, "featuredRunMedia": null, "reactionVideos": [], @@ -475713,7 +475213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 14579695, "featuredRunMedia": null, "reactionVideos": [], @@ -475733,7 +475233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 319, + "teamId": "144389", "time": 14580714, "featuredRunMedia": null, "reactionVideos": [], @@ -475753,7 +475253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 14581698, "featuredRunMedia": null, "reactionVideos": [], @@ -475773,7 +475273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 14585081, "featuredRunMedia": null, "reactionVideos": [], @@ -475797,7 +475297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 14585294, "featuredRunMedia": null, "reactionVideos": [], @@ -475817,7 +475317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 14585919, "featuredRunMedia": null, "reactionVideos": [], @@ -475837,7 +475337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 14586506, "featuredRunMedia": null, "reactionVideos": [], @@ -475857,7 +475357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 14586562, "featuredRunMedia": null, "reactionVideos": [], @@ -475877,7 +475377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14586609, "featuredRunMedia": null, "reactionVideos": [], @@ -475897,7 +475397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 14588245, "featuredRunMedia": null, "reactionVideos": [], @@ -475917,7 +475417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 14592481, "featuredRunMedia": null, "reactionVideos": [], @@ -475937,7 +475437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 14593986, "featuredRunMedia": null, "reactionVideos": [], @@ -475957,7 +475457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 14594276, "featuredRunMedia": null, "reactionVideos": [], @@ -475977,7 +475477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 197, + "teamId": "144267", "time": 14594350, "featuredRunMedia": null, "reactionVideos": [], @@ -475997,7 +475497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 14594463, "featuredRunMedia": null, "reactionVideos": [], @@ -476017,7 +475517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 14595178, "featuredRunMedia": null, "reactionVideos": [], @@ -476037,7 +475537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 14597055, "featuredRunMedia": null, "reactionVideos": [], @@ -476057,7 +475557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14597225, "featuredRunMedia": null, "reactionVideos": [], @@ -476077,7 +475577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 14597955, "featuredRunMedia": null, "reactionVideos": [], @@ -476097,7 +475597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14598035, "featuredRunMedia": null, "reactionVideos": [], @@ -476117,7 +475617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 14600207, "featuredRunMedia": null, "reactionVideos": [], @@ -476137,7 +475637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 14601644, "featuredRunMedia": null, "reactionVideos": [], @@ -476157,7 +475657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 14602865, "featuredRunMedia": null, "reactionVideos": [], @@ -476177,7 +475677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 14603876, "featuredRunMedia": null, "reactionVideos": [], @@ -476197,7 +475697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14605328, "featuredRunMedia": null, "reactionVideos": [], @@ -476217,7 +475717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 14607190, "featuredRunMedia": null, "reactionVideos": [], @@ -476237,7 +475737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 14608116, "featuredRunMedia": null, "reactionVideos": [], @@ -476257,7 +475757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14608534, "featuredRunMedia": null, "reactionVideos": [], @@ -476277,7 +475777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 14608988, "featuredRunMedia": null, "reactionVideos": [], @@ -476297,7 +475797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14609452, "featuredRunMedia": null, "reactionVideos": [], @@ -476317,7 +475817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 352, + "teamId": "144422", "time": 14610809, "featuredRunMedia": null, "reactionVideos": [], @@ -476337,7 +475837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14611193, "featuredRunMedia": null, "reactionVideos": [], @@ -476357,7 +475857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14611356, "featuredRunMedia": null, "reactionVideos": [], @@ -476377,7 +475877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 14611996, "featuredRunMedia": null, "reactionVideos": [], @@ -476397,7 +475897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14612324, "featuredRunMedia": null, "reactionVideos": [], @@ -476417,7 +475917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 14612815, "featuredRunMedia": null, "reactionVideos": [], @@ -476437,7 +475937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 14613309, "featuredRunMedia": null, "reactionVideos": [], @@ -476457,7 +475957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 14613479, "featuredRunMedia": null, "reactionVideos": [], @@ -476477,7 +475977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 14614673, "featuredRunMedia": null, "reactionVideos": [], @@ -476497,7 +475997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 402, + "teamId": "144472", "time": 14615736, "featuredRunMedia": null, "reactionVideos": [], @@ -476517,7 +476017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 14616108, "featuredRunMedia": null, "reactionVideos": [], @@ -476537,7 +476037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 14617790, "featuredRunMedia": null, "reactionVideos": [], @@ -476557,7 +476057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 14618102, "featuredRunMedia": null, "reactionVideos": [], @@ -476577,7 +476077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 14619867, "featuredRunMedia": null, "reactionVideos": [], @@ -476597,7 +476097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 267, + "teamId": "144337", "time": 14619918, "featuredRunMedia": null, "reactionVideos": [], @@ -476621,7 +476121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 14619966, "featuredRunMedia": null, "reactionVideos": [], @@ -476641,7 +476141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 14620504, "featuredRunMedia": null, "reactionVideos": [], @@ -476661,7 +476161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 14620551, "featuredRunMedia": null, "reactionVideos": [], @@ -476681,7 +476181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14621499, "featuredRunMedia": null, "reactionVideos": [], @@ -476701,7 +476201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14621801, "featuredRunMedia": null, "reactionVideos": [], @@ -476721,7 +476221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 14624353, "featuredRunMedia": null, "reactionVideos": [], @@ -476741,7 +476241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 440, + "teamId": "144510", "time": 14627566, "featuredRunMedia": null, "reactionVideos": [], @@ -476761,7 +476261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "144082", "time": 14627949, "featuredRunMedia": null, "reactionVideos": [], @@ -476781,7 +476281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 14628024, "featuredRunMedia": null, "reactionVideos": [], @@ -476801,7 +476301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14628423, "featuredRunMedia": null, "reactionVideos": [], @@ -476821,7 +476321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 14630669, "featuredRunMedia": null, "reactionVideos": [], @@ -476845,7 +476345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 14630954, "featuredRunMedia": null, "reactionVideos": [], @@ -476865,7 +476365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 14631182, "featuredRunMedia": null, "reactionVideos": [], @@ -476885,7 +476385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14634115, "featuredRunMedia": null, "reactionVideos": [], @@ -476905,7 +476405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 14636371, "featuredRunMedia": null, "reactionVideos": [], @@ -476925,7 +476425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 14638060, "featuredRunMedia": null, "reactionVideos": [], @@ -476945,7 +476445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 14638630, "featuredRunMedia": null, "reactionVideos": [], @@ -476965,7 +476465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "144403", "time": 14639246, "featuredRunMedia": null, "reactionVideos": [], @@ -476985,7 +476485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 14640126, "featuredRunMedia": null, "reactionVideos": [], @@ -477005,7 +476505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 14641245, "featuredRunMedia": null, "reactionVideos": [], @@ -477025,7 +476525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 14641459, "featuredRunMedia": null, "reactionVideos": [], @@ -477045,7 +476545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 14641556, "featuredRunMedia": null, "reactionVideos": [], @@ -477065,7 +476565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 14642603, "featuredRunMedia": null, "reactionVideos": [], @@ -477085,7 +476585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 14644347, "featuredRunMedia": null, "reactionVideos": [], @@ -477105,7 +476605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 14645593, "featuredRunMedia": null, "reactionVideos": [], @@ -477125,7 +476625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 14647220, "featuredRunMedia": null, "reactionVideos": [], @@ -477145,7 +476645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 14649558, "featuredRunMedia": null, "reactionVideos": [], @@ -477165,7 +476665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14650389, "featuredRunMedia": null, "reactionVideos": [], @@ -477185,7 +476685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14650757, "featuredRunMedia": null, "reactionVideos": [], @@ -477205,7 +476705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14651384, "featuredRunMedia": null, "reactionVideos": [], @@ -477225,7 +476725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 14652665, "featuredRunMedia": null, "reactionVideos": [], @@ -477245,7 +476745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 14655254, "featuredRunMedia": null, "reactionVideos": [], @@ -477265,7 +476765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 14655923, "featuredRunMedia": null, "reactionVideos": [], @@ -477285,7 +476785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 14656200, "featuredRunMedia": null, "reactionVideos": [], @@ -477305,7 +476805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "144239", "time": 14656277, "featuredRunMedia": null, "reactionVideos": [], @@ -477325,7 +476825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14656333, "featuredRunMedia": null, "reactionVideos": [], @@ -477345,7 +476845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14656944, "featuredRunMedia": null, "reactionVideos": [], @@ -477365,7 +476865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 14660204, "featuredRunMedia": null, "reactionVideos": [], @@ -477385,7 +476885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14660936, "featuredRunMedia": null, "reactionVideos": [], @@ -477405,7 +476905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 14662386, "featuredRunMedia": null, "reactionVideos": [], @@ -477425,7 +476925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14663686, "featuredRunMedia": null, "reactionVideos": [], @@ -477445,7 +476945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 230, + "teamId": "144300", "time": 14664614, "featuredRunMedia": null, "reactionVideos": [], @@ -477465,7 +476965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 14666442, "featuredRunMedia": null, "reactionVideos": [], @@ -477485,7 +476985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 14668297, "featuredRunMedia": null, "reactionVideos": [], @@ -477505,7 +477005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14672818, "featuredRunMedia": null, "reactionVideos": [], @@ -477525,7 +477025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14673581, "featuredRunMedia": null, "reactionVideos": [], @@ -477545,7 +477045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "144160", "time": 14674833, "featuredRunMedia": null, "reactionVideos": [], @@ -477565,7 +477065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 14676562, "featuredRunMedia": null, "reactionVideos": [], @@ -477585,7 +477085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 14677467, "featuredRunMedia": null, "reactionVideos": [], @@ -477605,7 +477105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "144096", "time": 14677832, "featuredRunMedia": null, "reactionVideos": [], @@ -477625,7 +477125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 14678495, "featuredRunMedia": null, "reactionVideos": [], @@ -477645,7 +477145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 14681431, "featuredRunMedia": null, "reactionVideos": [], @@ -477665,7 +477165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 348, + "teamId": "144418", "time": 14681898, "featuredRunMedia": null, "reactionVideos": [], @@ -477685,7 +477185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "144265", "time": 14686008, "featuredRunMedia": null, "reactionVideos": [], @@ -477705,7 +477205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 14686159, "featuredRunMedia": null, "reactionVideos": [], @@ -477725,7 +477225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 14686528, "featuredRunMedia": null, "reactionVideos": [], @@ -477745,7 +477245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14687503, "featuredRunMedia": null, "reactionVideos": [], @@ -477765,7 +477265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 14688720, "featuredRunMedia": null, "reactionVideos": [], @@ -477785,7 +477285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 14689856, "featuredRunMedia": null, "reactionVideos": [], @@ -477805,7 +477305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14689906, "featuredRunMedia": null, "reactionVideos": [], @@ -477825,7 +477325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 14690502, "featuredRunMedia": null, "reactionVideos": [], @@ -477845,7 +477345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 14690542, "featuredRunMedia": null, "reactionVideos": [], @@ -477865,7 +477365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 14691163, "featuredRunMedia": null, "reactionVideos": [], @@ -477885,7 +477385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 14692619, "featuredRunMedia": null, "reactionVideos": [], @@ -477905,7 +477405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 14693783, "featuredRunMedia": null, "reactionVideos": [], @@ -477925,7 +477425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 14695066, "featuredRunMedia": null, "reactionVideos": [], @@ -477945,7 +477445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14695910, "featuredRunMedia": null, "reactionVideos": [], @@ -477965,7 +477465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "144198", "time": 14696974, "featuredRunMedia": null, "reactionVideos": [], @@ -477985,7 +477485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 371, + "teamId": "144441", "time": 14699245, "featuredRunMedia": null, "reactionVideos": [], @@ -478005,7 +477505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 14700012, "featuredRunMedia": null, "reactionVideos": [], @@ -478025,7 +477525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 14700586, "featuredRunMedia": null, "reactionVideos": [], @@ -478045,7 +477545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14701569, "featuredRunMedia": null, "reactionVideos": [], @@ -478065,7 +477565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14702756, "featuredRunMedia": null, "reactionVideos": [], @@ -478085,7 +477585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 14706107, "featuredRunMedia": null, "reactionVideos": [], @@ -478105,7 +477605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 14706613, "featuredRunMedia": null, "reactionVideos": [], @@ -478125,7 +477625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 14707292, "featuredRunMedia": null, "reactionVideos": [], @@ -478145,7 +477645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 14707355, "featuredRunMedia": null, "reactionVideos": [], @@ -478165,7 +477665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 14707391, "featuredRunMedia": null, "reactionVideos": [], @@ -478185,7 +477685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 14709026, "featuredRunMedia": null, "reactionVideos": [], @@ -478205,7 +477705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 14709435, "featuredRunMedia": null, "reactionVideos": [], @@ -478225,7 +477725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 14718332, "featuredRunMedia": null, "reactionVideos": [], @@ -478245,7 +477745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 14718510, "featuredRunMedia": null, "reactionVideos": [], @@ -478265,7 +477765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14718665, "featuredRunMedia": null, "reactionVideos": [], @@ -478285,7 +477785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 14718885, "featuredRunMedia": null, "reactionVideos": [], @@ -478305,7 +477805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14720353, "featuredRunMedia": null, "reactionVideos": [], @@ -478325,7 +477825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 14720929, "featuredRunMedia": null, "reactionVideos": [], @@ -478345,7 +477845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 355, + "teamId": "144425", "time": 14722855, "featuredRunMedia": null, "reactionVideos": [], @@ -478365,7 +477865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14723536, "featuredRunMedia": null, "reactionVideos": [], @@ -478385,7 +477885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 14725490, "featuredRunMedia": null, "reactionVideos": [], @@ -478405,7 +477905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 14726001, "featuredRunMedia": null, "reactionVideos": [], @@ -478425,7 +477925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 14726282, "featuredRunMedia": null, "reactionVideos": [], @@ -478445,7 +477945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14729126, "featuredRunMedia": null, "reactionVideos": [], @@ -478465,7 +477965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14730587, "featuredRunMedia": null, "reactionVideos": [], @@ -478489,7 +477989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 14731726, "featuredRunMedia": null, "reactionVideos": [], @@ -478509,7 +478009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14731925, "featuredRunMedia": null, "reactionVideos": [], @@ -478529,7 +478029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 14733153, "featuredRunMedia": null, "reactionVideos": [], @@ -478549,7 +478049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14734063, "featuredRunMedia": null, "reactionVideos": [], @@ -478569,7 +478069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14736956, "featuredRunMedia": null, "reactionVideos": [], @@ -478589,7 +478089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 14738016, "featuredRunMedia": null, "reactionVideos": [], @@ -478609,7 +478109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14738681, "featuredRunMedia": null, "reactionVideos": [], @@ -478629,7 +478129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 185, + "teamId": "144255", "time": 14739046, "featuredRunMedia": null, "reactionVideos": [], @@ -478649,7 +478149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 14739111, "featuredRunMedia": null, "reactionVideos": [], @@ -478669,7 +478169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 14739171, "featuredRunMedia": null, "reactionVideos": [], @@ -478689,7 +478189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 14739457, "featuredRunMedia": null, "reactionVideos": [], @@ -478709,7 +478209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 14740527, "featuredRunMedia": null, "reactionVideos": [], @@ -478729,7 +478229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 402, + "teamId": "144472", "time": 14740754, "featuredRunMedia": null, "reactionVideos": [], @@ -478749,7 +478249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 14741063, "featuredRunMedia": null, "reactionVideos": [], @@ -478769,7 +478269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14741561, "featuredRunMedia": null, "reactionVideos": [], @@ -478789,7 +478289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 14741710, "featuredRunMedia": null, "reactionVideos": [], @@ -478809,7 +478309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 91, + "teamId": "144161", "time": 14742536, "featuredRunMedia": null, "reactionVideos": [], @@ -478829,7 +478329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14742864, "featuredRunMedia": null, "reactionVideos": [], @@ -478849,7 +478349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 14742906, "featuredRunMedia": null, "reactionVideos": [], @@ -478869,7 +478369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 109, + "teamId": "144179", "time": 14744084, "featuredRunMedia": null, "reactionVideos": [], @@ -478889,7 +478389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 14744475, "featuredRunMedia": null, "reactionVideos": [], @@ -478909,7 +478409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 14744571, "featuredRunMedia": null, "reactionVideos": [], @@ -478929,7 +478429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 14744990, "featuredRunMedia": null, "reactionVideos": [], @@ -478949,7 +478449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14745230, "featuredRunMedia": null, "reactionVideos": [], @@ -478969,7 +478469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14745841, "featuredRunMedia": null, "reactionVideos": [], @@ -478989,7 +478489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14746443, "featuredRunMedia": null, "reactionVideos": [], @@ -479009,7 +478509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 14746828, "featuredRunMedia": null, "reactionVideos": [], @@ -479029,7 +478529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14748004, "featuredRunMedia": null, "reactionVideos": [], @@ -479049,7 +478549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14748159, "featuredRunMedia": null, "reactionVideos": [], @@ -479069,7 +478569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 14750114, "featuredRunMedia": null, "reactionVideos": [], @@ -479089,7 +478589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 14750793, "featuredRunMedia": null, "reactionVideos": [], @@ -479109,7 +478609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 14751783, "featuredRunMedia": null, "reactionVideos": [], @@ -479129,7 +478629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 14751842, "featuredRunMedia": null, "reactionVideos": [], @@ -479149,7 +478649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 14753424, "featuredRunMedia": null, "reactionVideos": [], @@ -479169,7 +478669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14755121, "featuredRunMedia": null, "reactionVideos": [], @@ -479189,7 +478689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 14757978, "featuredRunMedia": null, "reactionVideos": [], @@ -479209,7 +478709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14758920, "featuredRunMedia": null, "reactionVideos": [], @@ -479229,7 +478729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "144142", "time": 14759133, "featuredRunMedia": null, "reactionVideos": [], @@ -479249,7 +478749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 14759672, "featuredRunMedia": null, "reactionVideos": [], @@ -479269,7 +478769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 14760057, "featuredRunMedia": null, "reactionVideos": [], @@ -479289,7 +478789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 389, + "teamId": "144459", "time": 14760331, "featuredRunMedia": null, "reactionVideos": [], @@ -479309,7 +478809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 14760832, "featuredRunMedia": null, "reactionVideos": [], @@ -479329,7 +478829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "144341", "time": 14761045, "featuredRunMedia": null, "reactionVideos": [], @@ -479349,7 +478849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 14761344, "featuredRunMedia": null, "reactionVideos": [], @@ -479369,7 +478869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "144349", "time": 14762070, "featuredRunMedia": null, "reactionVideos": [], @@ -479389,7 +478889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 14763588, "featuredRunMedia": null, "reactionVideos": [], @@ -479409,7 +478909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 14764356, "featuredRunMedia": null, "reactionVideos": [], @@ -479429,7 +478929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "144338", "time": 14764630, "featuredRunMedia": null, "reactionVideos": [], @@ -479449,7 +478949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 439, + "teamId": "144509", "time": 14765733, "featuredRunMedia": null, "reactionVideos": [], @@ -479473,7 +478973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 14766856, "featuredRunMedia": null, "reactionVideos": [], @@ -479493,7 +478993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 14767685, "featuredRunMedia": null, "reactionVideos": [], @@ -479513,7 +479013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 14768444, "featuredRunMedia": null, "reactionVideos": [], @@ -479533,7 +479033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 14769878, "featuredRunMedia": null, "reactionVideos": [], @@ -479553,7 +479053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 14770347, "featuredRunMedia": null, "reactionVideos": [], @@ -479573,7 +479073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14770467, "featuredRunMedia": null, "reactionVideos": [], @@ -479593,7 +479093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 14770983, "featuredRunMedia": null, "reactionVideos": [], @@ -479613,7 +479113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 14771052, "featuredRunMedia": null, "reactionVideos": [], @@ -479633,7 +479133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14771467, "featuredRunMedia": null, "reactionVideos": [], @@ -479653,7 +479153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 267, + "teamId": "144337", "time": 14772168, "featuredRunMedia": null, "reactionVideos": [], @@ -479673,7 +479173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 14774201, "featuredRunMedia": null, "reactionVideos": [], @@ -479693,7 +479193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 14777343, "featuredRunMedia": null, "reactionVideos": [], @@ -479713,7 +479213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 14777715, "featuredRunMedia": null, "reactionVideos": [], @@ -479733,7 +479233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14777811, "featuredRunMedia": null, "reactionVideos": [], @@ -479753,7 +479253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 96, + "teamId": "144166", "time": 14780776, "featuredRunMedia": null, "reactionVideos": [], @@ -479773,7 +479273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "144128", "time": 14780835, "featuredRunMedia": null, "reactionVideos": [], @@ -479793,7 +479293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "144366", "time": 14781424, "featuredRunMedia": null, "reactionVideos": [], @@ -479813,7 +479313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 14782229, "featuredRunMedia": null, "reactionVideos": [], @@ -479833,7 +479333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 14782846, "featuredRunMedia": null, "reactionVideos": [], @@ -479853,7 +479353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14784247, "featuredRunMedia": null, "reactionVideos": [], @@ -479873,7 +479373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14784561, "featuredRunMedia": null, "reactionVideos": [], @@ -479893,7 +479393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 14786123, "featuredRunMedia": null, "reactionVideos": [], @@ -479913,7 +479413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 14787531, "featuredRunMedia": null, "reactionVideos": [], @@ -479933,7 +479433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 14787633, "featuredRunMedia": null, "reactionVideos": [], @@ -479953,7 +479453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "144253", "time": 14787689, "featuredRunMedia": null, "reactionVideos": [], @@ -479973,7 +479473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14789064, "featuredRunMedia": null, "reactionVideos": [], @@ -479993,7 +479493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 14789202, "featuredRunMedia": null, "reactionVideos": [], @@ -480013,7 +479513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 14791422, "featuredRunMedia": null, "reactionVideos": [], @@ -480033,7 +479533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 14792758, "featuredRunMedia": null, "reactionVideos": [], @@ -480053,7 +479553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 14793360, "featuredRunMedia": null, "reactionVideos": [], @@ -480073,7 +479573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "144291", "time": 14794981, "featuredRunMedia": null, "reactionVideos": [], @@ -480097,7 +479597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 14795601, "featuredRunMedia": null, "reactionVideos": [], @@ -480117,7 +479617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 14797661, "featuredRunMedia": null, "reactionVideos": [], @@ -480137,7 +479637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 14797809, "featuredRunMedia": null, "reactionVideos": [], @@ -480157,7 +479657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 14798255, "featuredRunMedia": null, "reactionVideos": [], @@ -480177,7 +479677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 14799392, "featuredRunMedia": null, "reactionVideos": [], @@ -480197,7 +479697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 14800652, "featuredRunMedia": null, "reactionVideos": [], @@ -480217,7 +479717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14801269, "featuredRunMedia": null, "reactionVideos": [], @@ -480237,7 +479737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 14802442, "featuredRunMedia": null, "reactionVideos": [], @@ -480257,7 +479757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "144272", "time": 14803305, "featuredRunMedia": null, "reactionVideos": [], @@ -480277,7 +479777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 14805064, "featuredRunMedia": null, "reactionVideos": [], @@ -480297,7 +479797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 375, + "teamId": "144445", "time": 14805509, "featuredRunMedia": null, "reactionVideos": [], @@ -480317,7 +479817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 14806599, "featuredRunMedia": null, "reactionVideos": [], @@ -480337,7 +479837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "144085", "time": 14808044, "featuredRunMedia": null, "reactionVideos": [], @@ -480357,7 +479857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 14808956, "featuredRunMedia": null, "reactionVideos": [], @@ -480377,7 +479877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 14810067, "featuredRunMedia": null, "reactionVideos": [], @@ -480397,7 +479897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 14810630, "featuredRunMedia": null, "reactionVideos": [], @@ -480417,7 +479917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 14810983, "featuredRunMedia": null, "reactionVideos": [], @@ -480437,7 +479937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 14811035, "featuredRunMedia": null, "reactionVideos": [], @@ -480457,7 +479957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "144087", "time": 14811207, "featuredRunMedia": null, "reactionVideos": [], @@ -480477,7 +479977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 14812897, "featuredRunMedia": null, "reactionVideos": [], @@ -480497,7 +479997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 14814304, "featuredRunMedia": null, "reactionVideos": [], @@ -480517,7 +480017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 292, + "teamId": "144362", "time": 14815045, "featuredRunMedia": null, "reactionVideos": [], @@ -480537,7 +480037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 14815237, "featuredRunMedia": null, "reactionVideos": [], @@ -480557,7 +480057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 14818252, "featuredRunMedia": null, "reactionVideos": [], @@ -480577,7 +480077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 14818388, "featuredRunMedia": null, "reactionVideos": [], @@ -480597,7 +480097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 14819462, "featuredRunMedia": null, "reactionVideos": [], @@ -480617,7 +480117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 14819578, "featuredRunMedia": null, "reactionVideos": [], @@ -480637,7 +480137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 329, + "teamId": "144399", "time": 14822263, "featuredRunMedia": null, "reactionVideos": [], @@ -480657,7 +480157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14823665, "featuredRunMedia": null, "reactionVideos": [], @@ -480677,7 +480177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 14823851, "featuredRunMedia": null, "reactionVideos": [], @@ -480697,7 +480197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 14823908, "featuredRunMedia": null, "reactionVideos": [], @@ -480717,7 +480217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 14826213, "featuredRunMedia": null, "reactionVideos": [], @@ -480737,7 +480237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 14827102, "featuredRunMedia": null, "reactionVideos": [], @@ -480761,7 +480261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14827504, "featuredRunMedia": null, "reactionVideos": [], @@ -480785,7 +480285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 14829174, "featuredRunMedia": null, "reactionVideos": [], @@ -480805,7 +480305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 14831243, "featuredRunMedia": null, "reactionVideos": [], @@ -480825,7 +480325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14831824, "featuredRunMedia": null, "reactionVideos": [], @@ -480845,7 +480345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "144194", "time": 14832379, "featuredRunMedia": null, "reactionVideos": [], @@ -480865,7 +480365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 14834464, "featuredRunMedia": null, "reactionVideos": [], @@ -480885,7 +480385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 14834629, "featuredRunMedia": null, "reactionVideos": [], @@ -480905,7 +480405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "144137", "time": 14835117, "featuredRunMedia": null, "reactionVideos": [], @@ -480925,7 +480425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 14835248, "featuredRunMedia": null, "reactionVideos": [], @@ -480945,7 +480445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 14835500, "featuredRunMedia": null, "reactionVideos": [], @@ -480965,7 +480465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "144167", "time": 14835773, "featuredRunMedia": null, "reactionVideos": [], @@ -480985,7 +480485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "144128", "time": 14835955, "featuredRunMedia": null, "reactionVideos": [], @@ -481005,7 +480505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 14836569, "featuredRunMedia": null, "reactionVideos": [], @@ -481025,7 +480525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14837525, "featuredRunMedia": null, "reactionVideos": [], @@ -481045,7 +480545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 14837698, "featuredRunMedia": null, "reactionVideos": [], @@ -481065,7 +480565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 14838479, "featuredRunMedia": null, "reactionVideos": [], @@ -481085,7 +480585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 14841477, "featuredRunMedia": null, "reactionVideos": [], @@ -481105,7 +480605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 14841865, "featuredRunMedia": null, "reactionVideos": [], @@ -481125,7 +480625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 14843285, "featuredRunMedia": null, "reactionVideos": [], @@ -481145,7 +480645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14843638, "featuredRunMedia": null, "reactionVideos": [], @@ -481165,7 +480665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 14843759, "featuredRunMedia": null, "reactionVideos": [], @@ -481185,7 +480685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 14843862, "featuredRunMedia": null, "reactionVideos": [], @@ -481205,7 +480705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 30, + "teamId": "144100", "time": 14844269, "featuredRunMedia": null, "reactionVideos": [], @@ -481225,7 +480725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 14844946, "featuredRunMedia": null, "reactionVideos": [], @@ -481249,7 +480749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14845562, "featuredRunMedia": null, "reactionVideos": [], @@ -481269,7 +480769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 14847349, "featuredRunMedia": null, "reactionVideos": [], @@ -481289,7 +480789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14849832, "featuredRunMedia": null, "reactionVideos": [], @@ -481309,7 +480809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 14850334, "featuredRunMedia": null, "reactionVideos": [], @@ -481329,7 +480829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 14850774, "featuredRunMedia": null, "reactionVideos": [], @@ -481349,7 +480849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 14850884, "featuredRunMedia": null, "reactionVideos": [], @@ -481369,7 +480869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14854269, "featuredRunMedia": null, "reactionVideos": [], @@ -481389,7 +480889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "144391", "time": 14858318, "featuredRunMedia": null, "reactionVideos": [], @@ -481409,7 +480909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14860309, "featuredRunMedia": null, "reactionVideos": [], @@ -481429,7 +480929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 14860761, "featuredRunMedia": null, "reactionVideos": [], @@ -481449,7 +480949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 14861643, "featuredRunMedia": null, "reactionVideos": [], @@ -481469,7 +480969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 14862083, "featuredRunMedia": null, "reactionVideos": [], @@ -481489,7 +480989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 14862488, "featuredRunMedia": null, "reactionVideos": [], @@ -481509,7 +481009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 14862857, "featuredRunMedia": null, "reactionVideos": [], @@ -481529,7 +481029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 14863166, "featuredRunMedia": null, "reactionVideos": [], @@ -481549,7 +481049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 14863804, "featuredRunMedia": null, "reactionVideos": [], @@ -481569,7 +481069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 14864005, "featuredRunMedia": null, "reactionVideos": [], @@ -481589,7 +481089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 14866537, "featuredRunMedia": null, "reactionVideos": [], @@ -481609,7 +481109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 14867605, "featuredRunMedia": null, "reactionVideos": [], @@ -481629,7 +481129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 14868642, "featuredRunMedia": null, "reactionVideos": [], @@ -481649,7 +481149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 14868711, "featuredRunMedia": null, "reactionVideos": [], @@ -481669,7 +481169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 14868780, "featuredRunMedia": null, "reactionVideos": [], @@ -481689,7 +481189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 14871623, "featuredRunMedia": null, "reactionVideos": [], @@ -481709,7 +481209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 14871700, "featuredRunMedia": null, "reactionVideos": [], @@ -481733,7 +481233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 14872616, "featuredRunMedia": null, "reactionVideos": [], @@ -481753,7 +481253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 14873371, "featuredRunMedia": null, "reactionVideos": [], @@ -481773,7 +481273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 14874132, "featuredRunMedia": null, "reactionVideos": [], @@ -481793,7 +481293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14875314, "featuredRunMedia": null, "reactionVideos": [], @@ -481813,7 +481313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 14875562, "featuredRunMedia": null, "reactionVideos": [], @@ -481833,7 +481333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 14876404, "featuredRunMedia": null, "reactionVideos": [], @@ -481853,7 +481353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14876714, "featuredRunMedia": null, "reactionVideos": [], @@ -481873,7 +481373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 14877283, "featuredRunMedia": null, "reactionVideos": [], @@ -481893,7 +481393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 14877511, "featuredRunMedia": null, "reactionVideos": [], @@ -481913,7 +481413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 14879207, "featuredRunMedia": null, "reactionVideos": [], @@ -481933,7 +481433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 14881321, "featuredRunMedia": null, "reactionVideos": [], @@ -481953,7 +481453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 14883664, "featuredRunMedia": null, "reactionVideos": [], @@ -481973,7 +481473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 14884090, "featuredRunMedia": null, "reactionVideos": [], @@ -481993,7 +481493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 222, + "teamId": "144292", "time": 14886459, "featuredRunMedia": null, "reactionVideos": [], @@ -482013,7 +481513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 14887193, "featuredRunMedia": null, "reactionVideos": [], @@ -482033,7 +481533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 14889426, "featuredRunMedia": null, "reactionVideos": [], @@ -482053,7 +481553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 14891223, "featuredRunMedia": null, "reactionVideos": [], @@ -482073,7 +481573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 14893300, "featuredRunMedia": null, "reactionVideos": [], @@ -482093,7 +481593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 14893503, "featuredRunMedia": null, "reactionVideos": [], @@ -482113,7 +481613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 14894346, "featuredRunMedia": null, "reactionVideos": [], @@ -482133,7 +481633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 14894519, "featuredRunMedia": null, "reactionVideos": [], @@ -482157,7 +481657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 14895700, "featuredRunMedia": null, "reactionVideos": [], @@ -482177,7 +481677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 14897300, "featuredRunMedia": null, "reactionVideos": [], @@ -482197,7 +481697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 14897705, "featuredRunMedia": null, "reactionVideos": [], @@ -482217,7 +481717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 14897873, "featuredRunMedia": null, "reactionVideos": [], @@ -482237,7 +481737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 14898621, "featuredRunMedia": null, "reactionVideos": [], @@ -482257,7 +481757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 14899554, "featuredRunMedia": null, "reactionVideos": [], @@ -482277,7 +481777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 14900061, "featuredRunMedia": null, "reactionVideos": [], @@ -482297,7 +481797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 14902385, "featuredRunMedia": null, "reactionVideos": [], @@ -482317,7 +481817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 14902965, "featuredRunMedia": null, "reactionVideos": [], @@ -482337,7 +481837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14903390, "featuredRunMedia": null, "reactionVideos": [], @@ -482357,7 +481857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 14903651, "featuredRunMedia": null, "reactionVideos": [], @@ -482377,7 +481877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 14903722, "featuredRunMedia": null, "reactionVideos": [], @@ -482397,7 +481897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 14903839, "featuredRunMedia": null, "reactionVideos": [], @@ -482417,7 +481917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 14905390, "featuredRunMedia": null, "reactionVideos": [], @@ -482437,7 +481937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "144200", "time": 14905802, "featuredRunMedia": null, "reactionVideos": [], @@ -482457,7 +481957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 102, + "teamId": "144172", "time": 14907331, "featuredRunMedia": null, "reactionVideos": [], @@ -482477,7 +481977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 14907527, "featuredRunMedia": null, "reactionVideos": [], @@ -482497,7 +481997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "144223", "time": 14907762, "featuredRunMedia": null, "reactionVideos": [], @@ -482517,7 +482017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 279, + "teamId": "144349", "time": 14909182, "featuredRunMedia": null, "reactionVideos": [], @@ -482537,7 +482037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 14910286, "featuredRunMedia": null, "reactionVideos": [], @@ -482557,7 +482057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 14910482, "featuredRunMedia": null, "reactionVideos": [], @@ -482577,7 +482077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 14910643, "featuredRunMedia": null, "reactionVideos": [], @@ -482597,7 +482097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "144225", "time": 14913375, "featuredRunMedia": null, "reactionVideos": [], @@ -482617,7 +482117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 14914462, "featuredRunMedia": null, "reactionVideos": [], @@ -482637,7 +482137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 14915273, "featuredRunMedia": null, "reactionVideos": [], @@ -482657,7 +482157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 14915415, "featuredRunMedia": null, "reactionVideos": [], @@ -482677,7 +482177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 14917105, "featuredRunMedia": null, "reactionVideos": [], @@ -482697,7 +482197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 422, + "teamId": "144492", "time": 14917391, "featuredRunMedia": null, "reactionVideos": [], @@ -482717,7 +482217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14917621, "featuredRunMedia": null, "reactionVideos": [], @@ -482737,7 +482237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 14918366, "featuredRunMedia": null, "reactionVideos": [], @@ -482757,7 +482257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 14921726, "featuredRunMedia": null, "reactionVideos": [], @@ -482777,7 +482277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 14922269, "featuredRunMedia": null, "reactionVideos": [], @@ -482797,7 +482297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 14923448, "featuredRunMedia": null, "reactionVideos": [], @@ -482817,7 +482317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 14923774, "featuredRunMedia": null, "reactionVideos": [], @@ -482837,7 +482337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 14927021, "featuredRunMedia": null, "reactionVideos": [], @@ -482857,7 +482357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 14927206, "featuredRunMedia": null, "reactionVideos": [], @@ -482877,7 +482377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14928470, "featuredRunMedia": null, "reactionVideos": [], @@ -482897,7 +482397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 14929562, "featuredRunMedia": null, "reactionVideos": [], @@ -482917,7 +482417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 14931040, "featuredRunMedia": null, "reactionVideos": [], @@ -482937,7 +482437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 14932372, "featuredRunMedia": null, "reactionVideos": [], @@ -482957,7 +482457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 14933615, "featuredRunMedia": null, "reactionVideos": [], @@ -482977,7 +482477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 14934535, "featuredRunMedia": null, "reactionVideos": [], @@ -482997,7 +482497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 30, + "teamId": "144100", "time": 14937568, "featuredRunMedia": null, "reactionVideos": [], @@ -483017,7 +482517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 14938691, "featuredRunMedia": null, "reactionVideos": [], @@ -483037,7 +482537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 14939869, "featuredRunMedia": null, "reactionVideos": [], @@ -483057,7 +482557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 14941978, "featuredRunMedia": null, "reactionVideos": [], @@ -483077,7 +482577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 366, + "teamId": "144436", "time": 14943014, "featuredRunMedia": null, "reactionVideos": [], @@ -483097,7 +482597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 14945365, "featuredRunMedia": null, "reactionVideos": [], @@ -483117,7 +482617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 14947384, "featuredRunMedia": null, "reactionVideos": [], @@ -483137,7 +482637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 14947792, "featuredRunMedia": null, "reactionVideos": [], @@ -483157,7 +482657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 14949056, "featuredRunMedia": null, "reactionVideos": [], @@ -483177,7 +482677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 14949572, "featuredRunMedia": null, "reactionVideos": [], @@ -483197,7 +482697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 14950736, "featuredRunMedia": null, "reactionVideos": [], @@ -483217,7 +482717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 14950807, "featuredRunMedia": null, "reactionVideos": [], @@ -483241,7 +482741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 14953143, "featuredRunMedia": null, "reactionVideos": [], @@ -483261,7 +482761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14953203, "featuredRunMedia": null, "reactionVideos": [], @@ -483281,7 +482781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 14953663, "featuredRunMedia": null, "reactionVideos": [], @@ -483301,7 +482801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 409, + "teamId": "144479", "time": 14954427, "featuredRunMedia": null, "reactionVideos": [], @@ -483321,7 +482821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 14954682, "featuredRunMedia": null, "reactionVideos": [], @@ -483341,7 +482841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 14954954, "featuredRunMedia": null, "reactionVideos": [], @@ -483361,7 +482861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 14955540, "featuredRunMedia": null, "reactionVideos": [], @@ -483381,7 +482881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 14956254, "featuredRunMedia": null, "reactionVideos": [], @@ -483401,7 +482901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 14957855, "featuredRunMedia": null, "reactionVideos": [], @@ -483421,7 +482921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14960680, "featuredRunMedia": null, "reactionVideos": [], @@ -483441,7 +482941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 14961025, "featuredRunMedia": null, "reactionVideos": [], @@ -483461,7 +482961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 386, + "teamId": "144456", "time": 14962454, "featuredRunMedia": null, "reactionVideos": [], @@ -483481,7 +482981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 14963294, "featuredRunMedia": null, "reactionVideos": [], @@ -483501,7 +483001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 409, + "teamId": "144479", "time": 14963522, "featuredRunMedia": null, "reactionVideos": [], @@ -483521,7 +483021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 14966483, "featuredRunMedia": null, "reactionVideos": [], @@ -483541,7 +483041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "144294", "time": 14966647, "featuredRunMedia": null, "reactionVideos": [], @@ -483561,7 +483061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 14967775, "featuredRunMedia": null, "reactionVideos": [], @@ -483581,7 +483081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 14968634, "featuredRunMedia": null, "reactionVideos": [], @@ -483601,7 +483101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 14969241, "featuredRunMedia": null, "reactionVideos": [], @@ -483621,7 +483121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 14969439, "featuredRunMedia": null, "reactionVideos": [], @@ -483641,7 +483141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "144221", "time": 14969945, "featuredRunMedia": null, "reactionVideos": [], @@ -483661,7 +483161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 14970250, "featuredRunMedia": null, "reactionVideos": [], @@ -483681,7 +483181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "144150", "time": 14970296, "featuredRunMedia": null, "reactionVideos": [], @@ -483701,7 +483201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14970328, "featuredRunMedia": null, "reactionVideos": [], @@ -483721,7 +483221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 14971959, "featuredRunMedia": null, "reactionVideos": [], @@ -483741,7 +483241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 14972290, "featuredRunMedia": null, "reactionVideos": [], @@ -483761,7 +483261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 14973870, "featuredRunMedia": null, "reactionVideos": [], @@ -483781,7 +483281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 14975846, "featuredRunMedia": null, "reactionVideos": [], @@ -483801,7 +483301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "144183", "time": 14976017, "featuredRunMedia": null, "reactionVideos": [], @@ -483825,7 +483325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 14976253, "featuredRunMedia": null, "reactionVideos": [], @@ -483845,7 +483345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "144245", "time": 14977918, "featuredRunMedia": null, "reactionVideos": [], @@ -483865,7 +483365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 14978213, "featuredRunMedia": null, "reactionVideos": [], @@ -483885,7 +483385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14980378, "featuredRunMedia": null, "reactionVideos": [], @@ -483905,7 +483405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "144389", "time": 14982109, "featuredRunMedia": null, "reactionVideos": [], @@ -483925,7 +483425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 14984368, "featuredRunMedia": null, "reactionVideos": [], @@ -483945,7 +483445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 14984508, "featuredRunMedia": null, "reactionVideos": [], @@ -483965,7 +483465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14985135, "featuredRunMedia": null, "reactionVideos": [], @@ -483989,7 +483489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 14986296, "featuredRunMedia": null, "reactionVideos": [], @@ -484009,7 +483509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 14988209, "featuredRunMedia": null, "reactionVideos": [], @@ -484029,7 +483529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 14988720, "featuredRunMedia": null, "reactionVideos": [], @@ -484049,7 +483549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 14989844, "featuredRunMedia": null, "reactionVideos": [], @@ -484069,7 +483569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 14990346, "featuredRunMedia": null, "reactionVideos": [], @@ -484089,7 +483589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 14990510, "featuredRunMedia": null, "reactionVideos": [], @@ -484109,7 +483609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "144082", "time": 14990719, "featuredRunMedia": null, "reactionVideos": [], @@ -484129,7 +483629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "144286", "time": 14990812, "featuredRunMedia": null, "reactionVideos": [], @@ -484149,7 +483649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 14991201, "featuredRunMedia": null, "reactionVideos": [], @@ -484169,7 +483669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14991259, "featuredRunMedia": null, "reactionVideos": [], @@ -484189,7 +483689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 14991465, "featuredRunMedia": null, "reactionVideos": [], @@ -484209,7 +483709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 14996490, "featuredRunMedia": null, "reactionVideos": [], @@ -484229,7 +483729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 14996782, "featuredRunMedia": null, "reactionVideos": [], @@ -484249,7 +483749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 14996816, "featuredRunMedia": null, "reactionVideos": [], @@ -484269,7 +483769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 14997648, "featuredRunMedia": null, "reactionVideos": [], @@ -484289,7 +483789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 14998215, "featuredRunMedia": null, "reactionVideos": [], @@ -484309,7 +483809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 14999246, "featuredRunMedia": null, "reactionVideos": [], @@ -484329,7 +483829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 15001409, "featuredRunMedia": null, "reactionVideos": [], @@ -484349,7 +483849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 15001478, "featuredRunMedia": null, "reactionVideos": [], @@ -484373,7 +483873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15002539, "featuredRunMedia": null, "reactionVideos": [], @@ -484393,7 +483893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "144174", "time": 15003535, "featuredRunMedia": null, "reactionVideos": [], @@ -484413,7 +483913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "144252", "time": 15004886, "featuredRunMedia": null, "reactionVideos": [], @@ -484433,7 +483933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 285, + "teamId": "144355", "time": 15005307, "featuredRunMedia": null, "reactionVideos": [], @@ -484453,7 +483953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 15006494, "featuredRunMedia": null, "reactionVideos": [], @@ -484473,7 +483973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 15007324, "featuredRunMedia": null, "reactionVideos": [], @@ -484493,7 +483993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 15010291, "featuredRunMedia": null, "reactionVideos": [], @@ -484513,7 +484013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15010598, "featuredRunMedia": null, "reactionVideos": [], @@ -484533,7 +484033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 15011210, "featuredRunMedia": null, "reactionVideos": [], @@ -484553,7 +484053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 15012192, "featuredRunMedia": null, "reactionVideos": [], @@ -484573,7 +484073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 15013980, "featuredRunMedia": null, "reactionVideos": [], @@ -484593,7 +484093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15015491, "featuredRunMedia": null, "reactionVideos": [], @@ -484613,7 +484113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15015740, "featuredRunMedia": null, "reactionVideos": [], @@ -484633,7 +484133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 15016840, "featuredRunMedia": null, "reactionVideos": [], @@ -484653,7 +484153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 15017278, "featuredRunMedia": null, "reactionVideos": [], @@ -484673,7 +484173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 15017623, "featuredRunMedia": null, "reactionVideos": [], @@ -484693,7 +484193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 15019393, "featuredRunMedia": null, "reactionVideos": [], @@ -484713,7 +484213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 15019924, "featuredRunMedia": null, "reactionVideos": [], @@ -484733,7 +484233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 15021531, "featuredRunMedia": null, "reactionVideos": [], @@ -484753,7 +484253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "144126", "time": 15024883, "featuredRunMedia": null, "reactionVideos": [], @@ -484773,7 +484273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 15025014, "featuredRunMedia": null, "reactionVideos": [], @@ -484793,7 +484293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "144083", "time": 15025100, "featuredRunMedia": null, "reactionVideos": [], @@ -484813,7 +484313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 292, + "teamId": "144362", "time": 15025143, "featuredRunMedia": null, "reactionVideos": [], @@ -484833,7 +484333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 15027044, "featuredRunMedia": null, "reactionVideos": [], @@ -484853,7 +484353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 15027855, "featuredRunMedia": null, "reactionVideos": [], @@ -484877,7 +484377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15028135, "featuredRunMedia": null, "reactionVideos": [], @@ -484901,7 +484401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15028377, "featuredRunMedia": null, "reactionVideos": [], @@ -484921,7 +484421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 15028962, "featuredRunMedia": null, "reactionVideos": [], @@ -484941,7 +484441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 404, + "teamId": "144474", "time": 15029121, "featuredRunMedia": null, "reactionVideos": [], @@ -484961,7 +484461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 15030536, "featuredRunMedia": null, "reactionVideos": [], @@ -484981,7 +484481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 15032275, "featuredRunMedia": null, "reactionVideos": [], @@ -485001,7 +484501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 15036821, "featuredRunMedia": null, "reactionVideos": [], @@ -485021,7 +484521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 15037769, "featuredRunMedia": null, "reactionVideos": [], @@ -485041,7 +484541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 15038900, "featuredRunMedia": null, "reactionVideos": [], @@ -485061,7 +484561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 15039868, "featuredRunMedia": null, "reactionVideos": [], @@ -485081,7 +484581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 15040047, "featuredRunMedia": null, "reactionVideos": [], @@ -485101,7 +484601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 15041002, "featuredRunMedia": null, "reactionVideos": [], @@ -485121,7 +484621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 15041452, "featuredRunMedia": null, "reactionVideos": [], @@ -485141,7 +484641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 15042929, "featuredRunMedia": null, "reactionVideos": [], @@ -485161,7 +484661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 15045347, "featuredRunMedia": null, "reactionVideos": [], @@ -485185,7 +484685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 15046059, "featuredRunMedia": null, "reactionVideos": [], @@ -485205,7 +484705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 15048653, "featuredRunMedia": null, "reactionVideos": [], @@ -485225,7 +484725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 15048913, "featuredRunMedia": null, "reactionVideos": [], @@ -485245,7 +484745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 15050063, "featuredRunMedia": null, "reactionVideos": [], @@ -485269,7 +484769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 15050238, "featuredRunMedia": null, "reactionVideos": [], @@ -485289,7 +484789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15050940, "featuredRunMedia": null, "reactionVideos": [], @@ -485309,7 +484809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "144186", "time": 15051766, "featuredRunMedia": null, "reactionVideos": [], @@ -485329,7 +484829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 15051910, "featuredRunMedia": null, "reactionVideos": [], @@ -485349,7 +484849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "144152", "time": 15053022, "featuredRunMedia": null, "reactionVideos": [], @@ -485369,7 +484869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 15054894, "featuredRunMedia": null, "reactionVideos": [], @@ -485389,7 +484889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15055781, "featuredRunMedia": null, "reactionVideos": [], @@ -485409,7 +484909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 15058070, "featuredRunMedia": null, "reactionVideos": [], @@ -485429,7 +484929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "144277", "time": 15058510, "featuredRunMedia": null, "reactionVideos": [], @@ -485449,7 +484949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 15061557, "featuredRunMedia": null, "reactionVideos": [], @@ -485469,7 +484969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 15064507, "featuredRunMedia": null, "reactionVideos": [], @@ -485489,7 +484989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 15064789, "featuredRunMedia": null, "reactionVideos": [], @@ -485509,7 +485009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 347, + "teamId": "144417", "time": 15064991, "featuredRunMedia": null, "reactionVideos": [], @@ -485529,7 +485029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15066219, "featuredRunMedia": null, "reactionVideos": [], @@ -485549,7 +485049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 15066578, "featuredRunMedia": null, "reactionVideos": [], @@ -485569,7 +485069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 15066618, "featuredRunMedia": null, "reactionVideos": [], @@ -485589,7 +485089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 326, + "teamId": "144396", "time": 15066993, "featuredRunMedia": null, "reactionVideos": [], @@ -485609,7 +485109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 15070154, "featuredRunMedia": null, "reactionVideos": [], @@ -485629,7 +485129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 15071098, "featuredRunMedia": null, "reactionVideos": [], @@ -485649,7 +485149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 15071387, "featuredRunMedia": null, "reactionVideos": [], @@ -485669,7 +485169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15074159, "featuredRunMedia": null, "reactionVideos": [], @@ -485689,7 +485189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 15075475, "featuredRunMedia": null, "reactionVideos": [], @@ -485709,7 +485209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 15075598, "featuredRunMedia": null, "reactionVideos": [], @@ -485729,7 +485229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 15076121, "featuredRunMedia": null, "reactionVideos": [], @@ -485749,7 +485249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 15078307, "featuredRunMedia": null, "reactionVideos": [], @@ -485769,7 +485269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 15080141, "featuredRunMedia": null, "reactionVideos": [], @@ -485789,7 +485289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "144078", "time": 15080330, "featuredRunMedia": null, "reactionVideos": [], @@ -485809,7 +485309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "144128", "time": 15081005, "featuredRunMedia": null, "reactionVideos": [], @@ -485829,7 +485329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "144383", "time": 15082326, "featuredRunMedia": null, "reactionVideos": [], @@ -485849,7 +485349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 15082382, "featuredRunMedia": null, "reactionVideos": [], @@ -485869,7 +485369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 15082610, "featuredRunMedia": null, "reactionVideos": [], @@ -485889,7 +485389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "144334", "time": 15082967, "featuredRunMedia": null, "reactionVideos": [], @@ -485909,7 +485409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 15083554, "featuredRunMedia": null, "reactionVideos": [], @@ -485929,7 +485429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 15083781, "featuredRunMedia": null, "reactionVideos": [], @@ -485949,7 +485449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 15083966, "featuredRunMedia": null, "reactionVideos": [], @@ -485969,7 +485469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "144161", "time": 15084423, "featuredRunMedia": null, "reactionVideos": [], @@ -485989,7 +485489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 15089853, "featuredRunMedia": null, "reactionVideos": [], @@ -486009,7 +485509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 15090012, "featuredRunMedia": null, "reactionVideos": [], @@ -486029,7 +485529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 15090780, "featuredRunMedia": null, "reactionVideos": [], @@ -486053,7 +485553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 15091049, "featuredRunMedia": null, "reactionVideos": [], @@ -486073,7 +485573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 15091338, "featuredRunMedia": null, "reactionVideos": [], @@ -486093,7 +485593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 15092281, "featuredRunMedia": null, "reactionVideos": [], @@ -486113,7 +485613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15093547, "featuredRunMedia": null, "reactionVideos": [], @@ -486133,7 +485633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15093716, "featuredRunMedia": null, "reactionVideos": [], @@ -486153,7 +485653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 15094778, "featuredRunMedia": null, "reactionVideos": [], @@ -486173,7 +485673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 15094918, "featuredRunMedia": null, "reactionVideos": [], @@ -486193,7 +485693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15095533, "featuredRunMedia": null, "reactionVideos": [], @@ -486213,7 +485713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 208, + "teamId": "144278", "time": 15098273, "featuredRunMedia": null, "reactionVideos": [], @@ -486233,7 +485733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 15099236, "featuredRunMedia": null, "reactionVideos": [], @@ -486253,7 +485753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 15102917, "featuredRunMedia": null, "reactionVideos": [], @@ -486273,7 +485773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 15103265, "featuredRunMedia": null, "reactionVideos": [], @@ -486293,7 +485793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 15105066, "featuredRunMedia": null, "reactionVideos": [], @@ -486313,7 +485813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 15106108, "featuredRunMedia": null, "reactionVideos": [], @@ -486333,7 +485833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 15106201, "featuredRunMedia": null, "reactionVideos": [], @@ -486353,7 +485853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "144253", "time": 15106362, "featuredRunMedia": null, "reactionVideos": [], @@ -486373,7 +485873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 15106490, "featuredRunMedia": null, "reactionVideos": [], @@ -486393,7 +485893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15107516, "featuredRunMedia": null, "reactionVideos": [], @@ -486413,7 +485913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 15108813, "featuredRunMedia": null, "reactionVideos": [], @@ -486433,7 +485933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15110678, "featuredRunMedia": null, "reactionVideos": [], @@ -486453,7 +485953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 15111088, "featuredRunMedia": null, "reactionVideos": [], @@ -486473,7 +485973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "144123", "time": 15112365, "featuredRunMedia": null, "reactionVideos": [], @@ -486493,7 +485993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 15112782, "featuredRunMedia": null, "reactionVideos": [], @@ -486513,7 +486013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 15114038, "featuredRunMedia": null, "reactionVideos": [], @@ -486533,7 +486033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 15114462, "featuredRunMedia": null, "reactionVideos": [], @@ -486553,7 +486053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 15114769, "featuredRunMedia": null, "reactionVideos": [], @@ -486577,7 +486077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 15115822, "featuredRunMedia": null, "reactionVideos": [], @@ -486597,7 +486097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 15116198, "featuredRunMedia": null, "reactionVideos": [], @@ -486621,7 +486121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 15116538, "featuredRunMedia": null, "reactionVideos": [], @@ -486641,7 +486141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 15116587, "featuredRunMedia": null, "reactionVideos": [], @@ -486661,7 +486161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "144208", "time": 15116666, "featuredRunMedia": null, "reactionVideos": [], @@ -486681,7 +486181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 15116838, "featuredRunMedia": null, "reactionVideos": [], @@ -486701,7 +486201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 15116960, "featuredRunMedia": null, "reactionVideos": [], @@ -486721,7 +486221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 15118439, "featuredRunMedia": null, "reactionVideos": [], @@ -486741,7 +486241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "144395", "time": 15119277, "featuredRunMedia": null, "reactionVideos": [], @@ -486761,7 +486261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15119755, "featuredRunMedia": null, "reactionVideos": [], @@ -486781,7 +486281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 15120440, "featuredRunMedia": null, "reactionVideos": [], @@ -486801,7 +486301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 15121210, "featuredRunMedia": null, "reactionVideos": [], @@ -486821,7 +486321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "144327", "time": 15122497, "featuredRunMedia": null, "reactionVideos": [], @@ -486841,7 +486341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15124097, "featuredRunMedia": null, "reactionVideos": [], @@ -486861,7 +486361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 15124134, "featuredRunMedia": null, "reactionVideos": [], @@ -486881,7 +486381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 15125057, "featuredRunMedia": null, "reactionVideos": [], @@ -486901,7 +486401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 15125505, "featuredRunMedia": null, "reactionVideos": [], @@ -486921,7 +486421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 15125550, "featuredRunMedia": null, "reactionVideos": [], @@ -486941,7 +486441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 362, + "teamId": "144432", "time": 15125908, "featuredRunMedia": null, "reactionVideos": [], @@ -486961,7 +486461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15127548, "featuredRunMedia": null, "reactionVideos": [], @@ -486981,7 +486481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 341, + "teamId": "144411", "time": 15127874, "featuredRunMedia": null, "reactionVideos": [], @@ -487001,7 +486501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 15129467, "featuredRunMedia": null, "reactionVideos": [], @@ -487021,7 +486521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 15129692, "featuredRunMedia": null, "reactionVideos": [], @@ -487041,7 +486541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 15130720, "featuredRunMedia": null, "reactionVideos": [], @@ -487061,7 +486561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "144275", "time": 15133141, "featuredRunMedia": null, "reactionVideos": [], @@ -487081,7 +486581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 15135602, "featuredRunMedia": null, "reactionVideos": [], @@ -487101,7 +486601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 15136907, "featuredRunMedia": null, "reactionVideos": [], @@ -487121,7 +486621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15138121, "featuredRunMedia": null, "reactionVideos": [], @@ -487141,7 +486641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 386, + "teamId": "144456", "time": 15138392, "featuredRunMedia": null, "reactionVideos": [], @@ -487161,7 +486661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "144254", "time": 15138903, "featuredRunMedia": null, "reactionVideos": [], @@ -487181,7 +486681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 15139190, "featuredRunMedia": null, "reactionVideos": [], @@ -487201,7 +486701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 15139292, "featuredRunMedia": null, "reactionVideos": [], @@ -487221,7 +486721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 15139992, "featuredRunMedia": null, "reactionVideos": [], @@ -487241,7 +486741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 15140516, "featuredRunMedia": null, "reactionVideos": [], @@ -487261,7 +486761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 15142772, "featuredRunMedia": null, "reactionVideos": [], @@ -487281,7 +486781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 15143031, "featuredRunMedia": null, "reactionVideos": [], @@ -487301,7 +486801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15144397, "featuredRunMedia": null, "reactionVideos": [], @@ -487321,7 +486821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "144159", "time": 15145376, "featuredRunMedia": null, "reactionVideos": [], @@ -487341,7 +486841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 15146941, "featuredRunMedia": null, "reactionVideos": [], @@ -487361,7 +486861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 15147261, "featuredRunMedia": null, "reactionVideos": [], @@ -487385,7 +486885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 15148236, "featuredRunMedia": null, "reactionVideos": [], @@ -487405,7 +486905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 15148337, "featuredRunMedia": null, "reactionVideos": [], @@ -487425,7 +486925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15148989, "featuredRunMedia": null, "reactionVideos": [], @@ -487445,7 +486945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15149799, "featuredRunMedia": null, "reactionVideos": [], @@ -487465,7 +486965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 15151834, "featuredRunMedia": null, "reactionVideos": [], @@ -487485,7 +486985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 15153095, "featuredRunMedia": null, "reactionVideos": [], @@ -487505,7 +487005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 15153302, "featuredRunMedia": null, "reactionVideos": [], @@ -487525,7 +487025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 15153613, "featuredRunMedia": null, "reactionVideos": [], @@ -487545,7 +487045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "144125", "time": 15155379, "featuredRunMedia": null, "reactionVideos": [], @@ -487565,7 +487065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 15155531, "featuredRunMedia": null, "reactionVideos": [], @@ -487585,7 +487085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15155693, "featuredRunMedia": null, "reactionVideos": [], @@ -487605,7 +487105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 15157520, "featuredRunMedia": null, "reactionVideos": [], @@ -487625,7 +487125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 15158524, "featuredRunMedia": null, "reactionVideos": [], @@ -487645,7 +487145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 15162017, "featuredRunMedia": null, "reactionVideos": [], @@ -487665,7 +487165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15164657, "featuredRunMedia": null, "reactionVideos": [], @@ -487685,7 +487185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15165628, "featuredRunMedia": null, "reactionVideos": [], @@ -487705,7 +487205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 15165713, "featuredRunMedia": null, "reactionVideos": [], @@ -487725,7 +487225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "144080", "time": 15165756, "featuredRunMedia": null, "reactionVideos": [], @@ -487745,7 +487245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15166251, "featuredRunMedia": null, "reactionVideos": [], @@ -487765,7 +487265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 15166899, "featuredRunMedia": null, "reactionVideos": [], @@ -487789,7 +487289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15166996, "featuredRunMedia": null, "reactionVideos": [], @@ -487809,7 +487309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 15167539, "featuredRunMedia": null, "reactionVideos": [], @@ -487829,7 +487329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15169207, "featuredRunMedia": null, "reactionVideos": [], @@ -487849,7 +487349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 15169830, "featuredRunMedia": null, "reactionVideos": [], @@ -487869,7 +487369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "144269", "time": 15170296, "featuredRunMedia": null, "reactionVideos": [], @@ -487889,7 +487389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 15171566, "featuredRunMedia": null, "reactionVideos": [], @@ -487909,7 +487409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 15172741, "featuredRunMedia": null, "reactionVideos": [], @@ -487929,7 +487429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 15173579, "featuredRunMedia": null, "reactionVideos": [], @@ -487949,7 +487449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 267, + "teamId": "144337", "time": 15176853, "featuredRunMedia": null, "reactionVideos": [], @@ -487969,7 +487469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 15177046, "featuredRunMedia": null, "reactionVideos": [], @@ -487989,7 +487489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 15177824, "featuredRunMedia": null, "reactionVideos": [], @@ -488009,7 +487509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "144398", "time": 15179053, "featuredRunMedia": null, "reactionVideos": [], @@ -488029,7 +487529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 248, + "teamId": "144318", "time": 15179987, "featuredRunMedia": null, "reactionVideos": [], @@ -488049,7 +487549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 15182384, "featuredRunMedia": null, "reactionVideos": [], @@ -488069,7 +487569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 15183085, "featuredRunMedia": null, "reactionVideos": [], @@ -488089,7 +487589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 15184591, "featuredRunMedia": null, "reactionVideos": [], @@ -488109,7 +487609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 15184824, "featuredRunMedia": null, "reactionVideos": [], @@ -488129,7 +487629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 15184978, "featuredRunMedia": null, "reactionVideos": [], @@ -488149,7 +487649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 96, + "teamId": "144166", "time": 15185022, "featuredRunMedia": null, "reactionVideos": [], @@ -488169,7 +487669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 15185057, "featuredRunMedia": null, "reactionVideos": [], @@ -488189,7 +487689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15186071, "featuredRunMedia": null, "reactionVideos": [], @@ -488209,7 +487709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 15186115, "featuredRunMedia": null, "reactionVideos": [], @@ -488229,7 +487729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "144128", "time": 15189159, "featuredRunMedia": null, "reactionVideos": [], @@ -488249,7 +487749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "144111", "time": 15191963, "featuredRunMedia": null, "reactionVideos": [], @@ -488269,7 +487769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 420, + "teamId": "144490", "time": 15192245, "featuredRunMedia": null, "reactionVideos": [], @@ -488289,7 +487789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 15194056, "featuredRunMedia": null, "reactionVideos": [], @@ -488309,7 +487809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 15195771, "featuredRunMedia": null, "reactionVideos": [], @@ -488329,7 +487829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 15197363, "featuredRunMedia": null, "reactionVideos": [], @@ -488349,7 +487849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 15197705, "featuredRunMedia": null, "reactionVideos": [], @@ -488369,7 +487869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 15204763, "featuredRunMedia": null, "reactionVideos": [], @@ -488389,7 +487889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15207416, "featuredRunMedia": null, "reactionVideos": [], @@ -488409,7 +487909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "144403", "time": 15209412, "featuredRunMedia": null, "reactionVideos": [], @@ -488429,7 +487929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 15211455, "featuredRunMedia": null, "reactionVideos": [], @@ -488453,7 +487953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 15214210, "featuredRunMedia": null, "reactionVideos": [], @@ -488473,7 +487973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 15216473, "featuredRunMedia": null, "reactionVideos": [], @@ -488493,7 +487993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 15218183, "featuredRunMedia": null, "reactionVideos": [], @@ -488513,7 +488013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15220461, "featuredRunMedia": null, "reactionVideos": [], @@ -488533,7 +488033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 15222893, "featuredRunMedia": null, "reactionVideos": [], @@ -488553,7 +488053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 15223705, "featuredRunMedia": null, "reactionVideos": [], @@ -488573,7 +488073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 15224596, "featuredRunMedia": null, "reactionVideos": [], @@ -488593,7 +488093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 15226323, "featuredRunMedia": null, "reactionVideos": [], @@ -488613,7 +488113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 15230793, "featuredRunMedia": null, "reactionVideos": [], @@ -488633,7 +488133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 15231300, "featuredRunMedia": null, "reactionVideos": [], @@ -488653,7 +488153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 15231865, "featuredRunMedia": null, "reactionVideos": [], @@ -488673,7 +488173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 15234085, "featuredRunMedia": null, "reactionVideos": [], @@ -488693,7 +488193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 15234857, "featuredRunMedia": null, "reactionVideos": [], @@ -488713,7 +488213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 15236931, "featuredRunMedia": null, "reactionVideos": [], @@ -488733,7 +488233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 349, + "teamId": "144419", "time": 15239157, "featuredRunMedia": null, "reactionVideos": [], @@ -488753,7 +488253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 15239279, "featuredRunMedia": null, "reactionVideos": [], @@ -488773,7 +488273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15241692, "featuredRunMedia": null, "reactionVideos": [], @@ -488793,7 +488293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 15247547, "featuredRunMedia": null, "reactionVideos": [], @@ -488813,7 +488313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 437, + "teamId": "144507", "time": 15248387, "featuredRunMedia": null, "reactionVideos": [], @@ -488833,7 +488333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 15251167, "featuredRunMedia": null, "reactionVideos": [], @@ -488853,7 +488353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 15253860, "featuredRunMedia": null, "reactionVideos": [], @@ -488873,7 +488373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15254028, "featuredRunMedia": null, "reactionVideos": [], @@ -488893,7 +488393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 15255647, "featuredRunMedia": null, "reactionVideos": [], @@ -488913,7 +488413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 15256840, "featuredRunMedia": null, "reactionVideos": [], @@ -488933,7 +488433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "144077", "time": 15256960, "featuredRunMedia": null, "reactionVideos": [], @@ -488953,7 +488453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "144183", "time": 15258004, "featuredRunMedia": null, "reactionVideos": [], @@ -488973,7 +488473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 15259297, "featuredRunMedia": null, "reactionVideos": [], @@ -488993,7 +488493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15260114, "featuredRunMedia": null, "reactionVideos": [], @@ -489013,7 +488513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 15262312, "featuredRunMedia": null, "reactionVideos": [], @@ -489033,7 +488533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15264136, "featuredRunMedia": null, "reactionVideos": [], @@ -489053,7 +488553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 15264271, "featuredRunMedia": null, "reactionVideos": [], @@ -489073,7 +488573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 15265386, "featuredRunMedia": null, "reactionVideos": [], @@ -489093,7 +488593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 15267570, "featuredRunMedia": null, "reactionVideos": [], @@ -489113,7 +488613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 15268926, "featuredRunMedia": null, "reactionVideos": [], @@ -489133,7 +488633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 442, + "teamId": "144512", "time": 15269076, "featuredRunMedia": null, "reactionVideos": [], @@ -489153,7 +488653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 15269235, "featuredRunMedia": null, "reactionVideos": [], @@ -489173,7 +488673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 15271465, "featuredRunMedia": null, "reactionVideos": [], @@ -489193,7 +488693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15272962, "featuredRunMedia": null, "reactionVideos": [], @@ -489213,7 +488713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 15274823, "featuredRunMedia": null, "reactionVideos": [], @@ -489233,7 +488733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 15276318, "featuredRunMedia": null, "reactionVideos": [], @@ -489253,7 +488753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 15276631, "featuredRunMedia": null, "reactionVideos": [], @@ -489273,7 +488773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 15276863, "featuredRunMedia": null, "reactionVideos": [], @@ -489293,7 +488793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 15277072, "featuredRunMedia": null, "reactionVideos": [], @@ -489313,7 +488813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "144328", "time": 15277858, "featuredRunMedia": null, "reactionVideos": [], @@ -489333,7 +488833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 15278886, "featuredRunMedia": null, "reactionVideos": [], @@ -489353,7 +488853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 15279841, "featuredRunMedia": null, "reactionVideos": [], @@ -489373,7 +488873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15279931, "featuredRunMedia": null, "reactionVideos": [], @@ -489393,7 +488893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 15280159, "featuredRunMedia": null, "reactionVideos": [], @@ -489413,7 +488913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15280193, "featuredRunMedia": null, "reactionVideos": [], @@ -489433,7 +488933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 15280314, "featuredRunMedia": null, "reactionVideos": [], @@ -489453,7 +488953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15280443, "featuredRunMedia": null, "reactionVideos": [], @@ -489473,7 +488973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 15282091, "featuredRunMedia": null, "reactionVideos": [], @@ -489493,7 +488993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 15283353, "featuredRunMedia": null, "reactionVideos": [], @@ -489513,7 +489013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 15284178, "featuredRunMedia": null, "reactionVideos": [], @@ -489533,7 +489033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 15288852, "featuredRunMedia": null, "reactionVideos": [], @@ -489553,7 +489053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 15289920, "featuredRunMedia": null, "reactionVideos": [], @@ -489573,7 +489073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 15290063, "featuredRunMedia": null, "reactionVideos": [], @@ -489593,7 +489093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15291340, "featuredRunMedia": null, "reactionVideos": [], @@ -489613,7 +489113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 15291704, "featuredRunMedia": null, "reactionVideos": [], @@ -489633,7 +489133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15291989, "featuredRunMedia": null, "reactionVideos": [], @@ -489653,7 +489153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15294999, "featuredRunMedia": null, "reactionVideos": [], @@ -489673,7 +489173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "144129", "time": 15295166, "featuredRunMedia": null, "reactionVideos": [], @@ -489693,7 +489193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15296140, "featuredRunMedia": null, "reactionVideos": [], @@ -489713,7 +489213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 15296776, "featuredRunMedia": null, "reactionVideos": [], @@ -489733,7 +489233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 431, + "teamId": "144501", "time": 15296978, "featuredRunMedia": null, "reactionVideos": [], @@ -489753,7 +489253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 15297253, "featuredRunMedia": null, "reactionVideos": [], @@ -489773,7 +489273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 15298575, "featuredRunMedia": null, "reactionVideos": [], @@ -489793,7 +489293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 132, + "teamId": "144202", "time": 15299084, "featuredRunMedia": null, "reactionVideos": [], @@ -489813,7 +489313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 442, + "teamId": "144512", "time": 15300746, "featuredRunMedia": null, "reactionVideos": [], @@ -489833,7 +489333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15301650, "featuredRunMedia": null, "reactionVideos": [], @@ -489853,7 +489353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 15302614, "featuredRunMedia": null, "reactionVideos": [], @@ -489873,7 +489373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 15302815, "featuredRunMedia": null, "reactionVideos": [], @@ -489893,7 +489393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 15303263, "featuredRunMedia": null, "reactionVideos": [], @@ -489913,7 +489413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 15305384, "featuredRunMedia": null, "reactionVideos": [], @@ -489933,7 +489433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 15305477, "featuredRunMedia": null, "reactionVideos": [], @@ -489953,7 +489453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 15305519, "featuredRunMedia": null, "reactionVideos": [], @@ -489973,7 +489473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15306661, "featuredRunMedia": null, "reactionVideos": [], @@ -489993,7 +489493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15309481, "featuredRunMedia": null, "reactionVideos": [], @@ -490013,7 +489513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 15309541, "featuredRunMedia": null, "reactionVideos": [], @@ -490033,7 +489533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 15310082, "featuredRunMedia": null, "reactionVideos": [], @@ -490053,7 +489553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "144124", "time": 15311475, "featuredRunMedia": null, "reactionVideos": [], @@ -490073,7 +489573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 15311897, "featuredRunMedia": null, "reactionVideos": [], @@ -490093,7 +489593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15312127, "featuredRunMedia": null, "reactionVideos": [], @@ -490113,7 +489613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 15312471, "featuredRunMedia": null, "reactionVideos": [], @@ -490133,7 +489633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 15314265, "featuredRunMedia": null, "reactionVideos": [], @@ -490157,7 +489657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 356, + "teamId": "144426", "time": 15315382, "featuredRunMedia": null, "reactionVideos": [], @@ -490177,7 +489677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 15316537, "featuredRunMedia": null, "reactionVideos": [], @@ -490197,7 +489697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15317259, "featuredRunMedia": null, "reactionVideos": [], @@ -490217,7 +489717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "144389", "time": 15319083, "featuredRunMedia": null, "reactionVideos": [], @@ -490237,7 +489737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "144236", "time": 15320504, "featuredRunMedia": null, "reactionVideos": [], @@ -490257,7 +489757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 15320908, "featuredRunMedia": null, "reactionVideos": [], @@ -490277,7 +489777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 15321344, "featuredRunMedia": null, "reactionVideos": [], @@ -490297,7 +489797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "144220", "time": 15321694, "featuredRunMedia": null, "reactionVideos": [], @@ -490317,7 +489817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 420, + "teamId": "144490", "time": 15323154, "featuredRunMedia": null, "reactionVideos": [], @@ -490337,7 +489837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 15323888, "featuredRunMedia": null, "reactionVideos": [], @@ -490357,7 +489857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15323923, "featuredRunMedia": null, "reactionVideos": [], @@ -490377,7 +489877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 15324169, "featuredRunMedia": null, "reactionVideos": [], @@ -490397,7 +489897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 15324581, "featuredRunMedia": null, "reactionVideos": [], @@ -490417,7 +489917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 109, + "teamId": "144179", "time": 15324928, "featuredRunMedia": null, "reactionVideos": [], @@ -490437,7 +489937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 15325501, "featuredRunMedia": null, "reactionVideos": [], @@ -490457,7 +489957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 15326193, "featuredRunMedia": null, "reactionVideos": [], @@ -490477,7 +489977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 15327059, "featuredRunMedia": null, "reactionVideos": [], @@ -490497,7 +489997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "144326", "time": 15327522, "featuredRunMedia": null, "reactionVideos": [], @@ -490517,7 +490017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "144163", "time": 15329319, "featuredRunMedia": null, "reactionVideos": [], @@ -490541,7 +490041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 15329904, "featuredRunMedia": null, "reactionVideos": [], @@ -490561,7 +490061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 335, + "teamId": "144405", "time": 15330738, "featuredRunMedia": null, "reactionVideos": [], @@ -490581,7 +490081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "144415", "time": 15331650, "featuredRunMedia": null, "reactionVideos": [], @@ -490601,7 +490101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15332158, "featuredRunMedia": null, "reactionVideos": [], @@ -490621,7 +490121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 15332633, "featuredRunMedia": null, "reactionVideos": [], @@ -490641,7 +490141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 15335389, "featuredRunMedia": null, "reactionVideos": [], @@ -490661,7 +490161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15335753, "featuredRunMedia": null, "reactionVideos": [], @@ -490681,7 +490181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 15336423, "featuredRunMedia": null, "reactionVideos": [], @@ -490701,7 +490201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 15337641, "featuredRunMedia": null, "reactionVideos": [], @@ -490721,7 +490221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 15337694, "featuredRunMedia": null, "reactionVideos": [], @@ -490741,7 +490241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 15337865, "featuredRunMedia": null, "reactionVideos": [], @@ -490761,7 +490261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 15338261, "featuredRunMedia": null, "reactionVideos": [], @@ -490781,7 +490281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 15338505, "featuredRunMedia": null, "reactionVideos": [], @@ -490801,7 +490301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 15339587, "featuredRunMedia": null, "reactionVideos": [], @@ -490821,7 +490321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15339845, "featuredRunMedia": null, "reactionVideos": [], @@ -490841,7 +490341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 15340389, "featuredRunMedia": null, "reactionVideos": [], @@ -490861,7 +490361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 15340585, "featuredRunMedia": null, "reactionVideos": [], @@ -490881,7 +490381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 292, + "teamId": "144362", "time": 15342107, "featuredRunMedia": null, "reactionVideos": [], @@ -490901,7 +490401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 15345184, "featuredRunMedia": null, "reactionVideos": [], @@ -490921,7 +490421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "144119", "time": 15345577, "featuredRunMedia": null, "reactionVideos": [], @@ -490941,7 +490441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 15345986, "featuredRunMedia": null, "reactionVideos": [], @@ -490961,7 +490461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15346298, "featuredRunMedia": null, "reactionVideos": [], @@ -490981,7 +490481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 15346521, "featuredRunMedia": null, "reactionVideos": [], @@ -491001,7 +490501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 15346616, "featuredRunMedia": null, "reactionVideos": [], @@ -491021,7 +490521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "144361", "time": 15346702, "featuredRunMedia": null, "reactionVideos": [], @@ -491041,7 +490541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "144200", "time": 15347659, "featuredRunMedia": null, "reactionVideos": [], @@ -491061,7 +490561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "144145", "time": 15348895, "featuredRunMedia": null, "reactionVideos": [], @@ -491081,7 +490581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 432, + "teamId": "144502", "time": 15351502, "featuredRunMedia": null, "reactionVideos": [], @@ -491101,7 +490601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 15352516, "featuredRunMedia": null, "reactionVideos": [], @@ -491121,7 +490621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 15353287, "featuredRunMedia": null, "reactionVideos": [], @@ -491141,7 +490641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 15354683, "featuredRunMedia": null, "reactionVideos": [], @@ -491161,7 +490661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 15355329, "featuredRunMedia": null, "reactionVideos": [], @@ -491181,7 +490681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 15355423, "featuredRunMedia": null, "reactionVideos": [], @@ -491201,7 +490701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 15355629, "featuredRunMedia": null, "reactionVideos": [], @@ -491221,7 +490721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15355892, "featuredRunMedia": null, "reactionVideos": [], @@ -491241,7 +490741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 15358263, "featuredRunMedia": null, "reactionVideos": [], @@ -491261,7 +490761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15359293, "featuredRunMedia": null, "reactionVideos": [], @@ -491281,7 +490781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 15359435, "featuredRunMedia": null, "reactionVideos": [], @@ -491301,7 +490801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "144078", "time": 15360047, "featuredRunMedia": null, "reactionVideos": [], @@ -491321,7 +490821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15361622, "featuredRunMedia": null, "reactionVideos": [], @@ -491341,7 +490841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 15361831, "featuredRunMedia": null, "reactionVideos": [], @@ -491361,7 +490861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "144368", "time": 15362696, "featuredRunMedia": null, "reactionVideos": [], @@ -491381,7 +490881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 15363154, "featuredRunMedia": null, "reactionVideos": [], @@ -491401,7 +490901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 267, + "teamId": "144337", "time": 15363662, "featuredRunMedia": null, "reactionVideos": [], @@ -491421,7 +490921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 15364494, "featuredRunMedia": null, "reactionVideos": [], @@ -491441,7 +490941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15366034, "featuredRunMedia": null, "reactionVideos": [], @@ -491461,7 +490961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 15369772, "featuredRunMedia": null, "reactionVideos": [], @@ -491481,7 +490981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 391, + "teamId": "144461", "time": 15369821, "featuredRunMedia": null, "reactionVideos": [], @@ -491501,7 +491001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 15370522, "featuredRunMedia": null, "reactionVideos": [], @@ -491521,7 +491021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 15371338, "featuredRunMedia": null, "reactionVideos": [], @@ -491541,7 +491041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 15371663, "featuredRunMedia": null, "reactionVideos": [], @@ -491561,7 +491061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 15371781, "featuredRunMedia": null, "reactionVideos": [], @@ -491581,7 +491081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 15372342, "featuredRunMedia": null, "reactionVideos": [], @@ -491601,7 +491101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 15373060, "featuredRunMedia": null, "reactionVideos": [], @@ -491621,7 +491121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 15377004, "featuredRunMedia": null, "reactionVideos": [], @@ -491641,7 +491141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 15377080, "featuredRunMedia": null, "reactionVideos": [], @@ -491661,7 +491161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15377223, "featuredRunMedia": null, "reactionVideos": [], @@ -491681,7 +491181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 15377655, "featuredRunMedia": null, "reactionVideos": [], @@ -491701,7 +491201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 15378727, "featuredRunMedia": null, "reactionVideos": [], @@ -491721,7 +491221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15379223, "featuredRunMedia": null, "reactionVideos": [], @@ -491741,7 +491241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 15379446, "featuredRunMedia": null, "reactionVideos": [], @@ -491761,7 +491261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 15380899, "featuredRunMedia": null, "reactionVideos": [], @@ -491781,7 +491281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 15382204, "featuredRunMedia": null, "reactionVideos": [], @@ -491801,7 +491301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "144187", "time": 15383807, "featuredRunMedia": null, "reactionVideos": [], @@ -491821,7 +491321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15384227, "featuredRunMedia": null, "reactionVideos": [], @@ -491841,7 +491341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 15385252, "featuredRunMedia": null, "reactionVideos": [], @@ -491861,7 +491361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15385889, "featuredRunMedia": null, "reactionVideos": [], @@ -491881,7 +491381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15389196, "featuredRunMedia": null, "reactionVideos": [], @@ -491901,7 +491401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 15390587, "featuredRunMedia": null, "reactionVideos": [], @@ -491921,7 +491421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "144186", "time": 15391127, "featuredRunMedia": null, "reactionVideos": [], @@ -491941,7 +491441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 356, + "teamId": "144426", "time": 15394259, "featuredRunMedia": null, "reactionVideos": [], @@ -491961,7 +491461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 15395375, "featuredRunMedia": null, "reactionVideos": [], @@ -491981,7 +491481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15396437, "featuredRunMedia": null, "reactionVideos": [], @@ -492001,7 +491501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 15397867, "featuredRunMedia": null, "reactionVideos": [], @@ -492021,7 +491521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 282, + "teamId": "144352", "time": 15400120, "featuredRunMedia": null, "reactionVideos": [], @@ -492041,7 +491541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 15400559, "featuredRunMedia": null, "reactionVideos": [], @@ -492061,7 +491561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15402498, "featuredRunMedia": null, "reactionVideos": [], @@ -492081,7 +491581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 15402613, "featuredRunMedia": null, "reactionVideos": [], @@ -492105,7 +491605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15402885, "featuredRunMedia": null, "reactionVideos": [], @@ -492125,7 +491625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 15402956, "featuredRunMedia": null, "reactionVideos": [], @@ -492145,7 +491645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15406037, "featuredRunMedia": null, "reactionVideos": [], @@ -492165,7 +491665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 15407793, "featuredRunMedia": null, "reactionVideos": [], @@ -492185,7 +491685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15407962, "featuredRunMedia": null, "reactionVideos": [], @@ -492205,7 +491705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "144279", "time": 15409657, "featuredRunMedia": null, "reactionVideos": [], @@ -492225,7 +491725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15411275, "featuredRunMedia": null, "reactionVideos": [], @@ -492245,7 +491745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 15412439, "featuredRunMedia": null, "reactionVideos": [], @@ -492265,7 +491765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 15413540, "featuredRunMedia": null, "reactionVideos": [], @@ -492285,7 +491785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 15413625, "featuredRunMedia": null, "reactionVideos": [], @@ -492305,7 +491805,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15414746, "featuredRunMedia": null, "reactionVideos": [], @@ -492325,7 +491825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "144117", "time": 15417174, "featuredRunMedia": null, "reactionVideos": [], @@ -492345,7 +491845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 15418474, "featuredRunMedia": null, "reactionVideos": [], @@ -492365,7 +491865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 15419654, "featuredRunMedia": null, "reactionVideos": [], @@ -492385,7 +491885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "144097", "time": 15419695, "featuredRunMedia": null, "reactionVideos": [], @@ -492405,7 +491905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 15421238, "featuredRunMedia": null, "reactionVideos": [], @@ -492425,7 +491925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "144106", "time": 15422351, "featuredRunMedia": null, "reactionVideos": [], @@ -492445,7 +491945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15424127, "featuredRunMedia": null, "reactionVideos": [], @@ -492465,7 +491965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15424269, "featuredRunMedia": null, "reactionVideos": [], @@ -492485,7 +491985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 15428213, "featuredRunMedia": null, "reactionVideos": [], @@ -492505,7 +492005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15429944, "featuredRunMedia": null, "reactionVideos": [], @@ -492525,7 +492025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 15430655, "featuredRunMedia": null, "reactionVideos": [], @@ -492545,7 +492045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "144239", "time": 15431698, "featuredRunMedia": null, "reactionVideos": [], @@ -492565,7 +492065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15431838, "featuredRunMedia": null, "reactionVideos": [], @@ -492585,7 +492085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 15432236, "featuredRunMedia": null, "reactionVideos": [], @@ -492605,7 +492105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 15433074, "featuredRunMedia": null, "reactionVideos": [], @@ -492625,7 +492125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 15433724, "featuredRunMedia": null, "reactionVideos": [], @@ -492645,7 +492145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 15434066, "featuredRunMedia": null, "reactionVideos": [], @@ -492665,7 +492165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15435846, "featuredRunMedia": null, "reactionVideos": [], @@ -492685,7 +492185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "144357", "time": 15436689, "featuredRunMedia": null, "reactionVideos": [], @@ -492705,7 +492205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 15444487, "featuredRunMedia": null, "reactionVideos": [], @@ -492725,7 +492225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 371, + "teamId": "144441", "time": 15445029, "featuredRunMedia": null, "reactionVideos": [], @@ -492745,7 +492245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 15449134, "featuredRunMedia": null, "reactionVideos": [], @@ -492765,7 +492265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 15451204, "featuredRunMedia": null, "reactionVideos": [], @@ -492785,7 +492285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 15453407, "featuredRunMedia": null, "reactionVideos": [], @@ -492805,7 +492305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 398, + "teamId": "144468", "time": 15453627, "featuredRunMedia": null, "reactionVideos": [], @@ -492825,7 +492325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15453696, "featuredRunMedia": null, "reactionVideos": [], @@ -492845,7 +492345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 15455251, "featuredRunMedia": null, "reactionVideos": [], @@ -492865,7 +492365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15459804, "featuredRunMedia": null, "reactionVideos": [], @@ -492885,7 +492385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 15461124, "featuredRunMedia": null, "reactionVideos": [], @@ -492905,7 +492405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15463063, "featuredRunMedia": null, "reactionVideos": [], @@ -492925,7 +492425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 329, + "teamId": "144399", "time": 15463098, "featuredRunMedia": null, "reactionVideos": [], @@ -492945,7 +492445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15464001, "featuredRunMedia": null, "reactionVideos": [], @@ -492965,7 +492465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15464814, "featuredRunMedia": null, "reactionVideos": [], @@ -492985,7 +492485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 15466491, "featuredRunMedia": null, "reactionVideos": [], @@ -493005,7 +492505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 360, + "teamId": "144430", "time": 15468305, "featuredRunMedia": null, "reactionVideos": [], @@ -493025,7 +492525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 234, + "teamId": "144304", "time": 15469224, "featuredRunMedia": null, "reactionVideos": [], @@ -493045,7 +492545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 15469461, "featuredRunMedia": null, "reactionVideos": [], @@ -493065,7 +492565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 15470744, "featuredRunMedia": null, "reactionVideos": [], @@ -493085,7 +492585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15470897, "featuredRunMedia": null, "reactionVideos": [], @@ -493105,7 +492605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15472570, "featuredRunMedia": null, "reactionVideos": [], @@ -493125,7 +492625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 15472969, "featuredRunMedia": null, "reactionVideos": [], @@ -493145,7 +492645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 15475925, "featuredRunMedia": null, "reactionVideos": [], @@ -493165,7 +492665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 15478236, "featuredRunMedia": null, "reactionVideos": [], @@ -493185,7 +492685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15480789, "featuredRunMedia": null, "reactionVideos": [], @@ -493205,7 +492705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 15482207, "featuredRunMedia": null, "reactionVideos": [], @@ -493225,7 +492725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15485441, "featuredRunMedia": null, "reactionVideos": [], @@ -493245,7 +492745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "144197", "time": 15485817, "featuredRunMedia": null, "reactionVideos": [], @@ -493269,7 +492769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 15486344, "featuredRunMedia": null, "reactionVideos": [], @@ -493289,7 +492789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15490744, "featuredRunMedia": null, "reactionVideos": [], @@ -493309,7 +492809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 15490944, "featuredRunMedia": null, "reactionVideos": [], @@ -493329,7 +492829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "144221", "time": 15492116, "featuredRunMedia": null, "reactionVideos": [], @@ -493349,7 +492849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "144321", "time": 15492268, "featuredRunMedia": null, "reactionVideos": [], @@ -493369,7 +492869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 15494050, "featuredRunMedia": null, "reactionVideos": [], @@ -493389,7 +492889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 15494796, "featuredRunMedia": null, "reactionVideos": [], @@ -493409,7 +492909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 15495206, "featuredRunMedia": null, "reactionVideos": [], @@ -493429,7 +492929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 15496395, "featuredRunMedia": null, "reactionVideos": [], @@ -493449,7 +492949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 15496789, "featuredRunMedia": null, "reactionVideos": [], @@ -493469,7 +492969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "144083", "time": 15497034, "featuredRunMedia": null, "reactionVideos": [], @@ -493489,7 +492989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 15498401, "featuredRunMedia": null, "reactionVideos": [], @@ -493509,7 +493009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 412, + "teamId": "144482", "time": 15498975, "featuredRunMedia": null, "reactionVideos": [], @@ -493529,7 +493029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 15500557, "featuredRunMedia": null, "reactionVideos": [], @@ -493549,7 +493049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 15501402, "featuredRunMedia": null, "reactionVideos": [], @@ -493569,7 +493069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15501950, "featuredRunMedia": null, "reactionVideos": [], @@ -493589,7 +493089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 15502106, "featuredRunMedia": null, "reactionVideos": [], @@ -493613,7 +493113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 15503413, "featuredRunMedia": null, "reactionVideos": [], @@ -493633,7 +493133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 15504887, "featuredRunMedia": null, "reactionVideos": [], @@ -493653,7 +493153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 347, + "teamId": "144417", "time": 15506424, "featuredRunMedia": null, "reactionVideos": [], @@ -493673,7 +493173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 15506533, "featuredRunMedia": null, "reactionVideos": [], @@ -493693,7 +493193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15506672, "featuredRunMedia": null, "reactionVideos": [], @@ -493713,7 +493213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 15506940, "featuredRunMedia": null, "reactionVideos": [], @@ -493733,7 +493233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 15507863, "featuredRunMedia": null, "reactionVideos": [], @@ -493753,7 +493253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "144129", "time": 15508240, "featuredRunMedia": null, "reactionVideos": [], @@ -493777,7 +493277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 15509154, "featuredRunMedia": null, "reactionVideos": [], @@ -493797,7 +493297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 15511418, "featuredRunMedia": null, "reactionVideos": [], @@ -493817,7 +493317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15511764, "featuredRunMedia": null, "reactionVideos": [], @@ -493837,7 +493337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 15513410, "featuredRunMedia": null, "reactionVideos": [], @@ -493857,7 +493357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 15513643, "featuredRunMedia": null, "reactionVideos": [], @@ -493877,7 +493377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 15514191, "featuredRunMedia": null, "reactionVideos": [], @@ -493897,7 +493397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15515373, "featuredRunMedia": null, "reactionVideos": [], @@ -493917,7 +493417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 15517092, "featuredRunMedia": null, "reactionVideos": [], @@ -493937,7 +493437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15517510, "featuredRunMedia": null, "reactionVideos": [], @@ -493957,7 +493457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 15518183, "featuredRunMedia": null, "reactionVideos": [], @@ -493977,7 +493477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15519541, "featuredRunMedia": null, "reactionVideos": [], @@ -493997,7 +493497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 15520225, "featuredRunMedia": null, "reactionVideos": [], @@ -494017,7 +493517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "144186", "time": 15523560, "featuredRunMedia": null, "reactionVideos": [], @@ -494037,7 +493537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 230, + "teamId": "144300", "time": 15524214, "featuredRunMedia": null, "reactionVideos": [], @@ -494057,7 +493557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15524258, "featuredRunMedia": null, "reactionVideos": [], @@ -494077,7 +493577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 15524840, "featuredRunMedia": null, "reactionVideos": [], @@ -494097,7 +493597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 15528403, "featuredRunMedia": null, "reactionVideos": [], @@ -494117,7 +493617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 15528936, "featuredRunMedia": null, "reactionVideos": [], @@ -494137,7 +493637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "144133", "time": 15529111, "featuredRunMedia": null, "reactionVideos": [], @@ -494157,7 +493657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 15529495, "featuredRunMedia": null, "reactionVideos": [], @@ -494177,7 +493677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 15529713, "featuredRunMedia": null, "reactionVideos": [], @@ -494197,7 +493697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 15530552, "featuredRunMedia": null, "reactionVideos": [], @@ -494217,7 +493717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 15532837, "featuredRunMedia": null, "reactionVideos": [], @@ -494237,7 +493737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 15533271, "featuredRunMedia": null, "reactionVideos": [], @@ -494257,7 +493757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "144119", "time": 15533454, "featuredRunMedia": null, "reactionVideos": [], @@ -494277,7 +493777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15533758, "featuredRunMedia": null, "reactionVideos": [], @@ -494297,7 +493797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 15534041, "featuredRunMedia": null, "reactionVideos": [], @@ -494317,7 +493817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15534745, "featuredRunMedia": null, "reactionVideos": [], @@ -494337,7 +493837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 15535876, "featuredRunMedia": null, "reactionVideos": [], @@ -494357,7 +493857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15536462, "featuredRunMedia": null, "reactionVideos": [], @@ -494377,7 +493877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 91, + "teamId": "144161", "time": 15537085, "featuredRunMedia": null, "reactionVideos": [], @@ -494397,7 +493897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 15537644, "featuredRunMedia": null, "reactionVideos": [], @@ -494417,7 +493917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 15538063, "featuredRunMedia": null, "reactionVideos": [], @@ -494441,7 +493941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 15538462, "featuredRunMedia": null, "reactionVideos": [], @@ -494461,7 +493961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 15538811, "featuredRunMedia": null, "reactionVideos": [], @@ -494481,7 +493981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 15542480, "featuredRunMedia": null, "reactionVideos": [], @@ -494501,7 +494001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15542813, "featuredRunMedia": null, "reactionVideos": [], @@ -494521,7 +494021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "144231", "time": 15544501, "featuredRunMedia": null, "reactionVideos": [], @@ -494545,7 +494045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15546274, "featuredRunMedia": null, "reactionVideos": [], @@ -494565,7 +494065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15546710, "featuredRunMedia": null, "reactionVideos": [], @@ -494585,7 +494085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 15548454, "featuredRunMedia": null, "reactionVideos": [], @@ -494605,7 +494105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "144084", "time": 15548595, "featuredRunMedia": null, "reactionVideos": [], @@ -494625,7 +494125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15549178, "featuredRunMedia": null, "reactionVideos": [], @@ -494645,7 +494145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15549748, "featuredRunMedia": null, "reactionVideos": [], @@ -494665,7 +494165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 15551618, "featuredRunMedia": null, "reactionVideos": [], @@ -494685,7 +494185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "144110", "time": 15553043, "featuredRunMedia": null, "reactionVideos": [], @@ -494705,7 +494205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "144120", "time": 15553329, "featuredRunMedia": null, "reactionVideos": [], @@ -494725,7 +494225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 15554223, "featuredRunMedia": null, "reactionVideos": [], @@ -494745,7 +494245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15554527, "featuredRunMedia": null, "reactionVideos": [], @@ -494765,7 +494265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15555261, "featuredRunMedia": null, "reactionVideos": [], @@ -494785,7 +494285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15555586, "featuredRunMedia": null, "reactionVideos": [], @@ -494805,7 +494305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 15556068, "featuredRunMedia": null, "reactionVideos": [], @@ -494825,7 +494325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15558065, "featuredRunMedia": null, "reactionVideos": [], @@ -494845,7 +494345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 15558241, "featuredRunMedia": null, "reactionVideos": [], @@ -494865,7 +494365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 15560120, "featuredRunMedia": null, "reactionVideos": [], @@ -494885,7 +494385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 15561725, "featuredRunMedia": null, "reactionVideos": [], @@ -494905,7 +494405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "144341", "time": 15561880, "featuredRunMedia": null, "reactionVideos": [], @@ -494925,7 +494425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 15564200, "featuredRunMedia": null, "reactionVideos": [], @@ -494945,7 +494445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15566429, "featuredRunMedia": null, "reactionVideos": [], @@ -494965,7 +494465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "144080", "time": 15567445, "featuredRunMedia": null, "reactionVideos": [], @@ -494985,7 +494485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 15567711, "featuredRunMedia": null, "reactionVideos": [], @@ -495009,7 +494509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15568078, "featuredRunMedia": null, "reactionVideos": [], @@ -495029,7 +494529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 15568710, "featuredRunMedia": null, "reactionVideos": [], @@ -495049,7 +494549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 15569333, "featuredRunMedia": null, "reactionVideos": [], @@ -495069,7 +494569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 15569712, "featuredRunMedia": null, "reactionVideos": [], @@ -495089,7 +494589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 15570438, "featuredRunMedia": null, "reactionVideos": [], @@ -495109,7 +494609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 15571538, "featuredRunMedia": null, "reactionVideos": [], @@ -495129,7 +494629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 15572957, "featuredRunMedia": null, "reactionVideos": [], @@ -495149,7 +494649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 15573467, "featuredRunMedia": null, "reactionVideos": [], @@ -495169,7 +494669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "144404", "time": 15573802, "featuredRunMedia": null, "reactionVideos": [], @@ -495189,7 +494689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 15574802, "featuredRunMedia": null, "reactionVideos": [], @@ -495209,7 +494709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 15575377, "featuredRunMedia": null, "reactionVideos": [], @@ -495229,7 +494729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 15575640, "featuredRunMedia": null, "reactionVideos": [], @@ -495249,7 +494749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 15575688, "featuredRunMedia": null, "reactionVideos": [], @@ -495269,7 +494769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15575730, "featuredRunMedia": null, "reactionVideos": [], @@ -495289,7 +494789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15576015, "featuredRunMedia": null, "reactionVideos": [], @@ -495309,7 +494809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15576648, "featuredRunMedia": null, "reactionVideos": [], @@ -495329,7 +494829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15576967, "featuredRunMedia": null, "reactionVideos": [], @@ -495349,7 +494849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 15577095, "featuredRunMedia": null, "reactionVideos": [], @@ -495369,7 +494869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 348, + "teamId": "144418", "time": 15577183, "featuredRunMedia": null, "reactionVideos": [], @@ -495389,7 +494889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 15577348, "featuredRunMedia": null, "reactionVideos": [], @@ -495409,7 +494909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15579256, "featuredRunMedia": null, "reactionVideos": [], @@ -495429,7 +494929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 421, + "teamId": "144491", "time": 15579361, "featuredRunMedia": null, "reactionVideos": [], @@ -495449,7 +494949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15579938, "featuredRunMedia": null, "reactionVideos": [], @@ -495469,7 +494969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 15580823, "featuredRunMedia": null, "reactionVideos": [], @@ -495489,7 +494989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 15581032, "featuredRunMedia": null, "reactionVideos": [], @@ -495509,7 +495009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 15582090, "featuredRunMedia": null, "reactionVideos": [], @@ -495529,7 +495029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 15582526, "featuredRunMedia": null, "reactionVideos": [], @@ -495549,7 +495049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 15583765, "featuredRunMedia": null, "reactionVideos": [], @@ -495569,7 +495069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 15583808, "featuredRunMedia": null, "reactionVideos": [], @@ -495589,7 +495089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15584179, "featuredRunMedia": null, "reactionVideos": [], @@ -495609,7 +495109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 15586805, "featuredRunMedia": null, "reactionVideos": [], @@ -495629,7 +495129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15586859, "featuredRunMedia": null, "reactionVideos": [], @@ -495649,7 +495149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 15588411, "featuredRunMedia": null, "reactionVideos": [], @@ -495669,7 +495169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 339, + "teamId": "144409", "time": 15589103, "featuredRunMedia": null, "reactionVideos": [], @@ -495689,7 +495189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 15589227, "featuredRunMedia": null, "reactionVideos": [], @@ -495709,7 +495209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 15590114, "featuredRunMedia": null, "reactionVideos": [], @@ -495729,7 +495229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15590674, "featuredRunMedia": null, "reactionVideos": [], @@ -495749,7 +495249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15591336, "featuredRunMedia": null, "reactionVideos": [], @@ -495769,7 +495269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "144382", "time": 15592150, "featuredRunMedia": null, "reactionVideos": [], @@ -495793,7 +495293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15592957, "featuredRunMedia": null, "reactionVideos": [], @@ -495813,7 +495313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15594941, "featuredRunMedia": null, "reactionVideos": [], @@ -495833,7 +495333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15595946, "featuredRunMedia": null, "reactionVideos": [], @@ -495853,7 +495353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 15596014, "featuredRunMedia": null, "reactionVideos": [], @@ -495877,7 +495377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 15596980, "featuredRunMedia": null, "reactionVideos": [], @@ -495897,7 +495397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "144225", "time": 15597053, "featuredRunMedia": null, "reactionVideos": [], @@ -495917,7 +495417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15597687, "featuredRunMedia": null, "reactionVideos": [], @@ -495937,7 +495437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15597846, "featuredRunMedia": null, "reactionVideos": [], @@ -495957,7 +495457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 15598990, "featuredRunMedia": null, "reactionVideos": [], @@ -495977,7 +495477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 15600216, "featuredRunMedia": null, "reactionVideos": [], @@ -495997,7 +495497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 15600391, "featuredRunMedia": null, "reactionVideos": [], @@ -496017,7 +495517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 15600695, "featuredRunMedia": null, "reactionVideos": [], @@ -496037,7 +495537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15600734, "featuredRunMedia": null, "reactionVideos": [], @@ -496057,7 +495557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 15600812, "featuredRunMedia": null, "reactionVideos": [], @@ -496077,7 +495577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 15602782, "featuredRunMedia": null, "reactionVideos": [], @@ -496097,7 +495597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 15604330, "featuredRunMedia": null, "reactionVideos": [], @@ -496117,7 +495617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 15604388, "featuredRunMedia": null, "reactionVideos": [], @@ -496137,7 +495637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 15606180, "featuredRunMedia": null, "reactionVideos": [], @@ -496157,7 +495657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 376, + "teamId": "144446", "time": 15607600, "featuredRunMedia": null, "reactionVideos": [], @@ -496177,7 +495677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 15608709, "featuredRunMedia": null, "reactionVideos": [], @@ -496197,7 +495697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15609608, "featuredRunMedia": null, "reactionVideos": [], @@ -496217,7 +495717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 132, + "teamId": "144202", "time": 15609861, "featuredRunMedia": null, "reactionVideos": [], @@ -496237,7 +495737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 15610164, "featuredRunMedia": null, "reactionVideos": [], @@ -496257,7 +495757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15610524, "featuredRunMedia": null, "reactionVideos": [], @@ -496277,7 +495777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15610694, "featuredRunMedia": null, "reactionVideos": [], @@ -496297,7 +495797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 15612228, "featuredRunMedia": null, "reactionVideos": [], @@ -496317,7 +495817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 15612311, "featuredRunMedia": null, "reactionVideos": [], @@ -496337,7 +495837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 15613075, "featuredRunMedia": null, "reactionVideos": [], @@ -496357,7 +495857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15613790, "featuredRunMedia": null, "reactionVideos": [], @@ -496377,7 +495877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 15615073, "featuredRunMedia": null, "reactionVideos": [], @@ -496397,7 +495897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15615321, "featuredRunMedia": null, "reactionVideos": [], @@ -496417,7 +495917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15616567, "featuredRunMedia": null, "reactionVideos": [], @@ -496437,7 +495937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 15616655, "featuredRunMedia": null, "reactionVideos": [], @@ -496457,7 +495957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 15618072, "featuredRunMedia": null, "reactionVideos": [], @@ -496477,7 +495977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15620081, "featuredRunMedia": null, "reactionVideos": [], @@ -496497,7 +495997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15620837, "featuredRunMedia": null, "reactionVideos": [], @@ -496517,7 +496017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 15621592, "featuredRunMedia": null, "reactionVideos": [], @@ -496537,7 +496037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15622026, "featuredRunMedia": null, "reactionVideos": [], @@ -496557,7 +496057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15622158, "featuredRunMedia": null, "reactionVideos": [], @@ -496577,7 +496077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 15622659, "featuredRunMedia": null, "reactionVideos": [], @@ -496597,7 +496097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 15623024, "featuredRunMedia": null, "reactionVideos": [], @@ -496617,7 +496117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "144101", "time": 15623087, "featuredRunMedia": null, "reactionVideos": [], @@ -496637,7 +496137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 15623788, "featuredRunMedia": null, "reactionVideos": [], @@ -496657,7 +496157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15625078, "featuredRunMedia": null, "reactionVideos": [], @@ -496677,7 +496177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 15625487, "featuredRunMedia": null, "reactionVideos": [], @@ -496697,7 +496197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 15625954, "featuredRunMedia": null, "reactionVideos": [], @@ -496717,7 +496217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 15627487, "featuredRunMedia": null, "reactionVideos": [], @@ -496737,7 +496237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15628760, "featuredRunMedia": null, "reactionVideos": [], @@ -496757,7 +496257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15628987, "featuredRunMedia": null, "reactionVideos": [], @@ -496777,7 +496277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 15629499, "featuredRunMedia": null, "reactionVideos": [], @@ -496797,7 +496297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 15629806, "featuredRunMedia": null, "reactionVideos": [], @@ -496817,7 +496317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 15630132, "featuredRunMedia": null, "reactionVideos": [], @@ -496837,7 +496337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 15630694, "featuredRunMedia": null, "reactionVideos": [], @@ -496857,7 +496357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 15631029, "featuredRunMedia": null, "reactionVideos": [], @@ -496877,7 +496377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 15631161, "featuredRunMedia": null, "reactionVideos": [], @@ -496897,7 +496397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 15631214, "featuredRunMedia": null, "reactionVideos": [], @@ -496917,7 +496417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15631622, "featuredRunMedia": null, "reactionVideos": [], @@ -496937,7 +496437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 15631911, "featuredRunMedia": null, "reactionVideos": [], @@ -496957,7 +496457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 348, + "teamId": "144418", "time": 15634627, "featuredRunMedia": null, "reactionVideos": [], @@ -496977,7 +496477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 15635027, "featuredRunMedia": null, "reactionVideos": [], @@ -496997,7 +496497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 15635395, "featuredRunMedia": null, "reactionVideos": [], @@ -497017,7 +496517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 15636449, "featuredRunMedia": null, "reactionVideos": [], @@ -497037,7 +496537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15637142, "featuredRunMedia": null, "reactionVideos": [], @@ -497057,7 +496557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 15637611, "featuredRunMedia": null, "reactionVideos": [], @@ -497077,7 +496577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15637695, "featuredRunMedia": null, "reactionVideos": [], @@ -497097,7 +496597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15637802, "featuredRunMedia": null, "reactionVideos": [], @@ -497117,7 +496617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 15638317, "featuredRunMedia": null, "reactionVideos": [], @@ -497137,7 +496637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 15638479, "featuredRunMedia": null, "reactionVideos": [], @@ -497161,7 +496661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 15639367, "featuredRunMedia": null, "reactionVideos": [], @@ -497181,7 +496681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 15641264, "featuredRunMedia": null, "reactionVideos": [], @@ -497201,7 +496701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 15641775, "featuredRunMedia": null, "reactionVideos": [], @@ -497221,7 +496721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15641817, "featuredRunMedia": null, "reactionVideos": [], @@ -497241,7 +496741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 15641967, "featuredRunMedia": null, "reactionVideos": [], @@ -497261,7 +496761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "144378", "time": 15645478, "featuredRunMedia": null, "reactionVideos": [], @@ -497281,7 +496781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15645591, "featuredRunMedia": null, "reactionVideos": [], @@ -497301,7 +496801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "144294", "time": 15646257, "featuredRunMedia": null, "reactionVideos": [], @@ -497321,7 +496821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 15646532, "featuredRunMedia": null, "reactionVideos": [], @@ -497341,7 +496841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 15648759, "featuredRunMedia": null, "reactionVideos": [], @@ -497361,7 +496861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15649185, "featuredRunMedia": null, "reactionVideos": [], @@ -497381,7 +496881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 15649236, "featuredRunMedia": null, "reactionVideos": [], @@ -497401,7 +496901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15651044, "featuredRunMedia": null, "reactionVideos": [], @@ -497421,7 +496921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 15651527, "featuredRunMedia": null, "reactionVideos": [], @@ -497441,7 +496941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15651685, "featuredRunMedia": null, "reactionVideos": [], @@ -497461,7 +496961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 15652704, "featuredRunMedia": null, "reactionVideos": [], @@ -497481,7 +496981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 15654655, "featuredRunMedia": null, "reactionVideos": [], @@ -497501,7 +497001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 15655275, "featuredRunMedia": null, "reactionVideos": [], @@ -497521,7 +497021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 412, + "teamId": "144482", "time": 15655330, "featuredRunMedia": null, "reactionVideos": [], @@ -497541,7 +497041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 15655406, "featuredRunMedia": null, "reactionVideos": [], @@ -497561,7 +497061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15655768, "featuredRunMedia": null, "reactionVideos": [], @@ -497585,7 +497085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 15657445, "featuredRunMedia": null, "reactionVideos": [], @@ -497605,7 +497105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "144097", "time": 15658251, "featuredRunMedia": null, "reactionVideos": [], @@ -497629,7 +497129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15659371, "featuredRunMedia": null, "reactionVideos": [], @@ -497649,7 +497149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 15660767, "featuredRunMedia": null, "reactionVideos": [], @@ -497669,7 +497169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 15660946, "featuredRunMedia": null, "reactionVideos": [], @@ -497689,7 +497189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15661018, "featuredRunMedia": null, "reactionVideos": [], @@ -497709,7 +497209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "144187", "time": 15661432, "featuredRunMedia": null, "reactionVideos": [], @@ -497729,7 +497229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 15663705, "featuredRunMedia": null, "reactionVideos": [], @@ -497749,7 +497249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 15665224, "featuredRunMedia": null, "reactionVideos": [], @@ -497769,7 +497269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 15666889, "featuredRunMedia": null, "reactionVideos": [], @@ -497789,7 +497289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15670219, "featuredRunMedia": null, "reactionVideos": [], @@ -497809,7 +497309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 15671339, "featuredRunMedia": null, "reactionVideos": [], @@ -497829,7 +497329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 15672884, "featuredRunMedia": null, "reactionVideos": [], @@ -497849,7 +497349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 15673996, "featuredRunMedia": null, "reactionVideos": [], @@ -497869,7 +497369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 15674355, "featuredRunMedia": null, "reactionVideos": [], @@ -497889,7 +497389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 15675872, "featuredRunMedia": null, "reactionVideos": [], @@ -497909,7 +497409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 408, + "teamId": "144478", "time": 15677265, "featuredRunMedia": null, "reactionVideos": [], @@ -497929,7 +497429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 384, + "teamId": "144454", "time": 15677303, "featuredRunMedia": null, "reactionVideos": [], @@ -497949,7 +497449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15678785, "featuredRunMedia": null, "reactionVideos": [], @@ -497969,7 +497469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 15684605, "featuredRunMedia": null, "reactionVideos": [], @@ -497989,7 +497489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 15684683, "featuredRunMedia": null, "reactionVideos": [], @@ -498013,7 +497513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15686006, "featuredRunMedia": null, "reactionVideos": [], @@ -498033,7 +497533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 15688245, "featuredRunMedia": null, "reactionVideos": [], @@ -498053,7 +497553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "144373", "time": 15688681, "featuredRunMedia": null, "reactionVideos": [], @@ -498073,7 +497573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 15688818, "featuredRunMedia": null, "reactionVideos": [], @@ -498093,7 +497593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 15688865, "featuredRunMedia": null, "reactionVideos": [], @@ -498113,7 +497613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 15689894, "featuredRunMedia": null, "reactionVideos": [], @@ -498133,7 +497633,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 15690615, "featuredRunMedia": null, "reactionVideos": [], @@ -498153,7 +497653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 361, + "teamId": "144431", "time": 15691154, "featuredRunMedia": null, "reactionVideos": [], @@ -498173,7 +497673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 15691435, "featuredRunMedia": null, "reactionVideos": [], @@ -498193,7 +497693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15691501, "featuredRunMedia": null, "reactionVideos": [], @@ -498213,7 +497713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 15695860, "featuredRunMedia": null, "reactionVideos": [], @@ -498233,7 +497733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "144386", "time": 15696699, "featuredRunMedia": null, "reactionVideos": [], @@ -498253,7 +497753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 15696828, "featuredRunMedia": null, "reactionVideos": [], @@ -498273,7 +497773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 15698474, "featuredRunMedia": null, "reactionVideos": [], @@ -498293,7 +497793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 248, + "teamId": "144318", "time": 15700255, "featuredRunMedia": null, "reactionVideos": [], @@ -498313,7 +497813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 15700610, "featuredRunMedia": null, "reactionVideos": [], @@ -498333,7 +497833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 222, + "teamId": "144292", "time": 15703718, "featuredRunMedia": null, "reactionVideos": [], @@ -498353,7 +497853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 15704041, "featuredRunMedia": null, "reactionVideos": [], @@ -498373,7 +497873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 15705648, "featuredRunMedia": null, "reactionVideos": [], @@ -498393,7 +497893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 15707384, "featuredRunMedia": null, "reactionVideos": [], @@ -498413,7 +497913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 15707698, "featuredRunMedia": null, "reactionVideos": [], @@ -498433,7 +497933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15708248, "featuredRunMedia": null, "reactionVideos": [], @@ -498453,7 +497953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 15710492, "featuredRunMedia": null, "reactionVideos": [], @@ -498473,7 +497973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "144373", "time": 15711135, "featuredRunMedia": null, "reactionVideos": [], @@ -498493,7 +497993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 15712010, "featuredRunMedia": null, "reactionVideos": [], @@ -498517,7 +498017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 15713790, "featuredRunMedia": null, "reactionVideos": [], @@ -498537,7 +498037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 15714185, "featuredRunMedia": null, "reactionVideos": [], @@ -498557,7 +498057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15714763, "featuredRunMedia": null, "reactionVideos": [], @@ -498577,7 +498077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "144412", "time": 15715722, "featuredRunMedia": null, "reactionVideos": [], @@ -498597,7 +498097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 15715847, "featuredRunMedia": null, "reactionVideos": [], @@ -498617,7 +498117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "144123", "time": 15716857, "featuredRunMedia": null, "reactionVideos": [], @@ -498637,7 +498137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 15717813, "featuredRunMedia": null, "reactionVideos": [], @@ -498657,7 +498157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 15718728, "featuredRunMedia": null, "reactionVideos": [], @@ -498677,7 +498177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 15719259, "featuredRunMedia": null, "reactionVideos": [], @@ -498697,7 +498197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 15719759, "featuredRunMedia": null, "reactionVideos": [], @@ -498717,7 +498217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 329, + "teamId": "144399", "time": 15723994, "featuredRunMedia": null, "reactionVideos": [], @@ -498737,7 +498237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 15725562, "featuredRunMedia": null, "reactionVideos": [], @@ -498757,7 +498257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 15727525, "featuredRunMedia": null, "reactionVideos": [], @@ -498777,7 +498277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 15729605, "featuredRunMedia": null, "reactionVideos": [], @@ -498797,7 +498297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 15731013, "featuredRunMedia": null, "reactionVideos": [], @@ -498817,7 +498317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 15731945, "featuredRunMedia": null, "reactionVideos": [], @@ -498841,7 +498341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 15732783, "featuredRunMedia": null, "reactionVideos": [], @@ -498861,7 +498361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 15733627, "featuredRunMedia": null, "reactionVideos": [], @@ -498881,7 +498381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 15735608, "featuredRunMedia": null, "reactionVideos": [], @@ -498901,7 +498401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15737388, "featuredRunMedia": null, "reactionVideos": [], @@ -498921,7 +498421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 15738126, "featuredRunMedia": null, "reactionVideos": [], @@ -498941,7 +498441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 15741921, "featuredRunMedia": null, "reactionVideos": [], @@ -498961,7 +498461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15742269, "featuredRunMedia": null, "reactionVideos": [], @@ -498981,7 +498481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 15742312, "featuredRunMedia": null, "reactionVideos": [], @@ -499001,7 +498501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 15742616, "featuredRunMedia": null, "reactionVideos": [], @@ -499021,7 +498521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "144257", "time": 15742824, "featuredRunMedia": null, "reactionVideos": [], @@ -499041,7 +498541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 15745355, "featuredRunMedia": null, "reactionVideos": [], @@ -499061,7 +498561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "144082", "time": 15747919, "featuredRunMedia": null, "reactionVideos": [], @@ -499081,7 +498581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 15750812, "featuredRunMedia": null, "reactionVideos": [], @@ -499101,7 +498601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 15751401, "featuredRunMedia": null, "reactionVideos": [], @@ -499121,7 +498621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 348, + "teamId": "144418", "time": 15751976, "featuredRunMedia": null, "reactionVideos": [], @@ -499141,7 +498641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 15752174, "featuredRunMedia": null, "reactionVideos": [], @@ -499161,7 +498661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15752602, "featuredRunMedia": null, "reactionVideos": [], @@ -499185,7 +498685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15752968, "featuredRunMedia": null, "reactionVideos": [], @@ -499205,7 +498705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15753177, "featuredRunMedia": null, "reactionVideos": [], @@ -499225,7 +498725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 15756260, "featuredRunMedia": null, "reactionVideos": [], @@ -499245,7 +498745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 15757195, "featuredRunMedia": null, "reactionVideos": [], @@ -499265,7 +498765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 15759229, "featuredRunMedia": null, "reactionVideos": [], @@ -499285,7 +498785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 373, + "teamId": "144443", "time": 15759844, "featuredRunMedia": null, "reactionVideos": [], @@ -499305,7 +498805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15760057, "featuredRunMedia": null, "reactionVideos": [], @@ -499325,7 +498825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 15760904, "featuredRunMedia": null, "reactionVideos": [], @@ -499345,7 +498845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15762225, "featuredRunMedia": null, "reactionVideos": [], @@ -499365,7 +498865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15762873, "featuredRunMedia": null, "reactionVideos": [], @@ -499385,7 +498885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 15763986, "featuredRunMedia": null, "reactionVideos": [], @@ -499405,7 +498905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 15765878, "featuredRunMedia": null, "reactionVideos": [], @@ -499425,7 +498925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 392, + "teamId": "144462", "time": 15766147, "featuredRunMedia": null, "reactionVideos": [], @@ -499445,7 +498945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 15769189, "featuredRunMedia": null, "reactionVideos": [], @@ -499465,7 +498965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 15770657, "featuredRunMedia": null, "reactionVideos": [], @@ -499485,7 +498985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "144296", "time": 15770798, "featuredRunMedia": null, "reactionVideos": [], @@ -499505,7 +499005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 412, + "teamId": "144482", "time": 15771583, "featuredRunMedia": null, "reactionVideos": [], @@ -499525,7 +499025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 15773330, "featuredRunMedia": null, "reactionVideos": [], @@ -499545,7 +499045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15775323, "featuredRunMedia": null, "reactionVideos": [], @@ -499565,7 +499065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 15776153, "featuredRunMedia": null, "reactionVideos": [], @@ -499585,7 +499085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 15776308, "featuredRunMedia": null, "reactionVideos": [], @@ -499605,7 +499105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 15776848, "featuredRunMedia": null, "reactionVideos": [], @@ -499625,7 +499125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 15777001, "featuredRunMedia": null, "reactionVideos": [], @@ -499645,7 +499145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 15778557, "featuredRunMedia": null, "reactionVideos": [], @@ -499665,7 +499165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15778760, "featuredRunMedia": null, "reactionVideos": [], @@ -499685,7 +499185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15779436, "featuredRunMedia": null, "reactionVideos": [], @@ -499705,7 +499205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 15779568, "featuredRunMedia": null, "reactionVideos": [], @@ -499725,7 +499225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 15781913, "featuredRunMedia": null, "reactionVideos": [], @@ -499745,7 +499245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "144245", "time": 15782306, "featuredRunMedia": null, "reactionVideos": [], @@ -499765,7 +499265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 386, + "teamId": "144456", "time": 15782396, "featuredRunMedia": null, "reactionVideos": [], @@ -499785,7 +499285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 15783010, "featuredRunMedia": null, "reactionVideos": [], @@ -499805,7 +499305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 15784591, "featuredRunMedia": null, "reactionVideos": [], @@ -499825,7 +499325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 15785502, "featuredRunMedia": null, "reactionVideos": [], @@ -499849,7 +499349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 15785997, "featuredRunMedia": null, "reactionVideos": [], @@ -499869,7 +499369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 15786527, "featuredRunMedia": null, "reactionVideos": [], @@ -499889,7 +499389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 15788082, "featuredRunMedia": null, "reactionVideos": [], @@ -499909,7 +499409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 15788134, "featuredRunMedia": null, "reactionVideos": [], @@ -499929,7 +499429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "144286", "time": 15788221, "featuredRunMedia": null, "reactionVideos": [], @@ -499949,7 +499449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 15789837, "featuredRunMedia": null, "reactionVideos": [], @@ -499969,7 +499469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 15789970, "featuredRunMedia": null, "reactionVideos": [], @@ -499989,7 +499489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 15793393, "featuredRunMedia": null, "reactionVideos": [], @@ -500009,7 +499509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15793539, "featuredRunMedia": null, "reactionVideos": [], @@ -500029,7 +499529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 436, + "teamId": "144506", "time": 15794232, "featuredRunMedia": null, "reactionVideos": [], @@ -500049,7 +499549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 340, + "teamId": "144410", "time": 15794515, "featuredRunMedia": null, "reactionVideos": [], @@ -500069,7 +499569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 15794892, "featuredRunMedia": null, "reactionVideos": [], @@ -500089,7 +499589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "144142", "time": 15797291, "featuredRunMedia": null, "reactionVideos": [], @@ -500109,7 +499609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 15798306, "featuredRunMedia": null, "reactionVideos": [], @@ -500129,7 +499629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 15799609, "featuredRunMedia": null, "reactionVideos": [], @@ -500149,7 +499649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 15801117, "featuredRunMedia": null, "reactionVideos": [], @@ -500169,7 +499669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "144279", "time": 15801655, "featuredRunMedia": null, "reactionVideos": [], @@ -500193,7 +499693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 15801716, "featuredRunMedia": null, "reactionVideos": [], @@ -500213,7 +499713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 15801878, "featuredRunMedia": null, "reactionVideos": [], @@ -500233,7 +499733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 15804153, "featuredRunMedia": null, "reactionVideos": [], @@ -500253,7 +499753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15805188, "featuredRunMedia": null, "reactionVideos": [], @@ -500273,7 +499773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 15805483, "featuredRunMedia": null, "reactionVideos": [], @@ -500293,7 +499793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "144267", "time": 15807645, "featuredRunMedia": null, "reactionVideos": [], @@ -500313,7 +499813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15808202, "featuredRunMedia": null, "reactionVideos": [], @@ -500333,7 +499833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15810977, "featuredRunMedia": null, "reactionVideos": [], @@ -500353,7 +499853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 15812686, "featuredRunMedia": null, "reactionVideos": [], @@ -500373,7 +499873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15813140, "featuredRunMedia": null, "reactionVideos": [], @@ -500393,7 +499893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 15813640, "featuredRunMedia": null, "reactionVideos": [], @@ -500413,7 +499913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 15813760, "featuredRunMedia": null, "reactionVideos": [], @@ -500433,7 +499933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 15814670, "featuredRunMedia": null, "reactionVideos": [], @@ -500453,7 +499953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15815709, "featuredRunMedia": null, "reactionVideos": [], @@ -500473,7 +499973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 15817535, "featuredRunMedia": null, "reactionVideos": [], @@ -500493,7 +499993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 355, + "teamId": "144425", "time": 15817818, "featuredRunMedia": null, "reactionVideos": [], @@ -500513,7 +500013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 420, + "teamId": "144490", "time": 15819794, "featuredRunMedia": null, "reactionVideos": [], @@ -500533,7 +500033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 15820407, "featuredRunMedia": null, "reactionVideos": [], @@ -500553,7 +500053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 15821370, "featuredRunMedia": null, "reactionVideos": [], @@ -500573,7 +500073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15822174, "featuredRunMedia": null, "reactionVideos": [], @@ -500593,7 +500093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15823348, "featuredRunMedia": null, "reactionVideos": [], @@ -500613,7 +500113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15823849, "featuredRunMedia": null, "reactionVideos": [], @@ -500633,7 +500133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 15826652, "featuredRunMedia": null, "reactionVideos": [], @@ -500653,7 +500153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 15826711, "featuredRunMedia": null, "reactionVideos": [], @@ -500673,7 +500173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 15827966, "featuredRunMedia": null, "reactionVideos": [], @@ -500693,7 +500193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 15828274, "featuredRunMedia": null, "reactionVideos": [], @@ -500713,7 +500213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 15828337, "featuredRunMedia": null, "reactionVideos": [], @@ -500733,7 +500233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 15828415, "featuredRunMedia": null, "reactionVideos": [], @@ -500753,7 +500253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 15829150, "featuredRunMedia": null, "reactionVideos": [], @@ -500773,7 +500273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 15829787, "featuredRunMedia": null, "reactionVideos": [], @@ -500793,7 +500293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 15830388, "featuredRunMedia": null, "reactionVideos": [], @@ -500813,7 +500313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 15831495, "featuredRunMedia": null, "reactionVideos": [], @@ -500833,7 +500333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 15831714, "featuredRunMedia": null, "reactionVideos": [], @@ -500853,7 +500353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15832623, "featuredRunMedia": null, "reactionVideos": [], @@ -500873,7 +500373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 15833390, "featuredRunMedia": null, "reactionVideos": [], @@ -500893,7 +500393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 15833886, "featuredRunMedia": null, "reactionVideos": [], @@ -500913,7 +500413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 15835854, "featuredRunMedia": null, "reactionVideos": [], @@ -500933,7 +500433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 15835909, "featuredRunMedia": null, "reactionVideos": [], @@ -500953,7 +500453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15838692, "featuredRunMedia": null, "reactionVideos": [], @@ -500973,7 +500473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 15839679, "featuredRunMedia": null, "reactionVideos": [], @@ -500993,7 +500493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "144299", "time": 15840441, "featuredRunMedia": null, "reactionVideos": [], @@ -501013,7 +500513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 15840820, "featuredRunMedia": null, "reactionVideos": [], @@ -501033,7 +500533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 15841185, "featuredRunMedia": null, "reactionVideos": [], @@ -501053,7 +500553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 15842193, "featuredRunMedia": null, "reactionVideos": [], @@ -501073,7 +500573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 15842461, "featuredRunMedia": null, "reactionVideos": [], @@ -501093,7 +500593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 15842716, "featuredRunMedia": null, "reactionVideos": [], @@ -501113,7 +500613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 15842858, "featuredRunMedia": null, "reactionVideos": [], @@ -501133,7 +500633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 323, + "teamId": "144393", "time": 15843651, "featuredRunMedia": null, "reactionVideos": [], @@ -501153,7 +500653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 15844477, "featuredRunMedia": null, "reactionVideos": [], @@ -501173,7 +500673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15845283, "featuredRunMedia": null, "reactionVideos": [], @@ -501193,7 +500693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 15845728, "featuredRunMedia": null, "reactionVideos": [], @@ -501213,7 +500713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15846119, "featuredRunMedia": null, "reactionVideos": [], @@ -501233,7 +500733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 15846343, "featuredRunMedia": null, "reactionVideos": [], @@ -501253,7 +500753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 15846449, "featuredRunMedia": null, "reactionVideos": [], @@ -501273,7 +500773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 15846881, "featuredRunMedia": null, "reactionVideos": [], @@ -501293,7 +500793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 15847581, "featuredRunMedia": null, "reactionVideos": [], @@ -501313,7 +500813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15848966, "featuredRunMedia": null, "reactionVideos": [], @@ -501333,7 +500833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "144129", "time": 15849862, "featuredRunMedia": null, "reactionVideos": [], @@ -501353,7 +500853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 15850833, "featuredRunMedia": null, "reactionVideos": [], @@ -501373,7 +500873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 15850908, "featuredRunMedia": null, "reactionVideos": [], @@ -501393,7 +500893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15851626, "featuredRunMedia": null, "reactionVideos": [], @@ -501413,7 +500913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 15852102, "featuredRunMedia": null, "reactionVideos": [], @@ -501433,7 +500933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 15852161, "featuredRunMedia": null, "reactionVideos": [], @@ -501453,7 +500953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 15852963, "featuredRunMedia": null, "reactionVideos": [], @@ -501473,7 +500973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 15853083, "featuredRunMedia": null, "reactionVideos": [], @@ -501493,7 +500993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "144229", "time": 15854933, "featuredRunMedia": null, "reactionVideos": [], @@ -501513,7 +501013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 15856152, "featuredRunMedia": null, "reactionVideos": [], @@ -501533,7 +501033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 347, + "teamId": "144417", "time": 15857410, "featuredRunMedia": null, "reactionVideos": [], @@ -501553,7 +501053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 15857643, "featuredRunMedia": null, "reactionVideos": [], @@ -501573,7 +501073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 15857728, "featuredRunMedia": null, "reactionVideos": [], @@ -501593,7 +501093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 15857898, "featuredRunMedia": null, "reactionVideos": [], @@ -501613,7 +501113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15859112, "featuredRunMedia": null, "reactionVideos": [], @@ -501633,7 +501133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 15859794, "featuredRunMedia": null, "reactionVideos": [], @@ -501653,7 +501153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 15860427, "featuredRunMedia": null, "reactionVideos": [], @@ -501673,7 +501173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 15861690, "featuredRunMedia": null, "reactionVideos": [], @@ -501693,7 +501193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15863736, "featuredRunMedia": null, "reactionVideos": [], @@ -501713,7 +501213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15864583, "featuredRunMedia": null, "reactionVideos": [], @@ -501733,7 +501233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15867454, "featuredRunMedia": null, "reactionVideos": [], @@ -501753,7 +501253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15868503, "featuredRunMedia": null, "reactionVideos": [], @@ -501773,7 +501273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 15872832, "featuredRunMedia": null, "reactionVideos": [], @@ -501793,7 +501293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 15873244, "featuredRunMedia": null, "reactionVideos": [], @@ -501813,7 +501313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 15873683, "featuredRunMedia": null, "reactionVideos": [], @@ -501833,7 +501333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 15875083, "featuredRunMedia": null, "reactionVideos": [], @@ -501853,7 +501353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "144359", "time": 15877160, "featuredRunMedia": null, "reactionVideos": [], @@ -501873,7 +501373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 15878566, "featuredRunMedia": null, "reactionVideos": [], @@ -501893,7 +501393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 15880192, "featuredRunMedia": null, "reactionVideos": [], @@ -501913,7 +501413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 15880297, "featuredRunMedia": null, "reactionVideos": [], @@ -501933,7 +501433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 15880571, "featuredRunMedia": null, "reactionVideos": [], @@ -501953,7 +501453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15880788, "featuredRunMedia": null, "reactionVideos": [], @@ -501973,7 +501473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15880854, "featuredRunMedia": null, "reactionVideos": [], @@ -501993,7 +501493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 15880952, "featuredRunMedia": null, "reactionVideos": [], @@ -502013,7 +501513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 15881530, "featuredRunMedia": null, "reactionVideos": [], @@ -502033,7 +501533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 15882089, "featuredRunMedia": null, "reactionVideos": [], @@ -502053,7 +501553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 15883241, "featuredRunMedia": null, "reactionVideos": [], @@ -502073,7 +501573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 15884083, "featuredRunMedia": null, "reactionVideos": [], @@ -502093,7 +501593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 15886371, "featuredRunMedia": null, "reactionVideos": [], @@ -502113,7 +501613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 15888204, "featuredRunMedia": null, "reactionVideos": [], @@ -502137,7 +501637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 15888678, "featuredRunMedia": null, "reactionVideos": [], @@ -502157,7 +501657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 15890369, "featuredRunMedia": null, "reactionVideos": [], @@ -502177,7 +501677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 15891965, "featuredRunMedia": null, "reactionVideos": [], @@ -502197,7 +501697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "144264", "time": 15893297, "featuredRunMedia": null, "reactionVideos": [], @@ -502217,7 +501717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15893956, "featuredRunMedia": null, "reactionVideos": [], @@ -502237,7 +501737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 15894798, "featuredRunMedia": null, "reactionVideos": [], @@ -502257,7 +501757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 15895215, "featuredRunMedia": null, "reactionVideos": [], @@ -502277,7 +501777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 403, + "teamId": "144473", "time": 15896146, "featuredRunMedia": null, "reactionVideos": [], @@ -502301,7 +501801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 15896253, "featuredRunMedia": null, "reactionVideos": [], @@ -502321,7 +501821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 15897371, "featuredRunMedia": null, "reactionVideos": [], @@ -502341,7 +501841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 15897788, "featuredRunMedia": null, "reactionVideos": [], @@ -502361,7 +501861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 15898205, "featuredRunMedia": null, "reactionVideos": [], @@ -502381,7 +501881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 15899053, "featuredRunMedia": null, "reactionVideos": [], @@ -502401,7 +501901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 15901986, "featuredRunMedia": null, "reactionVideos": [], @@ -502421,7 +501921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 367, + "teamId": "144437", "time": 15902042, "featuredRunMedia": null, "reactionVideos": [], @@ -502441,7 +501941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 15902560, "featuredRunMedia": null, "reactionVideos": [], @@ -502461,7 +501961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15903133, "featuredRunMedia": null, "reactionVideos": [], @@ -502481,7 +501981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "144344", "time": 15903226, "featuredRunMedia": null, "reactionVideos": [], @@ -502501,7 +502001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 15903299, "featuredRunMedia": null, "reactionVideos": [], @@ -502521,7 +502021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 15904564, "featuredRunMedia": null, "reactionVideos": [], @@ -502541,7 +502041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 15904687, "featuredRunMedia": null, "reactionVideos": [], @@ -502561,7 +502061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 15906468, "featuredRunMedia": null, "reactionVideos": [], @@ -502581,7 +502081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "144099", "time": 15907647, "featuredRunMedia": null, "reactionVideos": [], @@ -502601,7 +502101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 15908576, "featuredRunMedia": null, "reactionVideos": [], @@ -502621,7 +502121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 15909128, "featuredRunMedia": null, "reactionVideos": [], @@ -502641,7 +502141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "144304", "time": 15909752, "featuredRunMedia": null, "reactionVideos": [], @@ -502661,7 +502161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15910757, "featuredRunMedia": null, "reactionVideos": [], @@ -502681,7 +502181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 15911896, "featuredRunMedia": null, "reactionVideos": [], @@ -502701,7 +502201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 15912413, "featuredRunMedia": null, "reactionVideos": [], @@ -502721,7 +502221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 15912618, "featuredRunMedia": null, "reactionVideos": [], @@ -502741,7 +502241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 15914491, "featuredRunMedia": null, "reactionVideos": [], @@ -502761,7 +502261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 15914683, "featuredRunMedia": null, "reactionVideos": [], @@ -502781,7 +502281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 437, + "teamId": "144507", "time": 15916142, "featuredRunMedia": null, "reactionVideos": [], @@ -502801,7 +502301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "144127", "time": 15916648, "featuredRunMedia": null, "reactionVideos": [], @@ -502821,7 +502321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 15917065, "featuredRunMedia": null, "reactionVideos": [], @@ -502841,7 +502341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 15917255, "featuredRunMedia": null, "reactionVideos": [], @@ -502861,7 +502361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "144363", "time": 15918934, "featuredRunMedia": null, "reactionVideos": [], @@ -502881,7 +502381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 15922365, "featuredRunMedia": null, "reactionVideos": [], @@ -502901,7 +502401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15923019, "featuredRunMedia": null, "reactionVideos": [], @@ -502921,7 +502421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 15923173, "featuredRunMedia": null, "reactionVideos": [], @@ -502941,7 +502441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 15923341, "featuredRunMedia": null, "reactionVideos": [], @@ -502961,7 +502461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 15924842, "featuredRunMedia": null, "reactionVideos": [], @@ -502981,7 +502481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 391, + "teamId": "144461", "time": 15925087, "featuredRunMedia": null, "reactionVideos": [], @@ -503001,7 +502501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 15925767, "featuredRunMedia": null, "reactionVideos": [], @@ -503021,7 +502521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15926689, "featuredRunMedia": null, "reactionVideos": [], @@ -503041,7 +502541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 15927730, "featuredRunMedia": null, "reactionVideos": [], @@ -503061,7 +502561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 15928039, "featuredRunMedia": null, "reactionVideos": [], @@ -503081,7 +502581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 15928407, "featuredRunMedia": null, "reactionVideos": [], @@ -503101,7 +502601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 15928627, "featuredRunMedia": null, "reactionVideos": [], @@ -503121,7 +502621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 15929147, "featuredRunMedia": null, "reactionVideos": [], @@ -503141,7 +502641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 15929473, "featuredRunMedia": null, "reactionVideos": [], @@ -503161,7 +502661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15930239, "featuredRunMedia": null, "reactionVideos": [], @@ -503181,7 +502681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 15930403, "featuredRunMedia": null, "reactionVideos": [], @@ -503201,7 +502701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "144384", "time": 15930782, "featuredRunMedia": null, "reactionVideos": [], @@ -503225,7 +502725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 15933153, "featuredRunMedia": null, "reactionVideos": [], @@ -503245,7 +502745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "144138", "time": 15934979, "featuredRunMedia": null, "reactionVideos": [], @@ -503265,7 +502765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 15935342, "featuredRunMedia": null, "reactionVideos": [], @@ -503285,7 +502785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 15935721, "featuredRunMedia": null, "reactionVideos": [], @@ -503305,7 +502805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 15937356, "featuredRunMedia": null, "reactionVideos": [], @@ -503325,7 +502825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 348, + "teamId": "144418", "time": 15938383, "featuredRunMedia": null, "reactionVideos": [], @@ -503345,7 +502845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 15939013, "featuredRunMedia": null, "reactionVideos": [], @@ -503365,7 +502865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 15939524, "featuredRunMedia": null, "reactionVideos": [], @@ -503385,7 +502885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15939689, "featuredRunMedia": null, "reactionVideos": [], @@ -503405,7 +502905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 15940667, "featuredRunMedia": null, "reactionVideos": [], @@ -503425,7 +502925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 15941941, "featuredRunMedia": null, "reactionVideos": [], @@ -503445,7 +502945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 15942588, "featuredRunMedia": null, "reactionVideos": [], @@ -503465,7 +502965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 15942941, "featuredRunMedia": null, "reactionVideos": [], @@ -503485,7 +502985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "144167", "time": 15943062, "featuredRunMedia": null, "reactionVideos": [], @@ -503505,7 +503005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15945491, "featuredRunMedia": null, "reactionVideos": [], @@ -503525,7 +503025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 15945547, "featuredRunMedia": null, "reactionVideos": [], @@ -503545,7 +503045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 15946131, "featuredRunMedia": null, "reactionVideos": [], @@ -503565,7 +503065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 15946648, "featuredRunMedia": null, "reactionVideos": [], @@ -503585,7 +503085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 15946757, "featuredRunMedia": null, "reactionVideos": [], @@ -503605,7 +503105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 15947053, "featuredRunMedia": null, "reactionVideos": [], @@ -503625,7 +503125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 15947621, "featuredRunMedia": null, "reactionVideos": [], @@ -503645,7 +503145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 15948227, "featuredRunMedia": null, "reactionVideos": [], @@ -503665,7 +503165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15948382, "featuredRunMedia": null, "reactionVideos": [], @@ -503685,7 +503185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 379, + "teamId": "144449", "time": 15950656, "featuredRunMedia": null, "reactionVideos": [], @@ -503705,7 +503205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 15950967, "featuredRunMedia": null, "reactionVideos": [], @@ -503725,7 +503225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 15951146, "featuredRunMedia": null, "reactionVideos": [], @@ -503745,7 +503245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "144245", "time": 15951205, "featuredRunMedia": null, "reactionVideos": [], @@ -503765,7 +503265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 15951565, "featuredRunMedia": null, "reactionVideos": [], @@ -503785,7 +503285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 15951821, "featuredRunMedia": null, "reactionVideos": [], @@ -503805,7 +503305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 15951889, "featuredRunMedia": null, "reactionVideos": [], @@ -503825,7 +503325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 15952016, "featuredRunMedia": null, "reactionVideos": [], @@ -503845,7 +503345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 15953848, "featuredRunMedia": null, "reactionVideos": [], @@ -503865,7 +503365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 15955076, "featuredRunMedia": null, "reactionVideos": [], @@ -503889,7 +503389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 15955784, "featuredRunMedia": null, "reactionVideos": [], @@ -503909,7 +503409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 15955864, "featuredRunMedia": null, "reactionVideos": [], @@ -503929,7 +503429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 15956083, "featuredRunMedia": null, "reactionVideos": [], @@ -503949,7 +503449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 15956468, "featuredRunMedia": null, "reactionVideos": [], @@ -503973,7 +503473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 15957539, "featuredRunMedia": null, "reactionVideos": [], @@ -503993,7 +503493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 15960232, "featuredRunMedia": null, "reactionVideos": [], @@ -504013,7 +503513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 15961533, "featuredRunMedia": null, "reactionVideos": [], @@ -504037,7 +503537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 15962773, "featuredRunMedia": null, "reactionVideos": [], @@ -504057,7 +503557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 15962828, "featuredRunMedia": null, "reactionVideos": [], @@ -504077,7 +503577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 15964570, "featuredRunMedia": null, "reactionVideos": [], @@ -504097,7 +503597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 15966129, "featuredRunMedia": null, "reactionVideos": [], @@ -504117,7 +503617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 15967448, "featuredRunMedia": null, "reactionVideos": [], @@ -504137,7 +503637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 15967504, "featuredRunMedia": null, "reactionVideos": [], @@ -504161,7 +503661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "144076", "time": 15968763, "featuredRunMedia": null, "reactionVideos": [], @@ -504181,7 +503681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 15970086, "featuredRunMedia": null, "reactionVideos": [], @@ -504201,7 +503701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "144083", "time": 15972808, "featuredRunMedia": null, "reactionVideos": [], @@ -504221,7 +503721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 15973060, "featuredRunMedia": null, "reactionVideos": [], @@ -504241,7 +503741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 15974022, "featuredRunMedia": null, "reactionVideos": [], @@ -504261,7 +503761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 15974241, "featuredRunMedia": null, "reactionVideos": [], @@ -504281,7 +503781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 15975041, "featuredRunMedia": null, "reactionVideos": [], @@ -504301,7 +503801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 15976160, "featuredRunMedia": null, "reactionVideos": [], @@ -504321,7 +503821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 15976779, "featuredRunMedia": null, "reactionVideos": [], @@ -504341,7 +503841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 15977674, "featuredRunMedia": null, "reactionVideos": [], @@ -504361,7 +503861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 15980060, "featuredRunMedia": null, "reactionVideos": [], @@ -504381,7 +503881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "144332", "time": 15983836, "featuredRunMedia": null, "reactionVideos": [], @@ -504401,7 +503901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "144358", "time": 15984967, "featuredRunMedia": null, "reactionVideos": [], @@ -504421,7 +503921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 15985278, "featuredRunMedia": null, "reactionVideos": [], @@ -504441,7 +503941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 15985750, "featuredRunMedia": null, "reactionVideos": [], @@ -504461,7 +503961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 15986062, "featuredRunMedia": null, "reactionVideos": [], @@ -504481,7 +503981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 449, + "teamId": "144519", "time": 15986264, "featuredRunMedia": null, "reactionVideos": [], @@ -504501,7 +504001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 15991950, "featuredRunMedia": null, "reactionVideos": [], @@ -504521,7 +504021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 15992376, "featuredRunMedia": null, "reactionVideos": [], @@ -504541,7 +504041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 15992891, "featuredRunMedia": null, "reactionVideos": [], @@ -504561,7 +504061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 15995028, "featuredRunMedia": null, "reactionVideos": [], @@ -504581,7 +504081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 270, + "teamId": "144340", "time": 15995546, "featuredRunMedia": null, "reactionVideos": [], @@ -504601,7 +504101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 363, + "teamId": "144433", "time": 15996588, "featuredRunMedia": null, "reactionVideos": [], @@ -504621,7 +504121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 211, + "teamId": "144281", "time": 15996803, "featuredRunMedia": null, "reactionVideos": [], @@ -504641,7 +504141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 282, + "teamId": "144352", "time": 15997271, "featuredRunMedia": null, "reactionVideos": [], @@ -504661,7 +504161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 444, + "teamId": "144514", "time": 15997804, "featuredRunMedia": null, "reactionVideos": [], @@ -504681,7 +504181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 15999145, "featuredRunMedia": null, "reactionVideos": [], @@ -504701,7 +504201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "144078", "time": 15999579, "featuredRunMedia": null, "reactionVideos": [], @@ -504721,7 +504221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 16000110, "featuredRunMedia": null, "reactionVideos": [], @@ -504741,7 +504241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16000294, "featuredRunMedia": null, "reactionVideos": [], @@ -504761,7 +504261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16001366, "featuredRunMedia": null, "reactionVideos": [], @@ -504781,7 +504281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 16002179, "featuredRunMedia": null, "reactionVideos": [], @@ -504801,7 +504301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 16002243, "featuredRunMedia": null, "reactionVideos": [], @@ -504821,7 +504321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 16003805, "featuredRunMedia": null, "reactionVideos": [], @@ -504841,7 +504341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 16005653, "featuredRunMedia": null, "reactionVideos": [], @@ -504861,7 +504361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16007224, "featuredRunMedia": null, "reactionVideos": [], @@ -504885,7 +504385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16007856, "featuredRunMedia": null, "reactionVideos": [], @@ -504905,7 +504405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16008209, "featuredRunMedia": null, "reactionVideos": [], @@ -504925,7 +504425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 16009372, "featuredRunMedia": null, "reactionVideos": [], @@ -504945,7 +504445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16010575, "featuredRunMedia": null, "reactionVideos": [], @@ -504965,7 +504465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16012395, "featuredRunMedia": null, "reactionVideos": [], @@ -504985,7 +504485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16012443, "featuredRunMedia": null, "reactionVideos": [], @@ -505005,7 +504505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 16013318, "featuredRunMedia": null, "reactionVideos": [], @@ -505025,7 +504525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 247, + "teamId": "144317", "time": 16013382, "featuredRunMedia": null, "reactionVideos": [], @@ -505045,7 +504545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16013433, "featuredRunMedia": null, "reactionVideos": [], @@ -505065,7 +504565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 16018525, "featuredRunMedia": null, "reactionVideos": [], @@ -505085,7 +504585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 373, + "teamId": "144443", "time": 16018656, "featuredRunMedia": null, "reactionVideos": [], @@ -505105,7 +504605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16018825, "featuredRunMedia": null, "reactionVideos": [], @@ -505125,7 +504625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 16019122, "featuredRunMedia": null, "reactionVideos": [], @@ -505145,7 +504645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16020051, "featuredRunMedia": null, "reactionVideos": [], @@ -505165,7 +504665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16020593, "featuredRunMedia": null, "reactionVideos": [], @@ -505185,7 +504685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16021136, "featuredRunMedia": null, "reactionVideos": [], @@ -505205,7 +504705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 16022075, "featuredRunMedia": null, "reactionVideos": [], @@ -505225,7 +504725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 16022713, "featuredRunMedia": null, "reactionVideos": [], @@ -505245,7 +504745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16024258, "featuredRunMedia": null, "reactionVideos": [], @@ -505269,7 +504769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 16024323, "featuredRunMedia": null, "reactionVideos": [], @@ -505289,7 +504789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16025154, "featuredRunMedia": null, "reactionVideos": [], @@ -505309,7 +504809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 16025271, "featuredRunMedia": null, "reactionVideos": [], @@ -505329,7 +504829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 16026954, "featuredRunMedia": null, "reactionVideos": [], @@ -505349,7 +504849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16027306, "featuredRunMedia": null, "reactionVideos": [], @@ -505369,7 +504869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 16031365, "featuredRunMedia": null, "reactionVideos": [], @@ -505389,7 +504889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 323, + "teamId": "144393", "time": 16031581, "featuredRunMedia": null, "reactionVideos": [], @@ -505409,7 +504909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 16031681, "featuredRunMedia": null, "reactionVideos": [], @@ -505429,7 +504929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16032096, "featuredRunMedia": null, "reactionVideos": [], @@ -505449,7 +504949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16032709, "featuredRunMedia": null, "reactionVideos": [], @@ -505469,7 +504969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16032818, "featuredRunMedia": null, "reactionVideos": [], @@ -505489,7 +504989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 284, + "teamId": "144354", "time": 16032906, "featuredRunMedia": null, "reactionVideos": [], @@ -505509,7 +505009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 16033365, "featuredRunMedia": null, "reactionVideos": [], @@ -505533,7 +505033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 16034083, "featuredRunMedia": null, "reactionVideos": [], @@ -505553,7 +505053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16034541, "featuredRunMedia": null, "reactionVideos": [], @@ -505573,7 +505073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16035951, "featuredRunMedia": null, "reactionVideos": [], @@ -505593,7 +505093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 16036985, "featuredRunMedia": null, "reactionVideos": [], @@ -505613,7 +505113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "144416", "time": 16037383, "featuredRunMedia": null, "reactionVideos": [], @@ -505633,7 +505133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16037820, "featuredRunMedia": null, "reactionVideos": [], @@ -505653,7 +505153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 400, + "teamId": "144470", "time": 16038048, "featuredRunMedia": null, "reactionVideos": [], @@ -505673,7 +505173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "144356", "time": 16038285, "featuredRunMedia": null, "reactionVideos": [], @@ -505693,7 +505193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 16039198, "featuredRunMedia": null, "reactionVideos": [], @@ -505713,7 +505213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16039414, "featuredRunMedia": null, "reactionVideos": [], @@ -505733,7 +505233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 16040049, "featuredRunMedia": null, "reactionVideos": [], @@ -505753,7 +505253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 16044033, "featuredRunMedia": null, "reactionVideos": [], @@ -505773,7 +505273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "144194", "time": 16044909, "featuredRunMedia": null, "reactionVideos": [], @@ -505793,7 +505293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 16045235, "featuredRunMedia": null, "reactionVideos": [], @@ -505813,7 +505313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16046527, "featuredRunMedia": null, "reactionVideos": [], @@ -505833,7 +505333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16048335, "featuredRunMedia": null, "reactionVideos": [], @@ -505857,7 +505357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16048881, "featuredRunMedia": null, "reactionVideos": [], @@ -505877,7 +505377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 339, + "teamId": "144409", "time": 16049606, "featuredRunMedia": null, "reactionVideos": [], @@ -505897,7 +505397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16049974, "featuredRunMedia": null, "reactionVideos": [], @@ -505917,7 +505417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 16050288, "featuredRunMedia": null, "reactionVideos": [], @@ -505937,7 +505437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 16050478, "featuredRunMedia": null, "reactionVideos": [], @@ -505957,7 +505457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 16051117, "featuredRunMedia": null, "reactionVideos": [], @@ -505977,7 +505477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 16053470, "featuredRunMedia": null, "reactionVideos": [], @@ -505997,7 +505497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16055770, "featuredRunMedia": null, "reactionVideos": [], @@ -506017,7 +505517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16056112, "featuredRunMedia": null, "reactionVideos": [], @@ -506041,7 +505541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16056458, "featuredRunMedia": null, "reactionVideos": [], @@ -506061,7 +505561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 414, + "teamId": "144484", "time": 16056628, "featuredRunMedia": null, "reactionVideos": [], @@ -506081,7 +505581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 16059416, "featuredRunMedia": null, "reactionVideos": [], @@ -506101,7 +505601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16060287, "featuredRunMedia": null, "reactionVideos": [], @@ -506121,7 +505621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 16060388, "featuredRunMedia": null, "reactionVideos": [], @@ -506141,7 +505641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 16060513, "featuredRunMedia": null, "reactionVideos": [], @@ -506161,7 +505661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 199, + "teamId": "144269", "time": 16060632, "featuredRunMedia": null, "reactionVideos": [], @@ -506181,7 +505681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "144331", "time": 16060724, "featuredRunMedia": null, "reactionVideos": [], @@ -506201,7 +505701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "144225", "time": 16060891, "featuredRunMedia": null, "reactionVideos": [], @@ -506221,7 +505721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 16062437, "featuredRunMedia": null, "reactionVideos": [], @@ -506241,7 +505741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "144099", "time": 16062534, "featuredRunMedia": null, "reactionVideos": [], @@ -506261,7 +505761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16062646, "featuredRunMedia": null, "reactionVideos": [], @@ -506281,7 +505781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16062693, "featuredRunMedia": null, "reactionVideos": [], @@ -506301,7 +505801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 16062766, "featuredRunMedia": null, "reactionVideos": [], @@ -506321,7 +505821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16063943, "featuredRunMedia": null, "reactionVideos": [], @@ -506341,7 +505841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 16064045, "featuredRunMedia": null, "reactionVideos": [], @@ -506361,7 +505861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 16064157, "featuredRunMedia": null, "reactionVideos": [], @@ -506381,7 +505881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 16064837, "featuredRunMedia": null, "reactionVideos": [], @@ -506401,7 +505901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16065047, "featuredRunMedia": null, "reactionVideos": [], @@ -506421,7 +505921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16068135, "featuredRunMedia": null, "reactionVideos": [], @@ -506441,7 +505941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 16068866, "featuredRunMedia": null, "reactionVideos": [], @@ -506461,7 +505961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 16070260, "featuredRunMedia": null, "reactionVideos": [], @@ -506481,7 +505981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 16071271, "featuredRunMedia": null, "reactionVideos": [], @@ -506501,7 +506001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16071931, "featuredRunMedia": null, "reactionVideos": [], @@ -506521,7 +506021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 16072576, "featuredRunMedia": null, "reactionVideos": [], @@ -506541,7 +506041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 16072953, "featuredRunMedia": null, "reactionVideos": [], @@ -506561,7 +506061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 16073120, "featuredRunMedia": null, "reactionVideos": [], @@ -506581,7 +506081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "144245", "time": 16073831, "featuredRunMedia": null, "reactionVideos": [], @@ -506601,7 +506101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 16074776, "featuredRunMedia": null, "reactionVideos": [], @@ -506621,7 +506121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 16076475, "featuredRunMedia": null, "reactionVideos": [], @@ -506645,7 +506145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16076769, "featuredRunMedia": null, "reactionVideos": [], @@ -506669,7 +506169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 16080266, "featuredRunMedia": null, "reactionVideos": [], @@ -506689,7 +506189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16080812, "featuredRunMedia": null, "reactionVideos": [], @@ -506713,7 +506213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16081448, "featuredRunMedia": null, "reactionVideos": [], @@ -506733,7 +506233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 16082218, "featuredRunMedia": null, "reactionVideos": [], @@ -506753,7 +506253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 16082510, "featuredRunMedia": null, "reactionVideos": [], @@ -506773,7 +506273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 16084434, "featuredRunMedia": null, "reactionVideos": [], @@ -506793,7 +506293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 16085387, "featuredRunMedia": null, "reactionVideos": [], @@ -506813,7 +506313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "144297", "time": 16085673, "featuredRunMedia": null, "reactionVideos": [], @@ -506833,7 +506333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "144403", "time": 16086381, "featuredRunMedia": null, "reactionVideos": [], @@ -506853,7 +506353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 16087656, "featuredRunMedia": null, "reactionVideos": [], @@ -506873,7 +506373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16089666, "featuredRunMedia": null, "reactionVideos": [], @@ -506893,7 +506393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 16090149, "featuredRunMedia": null, "reactionVideos": [], @@ -506913,7 +506413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 379, + "teamId": "144449", "time": 16091039, "featuredRunMedia": null, "reactionVideos": [], @@ -506933,7 +506433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 16091498, "featuredRunMedia": null, "reactionVideos": [], @@ -506953,7 +506453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 16091802, "featuredRunMedia": null, "reactionVideos": [], @@ -506973,7 +506473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16091867, "featuredRunMedia": null, "reactionVideos": [], @@ -506993,7 +506493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16091908, "featuredRunMedia": null, "reactionVideos": [], @@ -507013,7 +506513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "144310", "time": 16092378, "featuredRunMedia": null, "reactionVideos": [], @@ -507033,7 +506533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "144099", "time": 16092524, "featuredRunMedia": null, "reactionVideos": [], @@ -507053,7 +506553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16094130, "featuredRunMedia": null, "reactionVideos": [], @@ -507073,7 +506573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 16094314, "featuredRunMedia": null, "reactionVideos": [], @@ -507093,7 +506593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16094935, "featuredRunMedia": null, "reactionVideos": [], @@ -507113,7 +506613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16095093, "featuredRunMedia": null, "reactionVideos": [], @@ -507133,7 +506633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "144183", "time": 16096012, "featuredRunMedia": null, "reactionVideos": [], @@ -507153,7 +506653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16097022, "featuredRunMedia": null, "reactionVideos": [], @@ -507173,7 +506673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 16097413, "featuredRunMedia": null, "reactionVideos": [], @@ -507193,7 +506693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 16098255, "featuredRunMedia": null, "reactionVideos": [], @@ -507213,7 +506713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 16098873, "featuredRunMedia": null, "reactionVideos": [], @@ -507233,7 +506733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 16099493, "featuredRunMedia": null, "reactionVideos": [], @@ -507253,7 +506753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 16100969, "featuredRunMedia": null, "reactionVideos": [], @@ -507273,7 +506773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16103604, "featuredRunMedia": null, "reactionVideos": [], @@ -507293,7 +506793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16104244, "featuredRunMedia": null, "reactionVideos": [], @@ -507313,7 +506813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 386, + "teamId": "144456", "time": 16105810, "featuredRunMedia": null, "reactionVideos": [], @@ -507333,7 +506833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "144099", "time": 16106204, "featuredRunMedia": null, "reactionVideos": [], @@ -507353,7 +506853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 294, + "teamId": "144364", "time": 16107025, "featuredRunMedia": null, "reactionVideos": [], @@ -507377,7 +506877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "144106", "time": 16107484, "featuredRunMedia": null, "reactionVideos": [], @@ -507397,7 +506897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 16107842, "featuredRunMedia": null, "reactionVideos": [], @@ -507417,7 +506917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 16108055, "featuredRunMedia": null, "reactionVideos": [], @@ -507437,7 +506937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16108337, "featuredRunMedia": null, "reactionVideos": [], @@ -507457,7 +506957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 16109027, "featuredRunMedia": null, "reactionVideos": [], @@ -507477,7 +506977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16109208, "featuredRunMedia": null, "reactionVideos": [], @@ -507497,7 +506997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 16109735, "featuredRunMedia": null, "reactionVideos": [], @@ -507517,7 +507017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16110827, "featuredRunMedia": null, "reactionVideos": [], @@ -507537,7 +507037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16110997, "featuredRunMedia": null, "reactionVideos": [], @@ -507557,7 +507057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16112657, "featuredRunMedia": null, "reactionVideos": [], @@ -507577,7 +507077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 16114129, "featuredRunMedia": null, "reactionVideos": [], @@ -507597,7 +507097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 16115128, "featuredRunMedia": null, "reactionVideos": [], @@ -507617,7 +507117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 16115920, "featuredRunMedia": null, "reactionVideos": [], @@ -507637,7 +507137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "144230", "time": 16116459, "featuredRunMedia": null, "reactionVideos": [], @@ -507657,7 +507157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "144176", "time": 16116898, "featuredRunMedia": null, "reactionVideos": [], @@ -507677,7 +507177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 16117398, "featuredRunMedia": null, "reactionVideos": [], @@ -507697,7 +507197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 16118285, "featuredRunMedia": null, "reactionVideos": [], @@ -507717,7 +507217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16118655, "featuredRunMedia": null, "reactionVideos": [], @@ -507737,7 +507237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 16118920, "featuredRunMedia": null, "reactionVideos": [], @@ -507757,7 +507257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 16119277, "featuredRunMedia": null, "reactionVideos": [], @@ -507777,7 +507277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 16120110, "featuredRunMedia": null, "reactionVideos": [], @@ -507797,7 +507297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 16121088, "featuredRunMedia": null, "reactionVideos": [], @@ -507817,7 +507317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16121756, "featuredRunMedia": null, "reactionVideos": [], @@ -507837,7 +507337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16121997, "featuredRunMedia": null, "reactionVideos": [], @@ -507857,7 +507357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "144099", "time": 16122364, "featuredRunMedia": null, "reactionVideos": [], @@ -507877,7 +507377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16125070, "featuredRunMedia": null, "reactionVideos": [], @@ -507897,7 +507397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 16125457, "featuredRunMedia": null, "reactionVideos": [], @@ -507917,7 +507417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16127448, "featuredRunMedia": null, "reactionVideos": [], @@ -507937,7 +507437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 16130078, "featuredRunMedia": null, "reactionVideos": [], @@ -507957,7 +507457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 16131877, "featuredRunMedia": null, "reactionVideos": [], @@ -507977,7 +507477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16132535, "featuredRunMedia": null, "reactionVideos": [], @@ -507997,7 +507497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16133224, "featuredRunMedia": null, "reactionVideos": [], @@ -508017,7 +507517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 16133903, "featuredRunMedia": null, "reactionVideos": [], @@ -508037,7 +507537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 16134381, "featuredRunMedia": null, "reactionVideos": [], @@ -508057,7 +507557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16134480, "featuredRunMedia": null, "reactionVideos": [], @@ -508077,7 +507577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16135330, "featuredRunMedia": null, "reactionVideos": [], @@ -508097,7 +507597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 16136733, "featuredRunMedia": null, "reactionVideos": [], @@ -508117,7 +507617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16137898, "featuredRunMedia": null, "reactionVideos": [], @@ -508141,7 +507641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 16139929, "featuredRunMedia": null, "reactionVideos": [], @@ -508161,7 +507661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "144078", "time": 16139979, "featuredRunMedia": null, "reactionVideos": [], @@ -508181,7 +507681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16140492, "featuredRunMedia": null, "reactionVideos": [], @@ -508201,7 +507701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16143655, "featuredRunMedia": null, "reactionVideos": [], @@ -508221,7 +507721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 16143728, "featuredRunMedia": null, "reactionVideos": [], @@ -508241,7 +507741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 16144128, "featuredRunMedia": null, "reactionVideos": [], @@ -508261,7 +507761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 16144909, "featuredRunMedia": null, "reactionVideos": [], @@ -508281,7 +507781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 16147065, "featuredRunMedia": null, "reactionVideos": [], @@ -508301,7 +507801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "144096", "time": 16147362, "featuredRunMedia": null, "reactionVideos": [], @@ -508321,7 +507821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 16147887, "featuredRunMedia": null, "reactionVideos": [], @@ -508341,7 +507841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16148017, "featuredRunMedia": null, "reactionVideos": [], @@ -508361,7 +507861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 16149037, "featuredRunMedia": null, "reactionVideos": [], @@ -508381,7 +507881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 16149169, "featuredRunMedia": null, "reactionVideos": [], @@ -508401,7 +507901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16151295, "featuredRunMedia": null, "reactionVideos": [], @@ -508421,7 +507921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "144407", "time": 16153256, "featuredRunMedia": null, "reactionVideos": [], @@ -508441,7 +507941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16154056, "featuredRunMedia": null, "reactionVideos": [], @@ -508461,7 +507961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16154542, "featuredRunMedia": null, "reactionVideos": [], @@ -508481,7 +507981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 16155607, "featuredRunMedia": null, "reactionVideos": [], @@ -508501,7 +508001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 16156478, "featuredRunMedia": null, "reactionVideos": [], @@ -508521,7 +508021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16157741, "featuredRunMedia": null, "reactionVideos": [], @@ -508541,7 +508041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16160220, "featuredRunMedia": null, "reactionVideos": [], @@ -508561,7 +508061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 16161212, "featuredRunMedia": null, "reactionVideos": [], @@ -508581,7 +508081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 16163305, "featuredRunMedia": null, "reactionVideos": [], @@ -508601,7 +508101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 86, + "teamId": "144156", "time": 16163709, "featuredRunMedia": null, "reactionVideos": [], @@ -508621,7 +508121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16163979, "featuredRunMedia": null, "reactionVideos": [], @@ -508641,7 +508141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 16164681, "featuredRunMedia": null, "reactionVideos": [], @@ -508661,7 +508161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16165560, "featuredRunMedia": null, "reactionVideos": [], @@ -508681,7 +508181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 16166234, "featuredRunMedia": null, "reactionVideos": [], @@ -508705,7 +508205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 16167669, "featuredRunMedia": null, "reactionVideos": [], @@ -508729,7 +508229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 16171480, "featuredRunMedia": null, "reactionVideos": [], @@ -508749,7 +508249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16173209, "featuredRunMedia": null, "reactionVideos": [], @@ -508769,7 +508269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16173426, "featuredRunMedia": null, "reactionVideos": [], @@ -508789,7 +508289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 16174819, "featuredRunMedia": null, "reactionVideos": [], @@ -508809,7 +508309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 16174863, "featuredRunMedia": null, "reactionVideos": [], @@ -508829,7 +508329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 148, + "teamId": "144218", "time": 16176616, "featuredRunMedia": null, "reactionVideos": [], @@ -508849,7 +508349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16178607, "featuredRunMedia": null, "reactionVideos": [], @@ -508869,7 +508369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16178952, "featuredRunMedia": null, "reactionVideos": [], @@ -508889,7 +508389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16179349, "featuredRunMedia": null, "reactionVideos": [], @@ -508909,7 +508409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16181184, "featuredRunMedia": null, "reactionVideos": [], @@ -508929,7 +508429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 16181518, "featuredRunMedia": null, "reactionVideos": [], @@ -508949,7 +508449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 16181661, "featuredRunMedia": null, "reactionVideos": [], @@ -508969,7 +508469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16182255, "featuredRunMedia": null, "reactionVideos": [], @@ -508989,7 +508489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 16183618, "featuredRunMedia": null, "reactionVideos": [], @@ -509009,7 +508509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16186706, "featuredRunMedia": null, "reactionVideos": [], @@ -509029,7 +508529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16186896, "featuredRunMedia": null, "reactionVideos": [], @@ -509049,7 +508549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 324, + "teamId": "144394", "time": 16187132, "featuredRunMedia": null, "reactionVideos": [], @@ -509069,7 +508569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 16187323, "featuredRunMedia": null, "reactionVideos": [], @@ -509089,7 +508589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16187919, "featuredRunMedia": null, "reactionVideos": [], @@ -509109,7 +508609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 16188322, "featuredRunMedia": null, "reactionVideos": [], @@ -509129,7 +508629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16188354, "featuredRunMedia": null, "reactionVideos": [], @@ -509149,7 +508649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16189210, "featuredRunMedia": null, "reactionVideos": [], @@ -509169,7 +508669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 16189341, "featuredRunMedia": null, "reactionVideos": [], @@ -509189,7 +508689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 16189412, "featuredRunMedia": null, "reactionVideos": [], @@ -509209,7 +508709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "144307", "time": 16191101, "featuredRunMedia": null, "reactionVideos": [], @@ -509229,7 +508729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 16192364, "featuredRunMedia": null, "reactionVideos": [], @@ -509253,7 +508753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 16193239, "featuredRunMedia": null, "reactionVideos": [], @@ -509273,7 +508773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 16194151, "featuredRunMedia": null, "reactionVideos": [], @@ -509293,7 +508793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16194880, "featuredRunMedia": null, "reactionVideos": [], @@ -509313,7 +508813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16195402, "featuredRunMedia": null, "reactionVideos": [], @@ -509333,7 +508833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16196390, "featuredRunMedia": null, "reactionVideos": [], @@ -509353,7 +508853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16196784, "featuredRunMedia": null, "reactionVideos": [], @@ -509373,7 +508873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16197745, "featuredRunMedia": null, "reactionVideos": [], @@ -509393,7 +508893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16200042, "featuredRunMedia": null, "reactionVideos": [], @@ -509413,7 +508913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16200586, "featuredRunMedia": null, "reactionVideos": [], @@ -509433,7 +508933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16201106, "featuredRunMedia": null, "reactionVideos": [], @@ -509453,7 +508953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 16201872, "featuredRunMedia": null, "reactionVideos": [], @@ -509473,7 +508973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 16202307, "featuredRunMedia": null, "reactionVideos": [], @@ -509497,7 +508997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "144129", "time": 16202667, "featuredRunMedia": null, "reactionVideos": [], @@ -509517,7 +509017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "144130", "time": 16203010, "featuredRunMedia": null, "reactionVideos": [], @@ -509537,7 +509037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16203240, "featuredRunMedia": null, "reactionVideos": [], @@ -509557,7 +509057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 16203940, "featuredRunMedia": null, "reactionVideos": [], @@ -509577,7 +509077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 16204564, "featuredRunMedia": null, "reactionVideos": [], @@ -509597,7 +509097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 16205334, "featuredRunMedia": null, "reactionVideos": [], @@ -509617,7 +509117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 16205424, "featuredRunMedia": null, "reactionVideos": [], @@ -509637,7 +509137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16206445, "featuredRunMedia": null, "reactionVideos": [], @@ -509661,7 +509161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16206827, "featuredRunMedia": null, "reactionVideos": [], @@ -509681,7 +509181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 16206957, "featuredRunMedia": null, "reactionVideos": [], @@ -509701,7 +509201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 414, + "teamId": "144484", "time": 16207437, "featuredRunMedia": null, "reactionVideos": [], @@ -509721,7 +509221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16208016, "featuredRunMedia": null, "reactionVideos": [], @@ -509745,7 +509245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "144333", "time": 16208100, "featuredRunMedia": null, "reactionVideos": [], @@ -509765,7 +509265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "144151", "time": 16208391, "featuredRunMedia": null, "reactionVideos": [], @@ -509785,7 +509285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16209575, "featuredRunMedia": null, "reactionVideos": [], @@ -509805,7 +509305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "144138", "time": 16210524, "featuredRunMedia": null, "reactionVideos": [], @@ -509825,7 +509325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 16212294, "featuredRunMedia": null, "reactionVideos": [], @@ -509845,7 +509345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 16213156, "featuredRunMedia": null, "reactionVideos": [], @@ -509865,7 +509365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 16214230, "featuredRunMedia": null, "reactionVideos": [], @@ -509885,7 +509385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16214570, "featuredRunMedia": null, "reactionVideos": [], @@ -509905,7 +509405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "144403", "time": 16214775, "featuredRunMedia": null, "reactionVideos": [], @@ -509925,7 +509425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 16214964, "featuredRunMedia": null, "reactionVideos": [], @@ -509945,7 +509445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16215831, "featuredRunMedia": null, "reactionVideos": [], @@ -509965,7 +509465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16217095, "featuredRunMedia": null, "reactionVideos": [], @@ -509985,7 +509485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16217704, "featuredRunMedia": null, "reactionVideos": [], @@ -510005,7 +509505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "144151", "time": 16217936, "featuredRunMedia": null, "reactionVideos": [], @@ -510025,7 +509525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 16218643, "featuredRunMedia": null, "reactionVideos": [], @@ -510045,7 +509545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "144085", "time": 16219533, "featuredRunMedia": null, "reactionVideos": [], @@ -510065,7 +509565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16219701, "featuredRunMedia": null, "reactionVideos": [], @@ -510085,7 +509585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 350, + "teamId": "144420", "time": 16219794, "featuredRunMedia": null, "reactionVideos": [], @@ -510105,7 +509605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 16219974, "featuredRunMedia": null, "reactionVideos": [], @@ -510125,7 +509625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16220219, "featuredRunMedia": null, "reactionVideos": [], @@ -510145,7 +509645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "144169", "time": 16220298, "featuredRunMedia": null, "reactionVideos": [], @@ -510165,7 +509665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 16220385, "featuredRunMedia": null, "reactionVideos": [], @@ -510185,7 +509685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 16221401, "featuredRunMedia": null, "reactionVideos": [], @@ -510205,7 +509705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 16221775, "featuredRunMedia": null, "reactionVideos": [], @@ -510225,7 +509725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 16221821, "featuredRunMedia": null, "reactionVideos": [], @@ -510245,7 +509745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16224864, "featuredRunMedia": null, "reactionVideos": [], @@ -510265,7 +509765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 16225055, "featuredRunMedia": null, "reactionVideos": [], @@ -510289,7 +509789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 16225118, "featuredRunMedia": null, "reactionVideos": [], @@ -510313,7 +509813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16225698, "featuredRunMedia": null, "reactionVideos": [], @@ -510333,7 +509833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 16225840, "featuredRunMedia": null, "reactionVideos": [], @@ -510353,7 +509853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 357, + "teamId": "144427", "time": 16227666, "featuredRunMedia": null, "reactionVideos": [], @@ -510373,7 +509873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16228231, "featuredRunMedia": null, "reactionVideos": [], @@ -510393,7 +509893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16228316, "featuredRunMedia": null, "reactionVideos": [], @@ -510413,7 +509913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16228717, "featuredRunMedia": null, "reactionVideos": [], @@ -510433,7 +509933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "144305", "time": 16229022, "featuredRunMedia": null, "reactionVideos": [], @@ -510453,7 +509953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "144245", "time": 16229774, "featuredRunMedia": null, "reactionVideos": [], @@ -510473,7 +509973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 16230521, "featuredRunMedia": null, "reactionVideos": [], @@ -510493,7 +509993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "144117", "time": 16232442, "featuredRunMedia": null, "reactionVideos": [], @@ -510513,7 +510013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 314, + "teamId": "144384", "time": 16232730, "featuredRunMedia": null, "reactionVideos": [], @@ -510533,7 +510033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "144256", "time": 16234550, "featuredRunMedia": null, "reactionVideos": [], @@ -510553,7 +510053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 16235584, "featuredRunMedia": null, "reactionVideos": [], @@ -510573,7 +510073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 16236266, "featuredRunMedia": null, "reactionVideos": [], @@ -510593,7 +510093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16236366, "featuredRunMedia": null, "reactionVideos": [], @@ -510617,7 +510117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 16236527, "featuredRunMedia": null, "reactionVideos": [], @@ -510637,7 +510137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "144117", "time": 16236875, "featuredRunMedia": null, "reactionVideos": [], @@ -510657,7 +510157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 16237497, "featuredRunMedia": null, "reactionVideos": [], @@ -510677,7 +510177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 16237946, "featuredRunMedia": null, "reactionVideos": [], @@ -510697,7 +510197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 16237981, "featuredRunMedia": null, "reactionVideos": [], @@ -510717,7 +510217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 16238630, "featuredRunMedia": null, "reactionVideos": [], @@ -510737,7 +510237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 16238858, "featuredRunMedia": null, "reactionVideos": [], @@ -510757,7 +510257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 440, + "teamId": "144510", "time": 16239255, "featuredRunMedia": null, "reactionVideos": [], @@ -510777,7 +510277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 16240190, "featuredRunMedia": null, "reactionVideos": [], @@ -510797,7 +510297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 16240464, "featuredRunMedia": null, "reactionVideos": [], @@ -510817,7 +510317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "144392", "time": 16241774, "featuredRunMedia": null, "reactionVideos": [], @@ -510837,7 +510337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 16243636, "featuredRunMedia": null, "reactionVideos": [], @@ -510857,7 +510357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "144309", "time": 16245395, "featuredRunMedia": null, "reactionVideos": [], @@ -510877,7 +510377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 16245845, "featuredRunMedia": null, "reactionVideos": [], @@ -510897,7 +510397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16245888, "featuredRunMedia": null, "reactionVideos": [], @@ -510917,7 +510417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 16247038, "featuredRunMedia": null, "reactionVideos": [], @@ -510937,7 +510437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 16250859, "featuredRunMedia": null, "reactionVideos": [], @@ -510957,7 +510457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "144260", "time": 16251177, "featuredRunMedia": null, "reactionVideos": [], @@ -510977,7 +510477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 16251346, "featuredRunMedia": null, "reactionVideos": [], @@ -510997,7 +510497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 16251547, "featuredRunMedia": null, "reactionVideos": [], @@ -511017,7 +510517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 16252662, "featuredRunMedia": null, "reactionVideos": [], @@ -511037,7 +510537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 16253427, "featuredRunMedia": null, "reactionVideos": [], @@ -511057,7 +510557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "144286", "time": 16253897, "featuredRunMedia": null, "reactionVideos": [], @@ -511077,7 +510577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16254816, "featuredRunMedia": null, "reactionVideos": [], @@ -511097,7 +510597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 402, + "teamId": "144472", "time": 16254998, "featuredRunMedia": null, "reactionVideos": [], @@ -511117,7 +510617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16256166, "featuredRunMedia": null, "reactionVideos": [], @@ -511137,7 +510637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16256486, "featuredRunMedia": null, "reactionVideos": [], @@ -511157,7 +510657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 16256713, "featuredRunMedia": null, "reactionVideos": [], @@ -511177,7 +510677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "144319", "time": 16257906, "featuredRunMedia": null, "reactionVideos": [], @@ -511197,7 +510697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "144191", "time": 16258336, "featuredRunMedia": null, "reactionVideos": [], @@ -511217,7 +510717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16259628, "featuredRunMedia": null, "reactionVideos": [], @@ -511237,7 +510737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 16259685, "featuredRunMedia": null, "reactionVideos": [], @@ -511257,7 +510757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 16260213, "featuredRunMedia": null, "reactionVideos": [], @@ -511277,7 +510777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 16260475, "featuredRunMedia": null, "reactionVideos": [], @@ -511297,7 +510797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16260530, "featuredRunMedia": null, "reactionVideos": [], @@ -511317,7 +510817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "144288", "time": 16263465, "featuredRunMedia": null, "reactionVideos": [], @@ -511337,7 +510837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 425, + "teamId": "144495", "time": 16263509, "featuredRunMedia": null, "reactionVideos": [], @@ -511357,7 +510857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 16265009, "featuredRunMedia": null, "reactionVideos": [], @@ -511377,7 +510877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 16265381, "featuredRunMedia": null, "reactionVideos": [], @@ -511397,7 +510897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 16268226, "featuredRunMedia": null, "reactionVideos": [], @@ -511417,7 +510917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16270633, "featuredRunMedia": null, "reactionVideos": [], @@ -511437,7 +510937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 16271355, "featuredRunMedia": null, "reactionVideos": [], @@ -511457,7 +510957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16272140, "featuredRunMedia": null, "reactionVideos": [], @@ -511477,7 +510977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 16272270, "featuredRunMedia": null, "reactionVideos": [], @@ -511497,7 +510997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16272478, "featuredRunMedia": null, "reactionVideos": [], @@ -511517,7 +511017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 273, + "teamId": "144343", "time": 16273165, "featuredRunMedia": null, "reactionVideos": [], @@ -511537,7 +511037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 16274640, "featuredRunMedia": null, "reactionVideos": [], @@ -511557,7 +511057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 16275199, "featuredRunMedia": null, "reactionVideos": [], @@ -511577,7 +511077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16275944, "featuredRunMedia": null, "reactionVideos": [], @@ -511597,7 +511097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 16276751, "featuredRunMedia": null, "reactionVideos": [], @@ -511617,7 +511117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "144200", "time": 16277620, "featuredRunMedia": null, "reactionVideos": [], @@ -511637,7 +511137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16277694, "featuredRunMedia": null, "reactionVideos": [], @@ -511657,7 +511157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 16278193, "featuredRunMedia": null, "reactionVideos": [], @@ -511677,7 +511177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 16278299, "featuredRunMedia": null, "reactionVideos": [], @@ -511697,7 +511197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 16280513, "featuredRunMedia": null, "reactionVideos": [], @@ -511721,7 +511221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16280684, "featuredRunMedia": null, "reactionVideos": [], @@ -511741,7 +511241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 16281001, "featuredRunMedia": null, "reactionVideos": [], @@ -511761,7 +511261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "144199", "time": 16281317, "featuredRunMedia": null, "reactionVideos": [], @@ -511781,7 +511281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 16281774, "featuredRunMedia": null, "reactionVideos": [], @@ -511801,7 +511301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 16284472, "featuredRunMedia": null, "reactionVideos": [], @@ -511821,7 +511321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 16284785, "featuredRunMedia": null, "reactionVideos": [], @@ -511841,7 +511341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16284821, "featuredRunMedia": null, "reactionVideos": [], @@ -511861,7 +511361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 16285397, "featuredRunMedia": null, "reactionVideos": [], @@ -511881,7 +511381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 16286135, "featuredRunMedia": null, "reactionVideos": [], @@ -511901,7 +511401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16288051, "featuredRunMedia": null, "reactionVideos": [], @@ -511921,7 +511421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 16289395, "featuredRunMedia": null, "reactionVideos": [], @@ -511941,7 +511441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "144129", "time": 16289445, "featuredRunMedia": null, "reactionVideos": [], @@ -511961,7 +511461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 16289481, "featuredRunMedia": null, "reactionVideos": [], @@ -511981,7 +511481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 16289535, "featuredRunMedia": null, "reactionVideos": [], @@ -512001,7 +511501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 16289568, "featuredRunMedia": null, "reactionVideos": [], @@ -512021,7 +511521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 16290277, "featuredRunMedia": null, "reactionVideos": [], @@ -512041,7 +511541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16291015, "featuredRunMedia": null, "reactionVideos": [], @@ -512061,7 +511561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16291391, "featuredRunMedia": null, "reactionVideos": [], @@ -512081,7 +511581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 16292921, "featuredRunMedia": null, "reactionVideos": [], @@ -512101,7 +511601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 16293222, "featuredRunMedia": null, "reactionVideos": [], @@ -512121,7 +511621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 16293547, "featuredRunMedia": null, "reactionVideos": [], @@ -512141,7 +511641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16293922, "featuredRunMedia": null, "reactionVideos": [], @@ -512161,7 +511661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 16295861, "featuredRunMedia": null, "reactionVideos": [], @@ -512181,7 +511681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "144093", "time": 16296299, "featuredRunMedia": null, "reactionVideos": [], @@ -512201,7 +511701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16298362, "featuredRunMedia": null, "reactionVideos": [], @@ -512225,7 +511725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16298733, "featuredRunMedia": null, "reactionVideos": [], @@ -512245,7 +511745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16298879, "featuredRunMedia": null, "reactionVideos": [], @@ -512265,7 +511765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 16300959, "featuredRunMedia": null, "reactionVideos": [], @@ -512285,7 +511785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 16301577, "featuredRunMedia": null, "reactionVideos": [], @@ -512305,7 +511805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 16304040, "featuredRunMedia": null, "reactionVideos": [], @@ -512325,7 +511825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 16304161, "featuredRunMedia": null, "reactionVideos": [], @@ -512345,7 +511845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 16305420, "featuredRunMedia": null, "reactionVideos": [], @@ -512365,7 +511865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 16307447, "featuredRunMedia": null, "reactionVideos": [], @@ -512385,7 +511885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 16308529, "featuredRunMedia": null, "reactionVideos": [], @@ -512405,7 +511905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16311569, "featuredRunMedia": null, "reactionVideos": [], @@ -512425,7 +511925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 16312770, "featuredRunMedia": null, "reactionVideos": [], @@ -512445,7 +511945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16314648, "featuredRunMedia": null, "reactionVideos": [], @@ -512465,7 +511965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 16320256, "featuredRunMedia": null, "reactionVideos": [], @@ -512485,7 +511985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16321076, "featuredRunMedia": null, "reactionVideos": [], @@ -512505,7 +512005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "144232", "time": 16321884, "featuredRunMedia": null, "reactionVideos": [], @@ -512525,7 +512025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 16322827, "featuredRunMedia": null, "reactionVideos": [], @@ -512545,7 +512045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "144183", "time": 16323495, "featuredRunMedia": null, "reactionVideos": [], @@ -512565,7 +512065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 16323556, "featuredRunMedia": null, "reactionVideos": [], @@ -512585,7 +512085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "144267", "time": 16330366, "featuredRunMedia": null, "reactionVideos": [], @@ -512605,7 +512105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16330965, "featuredRunMedia": null, "reactionVideos": [], @@ -512625,7 +512125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16331887, "featuredRunMedia": null, "reactionVideos": [], @@ -512649,7 +512149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16332053, "featuredRunMedia": null, "reactionVideos": [], @@ -512669,7 +512169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16332623, "featuredRunMedia": null, "reactionVideos": [], @@ -512689,7 +512189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 16334050, "featuredRunMedia": null, "reactionVideos": [], @@ -512709,7 +512209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16334350, "featuredRunMedia": null, "reactionVideos": [], @@ -512729,7 +512229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16335301, "featuredRunMedia": null, "reactionVideos": [], @@ -512749,7 +512249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16335977, "featuredRunMedia": null, "reactionVideos": [], @@ -512769,7 +512269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 16336394, "featuredRunMedia": null, "reactionVideos": [], @@ -512789,7 +512289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 340, + "teamId": "144410", "time": 16336981, "featuredRunMedia": null, "reactionVideos": [], @@ -512809,7 +512309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16337750, "featuredRunMedia": null, "reactionVideos": [], @@ -512829,7 +512329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16337897, "featuredRunMedia": null, "reactionVideos": [], @@ -512853,7 +512353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16337960, "featuredRunMedia": null, "reactionVideos": [], @@ -512873,7 +512373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16339214, "featuredRunMedia": null, "reactionVideos": [], @@ -512893,7 +512393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16339619, "featuredRunMedia": null, "reactionVideos": [], @@ -512913,7 +512413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16339918, "featuredRunMedia": null, "reactionVideos": [], @@ -512933,7 +512433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 16344920, "featuredRunMedia": null, "reactionVideos": [], @@ -512953,7 +512453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 16345887, "featuredRunMedia": null, "reactionVideos": [], @@ -512973,7 +512473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 270, + "teamId": "144340", "time": 16346206, "featuredRunMedia": null, "reactionVideos": [], @@ -512993,7 +512493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 16347333, "featuredRunMedia": null, "reactionVideos": [], @@ -513013,7 +512513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 16348514, "featuredRunMedia": null, "reactionVideos": [], @@ -513033,7 +512533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 16349150, "featuredRunMedia": null, "reactionVideos": [], @@ -513053,7 +512553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "144085", "time": 16350455, "featuredRunMedia": null, "reactionVideos": [], @@ -513073,7 +512573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16350535, "featuredRunMedia": null, "reactionVideos": [], @@ -513093,7 +512593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 16350594, "featuredRunMedia": null, "reactionVideos": [], @@ -513113,7 +512613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 16351095, "featuredRunMedia": null, "reactionVideos": [], @@ -513133,7 +512633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 16352181, "featuredRunMedia": null, "reactionVideos": [], @@ -513153,7 +512653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16352643, "featuredRunMedia": null, "reactionVideos": [], @@ -513177,7 +512677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16353719, "featuredRunMedia": null, "reactionVideos": [], @@ -513197,7 +512697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 16355271, "featuredRunMedia": null, "reactionVideos": [], @@ -513217,7 +512717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "144200", "time": 16357318, "featuredRunMedia": null, "reactionVideos": [], @@ -513237,7 +512737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 335, + "teamId": "144405", "time": 16358688, "featuredRunMedia": null, "reactionVideos": [], @@ -513257,7 +512757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16358984, "featuredRunMedia": null, "reactionVideos": [], @@ -513277,7 +512777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 16359888, "featuredRunMedia": null, "reactionVideos": [], @@ -513297,7 +512797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 16361348, "featuredRunMedia": null, "reactionVideos": [], @@ -513317,7 +512817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 16362683, "featuredRunMedia": null, "reactionVideos": [], @@ -513337,7 +512837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 16363174, "featuredRunMedia": null, "reactionVideos": [], @@ -513357,7 +512857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 16363584, "featuredRunMedia": null, "reactionVideos": [], @@ -513377,7 +512877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16363954, "featuredRunMedia": null, "reactionVideos": [], @@ -513397,7 +512897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 16364002, "featuredRunMedia": null, "reactionVideos": [], @@ -513417,7 +512917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 16364120, "featuredRunMedia": null, "reactionVideos": [], @@ -513437,7 +512937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16364342, "featuredRunMedia": null, "reactionVideos": [], @@ -513457,7 +512957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 16364929, "featuredRunMedia": null, "reactionVideos": [], @@ -513477,7 +512977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16366544, "featuredRunMedia": null, "reactionVideos": [], @@ -513497,7 +512997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16366752, "featuredRunMedia": null, "reactionVideos": [], @@ -513517,7 +513017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16367057, "featuredRunMedia": null, "reactionVideos": [], @@ -513537,7 +513037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 16369393, "featuredRunMedia": null, "reactionVideos": [], @@ -513557,7 +513057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 16369904, "featuredRunMedia": null, "reactionVideos": [], @@ -513577,7 +513077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 436, + "teamId": "144506", "time": 16370273, "featuredRunMedia": null, "reactionVideos": [], @@ -513597,7 +513097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 16371196, "featuredRunMedia": null, "reactionVideos": [], @@ -513617,7 +513117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 16372501, "featuredRunMedia": null, "reactionVideos": [], @@ -513637,7 +513137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 16372597, "featuredRunMedia": null, "reactionVideos": [], @@ -513657,7 +513157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 329, + "teamId": "144399", "time": 16373043, "featuredRunMedia": null, "reactionVideos": [], @@ -513677,7 +513177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 16373167, "featuredRunMedia": null, "reactionVideos": [], @@ -513697,7 +513197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 16373355, "featuredRunMedia": null, "reactionVideos": [], @@ -513717,7 +513217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "144181", "time": 16373608, "featuredRunMedia": null, "reactionVideos": [], @@ -513737,7 +513237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16373658, "featuredRunMedia": null, "reactionVideos": [], @@ -513757,7 +513257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16374292, "featuredRunMedia": null, "reactionVideos": [], @@ -513777,7 +513277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 16374716, "featuredRunMedia": null, "reactionVideos": [], @@ -513797,7 +513297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 16376685, "featuredRunMedia": null, "reactionVideos": [], @@ -513817,7 +513317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16376763, "featuredRunMedia": null, "reactionVideos": [], @@ -513837,7 +513337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16377644, "featuredRunMedia": null, "reactionVideos": [], @@ -513857,7 +513357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 16382427, "featuredRunMedia": null, "reactionVideos": [], @@ -513877,7 +513377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 298, + "teamId": "144368", "time": 16383412, "featuredRunMedia": null, "reactionVideos": [], @@ -513897,7 +513397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 16385145, "featuredRunMedia": null, "reactionVideos": [], @@ -513917,7 +513417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16385235, "featuredRunMedia": null, "reactionVideos": [], @@ -513937,7 +513437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16386257, "featuredRunMedia": null, "reactionVideos": [], @@ -513957,7 +513457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 16386916, "featuredRunMedia": null, "reactionVideos": [], @@ -513977,7 +513477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16387776, "featuredRunMedia": null, "reactionVideos": [], @@ -513997,7 +513497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16387891, "featuredRunMedia": null, "reactionVideos": [], @@ -514017,7 +513517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 16389622, "featuredRunMedia": null, "reactionVideos": [], @@ -514037,7 +513537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 16389748, "featuredRunMedia": null, "reactionVideos": [], @@ -514057,7 +513557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 16390277, "featuredRunMedia": null, "reactionVideos": [], @@ -514077,7 +513577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 16391000, "featuredRunMedia": null, "reactionVideos": [], @@ -514097,7 +513597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16391104, "featuredRunMedia": null, "reactionVideos": [], @@ -514117,7 +513617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "144267", "time": 16393562, "featuredRunMedia": null, "reactionVideos": [], @@ -514137,7 +513637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 16393984, "featuredRunMedia": null, "reactionVideos": [], @@ -514157,7 +513657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 16396347, "featuredRunMedia": null, "reactionVideos": [], @@ -514177,7 +513677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "144123", "time": 16397967, "featuredRunMedia": null, "reactionVideos": [], @@ -514197,7 +513697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 16398448, "featuredRunMedia": null, "reactionVideos": [], @@ -514217,7 +513717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16398726, "featuredRunMedia": null, "reactionVideos": [], @@ -514237,7 +513737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16400145, "featuredRunMedia": null, "reactionVideos": [], @@ -514257,7 +513757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 372, + "teamId": "144442", "time": 16400330, "featuredRunMedia": null, "reactionVideos": [], @@ -514277,7 +513777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16402718, "featuredRunMedia": null, "reactionVideos": [], @@ -514297,7 +513797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16403837, "featuredRunMedia": null, "reactionVideos": [], @@ -514317,7 +513817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16406276, "featuredRunMedia": null, "reactionVideos": [], @@ -514337,7 +513837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16406726, "featuredRunMedia": null, "reactionVideos": [], @@ -514357,7 +513857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16407412, "featuredRunMedia": null, "reactionVideos": [], @@ -514377,7 +513877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16409883, "featuredRunMedia": null, "reactionVideos": [], @@ -514397,7 +513897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 16409943, "featuredRunMedia": null, "reactionVideos": [], @@ -514417,7 +513917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 16411911, "featuredRunMedia": null, "reactionVideos": [], @@ -514437,7 +513937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16412654, "featuredRunMedia": null, "reactionVideos": [], @@ -514457,7 +513957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 16412700, "featuredRunMedia": null, "reactionVideos": [], @@ -514477,7 +513977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 16413295, "featuredRunMedia": null, "reactionVideos": [], @@ -514497,7 +513997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16413494, "featuredRunMedia": null, "reactionVideos": [], @@ -514517,7 +514017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16415122, "featuredRunMedia": null, "reactionVideos": [], @@ -514537,7 +514037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 16415921, "featuredRunMedia": null, "reactionVideos": [], @@ -514557,7 +514057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "144183", "time": 16416706, "featuredRunMedia": null, "reactionVideos": [], @@ -514577,7 +514077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16418874, "featuredRunMedia": null, "reactionVideos": [], @@ -514597,7 +514097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 16419264, "featuredRunMedia": null, "reactionVideos": [], @@ -514617,7 +514117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 16419350, "featuredRunMedia": null, "reactionVideos": [], @@ -514637,7 +514137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16420911, "featuredRunMedia": null, "reactionVideos": [], @@ -514657,7 +514157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 16421268, "featuredRunMedia": null, "reactionVideos": [], @@ -514677,7 +514177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16422236, "featuredRunMedia": null, "reactionVideos": [], @@ -514697,7 +514197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "144337", "time": 16422434, "featuredRunMedia": null, "reactionVideos": [], @@ -514717,7 +514217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 16422719, "featuredRunMedia": null, "reactionVideos": [], @@ -514737,7 +514237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "144417", "time": 16422769, "featuredRunMedia": null, "reactionVideos": [], @@ -514757,7 +514257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16423125, "featuredRunMedia": null, "reactionVideos": [], @@ -514777,7 +514277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "144310", "time": 16423481, "featuredRunMedia": null, "reactionVideos": [], @@ -514797,7 +514297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 16423854, "featuredRunMedia": null, "reactionVideos": [], @@ -514817,7 +514317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 16423895, "featuredRunMedia": null, "reactionVideos": [], @@ -514837,7 +514337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 16424253, "featuredRunMedia": null, "reactionVideos": [], @@ -514857,7 +514357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 16424510, "featuredRunMedia": null, "reactionVideos": [], @@ -514877,7 +514377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 16425514, "featuredRunMedia": null, "reactionVideos": [], @@ -514897,7 +514397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16425594, "featuredRunMedia": null, "reactionVideos": [], @@ -514917,7 +514417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 16425977, "featuredRunMedia": null, "reactionVideos": [], @@ -514937,7 +514437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "144096", "time": 16426148, "featuredRunMedia": null, "reactionVideos": [], @@ -514957,7 +514457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 16427553, "featuredRunMedia": null, "reactionVideos": [], @@ -514977,7 +514477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 16431083, "featuredRunMedia": null, "reactionVideos": [], @@ -514997,7 +514497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16431142, "featuredRunMedia": null, "reactionVideos": [], @@ -515017,7 +514517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16433459, "featuredRunMedia": null, "reactionVideos": [], @@ -515037,7 +514537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16434275, "featuredRunMedia": null, "reactionVideos": [], @@ -515057,7 +514557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "144248", "time": 16436039, "featuredRunMedia": null, "reactionVideos": [], @@ -515077,7 +514577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 16436085, "featuredRunMedia": null, "reactionVideos": [], @@ -515097,7 +514597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16437733, "featuredRunMedia": null, "reactionVideos": [], @@ -515117,7 +514617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16437777, "featuredRunMedia": null, "reactionVideos": [], @@ -515137,7 +514637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 16437896, "featuredRunMedia": null, "reactionVideos": [], @@ -515157,7 +514657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 16438832, "featuredRunMedia": null, "reactionVideos": [], @@ -515177,7 +514677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 16441867, "featuredRunMedia": null, "reactionVideos": [], @@ -515197,7 +514697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 16442484, "featuredRunMedia": null, "reactionVideos": [], @@ -515217,7 +514717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16442570, "featuredRunMedia": null, "reactionVideos": [], @@ -515237,7 +514737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16442895, "featuredRunMedia": null, "reactionVideos": [], @@ -515257,7 +514757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 16444582, "featuredRunMedia": null, "reactionVideos": [], @@ -515277,7 +514777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 16445354, "featuredRunMedia": null, "reactionVideos": [], @@ -515297,7 +514797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16445749, "featuredRunMedia": null, "reactionVideos": [], @@ -515317,7 +514817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 16445885, "featuredRunMedia": null, "reactionVideos": [], @@ -515337,7 +514837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16446666, "featuredRunMedia": null, "reactionVideos": [], @@ -515357,7 +514857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16448483, "featuredRunMedia": null, "reactionVideos": [], @@ -515377,7 +514877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 16448693, "featuredRunMedia": null, "reactionVideos": [], @@ -515397,7 +514897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16450978, "featuredRunMedia": null, "reactionVideos": [], @@ -515417,7 +514917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 16451681, "featuredRunMedia": null, "reactionVideos": [], @@ -515437,7 +514937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16452635, "featuredRunMedia": null, "reactionVideos": [], @@ -515457,7 +514957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "144128", "time": 16452685, "featuredRunMedia": null, "reactionVideos": [], @@ -515477,7 +514977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 16454530, "featuredRunMedia": null, "reactionVideos": [], @@ -515497,7 +514997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16456625, "featuredRunMedia": null, "reactionVideos": [], @@ -515517,7 +515017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "144080", "time": 16458345, "featuredRunMedia": null, "reactionVideos": [], @@ -515537,7 +515037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16458517, "featuredRunMedia": null, "reactionVideos": [], @@ -515557,7 +515057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 16458957, "featuredRunMedia": null, "reactionVideos": [], @@ -515577,7 +515077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "144078", "time": 16459025, "featuredRunMedia": null, "reactionVideos": [], @@ -515597,7 +515097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 16459358, "featuredRunMedia": null, "reactionVideos": [], @@ -515617,7 +515117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16459407, "featuredRunMedia": null, "reactionVideos": [], @@ -515637,7 +515137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16459731, "featuredRunMedia": null, "reactionVideos": [], @@ -515657,7 +515157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16461512, "featuredRunMedia": null, "reactionVideos": [], @@ -515677,7 +515177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 16464353, "featuredRunMedia": null, "reactionVideos": [], @@ -515697,7 +515197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 142, + "teamId": "144212", "time": 16464423, "featuredRunMedia": null, "reactionVideos": [], @@ -515717,7 +515217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 16465732, "featuredRunMedia": null, "reactionVideos": [], @@ -515737,7 +515237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 16466807, "featuredRunMedia": null, "reactionVideos": [], @@ -515757,7 +515257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 16469041, "featuredRunMedia": null, "reactionVideos": [], @@ -515777,7 +515277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16469238, "featuredRunMedia": null, "reactionVideos": [], @@ -515797,7 +515297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16469702, "featuredRunMedia": null, "reactionVideos": [], @@ -515817,7 +515317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 270, + "teamId": "144340", "time": 16471249, "featuredRunMedia": null, "reactionVideos": [], @@ -515837,7 +515337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 365, + "teamId": "144435", "time": 16472809, "featuredRunMedia": null, "reactionVideos": [], @@ -515857,7 +515357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 329, + "teamId": "144399", "time": 16474858, "featuredRunMedia": null, "reactionVideos": [], @@ -515877,7 +515377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16476802, "featuredRunMedia": null, "reactionVideos": [], @@ -515897,7 +515397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16477890, "featuredRunMedia": null, "reactionVideos": [], @@ -515917,7 +515417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 16480495, "featuredRunMedia": null, "reactionVideos": [], @@ -515937,7 +515437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 16480598, "featuredRunMedia": null, "reactionVideos": [], @@ -515957,7 +515457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16481495, "featuredRunMedia": null, "reactionVideos": [], @@ -515977,7 +515477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "144231", "time": 16481554, "featuredRunMedia": null, "reactionVideos": [], @@ -515997,7 +515497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 16482156, "featuredRunMedia": null, "reactionVideos": [], @@ -516017,7 +515517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16483518, "featuredRunMedia": null, "reactionVideos": [], @@ -516037,7 +515537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16484456, "featuredRunMedia": null, "reactionVideos": [], @@ -516057,7 +515557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "144413", "time": 16484671, "featuredRunMedia": null, "reactionVideos": [], @@ -516077,7 +515577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16485294, "featuredRunMedia": null, "reactionVideos": [], @@ -516097,7 +515597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "144074", "time": 16485514, "featuredRunMedia": null, "reactionVideos": [], @@ -516117,7 +515617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16485978, "featuredRunMedia": null, "reactionVideos": [], @@ -516137,7 +515637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 16486604, "featuredRunMedia": null, "reactionVideos": [], @@ -516157,7 +515657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 16487012, "featuredRunMedia": null, "reactionVideos": [], @@ -516177,7 +515677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 16487660, "featuredRunMedia": null, "reactionVideos": [], @@ -516197,7 +515697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 16488666, "featuredRunMedia": null, "reactionVideos": [], @@ -516217,7 +515717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "144075", "time": 16488728, "featuredRunMedia": null, "reactionVideos": [], @@ -516237,7 +515737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "144125", "time": 16488901, "featuredRunMedia": null, "reactionVideos": [], @@ -516257,7 +515757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 16490133, "featuredRunMedia": null, "reactionVideos": [], @@ -516277,7 +515777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16490182, "featuredRunMedia": null, "reactionVideos": [], @@ -516297,7 +515797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16490558, "featuredRunMedia": null, "reactionVideos": [], @@ -516317,7 +515817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 16490777, "featuredRunMedia": null, "reactionVideos": [], @@ -516337,7 +515837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16490850, "featuredRunMedia": null, "reactionVideos": [], @@ -516361,7 +515861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16493062, "featuredRunMedia": null, "reactionVideos": [], @@ -516381,7 +515881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 16493197, "featuredRunMedia": null, "reactionVideos": [], @@ -516401,7 +515901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 379, + "teamId": "144449", "time": 16493671, "featuredRunMedia": null, "reactionVideos": [], @@ -516421,7 +515921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 16494032, "featuredRunMedia": null, "reactionVideos": [], @@ -516441,7 +515941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 16494225, "featuredRunMedia": null, "reactionVideos": [], @@ -516461,7 +515961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16494960, "featuredRunMedia": null, "reactionVideos": [], @@ -516481,7 +515981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 16496986, "featuredRunMedia": null, "reactionVideos": [], @@ -516501,7 +516001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "144332", "time": 16498100, "featuredRunMedia": null, "reactionVideos": [], @@ -516521,7 +516021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 16499505, "featuredRunMedia": null, "reactionVideos": [], @@ -516541,7 +516041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 16500630, "featuredRunMedia": null, "reactionVideos": [], @@ -516561,7 +516061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16501231, "featuredRunMedia": null, "reactionVideos": [], @@ -516581,7 +516081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16503420, "featuredRunMedia": null, "reactionVideos": [], @@ -516601,7 +516101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 16504084, "featuredRunMedia": null, "reactionVideos": [], @@ -516621,7 +516121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16504692, "featuredRunMedia": null, "reactionVideos": [], @@ -516641,7 +516141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 16506322, "featuredRunMedia": null, "reactionVideos": [], @@ -516661,7 +516161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 16507387, "featuredRunMedia": null, "reactionVideos": [], @@ -516681,7 +516181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16507776, "featuredRunMedia": null, "reactionVideos": [], @@ -516701,7 +516201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16507930, "featuredRunMedia": null, "reactionVideos": [], @@ -516721,7 +516221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16508248, "featuredRunMedia": null, "reactionVideos": [], @@ -516741,7 +516241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16509037, "featuredRunMedia": null, "reactionVideos": [], @@ -516761,7 +516261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 16509311, "featuredRunMedia": null, "reactionVideos": [], @@ -516781,7 +516281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 16509710, "featuredRunMedia": null, "reactionVideos": [], @@ -516801,7 +516301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 16512181, "featuredRunMedia": null, "reactionVideos": [], @@ -516821,7 +516321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 411, + "teamId": "144481", "time": 16512774, "featuredRunMedia": null, "reactionVideos": [], @@ -516841,7 +516341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16514774, "featuredRunMedia": null, "reactionVideos": [], @@ -516861,7 +516361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16514870, "featuredRunMedia": null, "reactionVideos": [], @@ -516881,7 +516381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16515840, "featuredRunMedia": null, "reactionVideos": [], @@ -516901,7 +516401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 16519895, "featuredRunMedia": null, "reactionVideos": [], @@ -516921,7 +516421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 16519935, "featuredRunMedia": null, "reactionVideos": [], @@ -516941,7 +516441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "144281", "time": 16520067, "featuredRunMedia": null, "reactionVideos": [], @@ -516961,7 +516461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16520479, "featuredRunMedia": null, "reactionVideos": [], @@ -516981,7 +516481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16522218, "featuredRunMedia": null, "reactionVideos": [], @@ -517001,7 +516501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 16522995, "featuredRunMedia": null, "reactionVideos": [], @@ -517021,7 +516521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 225, + "teamId": "144295", "time": 16524256, "featuredRunMedia": null, "reactionVideos": [], @@ -517041,7 +516541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16526155, "featuredRunMedia": null, "reactionVideos": [], @@ -517061,7 +516561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 16526843, "featuredRunMedia": null, "reactionVideos": [], @@ -517081,7 +516581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16527647, "featuredRunMedia": null, "reactionVideos": [], @@ -517101,7 +516601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16528399, "featuredRunMedia": null, "reactionVideos": [], @@ -517121,7 +516621,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16531651, "featuredRunMedia": null, "reactionVideos": [], @@ -517141,7 +516641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 416, + "teamId": "144486", "time": 16533229, "featuredRunMedia": null, "reactionVideos": [], @@ -517161,7 +516661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "144096", "time": 16534325, "featuredRunMedia": null, "reactionVideos": [], @@ -517181,7 +516681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 16534383, "featuredRunMedia": null, "reactionVideos": [], @@ -517201,7 +516701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 16534424, "featuredRunMedia": null, "reactionVideos": [], @@ -517221,7 +516721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16535649, "featuredRunMedia": null, "reactionVideos": [], @@ -517241,7 +516741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16536070, "featuredRunMedia": null, "reactionVideos": [], @@ -517261,7 +516761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16536366, "featuredRunMedia": null, "reactionVideos": [], @@ -517281,7 +516781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 16537062, "featuredRunMedia": null, "reactionVideos": [], @@ -517301,7 +516801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "144129", "time": 16538063, "featuredRunMedia": null, "reactionVideos": [], @@ -517321,7 +516821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 16538330, "featuredRunMedia": null, "reactionVideos": [], @@ -517341,7 +516841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 16538991, "featuredRunMedia": null, "reactionVideos": [], @@ -517361,7 +516861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16539931, "featuredRunMedia": null, "reactionVideos": [], @@ -517381,7 +516881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 16541091, "featuredRunMedia": null, "reactionVideos": [], @@ -517401,7 +516901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16541585, "featuredRunMedia": null, "reactionVideos": [], @@ -517421,7 +516921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16543915, "featuredRunMedia": null, "reactionVideos": [], @@ -517441,7 +516941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16544099, "featuredRunMedia": null, "reactionVideos": [], @@ -517461,7 +516961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 16544598, "featuredRunMedia": null, "reactionVideos": [], @@ -517481,7 +516981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16545200, "featuredRunMedia": null, "reactionVideos": [], @@ -517501,7 +517001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 16545533, "featuredRunMedia": null, "reactionVideos": [], @@ -517521,7 +517021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 401, + "teamId": "144471", "time": 16545770, "featuredRunMedia": null, "reactionVideos": [], @@ -517541,7 +517041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16546241, "featuredRunMedia": null, "reactionVideos": [], @@ -517561,7 +517061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 399, + "teamId": "144469", "time": 16546866, "featuredRunMedia": null, "reactionVideos": [], @@ -517581,7 +517081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "144320", "time": 16548974, "featuredRunMedia": null, "reactionVideos": [], @@ -517601,7 +517101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 416, + "teamId": "144486", "time": 16549142, "featuredRunMedia": null, "reactionVideos": [], @@ -517621,7 +517121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "144348", "time": 16549566, "featuredRunMedia": null, "reactionVideos": [], @@ -517641,7 +517141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 438, + "teamId": "144508", "time": 16551386, "featuredRunMedia": null, "reactionVideos": [], @@ -517661,7 +517161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 16552306, "featuredRunMedia": null, "reactionVideos": [], @@ -517681,7 +517181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 16552395, "featuredRunMedia": null, "reactionVideos": [], @@ -517701,7 +517201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16553623, "featuredRunMedia": null, "reactionVideos": [], @@ -517721,7 +517221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 108, + "teamId": "144178", "time": 16554058, "featuredRunMedia": null, "reactionVideos": [], @@ -517741,7 +517241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16555287, "featuredRunMedia": null, "reactionVideos": [], @@ -517761,7 +517261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 16555529, "featuredRunMedia": null, "reactionVideos": [], @@ -517781,7 +517281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 16555581, "featuredRunMedia": null, "reactionVideos": [], @@ -517801,7 +517301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16556151, "featuredRunMedia": null, "reactionVideos": [], @@ -517821,7 +517321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16556904, "featuredRunMedia": null, "reactionVideos": [], @@ -517841,7 +517341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16557392, "featuredRunMedia": null, "reactionVideos": [], @@ -517861,7 +517361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 16557627, "featuredRunMedia": null, "reactionVideos": [], @@ -517881,7 +517381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 16557674, "featuredRunMedia": null, "reactionVideos": [], @@ -517901,7 +517401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16558663, "featuredRunMedia": null, "reactionVideos": [], @@ -517921,7 +517421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 16560094, "featuredRunMedia": null, "reactionVideos": [], @@ -517941,7 +517441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 16560604, "featuredRunMedia": null, "reactionVideos": [], @@ -517961,7 +517461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 374, + "teamId": "144444", "time": 16562074, "featuredRunMedia": null, "reactionVideos": [], @@ -517981,7 +517481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 398, + "teamId": "144468", "time": 16562172, "featuredRunMedia": null, "reactionVideos": [], @@ -518001,7 +517501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16563227, "featuredRunMedia": null, "reactionVideos": [], @@ -518021,7 +517521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16563947, "featuredRunMedia": null, "reactionVideos": [], @@ -518041,7 +517541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "144355", "time": 16564686, "featuredRunMedia": null, "reactionVideos": [], @@ -518061,7 +517561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16564729, "featuredRunMedia": null, "reactionVideos": [], @@ -518081,7 +517581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16565303, "featuredRunMedia": null, "reactionVideos": [], @@ -518101,7 +517601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 16566457, "featuredRunMedia": null, "reactionVideos": [], @@ -518121,7 +517621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 16566739, "featuredRunMedia": null, "reactionVideos": [], @@ -518141,7 +517641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16568120, "featuredRunMedia": null, "reactionVideos": [], @@ -518161,7 +517661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16568273, "featuredRunMedia": null, "reactionVideos": [], @@ -518181,7 +517681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 16569713, "featuredRunMedia": null, "reactionVideos": [], @@ -518201,7 +517701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16570536, "featuredRunMedia": null, "reactionVideos": [], @@ -518221,7 +517721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16570726, "featuredRunMedia": null, "reactionVideos": [], @@ -518241,7 +517741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 16571762, "featuredRunMedia": null, "reactionVideos": [], @@ -518261,7 +517761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 16574072, "featuredRunMedia": null, "reactionVideos": [], @@ -518281,7 +517781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16575028, "featuredRunMedia": null, "reactionVideos": [], @@ -518301,7 +517801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "144151", "time": 16575376, "featuredRunMedia": null, "reactionVideos": [], @@ -518321,7 +517821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16575429, "featuredRunMedia": null, "reactionVideos": [], @@ -518341,7 +517841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 16576052, "featuredRunMedia": null, "reactionVideos": [], @@ -518361,7 +517861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 270, + "teamId": "144340", "time": 16576168, "featuredRunMedia": null, "reactionVideos": [], @@ -518381,7 +517881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "144161", "time": 16576389, "featuredRunMedia": null, "reactionVideos": [], @@ -518401,7 +517901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 16576540, "featuredRunMedia": null, "reactionVideos": [], @@ -518421,7 +517921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 16576675, "featuredRunMedia": null, "reactionVideos": [], @@ -518441,7 +517941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 16576896, "featuredRunMedia": null, "reactionVideos": [], @@ -518461,7 +517961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 16577278, "featuredRunMedia": null, "reactionVideos": [], @@ -518481,7 +517981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16577792, "featuredRunMedia": null, "reactionVideos": [], @@ -518501,7 +518001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "144109", "time": 16577951, "featuredRunMedia": null, "reactionVideos": [], @@ -518521,7 +518021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16579391, "featuredRunMedia": null, "reactionVideos": [], @@ -518541,7 +518041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16580204, "featuredRunMedia": null, "reactionVideos": [], @@ -518561,7 +518061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 308, + "teamId": "144378", "time": 16580998, "featuredRunMedia": null, "reactionVideos": [], @@ -518581,7 +518081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16582143, "featuredRunMedia": null, "reactionVideos": [], @@ -518601,7 +518101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16583379, "featuredRunMedia": null, "reactionVideos": [], @@ -518621,7 +518121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 16583484, "featuredRunMedia": null, "reactionVideos": [], @@ -518641,7 +518141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 16584695, "featuredRunMedia": null, "reactionVideos": [], @@ -518661,7 +518161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "144232", "time": 16584788, "featuredRunMedia": null, "reactionVideos": [], @@ -518681,7 +518181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16585827, "featuredRunMedia": null, "reactionVideos": [], @@ -518701,7 +518201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 16586123, "featuredRunMedia": null, "reactionVideos": [], @@ -518721,7 +518221,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16588005, "featuredRunMedia": null, "reactionVideos": [], @@ -518741,7 +518241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16588774, "featuredRunMedia": null, "reactionVideos": [], @@ -518761,7 +518261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16590010, "featuredRunMedia": null, "reactionVideos": [], @@ -518781,7 +518281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 16590357, "featuredRunMedia": null, "reactionVideos": [], @@ -518801,7 +518301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16590655, "featuredRunMedia": null, "reactionVideos": [], @@ -518821,7 +518321,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 16592071, "featuredRunMedia": null, "reactionVideos": [], @@ -518841,7 +518341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16592832, "featuredRunMedia": null, "reactionVideos": [], @@ -518861,7 +518361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16593698, "featuredRunMedia": null, "reactionVideos": [], @@ -518881,7 +518381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16593921, "featuredRunMedia": null, "reactionVideos": [], @@ -518901,7 +518401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "144315", "time": 16595385, "featuredRunMedia": null, "reactionVideos": [], @@ -518921,7 +518421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16596049, "featuredRunMedia": null, "reactionVideos": [], @@ -518941,7 +518441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 16596308, "featuredRunMedia": null, "reactionVideos": [], @@ -518961,7 +518461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 16596439, "featuredRunMedia": null, "reactionVideos": [], @@ -518981,7 +518481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 16597035, "featuredRunMedia": null, "reactionVideos": [], @@ -519001,7 +518501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "144147", "time": 16598218, "featuredRunMedia": null, "reactionVideos": [], @@ -519021,7 +518521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 16598521, "featuredRunMedia": null, "reactionVideos": [], @@ -519041,7 +518541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 16599858, "featuredRunMedia": null, "reactionVideos": [], @@ -519061,7 +518561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16600030, "featuredRunMedia": null, "reactionVideos": [], @@ -519081,7 +518581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16600331, "featuredRunMedia": null, "reactionVideos": [], @@ -519101,7 +518601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 16600643, "featuredRunMedia": null, "reactionVideos": [], @@ -519121,7 +518621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 16602622, "featuredRunMedia": null, "reactionVideos": [], @@ -519141,7 +518641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16603467, "featuredRunMedia": null, "reactionVideos": [], @@ -519161,7 +518661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16603964, "featuredRunMedia": null, "reactionVideos": [], @@ -519181,7 +518681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "144370", "time": 16604098, "featuredRunMedia": null, "reactionVideos": [], @@ -519201,7 +518701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 16604773, "featuredRunMedia": null, "reactionVideos": [], @@ -519221,7 +518721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16604890, "featuredRunMedia": null, "reactionVideos": [], @@ -519241,7 +518741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 16605260, "featuredRunMedia": null, "reactionVideos": [], @@ -519261,7 +518761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16605768, "featuredRunMedia": null, "reactionVideos": [], @@ -519281,7 +518781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16607854, "featuredRunMedia": null, "reactionVideos": [], @@ -519301,7 +518801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16608953, "featuredRunMedia": null, "reactionVideos": [], @@ -519325,7 +518825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 16609369, "featuredRunMedia": null, "reactionVideos": [], @@ -519345,7 +518845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16609417, "featuredRunMedia": null, "reactionVideos": [], @@ -519365,7 +518865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 16610074, "featuredRunMedia": null, "reactionVideos": [], @@ -519385,7 +518885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 16611241, "featuredRunMedia": null, "reactionVideos": [], @@ -519405,7 +518905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "144075", "time": 16611620, "featuredRunMedia": null, "reactionVideos": [], @@ -519425,7 +518925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 16611694, "featuredRunMedia": null, "reactionVideos": [], @@ -519445,7 +518945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 323, + "teamId": "144393", "time": 16612295, "featuredRunMedia": null, "reactionVideos": [], @@ -519465,7 +518965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 16612462, "featuredRunMedia": null, "reactionVideos": [], @@ -519485,7 +518985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 16612877, "featuredRunMedia": null, "reactionVideos": [], @@ -519505,7 +519005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 159, + "teamId": "144229", "time": 16613495, "featuredRunMedia": null, "reactionVideos": [], @@ -519525,7 +519025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 16616232, "featuredRunMedia": null, "reactionVideos": [], @@ -519545,7 +519045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16616278, "featuredRunMedia": null, "reactionVideos": [], @@ -519565,7 +519065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 16617280, "featuredRunMedia": null, "reactionVideos": [], @@ -519585,7 +519085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 16618464, "featuredRunMedia": null, "reactionVideos": [], @@ -519605,7 +519105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "144123", "time": 16618538, "featuredRunMedia": null, "reactionVideos": [], @@ -519625,7 +519125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 373, + "teamId": "144443", "time": 16619266, "featuredRunMedia": null, "reactionVideos": [], @@ -519645,7 +519145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "144330", "time": 16620040, "featuredRunMedia": null, "reactionVideos": [], @@ -519665,7 +519165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 16620685, "featuredRunMedia": null, "reactionVideos": [], @@ -519685,7 +519185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 16622999, "featuredRunMedia": null, "reactionVideos": [], @@ -519705,7 +519205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16623226, "featuredRunMedia": null, "reactionVideos": [], @@ -519725,7 +519225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 16623681, "featuredRunMedia": null, "reactionVideos": [], @@ -519745,7 +519245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16623881, "featuredRunMedia": null, "reactionVideos": [], @@ -519765,7 +519265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16625828, "featuredRunMedia": null, "reactionVideos": [], @@ -519785,7 +519285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 16627324, "featuredRunMedia": null, "reactionVideos": [], @@ -519805,7 +519305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16630365, "featuredRunMedia": null, "reactionVideos": [], @@ -519825,7 +519325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "144148", "time": 16630532, "featuredRunMedia": null, "reactionVideos": [], @@ -519845,7 +519345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "144136", "time": 16631396, "featuredRunMedia": null, "reactionVideos": [], @@ -519865,7 +519365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 16634112, "featuredRunMedia": null, "reactionVideos": [], @@ -519885,7 +519385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 16634450, "featuredRunMedia": null, "reactionVideos": [], @@ -519905,7 +519405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16634611, "featuredRunMedia": null, "reactionVideos": [], @@ -519925,7 +519425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 16635159, "featuredRunMedia": null, "reactionVideos": [], @@ -519945,7 +519445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16635201, "featuredRunMedia": null, "reactionVideos": [], @@ -519965,7 +519465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16635241, "featuredRunMedia": null, "reactionVideos": [], @@ -519985,7 +519485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16635653, "featuredRunMedia": null, "reactionVideos": [], @@ -520005,7 +519505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16636134, "featuredRunMedia": null, "reactionVideos": [], @@ -520025,7 +519525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "144228", "time": 16637171, "featuredRunMedia": null, "reactionVideos": [], @@ -520045,7 +519545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 16637987, "featuredRunMedia": null, "reactionVideos": [], @@ -520065,7 +519565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16638365, "featuredRunMedia": null, "reactionVideos": [], @@ -520085,7 +519585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16639175, "featuredRunMedia": null, "reactionVideos": [], @@ -520105,7 +519605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16641360, "featuredRunMedia": null, "reactionVideos": [], @@ -520125,7 +519625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16642265, "featuredRunMedia": null, "reactionVideos": [], @@ -520145,7 +519645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16642360, "featuredRunMedia": null, "reactionVideos": [], @@ -520165,7 +519665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 16642442, "featuredRunMedia": null, "reactionVideos": [], @@ -520185,7 +519685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16643483, "featuredRunMedia": null, "reactionVideos": [], @@ -520205,7 +519705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 16644243, "featuredRunMedia": null, "reactionVideos": [], @@ -520225,7 +519725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16644329, "featuredRunMedia": null, "reactionVideos": [], @@ -520245,7 +519745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "144093", "time": 16644398, "featuredRunMedia": null, "reactionVideos": [], @@ -520265,7 +519765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 16646469, "featuredRunMedia": null, "reactionVideos": [], @@ -520285,7 +519785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 16646516, "featuredRunMedia": null, "reactionVideos": [], @@ -520309,7 +519809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 16646576, "featuredRunMedia": null, "reactionVideos": [], @@ -520329,7 +519829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16646759, "featuredRunMedia": null, "reactionVideos": [], @@ -520353,7 +519853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 16648727, "featuredRunMedia": null, "reactionVideos": [], @@ -520373,7 +519873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16648817, "featuredRunMedia": null, "reactionVideos": [], @@ -520393,7 +519893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 16649843, "featuredRunMedia": null, "reactionVideos": [], @@ -520413,7 +519913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16650092, "featuredRunMedia": null, "reactionVideos": [], @@ -520433,7 +519933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 194, + "teamId": "144264", "time": 16650633, "featuredRunMedia": null, "reactionVideos": [], @@ -520453,7 +519953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16650788, "featuredRunMedia": null, "reactionVideos": [], @@ -520473,7 +519973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 16651485, "featuredRunMedia": null, "reactionVideos": [], @@ -520493,7 +519993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 390, + "teamId": "144460", "time": 16651916, "featuredRunMedia": null, "reactionVideos": [], @@ -520513,7 +520013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 16652381, "featuredRunMedia": null, "reactionVideos": [], @@ -520533,7 +520033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 16652754, "featuredRunMedia": null, "reactionVideos": [], @@ -520553,7 +520053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 16653369, "featuredRunMedia": null, "reactionVideos": [], @@ -520573,7 +520073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 378, + "teamId": "144448", "time": 16655214, "featuredRunMedia": null, "reactionVideos": [], @@ -520593,7 +520093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 16655760, "featuredRunMedia": null, "reactionVideos": [], @@ -520617,7 +520117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16657063, "featuredRunMedia": null, "reactionVideos": [], @@ -520637,7 +520137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 16657352, "featuredRunMedia": null, "reactionVideos": [], @@ -520657,7 +520157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 16657630, "featuredRunMedia": null, "reactionVideos": [], @@ -520677,7 +520177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 16657778, "featuredRunMedia": null, "reactionVideos": [], @@ -520697,7 +520197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "144083", "time": 16659181, "featuredRunMedia": null, "reactionVideos": [], @@ -520717,7 +520217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 16660959, "featuredRunMedia": null, "reactionVideos": [], @@ -520737,7 +520237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 16662638, "featuredRunMedia": null, "reactionVideos": [], @@ -520757,7 +520257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 16663622, "featuredRunMedia": null, "reactionVideos": [], @@ -520777,7 +520277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 16663824, "featuredRunMedia": null, "reactionVideos": [], @@ -520797,7 +520297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 360, + "teamId": "144430", "time": 16664605, "featuredRunMedia": null, "reactionVideos": [], @@ -520817,7 +520317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 16664836, "featuredRunMedia": null, "reactionVideos": [], @@ -520837,7 +520337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 16666162, "featuredRunMedia": null, "reactionVideos": [], @@ -520857,7 +520357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 16668601, "featuredRunMedia": null, "reactionVideos": [], @@ -520877,7 +520377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 16669142, "featuredRunMedia": null, "reactionVideos": [], @@ -520897,7 +520397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 16669180, "featuredRunMedia": null, "reactionVideos": [], @@ -520917,7 +520417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16669642, "featuredRunMedia": null, "reactionVideos": [], @@ -520937,7 +520437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16669729, "featuredRunMedia": null, "reactionVideos": [], @@ -520957,7 +520457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 16671295, "featuredRunMedia": null, "reactionVideos": [], @@ -520977,7 +520477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16671874, "featuredRunMedia": null, "reactionVideos": [], @@ -520997,7 +520497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 16672954, "featuredRunMedia": null, "reactionVideos": [], @@ -521017,7 +520517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 16673017, "featuredRunMedia": null, "reactionVideos": [], @@ -521037,7 +520537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16673143, "featuredRunMedia": null, "reactionVideos": [], @@ -521057,7 +520557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 16674193, "featuredRunMedia": null, "reactionVideos": [], @@ -521077,7 +520577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16675592, "featuredRunMedia": null, "reactionVideos": [], @@ -521097,7 +520597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16675831, "featuredRunMedia": null, "reactionVideos": [], @@ -521117,7 +520617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16676701, "featuredRunMedia": null, "reactionVideos": [], @@ -521137,7 +520637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 16676810, "featuredRunMedia": null, "reactionVideos": [], @@ -521157,7 +520657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 16677067, "featuredRunMedia": null, "reactionVideos": [], @@ -521177,7 +520677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16678341, "featuredRunMedia": null, "reactionVideos": [], @@ -521201,7 +520701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16678459, "featuredRunMedia": null, "reactionVideos": [], @@ -521221,7 +520721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16678511, "featuredRunMedia": null, "reactionVideos": [], @@ -521241,7 +520741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16678545, "featuredRunMedia": null, "reactionVideos": [], @@ -521261,7 +520761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "144300", "time": 16680012, "featuredRunMedia": null, "reactionVideos": [], @@ -521281,7 +520781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 16680924, "featuredRunMedia": null, "reactionVideos": [], @@ -521301,7 +520801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "144259", "time": 16681733, "featuredRunMedia": null, "reactionVideos": [], @@ -521321,7 +520821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 16682651, "featuredRunMedia": null, "reactionVideos": [], @@ -521341,7 +520841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 16682693, "featuredRunMedia": null, "reactionVideos": [], @@ -521361,7 +520861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 16682868, "featuredRunMedia": null, "reactionVideos": [], @@ -521381,7 +520881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 16684972, "featuredRunMedia": null, "reactionVideos": [], @@ -521405,7 +520905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16687486, "featuredRunMedia": null, "reactionVideos": [], @@ -521425,7 +520925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16687589, "featuredRunMedia": null, "reactionVideos": [], @@ -521445,7 +520945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16687736, "featuredRunMedia": null, "reactionVideos": [], @@ -521465,7 +520965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 16687783, "featuredRunMedia": null, "reactionVideos": [], @@ -521485,7 +520985,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 16687830, "featuredRunMedia": null, "reactionVideos": [], @@ -521505,7 +521005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 169, + "teamId": "144239", "time": 16687870, "featuredRunMedia": null, "reactionVideos": [], @@ -521525,7 +521025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 16688211, "featuredRunMedia": null, "reactionVideos": [], @@ -521545,7 +521045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 16689742, "featuredRunMedia": null, "reactionVideos": [], @@ -521565,7 +521065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 16689803, "featuredRunMedia": null, "reactionVideos": [], @@ -521585,7 +521085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16690001, "featuredRunMedia": null, "reactionVideos": [], @@ -521605,7 +521105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 16690086, "featuredRunMedia": null, "reactionVideos": [], @@ -521625,7 +521125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16690294, "featuredRunMedia": null, "reactionVideos": [], @@ -521645,7 +521145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 16690807, "featuredRunMedia": null, "reactionVideos": [], @@ -521665,7 +521165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16691585, "featuredRunMedia": null, "reactionVideos": [], @@ -521685,7 +521185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "144291", "time": 16691708, "featuredRunMedia": null, "reactionVideos": [], @@ -521705,7 +521205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 16691766, "featuredRunMedia": null, "reactionVideos": [], @@ -521725,7 +521225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 16693235, "featuredRunMedia": null, "reactionVideos": [], @@ -521745,7 +521245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 16694386, "featuredRunMedia": null, "reactionVideos": [], @@ -521765,7 +521265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 16696181, "featuredRunMedia": null, "reactionVideos": [], @@ -521785,7 +521285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 16696627, "featuredRunMedia": null, "reactionVideos": [], @@ -521805,7 +521305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16700439, "featuredRunMedia": null, "reactionVideos": [], @@ -521825,7 +521325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16700526, "featuredRunMedia": null, "reactionVideos": [], @@ -521845,7 +521345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 16701252, "featuredRunMedia": null, "reactionVideos": [], @@ -521865,7 +521365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 16701311, "featuredRunMedia": null, "reactionVideos": [], @@ -521885,7 +521385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 16702970, "featuredRunMedia": null, "reactionVideos": [], @@ -521905,7 +521405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 16704058, "featuredRunMedia": null, "reactionVideos": [], @@ -521925,7 +521425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16704209, "featuredRunMedia": null, "reactionVideos": [], @@ -521945,7 +521445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16704261, "featuredRunMedia": null, "reactionVideos": [], @@ -521965,7 +521465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 16704446, "featuredRunMedia": null, "reactionVideos": [], @@ -521985,7 +521485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 16704631, "featuredRunMedia": null, "reactionVideos": [], @@ -522005,7 +521505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 16706215, "featuredRunMedia": null, "reactionVideos": [], @@ -522025,7 +521525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 16707221, "featuredRunMedia": null, "reactionVideos": [], @@ -522045,7 +521545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 16709984, "featuredRunMedia": null, "reactionVideos": [], @@ -522065,7 +521565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 16711539, "featuredRunMedia": null, "reactionVideos": [], @@ -522085,7 +521585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16712442, "featuredRunMedia": null, "reactionVideos": [], @@ -522109,7 +521609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16712595, "featuredRunMedia": null, "reactionVideos": [], @@ -522129,7 +521629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 16713789, "featuredRunMedia": null, "reactionVideos": [], @@ -522149,7 +521649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 16714785, "featuredRunMedia": null, "reactionVideos": [], @@ -522169,7 +521669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16715008, "featuredRunMedia": null, "reactionVideos": [], @@ -522189,7 +521689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16715144, "featuredRunMedia": null, "reactionVideos": [], @@ -522209,7 +521709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 354, + "teamId": "144424", "time": 16719513, "featuredRunMedia": null, "reactionVideos": [], @@ -522229,7 +521729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 16721641, "featuredRunMedia": null, "reactionVideos": [], @@ -522249,7 +521749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "144214", "time": 16722163, "featuredRunMedia": null, "reactionVideos": [], @@ -522269,7 +521769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16723753, "featuredRunMedia": null, "reactionVideos": [], @@ -522289,7 +521789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 16724024, "featuredRunMedia": null, "reactionVideos": [], @@ -522309,7 +521809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 16724423, "featuredRunMedia": null, "reactionVideos": [], @@ -522329,7 +521829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16724679, "featuredRunMedia": null, "reactionVideos": [], @@ -522349,7 +521849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "144077", "time": 16724767, "featuredRunMedia": null, "reactionVideos": [], @@ -522369,7 +521869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 16725146, "featuredRunMedia": null, "reactionVideos": [], @@ -522389,7 +521889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "144276", "time": 16726384, "featuredRunMedia": null, "reactionVideos": [], @@ -522409,7 +521909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "144080", "time": 16726540, "featuredRunMedia": null, "reactionVideos": [], @@ -522429,7 +521929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "144221", "time": 16726817, "featuredRunMedia": null, "reactionVideos": [], @@ -522449,7 +521949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16726866, "featuredRunMedia": null, "reactionVideos": [], @@ -522469,7 +521969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 16727229, "featuredRunMedia": null, "reactionVideos": [], @@ -522489,7 +521989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 16728494, "featuredRunMedia": null, "reactionVideos": [], @@ -522509,7 +522009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 16728650, "featuredRunMedia": null, "reactionVideos": [], @@ -522529,7 +522029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 16730701, "featuredRunMedia": null, "reactionVideos": [], @@ -522549,7 +522049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 16731710, "featuredRunMedia": null, "reactionVideos": [], @@ -522569,7 +522069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16733021, "featuredRunMedia": null, "reactionVideos": [], @@ -522589,7 +522089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16733917, "featuredRunMedia": null, "reactionVideos": [], @@ -522609,7 +522109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16735089, "featuredRunMedia": null, "reactionVideos": [], @@ -522633,7 +522133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 16735818, "featuredRunMedia": null, "reactionVideos": [], @@ -522653,7 +522153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 16736115, "featuredRunMedia": null, "reactionVideos": [], @@ -522673,7 +522173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 16736684, "featuredRunMedia": null, "reactionVideos": [], @@ -522693,7 +522193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "144129", "time": 16736797, "featuredRunMedia": null, "reactionVideos": [], @@ -522717,7 +522217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16737154, "featuredRunMedia": null, "reactionVideos": [], @@ -522737,7 +522237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 16737202, "featuredRunMedia": null, "reactionVideos": [], @@ -522757,7 +522257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16737661, "featuredRunMedia": null, "reactionVideos": [], @@ -522777,7 +522277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "144178", "time": 16738551, "featuredRunMedia": null, "reactionVideos": [], @@ -522797,7 +522297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 16738730, "featuredRunMedia": null, "reactionVideos": [], @@ -522817,7 +522317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 16739705, "featuredRunMedia": null, "reactionVideos": [], @@ -522837,7 +522337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 16740247, "featuredRunMedia": null, "reactionVideos": [], @@ -522857,7 +522357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16741480, "featuredRunMedia": null, "reactionVideos": [], @@ -522881,7 +522381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 16741521, "featuredRunMedia": null, "reactionVideos": [], @@ -522901,7 +522401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 389, + "teamId": "144459", "time": 16742175, "featuredRunMedia": null, "reactionVideos": [], @@ -522921,7 +522421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16743243, "featuredRunMedia": null, "reactionVideos": [], @@ -522941,7 +522441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 16745264, "featuredRunMedia": null, "reactionVideos": [], @@ -522961,7 +522461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16745843, "featuredRunMedia": null, "reactionVideos": [], @@ -522981,7 +522481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 16746894, "featuredRunMedia": null, "reactionVideos": [], @@ -523001,7 +522501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 16748171, "featuredRunMedia": null, "reactionVideos": [], @@ -523021,7 +522521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16749902, "featuredRunMedia": null, "reactionVideos": [], @@ -523041,7 +522541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 377, + "teamId": "144447", "time": 16752817, "featuredRunMedia": null, "reactionVideos": [], @@ -523061,7 +522561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 16753769, "featuredRunMedia": null, "reactionVideos": [], @@ -523081,7 +522581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16755455, "featuredRunMedia": null, "reactionVideos": [], @@ -523101,7 +522601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 16757573, "featuredRunMedia": null, "reactionVideos": [], @@ -523121,7 +522621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 16757760, "featuredRunMedia": null, "reactionVideos": [], @@ -523141,7 +522641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "144299", "time": 16758122, "featuredRunMedia": null, "reactionVideos": [], @@ -523161,7 +522661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 16759639, "featuredRunMedia": null, "reactionVideos": [], @@ -523181,7 +522681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 16760303, "featuredRunMedia": null, "reactionVideos": [], @@ -523201,7 +522701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "144216", "time": 16761040, "featuredRunMedia": null, "reactionVideos": [], @@ -523221,7 +522721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 16761077, "featuredRunMedia": null, "reactionVideos": [], @@ -523241,7 +522741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 16761662, "featuredRunMedia": null, "reactionVideos": [], @@ -523261,7 +522761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 16761846, "featuredRunMedia": null, "reactionVideos": [], @@ -523281,7 +522781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 16762653, "featuredRunMedia": null, "reactionVideos": [], @@ -523301,7 +522801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 16762993, "featuredRunMedia": null, "reactionVideos": [], @@ -523321,7 +522821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16763426, "featuredRunMedia": null, "reactionVideos": [], @@ -523341,7 +522841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 401, + "teamId": "144471", "time": 16763495, "featuredRunMedia": null, "reactionVideos": [], @@ -523361,7 +522861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 16764514, "featuredRunMedia": null, "reactionVideos": [], @@ -523381,7 +522881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 16764969, "featuredRunMedia": null, "reactionVideos": [], @@ -523401,7 +522901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 16765794, "featuredRunMedia": null, "reactionVideos": [], @@ -523421,7 +522921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 335, + "teamId": "144405", "time": 16767149, "featuredRunMedia": null, "reactionVideos": [], @@ -523441,7 +522941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16767386, "featuredRunMedia": null, "reactionVideos": [], @@ -523461,7 +522961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 257, + "teamId": "144327", "time": 16767452, "featuredRunMedia": null, "reactionVideos": [], @@ -523481,7 +522981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16769768, "featuredRunMedia": null, "reactionVideos": [], @@ -523501,7 +523001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 362, + "teamId": "144432", "time": 16771358, "featuredRunMedia": null, "reactionVideos": [], @@ -523521,7 +523021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16772673, "featuredRunMedia": null, "reactionVideos": [], @@ -523541,7 +523041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 16773049, "featuredRunMedia": null, "reactionVideos": [], @@ -523561,7 +523061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16773375, "featuredRunMedia": null, "reactionVideos": [], @@ -523581,7 +523081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 16773547, "featuredRunMedia": null, "reactionVideos": [], @@ -523601,7 +523101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 16775995, "featuredRunMedia": null, "reactionVideos": [], @@ -523621,7 +523121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 16777594, "featuredRunMedia": null, "reactionVideos": [], @@ -523641,7 +523141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 16777850, "featuredRunMedia": null, "reactionVideos": [], @@ -523661,7 +523161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 16778319, "featuredRunMedia": null, "reactionVideos": [], @@ -523681,7 +523181,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16778734, "featuredRunMedia": null, "reactionVideos": [], @@ -523701,7 +523201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16781634, "featuredRunMedia": null, "reactionVideos": [], @@ -523721,7 +523221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "144326", "time": 16783292, "featuredRunMedia": null, "reactionVideos": [], @@ -523741,7 +523241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 16784489, "featuredRunMedia": null, "reactionVideos": [], @@ -523761,7 +523261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 16784951, "featuredRunMedia": null, "reactionVideos": [], @@ -523781,7 +523281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 16785731, "featuredRunMedia": null, "reactionVideos": [], @@ -523801,7 +523301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "144093", "time": 16786034, "featuredRunMedia": null, "reactionVideos": [], @@ -523821,7 +523321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 16786443, "featuredRunMedia": null, "reactionVideos": [], @@ -523841,7 +523341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "144372", "time": 16786697, "featuredRunMedia": null, "reactionVideos": [], @@ -523861,7 +523361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 16787271, "featuredRunMedia": null, "reactionVideos": [], @@ -523881,7 +523381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 16788434, "featuredRunMedia": null, "reactionVideos": [], @@ -523901,7 +523401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 373, + "teamId": "144443", "time": 16789497, "featuredRunMedia": null, "reactionVideos": [], @@ -523921,7 +523421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 140, + "teamId": "144210", "time": 16789784, "featuredRunMedia": null, "reactionVideos": [], @@ -523941,7 +523441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 16790199, "featuredRunMedia": null, "reactionVideos": [], @@ -523961,7 +523461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16791489, "featuredRunMedia": null, "reactionVideos": [], @@ -523981,7 +523481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 336, + "teamId": "144406", "time": 16792156, "featuredRunMedia": null, "reactionVideos": [], @@ -524001,7 +523501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16795294, "featuredRunMedia": null, "reactionVideos": [], @@ -524021,7 +523521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 16797086, "featuredRunMedia": null, "reactionVideos": [], @@ -524041,7 +523541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 16798197, "featuredRunMedia": null, "reactionVideos": [], @@ -524061,7 +523561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 16799749, "featuredRunMedia": null, "reactionVideos": [], @@ -524081,7 +523581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16801883, "featuredRunMedia": null, "reactionVideos": [], @@ -524101,7 +523601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16802128, "featuredRunMedia": null, "reactionVideos": [], @@ -524121,7 +523621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 252, + "teamId": "144322", "time": 16802221, "featuredRunMedia": null, "reactionVideos": [], @@ -524141,7 +523641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16803474, "featuredRunMedia": null, "reactionVideos": [], @@ -524161,7 +523661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16805097, "featuredRunMedia": null, "reactionVideos": [], @@ -524181,7 +523681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 16805857, "featuredRunMedia": null, "reactionVideos": [], @@ -524201,7 +523701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 16806879, "featuredRunMedia": null, "reactionVideos": [], @@ -524221,7 +523721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16808225, "featuredRunMedia": null, "reactionVideos": [], @@ -524241,7 +523741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "144154", "time": 16808692, "featuredRunMedia": null, "reactionVideos": [], @@ -524261,7 +523761,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 16808972, "featuredRunMedia": null, "reactionVideos": [], @@ -524281,7 +523781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 16810760, "featuredRunMedia": null, "reactionVideos": [], @@ -524301,7 +523801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "144145", "time": 16812072, "featuredRunMedia": null, "reactionVideos": [], @@ -524321,7 +523821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16812475, "featuredRunMedia": null, "reactionVideos": [], @@ -524341,7 +523841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "144123", "time": 16812761, "featuredRunMedia": null, "reactionVideos": [], @@ -524361,7 +523861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16814669, "featuredRunMedia": null, "reactionVideos": [], @@ -524385,7 +523885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16814832, "featuredRunMedia": null, "reactionVideos": [], @@ -524405,7 +523905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "144083", "time": 16815243, "featuredRunMedia": null, "reactionVideos": [], @@ -524425,7 +523925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16815489, "featuredRunMedia": null, "reactionVideos": [], @@ -524445,7 +523945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 16816006, "featuredRunMedia": null, "reactionVideos": [], @@ -524465,7 +523965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 16817208, "featuredRunMedia": null, "reactionVideos": [], @@ -524485,7 +523985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 16817605, "featuredRunMedia": null, "reactionVideos": [], @@ -524505,7 +524005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 16817723, "featuredRunMedia": null, "reactionVideos": [], @@ -524525,7 +524025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16819482, "featuredRunMedia": null, "reactionVideos": [], @@ -524545,7 +524045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 16820360, "featuredRunMedia": null, "reactionVideos": [], @@ -524565,7 +524065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 16820422, "featuredRunMedia": null, "reactionVideos": [], @@ -524585,7 +524085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 16820530, "featuredRunMedia": null, "reactionVideos": [], @@ -524605,7 +524105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 16820570, "featuredRunMedia": null, "reactionVideos": [], @@ -524625,7 +524125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16822164, "featuredRunMedia": null, "reactionVideos": [], @@ -524645,7 +524145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 16822499, "featuredRunMedia": null, "reactionVideos": [], @@ -524665,7 +524165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16823080, "featuredRunMedia": null, "reactionVideos": [], @@ -524685,7 +524185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 416, + "teamId": "144486", "time": 16823262, "featuredRunMedia": null, "reactionVideos": [], @@ -524705,7 +524205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16824112, "featuredRunMedia": null, "reactionVideos": [], @@ -524725,7 +524225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16824626, "featuredRunMedia": null, "reactionVideos": [], @@ -524745,7 +524245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 16825320, "featuredRunMedia": null, "reactionVideos": [], @@ -524765,7 +524265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 140, + "teamId": "144210", "time": 16825685, "featuredRunMedia": null, "reactionVideos": [], @@ -524785,7 +524285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16825849, "featuredRunMedia": null, "reactionVideos": [], @@ -524805,7 +524305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 16826015, "featuredRunMedia": null, "reactionVideos": [], @@ -524825,7 +524325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16826380, "featuredRunMedia": null, "reactionVideos": [], @@ -524845,7 +524345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "144231", "time": 16826781, "featuredRunMedia": null, "reactionVideos": [], @@ -524865,7 +524365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 16828086, "featuredRunMedia": null, "reactionVideos": [], @@ -524885,7 +524385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 16828307, "featuredRunMedia": null, "reactionVideos": [], @@ -524905,7 +524405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16829024, "featuredRunMedia": null, "reactionVideos": [], @@ -524925,7 +524425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16829619, "featuredRunMedia": null, "reactionVideos": [], @@ -524945,7 +524445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 16830382, "featuredRunMedia": null, "reactionVideos": [], @@ -524965,7 +524465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16830445, "featuredRunMedia": null, "reactionVideos": [], @@ -524985,7 +524485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 16831395, "featuredRunMedia": null, "reactionVideos": [], @@ -525005,7 +524505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16831460, "featuredRunMedia": null, "reactionVideos": [], @@ -525025,7 +524525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 16832710, "featuredRunMedia": null, "reactionVideos": [], @@ -525045,7 +524545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16832763, "featuredRunMedia": null, "reactionVideos": [], @@ -525065,7 +524565,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16833019, "featuredRunMedia": null, "reactionVideos": [], @@ -525085,7 +524585,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 16834202, "featuredRunMedia": null, "reactionVideos": [], @@ -525105,7 +524605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 16834559, "featuredRunMedia": null, "reactionVideos": [], @@ -525125,7 +524625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "144089", "time": 16835836, "featuredRunMedia": null, "reactionVideos": [], @@ -525145,7 +524645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 16836035, "featuredRunMedia": null, "reactionVideos": [], @@ -525165,7 +524665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 16836404, "featuredRunMedia": null, "reactionVideos": [], @@ -525185,7 +524685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16836715, "featuredRunMedia": null, "reactionVideos": [], @@ -525205,7 +524705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 16837821, "featuredRunMedia": null, "reactionVideos": [], @@ -525225,7 +524725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 274, + "teamId": "144344", "time": 16839946, "featuredRunMedia": null, "reactionVideos": [], @@ -525245,7 +524745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16840112, "featuredRunMedia": null, "reactionVideos": [], @@ -525265,7 +524765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 16840757, "featuredRunMedia": null, "reactionVideos": [], @@ -525285,7 +524785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 16841140, "featuredRunMedia": null, "reactionVideos": [], @@ -525305,7 +524805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 16841671, "featuredRunMedia": null, "reactionVideos": [], @@ -525325,7 +524825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16841809, "featuredRunMedia": null, "reactionVideos": [], @@ -525345,7 +524845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 16843165, "featuredRunMedia": null, "reactionVideos": [], @@ -525365,7 +524865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 16844715, "featuredRunMedia": null, "reactionVideos": [], @@ -525385,7 +524885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 16845040, "featuredRunMedia": null, "reactionVideos": [], @@ -525405,7 +524905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 16845441, "featuredRunMedia": null, "reactionVideos": [], @@ -525425,7 +524925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 16845512, "featuredRunMedia": null, "reactionVideos": [], @@ -525445,7 +524945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16845606, "featuredRunMedia": null, "reactionVideos": [], @@ -525465,7 +524965,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 16845978, "featuredRunMedia": null, "reactionVideos": [], @@ -525485,7 +524985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16848405, "featuredRunMedia": null, "reactionVideos": [], @@ -525505,7 +525005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 16849759, "featuredRunMedia": null, "reactionVideos": [], @@ -525525,7 +525025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 16850681, "featuredRunMedia": null, "reactionVideos": [], @@ -525545,7 +525045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 16850798, "featuredRunMedia": null, "reactionVideos": [], @@ -525565,7 +525065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 16852947, "featuredRunMedia": null, "reactionVideos": [], @@ -525585,7 +525085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16853308, "featuredRunMedia": null, "reactionVideos": [], @@ -525605,7 +525105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 16854412, "featuredRunMedia": null, "reactionVideos": [], @@ -525625,7 +525125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 16854610, "featuredRunMedia": null, "reactionVideos": [], @@ -525645,7 +525145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 16854878, "featuredRunMedia": null, "reactionVideos": [], @@ -525665,7 +525165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 16855231, "featuredRunMedia": null, "reactionVideos": [], @@ -525685,7 +525185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16855753, "featuredRunMedia": null, "reactionVideos": [], @@ -525705,7 +525205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 16856860, "featuredRunMedia": null, "reactionVideos": [], @@ -525725,7 +525225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 392, + "teamId": "144462", "time": 16856909, "featuredRunMedia": null, "reactionVideos": [], @@ -525745,7 +525245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 16857057, "featuredRunMedia": null, "reactionVideos": [], @@ -525765,7 +525265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16857206, "featuredRunMedia": null, "reactionVideos": [], @@ -525785,7 +525285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 16859896, "featuredRunMedia": null, "reactionVideos": [], @@ -525805,7 +525305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 16860040, "featuredRunMedia": null, "reactionVideos": [], @@ -525825,7 +525325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 16860718, "featuredRunMedia": null, "reactionVideos": [], @@ -525845,7 +525345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 16863522, "featuredRunMedia": null, "reactionVideos": [], @@ -525865,7 +525365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 16863740, "featuredRunMedia": null, "reactionVideos": [], @@ -525885,7 +525385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16863949, "featuredRunMedia": null, "reactionVideos": [], @@ -525905,7 +525405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 16865199, "featuredRunMedia": null, "reactionVideos": [], @@ -525925,7 +525425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 16865355, "featuredRunMedia": null, "reactionVideos": [], @@ -525945,7 +525445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 16866588, "featuredRunMedia": null, "reactionVideos": [], @@ -525965,7 +525465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 16866895, "featuredRunMedia": null, "reactionVideos": [], @@ -525985,7 +525485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 16867000, "featuredRunMedia": null, "reactionVideos": [], @@ -526005,7 +525505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16867339, "featuredRunMedia": null, "reactionVideos": [], @@ -526025,7 +525525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 16868067, "featuredRunMedia": null, "reactionVideos": [], @@ -526045,7 +525545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 16868244, "featuredRunMedia": null, "reactionVideos": [], @@ -526065,7 +525565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 16869676, "featuredRunMedia": null, "reactionVideos": [], @@ -526085,7 +525585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16870985, "featuredRunMedia": null, "reactionVideos": [], @@ -526105,7 +525605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 16871628, "featuredRunMedia": null, "reactionVideos": [], @@ -526125,7 +525625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16873555, "featuredRunMedia": null, "reactionVideos": [], @@ -526145,7 +525645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 442, + "teamId": "144512", "time": 16874431, "featuredRunMedia": null, "reactionVideos": [], @@ -526165,7 +525665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 16874757, "featuredRunMedia": null, "reactionVideos": [], @@ -526185,7 +525685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16875595, "featuredRunMedia": null, "reactionVideos": [], @@ -526205,7 +525705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16877573, "featuredRunMedia": null, "reactionVideos": [], @@ -526225,7 +525725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 16877974, "featuredRunMedia": null, "reactionVideos": [], @@ -526245,7 +525745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16878346, "featuredRunMedia": null, "reactionVideos": [], @@ -526265,7 +525765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 16878389, "featuredRunMedia": null, "reactionVideos": [], @@ -526285,7 +525785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 16878426, "featuredRunMedia": null, "reactionVideos": [], @@ -526305,7 +525805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 16878543, "featuredRunMedia": null, "reactionVideos": [], @@ -526325,7 +525825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 16878610, "featuredRunMedia": null, "reactionVideos": [], @@ -526345,7 +525845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 16881264, "featuredRunMedia": null, "reactionVideos": [], @@ -526365,7 +525865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 183, + "teamId": "144253", "time": 16882458, "featuredRunMedia": null, "reactionVideos": [], @@ -526385,7 +525885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 16883509, "featuredRunMedia": null, "reactionVideos": [], @@ -526405,7 +525905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 16883791, "featuredRunMedia": null, "reactionVideos": [], @@ -526425,7 +525925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 16884389, "featuredRunMedia": null, "reactionVideos": [], @@ -526445,7 +525945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16885397, "featuredRunMedia": null, "reactionVideos": [], @@ -526465,7 +525965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16886446, "featuredRunMedia": null, "reactionVideos": [], @@ -526485,7 +525985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 402, + "teamId": "144472", "time": 16886870, "featuredRunMedia": null, "reactionVideos": [], @@ -526505,7 +526005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 16888306, "featuredRunMedia": null, "reactionVideos": [], @@ -526525,7 +526025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 16889944, "featuredRunMedia": null, "reactionVideos": [], @@ -526545,7 +526045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 16890156, "featuredRunMedia": null, "reactionVideos": [], @@ -526565,7 +526065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 16890468, "featuredRunMedia": null, "reactionVideos": [], @@ -526585,7 +526085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16893072, "featuredRunMedia": null, "reactionVideos": [], @@ -526605,7 +526105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 16894127, "featuredRunMedia": null, "reactionVideos": [], @@ -526625,7 +526125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "144135", "time": 16895586, "featuredRunMedia": null, "reactionVideos": [], @@ -526645,7 +526145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "144118", "time": 16897465, "featuredRunMedia": null, "reactionVideos": [], @@ -526669,7 +526169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16897559, "featuredRunMedia": null, "reactionVideos": [], @@ -526689,7 +526189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 16898135, "featuredRunMedia": null, "reactionVideos": [], @@ -526709,7 +526209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16898715, "featuredRunMedia": null, "reactionVideos": [], @@ -526729,7 +526229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 16902168, "featuredRunMedia": null, "reactionVideos": [], @@ -526749,7 +526249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 16902280, "featuredRunMedia": null, "reactionVideos": [], @@ -526769,7 +526269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 193, + "teamId": "144263", "time": 16903595, "featuredRunMedia": null, "reactionVideos": [], @@ -526789,7 +526289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 16905047, "featuredRunMedia": null, "reactionVideos": [], @@ -526809,7 +526309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 16905420, "featuredRunMedia": null, "reactionVideos": [], @@ -526833,7 +526333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 16907473, "featuredRunMedia": null, "reactionVideos": [], @@ -526853,7 +526353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 16907701, "featuredRunMedia": null, "reactionVideos": [], @@ -526873,7 +526373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "144323", "time": 16907926, "featuredRunMedia": null, "reactionVideos": [], @@ -526893,7 +526393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 16908365, "featuredRunMedia": null, "reactionVideos": [], @@ -526913,7 +526413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "144258", "time": 16909734, "featuredRunMedia": null, "reactionVideos": [], @@ -526933,7 +526433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 16910020, "featuredRunMedia": null, "reactionVideos": [], @@ -526953,7 +526453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 16911472, "featuredRunMedia": null, "reactionVideos": [], @@ -526973,7 +526473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "144109", "time": 16912477, "featuredRunMedia": null, "reactionVideos": [], @@ -526993,7 +526493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 442, + "teamId": "144512", "time": 16914076, "featuredRunMedia": null, "reactionVideos": [], @@ -527013,7 +526513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 16915918, "featuredRunMedia": null, "reactionVideos": [], @@ -527033,7 +526533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 16917427, "featuredRunMedia": null, "reactionVideos": [], @@ -527053,7 +526553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 16918692, "featuredRunMedia": null, "reactionVideos": [], @@ -527073,7 +526573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16918745, "featuredRunMedia": null, "reactionVideos": [], @@ -527093,7 +526593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16919202, "featuredRunMedia": null, "reactionVideos": [], @@ -527113,7 +526613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 16919537, "featuredRunMedia": null, "reactionVideos": [], @@ -527133,7 +526633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 405, + "teamId": "144475", "time": 16921184, "featuredRunMedia": null, "reactionVideos": [], @@ -527153,7 +526653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 16926869, "featuredRunMedia": null, "reactionVideos": [], @@ -527173,7 +526673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 16927134, "featuredRunMedia": null, "reactionVideos": [], @@ -527193,7 +526693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16928857, "featuredRunMedia": null, "reactionVideos": [], @@ -527213,7 +526713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "144172", "time": 16928953, "featuredRunMedia": null, "reactionVideos": [], @@ -527237,7 +526737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 16929158, "featuredRunMedia": null, "reactionVideos": [], @@ -527257,7 +526757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 16929605, "featuredRunMedia": null, "reactionVideos": [], @@ -527281,7 +526781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 16929994, "featuredRunMedia": null, "reactionVideos": [], @@ -527301,7 +526801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 318, + "teamId": "144388", "time": 16930544, "featuredRunMedia": null, "reactionVideos": [], @@ -527321,7 +526821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 16930591, "featuredRunMedia": null, "reactionVideos": [], @@ -527341,7 +526841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 16930733, "featuredRunMedia": null, "reactionVideos": [], @@ -527361,7 +526861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16931502, "featuredRunMedia": null, "reactionVideos": [], @@ -527381,7 +526881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 16931926, "featuredRunMedia": null, "reactionVideos": [], @@ -527401,7 +526901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 16932508, "featuredRunMedia": null, "reactionVideos": [], @@ -527421,7 +526921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "144416", "time": 16933041, "featuredRunMedia": null, "reactionVideos": [], @@ -527441,7 +526941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 16933688, "featuredRunMedia": null, "reactionVideos": [], @@ -527461,7 +526961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 16934988, "featuredRunMedia": null, "reactionVideos": [], @@ -527485,7 +526985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 16939208, "featuredRunMedia": null, "reactionVideos": [], @@ -527505,7 +527005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 16940187, "featuredRunMedia": null, "reactionVideos": [], @@ -527525,7 +527025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 16941569, "featuredRunMedia": null, "reactionVideos": [], @@ -527545,7 +527045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 16942700, "featuredRunMedia": null, "reactionVideos": [], @@ -527565,7 +527065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 16942768, "featuredRunMedia": null, "reactionVideos": [], @@ -527585,7 +527085,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 16943124, "featuredRunMedia": null, "reactionVideos": [], @@ -527605,7 +527105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 16943203, "featuredRunMedia": null, "reactionVideos": [], @@ -527625,7 +527125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 16943609, "featuredRunMedia": null, "reactionVideos": [], @@ -527645,7 +527145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 16944801, "featuredRunMedia": null, "reactionVideos": [], @@ -527665,7 +527165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 16945447, "featuredRunMedia": null, "reactionVideos": [], @@ -527685,7 +527185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 16947946, "featuredRunMedia": null, "reactionVideos": [], @@ -527709,7 +527209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16948296, "featuredRunMedia": null, "reactionVideos": [], @@ -527729,7 +527229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16949432, "featuredRunMedia": null, "reactionVideos": [], @@ -527749,7 +527249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 16949856, "featuredRunMedia": null, "reactionVideos": [], @@ -527769,7 +527269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 16949979, "featuredRunMedia": null, "reactionVideos": [], @@ -527789,7 +527289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 16953863, "featuredRunMedia": null, "reactionVideos": [], @@ -527809,7 +527309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 16954241, "featuredRunMedia": null, "reactionVideos": [], @@ -527829,7 +527329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 16954319, "featuredRunMedia": null, "reactionVideos": [], @@ -527849,7 +527349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 16954923, "featuredRunMedia": null, "reactionVideos": [], @@ -527869,7 +527369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16955087, "featuredRunMedia": null, "reactionVideos": [], @@ -527889,7 +527389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16955829, "featuredRunMedia": null, "reactionVideos": [], @@ -527909,7 +527409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 16957322, "featuredRunMedia": null, "reactionVideos": [], @@ -527929,7 +527429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 16957439, "featuredRunMedia": null, "reactionVideos": [], @@ -527949,7 +527449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 16958982, "featuredRunMedia": null, "reactionVideos": [], @@ -527969,7 +527469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 16960727, "featuredRunMedia": null, "reactionVideos": [], @@ -527993,7 +527493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16961300, "featuredRunMedia": null, "reactionVideos": [], @@ -528013,7 +527513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 16962519, "featuredRunMedia": null, "reactionVideos": [], @@ -528033,7 +527533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16963045, "featuredRunMedia": null, "reactionVideos": [], @@ -528053,7 +527553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 375, + "teamId": "144445", "time": 16964694, "featuredRunMedia": null, "reactionVideos": [], @@ -528073,7 +527573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "144376", "time": 16965594, "featuredRunMedia": null, "reactionVideos": [], @@ -528093,7 +527593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 16965707, "featuredRunMedia": null, "reactionVideos": [], @@ -528113,7 +527613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 16965756, "featuredRunMedia": null, "reactionVideos": [], @@ -528133,7 +527633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 16966138, "featuredRunMedia": null, "reactionVideos": [], @@ -528153,7 +527653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 16967197, "featuredRunMedia": null, "reactionVideos": [], @@ -528173,7 +527673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 418, + "teamId": "144488", "time": 16967429, "featuredRunMedia": null, "reactionVideos": [], @@ -528193,7 +527693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 16967743, "featuredRunMedia": null, "reactionVideos": [], @@ -528213,7 +527713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 16967842, "featuredRunMedia": null, "reactionVideos": [], @@ -528233,7 +527733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "144108", "time": 16968298, "featuredRunMedia": null, "reactionVideos": [], @@ -528253,7 +527753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "144389", "time": 16968451, "featuredRunMedia": null, "reactionVideos": [], @@ -528273,7 +527773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16968518, "featuredRunMedia": null, "reactionVideos": [], @@ -528293,7 +527793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 16969171, "featuredRunMedia": null, "reactionVideos": [], @@ -528313,7 +527813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 16970792, "featuredRunMedia": null, "reactionVideos": [], @@ -528333,7 +527833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 16971346, "featuredRunMedia": null, "reactionVideos": [], @@ -528353,7 +527853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 16972309, "featuredRunMedia": null, "reactionVideos": [], @@ -528373,7 +527873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 16972574, "featuredRunMedia": null, "reactionVideos": [], @@ -528393,7 +527893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "144259", "time": 16972612, "featuredRunMedia": null, "reactionVideos": [], @@ -528413,7 +527913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "144250", "time": 16972647, "featuredRunMedia": null, "reactionVideos": [], @@ -528433,7 +527933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 390, + "teamId": "144460", "time": 16972738, "featuredRunMedia": null, "reactionVideos": [], @@ -528453,7 +527953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 377, + "teamId": "144447", "time": 16973176, "featuredRunMedia": null, "reactionVideos": [], @@ -528473,7 +527973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 16973675, "featuredRunMedia": null, "reactionVideos": [], @@ -528493,7 +527993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16973774, "featuredRunMedia": null, "reactionVideos": [], @@ -528513,7 +528013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 16973954, "featuredRunMedia": null, "reactionVideos": [], @@ -528533,7 +528033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 16974912, "featuredRunMedia": null, "reactionVideos": [], @@ -528557,7 +528057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 16975768, "featuredRunMedia": null, "reactionVideos": [], @@ -528577,7 +528077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 16977399, "featuredRunMedia": null, "reactionVideos": [], @@ -528597,7 +528097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 16978584, "featuredRunMedia": null, "reactionVideos": [], @@ -528617,7 +528117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 16979423, "featuredRunMedia": null, "reactionVideos": [], @@ -528637,7 +528137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 16979461, "featuredRunMedia": null, "reactionVideos": [], @@ -528657,7 +528157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 16979495, "featuredRunMedia": null, "reactionVideos": [], @@ -528677,7 +528177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16979903, "featuredRunMedia": null, "reactionVideos": [], @@ -528697,7 +528197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 16979936, "featuredRunMedia": null, "reactionVideos": [], @@ -528717,7 +528217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 16980037, "featuredRunMedia": null, "reactionVideos": [], @@ -528737,7 +528237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 16980809, "featuredRunMedia": null, "reactionVideos": [], @@ -528757,7 +528257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 16981771, "featuredRunMedia": null, "reactionVideos": [], @@ -528777,7 +528277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 16982312, "featuredRunMedia": null, "reactionVideos": [], @@ -528797,7 +528297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "144160", "time": 16982799, "featuredRunMedia": null, "reactionVideos": [], @@ -528817,7 +528317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 16983842, "featuredRunMedia": null, "reactionVideos": [], @@ -528837,7 +528337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 16983883, "featuredRunMedia": null, "reactionVideos": [], @@ -528857,7 +528357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16985680, "featuredRunMedia": null, "reactionVideos": [], @@ -528877,7 +528377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 16986156, "featuredRunMedia": null, "reactionVideos": [], @@ -528897,7 +528397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 16986965, "featuredRunMedia": null, "reactionVideos": [], @@ -528917,7 +528417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 16987088, "featuredRunMedia": null, "reactionVideos": [], @@ -528937,7 +528437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 16988720, "featuredRunMedia": null, "reactionVideos": [], @@ -528957,7 +528457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 16989634, "featuredRunMedia": null, "reactionVideos": [], @@ -528977,7 +528477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 16990159, "featuredRunMedia": null, "reactionVideos": [], @@ -528997,7 +528497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "144401", "time": 16991138, "featuredRunMedia": null, "reactionVideos": [], @@ -529017,7 +528517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 16991220, "featuredRunMedia": null, "reactionVideos": [], @@ -529037,7 +528537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 16992197, "featuredRunMedia": null, "reactionVideos": [], @@ -529057,7 +528557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16992294, "featuredRunMedia": null, "reactionVideos": [], @@ -529077,7 +528577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 16994120, "featuredRunMedia": null, "reactionVideos": [], @@ -529097,7 +528597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 16994749, "featuredRunMedia": null, "reactionVideos": [], @@ -529117,7 +528617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 16995788, "featuredRunMedia": null, "reactionVideos": [], @@ -529137,7 +528637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 16996553, "featuredRunMedia": null, "reactionVideos": [], @@ -529157,7 +528657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "144373", "time": 16996646, "featuredRunMedia": null, "reactionVideos": [], @@ -529177,7 +528677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 379, + "teamId": "144449", "time": 16997685, "featuredRunMedia": null, "reactionVideos": [], @@ -529197,7 +528697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 16998142, "featuredRunMedia": null, "reactionVideos": [], @@ -529217,7 +528717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 16998268, "featuredRunMedia": null, "reactionVideos": [], @@ -529237,7 +528737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 16999407, "featuredRunMedia": null, "reactionVideos": [], @@ -529257,7 +528757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 16999624, "featuredRunMedia": null, "reactionVideos": [], @@ -529277,7 +528777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "144092", "time": 17000602, "featuredRunMedia": null, "reactionVideos": [], @@ -529297,7 +528797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "144408", "time": 17001851, "featuredRunMedia": null, "reactionVideos": [], @@ -529317,7 +528817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 17002149, "featuredRunMedia": null, "reactionVideos": [], @@ -529337,7 +528837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17003003, "featuredRunMedia": null, "reactionVideos": [], @@ -529357,7 +528857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "144121", "time": 17003703, "featuredRunMedia": null, "reactionVideos": [], @@ -529377,7 +528877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17004431, "featuredRunMedia": null, "reactionVideos": [], @@ -529397,7 +528897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 17004547, "featuredRunMedia": null, "reactionVideos": [], @@ -529417,7 +528917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 359, + "teamId": "144429", "time": 17004605, "featuredRunMedia": null, "reactionVideos": [], @@ -529437,7 +528937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 17005258, "featuredRunMedia": null, "reactionVideos": [], @@ -529457,7 +528957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 17005405, "featuredRunMedia": null, "reactionVideos": [], @@ -529477,7 +528977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 17006853, "featuredRunMedia": null, "reactionVideos": [], @@ -529497,7 +528997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17007862, "featuredRunMedia": null, "reactionVideos": [], @@ -529517,7 +529017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 17007977, "featuredRunMedia": null, "reactionVideos": [], @@ -529537,7 +529037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17008971, "featuredRunMedia": null, "reactionVideos": [], @@ -529557,7 +529057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17009402, "featuredRunMedia": null, "reactionVideos": [], @@ -529577,7 +529077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 17009507, "featuredRunMedia": null, "reactionVideos": [], @@ -529597,7 +529097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17010179, "featuredRunMedia": null, "reactionVideos": [], @@ -529617,7 +529117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 17011584, "featuredRunMedia": null, "reactionVideos": [], @@ -529637,7 +529137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 17012045, "featuredRunMedia": null, "reactionVideos": [], @@ -529657,7 +529157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 17012093, "featuredRunMedia": null, "reactionVideos": [], @@ -529677,7 +529177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17012151, "featuredRunMedia": null, "reactionVideos": [], @@ -529697,7 +529197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 17014251, "featuredRunMedia": null, "reactionVideos": [], @@ -529717,7 +529217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "144343", "time": 17014828, "featuredRunMedia": null, "reactionVideos": [], @@ -529737,7 +529237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17015348, "featuredRunMedia": null, "reactionVideos": [], @@ -529761,7 +529261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17016204, "featuredRunMedia": null, "reactionVideos": [], @@ -529781,7 +529281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17017392, "featuredRunMedia": null, "reactionVideos": [], @@ -529801,7 +529301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 17017927, "featuredRunMedia": null, "reactionVideos": [], @@ -529821,7 +529321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "144077", "time": 17018379, "featuredRunMedia": null, "reactionVideos": [], @@ -529841,7 +529341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 17018519, "featuredRunMedia": null, "reactionVideos": [], @@ -529861,7 +529361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17018971, "featuredRunMedia": null, "reactionVideos": [], @@ -529881,7 +529381,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 422, + "teamId": "144492", "time": 17019056, "featuredRunMedia": null, "reactionVideos": [], @@ -529901,7 +529401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17019090, "featuredRunMedia": null, "reactionVideos": [], @@ -529921,7 +529421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 17019133, "featuredRunMedia": null, "reactionVideos": [], @@ -529941,7 +529441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 384, + "teamId": "144454", "time": 17019512, "featuredRunMedia": null, "reactionVideos": [], @@ -529961,7 +529461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 17020799, "featuredRunMedia": null, "reactionVideos": [], @@ -529981,7 +529481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "144184", "time": 17021052, "featuredRunMedia": null, "reactionVideos": [], @@ -530001,7 +529501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 17021618, "featuredRunMedia": null, "reactionVideos": [], @@ -530021,7 +529521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 17021708, "featuredRunMedia": null, "reactionVideos": [], @@ -530041,7 +529541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 17022102, "featuredRunMedia": null, "reactionVideos": [], @@ -530061,7 +529561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 17022419, "featuredRunMedia": null, "reactionVideos": [], @@ -530081,7 +529581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 17023393, "featuredRunMedia": null, "reactionVideos": [], @@ -530101,7 +529601,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17024764, "featuredRunMedia": null, "reactionVideos": [], @@ -530121,7 +529621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 17024950, "featuredRunMedia": null, "reactionVideos": [], @@ -530141,7 +529641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 17026061, "featuredRunMedia": null, "reactionVideos": [], @@ -530161,7 +529661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 17026122, "featuredRunMedia": null, "reactionVideos": [], @@ -530181,7 +529681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 17027142, "featuredRunMedia": null, "reactionVideos": [], @@ -530201,7 +529701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 17027254, "featuredRunMedia": null, "reactionVideos": [], @@ -530225,7 +529725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17027775, "featuredRunMedia": null, "reactionVideos": [], @@ -530245,7 +529745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "144230", "time": 17028517, "featuredRunMedia": null, "reactionVideos": [], @@ -530265,7 +529765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17028568, "featuredRunMedia": null, "reactionVideos": [], @@ -530285,7 +529785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17029042, "featuredRunMedia": null, "reactionVideos": [], @@ -530305,7 +529805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 396, + "teamId": "144466", "time": 17029727, "featuredRunMedia": null, "reactionVideos": [], @@ -530325,7 +529825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17029999, "featuredRunMedia": null, "reactionVideos": [], @@ -530345,7 +529845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 227, + "teamId": "144297", "time": 17034319, "featuredRunMedia": null, "reactionVideos": [], @@ -530365,7 +529865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "144272", "time": 17034932, "featuredRunMedia": null, "reactionVideos": [], @@ -530385,7 +529885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 17035504, "featuredRunMedia": null, "reactionVideos": [], @@ -530405,7 +529905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "144222", "time": 17035570, "featuredRunMedia": null, "reactionVideos": [], @@ -530425,7 +529925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 294, + "teamId": "144364", "time": 17035744, "featuredRunMedia": null, "reactionVideos": [], @@ -530445,7 +529945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17035932, "featuredRunMedia": null, "reactionVideos": [], @@ -530465,7 +529965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17036889, "featuredRunMedia": null, "reactionVideos": [], @@ -530485,7 +529985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 17037720, "featuredRunMedia": null, "reactionVideos": [], @@ -530505,7 +530005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17039235, "featuredRunMedia": null, "reactionVideos": [], @@ -530525,7 +530025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 17040561, "featuredRunMedia": null, "reactionVideos": [], @@ -530545,7 +530045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 389, + "teamId": "144459", "time": 17041287, "featuredRunMedia": null, "reactionVideos": [], @@ -530565,7 +530065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17041548, "featuredRunMedia": null, "reactionVideos": [], @@ -530585,7 +530085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 17041732, "featuredRunMedia": null, "reactionVideos": [], @@ -530605,7 +530105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "144091", "time": 17041803, "featuredRunMedia": null, "reactionVideos": [], @@ -530625,7 +530125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17043391, "featuredRunMedia": null, "reactionVideos": [], @@ -530645,7 +530145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17043851, "featuredRunMedia": null, "reactionVideos": [], @@ -530665,7 +530165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17044173, "featuredRunMedia": null, "reactionVideos": [], @@ -530685,7 +530185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17044624, "featuredRunMedia": null, "reactionVideos": [], @@ -530705,7 +530205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 17045233, "featuredRunMedia": null, "reactionVideos": [], @@ -530725,7 +530225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 365, + "teamId": "144435", "time": 17046718, "featuredRunMedia": null, "reactionVideos": [], @@ -530745,7 +530245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "144358", "time": 17047779, "featuredRunMedia": null, "reactionVideos": [], @@ -530765,7 +530265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 17047830, "featuredRunMedia": null, "reactionVideos": [], @@ -530785,7 +530285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 17049364, "featuredRunMedia": null, "reactionVideos": [], @@ -530805,7 +530305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17049641, "featuredRunMedia": null, "reactionVideos": [], @@ -530825,7 +530325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 17049923, "featuredRunMedia": null, "reactionVideos": [], @@ -530845,7 +530345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 17050775, "featuredRunMedia": null, "reactionVideos": [], @@ -530865,7 +530365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 17051616, "featuredRunMedia": null, "reactionVideos": [], @@ -530885,7 +530385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17052793, "featuredRunMedia": null, "reactionVideos": [], @@ -530905,7 +530405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 17053434, "featuredRunMedia": null, "reactionVideos": [], @@ -530925,7 +530425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17054299, "featuredRunMedia": null, "reactionVideos": [], @@ -530945,7 +530445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17055630, "featuredRunMedia": null, "reactionVideos": [], @@ -530965,7 +530465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 17055873, "featuredRunMedia": null, "reactionVideos": [], @@ -530985,7 +530485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17056295, "featuredRunMedia": null, "reactionVideos": [], @@ -531005,7 +530505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17057484, "featuredRunMedia": null, "reactionVideos": [], @@ -531025,7 +530525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17058351, "featuredRunMedia": null, "reactionVideos": [], @@ -531045,7 +530545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "144290", "time": 17058894, "featuredRunMedia": null, "reactionVideos": [], @@ -531065,7 +530565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 17060328, "featuredRunMedia": null, "reactionVideos": [], @@ -531085,7 +530585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17062898, "featuredRunMedia": null, "reactionVideos": [], @@ -531105,7 +530605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17063648, "featuredRunMedia": null, "reactionVideos": [], @@ -531125,7 +530625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17065247, "featuredRunMedia": null, "reactionVideos": [], @@ -531145,7 +530645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17066816, "featuredRunMedia": null, "reactionVideos": [], @@ -531165,7 +530665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "144121", "time": 17067294, "featuredRunMedia": null, "reactionVideos": [], @@ -531185,7 +530685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 17069530, "featuredRunMedia": null, "reactionVideos": [], @@ -531205,7 +530705,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17069582, "featuredRunMedia": null, "reactionVideos": [], @@ -531225,7 +530725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 17071598, "featuredRunMedia": null, "reactionVideos": [], @@ -531245,7 +530745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17073355, "featuredRunMedia": null, "reactionVideos": [], @@ -531265,7 +530765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 17075347, "featuredRunMedia": null, "reactionVideos": [], @@ -531285,7 +530785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 17076908, "featuredRunMedia": null, "reactionVideos": [], @@ -531305,7 +530805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17078586, "featuredRunMedia": null, "reactionVideos": [], @@ -531325,7 +530825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17078901, "featuredRunMedia": null, "reactionVideos": [], @@ -531345,7 +530845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17079284, "featuredRunMedia": null, "reactionVideos": [], @@ -531365,7 +530865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 17080209, "featuredRunMedia": null, "reactionVideos": [], @@ -531385,7 +530885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17080893, "featuredRunMedia": null, "reactionVideos": [], @@ -531405,7 +530905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 17081540, "featuredRunMedia": null, "reactionVideos": [], @@ -531425,7 +530925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 17082373, "featuredRunMedia": null, "reactionVideos": [], @@ -531445,7 +530945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 437, + "teamId": "144507", "time": 17083468, "featuredRunMedia": null, "reactionVideos": [], @@ -531465,7 +530965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17083671, "featuredRunMedia": null, "reactionVideos": [], @@ -531485,7 +530985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "144071", "time": 17084917, "featuredRunMedia": null, "reactionVideos": [], @@ -531505,7 +531005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "144201", "time": 17085183, "featuredRunMedia": null, "reactionVideos": [], @@ -531525,7 +531025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 17085246, "featuredRunMedia": null, "reactionVideos": [], @@ -531545,7 +531045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 392, + "teamId": "144462", "time": 17085538, "featuredRunMedia": null, "reactionVideos": [], @@ -531565,7 +531065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 17086967, "featuredRunMedia": null, "reactionVideos": [], @@ -531585,7 +531085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 225, + "teamId": "144295", "time": 17089269, "featuredRunMedia": null, "reactionVideos": [], @@ -531605,7 +531105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17089842, "featuredRunMedia": null, "reactionVideos": [], @@ -531625,7 +531125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 293, + "teamId": "144363", "time": 17090808, "featuredRunMedia": null, "reactionVideos": [], @@ -531645,7 +531145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "144332", "time": 17092017, "featuredRunMedia": null, "reactionVideos": [], @@ -531665,7 +531165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "144075", "time": 17092230, "featuredRunMedia": null, "reactionVideos": [], @@ -531685,7 +531185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17094354, "featuredRunMedia": null, "reactionVideos": [], @@ -531709,7 +531209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 17095451, "featuredRunMedia": null, "reactionVideos": [], @@ -531729,7 +531229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 17096491, "featuredRunMedia": null, "reactionVideos": [], @@ -531749,7 +531249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 193, + "teamId": "144263", "time": 17099594, "featuredRunMedia": null, "reactionVideos": [], @@ -531769,7 +531269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17100098, "featuredRunMedia": null, "reactionVideos": [], @@ -531789,7 +531289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17100844, "featuredRunMedia": null, "reactionVideos": [], @@ -531809,7 +531309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 17101008, "featuredRunMedia": null, "reactionVideos": [], @@ -531829,7 +531329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17101059, "featuredRunMedia": null, "reactionVideos": [], @@ -531849,7 +531349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 281, + "teamId": "144351", "time": 17102015, "featuredRunMedia": null, "reactionVideos": [], @@ -531869,7 +531369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 395, + "teamId": "144465", "time": 17104895, "featuredRunMedia": null, "reactionVideos": [], @@ -531889,7 +531389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 17107199, "featuredRunMedia": null, "reactionVideos": [], @@ -531909,7 +531409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 17107755, "featuredRunMedia": null, "reactionVideos": [], @@ -531929,7 +531429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "144123", "time": 17108967, "featuredRunMedia": null, "reactionVideos": [], @@ -531949,7 +531449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17110645, "featuredRunMedia": null, "reactionVideos": [], @@ -531969,7 +531469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17111062, "featuredRunMedia": null, "reactionVideos": [], @@ -531989,7 +531489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 17111330, "featuredRunMedia": null, "reactionVideos": [], @@ -532009,7 +531509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "144199", "time": 17112456, "featuredRunMedia": null, "reactionVideos": [], @@ -532029,7 +531529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 17113650, "featuredRunMedia": null, "reactionVideos": [], @@ -532049,7 +531549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "144220", "time": 17113777, "featuredRunMedia": null, "reactionVideos": [], @@ -532069,7 +531569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "144170", "time": 17114837, "featuredRunMedia": null, "reactionVideos": [], @@ -532089,7 +531589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 17115634, "featuredRunMedia": null, "reactionVideos": [], @@ -532109,7 +531609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17116684, "featuredRunMedia": null, "reactionVideos": [], @@ -532129,7 +531629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 17117864, "featuredRunMedia": null, "reactionVideos": [], @@ -532149,7 +531649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 411, + "teamId": "144481", "time": 17118154, "featuredRunMedia": null, "reactionVideos": [], @@ -532169,7 +531669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17118277, "featuredRunMedia": null, "reactionVideos": [], @@ -532189,7 +531689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 17118891, "featuredRunMedia": null, "reactionVideos": [], @@ -532213,7 +531713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17119602, "featuredRunMedia": null, "reactionVideos": [], @@ -532233,7 +531733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 17120591, "featuredRunMedia": null, "reactionVideos": [], @@ -532253,7 +531753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17121494, "featuredRunMedia": null, "reactionVideos": [], @@ -532273,7 +531773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17122624, "featuredRunMedia": null, "reactionVideos": [], @@ -532293,7 +531793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 17124259, "featuredRunMedia": null, "reactionVideos": [], @@ -532313,7 +531813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17124538, "featuredRunMedia": null, "reactionVideos": [], @@ -532333,7 +531833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17125520, "featuredRunMedia": null, "reactionVideos": [], @@ -532353,7 +531853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17125866, "featuredRunMedia": null, "reactionVideos": [], @@ -532373,7 +531873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 17126184, "featuredRunMedia": null, "reactionVideos": [], @@ -532393,7 +531893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17126277, "featuredRunMedia": null, "reactionVideos": [], @@ -532413,7 +531913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17127073, "featuredRunMedia": null, "reactionVideos": [], @@ -532433,7 +531933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17128868, "featuredRunMedia": null, "reactionVideos": [], @@ -532453,7 +531953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17131420, "featuredRunMedia": null, "reactionVideos": [], @@ -532473,7 +531973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 17131936, "featuredRunMedia": null, "reactionVideos": [], @@ -532493,7 +531993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17132239, "featuredRunMedia": null, "reactionVideos": [], @@ -532513,7 +532013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17133448, "featuredRunMedia": null, "reactionVideos": [], @@ -532533,7 +532033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 17135103, "featuredRunMedia": null, "reactionVideos": [], @@ -532553,7 +532053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17135747, "featuredRunMedia": null, "reactionVideos": [], @@ -532573,7 +532073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "144407", "time": 17135791, "featuredRunMedia": null, "reactionVideos": [], @@ -532593,7 +532093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17136800, "featuredRunMedia": null, "reactionVideos": [], @@ -532613,7 +532113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 315, + "teamId": "144385", "time": 17137098, "featuredRunMedia": null, "reactionVideos": [], @@ -532633,7 +532133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17141110, "featuredRunMedia": null, "reactionVideos": [], @@ -532653,7 +532153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17142774, "featuredRunMedia": null, "reactionVideos": [], @@ -532673,7 +532173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17143385, "featuredRunMedia": null, "reactionVideos": [], @@ -532693,7 +532193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "144259", "time": 17144225, "featuredRunMedia": null, "reactionVideos": [], @@ -532713,7 +532213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17144868, "featuredRunMedia": null, "reactionVideos": [], @@ -532733,7 +532233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17148204, "featuredRunMedia": null, "reactionVideos": [], @@ -532753,7 +532253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17148301, "featuredRunMedia": null, "reactionVideos": [], @@ -532773,7 +532273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17149177, "featuredRunMedia": null, "reactionVideos": [], @@ -532793,7 +532293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 17149626, "featuredRunMedia": null, "reactionVideos": [], @@ -532813,7 +532313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "144189", "time": 17149849, "featuredRunMedia": null, "reactionVideos": [], @@ -532833,7 +532333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 17150695, "featuredRunMedia": null, "reactionVideos": [], @@ -532853,7 +532353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17151454, "featuredRunMedia": null, "reactionVideos": [], @@ -532873,7 +532373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 362, + "teamId": "144432", "time": 17151697, "featuredRunMedia": null, "reactionVideos": [], @@ -532893,7 +532393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17151972, "featuredRunMedia": null, "reactionVideos": [], @@ -532913,7 +532413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17152904, "featuredRunMedia": null, "reactionVideos": [], @@ -532933,7 +532433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17153980, "featuredRunMedia": null, "reactionVideos": [], @@ -532953,7 +532453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17154217, "featuredRunMedia": null, "reactionVideos": [], @@ -532973,7 +532473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 17155652, "featuredRunMedia": null, "reactionVideos": [], @@ -532993,7 +532493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 348, + "teamId": "144418", "time": 17156428, "featuredRunMedia": null, "reactionVideos": [], @@ -533013,7 +532513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "144207", "time": 17156634, "featuredRunMedia": null, "reactionVideos": [], @@ -533033,7 +532533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17157081, "featuredRunMedia": null, "reactionVideos": [], @@ -533053,7 +532553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 17157540, "featuredRunMedia": null, "reactionVideos": [], @@ -533073,7 +532573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 17161829, "featuredRunMedia": null, "reactionVideos": [], @@ -533093,7 +532593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 225, + "teamId": "144295", "time": 17162319, "featuredRunMedia": null, "reactionVideos": [], @@ -533113,7 +532613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "144192", "time": 17162861, "featuredRunMedia": null, "reactionVideos": [], @@ -533133,7 +532633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17163148, "featuredRunMedia": null, "reactionVideos": [], @@ -533153,7 +532653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 17163616, "featuredRunMedia": null, "reactionVideos": [], @@ -533173,7 +532673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17163664, "featuredRunMedia": null, "reactionVideos": [], @@ -533193,7 +532693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17163699, "featuredRunMedia": null, "reactionVideos": [], @@ -533213,7 +532713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17166045, "featuredRunMedia": null, "reactionVideos": [], @@ -533233,7 +532733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17166463, "featuredRunMedia": null, "reactionVideos": [], @@ -533253,7 +532753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17166954, "featuredRunMedia": null, "reactionVideos": [], @@ -533273,7 +532773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 435, + "teamId": "144505", "time": 17168386, "featuredRunMedia": null, "reactionVideos": [], @@ -533293,7 +532793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17168613, "featuredRunMedia": null, "reactionVideos": [], @@ -533313,7 +532813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "144188", "time": 17169077, "featuredRunMedia": null, "reactionVideos": [], @@ -533333,7 +532833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 17169860, "featuredRunMedia": null, "reactionVideos": [], @@ -533353,7 +532853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 17171003, "featuredRunMedia": null, "reactionVideos": [], @@ -533373,7 +532873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17171471, "featuredRunMedia": null, "reactionVideos": [], @@ -533393,7 +532893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17171678, "featuredRunMedia": null, "reactionVideos": [], @@ -533413,7 +532913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17173650, "featuredRunMedia": null, "reactionVideos": [], @@ -533433,7 +532933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 17173857, "featuredRunMedia": null, "reactionVideos": [], @@ -533453,7 +532953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17175739, "featuredRunMedia": null, "reactionVideos": [], @@ -533473,7 +532973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 17175858, "featuredRunMedia": null, "reactionVideos": [], @@ -533493,7 +532993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17177444, "featuredRunMedia": null, "reactionVideos": [], @@ -533513,7 +533013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 17177537, "featuredRunMedia": null, "reactionVideos": [], @@ -533533,7 +533033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17177723, "featuredRunMedia": null, "reactionVideos": [], @@ -533553,7 +533053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 183, + "teamId": "144253", "time": 17177896, "featuredRunMedia": null, "reactionVideos": [], @@ -533573,7 +533073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "144335", "time": 17178649, "featuredRunMedia": null, "reactionVideos": [], @@ -533593,7 +533093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 17179694, "featuredRunMedia": null, "reactionVideos": [], @@ -533613,7 +533113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17180679, "featuredRunMedia": null, "reactionVideos": [], @@ -533633,7 +533133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 17183939, "featuredRunMedia": null, "reactionVideos": [], @@ -533653,7 +533153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17184452, "featuredRunMedia": null, "reactionVideos": [], @@ -533673,7 +533173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 17184574, "featuredRunMedia": null, "reactionVideos": [], @@ -533693,7 +533193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 17185114, "featuredRunMedia": null, "reactionVideos": [], @@ -533713,7 +533213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "144335", "time": 17185190, "featuredRunMedia": null, "reactionVideos": [], @@ -533733,7 +533233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17186294, "featuredRunMedia": null, "reactionVideos": [], @@ -533753,7 +533253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 17186432, "featuredRunMedia": null, "reactionVideos": [], @@ -533773,7 +533273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "144329", "time": 17187008, "featuredRunMedia": null, "reactionVideos": [], @@ -533793,7 +533293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 17188593, "featuredRunMedia": null, "reactionVideos": [], @@ -533813,7 +533313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 427, + "teamId": "144497", "time": 17188686, "featuredRunMedia": null, "reactionVideos": [], @@ -533833,7 +533333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 409, + "teamId": "144479", "time": 17189004, "featuredRunMedia": null, "reactionVideos": [], @@ -533853,7 +533353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 17189315, "featuredRunMedia": null, "reactionVideos": [], @@ -533873,7 +533373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 379, + "teamId": "144449", "time": 17189480, "featuredRunMedia": null, "reactionVideos": [], @@ -533893,7 +533393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 17190228, "featuredRunMedia": null, "reactionVideos": [], @@ -533913,7 +533413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17190697, "featuredRunMedia": null, "reactionVideos": [], @@ -533933,7 +533433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 250, + "teamId": "144320", "time": 17191133, "featuredRunMedia": null, "reactionVideos": [], @@ -533953,7 +533453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17191245, "featuredRunMedia": null, "reactionVideos": [], @@ -533973,7 +533473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17192590, "featuredRunMedia": null, "reactionVideos": [], @@ -533993,7 +533493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 17193074, "featuredRunMedia": null, "reactionVideos": [], @@ -534013,7 +533513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 17193978, "featuredRunMedia": null, "reactionVideos": [], @@ -534033,7 +533533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17194739, "featuredRunMedia": null, "reactionVideos": [], @@ -534053,7 +533553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 17195075, "featuredRunMedia": null, "reactionVideos": [], @@ -534073,7 +533573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 17195561, "featuredRunMedia": null, "reactionVideos": [], @@ -534093,7 +533593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 17197062, "featuredRunMedia": null, "reactionVideos": [], @@ -534113,7 +533613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 116, + "teamId": "144186", "time": 17197597, "featuredRunMedia": null, "reactionVideos": [], @@ -534133,7 +533633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 17198311, "featuredRunMedia": null, "reactionVideos": [], @@ -534153,7 +533653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 17198866, "featuredRunMedia": null, "reactionVideos": [], @@ -534173,7 +533673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 17198958, "featuredRunMedia": null, "reactionVideos": [], @@ -534193,7 +533693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 17199213, "featuredRunMedia": null, "reactionVideos": [], @@ -534213,7 +533713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 399, + "teamId": "144469", "time": 17199321, "featuredRunMedia": null, "reactionVideos": [], @@ -534237,7 +533737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17200516, "featuredRunMedia": null, "reactionVideos": [], @@ -534257,7 +533757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 17200852, "featuredRunMedia": null, "reactionVideos": [], @@ -534277,7 +533777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 17201288, "featuredRunMedia": null, "reactionVideos": [], @@ -534297,7 +533797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17201542, "featuredRunMedia": null, "reactionVideos": [], @@ -534317,7 +533817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "144127", "time": 17201787, "featuredRunMedia": null, "reactionVideos": [], @@ -534337,7 +533837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 446, + "teamId": "144516", "time": 17202292, "featuredRunMedia": null, "reactionVideos": [], @@ -534357,7 +533857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17202814, "featuredRunMedia": null, "reactionVideos": [], @@ -534377,7 +533877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "144160", "time": 17203281, "featuredRunMedia": null, "reactionVideos": [], @@ -534397,7 +533897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 17206627, "featuredRunMedia": null, "reactionVideos": [], @@ -534417,7 +533917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 17206910, "featuredRunMedia": null, "reactionVideos": [], @@ -534437,7 +533937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 17208370, "featuredRunMedia": null, "reactionVideos": [], @@ -534457,7 +533957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 17208433, "featuredRunMedia": null, "reactionVideos": [], @@ -534477,7 +533977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 17208577, "featuredRunMedia": null, "reactionVideos": [], @@ -534497,7 +533997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17211965, "featuredRunMedia": null, "reactionVideos": [], @@ -534517,7 +534017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17214736, "featuredRunMedia": null, "reactionVideos": [], @@ -534537,7 +534037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17214796, "featuredRunMedia": null, "reactionVideos": [], @@ -534557,7 +534057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 17215025, "featuredRunMedia": null, "reactionVideos": [], @@ -534577,7 +534077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17216264, "featuredRunMedia": null, "reactionVideos": [], @@ -534597,7 +534097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 17216594, "featuredRunMedia": null, "reactionVideos": [], @@ -534617,7 +534117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17217500, "featuredRunMedia": null, "reactionVideos": [], @@ -534637,7 +534137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 17217574, "featuredRunMedia": null, "reactionVideos": [], @@ -534657,7 +534157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17219198, "featuredRunMedia": null, "reactionVideos": [], @@ -534677,7 +534177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17219898, "featuredRunMedia": null, "reactionVideos": [], @@ -534697,7 +534197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 17220892, "featuredRunMedia": null, "reactionVideos": [], @@ -534717,7 +534217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 17221972, "featuredRunMedia": null, "reactionVideos": [], @@ -534737,7 +534237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17222984, "featuredRunMedia": null, "reactionVideos": [], @@ -534757,7 +534257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "144077", "time": 17223449, "featuredRunMedia": null, "reactionVideos": [], @@ -534777,7 +534277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 17223492, "featuredRunMedia": null, "reactionVideos": [], @@ -534797,7 +534297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 17226073, "featuredRunMedia": null, "reactionVideos": [], @@ -534817,7 +534317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 17227442, "featuredRunMedia": null, "reactionVideos": [], @@ -534837,7 +534337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 17228066, "featuredRunMedia": null, "reactionVideos": [], @@ -534857,7 +534357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17228457, "featuredRunMedia": null, "reactionVideos": [], @@ -534877,7 +534377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 403, + "teamId": "144473", "time": 17229312, "featuredRunMedia": null, "reactionVideos": [], @@ -534897,7 +534397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 17229529, "featuredRunMedia": null, "reactionVideos": [], @@ -534917,7 +534417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17229818, "featuredRunMedia": null, "reactionVideos": [], @@ -534937,7 +534437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 17230695, "featuredRunMedia": null, "reactionVideos": [], @@ -534957,7 +534457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17231304, "featuredRunMedia": null, "reactionVideos": [], @@ -534977,7 +534477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17232098, "featuredRunMedia": null, "reactionVideos": [], @@ -534997,7 +534497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 380, + "teamId": "144450", "time": 17232948, "featuredRunMedia": null, "reactionVideos": [], @@ -535017,7 +534517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17233463, "featuredRunMedia": null, "reactionVideos": [], @@ -535037,7 +534537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 17233632, "featuredRunMedia": null, "reactionVideos": [], @@ -535057,7 +534557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17233683, "featuredRunMedia": null, "reactionVideos": [], @@ -535077,7 +534577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 17233727, "featuredRunMedia": null, "reactionVideos": [], @@ -535097,7 +534597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 17234381, "featuredRunMedia": null, "reactionVideos": [], @@ -535117,7 +534617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 402, + "teamId": "144472", "time": 17234720, "featuredRunMedia": null, "reactionVideos": [], @@ -535137,7 +534637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 17235530, "featuredRunMedia": null, "reactionVideos": [], @@ -535161,7 +534661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 17236168, "featuredRunMedia": null, "reactionVideos": [], @@ -535181,7 +534681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 17236458, "featuredRunMedia": null, "reactionVideos": [], @@ -535201,7 +534701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 17237282, "featuredRunMedia": null, "reactionVideos": [], @@ -535221,7 +534721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 17238346, "featuredRunMedia": null, "reactionVideos": [], @@ -535241,7 +534741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 17239170, "featuredRunMedia": null, "reactionVideos": [], @@ -535265,7 +534765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17239552, "featuredRunMedia": null, "reactionVideos": [], @@ -535285,7 +534785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 17240306, "featuredRunMedia": null, "reactionVideos": [], @@ -535305,7 +534805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17240835, "featuredRunMedia": null, "reactionVideos": [], @@ -535325,7 +534825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17241261, "featuredRunMedia": null, "reactionVideos": [], @@ -535345,7 +534845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 17241308, "featuredRunMedia": null, "reactionVideos": [], @@ -535365,7 +534865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 17241889, "featuredRunMedia": null, "reactionVideos": [], @@ -535385,7 +534885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 17242265, "featuredRunMedia": null, "reactionVideos": [], @@ -535405,7 +534905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "144353", "time": 17243168, "featuredRunMedia": null, "reactionVideos": [], @@ -535425,7 +534925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 17243216, "featuredRunMedia": null, "reactionVideos": [], @@ -535445,7 +534945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17243933, "featuredRunMedia": null, "reactionVideos": [], @@ -535465,7 +534965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 366, + "teamId": "144436", "time": 17244030, "featuredRunMedia": null, "reactionVideos": [], @@ -535485,7 +534985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "144094", "time": 17244447, "featuredRunMedia": null, "reactionVideos": [], @@ -535505,7 +535005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 417, + "teamId": "144487", "time": 17244771, "featuredRunMedia": null, "reactionVideos": [], @@ -535525,7 +535025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 17245292, "featuredRunMedia": null, "reactionVideos": [], @@ -535545,7 +535045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "144100", "time": 17246328, "featuredRunMedia": null, "reactionVideos": [], @@ -535565,7 +535065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17246424, "featuredRunMedia": null, "reactionVideos": [], @@ -535585,7 +535085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 341, + "teamId": "144411", "time": 17247268, "featuredRunMedia": null, "reactionVideos": [], @@ -535605,7 +535105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 95, + "teamId": "144165", "time": 17249632, "featuredRunMedia": null, "reactionVideos": [], @@ -535625,7 +535125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 17252466, "featuredRunMedia": null, "reactionVideos": [], @@ -535645,7 +535145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17252655, "featuredRunMedia": null, "reactionVideos": [], @@ -535665,7 +535165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17253843, "featuredRunMedia": null, "reactionVideos": [], @@ -535685,7 +535185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 117, + "teamId": "144187", "time": 17253934, "featuredRunMedia": null, "reactionVideos": [], @@ -535705,7 +535205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 17254675, "featuredRunMedia": null, "reactionVideos": [], @@ -535725,7 +535225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17254747, "featuredRunMedia": null, "reactionVideos": [], @@ -535745,7 +535245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17255636, "featuredRunMedia": null, "reactionVideos": [], @@ -535765,7 +535265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17256538, "featuredRunMedia": null, "reactionVideos": [], @@ -535785,7 +535285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "144202", "time": 17260427, "featuredRunMedia": null, "reactionVideos": [], @@ -535805,7 +535305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17261553, "featuredRunMedia": null, "reactionVideos": [], @@ -535825,7 +535325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 17262084, "featuredRunMedia": null, "reactionVideos": [], @@ -535845,7 +535345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "144337", "time": 17262665, "featuredRunMedia": null, "reactionVideos": [], @@ -535865,7 +535365,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17263369, "featuredRunMedia": null, "reactionVideos": [], @@ -535885,7 +535385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17264821, "featuredRunMedia": null, "reactionVideos": [], @@ -535905,7 +535405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17265170, "featuredRunMedia": null, "reactionVideos": [], @@ -535925,7 +535425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "144174", "time": 17265213, "featuredRunMedia": null, "reactionVideos": [], @@ -535945,7 +535445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17265539, "featuredRunMedia": null, "reactionVideos": [], @@ -535965,7 +535465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 436, + "teamId": "144506", "time": 17266068, "featuredRunMedia": null, "reactionVideos": [], @@ -535985,7 +535485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 17266514, "featuredRunMedia": null, "reactionVideos": [], @@ -536005,7 +535505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17266563, "featuredRunMedia": null, "reactionVideos": [], @@ -536025,7 +535525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17266765, "featuredRunMedia": null, "reactionVideos": [], @@ -536045,7 +535545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 17267389, "featuredRunMedia": null, "reactionVideos": [], @@ -536065,7 +535565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 17267801, "featuredRunMedia": null, "reactionVideos": [], @@ -536085,7 +535585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "144254", "time": 17267932, "featuredRunMedia": null, "reactionVideos": [], @@ -536105,7 +535605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 404, + "teamId": "144474", "time": 17268896, "featuredRunMedia": null, "reactionVideos": [], @@ -536125,7 +535625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 17269017, "featuredRunMedia": null, "reactionVideos": [], @@ -536145,7 +535645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 418, + "teamId": "144488", "time": 17270880, "featuredRunMedia": null, "reactionVideos": [], @@ -536165,7 +535665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17272153, "featuredRunMedia": null, "reactionVideos": [], @@ -536185,7 +535685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17272268, "featuredRunMedia": null, "reactionVideos": [], @@ -536205,7 +535705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 17273293, "featuredRunMedia": null, "reactionVideos": [], @@ -536225,7 +535725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17273846, "featuredRunMedia": null, "reactionVideos": [], @@ -536245,7 +535745,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 17274481, "featuredRunMedia": null, "reactionVideos": [], @@ -536265,7 +535765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17274529, "featuredRunMedia": null, "reactionVideos": [], @@ -536285,7 +535785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 17275216, "featuredRunMedia": null, "reactionVideos": [], @@ -536309,7 +535809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "144084", "time": 17275282, "featuredRunMedia": null, "reactionVideos": [], @@ -536329,7 +535829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 17277248, "featuredRunMedia": null, "reactionVideos": [], @@ -536349,7 +535849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 17277724, "featuredRunMedia": null, "reactionVideos": [], @@ -536369,7 +535869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17280201, "featuredRunMedia": null, "reactionVideos": [], @@ -536389,7 +535889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17280635, "featuredRunMedia": null, "reactionVideos": [], @@ -536409,7 +535909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17280992, "featuredRunMedia": null, "reactionVideos": [], @@ -536429,7 +535929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 322, + "teamId": "144392", "time": 17281633, "featuredRunMedia": null, "reactionVideos": [], @@ -536449,7 +535949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17282836, "featuredRunMedia": null, "reactionVideos": [], @@ -536469,7 +535969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 17284924, "featuredRunMedia": null, "reactionVideos": [], @@ -536489,7 +535989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 17285077, "featuredRunMedia": null, "reactionVideos": [], @@ -536509,7 +536009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 17285722, "featuredRunMedia": null, "reactionVideos": [], @@ -536529,7 +536029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 17286280, "featuredRunMedia": null, "reactionVideos": [], @@ -536549,7 +536049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17286375, "featuredRunMedia": null, "reactionVideos": [], @@ -536569,7 +536069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17287622, "featuredRunMedia": null, "reactionVideos": [], @@ -536589,7 +536089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 17287931, "featuredRunMedia": null, "reactionVideos": [], @@ -536609,7 +536109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17288781, "featuredRunMedia": null, "reactionVideos": [], @@ -536629,7 +536129,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17290258, "featuredRunMedia": null, "reactionVideos": [], @@ -536649,7 +536149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 17291008, "featuredRunMedia": null, "reactionVideos": [], @@ -536669,7 +536169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 17291530, "featuredRunMedia": null, "reactionVideos": [], @@ -536689,7 +536189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17291933, "featuredRunMedia": null, "reactionVideos": [], @@ -536709,7 +536209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "144128", "time": 17292195, "featuredRunMedia": null, "reactionVideos": [], @@ -536729,7 +536229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17292621, "featuredRunMedia": null, "reactionVideos": [], @@ -536749,7 +536249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17293064, "featuredRunMedia": null, "reactionVideos": [], @@ -536769,7 +536269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "144156", "time": 17294139, "featuredRunMedia": null, "reactionVideos": [], @@ -536789,7 +536289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17294318, "featuredRunMedia": null, "reactionVideos": [], @@ -536809,7 +536309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 17294379, "featuredRunMedia": null, "reactionVideos": [], @@ -536829,7 +536329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17294438, "featuredRunMedia": null, "reactionVideos": [], @@ -536849,7 +536349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17294518, "featuredRunMedia": null, "reactionVideos": [], @@ -536869,7 +536369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17294962, "featuredRunMedia": null, "reactionVideos": [], @@ -536889,7 +536389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17295112, "featuredRunMedia": null, "reactionVideos": [], @@ -536909,7 +536409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17295460, "featuredRunMedia": null, "reactionVideos": [], @@ -536929,7 +536429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17295515, "featuredRunMedia": null, "reactionVideos": [], @@ -536949,7 +536449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "144082", "time": 17295755, "featuredRunMedia": null, "reactionVideos": [], @@ -536969,7 +536469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17296246, "featuredRunMedia": null, "reactionVideos": [], @@ -536989,7 +536489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17296991, "featuredRunMedia": null, "reactionVideos": [], @@ -537009,7 +536509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 17297033, "featuredRunMedia": null, "reactionVideos": [], @@ -537029,7 +536529,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17297066, "featuredRunMedia": null, "reactionVideos": [], @@ -537049,7 +536549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17297468, "featuredRunMedia": null, "reactionVideos": [], @@ -537069,7 +536569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17298447, "featuredRunMedia": null, "reactionVideos": [], @@ -537089,7 +536589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17299043, "featuredRunMedia": null, "reactionVideos": [], @@ -537109,7 +536609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17299147, "featuredRunMedia": null, "reactionVideos": [], @@ -537129,7 +536629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "144267", "time": 17299210, "featuredRunMedia": null, "reactionVideos": [], @@ -537149,7 +536649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 17299298, "featuredRunMedia": null, "reactionVideos": [], @@ -537169,7 +536669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 17299419, "featuredRunMedia": null, "reactionVideos": [], @@ -537189,7 +536689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17300468, "featuredRunMedia": null, "reactionVideos": [], @@ -537209,7 +536709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17300629, "featuredRunMedia": null, "reactionVideos": [], @@ -537229,7 +536729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 17301965, "featuredRunMedia": null, "reactionVideos": [], @@ -537249,7 +536749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17302043, "featuredRunMedia": null, "reactionVideos": [], @@ -537269,7 +536769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17302091, "featuredRunMedia": null, "reactionVideos": [], @@ -537289,7 +536789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 17302185, "featuredRunMedia": null, "reactionVideos": [], @@ -537309,7 +536809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17302522, "featuredRunMedia": null, "reactionVideos": [], @@ -537329,7 +536829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 17302978, "featuredRunMedia": null, "reactionVideos": [], @@ -537349,7 +536849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17303684, "featuredRunMedia": null, "reactionVideos": [], @@ -537369,7 +536869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 17304314, "featuredRunMedia": null, "reactionVideos": [], @@ -537389,7 +536889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 17304691, "featuredRunMedia": null, "reactionVideos": [], @@ -537409,7 +536909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 17306087, "featuredRunMedia": null, "reactionVideos": [], @@ -537429,7 +536929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17306398, "featuredRunMedia": null, "reactionVideos": [], @@ -537449,7 +536949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 17307084, "featuredRunMedia": null, "reactionVideos": [], @@ -537469,7 +536969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 245, + "teamId": "144315", "time": 17307750, "featuredRunMedia": null, "reactionVideos": [], @@ -537489,7 +536989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 416, + "teamId": "144486", "time": 17308029, "featuredRunMedia": null, "reactionVideos": [], @@ -537509,7 +537009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17308208, "featuredRunMedia": null, "reactionVideos": [], @@ -537529,7 +537029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 17308389, "featuredRunMedia": null, "reactionVideos": [], @@ -537549,7 +537049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17308678, "featuredRunMedia": null, "reactionVideos": [], @@ -537569,7 +537069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "144224", "time": 17309279, "featuredRunMedia": null, "reactionVideos": [], @@ -537589,7 +537089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 402, + "teamId": "144472", "time": 17309393, "featuredRunMedia": null, "reactionVideos": [], @@ -537609,7 +537109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17309955, "featuredRunMedia": null, "reactionVideos": [], @@ -537629,7 +537129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17310173, "featuredRunMedia": null, "reactionVideos": [], @@ -537653,7 +537153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 17312265, "featuredRunMedia": null, "reactionVideos": [], @@ -537673,7 +537173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17313826, "featuredRunMedia": null, "reactionVideos": [], @@ -537693,7 +537193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "144191", "time": 17313907, "featuredRunMedia": null, "reactionVideos": [], @@ -537713,7 +537213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17313995, "featuredRunMedia": null, "reactionVideos": [], @@ -537733,7 +537233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 414, + "teamId": "144484", "time": 17314991, "featuredRunMedia": null, "reactionVideos": [], @@ -537753,7 +537253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17315041, "featuredRunMedia": null, "reactionVideos": [], @@ -537773,7 +537273,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17315757, "featuredRunMedia": null, "reactionVideos": [], @@ -537793,7 +537293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17316173, "featuredRunMedia": null, "reactionVideos": [], @@ -537813,7 +537313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17318039, "featuredRunMedia": null, "reactionVideos": [], @@ -537833,7 +537333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17321411, "featuredRunMedia": null, "reactionVideos": [], @@ -537853,7 +537353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17321703, "featuredRunMedia": null, "reactionVideos": [], @@ -537873,7 +537373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17322594, "featuredRunMedia": null, "reactionVideos": [], @@ -537893,7 +537393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17322642, "featuredRunMedia": null, "reactionVideos": [], @@ -537913,7 +537413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17322750, "featuredRunMedia": null, "reactionVideos": [], @@ -537937,7 +537437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17323039, "featuredRunMedia": null, "reactionVideos": [], @@ -537957,7 +537457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 17323488, "featuredRunMedia": null, "reactionVideos": [], @@ -537977,7 +537477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 17324051, "featuredRunMedia": null, "reactionVideos": [], @@ -537997,7 +537497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17324328, "featuredRunMedia": null, "reactionVideos": [], @@ -538017,7 +537517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 17325447, "featuredRunMedia": null, "reactionVideos": [], @@ -538037,7 +537537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17326422, "featuredRunMedia": null, "reactionVideos": [], @@ -538057,7 +537557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "144332", "time": 17326576, "featuredRunMedia": null, "reactionVideos": [], @@ -538077,7 +537577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 17330740, "featuredRunMedia": null, "reactionVideos": [], @@ -538097,7 +537597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17330791, "featuredRunMedia": null, "reactionVideos": [], @@ -538117,7 +537617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17331349, "featuredRunMedia": null, "reactionVideos": [], @@ -538137,7 +537637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17331874, "featuredRunMedia": null, "reactionVideos": [], @@ -538157,7 +537657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "144080", "time": 17332077, "featuredRunMedia": null, "reactionVideos": [], @@ -538177,7 +537677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 17332914, "featuredRunMedia": null, "reactionVideos": [], @@ -538197,7 +537697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17333013, "featuredRunMedia": null, "reactionVideos": [], @@ -538217,7 +537717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 17335732, "featuredRunMedia": null, "reactionVideos": [], @@ -538237,7 +537737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17337808, "featuredRunMedia": null, "reactionVideos": [], @@ -538257,7 +537757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17338314, "featuredRunMedia": null, "reactionVideos": [], @@ -538277,7 +537777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 363, + "teamId": "144433", "time": 17339408, "featuredRunMedia": null, "reactionVideos": [], @@ -538297,7 +537797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 17340647, "featuredRunMedia": null, "reactionVideos": [], @@ -538317,7 +537817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17341243, "featuredRunMedia": null, "reactionVideos": [], @@ -538337,7 +537837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17341367, "featuredRunMedia": null, "reactionVideos": [], @@ -538357,7 +537857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17341899, "featuredRunMedia": null, "reactionVideos": [], @@ -538377,7 +537877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 17344630, "featuredRunMedia": null, "reactionVideos": [], @@ -538397,7 +537897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 17344808, "featuredRunMedia": null, "reactionVideos": [], @@ -538417,7 +537917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 239, + "teamId": "144309", "time": 17345681, "featuredRunMedia": null, "reactionVideos": [], @@ -538437,7 +537937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17347243, "featuredRunMedia": null, "reactionVideos": [], @@ -538457,7 +537957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 17347566, "featuredRunMedia": null, "reactionVideos": [], @@ -538477,7 +537977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17348789, "featuredRunMedia": null, "reactionVideos": [], @@ -538497,7 +537997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17349763, "featuredRunMedia": null, "reactionVideos": [], @@ -538517,7 +538017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 17351595, "featuredRunMedia": null, "reactionVideos": [], @@ -538537,7 +538037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17351981, "featuredRunMedia": null, "reactionVideos": [], @@ -538557,7 +538057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17352222, "featuredRunMedia": null, "reactionVideos": [], @@ -538577,7 +538077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17353023, "featuredRunMedia": null, "reactionVideos": [], @@ -538597,7 +538097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "144173", "time": 17353227, "featuredRunMedia": null, "reactionVideos": [], @@ -538617,7 +538117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17353718, "featuredRunMedia": null, "reactionVideos": [], @@ -538637,7 +538137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17355687, "featuredRunMedia": null, "reactionVideos": [], @@ -538657,7 +538157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 357, + "teamId": "144427", "time": 17356590, "featuredRunMedia": null, "reactionVideos": [], @@ -538677,7 +538177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17357865, "featuredRunMedia": null, "reactionVideos": [], @@ -538697,7 +538197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 17358720, "featuredRunMedia": null, "reactionVideos": [], @@ -538717,7 +538217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17359698, "featuredRunMedia": null, "reactionVideos": [], @@ -538741,7 +538241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17360075, "featuredRunMedia": null, "reactionVideos": [], @@ -538761,7 +538261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 17361286, "featuredRunMedia": null, "reactionVideos": [], @@ -538781,7 +538281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17361391, "featuredRunMedia": null, "reactionVideos": [], @@ -538801,7 +538301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 17361643, "featuredRunMedia": null, "reactionVideos": [], @@ -538821,7 +538321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "144229", "time": 17363199, "featuredRunMedia": null, "reactionVideos": [], @@ -538841,7 +538341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17363266, "featuredRunMedia": null, "reactionVideos": [], @@ -538861,7 +538361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 427, + "teamId": "144497", "time": 17363673, "featuredRunMedia": null, "reactionVideos": [], @@ -538881,7 +538381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 17364793, "featuredRunMedia": null, "reactionVideos": [], @@ -538901,7 +538401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "144258", "time": 17365688, "featuredRunMedia": null, "reactionVideos": [], @@ -538921,7 +538421,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17366911, "featuredRunMedia": null, "reactionVideos": [], @@ -538941,7 +538441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17367435, "featuredRunMedia": null, "reactionVideos": [], @@ -538961,7 +538461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 17368545, "featuredRunMedia": null, "reactionVideos": [], @@ -538981,7 +538481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17369816, "featuredRunMedia": null, "reactionVideos": [], @@ -539001,7 +538501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17369893, "featuredRunMedia": null, "reactionVideos": [], @@ -539021,7 +538521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17370507, "featuredRunMedia": null, "reactionVideos": [], @@ -539041,7 +538541,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 17370794, "featuredRunMedia": null, "reactionVideos": [], @@ -539061,7 +538561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17372696, "featuredRunMedia": null, "reactionVideos": [], @@ -539081,7 +538581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17373950, "featuredRunMedia": null, "reactionVideos": [], @@ -539101,7 +538601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 17374301, "featuredRunMedia": null, "reactionVideos": [], @@ -539121,7 +538621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17375010, "featuredRunMedia": null, "reactionVideos": [], @@ -539141,7 +538641,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17375280, "featuredRunMedia": null, "reactionVideos": [], @@ -539161,7 +538661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 362, + "teamId": "144432", "time": 17375552, "featuredRunMedia": null, "reactionVideos": [], @@ -539181,7 +538681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "144228", "time": 17376081, "featuredRunMedia": null, "reactionVideos": [], @@ -539201,7 +538701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17376510, "featuredRunMedia": null, "reactionVideos": [], @@ -539221,7 +538721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 17376867, "featuredRunMedia": null, "reactionVideos": [], @@ -539241,7 +538741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17378752, "featuredRunMedia": null, "reactionVideos": [], @@ -539261,7 +538761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "144211", "time": 17378876, "featuredRunMedia": null, "reactionVideos": [], @@ -539281,7 +538781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17379736, "featuredRunMedia": null, "reactionVideos": [], @@ -539301,7 +538801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 17380139, "featuredRunMedia": null, "reactionVideos": [], @@ -539321,7 +538821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "144294", "time": 17380238, "featuredRunMedia": null, "reactionVideos": [], @@ -539341,7 +538841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17380661, "featuredRunMedia": null, "reactionVideos": [], @@ -539361,7 +538861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17381181, "featuredRunMedia": null, "reactionVideos": [], @@ -539381,7 +538881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17381487, "featuredRunMedia": null, "reactionVideos": [], @@ -539401,7 +538901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 17381623, "featuredRunMedia": null, "reactionVideos": [], @@ -539421,7 +538921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 17382109, "featuredRunMedia": null, "reactionVideos": [], @@ -539441,7 +538941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 17383490, "featuredRunMedia": null, "reactionVideos": [], @@ -539461,7 +538961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 17383554, "featuredRunMedia": null, "reactionVideos": [], @@ -539481,7 +538981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17384113, "featuredRunMedia": null, "reactionVideos": [], @@ -539501,7 +539001,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17384180, "featuredRunMedia": null, "reactionVideos": [], @@ -539521,7 +539021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 17384267, "featuredRunMedia": null, "reactionVideos": [], @@ -539541,7 +539041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 423, + "teamId": "144493", "time": 17384533, "featuredRunMedia": null, "reactionVideos": [], @@ -539561,7 +539061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17384689, "featuredRunMedia": null, "reactionVideos": [], @@ -539581,7 +539081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 17386402, "featuredRunMedia": null, "reactionVideos": [], @@ -539601,7 +539101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 17386449, "featuredRunMedia": null, "reactionVideos": [], @@ -539621,7 +539121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 17386534, "featuredRunMedia": null, "reactionVideos": [], @@ -539641,7 +539141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17388150, "featuredRunMedia": null, "reactionVideos": [], @@ -539661,7 +539161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "144138", "time": 17388643, "featuredRunMedia": null, "reactionVideos": [], @@ -539685,7 +539185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17388799, "featuredRunMedia": null, "reactionVideos": [], @@ -539705,7 +539205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 17389392, "featuredRunMedia": null, "reactionVideos": [], @@ -539725,7 +539225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17389962, "featuredRunMedia": null, "reactionVideos": [], @@ -539745,7 +539245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 17391315, "featuredRunMedia": null, "reactionVideos": [], @@ -539765,7 +539265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "144123", "time": 17392901, "featuredRunMedia": null, "reactionVideos": [], @@ -539785,7 +539285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "144270", "time": 17394923, "featuredRunMedia": null, "reactionVideos": [], @@ -539805,7 +539305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17396601, "featuredRunMedia": null, "reactionVideos": [], @@ -539825,7 +539325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "144158", "time": 17396701, "featuredRunMedia": null, "reactionVideos": [], @@ -539845,7 +539345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17398148, "featuredRunMedia": null, "reactionVideos": [], @@ -539865,7 +539365,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17398612, "featuredRunMedia": null, "reactionVideos": [], @@ -539885,7 +539385,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17399052, "featuredRunMedia": null, "reactionVideos": [], @@ -539905,7 +539405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 17401233, "featuredRunMedia": null, "reactionVideos": [], @@ -539925,7 +539425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17402471, "featuredRunMedia": null, "reactionVideos": [], @@ -539949,7 +539449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 17402939, "featuredRunMedia": null, "reactionVideos": [], @@ -539969,7 +539469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 425, + "teamId": "144495", "time": 17404114, "featuredRunMedia": null, "reactionVideos": [], @@ -539989,7 +539489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "144118", "time": 17405537, "featuredRunMedia": null, "reactionVideos": [], @@ -540009,7 +539509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17405711, "featuredRunMedia": null, "reactionVideos": [], @@ -540029,7 +539529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 17405839, "featuredRunMedia": null, "reactionVideos": [], @@ -540049,7 +539549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 17406016, "featuredRunMedia": null, "reactionVideos": [], @@ -540069,7 +539569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 17406514, "featuredRunMedia": null, "reactionVideos": [], @@ -540089,7 +539589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17406557, "featuredRunMedia": null, "reactionVideos": [], @@ -540109,7 +539609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "144248", "time": 17407143, "featuredRunMedia": null, "reactionVideos": [], @@ -540129,7 +539629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17407245, "featuredRunMedia": null, "reactionVideos": [], @@ -540149,7 +539649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 17408921, "featuredRunMedia": null, "reactionVideos": [], @@ -540169,7 +539669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 17409413, "featuredRunMedia": null, "reactionVideos": [], @@ -540189,7 +539689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 261, + "teamId": "144331", "time": 17409597, "featuredRunMedia": null, "reactionVideos": [], @@ -540209,7 +539709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17411735, "featuredRunMedia": null, "reactionVideos": [], @@ -540229,7 +539729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 17411791, "featuredRunMedia": null, "reactionVideos": [], @@ -540249,7 +539749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 17412706, "featuredRunMedia": null, "reactionVideos": [], @@ -540269,7 +539769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17412918, "featuredRunMedia": null, "reactionVideos": [], @@ -540289,7 +539789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 17413615, "featuredRunMedia": null, "reactionVideos": [], @@ -540309,7 +539809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 345, + "teamId": "144415", "time": 17414040, "featuredRunMedia": null, "reactionVideos": [], @@ -540329,7 +539829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 386, + "teamId": "144456", "time": 17416211, "featuredRunMedia": null, "reactionVideos": [], @@ -540349,7 +539849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 433, + "teamId": "144503", "time": 17416701, "featuredRunMedia": null, "reactionVideos": [], @@ -540369,7 +539869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 17416753, "featuredRunMedia": null, "reactionVideos": [], @@ -540389,7 +539889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17418654, "featuredRunMedia": null, "reactionVideos": [], @@ -540409,7 +539909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 17419133, "featuredRunMedia": null, "reactionVideos": [], @@ -540429,7 +539929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 370, + "teamId": "144440", "time": 17419814, "featuredRunMedia": null, "reactionVideos": [], @@ -540449,7 +539949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17420712, "featuredRunMedia": null, "reactionVideos": [], @@ -540469,7 +539969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 17420862, "featuredRunMedia": null, "reactionVideos": [], @@ -540489,7 +539989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 17421006, "featuredRunMedia": null, "reactionVideos": [], @@ -540509,7 +540009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17421298, "featuredRunMedia": null, "reactionVideos": [], @@ -540529,7 +540029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17421474, "featuredRunMedia": null, "reactionVideos": [], @@ -540549,7 +540049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 438, + "teamId": "144508", "time": 17422137, "featuredRunMedia": null, "reactionVideos": [], @@ -540569,7 +540069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 17422236, "featuredRunMedia": null, "reactionVideos": [], @@ -540589,7 +540089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 17423058, "featuredRunMedia": null, "reactionVideos": [], @@ -540609,7 +540109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "144405", "time": 17423724, "featuredRunMedia": null, "reactionVideos": [], @@ -540629,7 +540129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17424135, "featuredRunMedia": null, "reactionVideos": [], @@ -540649,7 +540149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "144110", "time": 17424347, "featuredRunMedia": null, "reactionVideos": [], @@ -540669,7 +540169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "144267", "time": 17425631, "featuredRunMedia": null, "reactionVideos": [], @@ -540689,7 +540189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 17425848, "featuredRunMedia": null, "reactionVideos": [], @@ -540709,7 +540209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17426148, "featuredRunMedia": null, "reactionVideos": [], @@ -540729,7 +540229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 418, + "teamId": "144488", "time": 17426411, "featuredRunMedia": null, "reactionVideos": [], @@ -540749,7 +540249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 17426863, "featuredRunMedia": null, "reactionVideos": [], @@ -540769,7 +540269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 17428564, "featuredRunMedia": null, "reactionVideos": [], @@ -540789,7 +540289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 17429217, "featuredRunMedia": null, "reactionVideos": [], @@ -540809,7 +540309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17429278, "featuredRunMedia": null, "reactionVideos": [], @@ -540829,7 +540329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17429615, "featuredRunMedia": null, "reactionVideos": [], @@ -540849,7 +540349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 17430236, "featuredRunMedia": null, "reactionVideos": [], @@ -540869,7 +540369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17430602, "featuredRunMedia": null, "reactionVideos": [], @@ -540889,7 +540389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17430732, "featuredRunMedia": null, "reactionVideos": [], @@ -540909,7 +540409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 17431135, "featuredRunMedia": null, "reactionVideos": [], @@ -540929,7 +540429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17432200, "featuredRunMedia": null, "reactionVideos": [], @@ -540949,7 +540449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17435000, "featuredRunMedia": null, "reactionVideos": [], @@ -540969,7 +540469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 17435946, "featuredRunMedia": null, "reactionVideos": [], @@ -540989,7 +540489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 17436645, "featuredRunMedia": null, "reactionVideos": [], @@ -541009,7 +540509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17437092, "featuredRunMedia": null, "reactionVideos": [], @@ -541029,7 +540529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 17438008, "featuredRunMedia": null, "reactionVideos": [], @@ -541049,7 +540549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "144160", "time": 17439222, "featuredRunMedia": null, "reactionVideos": [], @@ -541069,7 +540569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 392, + "teamId": "144462", "time": 17439447, "featuredRunMedia": null, "reactionVideos": [], @@ -541089,7 +540589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 17439745, "featuredRunMedia": null, "reactionVideos": [], @@ -541109,7 +540609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 398, + "teamId": "144468", "time": 17441111, "featuredRunMedia": null, "reactionVideos": [], @@ -541129,7 +540629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17441198, "featuredRunMedia": null, "reactionVideos": [], @@ -541149,7 +540649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "144273", "time": 17441968, "featuredRunMedia": null, "reactionVideos": [], @@ -541169,7 +540669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 17442235, "featuredRunMedia": null, "reactionVideos": [], @@ -541189,7 +540689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17442286, "featuredRunMedia": null, "reactionVideos": [], @@ -541209,7 +540709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 17442539, "featuredRunMedia": null, "reactionVideos": [], @@ -541229,7 +540729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 17443164, "featuredRunMedia": null, "reactionVideos": [], @@ -541249,7 +540749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17444201, "featuredRunMedia": null, "reactionVideos": [], @@ -541269,7 +540769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17445012, "featuredRunMedia": null, "reactionVideos": [], @@ -541289,7 +540789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "144333", "time": 17445666, "featuredRunMedia": null, "reactionVideos": [], @@ -541309,7 +540809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "144121", "time": 17446421, "featuredRunMedia": null, "reactionVideos": [], @@ -541329,7 +540829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 17448015, "featuredRunMedia": null, "reactionVideos": [], @@ -541349,7 +540849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17448337, "featuredRunMedia": null, "reactionVideos": [], @@ -541369,7 +540869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 318, + "teamId": "144388", "time": 17449082, "featuredRunMedia": null, "reactionVideos": [], @@ -541389,7 +540889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 17450277, "featuredRunMedia": null, "reactionVideos": [], @@ -541409,7 +540909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17452291, "featuredRunMedia": null, "reactionVideos": [], @@ -541429,7 +540929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 17452562, "featuredRunMedia": null, "reactionVideos": [], @@ -541449,7 +540949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "144244", "time": 17453383, "featuredRunMedia": null, "reactionVideos": [], @@ -541469,7 +540969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17454015, "featuredRunMedia": null, "reactionVideos": [], @@ -541489,7 +540989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "144180", "time": 17454130, "featuredRunMedia": null, "reactionVideos": [], @@ -541509,7 +541009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "144302", "time": 17455478, "featuredRunMedia": null, "reactionVideos": [], @@ -541529,7 +541029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 17456633, "featuredRunMedia": null, "reactionVideos": [], @@ -541549,7 +541049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 17459019, "featuredRunMedia": null, "reactionVideos": [], @@ -541569,7 +541069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17460533, "featuredRunMedia": null, "reactionVideos": [], @@ -541589,7 +541089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 17462364, "featuredRunMedia": null, "reactionVideos": [], @@ -541609,7 +541109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 17462586, "featuredRunMedia": null, "reactionVideos": [], @@ -541629,7 +541129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17462884, "featuredRunMedia": null, "reactionVideos": [], @@ -541649,7 +541149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17463308, "featuredRunMedia": null, "reactionVideos": [], @@ -541669,7 +541169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17464280, "featuredRunMedia": null, "reactionVideos": [], @@ -541689,7 +541189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17464344, "featuredRunMedia": null, "reactionVideos": [], @@ -541709,7 +541209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17464609, "featuredRunMedia": null, "reactionVideos": [], @@ -541729,7 +541229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 17465470, "featuredRunMedia": null, "reactionVideos": [], @@ -541749,7 +541249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17466144, "featuredRunMedia": null, "reactionVideos": [], @@ -541769,7 +541269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17466958, "featuredRunMedia": null, "reactionVideos": [], @@ -541789,7 +541289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17468131, "featuredRunMedia": null, "reactionVideos": [], @@ -541809,7 +541309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 125, + "teamId": "144195", "time": 17468504, "featuredRunMedia": null, "reactionVideos": [], @@ -541829,7 +541329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17468701, "featuredRunMedia": null, "reactionVideos": [], @@ -541849,7 +541349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17469704, "featuredRunMedia": null, "reactionVideos": [], @@ -541869,7 +541369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 439, + "teamId": "144509", "time": 17469836, "featuredRunMedia": null, "reactionVideos": [], @@ -541889,7 +541389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "144215", "time": 17470307, "featuredRunMedia": null, "reactionVideos": [], @@ -541909,7 +541409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17472387, "featuredRunMedia": null, "reactionVideos": [], @@ -541929,7 +541429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17474615, "featuredRunMedia": null, "reactionVideos": [], @@ -541949,7 +541449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17474863, "featuredRunMedia": null, "reactionVideos": [], @@ -541969,7 +541469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17475165, "featuredRunMedia": null, "reactionVideos": [], @@ -541989,7 +541489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 17476935, "featuredRunMedia": null, "reactionVideos": [], @@ -542009,7 +541509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 17477301, "featuredRunMedia": null, "reactionVideos": [], @@ -542029,7 +541529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 85, + "teamId": "144155", "time": 17478124, "featuredRunMedia": null, "reactionVideos": [], @@ -542049,7 +541549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 17478323, "featuredRunMedia": null, "reactionVideos": [], @@ -542069,7 +541569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17478410, "featuredRunMedia": null, "reactionVideos": [], @@ -542089,7 +541589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17480595, "featuredRunMedia": null, "reactionVideos": [], @@ -542109,7 +541609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17480674, "featuredRunMedia": null, "reactionVideos": [], @@ -542129,7 +541629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17480826, "featuredRunMedia": null, "reactionVideos": [], @@ -542149,7 +541649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17480897, "featuredRunMedia": null, "reactionVideos": [], @@ -542169,7 +541669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17481157, "featuredRunMedia": null, "reactionVideos": [], @@ -542189,7 +541689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 17481215, "featuredRunMedia": null, "reactionVideos": [], @@ -542209,7 +541709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17483087, "featuredRunMedia": null, "reactionVideos": [], @@ -542229,7 +541729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "144148", "time": 17483833, "featuredRunMedia": null, "reactionVideos": [], @@ -542249,7 +541749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 17485680, "featuredRunMedia": null, "reactionVideos": [], @@ -542269,7 +541769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17486074, "featuredRunMedia": null, "reactionVideos": [], @@ -542289,7 +541789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 362, + "teamId": "144432", "time": 17487088, "featuredRunMedia": null, "reactionVideos": [], @@ -542309,7 +541809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 17488469, "featuredRunMedia": null, "reactionVideos": [], @@ -542329,7 +541829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 17488692, "featuredRunMedia": null, "reactionVideos": [], @@ -542349,7 +541849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17489073, "featuredRunMedia": null, "reactionVideos": [], @@ -542369,7 +541869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "144200", "time": 17489170, "featuredRunMedia": null, "reactionVideos": [], @@ -542389,7 +541889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 421, + "teamId": "144491", "time": 17491385, "featuredRunMedia": null, "reactionVideos": [], @@ -542409,7 +541909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17492032, "featuredRunMedia": null, "reactionVideos": [], @@ -542429,7 +541929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 17492107, "featuredRunMedia": null, "reactionVideos": [], @@ -542449,7 +541949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17492164, "featuredRunMedia": null, "reactionVideos": [], @@ -542469,7 +541969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 17492729, "featuredRunMedia": null, "reactionVideos": [], @@ -542489,7 +541989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 17493304, "featuredRunMedia": null, "reactionVideos": [], @@ -542509,7 +542009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17493454, "featuredRunMedia": null, "reactionVideos": [], @@ -542529,7 +542029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17496617, "featuredRunMedia": null, "reactionVideos": [], @@ -542549,7 +542049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 17496818, "featuredRunMedia": null, "reactionVideos": [], @@ -542573,7 +542073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "144100", "time": 17497624, "featuredRunMedia": null, "reactionVideos": [], @@ -542593,7 +542093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17498069, "featuredRunMedia": null, "reactionVideos": [], @@ -542613,7 +542113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 17499052, "featuredRunMedia": null, "reactionVideos": [], @@ -542633,7 +542133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 17500564, "featuredRunMedia": null, "reactionVideos": [], @@ -542653,7 +542153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 17500710, "featuredRunMedia": null, "reactionVideos": [], @@ -542673,7 +542173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "144135", "time": 17501223, "featuredRunMedia": null, "reactionVideos": [], @@ -542693,7 +542193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 17501546, "featuredRunMedia": null, "reactionVideos": [], @@ -542713,7 +542213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17503164, "featuredRunMedia": null, "reactionVideos": [], @@ -542733,7 +542233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17503508, "featuredRunMedia": null, "reactionVideos": [], @@ -542753,7 +542253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 17503593, "featuredRunMedia": null, "reactionVideos": [], @@ -542773,7 +542273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17507611, "featuredRunMedia": null, "reactionVideos": [], @@ -542793,7 +542293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "144077", "time": 17507803, "featuredRunMedia": null, "reactionVideos": [], @@ -542813,7 +542313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "144300", "time": 17508374, "featuredRunMedia": null, "reactionVideos": [], @@ -542833,7 +542333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "144238", "time": 17509007, "featuredRunMedia": null, "reactionVideos": [], @@ -542853,7 +542353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17509057, "featuredRunMedia": null, "reactionVideos": [], @@ -542873,7 +542373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17509834, "featuredRunMedia": null, "reactionVideos": [], @@ -542893,7 +542393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 17510894, "featuredRunMedia": null, "reactionVideos": [], @@ -542913,7 +542413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 17510943, "featuredRunMedia": null, "reactionVideos": [], @@ -542933,7 +542433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 17512389, "featuredRunMedia": null, "reactionVideos": [], @@ -542953,7 +542453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17512926, "featuredRunMedia": null, "reactionVideos": [], @@ -542973,7 +542473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17514019, "featuredRunMedia": null, "reactionVideos": [], @@ -542993,7 +542493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 304, + "teamId": "144374", "time": 17514613, "featuredRunMedia": null, "reactionVideos": [], @@ -543013,7 +542513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17515244, "featuredRunMedia": null, "reactionVideos": [], @@ -543033,7 +542533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17515441, "featuredRunMedia": null, "reactionVideos": [], @@ -543053,7 +542553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 274, + "teamId": "144344", "time": 17515524, "featuredRunMedia": null, "reactionVideos": [], @@ -543073,7 +542573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17515573, "featuredRunMedia": null, "reactionVideos": [], @@ -543097,7 +542597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17515633, "featuredRunMedia": null, "reactionVideos": [], @@ -543117,7 +542617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 17515701, "featuredRunMedia": null, "reactionVideos": [], @@ -543137,7 +542637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 328, + "teamId": "144398", "time": 17515737, "featuredRunMedia": null, "reactionVideos": [], @@ -543157,7 +542657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 317, + "teamId": "144387", "time": 17516759, "featuredRunMedia": null, "reactionVideos": [], @@ -543177,7 +542677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "144177", "time": 17516930, "featuredRunMedia": null, "reactionVideos": [], @@ -543197,7 +542697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 17517232, "featuredRunMedia": null, "reactionVideos": [], @@ -543217,7 +542717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 17517477, "featuredRunMedia": null, "reactionVideos": [], @@ -543237,7 +542737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17518272, "featuredRunMedia": null, "reactionVideos": [], @@ -543257,7 +542757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17518455, "featuredRunMedia": null, "reactionVideos": [], @@ -543277,7 +542777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 17519411, "featuredRunMedia": null, "reactionVideos": [], @@ -543297,7 +542797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17520202, "featuredRunMedia": null, "reactionVideos": [], @@ -543317,7 +542817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 363, + "teamId": "144433", "time": 17521144, "featuredRunMedia": null, "reactionVideos": [], @@ -543337,7 +542837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 17521483, "featuredRunMedia": null, "reactionVideos": [], @@ -543357,7 +542857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17522225, "featuredRunMedia": null, "reactionVideos": [], @@ -543377,7 +542877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 403, + "teamId": "144473", "time": 17522868, "featuredRunMedia": null, "reactionVideos": [], @@ -543397,7 +542897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 368, + "teamId": "144438", "time": 17522990, "featuredRunMedia": null, "reactionVideos": [], @@ -543417,7 +542917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17523742, "featuredRunMedia": null, "reactionVideos": [], @@ -543437,7 +542937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 17523994, "featuredRunMedia": null, "reactionVideos": [], @@ -543457,7 +542957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 17525647, "featuredRunMedia": null, "reactionVideos": [], @@ -543477,7 +542977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 17526186, "featuredRunMedia": null, "reactionVideos": [], @@ -543497,7 +542997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17527178, "featuredRunMedia": null, "reactionVideos": [], @@ -543517,7 +543017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17527382, "featuredRunMedia": null, "reactionVideos": [], @@ -543537,7 +543037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 389, + "teamId": "144459", "time": 17528078, "featuredRunMedia": null, "reactionVideos": [], @@ -543561,7 +543061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17528312, "featuredRunMedia": null, "reactionVideos": [], @@ -543581,7 +543081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 17528840, "featuredRunMedia": null, "reactionVideos": [], @@ -543605,7 +543105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 333, + "teamId": "144403", "time": 17529827, "featuredRunMedia": null, "reactionVideos": [], @@ -543625,7 +543125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17532408, "featuredRunMedia": null, "reactionVideos": [], @@ -543645,7 +543145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17532699, "featuredRunMedia": null, "reactionVideos": [], @@ -543665,7 +543165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 301, + "teamId": "144371", "time": 17534634, "featuredRunMedia": null, "reactionVideos": [], @@ -543685,7 +543185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17536511, "featuredRunMedia": null, "reactionVideos": [], @@ -543705,7 +543205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17536579, "featuredRunMedia": null, "reactionVideos": [], @@ -543725,7 +543225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17537396, "featuredRunMedia": null, "reactionVideos": [], @@ -543745,7 +543245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 17538442, "featuredRunMedia": null, "reactionVideos": [], @@ -543765,7 +543265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17539524, "featuredRunMedia": null, "reactionVideos": [], @@ -543785,7 +543285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "144124", "time": 17540062, "featuredRunMedia": null, "reactionVideos": [], @@ -543805,7 +543305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 17540389, "featuredRunMedia": null, "reactionVideos": [], @@ -543825,7 +543325,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17541355, "featuredRunMedia": null, "reactionVideos": [], @@ -543845,7 +543345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 17543474, "featuredRunMedia": null, "reactionVideos": [], @@ -543869,7 +543369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17544552, "featuredRunMedia": null, "reactionVideos": [], @@ -543889,7 +543389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17544736, "featuredRunMedia": null, "reactionVideos": [], @@ -543909,7 +543409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "144377", "time": 17545983, "featuredRunMedia": null, "reactionVideos": [], @@ -543929,7 +543429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17546315, "featuredRunMedia": null, "reactionVideos": [], @@ -543949,7 +543449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17546610, "featuredRunMedia": null, "reactionVideos": [], @@ -543969,7 +543469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 17547666, "featuredRunMedia": null, "reactionVideos": [], @@ -543989,7 +543489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17547716, "featuredRunMedia": null, "reactionVideos": [], @@ -544009,7 +543509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17548422, "featuredRunMedia": null, "reactionVideos": [], @@ -544029,7 +543529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17548787, "featuredRunMedia": null, "reactionVideos": [], @@ -544049,7 +543549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 17552340, "featuredRunMedia": null, "reactionVideos": [], @@ -544069,7 +543569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17552514, "featuredRunMedia": null, "reactionVideos": [], @@ -544089,7 +543589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "144128", "time": 17552696, "featuredRunMedia": null, "reactionVideos": [], @@ -544109,7 +543609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 17552774, "featuredRunMedia": null, "reactionVideos": [], @@ -544129,7 +543629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17554373, "featuredRunMedia": null, "reactionVideos": [], @@ -544149,7 +543649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 442, + "teamId": "144512", "time": 17554562, "featuredRunMedia": null, "reactionVideos": [], @@ -544169,7 +543669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17555172, "featuredRunMedia": null, "reactionVideos": [], @@ -544189,7 +543689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 17556293, "featuredRunMedia": null, "reactionVideos": [], @@ -544209,7 +543709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17556859, "featuredRunMedia": null, "reactionVideos": [], @@ -544229,7 +543729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17557696, "featuredRunMedia": null, "reactionVideos": [], @@ -544249,7 +543749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 398, + "teamId": "144468", "time": 17558470, "featuredRunMedia": null, "reactionVideos": [], @@ -544269,7 +543769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "144139", "time": 17559255, "featuredRunMedia": null, "reactionVideos": [], @@ -544289,7 +543789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 374, + "teamId": "144444", "time": 17559822, "featuredRunMedia": null, "reactionVideos": [], @@ -544309,7 +543809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "144187", "time": 17560060, "featuredRunMedia": null, "reactionVideos": [], @@ -544329,7 +543829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 364, + "teamId": "144434", "time": 17560153, "featuredRunMedia": null, "reactionVideos": [], @@ -544349,7 +543849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "144324", "time": 17560922, "featuredRunMedia": null, "reactionVideos": [], @@ -544369,7 +543869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17561918, "featuredRunMedia": null, "reactionVideos": [], @@ -544389,7 +543889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17561994, "featuredRunMedia": null, "reactionVideos": [], @@ -544409,7 +543909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 17562220, "featuredRunMedia": null, "reactionVideos": [], @@ -544433,7 +543933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17563574, "featuredRunMedia": null, "reactionVideos": [], @@ -544453,7 +543953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "144233", "time": 17563651, "featuredRunMedia": null, "reactionVideos": [], @@ -544473,7 +543973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 355, + "teamId": "144425", "time": 17564688, "featuredRunMedia": null, "reactionVideos": [], @@ -544493,7 +543993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 17565389, "featuredRunMedia": null, "reactionVideos": [], @@ -544513,7 +544013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "144107", "time": 17565836, "featuredRunMedia": null, "reactionVideos": [], @@ -544533,7 +544033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 351, + "teamId": "144421", "time": 17566246, "featuredRunMedia": null, "reactionVideos": [], @@ -544553,7 +544053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17566299, "featuredRunMedia": null, "reactionVideos": [], @@ -544573,7 +544073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 17566491, "featuredRunMedia": null, "reactionVideos": [], @@ -544593,7 +544093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17566540, "featuredRunMedia": null, "reactionVideos": [], @@ -544613,7 +544113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 17567408, "featuredRunMedia": null, "reactionVideos": [], @@ -544633,7 +544133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 359, + "teamId": "144429", "time": 17567458, "featuredRunMedia": null, "reactionVideos": [], @@ -544653,7 +544153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17569107, "featuredRunMedia": null, "reactionVideos": [], @@ -544673,7 +544173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17569441, "featuredRunMedia": null, "reactionVideos": [], @@ -544693,7 +544193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 443, + "teamId": "144513", "time": 17570811, "featuredRunMedia": null, "reactionVideos": [], @@ -544713,7 +544213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "144265", "time": 17570990, "featuredRunMedia": null, "reactionVideos": [], @@ -544733,7 +544233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 373, + "teamId": "144443", "time": 17571408, "featuredRunMedia": null, "reactionVideos": [], @@ -544753,7 +544253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 17572098, "featuredRunMedia": null, "reactionVideos": [], @@ -544773,7 +544273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 17572975, "featuredRunMedia": null, "reactionVideos": [], @@ -544793,7 +544293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "144247", "time": 17573049, "featuredRunMedia": null, "reactionVideos": [], @@ -544813,7 +544313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17574259, "featuredRunMedia": null, "reactionVideos": [], @@ -544833,7 +544333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17574339, "featuredRunMedia": null, "reactionVideos": [], @@ -544853,7 +544353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 324, + "teamId": "144394", "time": 17574654, "featuredRunMedia": null, "reactionVideos": [], @@ -544873,7 +544373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17575758, "featuredRunMedia": null, "reactionVideos": [], @@ -544893,7 +544393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "144349", "time": 17575928, "featuredRunMedia": null, "reactionVideos": [], @@ -544913,7 +544413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "144179", "time": 17578322, "featuredRunMedia": null, "reactionVideos": [], @@ -544933,7 +544433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17579384, "featuredRunMedia": null, "reactionVideos": [], @@ -544953,7 +544453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "144153", "time": 17580916, "featuredRunMedia": null, "reactionVideos": [], @@ -544973,7 +544473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17582523, "featuredRunMedia": null, "reactionVideos": [], @@ -544993,7 +544493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17583144, "featuredRunMedia": null, "reactionVideos": [], @@ -545013,7 +544513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 409, + "teamId": "144479", "time": 17583228, "featuredRunMedia": null, "reactionVideos": [], @@ -545033,7 +544533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17583468, "featuredRunMedia": null, "reactionVideos": [], @@ -545053,7 +544553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 17583539, "featuredRunMedia": null, "reactionVideos": [], @@ -545073,7 +544573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 17583601, "featuredRunMedia": null, "reactionVideos": [], @@ -545093,7 +544593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17585745, "featuredRunMedia": null, "reactionVideos": [], @@ -545113,7 +544613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 324, + "teamId": "144394", "time": 17585888, "featuredRunMedia": null, "reactionVideos": [], @@ -545133,7 +544633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17586393, "featuredRunMedia": null, "reactionVideos": [], @@ -545153,7 +544653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "144375", "time": 17586603, "featuredRunMedia": null, "reactionVideos": [], @@ -545173,7 +544673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17586751, "featuredRunMedia": null, "reactionVideos": [], @@ -545193,7 +544693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17587193, "featuredRunMedia": null, "reactionVideos": [], @@ -545213,7 +544713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 17587279, "featuredRunMedia": null, "reactionVideos": [], @@ -545233,7 +544733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "144104", "time": 17588241, "featuredRunMedia": null, "reactionVideos": [], @@ -545253,7 +544753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17589304, "featuredRunMedia": null, "reactionVideos": [], @@ -545273,7 +544773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 17589423, "featuredRunMedia": null, "reactionVideos": [], @@ -545293,7 +544793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "144297", "time": 17589471, "featuredRunMedia": null, "reactionVideos": [], @@ -545313,7 +544813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 17590387, "featuredRunMedia": null, "reactionVideos": [], @@ -545333,7 +544833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "144189", "time": 17590649, "featuredRunMedia": null, "reactionVideos": [], @@ -545353,7 +544853,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17590765, "featuredRunMedia": null, "reactionVideos": [], @@ -545373,7 +544873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17592361, "featuredRunMedia": null, "reactionVideos": [], @@ -545393,7 +544893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 17592901, "featuredRunMedia": null, "reactionVideos": [], @@ -545413,7 +544913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17593346, "featuredRunMedia": null, "reactionVideos": [], @@ -545433,7 +544933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17594530, "featuredRunMedia": null, "reactionVideos": [], @@ -545453,7 +544953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "144381", "time": 17594904, "featuredRunMedia": null, "reactionVideos": [], @@ -545473,7 +544973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17595040, "featuredRunMedia": null, "reactionVideos": [], @@ -545493,7 +544993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17595356, "featuredRunMedia": null, "reactionVideos": [], @@ -545513,7 +545013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 17595941, "featuredRunMedia": null, "reactionVideos": [], @@ -545533,7 +545033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 17596399, "featuredRunMedia": null, "reactionVideos": [], @@ -545553,7 +545053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17596598, "featuredRunMedia": null, "reactionVideos": [], @@ -545573,7 +545073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 349, + "teamId": "144419", "time": 17597080, "featuredRunMedia": null, "reactionVideos": [], @@ -545593,7 +545093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17597139, "featuredRunMedia": null, "reactionVideos": [], @@ -545613,7 +545113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17597895, "featuredRunMedia": null, "reactionVideos": [], @@ -545633,7 +545133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 17597991, "featuredRunMedia": null, "reactionVideos": [], @@ -545653,7 +545153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 17598741, "featuredRunMedia": null, "reactionVideos": [], @@ -545673,7 +545173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17598816, "featuredRunMedia": null, "reactionVideos": [], @@ -545693,7 +545193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "144194", "time": 17598902, "featuredRunMedia": null, "reactionVideos": [], @@ -545713,7 +545213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 17599373, "featuredRunMedia": null, "reactionVideos": [], @@ -545733,7 +545233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "144239", "time": 17599730, "featuredRunMedia": null, "reactionVideos": [], @@ -545753,7 +545253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 376, + "teamId": "144446", "time": 17600389, "featuredRunMedia": null, "reactionVideos": [], @@ -545773,7 +545273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 17600708, "featuredRunMedia": null, "reactionVideos": [], @@ -545793,7 +545293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 17600888, "featuredRunMedia": null, "reactionVideos": [], @@ -545813,7 +545313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 359, + "teamId": "144429", "time": 17601291, "featuredRunMedia": null, "reactionVideos": [], @@ -545833,7 +545333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17601907, "featuredRunMedia": null, "reactionVideos": [], @@ -545853,7 +545353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17601972, "featuredRunMedia": null, "reactionVideos": [], @@ -545873,7 +545373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17602381, "featuredRunMedia": null, "reactionVideos": [], @@ -545893,7 +545393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "144242", "time": 17602918, "featuredRunMedia": null, "reactionVideos": [], @@ -545913,7 +545413,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 368, + "teamId": "144438", "time": 17603379, "featuredRunMedia": null, "reactionVideos": [], @@ -545933,7 +545433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 17603450, "featuredRunMedia": null, "reactionVideos": [], @@ -545953,7 +545453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17604261, "featuredRunMedia": null, "reactionVideos": [], @@ -545973,7 +545473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17604470, "featuredRunMedia": null, "reactionVideos": [], @@ -545993,7 +545493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "144305", "time": 17605310, "featuredRunMedia": null, "reactionVideos": [], @@ -546013,7 +545513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "144355", "time": 17605407, "featuredRunMedia": null, "reactionVideos": [], @@ -546033,7 +545533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17605682, "featuredRunMedia": null, "reactionVideos": [], @@ -546053,7 +545553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "144348", "time": 17605999, "featuredRunMedia": null, "reactionVideos": [], @@ -546073,7 +545573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17606440, "featuredRunMedia": null, "reactionVideos": [], @@ -546093,7 +545593,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 17606976, "featuredRunMedia": null, "reactionVideos": [], @@ -546113,7 +545613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "144230", "time": 17609746, "featuredRunMedia": null, "reactionVideos": [], @@ -546133,7 +545633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 350, + "teamId": "144420", "time": 17610271, "featuredRunMedia": null, "reactionVideos": [], @@ -546153,7 +545653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 17610965, "featuredRunMedia": null, "reactionVideos": [], @@ -546173,7 +545673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17611645, "featuredRunMedia": null, "reactionVideos": [], @@ -546193,7 +545693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17611768, "featuredRunMedia": null, "reactionVideos": [], @@ -546213,7 +545713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "144392", "time": 17611894, "featuredRunMedia": null, "reactionVideos": [], @@ -546233,7 +545733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "144105", "time": 17611941, "featuredRunMedia": null, "reactionVideos": [], @@ -546253,7 +545753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17612010, "featuredRunMedia": null, "reactionVideos": [], @@ -546273,7 +545773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17613392, "featuredRunMedia": null, "reactionVideos": [], @@ -546293,7 +545793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 17613730, "featuredRunMedia": null, "reactionVideos": [], @@ -546313,7 +545813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17613790, "featuredRunMedia": null, "reactionVideos": [], @@ -546333,7 +545833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17613848, "featuredRunMedia": null, "reactionVideos": [], @@ -546353,7 +545853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 17615651, "featuredRunMedia": null, "reactionVideos": [], @@ -546373,7 +545873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17616330, "featuredRunMedia": null, "reactionVideos": [], @@ -546393,7 +545893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17617177, "featuredRunMedia": null, "reactionVideos": [], @@ -546413,7 +545913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17617649, "featuredRunMedia": null, "reactionVideos": [], @@ -546433,7 +545933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17619924, "featuredRunMedia": null, "reactionVideos": [], @@ -546453,7 +545953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 339, + "teamId": "144409", "time": 17620021, "featuredRunMedia": null, "reactionVideos": [], @@ -546473,7 +545973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17620092, "featuredRunMedia": null, "reactionVideos": [], @@ -546493,7 +545993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17620204, "featuredRunMedia": null, "reactionVideos": [], @@ -546513,7 +546013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17620666, "featuredRunMedia": null, "reactionVideos": [], @@ -546533,7 +546033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17620866, "featuredRunMedia": null, "reactionVideos": [], @@ -546553,7 +546053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 17623182, "featuredRunMedia": null, "reactionVideos": [], @@ -546573,7 +546073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 323, + "teamId": "144393", "time": 17623471, "featuredRunMedia": null, "reactionVideos": [], @@ -546593,7 +546093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17623958, "featuredRunMedia": null, "reactionVideos": [], @@ -546613,7 +546113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17625555, "featuredRunMedia": null, "reactionVideos": [], @@ -546633,7 +546133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17625887, "featuredRunMedia": null, "reactionVideos": [], @@ -546653,7 +546153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17626206, "featuredRunMedia": null, "reactionVideos": [], @@ -546673,7 +546173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 17626341, "featuredRunMedia": null, "reactionVideos": [], @@ -546693,7 +546193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 17626500, "featuredRunMedia": null, "reactionVideos": [], @@ -546713,7 +546213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17627039, "featuredRunMedia": null, "reactionVideos": [], @@ -546733,7 +546233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "144159", "time": 17627751, "featuredRunMedia": null, "reactionVideos": [], @@ -546753,7 +546253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "144355", "time": 17628875, "featuredRunMedia": null, "reactionVideos": [], @@ -546773,7 +546273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "144099", "time": 17628977, "featuredRunMedia": null, "reactionVideos": [], @@ -546793,7 +546293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 441, + "teamId": "144511", "time": 17629466, "featuredRunMedia": null, "reactionVideos": [], @@ -546813,7 +546313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17630563, "featuredRunMedia": null, "reactionVideos": [], @@ -546833,7 +546333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 17630671, "featuredRunMedia": null, "reactionVideos": [], @@ -546853,7 +546353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "144110", "time": 17630792, "featuredRunMedia": null, "reactionVideos": [], @@ -546873,7 +546373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 392, + "teamId": "144462", "time": 17632440, "featuredRunMedia": null, "reactionVideos": [], @@ -546893,7 +546393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 17633172, "featuredRunMedia": null, "reactionVideos": [], @@ -546913,7 +546413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17633623, "featuredRunMedia": null, "reactionVideos": [], @@ -546933,7 +546433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17633687, "featuredRunMedia": null, "reactionVideos": [], @@ -546953,7 +546453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17634285, "featuredRunMedia": null, "reactionVideos": [], @@ -546973,7 +546473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 17635232, "featuredRunMedia": null, "reactionVideos": [], @@ -546993,7 +546493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "144251", "time": 17635720, "featuredRunMedia": null, "reactionVideos": [], @@ -547013,7 +546513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "144110", "time": 17635809, "featuredRunMedia": null, "reactionVideos": [], @@ -547033,7 +546533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17636347, "featuredRunMedia": null, "reactionVideos": [], @@ -547053,7 +546553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 17636822, "featuredRunMedia": null, "reactionVideos": [], @@ -547073,7 +546573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 433, + "teamId": "144503", "time": 17637050, "featuredRunMedia": null, "reactionVideos": [], @@ -547093,7 +546593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 17637240, "featuredRunMedia": null, "reactionVideos": [], @@ -547113,7 +546613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17638327, "featuredRunMedia": null, "reactionVideos": [], @@ -547133,7 +546633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 432, + "teamId": "144502", "time": 17640411, "featuredRunMedia": null, "reactionVideos": [], @@ -547153,7 +546653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "144110", "time": 17640575, "featuredRunMedia": null, "reactionVideos": [], @@ -547173,7 +546673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17640848, "featuredRunMedia": null, "reactionVideos": [], @@ -547193,7 +546693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 449, + "teamId": "144519", "time": 17641829, "featuredRunMedia": null, "reactionVideos": [], @@ -547213,7 +546713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17642901, "featuredRunMedia": null, "reactionVideos": [], @@ -547233,7 +546733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17644321, "featuredRunMedia": null, "reactionVideos": [], @@ -547253,7 +546753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17644475, "featuredRunMedia": null, "reactionVideos": [], @@ -547273,7 +546773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17644776, "featuredRunMedia": null, "reactionVideos": [], @@ -547293,7 +546793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 17646477, "featuredRunMedia": null, "reactionVideos": [], @@ -547313,7 +546813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 17647094, "featuredRunMedia": null, "reactionVideos": [], @@ -547333,7 +546833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 17647533, "featuredRunMedia": null, "reactionVideos": [], @@ -547353,7 +546853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 397, + "teamId": "144467", "time": 17647610, "featuredRunMedia": null, "reactionVideos": [], @@ -547373,7 +546873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17649113, "featuredRunMedia": null, "reactionVideos": [], @@ -547393,7 +546893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17649237, "featuredRunMedia": null, "reactionVideos": [], @@ -547413,7 +546913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17649375, "featuredRunMedia": null, "reactionVideos": [], @@ -547433,7 +546933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17649490, "featuredRunMedia": null, "reactionVideos": [], @@ -547453,7 +546953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 17652541, "featuredRunMedia": null, "reactionVideos": [], @@ -547473,7 +546973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 431, + "teamId": "144501", "time": 17653695, "featuredRunMedia": null, "reactionVideos": [], @@ -547493,7 +546993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "144312", "time": 17654302, "featuredRunMedia": null, "reactionVideos": [], @@ -547513,7 +547013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17655319, "featuredRunMedia": null, "reactionVideos": [], @@ -547533,7 +547033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17655879, "featuredRunMedia": null, "reactionVideos": [], @@ -547553,7 +547053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 17656764, "featuredRunMedia": null, "reactionVideos": [], @@ -547573,7 +547073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 17656849, "featuredRunMedia": null, "reactionVideos": [], @@ -547597,7 +547097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 17658191, "featuredRunMedia": null, "reactionVideos": [], @@ -547617,7 +547117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 17658941, "featuredRunMedia": null, "reactionVideos": [], @@ -547637,7 +547137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17660595, "featuredRunMedia": null, "reactionVideos": [], @@ -547657,7 +547157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17660703, "featuredRunMedia": null, "reactionVideos": [], @@ -547677,7 +547177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 385, + "teamId": "144455", "time": 17661019, "featuredRunMedia": null, "reactionVideos": [], @@ -547697,7 +547197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17661614, "featuredRunMedia": null, "reactionVideos": [], @@ -547717,7 +547217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 17662158, "featuredRunMedia": null, "reactionVideos": [], @@ -547737,7 +547237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "144355", "time": 17662340, "featuredRunMedia": null, "reactionVideos": [], @@ -547757,7 +547257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17662668, "featuredRunMedia": null, "reactionVideos": [], @@ -547777,7 +547277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17662722, "featuredRunMedia": null, "reactionVideos": [], @@ -547797,7 +547297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 17663554, "featuredRunMedia": null, "reactionVideos": [], @@ -547817,7 +547317,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "144081", "time": 17663690, "featuredRunMedia": null, "reactionVideos": [], @@ -547837,7 +547337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17664434, "featuredRunMedia": null, "reactionVideos": [], @@ -547857,7 +547357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 17665087, "featuredRunMedia": null, "reactionVideos": [], @@ -547877,7 +547377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 17665739, "featuredRunMedia": null, "reactionVideos": [], @@ -547897,7 +547397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17666109, "featuredRunMedia": null, "reactionVideos": [], @@ -547917,7 +547417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "144301", "time": 17666576, "featuredRunMedia": null, "reactionVideos": [], @@ -547937,7 +547437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 17669217, "featuredRunMedia": null, "reactionVideos": [], @@ -547957,7 +547457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17669687, "featuredRunMedia": null, "reactionVideos": [], @@ -547977,7 +547477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 216, + "teamId": "144286", "time": 17669859, "featuredRunMedia": null, "reactionVideos": [], @@ -547997,7 +547497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 418, + "teamId": "144488", "time": 17669923, "featuredRunMedia": null, "reactionVideos": [], @@ -548017,7 +547517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 412, + "teamId": "144482", "time": 17670110, "featuredRunMedia": null, "reactionVideos": [], @@ -548037,7 +547537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 17670417, "featuredRunMedia": null, "reactionVideos": [], @@ -548057,7 +547557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 444, + "teamId": "144514", "time": 17670471, "featuredRunMedia": null, "reactionVideos": [], @@ -548077,7 +547577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "144238", "time": 17671290, "featuredRunMedia": null, "reactionVideos": [], @@ -548097,7 +547597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17671468, "featuredRunMedia": null, "reactionVideos": [], @@ -548117,7 +547617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17671662, "featuredRunMedia": null, "reactionVideos": [], @@ -548137,7 +547637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17671945, "featuredRunMedia": null, "reactionVideos": [], @@ -548157,7 +547657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 17672035, "featuredRunMedia": null, "reactionVideos": [], @@ -548177,7 +547677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 199, + "teamId": "144269", "time": 17672220, "featuredRunMedia": null, "reactionVideos": [], @@ -548197,7 +547697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 17672949, "featuredRunMedia": null, "reactionVideos": [], @@ -548217,7 +547717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17673115, "featuredRunMedia": null, "reactionVideos": [], @@ -548237,7 +547737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 17673267, "featuredRunMedia": null, "reactionVideos": [], @@ -548261,7 +547761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17673352, "featuredRunMedia": null, "reactionVideos": [], @@ -548281,7 +547781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17673689, "featuredRunMedia": null, "reactionVideos": [], @@ -548305,7 +547805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17673939, "featuredRunMedia": null, "reactionVideos": [], @@ -548325,7 +547825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17674061, "featuredRunMedia": null, "reactionVideos": [], @@ -548345,7 +547845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 17675703, "featuredRunMedia": null, "reactionVideos": [], @@ -548365,7 +547865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17676771, "featuredRunMedia": null, "reactionVideos": [], @@ -548385,7 +547885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17677647, "featuredRunMedia": null, "reactionVideos": [], @@ -548405,7 +547905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17677935, "featuredRunMedia": null, "reactionVideos": [], @@ -548425,7 +547925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17678036, "featuredRunMedia": null, "reactionVideos": [], @@ -548445,7 +547945,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17679260, "featuredRunMedia": null, "reactionVideos": [], @@ -548465,7 +547965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17679815, "featuredRunMedia": null, "reactionVideos": [], @@ -548485,7 +547985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17680806, "featuredRunMedia": null, "reactionVideos": [], @@ -548505,7 +548005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17682202, "featuredRunMedia": null, "reactionVideos": [], @@ -548525,7 +548025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17682746, "featuredRunMedia": null, "reactionVideos": [], @@ -548545,7 +548045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17682811, "featuredRunMedia": null, "reactionVideos": [], @@ -548565,7 +548065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "144074", "time": 17683441, "featuredRunMedia": null, "reactionVideos": [], @@ -548585,7 +548085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 17683887, "featuredRunMedia": null, "reactionVideos": [], @@ -548605,7 +548105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 357, + "teamId": "144427", "time": 17683946, "featuredRunMedia": null, "reactionVideos": [], @@ -548625,7 +548125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17686159, "featuredRunMedia": null, "reactionVideos": [], @@ -548645,7 +548145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17686536, "featuredRunMedia": null, "reactionVideos": [], @@ -548665,7 +548165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17687629, "featuredRunMedia": null, "reactionVideos": [], @@ -548685,7 +548185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17689032, "featuredRunMedia": null, "reactionVideos": [], @@ -548705,7 +548205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 314, + "teamId": "144384", "time": 17689359, "featuredRunMedia": null, "reactionVideos": [], @@ -548725,7 +548225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17689682, "featuredRunMedia": null, "reactionVideos": [], @@ -548745,7 +548245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17689974, "featuredRunMedia": null, "reactionVideos": [], @@ -548765,7 +548265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17691105, "featuredRunMedia": null, "reactionVideos": [], @@ -548785,7 +548285,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17691844, "featuredRunMedia": null, "reactionVideos": [], @@ -548805,7 +548305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17692067, "featuredRunMedia": null, "reactionVideos": [], @@ -548825,7 +548325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "144188", "time": 17692182, "featuredRunMedia": null, "reactionVideos": [], @@ -548845,7 +548345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17692659, "featuredRunMedia": null, "reactionVideos": [], @@ -548865,7 +548365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "144196", "time": 17692963, "featuredRunMedia": null, "reactionVideos": [], @@ -548885,7 +548385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 17693151, "featuredRunMedia": null, "reactionVideos": [], @@ -548905,7 +548405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17694515, "featuredRunMedia": null, "reactionVideos": [], @@ -548925,7 +548425,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17695127, "featuredRunMedia": null, "reactionVideos": [], @@ -548945,7 +548445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17695188, "featuredRunMedia": null, "reactionVideos": [], @@ -548965,7 +548465,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17696265, "featuredRunMedia": null, "reactionVideos": [], @@ -548985,7 +548485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17696338, "featuredRunMedia": null, "reactionVideos": [], @@ -549005,7 +548505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 17698538, "featuredRunMedia": null, "reactionVideos": [], @@ -549025,7 +548525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 17698797, "featuredRunMedia": null, "reactionVideos": [], @@ -549045,7 +548545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "144216", "time": 17699814, "featuredRunMedia": null, "reactionVideos": [], @@ -549065,7 +548565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17700257, "featuredRunMedia": null, "reactionVideos": [], @@ -549085,7 +548585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17700605, "featuredRunMedia": null, "reactionVideos": [], @@ -549105,7 +548605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17700687, "featuredRunMedia": null, "reactionVideos": [], @@ -549125,7 +548625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 401, + "teamId": "144471", "time": 17700743, "featuredRunMedia": null, "reactionVideos": [], @@ -549145,7 +548645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 101, + "teamId": "144171", "time": 17700903, "featuredRunMedia": null, "reactionVideos": [], @@ -549165,7 +548665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17702075, "featuredRunMedia": null, "reactionVideos": [], @@ -549185,7 +548685,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17702843, "featuredRunMedia": null, "reactionVideos": [], @@ -549205,7 +548705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17703014, "featuredRunMedia": null, "reactionVideos": [], @@ -549225,7 +548725,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 17703295, "featuredRunMedia": null, "reactionVideos": [], @@ -549245,7 +548745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17704059, "featuredRunMedia": null, "reactionVideos": [], @@ -549265,7 +548765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17704694, "featuredRunMedia": null, "reactionVideos": [], @@ -549285,7 +548785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17705303, "featuredRunMedia": null, "reactionVideos": [], @@ -549305,7 +548805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 394, + "teamId": "144464", "time": 17705806, "featuredRunMedia": null, "reactionVideos": [], @@ -549325,7 +548825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 341, + "teamId": "144411", "time": 17706641, "featuredRunMedia": null, "reactionVideos": [], @@ -549345,7 +548845,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17708258, "featuredRunMedia": null, "reactionVideos": [], @@ -549365,7 +548865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 17708979, "featuredRunMedia": null, "reactionVideos": [], @@ -549385,7 +548885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 17709044, "featuredRunMedia": null, "reactionVideos": [], @@ -549405,7 +548905,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 17709216, "featuredRunMedia": null, "reactionVideos": [], @@ -549425,7 +548925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "144083", "time": 17709626, "featuredRunMedia": null, "reactionVideos": [], @@ -549445,7 +548945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17710211, "featuredRunMedia": null, "reactionVideos": [], @@ -549469,7 +548969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17710506, "featuredRunMedia": null, "reactionVideos": [], @@ -549489,7 +548989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17710641, "featuredRunMedia": null, "reactionVideos": [], @@ -549509,7 +549009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "144224", "time": 17710891, "featuredRunMedia": null, "reactionVideos": [], @@ -549529,7 +549029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17712630, "featuredRunMedia": null, "reactionVideos": [], @@ -549549,7 +549049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 418, + "teamId": "144488", "time": 17713129, "featuredRunMedia": null, "reactionVideos": [], @@ -549569,7 +549069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17713681, "featuredRunMedia": null, "reactionVideos": [], @@ -549589,7 +549089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 17714436, "featuredRunMedia": null, "reactionVideos": [], @@ -549609,7 +549109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 17716089, "featuredRunMedia": null, "reactionVideos": [], @@ -549629,7 +549129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17716145, "featuredRunMedia": null, "reactionVideos": [], @@ -549649,7 +549149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 17716355, "featuredRunMedia": null, "reactionVideos": [], @@ -549669,7 +549169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 17717117, "featuredRunMedia": null, "reactionVideos": [], @@ -549689,7 +549189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "144396", "time": 17717295, "featuredRunMedia": null, "reactionVideos": [], @@ -549709,7 +549209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17717435, "featuredRunMedia": null, "reactionVideos": [], @@ -549729,7 +549229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 17717554, "featuredRunMedia": null, "reactionVideos": [], @@ -549749,7 +549249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17717960, "featuredRunMedia": null, "reactionVideos": [], @@ -549769,7 +549269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17718935, "featuredRunMedia": null, "reactionVideos": [], @@ -549789,7 +549289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17720639, "featuredRunMedia": null, "reactionVideos": [], @@ -549809,7 +549309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "144096", "time": 17721047, "featuredRunMedia": null, "reactionVideos": [], @@ -549829,7 +549329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17721481, "featuredRunMedia": null, "reactionVideos": [], @@ -549849,7 +549349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 17721718, "featuredRunMedia": null, "reactionVideos": [], @@ -549869,7 +549369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 17722371, "featuredRunMedia": null, "reactionVideos": [], @@ -549893,7 +549393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 363, + "teamId": "144433", "time": 17723482, "featuredRunMedia": null, "reactionVideos": [], @@ -549913,7 +549413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "144366", "time": 17723566, "featuredRunMedia": null, "reactionVideos": [], @@ -549933,7 +549433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 408, + "teamId": "144478", "time": 17724660, "featuredRunMedia": null, "reactionVideos": [], @@ -549953,7 +549453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17724996, "featuredRunMedia": null, "reactionVideos": [], @@ -549973,7 +549473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17726083, "featuredRunMedia": null, "reactionVideos": [], @@ -549993,7 +549493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 134, + "teamId": "144204", "time": 17727632, "featuredRunMedia": null, "reactionVideos": [], @@ -550013,7 +549513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 246, + "teamId": "144316", "time": 17727700, "featuredRunMedia": null, "reactionVideos": [], @@ -550033,7 +549533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17727760, "featuredRunMedia": null, "reactionVideos": [], @@ -550053,7 +549553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "144291", "time": 17729500, "featuredRunMedia": null, "reactionVideos": [], @@ -550073,7 +549573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 343, + "teamId": "144413", "time": 17730302, "featuredRunMedia": null, "reactionVideos": [], @@ -550093,7 +549593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17731217, "featuredRunMedia": null, "reactionVideos": [], @@ -550113,7 +549613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 17732089, "featuredRunMedia": null, "reactionVideos": [], @@ -550133,7 +549633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "144237", "time": 17732529, "featuredRunMedia": null, "reactionVideos": [], @@ -550153,7 +549653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17733656, "featuredRunMedia": null, "reactionVideos": [], @@ -550173,7 +549673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "144240", "time": 17734177, "featuredRunMedia": null, "reactionVideos": [], @@ -550193,7 +549693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "144347", "time": 17734291, "featuredRunMedia": null, "reactionVideos": [], @@ -550213,7 +549713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17735293, "featuredRunMedia": null, "reactionVideos": [], @@ -550233,7 +549733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "144087", "time": 17736006, "featuredRunMedia": null, "reactionVideos": [], @@ -550253,7 +549753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17736611, "featuredRunMedia": null, "reactionVideos": [], @@ -550273,7 +549773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 17737287, "featuredRunMedia": null, "reactionVideos": [], @@ -550293,7 +549793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17737562, "featuredRunMedia": null, "reactionVideos": [], @@ -550313,7 +549813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17738167, "featuredRunMedia": null, "reactionVideos": [], @@ -550333,7 +549833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17739142, "featuredRunMedia": null, "reactionVideos": [], @@ -550353,7 +549853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "144332", "time": 17739401, "featuredRunMedia": null, "reactionVideos": [], @@ -550373,7 +549873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17739947, "featuredRunMedia": null, "reactionVideos": [], @@ -550393,7 +549893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 363, + "teamId": "144433", "time": 17740011, "featuredRunMedia": null, "reactionVideos": [], @@ -550413,7 +549913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17740437, "featuredRunMedia": null, "reactionVideos": [], @@ -550433,7 +549933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17741154, "featuredRunMedia": null, "reactionVideos": [], @@ -550453,7 +549953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17742383, "featuredRunMedia": null, "reactionVideos": [], @@ -550473,7 +549973,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17743247, "featuredRunMedia": null, "reactionVideos": [], @@ -550493,7 +549993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 17743728, "featuredRunMedia": null, "reactionVideos": [], @@ -550513,7 +550013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17744060, "featuredRunMedia": null, "reactionVideos": [], @@ -550533,7 +550033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 371, + "teamId": "144441", "time": 17744446, "featuredRunMedia": null, "reactionVideos": [], @@ -550553,7 +550053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 17744871, "featuredRunMedia": null, "reactionVideos": [], @@ -550573,7 +550073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "144302", "time": 17744935, "featuredRunMedia": null, "reactionVideos": [], @@ -550593,7 +550093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17745017, "featuredRunMedia": null, "reactionVideos": [], @@ -550613,7 +550113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17745247, "featuredRunMedia": null, "reactionVideos": [], @@ -550633,7 +550133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17745313, "featuredRunMedia": null, "reactionVideos": [], @@ -550653,7 +550153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17745426, "featuredRunMedia": null, "reactionVideos": [], @@ -550673,7 +550173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17746910, "featuredRunMedia": null, "reactionVideos": [], @@ -550693,7 +550193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 318, + "teamId": "144388", "time": 17748102, "featuredRunMedia": null, "reactionVideos": [], @@ -550713,7 +550213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17748350, "featuredRunMedia": null, "reactionVideos": [], @@ -550733,7 +550233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 17748556, "featuredRunMedia": null, "reactionVideos": [], @@ -550753,7 +550253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17748605, "featuredRunMedia": null, "reactionVideos": [], @@ -550773,7 +550273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 384, + "teamId": "144454", "time": 17749308, "featuredRunMedia": null, "reactionVideos": [], @@ -550793,7 +550293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "144271", "time": 17750145, "featuredRunMedia": null, "reactionVideos": [], @@ -550813,7 +550313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 17750702, "featuredRunMedia": null, "reactionVideos": [], @@ -550833,7 +550333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "144093", "time": 17750747, "featuredRunMedia": null, "reactionVideos": [], @@ -550853,7 +550353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17751414, "featuredRunMedia": null, "reactionVideos": [], @@ -550873,7 +550373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17751810, "featuredRunMedia": null, "reactionVideos": [], @@ -550893,7 +550393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17752394, "featuredRunMedia": null, "reactionVideos": [], @@ -550913,7 +550413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 85, + "teamId": "144155", "time": 17753096, "featuredRunMedia": null, "reactionVideos": [], @@ -550933,7 +550433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 17753227, "featuredRunMedia": null, "reactionVideos": [], @@ -550953,7 +550453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17753848, "featuredRunMedia": null, "reactionVideos": [], @@ -550973,7 +550473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17754173, "featuredRunMedia": null, "reactionVideos": [], @@ -550993,7 +550493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 17754732, "featuredRunMedia": null, "reactionVideos": [], @@ -551013,7 +550513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17754783, "featuredRunMedia": null, "reactionVideos": [], @@ -551033,7 +550533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "144402", "time": 17755118, "featuredRunMedia": null, "reactionVideos": [], @@ -551053,7 +550553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17755190, "featuredRunMedia": null, "reactionVideos": [], @@ -551073,7 +550573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "144313", "time": 17755764, "featuredRunMedia": null, "reactionVideos": [], @@ -551093,7 +550593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 17756159, "featuredRunMedia": null, "reactionVideos": [], @@ -551113,7 +550613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 17756928, "featuredRunMedia": null, "reactionVideos": [], @@ -551137,7 +550637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17756981, "featuredRunMedia": null, "reactionVideos": [], @@ -551157,7 +550657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "144338", "time": 17758400, "featuredRunMedia": null, "reactionVideos": [], @@ -551177,7 +550677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17758455, "featuredRunMedia": null, "reactionVideos": [], @@ -551197,7 +550697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17758523, "featuredRunMedia": null, "reactionVideos": [], @@ -551217,7 +550717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 382, + "teamId": "144452", "time": 17759385, "featuredRunMedia": null, "reactionVideos": [], @@ -551237,7 +550737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 359, + "teamId": "144429", "time": 17759510, "featuredRunMedia": null, "reactionVideos": [], @@ -551257,7 +550757,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17759737, "featuredRunMedia": null, "reactionVideos": [], @@ -551277,7 +550777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17760041, "featuredRunMedia": null, "reactionVideos": [], @@ -551297,7 +550797,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 196, + "teamId": "144266", "time": 17760919, "featuredRunMedia": null, "reactionVideos": [], @@ -551317,7 +550817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17761021, "featuredRunMedia": null, "reactionVideos": [], @@ -551337,7 +550837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 17762022, "featuredRunMedia": null, "reactionVideos": [], @@ -551357,7 +550857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17762084, "featuredRunMedia": null, "reactionVideos": [], @@ -551377,7 +550877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17762145, "featuredRunMedia": null, "reactionVideos": [], @@ -551397,7 +550897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17762305, "featuredRunMedia": null, "reactionVideos": [], @@ -551417,7 +550917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17762434, "featuredRunMedia": null, "reactionVideos": [], @@ -551437,7 +550937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "144136", "time": 17762507, "featuredRunMedia": null, "reactionVideos": [], @@ -551457,7 +550957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 17763753, "featuredRunMedia": null, "reactionVideos": [], @@ -551477,7 +550977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17763868, "featuredRunMedia": null, "reactionVideos": [], @@ -551497,7 +550997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 17764172, "featuredRunMedia": null, "reactionVideos": [], @@ -551517,7 +551017,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17764599, "featuredRunMedia": null, "reactionVideos": [], @@ -551537,7 +551037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17764857, "featuredRunMedia": null, "reactionVideos": [], @@ -551557,7 +551057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17766070, "featuredRunMedia": null, "reactionVideos": [], @@ -551577,7 +551077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17766208, "featuredRunMedia": null, "reactionVideos": [], @@ -551597,7 +551097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17766861, "featuredRunMedia": null, "reactionVideos": [], @@ -551617,7 +551117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17767297, "featuredRunMedia": null, "reactionVideos": [], @@ -551637,7 +551137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "144096", "time": 17768302, "featuredRunMedia": null, "reactionVideos": [], @@ -551657,7 +551157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17768830, "featuredRunMedia": null, "reactionVideos": [], @@ -551677,7 +551177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 17768964, "featuredRunMedia": null, "reactionVideos": [], @@ -551697,7 +551197,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17769173, "featuredRunMedia": null, "reactionVideos": [], @@ -551717,7 +551217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "144258", "time": 17771060, "featuredRunMedia": null, "reactionVideos": [], @@ -551737,7 +551237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 248, + "teamId": "144318", "time": 17771805, "featuredRunMedia": null, "reactionVideos": [], @@ -551757,7 +551257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17772157, "featuredRunMedia": null, "reactionVideos": [], @@ -551777,7 +551277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17773921, "featuredRunMedia": null, "reactionVideos": [], @@ -551797,7 +551297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "144404", "time": 17774659, "featuredRunMedia": null, "reactionVideos": [], @@ -551817,7 +551317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17774947, "featuredRunMedia": null, "reactionVideos": [], @@ -551837,7 +551337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17775410, "featuredRunMedia": null, "reactionVideos": [], @@ -551857,7 +551357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "144367", "time": 17777416, "featuredRunMedia": null, "reactionVideos": [], @@ -551877,7 +551377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 323, + "teamId": "144393", "time": 17777488, "featuredRunMedia": null, "reactionVideos": [], @@ -551897,7 +551397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17778518, "featuredRunMedia": null, "reactionVideos": [], @@ -551917,7 +551417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17779378, "featuredRunMedia": null, "reactionVideos": [], @@ -551937,7 +551437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 17779911, "featuredRunMedia": null, "reactionVideos": [], @@ -551957,7 +551457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17780705, "featuredRunMedia": null, "reactionVideos": [], @@ -551977,7 +551477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17781602, "featuredRunMedia": null, "reactionVideos": [], @@ -551997,7 +551497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 17782212, "featuredRunMedia": null, "reactionVideos": [], @@ -552017,7 +551517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17782806, "featuredRunMedia": null, "reactionVideos": [], @@ -552037,7 +551537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 17783303, "featuredRunMedia": null, "reactionVideos": [], @@ -552057,7 +551557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17783575, "featuredRunMedia": null, "reactionVideos": [], @@ -552077,7 +551577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17784010, "featuredRunMedia": null, "reactionVideos": [], @@ -552097,7 +551597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17784078, "featuredRunMedia": null, "reactionVideos": [], @@ -552117,7 +551617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 17784597, "featuredRunMedia": null, "reactionVideos": [], @@ -552137,7 +551637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17786073, "featuredRunMedia": null, "reactionVideos": [], @@ -552157,7 +551657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17786231, "featuredRunMedia": null, "reactionVideos": [], @@ -552177,7 +551677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "144308", "time": 17786421, "featuredRunMedia": null, "reactionVideos": [], @@ -552197,7 +551697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17786752, "featuredRunMedia": null, "reactionVideos": [], @@ -552217,7 +551717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 17787601, "featuredRunMedia": null, "reactionVideos": [], @@ -552237,7 +551737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17787667, "featuredRunMedia": null, "reactionVideos": [], @@ -552257,7 +551757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 17788938, "featuredRunMedia": null, "reactionVideos": [], @@ -552277,7 +551777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 17789149, "featuredRunMedia": null, "reactionVideos": [], @@ -552297,7 +551797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 17789204, "featuredRunMedia": null, "reactionVideos": [], @@ -552317,7 +551817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17789420, "featuredRunMedia": null, "reactionVideos": [], @@ -552337,7 +551837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 425, + "teamId": "144495", "time": 17789700, "featuredRunMedia": null, "reactionVideos": [], @@ -552357,7 +551857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17789951, "featuredRunMedia": null, "reactionVideos": [], @@ -552377,7 +551877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "144288", "time": 17790761, "featuredRunMedia": null, "reactionVideos": [], @@ -552397,7 +551897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17791248, "featuredRunMedia": null, "reactionVideos": [], @@ -552417,7 +551917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 17791423, "featuredRunMedia": null, "reactionVideos": [], @@ -552437,7 +551937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17791759, "featuredRunMedia": null, "reactionVideos": [], @@ -552457,7 +551957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17792453, "featuredRunMedia": null, "reactionVideos": [], @@ -552477,7 +551977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 271, + "teamId": "144341", "time": 17792644, "featuredRunMedia": null, "reactionVideos": [], @@ -552497,7 +551997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "144109", "time": 17793353, "featuredRunMedia": null, "reactionVideos": [], @@ -552517,7 +552017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17793592, "featuredRunMedia": null, "reactionVideos": [], @@ -552537,7 +552037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17794356, "featuredRunMedia": null, "reactionVideos": [], @@ -552557,7 +552057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 0, + "teamId": "144070", "time": 17794715, "featuredRunMedia": null, "reactionVideos": [], @@ -552577,7 +552077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17795852, "featuredRunMedia": null, "reactionVideos": [], @@ -552597,7 +552097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 320, + "teamId": "144390", "time": 17796049, "featuredRunMedia": null, "reactionVideos": [], @@ -552617,7 +552117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17796126, "featuredRunMedia": null, "reactionVideos": [], @@ -552637,7 +552137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17796479, "featuredRunMedia": null, "reactionVideos": [], @@ -552657,7 +552157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 17796713, "featuredRunMedia": null, "reactionVideos": [], @@ -552677,7 +552177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17797602, "featuredRunMedia": null, "reactionVideos": [], @@ -552697,7 +552197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17798509, "featuredRunMedia": null, "reactionVideos": [], @@ -552717,7 +552217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17798578, "featuredRunMedia": null, "reactionVideos": [], @@ -552737,7 +552237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17799132, "featuredRunMedia": null, "reactionVideos": [], @@ -552757,7 +552257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17799325, "featuredRunMedia": null, "reactionVideos": [], @@ -552777,7 +552277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17799393, "featuredRunMedia": null, "reactionVideos": [], @@ -552797,7 +552297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17799571, "featuredRunMedia": null, "reactionVideos": [], @@ -552817,7 +552317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "144197", "time": 17799704, "featuredRunMedia": null, "reactionVideos": [], @@ -552837,7 +552337,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 17800744, "featuredRunMedia": null, "reactionVideos": [], @@ -552857,7 +552357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "144254", "time": 17801434, "featuredRunMedia": null, "reactionVideos": [], @@ -552877,7 +552377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17802007, "featuredRunMedia": null, "reactionVideos": [], @@ -552897,7 +552397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 17802056, "featuredRunMedia": null, "reactionVideos": [], @@ -552917,7 +552417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17802402, "featuredRunMedia": null, "reactionVideos": [], @@ -552937,7 +552437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "144109", "time": 17802612, "featuredRunMedia": null, "reactionVideos": [], @@ -552957,7 +552457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 17803073, "featuredRunMedia": null, "reactionVideos": [], @@ -552977,7 +552477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 420, + "teamId": "144490", "time": 17803494, "featuredRunMedia": null, "reactionVideos": [], @@ -552997,7 +552497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 17804336, "featuredRunMedia": null, "reactionVideos": [], @@ -553017,7 +552517,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 359, + "teamId": "144429", "time": 17804455, "featuredRunMedia": null, "reactionVideos": [], @@ -553037,7 +552537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17804576, "featuredRunMedia": null, "reactionVideos": [], @@ -553057,7 +552557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17805620, "featuredRunMedia": null, "reactionVideos": [], @@ -553077,7 +552577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17806153, "featuredRunMedia": null, "reactionVideos": [], @@ -553097,7 +552597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 17806982, "featuredRunMedia": null, "reactionVideos": [], @@ -553117,7 +552617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "144101", "time": 17807406, "featuredRunMedia": null, "reactionVideos": [], @@ -553137,7 +552637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "144412", "time": 17807579, "featuredRunMedia": null, "reactionVideos": [], @@ -553157,7 +552657,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17807640, "featuredRunMedia": null, "reactionVideos": [], @@ -553177,7 +552677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "144264", "time": 17807895, "featuredRunMedia": null, "reactionVideos": [], @@ -553197,7 +552697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17808649, "featuredRunMedia": null, "reactionVideos": [], @@ -553217,7 +552717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17808719, "featuredRunMedia": null, "reactionVideos": [], @@ -553237,7 +552737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 17809833, "featuredRunMedia": null, "reactionVideos": [], @@ -553257,7 +552757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17810195, "featuredRunMedia": null, "reactionVideos": [], @@ -553277,7 +552777,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17810968, "featuredRunMedia": null, "reactionVideos": [], @@ -553301,7 +552801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17811023, "featuredRunMedia": null, "reactionVideos": [], @@ -553321,7 +552821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 445, + "teamId": "144515", "time": 17811991, "featuredRunMedia": null, "reactionVideos": [], @@ -553341,7 +552841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 17812051, "featuredRunMedia": null, "reactionVideos": [], @@ -553361,7 +552861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17812167, "featuredRunMedia": null, "reactionVideos": [], @@ -553381,7 +552881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 17812621, "featuredRunMedia": null, "reactionVideos": [], @@ -553401,7 +552901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "144206", "time": 17813779, "featuredRunMedia": null, "reactionVideos": [], @@ -553421,7 +552921,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17813933, "featuredRunMedia": null, "reactionVideos": [], @@ -553441,7 +552941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17815271, "featuredRunMedia": null, "reactionVideos": [], @@ -553461,7 +552961,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17815429, "featuredRunMedia": null, "reactionVideos": [], @@ -553485,7 +552985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17816216, "featuredRunMedia": null, "reactionVideos": [], @@ -553505,7 +553005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "144353", "time": 17816283, "featuredRunMedia": null, "reactionVideos": [], @@ -553525,7 +553025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17817701, "featuredRunMedia": null, "reactionVideos": [], @@ -553545,7 +553045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "144156", "time": 17818107, "featuredRunMedia": null, "reactionVideos": [], @@ -553565,7 +553065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "144083", "time": 17818206, "featuredRunMedia": null, "reactionVideos": [], @@ -553585,7 +553085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 224, + "teamId": "144294", "time": 17818613, "featuredRunMedia": null, "reactionVideos": [], @@ -553605,7 +553105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 17819137, "featuredRunMedia": null, "reactionVideos": [], @@ -553625,7 +553125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 17819181, "featuredRunMedia": null, "reactionVideos": [], @@ -553645,7 +553145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 377, + "teamId": "144447", "time": 17819368, "featuredRunMedia": null, "reactionVideos": [], @@ -553665,7 +553165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 17819424, "featuredRunMedia": null, "reactionVideos": [], @@ -553685,7 +553185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "144129", "time": 17819489, "featuredRunMedia": null, "reactionVideos": [], @@ -553705,7 +553205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "144166", "time": 17819944, "featuredRunMedia": null, "reactionVideos": [], @@ -553725,7 +553225,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17820029, "featuredRunMedia": null, "reactionVideos": [], @@ -553749,7 +553249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17820886, "featuredRunMedia": null, "reactionVideos": [], @@ -553769,7 +553269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17821242, "featuredRunMedia": null, "reactionVideos": [], @@ -553789,7 +553289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 17821308, "featuredRunMedia": null, "reactionVideos": [], @@ -553809,7 +553309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "144274", "time": 17821373, "featuredRunMedia": null, "reactionVideos": [], @@ -553829,7 +553329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "144131", "time": 17821974, "featuredRunMedia": null, "reactionVideos": [], @@ -553849,7 +553349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 17822607, "featuredRunMedia": null, "reactionVideos": [], @@ -553869,7 +553369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17822681, "featuredRunMedia": null, "reactionVideos": [], @@ -553889,7 +553389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 416, + "teamId": "144486", "time": 17823430, "featuredRunMedia": null, "reactionVideos": [], @@ -553909,7 +553409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17824510, "featuredRunMedia": null, "reactionVideos": [], @@ -553929,7 +553429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17824848, "featuredRunMedia": null, "reactionVideos": [], @@ -553949,7 +553449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 17825012, "featuredRunMedia": null, "reactionVideos": [], @@ -553969,7 +553469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 261, + "teamId": "144331", "time": 17826858, "featuredRunMedia": null, "reactionVideos": [], @@ -553989,7 +553489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 17826937, "featuredRunMedia": null, "reactionVideos": [], @@ -554009,7 +553509,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 17827316, "featuredRunMedia": null, "reactionVideos": [], @@ -554029,7 +553529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "144280", "time": 17827430, "featuredRunMedia": null, "reactionVideos": [], @@ -554049,7 +553549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17827868, "featuredRunMedia": null, "reactionVideos": [], @@ -554069,7 +553569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "144372", "time": 17828805, "featuredRunMedia": null, "reactionVideos": [], @@ -554089,7 +553589,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 370, + "teamId": "144440", "time": 17829505, "featuredRunMedia": null, "reactionVideos": [], @@ -554109,7 +553609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17829671, "featuredRunMedia": null, "reactionVideos": [], @@ -554129,7 +553629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17830447, "featuredRunMedia": null, "reactionVideos": [], @@ -554149,7 +553649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "144108", "time": 17830536, "featuredRunMedia": null, "reactionVideos": [], @@ -554169,7 +553669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "144122", "time": 17830742, "featuredRunMedia": null, "reactionVideos": [], @@ -554189,7 +553689,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "144210", "time": 17831377, "featuredRunMedia": null, "reactionVideos": [], @@ -554209,7 +553709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17831620, "featuredRunMedia": null, "reactionVideos": [], @@ -554229,7 +553729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17831835, "featuredRunMedia": null, "reactionVideos": [], @@ -554249,7 +553749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17831945, "featuredRunMedia": null, "reactionVideos": [], @@ -554269,7 +553769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 17832007, "featuredRunMedia": null, "reactionVideos": [], @@ -554289,7 +553789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17832124, "featuredRunMedia": null, "reactionVideos": [], @@ -554309,7 +553809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "144149", "time": 17832574, "featuredRunMedia": null, "reactionVideos": [], @@ -554329,7 +553829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17832742, "featuredRunMedia": null, "reactionVideos": [], @@ -554349,7 +553849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "144362", "time": 17833076, "featuredRunMedia": null, "reactionVideos": [], @@ -554369,7 +553869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "144091", "time": 17833350, "featuredRunMedia": null, "reactionVideos": [], @@ -554389,7 +553889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17833557, "featuredRunMedia": null, "reactionVideos": [], @@ -554409,7 +553909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 17833658, "featuredRunMedia": null, "reactionVideos": [], @@ -554429,7 +553929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 370, + "teamId": "144440", "time": 17833761, "featuredRunMedia": null, "reactionVideos": [], @@ -554449,7 +553949,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17834088, "featuredRunMedia": null, "reactionVideos": [], @@ -554469,7 +553969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17834160, "featuredRunMedia": null, "reactionVideos": [], @@ -554489,7 +553989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17834592, "featuredRunMedia": null, "reactionVideos": [], @@ -554509,7 +554009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17834975, "featuredRunMedia": null, "reactionVideos": [], @@ -554529,7 +554029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "144120", "time": 17835132, "featuredRunMedia": null, "reactionVideos": [], @@ -554549,7 +554049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17835203, "featuredRunMedia": null, "reactionVideos": [], @@ -554569,7 +554069,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17836058, "featuredRunMedia": null, "reactionVideos": [], @@ -554589,7 +554089,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17836560, "featuredRunMedia": null, "reactionVideos": [], @@ -554609,7 +554109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17836719, "featuredRunMedia": null, "reactionVideos": [], @@ -554629,7 +554129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17837188, "featuredRunMedia": null, "reactionVideos": [], @@ -554649,7 +554149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17837578, "featuredRunMedia": null, "reactionVideos": [], @@ -554669,7 +554169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "144365", "time": 17837692, "featuredRunMedia": null, "reactionVideos": [], @@ -554689,7 +554189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17837765, "featuredRunMedia": null, "reactionVideos": [], @@ -554709,7 +554209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17837940, "featuredRunMedia": null, "reactionVideos": [], @@ -554729,7 +554229,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17840318, "featuredRunMedia": null, "reactionVideos": [], @@ -554749,7 +554249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "144252", "time": 17841241, "featuredRunMedia": null, "reactionVideos": [], @@ -554769,7 +554269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 17841599, "featuredRunMedia": null, "reactionVideos": [], @@ -554789,7 +554289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17841765, "featuredRunMedia": null, "reactionVideos": [], @@ -554809,7 +554309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 17841834, "featuredRunMedia": null, "reactionVideos": [], @@ -554829,7 +554329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 407, + "teamId": "144477", "time": 17841906, "featuredRunMedia": null, "reactionVideos": [], @@ -554849,7 +554349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "144302", "time": 17842191, "featuredRunMedia": null, "reactionVideos": [], @@ -554869,7 +554369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "144198", "time": 17842544, "featuredRunMedia": null, "reactionVideos": [], @@ -554889,7 +554389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17842686, "featuredRunMedia": null, "reactionVideos": [], @@ -554909,7 +554409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17843516, "featuredRunMedia": null, "reactionVideos": [], @@ -554929,7 +554429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17843986, "featuredRunMedia": null, "reactionVideos": [], @@ -554949,7 +554449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 17844551, "featuredRunMedia": null, "reactionVideos": [], @@ -554969,7 +554469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 17844664, "featuredRunMedia": null, "reactionVideos": [], @@ -554989,7 +554489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 392, + "teamId": "144462", "time": 17844749, "featuredRunMedia": null, "reactionVideos": [], @@ -555009,7 +554509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "144231", "time": 17844827, "featuredRunMedia": null, "reactionVideos": [], @@ -555033,7 +554533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17844948, "featuredRunMedia": null, "reactionVideos": [], @@ -555053,7 +554553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17845015, "featuredRunMedia": null, "reactionVideos": [], @@ -555073,7 +554573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "144113", "time": 17845072, "featuredRunMedia": null, "reactionVideos": [], @@ -555093,7 +554593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 74, + "teamId": "144144", "time": 17846855, "featuredRunMedia": null, "reactionVideos": [], @@ -555113,7 +554613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 17847157, "featuredRunMedia": null, "reactionVideos": [], @@ -555133,7 +554633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 385, + "teamId": "144455", "time": 17847371, "featuredRunMedia": null, "reactionVideos": [], @@ -555153,7 +554653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 436, + "teamId": "144506", "time": 17848503, "featuredRunMedia": null, "reactionVideos": [], @@ -555173,7 +554673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 17848666, "featuredRunMedia": null, "reactionVideos": [], @@ -555193,7 +554693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17848804, "featuredRunMedia": null, "reactionVideos": [], @@ -555213,7 +554713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17849004, "featuredRunMedia": null, "reactionVideos": [], @@ -555233,7 +554733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17850001, "featuredRunMedia": null, "reactionVideos": [], @@ -555253,7 +554753,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17850324, "featuredRunMedia": null, "reactionVideos": [], @@ -555273,7 +554773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "144382", "time": 17850742, "featuredRunMedia": null, "reactionVideos": [], @@ -555293,7 +554793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 17851132, "featuredRunMedia": null, "reactionVideos": [], @@ -555313,7 +554813,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17851721, "featuredRunMedia": null, "reactionVideos": [], @@ -555333,7 +554833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17851794, "featuredRunMedia": null, "reactionVideos": [], @@ -555353,7 +554853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 17851864, "featuredRunMedia": null, "reactionVideos": [], @@ -555373,7 +554873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 17852075, "featuredRunMedia": null, "reactionVideos": [], @@ -555393,7 +554893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17852567, "featuredRunMedia": null, "reactionVideos": [], @@ -555413,7 +554913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17852797, "featuredRunMedia": null, "reactionVideos": [], @@ -555433,7 +554933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "144230", "time": 17853922, "featuredRunMedia": null, "reactionVideos": [], @@ -555453,7 +554953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17854711, "featuredRunMedia": null, "reactionVideos": [], @@ -555473,7 +554973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 17855225, "featuredRunMedia": null, "reactionVideos": [], @@ -555493,7 +554993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "144187", "time": 17855343, "featuredRunMedia": null, "reactionVideos": [], @@ -555513,7 +555013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17855825, "featuredRunMedia": null, "reactionVideos": [], @@ -555533,7 +555033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 17857044, "featuredRunMedia": null, "reactionVideos": [], @@ -555553,7 +555053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17857249, "featuredRunMedia": null, "reactionVideos": [], @@ -555573,7 +555073,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17857379, "featuredRunMedia": null, "reactionVideos": [], @@ -555593,7 +555093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "144419", "time": 17857474, "featuredRunMedia": null, "reactionVideos": [], @@ -555613,7 +555113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17857533, "featuredRunMedia": null, "reactionVideos": [], @@ -555633,7 +555133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 17857583, "featuredRunMedia": null, "reactionVideos": [], @@ -555653,7 +555153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "144322", "time": 17858040, "featuredRunMedia": null, "reactionVideos": [], @@ -555673,7 +555173,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "144281", "time": 17859357, "featuredRunMedia": null, "reactionVideos": [], @@ -555693,7 +555193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "144406", "time": 17859584, "featuredRunMedia": null, "reactionVideos": [], @@ -555713,7 +555213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 114, + "teamId": "144184", "time": 17860572, "featuredRunMedia": null, "reactionVideos": [], @@ -555733,7 +555233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17860719, "featuredRunMedia": null, "reactionVideos": [], @@ -555753,7 +555253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "144150", "time": 17860833, "featuredRunMedia": null, "reactionVideos": [], @@ -555773,7 +555273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 17861201, "featuredRunMedia": null, "reactionVideos": [], @@ -555793,7 +555293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 17861279, "featuredRunMedia": null, "reactionVideos": [], @@ -555813,7 +555313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 448, + "teamId": "144518", "time": 17862148, "featuredRunMedia": null, "reactionVideos": [], @@ -555833,7 +555333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17862798, "featuredRunMedia": null, "reactionVideos": [], @@ -555853,7 +555353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "144096", "time": 17863675, "featuredRunMedia": null, "reactionVideos": [], @@ -555873,7 +555373,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17863856, "featuredRunMedia": null, "reactionVideos": [], @@ -555893,7 +555393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 17863953, "featuredRunMedia": null, "reactionVideos": [], @@ -555913,7 +555413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "144227", "time": 17865003, "featuredRunMedia": null, "reactionVideos": [], @@ -555933,7 +555433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "144292", "time": 17866003, "featuredRunMedia": null, "reactionVideos": [], @@ -555953,7 +555453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 17866162, "featuredRunMedia": null, "reactionVideos": [], @@ -555973,7 +555473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17866893, "featuredRunMedia": null, "reactionVideos": [], @@ -555993,7 +555493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "144072", "time": 17866941, "featuredRunMedia": null, "reactionVideos": [], @@ -556017,7 +555517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17866984, "featuredRunMedia": null, "reactionVideos": [], @@ -556037,7 +555537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 396, + "teamId": "144466", "time": 17867416, "featuredRunMedia": null, "reactionVideos": [], @@ -556057,7 +555557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 17867488, "featuredRunMedia": null, "reactionVideos": [], @@ -556077,7 +555577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "144387", "time": 17868213, "featuredRunMedia": null, "reactionVideos": [], @@ -556097,7 +555597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "144354", "time": 17868643, "featuredRunMedia": null, "reactionVideos": [], @@ -556117,7 +555617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17868770, "featuredRunMedia": null, "reactionVideos": [], @@ -556137,7 +555637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "144265", "time": 17869499, "featuredRunMedia": null, "reactionVideos": [], @@ -556157,7 +555657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 17869603, "featuredRunMedia": null, "reactionVideos": [], @@ -556177,7 +555677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 17870445, "featuredRunMedia": null, "reactionVideos": [], @@ -556197,7 +555697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17871372, "featuredRunMedia": null, "reactionVideos": [], @@ -556217,7 +555717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17872163, "featuredRunMedia": null, "reactionVideos": [], @@ -556237,7 +555737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 17872737, "featuredRunMedia": null, "reactionVideos": [], @@ -556261,7 +555761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 17873629, "featuredRunMedia": null, "reactionVideos": [], @@ -556281,7 +555781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "144271", "time": 17874135, "featuredRunMedia": null, "reactionVideos": [], @@ -556301,7 +555801,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "144290", "time": 17874274, "featuredRunMedia": null, "reactionVideos": [], @@ -556321,7 +555821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "144233", "time": 17874896, "featuredRunMedia": null, "reactionVideos": [], @@ -556341,7 +555841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "144245", "time": 17874956, "featuredRunMedia": null, "reactionVideos": [], @@ -556361,7 +555861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17875256, "featuredRunMedia": null, "reactionVideos": [], @@ -556381,7 +555881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 347, + "teamId": "144417", "time": 17875904, "featuredRunMedia": null, "reactionVideos": [], @@ -556401,7 +555901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 193, + "teamId": "144263", "time": 17876486, "featuredRunMedia": null, "reactionVideos": [], @@ -556421,7 +555921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "144345", "time": 17876741, "featuredRunMedia": null, "reactionVideos": [], @@ -556441,7 +555941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17876808, "featuredRunMedia": null, "reactionVideos": [], @@ -556461,7 +555961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "144371", "time": 17876990, "featuredRunMedia": null, "reactionVideos": [], @@ -556481,7 +555981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17877104, "featuredRunMedia": null, "reactionVideos": [], @@ -556501,7 +556001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 389, + "teamId": "144459", "time": 17877425, "featuredRunMedia": null, "reactionVideos": [], @@ -556521,7 +556021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17877562, "featuredRunMedia": null, "reactionVideos": [], @@ -556541,7 +556041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 17877617, "featuredRunMedia": null, "reactionVideos": [], @@ -556561,7 +556061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 225, + "teamId": "144295", "time": 17877995, "featuredRunMedia": null, "reactionVideos": [], @@ -556581,7 +556081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17878158, "featuredRunMedia": null, "reactionVideos": [], @@ -556601,7 +556101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "144193", "time": 17878736, "featuredRunMedia": null, "reactionVideos": [], @@ -556621,7 +556121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "144248", "time": 17878800, "featuredRunMedia": null, "reactionVideos": [], @@ -556641,7 +556141,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 0, + "teamId": "144070", "time": 17879141, "featuredRunMedia": null, "reactionVideos": [], @@ -556661,7 +556161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "144314", "time": 17880361, "featuredRunMedia": null, "reactionVideos": [], @@ -556681,7 +556181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 346, + "teamId": "144416", "time": 17880767, "featuredRunMedia": null, "reactionVideos": [], @@ -556701,7 +556201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "144278", "time": 17880824, "featuredRunMedia": null, "reactionVideos": [], @@ -556721,7 +556221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "144236", "time": 17880871, "featuredRunMedia": null, "reactionVideos": [], @@ -556745,7 +556245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17881114, "featuredRunMedia": null, "reactionVideos": [], @@ -556769,7 +556269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17881576, "featuredRunMedia": null, "reactionVideos": [], @@ -556789,7 +556289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "144239", "time": 17882873, "featuredRunMedia": null, "reactionVideos": [], @@ -556809,7 +556309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "144249", "time": 17883194, "featuredRunMedia": null, "reactionVideos": [], @@ -556829,7 +556329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 17883662, "featuredRunMedia": null, "reactionVideos": [], @@ -556849,7 +556349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17884729, "featuredRunMedia": null, "reactionVideos": [], @@ -556869,7 +556369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "144282", "time": 17884941, "featuredRunMedia": null, "reactionVideos": [], @@ -556889,7 +556389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 352, + "teamId": "144422", "time": 17884988, "featuredRunMedia": null, "reactionVideos": [], @@ -556909,7 +556409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17885676, "featuredRunMedia": null, "reactionVideos": [], @@ -556929,7 +556429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 17885863, "featuredRunMedia": null, "reactionVideos": [], @@ -556949,7 +556449,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "144383", "time": 17885922, "featuredRunMedia": null, "reactionVideos": [], @@ -556969,7 +556469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17886113, "featuredRunMedia": null, "reactionVideos": [], @@ -556989,7 +556489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 361, + "teamId": "144431", "time": 17888373, "featuredRunMedia": null, "reactionVideos": [], @@ -557009,7 +556509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "144097", "time": 17888456, "featuredRunMedia": null, "reactionVideos": [], @@ -557029,7 +556529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "144157", "time": 17888623, "featuredRunMedia": null, "reactionVideos": [], @@ -557049,7 +556549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "144128", "time": 17889654, "featuredRunMedia": null, "reactionVideos": [], @@ -557069,7 +556569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 391, + "teamId": "144461", "time": 17889806, "featuredRunMedia": null, "reactionVideos": [], @@ -557089,7 +556589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "144273", "time": 17890042, "featuredRunMedia": null, "reactionVideos": [], @@ -557109,7 +556609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "144226", "time": 17890362, "featuredRunMedia": null, "reactionVideos": [], @@ -557129,7 +556629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17890511, "featuredRunMedia": null, "reactionVideos": [], @@ -557149,7 +556649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17890922, "featuredRunMedia": null, "reactionVideos": [], @@ -557169,7 +556669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "144117", "time": 17891334, "featuredRunMedia": null, "reactionVideos": [], @@ -557189,7 +556689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17891587, "featuredRunMedia": null, "reactionVideos": [], @@ -557209,7 +556709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "144132", "time": 17892733, "featuredRunMedia": null, "reactionVideos": [], @@ -557229,7 +556729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 17894372, "featuredRunMedia": null, "reactionVideos": [], @@ -557249,7 +556749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 17895834, "featuredRunMedia": null, "reactionVideos": [], @@ -557269,7 +556769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "144378", "time": 17896337, "featuredRunMedia": null, "reactionVideos": [], @@ -557289,7 +556789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 17896614, "featuredRunMedia": null, "reactionVideos": [], @@ -557309,7 +556809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "144214", "time": 17896668, "featuredRunMedia": null, "reactionVideos": [], @@ -557329,7 +556829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "144134", "time": 17896725, "featuredRunMedia": null, "reactionVideos": [], @@ -557349,7 +556849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17897495, "featuredRunMedia": null, "reactionVideos": [], @@ -557369,7 +556869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 373, + "teamId": "144443", "time": 17897624, "featuredRunMedia": null, "reactionVideos": [], @@ -557389,7 +556889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "144096", "time": 17897844, "featuredRunMedia": null, "reactionVideos": [], @@ -557409,7 +556909,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17898395, "featuredRunMedia": null, "reactionVideos": [], @@ -557429,7 +556929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "144208", "time": 17898441, "featuredRunMedia": null, "reactionVideos": [], @@ -557449,7 +556949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17899110, "featuredRunMedia": null, "reactionVideos": [], @@ -557469,7 +556969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17899729, "featuredRunMedia": null, "reactionVideos": [], @@ -557489,7 +556989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17900357, "featuredRunMedia": null, "reactionVideos": [], @@ -557509,7 +557009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17900550, "featuredRunMedia": null, "reactionVideos": [], @@ -557529,7 +557029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 379, + "teamId": "144449", "time": 17900640, "featuredRunMedia": null, "reactionVideos": [], @@ -557549,7 +557049,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 382, + "teamId": "144452", "time": 17901600, "featuredRunMedia": null, "reactionVideos": [], @@ -557569,7 +557069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "144317", "time": 17901694, "featuredRunMedia": null, "reactionVideos": [], @@ -557589,7 +557089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "144119", "time": 17901798, "featuredRunMedia": null, "reactionVideos": [], @@ -557609,7 +557109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17901892, "featuredRunMedia": null, "reactionVideos": [], @@ -557629,7 +557129,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17902174, "featuredRunMedia": null, "reactionVideos": [], @@ -557649,7 +557149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17902913, "featuredRunMedia": null, "reactionVideos": [], @@ -557669,7 +557169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17905555, "featuredRunMedia": null, "reactionVideos": [], @@ -557689,7 +557189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17905672, "featuredRunMedia": null, "reactionVideos": [], @@ -557709,7 +557209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17905735, "featuredRunMedia": null, "reactionVideos": [], @@ -557729,7 +557229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "144100", "time": 17905803, "featuredRunMedia": null, "reactionVideos": [], @@ -557749,7 +557249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 436, + "teamId": "144506", "time": 17906016, "featuredRunMedia": null, "reactionVideos": [], @@ -557769,7 +557269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "144289", "time": 17907395, "featuredRunMedia": null, "reactionVideos": [], @@ -557789,7 +557289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17907581, "featuredRunMedia": null, "reactionVideos": [], @@ -557809,7 +557309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "144306", "time": 17907911, "featuredRunMedia": null, "reactionVideos": [], @@ -557829,7 +557329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17908274, "featuredRunMedia": null, "reactionVideos": [], @@ -557849,7 +557349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17908360, "featuredRunMedia": null, "reactionVideos": [], @@ -557869,7 +557369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "144141", "time": 17908630, "featuredRunMedia": null, "reactionVideos": [], @@ -557889,7 +557389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 310, + "teamId": "144380", "time": 17909001, "featuredRunMedia": null, "reactionVideos": [], @@ -557909,7 +557409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "144379", "time": 17909227, "featuredRunMedia": null, "reactionVideos": [], @@ -557929,7 +557429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 306, + "teamId": "144376", "time": 17909483, "featuredRunMedia": null, "reactionVideos": [], @@ -557949,7 +557449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 17909624, "featuredRunMedia": null, "reactionVideos": [], @@ -557969,7 +557469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17911078, "featuredRunMedia": null, "reactionVideos": [], @@ -557989,7 +557489,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "144259", "time": 17911291, "featuredRunMedia": null, "reactionVideos": [], @@ -558009,7 +557509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "144222", "time": 17913611, "featuredRunMedia": null, "reactionVideos": [], @@ -558029,7 +557529,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17914002, "featuredRunMedia": null, "reactionVideos": [], @@ -558049,7 +557549,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17914301, "featuredRunMedia": null, "reactionVideos": [], @@ -558069,7 +557569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "144197", "time": 17914469, "featuredRunMedia": null, "reactionVideos": [], @@ -558089,7 +557589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "144079", "time": 17914749, "featuredRunMedia": null, "reactionVideos": [], @@ -558109,7 +557609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 274, + "teamId": "144344", "time": 17915700, "featuredRunMedia": null, "reactionVideos": [], @@ -558129,7 +557629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17915780, "featuredRunMedia": null, "reactionVideos": [], @@ -558153,7 +557653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17916034, "featuredRunMedia": null, "reactionVideos": [], @@ -558173,7 +557673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "144336", "time": 17916183, "featuredRunMedia": null, "reactionVideos": [], @@ -558193,7 +557693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17916998, "featuredRunMedia": null, "reactionVideos": [], @@ -558213,7 +557713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "144162", "time": 17917056, "featuredRunMedia": null, "reactionVideos": [], @@ -558233,7 +557733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "144351", "time": 17917843, "featuredRunMedia": null, "reactionVideos": [], @@ -558253,7 +557753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 17918162, "featuredRunMedia": null, "reactionVideos": [], @@ -558273,7 +557773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "144342", "time": 17919091, "featuredRunMedia": null, "reactionVideos": [], @@ -558293,7 +557793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "144183", "time": 17919425, "featuredRunMedia": null, "reactionVideos": [], @@ -558313,7 +557813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 98, + "teamId": "144168", "time": 17919921, "featuredRunMedia": null, "reactionVideos": [], @@ -558333,7 +557833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 17920261, "featuredRunMedia": null, "reactionVideos": [], @@ -558353,7 +557853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "144091", "time": 17920446, "featuredRunMedia": null, "reactionVideos": [], @@ -558373,7 +557873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17921610, "featuredRunMedia": null, "reactionVideos": [], @@ -558393,7 +557893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "144304", "time": 17921908, "featuredRunMedia": null, "reactionVideos": [], @@ -558413,7 +557913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 260, + "teamId": "144330", "time": 17921982, "featuredRunMedia": null, "reactionVideos": [], @@ -558433,7 +557933,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17922378, "featuredRunMedia": null, "reactionVideos": [], @@ -558453,7 +557953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 17922438, "featuredRunMedia": null, "reactionVideos": [], @@ -558473,7 +557973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "144209", "time": 17922648, "featuredRunMedia": null, "reactionVideos": [], @@ -558493,7 +557993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17922711, "featuredRunMedia": null, "reactionVideos": [], @@ -558513,7 +558013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "144073", "time": 17923280, "featuredRunMedia": null, "reactionVideos": [], @@ -558533,7 +558033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17924541, "featuredRunMedia": null, "reactionVideos": [], @@ -558553,7 +558053,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "144234", "time": 17924708, "featuredRunMedia": null, "reactionVideos": [], @@ -558573,7 +558073,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 255, + "teamId": "144325", "time": 17925172, "featuredRunMedia": null, "reactionVideos": [], @@ -558593,7 +558093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 419, + "teamId": "144489", "time": 17925495, "featuredRunMedia": null, "reactionVideos": [], @@ -558613,7 +558113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 376, + "teamId": "144446", "time": 17925664, "featuredRunMedia": null, "reactionVideos": [], @@ -558633,7 +558133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17925730, "featuredRunMedia": null, "reactionVideos": [], @@ -558653,7 +558153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "144239", "time": 17925933, "featuredRunMedia": null, "reactionVideos": [], @@ -558673,7 +558173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "144258", "time": 17926020, "featuredRunMedia": null, "reactionVideos": [], @@ -558693,7 +558193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 109, + "teamId": "144179", "time": 17926061, "featuredRunMedia": null, "reactionVideos": [], @@ -558713,7 +558213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "144168", "time": 17926458, "featuredRunMedia": null, "reactionVideos": [], @@ -558737,7 +558237,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17926789, "featuredRunMedia": null, "reactionVideos": [], @@ -558757,7 +558257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 305, + "teamId": "144375", "time": 17926902, "featuredRunMedia": null, "reactionVideos": [], @@ -558777,7 +558277,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "144078", "time": 17928077, "featuredRunMedia": null, "reactionVideos": [], @@ -558797,7 +558297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17928490, "featuredRunMedia": null, "reactionVideos": [], @@ -558817,7 +558317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 436, + "teamId": "144506", "time": 17928639, "featuredRunMedia": null, "reactionVideos": [], @@ -558837,7 +558337,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 385, + "teamId": "144455", "time": 17930222, "featuredRunMedia": null, "reactionVideos": [], @@ -558857,7 +558357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "144118", "time": 17930362, "featuredRunMedia": null, "reactionVideos": [], @@ -558877,7 +558377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "144246", "time": 17930890, "featuredRunMedia": null, "reactionVideos": [], @@ -558897,7 +558397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 406, + "teamId": "144476", "time": 17931180, "featuredRunMedia": null, "reactionVideos": [], @@ -558917,7 +558417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17932133, "featuredRunMedia": null, "reactionVideos": [], @@ -558937,7 +558437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17932686, "featuredRunMedia": null, "reactionVideos": [], @@ -558957,7 +558457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17933269, "featuredRunMedia": null, "reactionVideos": [], @@ -558977,7 +558477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "144186", "time": 17933332, "featuredRunMedia": null, "reactionVideos": [], @@ -558997,7 +558497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "144323", "time": 17933384, "featuredRunMedia": null, "reactionVideos": [], @@ -559017,7 +558517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17933709, "featuredRunMedia": null, "reactionVideos": [], @@ -559037,7 +558537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 447, + "teamId": "144517", "time": 17934053, "featuredRunMedia": null, "reactionVideos": [], @@ -559057,7 +558557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "144163", "time": 17934126, "featuredRunMedia": null, "reactionVideos": [], @@ -559077,7 +558577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 443, + "teamId": "144513", "time": 17934515, "featuredRunMedia": null, "reactionVideos": [], @@ -559097,7 +558597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "144248", "time": 17934962, "featuredRunMedia": null, "reactionVideos": [], @@ -559117,7 +558617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "144243", "time": 17935136, "featuredRunMedia": null, "reactionVideos": [], @@ -559137,7 +558637,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 409, + "teamId": "144479", "time": 17935845, "featuredRunMedia": null, "reactionVideos": [], @@ -559157,7 +558657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "144106", "time": 17935918, "featuredRunMedia": null, "reactionVideos": [], @@ -559177,7 +558677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 380, + "teamId": "144450", "time": 17936149, "featuredRunMedia": null, "reactionVideos": [], @@ -559197,7 +558697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "144335", "time": 17936563, "featuredRunMedia": null, "reactionVideos": [], @@ -559217,7 +558717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17937753, "featuredRunMedia": null, "reactionVideos": [], @@ -559237,7 +558737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 336, + "teamId": "144406", "time": 17938690, "featuredRunMedia": null, "reactionVideos": [], @@ -559257,7 +558757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 330, + "teamId": "144400", "time": 17938952, "featuredRunMedia": null, "reactionVideos": [], @@ -559277,7 +558777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17939087, "featuredRunMedia": null, "reactionVideos": [], @@ -559297,7 +558797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17939196, "featuredRunMedia": null, "reactionVideos": [], @@ -559317,7 +558817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "144259", "time": 17939586, "featuredRunMedia": null, "reactionVideos": [], @@ -559337,7 +558837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17940359, "featuredRunMedia": null, "reactionVideos": [], @@ -559357,7 +558857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "144221", "time": 17941031, "featuredRunMedia": null, "reactionVideos": [], @@ -559377,7 +558877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17941093, "featuredRunMedia": null, "reactionVideos": [], @@ -559397,7 +558897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 17941141, "featuredRunMedia": null, "reactionVideos": [], @@ -559417,7 +558917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "144142", "time": 17941595, "featuredRunMedia": null, "reactionVideos": [], @@ -559437,7 +558937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 354, + "teamId": "144424", "time": 17942240, "featuredRunMedia": null, "reactionVideos": [], @@ -559457,7 +558957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "144202", "time": 17942605, "featuredRunMedia": null, "reactionVideos": [], @@ -559477,7 +558977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 420, + "teamId": "144490", "time": 17942769, "featuredRunMedia": null, "reactionVideos": [], @@ -559497,7 +558997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 437, + "teamId": "144507", "time": 17942869, "featuredRunMedia": null, "reactionVideos": [], @@ -559517,7 +559017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "144312", "time": 17944898, "featuredRunMedia": null, "reactionVideos": [], @@ -559537,7 +559037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "144164", "time": 17946718, "featuredRunMedia": null, "reactionVideos": [], @@ -559557,7 +559057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "144281", "time": 17946993, "featuredRunMedia": null, "reactionVideos": [], @@ -559577,7 +559077,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "144402", "time": 17947269, "featuredRunMedia": null, "reactionVideos": [], @@ -559597,7 +559097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "144361", "time": 17947642, "featuredRunMedia": null, "reactionVideos": [], @@ -559617,7 +559117,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 442, + "teamId": "144512", "time": 17949109, "featuredRunMedia": null, "reactionVideos": [], @@ -559637,7 +559137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 17949212, "featuredRunMedia": null, "reactionVideos": [], @@ -559657,7 +559157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "144339", "time": 17950396, "featuredRunMedia": null, "reactionVideos": [], @@ -559677,7 +559177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17950956, "featuredRunMedia": null, "reactionVideos": [], @@ -559697,7 +559197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17951488, "featuredRunMedia": null, "reactionVideos": [], @@ -559717,7 +559217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 383, + "teamId": "144453", "time": 17951759, "featuredRunMedia": null, "reactionVideos": [], @@ -559737,7 +559237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "144179", "time": 17952929, "featuredRunMedia": null, "reactionVideos": [], @@ -559757,7 +559257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "144373", "time": 17953095, "featuredRunMedia": null, "reactionVideos": [], @@ -559777,7 +559277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "144143", "time": 17953161, "featuredRunMedia": null, "reactionVideos": [], @@ -559797,7 +559297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "144250", "time": 17953367, "featuredRunMedia": null, "reactionVideos": [], @@ -559817,7 +559317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "144257", "time": 17953627, "featuredRunMedia": null, "reactionVideos": [], @@ -559837,7 +559337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "144293", "time": 17955906, "featuredRunMedia": null, "reactionVideos": [], @@ -559857,7 +559357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "144088", "time": 17956342, "featuredRunMedia": null, "reactionVideos": [], @@ -559877,7 +559377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "144332", "time": 17957151, "featuredRunMedia": null, "reactionVideos": [], @@ -559897,7 +559397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "144362", "time": 17957397, "featuredRunMedia": null, "reactionVideos": [], @@ -559917,7 +559417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "144159", "time": 17958332, "featuredRunMedia": null, "reactionVideos": [], @@ -559937,7 +559437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 314, + "teamId": "144384", "time": 17958387, "featuredRunMedia": null, "reactionVideos": [], @@ -559957,7 +559457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 357, + "teamId": "144427", "time": 17958814, "featuredRunMedia": null, "reactionVideos": [], @@ -559977,7 +559477,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17959072, "featuredRunMedia": null, "reactionVideos": [], @@ -559997,7 +559497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17959651, "featuredRunMedia": null, "reactionVideos": [], @@ -560017,7 +559517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17959707, "featuredRunMedia": null, "reactionVideos": [], @@ -560041,7 +559541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17960616, "featuredRunMedia": null, "reactionVideos": [], @@ -560065,7 +559565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17961121, "featuredRunMedia": null, "reactionVideos": [], @@ -560089,7 +559589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "144276", "time": 17961338, "featuredRunMedia": null, "reactionVideos": [], @@ -560109,7 +559609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "144300", "time": 17961937, "featuredRunMedia": null, "reactionVideos": [], @@ -560129,7 +559629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "144318", "time": 17963925, "featuredRunMedia": null, "reactionVideos": [], @@ -560149,7 +559649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17964650, "featuredRunMedia": null, "reactionVideos": [], @@ -560169,7 +559669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 17964712, "featuredRunMedia": null, "reactionVideos": [], @@ -560189,7 +559689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17964805, "featuredRunMedia": null, "reactionVideos": [], @@ -560209,7 +559709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 381, + "teamId": "144451", "time": 17964849, "featuredRunMedia": null, "reactionVideos": [], @@ -560229,7 +559729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "144331", "time": 17964916, "featuredRunMedia": null, "reactionVideos": [], @@ -560249,7 +559749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "144285", "time": 17965211, "featuredRunMedia": null, "reactionVideos": [], @@ -560269,7 +559769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 17965320, "featuredRunMedia": null, "reactionVideos": [], @@ -560289,7 +559789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17965643, "featuredRunMedia": null, "reactionVideos": [], @@ -560309,7 +559809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 52, + "teamId": "144122", "time": 17966351, "featuredRunMedia": null, "reactionVideos": [], @@ -560329,7 +559829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17966415, "featuredRunMedia": null, "reactionVideos": [], @@ -560349,7 +559849,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17967605, "featuredRunMedia": null, "reactionVideos": [], @@ -560369,7 +559869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 394, + "teamId": "144464", "time": 17968023, "featuredRunMedia": null, "reactionVideos": [], @@ -560389,7 +559889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 274, + "teamId": "144344", "time": 17968786, "featuredRunMedia": null, "reactionVideos": [], @@ -560409,7 +559909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 353, + "teamId": "144423", "time": 17968842, "featuredRunMedia": null, "reactionVideos": [], @@ -560429,7 +559929,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 445, + "teamId": "144515", "time": 17969195, "featuredRunMedia": null, "reactionVideos": [], @@ -560449,7 +559949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "144346", "time": 17970229, "featuredRunMedia": null, "reactionVideos": [], @@ -560469,7 +559969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "144223", "time": 17970300, "featuredRunMedia": null, "reactionVideos": [], @@ -560489,7 +559989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 428, + "teamId": "144498", "time": 17970564, "featuredRunMedia": null, "reactionVideos": [], @@ -560509,7 +560009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 81, + "teamId": "144151", "time": 17972887, "featuredRunMedia": null, "reactionVideos": [], @@ -560529,7 +560029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17972937, "featuredRunMedia": null, "reactionVideos": [], @@ -560549,7 +560049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 410, + "teamId": "144480", "time": 17973031, "featuredRunMedia": null, "reactionVideos": [], @@ -560569,7 +560069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "144274", "time": 17973974, "featuredRunMedia": null, "reactionVideos": [], @@ -560589,7 +560089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "144195", "time": 17974136, "featuredRunMedia": null, "reactionVideos": [], @@ -560609,7 +560109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "144369", "time": 17974193, "featuredRunMedia": null, "reactionVideos": [], @@ -560629,7 +560129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 423, + "teamId": "144493", "time": 17975240, "featuredRunMedia": null, "reactionVideos": [], @@ -560649,7 +560149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17976183, "featuredRunMedia": null, "reactionVideos": [], @@ -560669,7 +560169,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "144281", "time": 17976491, "featuredRunMedia": null, "reactionVideos": [], @@ -560693,7 +560193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 165, + "teamId": "144235", "time": 17976597, "featuredRunMedia": null, "reactionVideos": [], @@ -560713,7 +560213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 387, + "teamId": "144457", "time": 17976955, "featuredRunMedia": null, "reactionVideos": [], @@ -560733,7 +560233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17977304, "featuredRunMedia": null, "reactionVideos": [], @@ -560753,7 +560253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 378, + "teamId": "144448", "time": 17977659, "featuredRunMedia": null, "reactionVideos": [], @@ -560773,7 +560273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 321, + "teamId": "144391", "time": 17978123, "featuredRunMedia": null, "reactionVideos": [], @@ -560793,7 +560293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17978224, "featuredRunMedia": null, "reactionVideos": [], @@ -560813,7 +560313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17978505, "featuredRunMedia": null, "reactionVideos": [], @@ -560833,7 +560333,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "144328", "time": 17979602, "featuredRunMedia": null, "reactionVideos": [], @@ -560853,7 +560353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 299, + "teamId": "144369", "time": 17980100, "featuredRunMedia": null, "reactionVideos": [], @@ -560873,7 +560373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17980977, "featuredRunMedia": null, "reactionVideos": [], @@ -560893,7 +560393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "144332", "time": 17981229, "featuredRunMedia": null, "reactionVideos": [], @@ -560913,7 +560413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17981449, "featuredRunMedia": null, "reactionVideos": [], @@ -560933,7 +560433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17981681, "featuredRunMedia": null, "reactionVideos": [], @@ -560953,7 +560453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "144322", "time": 17982730, "featuredRunMedia": null, "reactionVideos": [], @@ -560973,7 +560473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "144275", "time": 17983565, "featuredRunMedia": null, "reactionVideos": [], @@ -560993,7 +560493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "144410", "time": 17984360, "featuredRunMedia": null, "reactionVideos": [], @@ -561013,7 +560513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "144356", "time": 17984448, "featuredRunMedia": null, "reactionVideos": [], @@ -561033,7 +560533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17984989, "featuredRunMedia": null, "reactionVideos": [], @@ -561053,7 +560553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17985092, "featuredRunMedia": null, "reactionVideos": [], @@ -561073,7 +560573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "144248", "time": 17985521, "featuredRunMedia": null, "reactionVideos": [], @@ -561093,7 +560593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 110, + "teamId": "144180", "time": 17985706, "featuredRunMedia": null, "reactionVideos": [], @@ -561113,7 +560613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "144198", "time": 17985814, "featuredRunMedia": null, "reactionVideos": [], @@ -561133,7 +560633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 314, + "teamId": "144384", "time": 17986200, "featuredRunMedia": null, "reactionVideos": [], @@ -561153,7 +560653,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "144296", "time": 17986708, "featuredRunMedia": null, "reactionVideos": [], @@ -561173,7 +560673,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "144114", "time": 17987538, "featuredRunMedia": null, "reactionVideos": [], @@ -561193,7 +560693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17987636, "featuredRunMedia": null, "reactionVideos": [], @@ -561213,7 +560713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "144201", "time": 17988737, "featuredRunMedia": null, "reactionVideos": [], @@ -561233,7 +560733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "144103", "time": 17989268, "featuredRunMedia": null, "reactionVideos": [], @@ -561253,7 +560753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17989566, "featuredRunMedia": null, "reactionVideos": [], @@ -561273,7 +560773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17989939, "featuredRunMedia": null, "reactionVideos": [], @@ -561293,7 +560793,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17990331, "featuredRunMedia": null, "reactionVideos": [], @@ -561317,7 +560817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "144232", "time": 17990592, "featuredRunMedia": null, "reactionVideos": [], @@ -561337,7 +560837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "144093", "time": 17990724, "featuredRunMedia": null, "reactionVideos": [], @@ -561357,7 +560857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 422, + "teamId": "144492", "time": 17991059, "featuredRunMedia": null, "reactionVideos": [], @@ -561377,7 +560877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 393, + "teamId": "144463", "time": 17991312, "featuredRunMedia": null, "reactionVideos": [], @@ -561397,7 +560897,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "144116", "time": 17991507, "featuredRunMedia": null, "reactionVideos": [], @@ -561417,7 +560917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 405, + "teamId": "144475", "time": 17991573, "featuredRunMedia": null, "reactionVideos": [], @@ -561437,7 +560937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "144240", "time": 17992583, "featuredRunMedia": null, "reactionVideos": [], @@ -561457,7 +560957,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 406, + "teamId": "144476", "time": 17992764, "featuredRunMedia": null, "reactionVideos": [], @@ -561477,7 +560977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17992890, "featuredRunMedia": null, "reactionVideos": [], @@ -561497,7 +560997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 17994715, "featuredRunMedia": null, "reactionVideos": [], @@ -561517,7 +561017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "144357", "time": 17994823, "featuredRunMedia": null, "reactionVideos": [], @@ -561537,7 +561037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "144287", "time": 17995112, "featuredRunMedia": null, "reactionVideos": [], @@ -561557,7 +561057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "144175", "time": 17995238, "featuredRunMedia": null, "reactionVideos": [], @@ -561577,7 +561077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "144203", "time": 17995721, "featuredRunMedia": null, "reactionVideos": [], @@ -561597,7 +561097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "144239", "time": 17995833, "featuredRunMedia": null, "reactionVideos": [], @@ -561617,7 +561117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "144169", "time": 17996001, "featuredRunMedia": null, "reactionVideos": [], @@ -561637,7 +561137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "144205", "time": 17996677, "featuredRunMedia": null, "reactionVideos": [], @@ -561657,7 +561157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 367, + "teamId": "144437", "time": 17997333, "featuredRunMedia": null, "reactionVideos": [], @@ -561681,7 +561181,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 106, + "teamId": "144176", "time": 17997397, "featuredRunMedia": null, "reactionVideos": [], @@ -561701,7 +561201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 372, + "teamId": "144442", "time": 17997445, "featuredRunMedia": null, "reactionVideos": [], @@ -561721,7 +561221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "144302", "time": 17998395, "featuredRunMedia": null, "reactionVideos": [], @@ -561741,7 +561241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "144408", "time": 17998632, "featuredRunMedia": null, "reactionVideos": [], @@ -561761,7 +561261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "144319", "time": 17999243, "featuredRunMedia": null, "reactionVideos": [], @@ -561781,7 +561281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 390, + "teamId": "144460", "time": 17999343, "featuredRunMedia": null, "reactionVideos": [], @@ -561801,7 +561301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "144071", "time": 17999554, "featuredRunMedia": null, "reactionVideos": [], @@ -561821,7 +561321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "144076", "time": 17999869, "featuredRunMedia": null, "reactionVideos": [], @@ -561841,7 +561341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "144093", "time": 17999933, "featuredRunMedia": null, "reactionVideos": [], @@ -561861,7 +561361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "144272", "time": 18000001, "featuredRunMedia": null, "reactionVideos": [], @@ -561881,7 +561381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 18023756, "featuredRunMedia": null, "reactionVideos": [], @@ -561901,7 +561401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 358, + "teamId": "144428", "time": 18028873, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/pcms.txt b/src/cds/tests/testData/loaders/goldenData/pcms.txt index ad7d48a9a..d049c0809 100644 --- a/src/cds/tests/testData/loaders/goldenData/pcms.txt +++ b/src/cds/tests/testData/loaders/goldenData/pcms.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 1, - "name": "MIPT: Yolki-palki (Nagibin, Mustafin, Evteev)", - "shortName": "MIPT: Yolki-palki (Nagibin, Mustafin, Evteev)", - "contestSystemId": "nef788321", + "id": "nef772709", + "name": "KRSU: 1 (Kasymov, Bakirov, Ulukbekov)", + "shortName": "KRSU: 1 (Kasymov, Bakirov, Ulukbekov)", "groups": [], "hashTag": null, "medias": {}, @@ -167,10 +166,9 @@ "customFields": {} }, { - "id": 2, - "name": "HSE: FFTilted (Kudryashov, Babin, Romashov)", - "shortName": "HSE: FFTilted (Kudryashov, Babin, Romashov)", - "contestSystemId": "nef788318", + "id": "nef772710", + "name": "KGiAI: ToB (Duyshenaliev, Yugai, Almazbekov)", + "shortName": "KGiAI: ToB (Duyshenaliev, Yugai, Almazbekov)", "groups": [], "hashTag": null, "medias": {}, @@ -180,10 +178,9 @@ "customFields": {} }, { - "id": 3, - "name": "SPb SU: Urgant Team (Grigoryev, Karpovich, Ivanov)", - "shortName": "SPb SU: Urgant Team (Grigoryev, Karpovich, Ivanov)", - "contestSystemId": "nef780668", + "id": "nef772711", + "name": "AUCA: ZXC (Beliaev, Dzheentaev, Alimov)", + "shortName": "AUCA: ZXC (Beliaev, Dzheentaev, Alimov)", "groups": [], "hashTag": null, "medias": {}, @@ -193,10 +190,9 @@ "customFields": {} }, { - "id": 4, - "name": "Belarusian SU: 1: Dungeon Thread (Klimasheuski, Paliukhovich, Dzenhaliou)", - "shortName": "Belarusian SU: 1: Dungeon Thread (Klimasheuski, Paliukhovich, Dzenhaliou)", - "contestSystemId": "nef788418", + "id": "nef772712", + "name": "IAU: nothing to code (tynychbekov, Azamatov, Chekirbaev)", + "shortName": "IAU: nothing to code (tynychbekov, Azamatov, Chekirbaev)", "groups": [], "hashTag": null, "medias": {}, @@ -206,10 +202,9 @@ "customFields": {} }, { - "id": 5, - "name": "SPb ITMO: pengzoo (Iakovlev, Perveev, Golikov)", - "shortName": "SPb ITMO: pengzoo (Iakovlev, Perveev, Golikov)", - "contestSystemId": "nef780665", + "id": "nef772713", + "name": "KyrgyzTU: 2 (Asanov, Zakirov, Altynbekova)", + "shortName": "KyrgyzTU: 2 (Asanov, Zakirov, Altynbekova)", "groups": [], "hashTag": null, "medias": {}, @@ -219,10 +214,9 @@ "customFields": {} }, { - "id": 6, - "name": "MIPT: Log-rank conjecture (Shekhovtsov, Sadovnichiy, Efremov)", - "shortName": "MIPT: Log-rank conjecture (Shekhovtsov, Sadovnichiy, Efremov)", - "contestSystemId": "nef788319", + "id": "nef772714", + "name": "UCA: Fortuna (Diushekeev, Azizbekov, Akatov)", + "shortName": "UCA: Fortuna (Diushekeev, Azizbekov, Akatov)", "groups": [], "hashTag": null, "medias": {}, @@ -232,10 +226,9 @@ "customFields": {} }, { - "id": 7, - "name": "MIPT: SkyFall (Surkov, Peregudov, Belyi)", - "shortName": "MIPT: SkyFall (Surkov, Peregudov, Belyi)", - "contestSystemId": "nef788325", + "id": "nef772715", + "name": "AUCA: undefined (Rakhmatov, Atabekov, Yrysov)", + "shortName": "AUCA: undefined (Rakhmatov, Atabekov, Yrysov)", "groups": [], "hashTag": null, "medias": {}, @@ -245,10 +238,9 @@ "customFields": {} }, { - "id": 8, - "name": "HSE: It Has To Work (Ivanova, Novikov, Machugovskiy)", - "shortName": "HSE: It Has To Work (Ivanova, Novikov, Machugovskiy)", - "contestSystemId": "nef788327", + "id": "nef772716", + "name": "UCA: ATWOT (Orozova, Isaev, Momukeev)", + "shortName": "UCA: ATWOT (Orozova, Isaev, Momukeev)", "groups": [], "hashTag": null, "medias": {}, @@ -258,10 +250,9 @@ "customFields": {} }, { - "id": 9, - "name": "MIPT: Machula's fun club (Zgursky, Tretiakov, Gaponov)", - "shortName": "MIPT: Machula's fun club (Zgursky, Tretiakov, Gaponov)", - "contestSystemId": "nef788320", + "id": "nef772717", + "name": "Kyrgyz-Turkey Manas U: 5 (Ulanbek uulu, Mamatazimov, Tilekmatov)", + "shortName": "Kyrgyz-Turkey Manas U: 5 (Ulanbek uulu, Mamatazimov, Tilekmatov)", "groups": [], "hashTag": null, "medias": {}, @@ -271,10 +262,9 @@ "customFields": {} }, { - "id": 10, - "name": "SPb SU: Willing to chill in WF (Khargeliia, Volkov, Pavlenko)", - "shortName": "SPb SU: Willing to chill in WF (Khargeliia, Volkov, Pavlenko)", - "contestSystemId": "nef780666", + "id": "nef772718", + "name": "UCA: Outsiders (Yugay, Davlatmamadov, Bahodur)", + "shortName": "UCA: Outsiders (Yugay, Davlatmamadov, Bahodur)", "groups": [], "hashTag": null, "medias": {}, @@ -284,10 +274,9 @@ "customFields": {} }, { - "id": 11, - "name": "MIPT: Emil, we are with you (Divilkovskiy, Anikin, Savvateev)", - "shortName": "MIPT: Emil, we are with you (Divilkovskiy, Anikin, Savvateev)", - "contestSystemId": "nef788328", + "id": "nef772719", + "name": "AUCA: MicroHumans (Malikov, Adanbaev, Dzhumaev)", + "shortName": "AUCA: MicroHumans (Malikov, Adanbaev, Dzhumaev)", "groups": [], "hashTag": null, "medias": {}, @@ -297,10 +286,9 @@ "customFields": {} }, { - "id": 12, - "name": "Innopolis: U A (Hakimiyon, Hokimiyon, Ahmed)", - "shortName": "Innopolis: U A (Hakimiyon, Hokimiyon, Ahmed)", - "contestSystemId": "nef790061", + "id": "nef772720", + "name": "UCA: Hooks (Abdyrashitov, Urmatbekov, Karimov)", + "shortName": "UCA: Hooks (Abdyrashitov, Urmatbekov, Karimov)", "groups": [], "hashTag": null, "medias": {}, @@ -310,10 +298,9 @@ "customFields": {} }, { - "id": 13, - "name": "SPb SU: 36 (Danilevich, Turevskii, Ushakov)", - "shortName": "SPb SU: 36 (Danilevich, Turevskii, Ushakov)", - "contestSystemId": "nef780667", + "id": "nef772721", + "name": "UCA: SeniorS (Madiev, Bazarov, Iskenderova)", + "shortName": "UCA: SeniorS (Madiev, Bazarov, Iskenderova)", "groups": [], "hashTag": null, "medias": {}, @@ -323,10 +310,9 @@ "customFields": {} }, { - "id": 14, - "name": "Kazakh-British TU: DeoxyriboNucleic Acid (Kanatuly, Altybay, Tursynbay)", - "shortName": "Kazakh-British TU: DeoxyriboNucleic Acid (Kanatuly, Altybay, Tursynbay)", - "contestSystemId": "nef780537", + "id": "nef772722", + "name": "UCA: Preps (Alikbaev, Shonabiev, Asanaliev)", + "shortName": "UCA: Preps (Alikbaev, Shonabiev, Asanaliev)", "groups": [], "hashTag": null, "medias": {}, @@ -336,10 +322,9 @@ "customFields": {} }, { - "id": 15, - "name": "SPb HSE: Just3Keks (Bukov, Mosin, Epifanov)", - "shortName": "SPb HSE: Just3Keks (Bukov, Mosin, Epifanov)", - "contestSystemId": "nef780675", + "id": "nef772723", + "name": "UCA: Tourists (Salihar, Ulanbek uulu, Sidikov)", + "shortName": "UCA: Tourists (Salihar, Ulanbek uulu, Sidikov)", "groups": [], "hashTag": null, "medias": {}, @@ -349,10 +334,9 @@ "customFields": {} }, { - "id": 16, - "name": "Belarusian SU: 3 (Kernazhytski, Koval, Melnichenka)", - "shortName": "Belarusian SU: 3 (Kernazhytski, Koval, Melnichenka)", - "contestSystemId": "nef788424", + "id": "nef780302", + "name": "YarSU: 14: MMM (Agaev, Sidorov, Chirkov)", + "shortName": "YarSU: 14: MMM (Agaev, Sidorov, Chirkov)", "groups": [], "hashTag": null, "medias": {}, @@ -362,10 +346,9 @@ "customFields": {} }, { - "id": 17, - "name": "HSE: Elderly Passion Fruit (Markelov, Pustovalov, Nekrasov)", - "shortName": "HSE: Elderly Passion Fruit (Markelov, Pustovalov, Nekrasov)", - "contestSystemId": "nef788324", + "id": "nef780303", + "name": "TulaSU: 2: Accepted_and_point (Perezyabov, Vasin, Fursov)", + "shortName": "TulaSU: 2: Accepted_and_point (Perezyabov, Vasin, Fursov)", "groups": [], "hashTag": null, "medias": {}, @@ -375,10 +358,9 @@ "customFields": {} }, { - "id": 18, - "name": "HSE: FAT (Zimanov, Zimanov, Popov)", - "shortName": "HSE: FAT (Zimanov, Zimanov, Popov)", - "contestSystemId": "nef788323", + "id": "nef780304", + "name": "OrelSU: 1: CatForces (Nikulin, Kashirin, Yakovlev)", + "shortName": "OrelSU: 1: CatForces (Nikulin, Kashirin, Yakovlev)", "groups": [], "hashTag": null, "medias": {}, @@ -388,10 +370,9 @@ "customFields": {} }, { - "id": 19, - "name": "SPb ITMO: Cataleptodius (Hakimov, Ibraev, Oreshin)", - "shortName": "SPb ITMO: Cataleptodius (Hakimov, Ibraev, Oreshin)", - "contestSystemId": "nef780674", + "id": "nef780305", + "name": "NArFU: 2 (Burkov, Grishin, Lodygin)", + "shortName": "NArFU: 2 (Burkov, Grishin, Lodygin)", "groups": [], "hashTag": null, "medias": {}, @@ -401,10 +382,9 @@ "customFields": {} }, { - "id": 20, - "name": "Nazarbayev U: wf or gf? (Aldazharov, Batyrkhan, Omarov)", - "shortName": "Nazarbayev U: wf or gf? (Aldazharov, Batyrkhan, Omarov)", - "contestSystemId": "nef780540", + "id": "nef780306", + "name": "Tver SU: 1: Guerilla Gorillas (Grigorev, Lutsai, Fomin)", + "shortName": "Tver SU: 1: Guerilla Gorillas (Grigorev, Lutsai, Fomin)", "groups": [], "hashTag": null, "medias": {}, @@ -414,10 +394,9 @@ "customFields": {} }, { - "id": 21, - "name": "HSE: Dirizhabl’ (Arzhantsev, Akulov, Pogodin)", - "shortName": "HSE: Dirizhabl’ (Arzhantsev, Akulov, Pogodin)", - "contestSystemId": "nef790436", + "id": "nef780307", + "name": "RSATU: #1 (Ananyev, Rastorguev, Krylov)", + "shortName": "RSATU: #1 (Ananyev, Rastorguev, Krylov)", "groups": [], "hashTag": null, "medias": {}, @@ -427,10 +406,9 @@ "customFields": {} }, { - "id": 22, - "name": "Belarusian SU: 2: Fiksiki (Kharasau, Koshchanka, Kastsiany)", - "shortName": "Belarusian SU: 2: Fiksiki (Kharasau, Koshchanka, Kastsiany)", - "contestSystemId": "nef788420", + "id": "nef780309", + "name": "YarSU: 23: AmateraSU (Yurgenson, Golubev, Korolev)", + "shortName": "YarSU: 23: AmateraSU (Yurgenson, Golubev, Korolev)", "groups": [], "hashTag": null, "medias": {}, @@ -440,10 +418,9 @@ "customFields": {} }, { - "id": 23, - "name": "AITU: 1 (Muratov, Aliaidar, Kamzabek)", - "shortName": "AITU: 1 (Muratov, Aliaidar, Kamzabek)", - "contestSystemId": "nef780541", + "id": "nef780537", + "name": "Kazakh-British TU: DeoxyriboNucleic Acid (Kanatuly, Altybay, Tursynbay)", + "shortName": "Kazakh-British TU: DeoxyriboNucleic Acid (Kanatuly, Altybay, Tursynbay)", "groups": [], "hashTag": null, "medias": {}, @@ -453,10 +430,9 @@ "customFields": {} }, { - "id": 24, - "name": "Moscow SU: apes together strong (Voyt, Bargatin, Grigorev)", - "shortName": "Moscow SU: apes together strong (Voyt, Bargatin, Grigorev)", - "contestSystemId": "nef788332", + "id": "nef780538", + "name": "IITU: Aztec Gods of fitness (Altynbekov, Shormankhan, Ibraim)", + "shortName": "IITU: Aztec Gods of fitness (Altynbekov, Shormankhan, Ibraim)", "groups": [], "hashTag": null, "medias": {}, @@ -466,10 +442,9 @@ "customFields": {} }, { - "id": 25, - "name": "SPb SU: 25 (Chvanov, Khabarov, Trubnikov)", - "shortName": "SPb SU: 25 (Chvanov, Khabarov, Trubnikov)", - "contestSystemId": "nef780669", + "id": "nef780539", + "name": "AITU: 2 (Biakhmet, Maulen, Oralkhanov)", + "shortName": "AITU: 2 (Biakhmet, Maulen, Oralkhanov)", "groups": [], "hashTag": null, "medias": {}, @@ -479,10 +454,9 @@ "customFields": {} }, { - "id": 26, - "name": "Belarusian SU: 4: OSUTeam (Ulyanau, Barysau, Shishkou)", - "shortName": "Belarusian SU: 4: OSUTeam (Ulyanau, Barysau, Shishkou)", - "contestSystemId": "nef788425", + "id": "nef780540", + "name": "Nazarbayev U: wf or gf? (Aldazharov, Batyrkhan, Omarov)", + "shortName": "Nazarbayev U: wf or gf? (Aldazharov, Batyrkhan, Omarov)", "groups": [], "hashTag": null, "medias": {}, @@ -492,10 +466,9 @@ "customFields": {} }, { - "id": 27, - "name": "BSUIR: #1: So stuffy (Loseu, Halukh, Markavets)", - "shortName": "BSUIR: #1: So stuffy (Loseu, Halukh, Markavets)", - "contestSystemId": "nef788419", + "id": "nef780541", + "name": "AITU: 1 (Muratov, Aliaidar, Kamzabek)", + "shortName": "AITU: 1 (Muratov, Aliaidar, Kamzabek)", "groups": [], "hashTag": null, "medias": {}, @@ -505,10 +478,9 @@ "customFields": {} }, { - "id": 28, - "name": "MIPT: Pshimaf Naniz (Alekseev, Myasnikov, Mukhametgalin)", - "shortName": "MIPT: Pshimaf Naniz (Alekseev, Myasnikov, Mukhametgalin)", - "contestSystemId": "nef788329", + "id": "nef780543", + "name": "Kazakh-British TU: Unexpected (Kaisar, Khibadullin, Aimagambetov)", + "shortName": "Kazakh-British TU: Unexpected (Kaisar, Khibadullin, Aimagambetov)", "groups": [], "hashTag": null, "medias": {}, @@ -518,10 +490,9 @@ "customFields": {} }, { - "id": 29, - "name": "Novosibirsk SU: 4: MathWay (Malinovskii, Fesenko, Goncharov)", - "shortName": "Novosibirsk SU: 4: MathWay (Malinovskii, Fesenko, Goncharov)", - "contestSystemId": "nef796575", + "id": "nef780544", + "name": "IITU: Defective Memory (Botakanov, Srazhov, Kapitov)", + "shortName": "IITU: Defective Memory (Botakanov, Srazhov, Kapitov)", "groups": [], "hashTag": null, "medias": {}, @@ -531,10 +502,9 @@ "customFields": {} }, { - "id": 30, - "name": "SPb ITMO: I don't know (Kutasin, Khritonenko, Senkin)", - "shortName": "SPb ITMO: I don't know (Kutasin, Khritonenko, Senkin)", - "contestSystemId": "nef780676", + "id": "nef780563", + "name": "Nazarbayev U: 1.1 (Gallam, Bauyrzhanuly, Turysbek)", + "shortName": "Nazarbayev U: 1.1 (Gallam, Bauyrzhanuly, Turysbek)", "groups": [], "hashTag": null, "medias": {}, @@ -544,10 +514,9 @@ "customFields": {} }, { - "id": 31, - "name": "Saratov SU: K (Brovko, Lankin, Shnirelman)", - "shortName": "Saratov SU: K (Brovko, Lankin, Shnirelman)", - "contestSystemId": "nef790067", + "id": "nef780564", + "name": "Nazarbayev U: The Glider (Amangeldiyev, Zhumagazyuly, Yussupov)", + "shortName": "Nazarbayev U: The Glider (Amangeldiyev, Zhumagazyuly, Yussupov)", "groups": [], "hashTag": null, "medias": {}, @@ -557,10 +526,9 @@ "customFields": {} }, { - "id": 32, - "name": "MEPhI: Useless but powerful (Melnikov, Anzin, Ivanenko)", - "shortName": "MEPhI: Useless but powerful (Melnikov, Anzin, Ivanenko)", - "contestSystemId": "nef788335", + "id": "nef780565", + "name": "SDU: 1 (Kozhakov, Maskeugaliyev, Tastan)", + "shortName": "SDU: 1 (Kozhakov, Maskeugaliyev, Tastan)", "groups": [], "hashTag": null, "medias": {}, @@ -570,10 +538,9 @@ "customFields": {} }, { - "id": 33, - "name": "IITU: Defective Memory (Botakanov, Srazhov, Kapitov)", - "shortName": "IITU: Defective Memory (Botakanov, Srazhov, Kapitov)", - "contestSystemId": "nef780544", + "id": "nef780566", + "name": "Kazakh-British TU: LaGoona Goo (Bazarbekov, Zhamauov, Zhanibek)", + "shortName": "Kazakh-British TU: LaGoona Goo (Bazarbekov, Zhamauov, Zhanibek)", "groups": [], "hashTag": null, "medias": {}, @@ -583,10 +550,9 @@ "customFields": {} }, { - "id": 34, - "name": "MISiS: Yams (Kolodin, Tagiltsev, Boltikov)", - "shortName": "MISiS: Yams (Kolodin, Tagiltsev, Boltikov)", - "contestSystemId": "nef788331", + "id": "nef780567", + "name": "Kazakh-British TU: Should you be here? (Turgyn, Issenbayev, Zhumalin)", + "shortName": "Kazakh-British TU: Should you be here? (Turgyn, Issenbayev, Zhumalin)", "groups": [], "hashTag": null, "medias": {}, @@ -596,10 +562,9 @@ "customFields": {} }, { - "id": 35, - "name": "MSU Tashkent: 1 Awesome Team (Toshpulatov, Ashirmatov, Ashrapov)", - "shortName": "MSU Tashkent: 1 Awesome Team (Toshpulatov, Ashirmatov, Ashrapov)", - "contestSystemId": "nef795852", + "id": "nef780568", + "name": "AITU: 3 (Abilgaziyev, Nurske, Ybraiakhyn)", + "shortName": "AITU: 3 (Abilgaziyev, Nurske, Ybraiakhyn)", "groups": [], "hashTag": null, "medias": {}, @@ -609,10 +574,9 @@ "customFields": {} }, { - "id": 36, - "name": "Kazan FU: I (Beloborodov, Fazylov, Sudakov)", - "shortName": "Kazan FU: I (Beloborodov, Fazylov, Sudakov)", - "contestSystemId": "nef790069", + "id": "nef780569", + "name": "Kazakh-British TU: Undertrained (Bakhtiyar, Kabyl, Ayupov)", + "shortName": "Kazakh-British TU: Undertrained (Bakhtiyar, Kabyl, Ayupov)", "groups": [], "hashTag": null, "medias": {}, @@ -622,10 +586,9 @@ "customFields": {} }, { - "id": 37, - "name": "GSU: -2 (Korotkevich, Bortenko, Khamkou)", - "shortName": "GSU: -2 (Korotkevich, Bortenko, Khamkou)", - "contestSystemId": "nef788422", + "id": "nef780570", + "name": "IITU: Akvelon Team (Tastanov, Kassymbekov, Niyazbekov)", + "shortName": "IITU: Akvelon Team (Tastanov, Kassymbekov, Niyazbekov)", "groups": [], "hashTag": null, "medias": {}, @@ -635,10 +598,9 @@ "customFields": {} }, { - "id": 38, - "name": "Yerevan SU: 1 (Margaryan, Kocharyan, Andreasyan)", - "shortName": "Yerevan SU: 1 (Margaryan, Kocharyan, Andreasyan)", - "contestSystemId": "nef790038", + "id": "nef780571", + "name": "IITU: ur mamaso (Mazylo, Soldatbay, Manashov)", + "shortName": "IITU: ur mamaso (Mazylo, Soldatbay, Manashov)", "groups": [], "hashTag": null, "medias": {}, @@ -648,10 +610,9 @@ "customFields": {} }, { - "id": 39, - "name": "Vologda SU: 1 (Astashonok, Kovalev, Omelin)", - "shortName": "Vologda SU: 1 (Astashonok, Kovalev, Omelin)", - "contestSystemId": "nef788390", + "id": "nef780572", + "name": "Nazarbayev U: Please, relocate randomly. (Saiyngali, Tarikh, Taniyev)", + "shortName": "Nazarbayev U: Please, relocate randomly. (Saiyngali, Tarikh, Taniyev)", "groups": [], "hashTag": null, "medias": {}, @@ -661,10 +622,9 @@ "customFields": {} }, { - "id": 40, - "name": "Irkutsk SU: ICPC means Irkutsk Competitive Programming Community (Muratov, Mitrofanov, Grachev)", - "shortName": "Irkutsk SU: ICPC means Irkutsk Competitive Programming Community (Muratov, Mitrofanov, Grachev)", - "contestSystemId": "nef796437", + "id": "nef780573", + "name": "* KazNU: - Solo (Asuov)", + "shortName": "* KazNU: - Solo (Asuov)", "groups": [], "hashTag": null, "medias": {}, @@ -674,10 +634,9 @@ "customFields": {} }, { - "id": 41, - "name": "Novosibirsk SU: 1: Gena the crocodile (Plyusnin, Lylova, Mokrousov)", - "shortName": "Novosibirsk SU: 1: Gena the crocodile (Plyusnin, Lylova, Mokrousov)", - "contestSystemId": "nef796574", + "id": "nef780574", + "name": "AITU: 4 (Zhonkebayev, Tleuzhan, Mussabay)", + "shortName": "AITU: 4 (Zhonkebayev, Tleuzhan, Mussabay)", "groups": [], "hashTag": null, "medias": {}, @@ -687,10 +646,9 @@ "customFields": {} }, { - "id": 42, - "name": "Skoltech: Caravella (Fadeeva, Goldman, Morozov)", - "shortName": "Skoltech: Caravella (Fadeeva, Goldman, Morozov)", - "contestSystemId": "nef788334", + "id": "nef780575", + "name": "SDU: 5 (Kenes, Baigarayev, Mustakhov)", + "shortName": "SDU: 5 (Kenes, Baigarayev, Mustakhov)", "groups": [], "hashTag": null, "medias": {}, @@ -700,10 +658,9 @@ "customFields": {} }, { - "id": 43, - "name": "Baltic FU: 1: Num4 (Chernozhukov, Dobrilko, Alekseev)", - "shortName": "Baltic FU: 1: Num4 (Chernozhukov, Dobrilko, Alekseev)", - "contestSystemId": "nef788426", + "id": "nef780576", + "name": "SDU: Kak dela v ka4alke, pasany? (Nyshanbay, Beisenbay, Beisenkhan)", + "shortName": "SDU: Kak dela v ka4alke, pasany? (Nyshanbay, Beisenbay, Beisenkhan)", "groups": [], "hashTag": null, "medias": {}, @@ -713,10 +670,9 @@ "customFields": {} }, { - "id": 44, - "name": "NNSU: Alexey Sergeevich (Sukharev, Burdukov, Kulandin)", - "shortName": "NNSU: Alexey Sergeevich (Sukharev, Burdukov, Kulandin)", - "contestSystemId": "nef790073", + "id": "nef780577", + "name": "SDU: 3 (Yerkebayev, Amanzholov, Serik)", + "shortName": "SDU: 3 (Yerkebayev, Amanzholov, Serik)", "groups": [], "hashTag": null, "medias": {}, @@ -726,10 +682,9 @@ "customFields": {} }, { - "id": 45, - "name": "Ural FU: Cucumber Juice 73 (Khramov, Nigmatullin, Rychkov)", - "shortName": "Ural FU: Cucumber Juice 73 (Khramov, Nigmatullin, Rychkov)", - "contestSystemId": "nef788030", + "id": "nef780578", + "name": "Karaganda SU: Buketov Team (Radolda, Oralbek, Radolda)", + "shortName": "Karaganda SU: Buketov Team (Radolda, Oralbek, Radolda)", "groups": [], "hashTag": null, "medias": {}, @@ -739,10 +694,9 @@ "customFields": {} }, { - "id": 46, - "name": "Ural FU: what is happening (Mikhailov, Avriskin, Barinov)", - "shortName": "Ural FU: what is happening (Mikhailov, Avriskin, Barinov)", - "contestSystemId": "nef788027", + "id": "nef780596", + "name": "KazNU: 2 - SEN (Zhaksylyk, Tulepbergen, Kyrykbay)", + "shortName": "KazNU: 2 - SEN (Zhaksylyk, Tulepbergen, Kyrykbay)", "groups": [], "hashTag": null, "medias": {}, @@ -752,10 +706,9 @@ "customFields": {} }, { - "id": 47, - "name": "SPb SU: Demid Is Chelyabinsk King (Dobrynin, Ralnikov, Kalmykov)", - "shortName": "SPb SU: Demid Is Chelyabinsk King (Dobrynin, Ralnikov, Kalmykov)", - "contestSystemId": "nef780670", + "id": "nef780598", + "name": "AIPET: -3 (Erasyl, Pak, Ruslan)", + "shortName": "AIPET: -3 (Erasyl, Pak, Ruslan)", "groups": [], "hashTag": null, "medias": {}, @@ -765,10 +718,9 @@ "customFields": {} }, { - "id": 48, - "name": "IITU: Aztec Gods of fitness (Altynbekov, Shormankhan, Ibraim)", - "shortName": "IITU: Aztec Gods of fitness (Altynbekov, Shormankhan, Ibraim)", - "contestSystemId": "nef780538", + "id": "nef780600", + "name": "KazNU: 3 - DAD (Toxanbayev, Duisenov, Alpamys)", + "shortName": "KazNU: 3 - DAD (Toxanbayev, Duisenov, Alpamys)", "groups": [], "hashTag": null, "medias": {}, @@ -778,10 +730,9 @@ "customFields": {} }, { - "id": 49, - "name": "SPb HSE: jaba (Deb Natkh, Olemskaia, Tarabonda)", - "shortName": "SPb HSE: jaba (Deb Natkh, Olemskaia, Tarabonda)", - "contestSystemId": "nef780673", + "id": "nef780601", + "name": "* AIPET: -200 (Aibek, Abay)", + "shortName": "* AIPET: -200 (Aibek, Abay)", "groups": [], "hashTag": null, "medias": {}, @@ -791,10 +742,9 @@ "customFields": {} }, { - "id": 50, - "name": "AITU: 3 (Abilgaziyev, Nurske, Ybraiakhyn)", - "shortName": "AITU: 3 (Abilgaziyev, Nurske, Ybraiakhyn)", - "contestSystemId": "nef780568", + "id": "nef780665", + "name": "SPb ITMO: pengzoo (Iakovlev, Perveev, Golikov)", + "shortName": "SPb ITMO: pengzoo (Iakovlev, Perveev, Golikov)", "groups": [], "hashTag": null, "medias": {}, @@ -804,10 +754,9 @@ "customFields": {} }, { - "id": 51, - "name": "SDU: 1 (Kozhakov, Maskeugaliyev, Tastan)", - "shortName": "SDU: 1 (Kozhakov, Maskeugaliyev, Tastan)", - "contestSystemId": "nef780565", + "id": "nef780666", + "name": "SPb SU: Willing to chill in WF (Khargeliia, Volkov, Pavlenko)", + "shortName": "SPb SU: Willing to chill in WF (Khargeliia, Volkov, Pavlenko)", "groups": [], "hashTag": null, "medias": {}, @@ -817,10 +766,9 @@ "customFields": {} }, { - "id": 52, - "name": "Yerevan SU: X (Sergoyan, Galstyan, Mikaelyan)", - "shortName": "Yerevan SU: X (Sergoyan, Galstyan, Mikaelyan)", - "contestSystemId": "nef790039", + "id": "nef780667", + "name": "SPb SU: 36 (Danilevich, Turevskii, Ushakov)", + "shortName": "SPb SU: 36 (Danilevich, Turevskii, Ushakov)", "groups": [], "hashTag": null, "medias": {}, @@ -830,10 +778,9 @@ "customFields": {} }, { - "id": 53, - "name": "MAI: #2 (Belousov, Smirnov, Inyutin)", - "shortName": "MAI: #2 (Belousov, Smirnov, Inyutin)", - "contestSystemId": "nef788341", + "id": "nef780668", + "name": "SPb SU: Urgant Team (Grigoryev, Karpovich, Ivanov)", + "shortName": "SPb SU: Urgant Team (Grigoryev, Karpovich, Ivanov)", "groups": [], "hashTag": null, "medias": {}, @@ -843,10 +790,9 @@ "customFields": {} }, { - "id": 54, - "name": "Novosibirsk SU: 2: Ia-Ia (Lozhnikov, Maksakovsky, Vlasov)", - "shortName": "Novosibirsk SU: 2: Ia-Ia (Lozhnikov, Maksakovsky, Vlasov)", - "contestSystemId": "nef796577", + "id": "nef780669", + "name": "SPb SU: 25 (Chvanov, Khabarov, Trubnikov)", + "shortName": "SPb SU: 25 (Chvanov, Khabarov, Trubnikov)", "groups": [], "hashTag": null, "medias": {}, @@ -856,10 +802,9 @@ "customFields": {} }, { - "id": 55, - "name": "BMSTU: 30 seconds to parse (Belousov, Zhuk, Egorov)", - "shortName": "BMSTU: 30 seconds to parse (Belousov, Zhuk, Egorov)", - "contestSystemId": "nef788344", + "id": "nef780670", + "name": "SPb SU: Demid Is Chelyabinsk King (Dobrynin, Ralnikov, Kalmykov)", + "shortName": "SPb SU: Demid Is Chelyabinsk King (Dobrynin, Ralnikov, Kalmykov)", "groups": [], "hashTag": null, "medias": {}, @@ -869,10 +814,9 @@ "customFields": {} }, { - "id": 56, - "name": "Far Eastern FU: SpaceDuck (Baderik, Baderik, Zavgorodnev)", - "shortName": "Far Eastern FU: SpaceDuck (Baderik, Baderik, Zavgorodnev)", - "contestSystemId": "nef789937", + "id": "nef780671", + "name": "SPb ITMO: Unexpected Value (Kuzin, Damasevich, Stepanov)", + "shortName": "SPb ITMO: Unexpected Value (Kuzin, Damasevich, Stepanov)", "groups": [], "hashTag": null, "medias": {}, @@ -882,10 +826,9 @@ "customFields": {} }, { - "id": 57, - "name": "Novosibirsk SU: 12: The Colleagues (Khrapovitskii, Kyrgys, Morozov)", - "shortName": "Novosibirsk SU: 12: The Colleagues (Khrapovitskii, Kyrgys, Morozov)", - "contestSystemId": "nef796576", + "id": "nef780672", + "name": "SPb ITMO: optimized out (Shevchenko, Chernishev, Dmitriev)", + "shortName": "SPb ITMO: optimized out (Shevchenko, Chernishev, Dmitriev)", "groups": [], "hashTag": null, "medias": {}, @@ -895,10 +838,9 @@ "customFields": {} }, { - "id": 58, - "name": "Belarusian SU: 9: Pointing Hands (Kohan, Filipovich, Kuzmitski)", - "shortName": "Belarusian SU: 9: Pointing Hands (Kohan, Filipovich, Kuzmitski)", - "contestSystemId": "nef790432", + "id": "nef780673", + "name": "SPb HSE: jaba (Deb Natkh, Olemskaia, Tarabonda)", + "shortName": "SPb HSE: jaba (Deb Natkh, Olemskaia, Tarabonda)", "groups": [], "hashTag": null, "medias": {}, @@ -908,10 +850,9 @@ "customFields": {} }, { - "id": 59, - "name": "RSATU: #1 (Ananyev, Rastorguev, Krylov)", - "shortName": "RSATU: #1 (Ananyev, Rastorguev, Krylov)", - "contestSystemId": "nef780307", + "id": "nef780674", + "name": "SPb ITMO: Cataleptodius (Hakimov, Ibraev, Oreshin)", + "shortName": "SPb ITMO: Cataleptodius (Hakimov, Ibraev, Oreshin)", "groups": [], "hashTag": null, "medias": {}, @@ -921,10 +862,9 @@ "customFields": {} }, { - "id": 60, - "name": "NNSU: Almost Enqueued (Polozov, Kruglov, Sadikov)", - "shortName": "NNSU: Almost Enqueued (Polozov, Kruglov, Sadikov)", - "contestSystemId": "nef797072", + "id": "nef780675", + "name": "SPb HSE: Just3Keks (Bukov, Mosin, Epifanov)", + "shortName": "SPb HSE: Just3Keks (Bukov, Mosin, Epifanov)", "groups": [], "hashTag": null, "medias": {}, @@ -934,10 +874,9 @@ "customFields": {} }, { - "id": 61, - "name": "Innopolis: U M (Alhussin, Sarhan, Almouine)", - "shortName": "Innopolis: U M (Alhussin, Sarhan, Almouine)", - "contestSystemId": "nef790068", + "id": "nef780676", + "name": "SPb ITMO: I don't know (Kutasin, Khritonenko, Senkin)", + "shortName": "SPb ITMO: I don't know (Kutasin, Khritonenko, Senkin)", "groups": [], "hashTag": null, "medias": {}, @@ -947,10 +886,9 @@ "customFields": {} }, { - "id": 62, - "name": "Orenburg SU: Feel Good © (Kurynov, Sagitov, Belyy)", - "shortName": "Orenburg SU: Feel Good © (Kurynov, Sagitov, Belyy)", - "contestSystemId": "nef788064", + "id": "nef780677", + "name": "Petrozavodsk SU: belyashes with kittens (Koshkarev, Krishtal, Masaeva)", + "shortName": "Petrozavodsk SU: belyashes with kittens (Koshkarev, Krishtal, Masaeva)", "groups": [], "hashTag": null, "medias": {}, @@ -960,10 +898,9 @@ "customFields": {} }, { - "id": 63, - "name": "Perm SNRU: Cat$ (Sidorenko, Subbotin, Yourchatov)", - "shortName": "Perm SNRU: Cat$ (Sidorenko, Subbotin, Yourchatov)", - "contestSystemId": "nef788029", + "id": "nef780678", + "name": "Petrozavodsk SU: _ = (1 - q^n) / (1 - q) (Roitburd, Lavrov, Reikenen)", + "shortName": "Petrozavodsk SU: _ = (1 - q^n) / (1 - q) (Roitburd, Lavrov, Reikenen)", "groups": [], "hashTag": null, "medias": {}, @@ -973,10 +910,9 @@ "customFields": {} }, { - "id": 64, - "name": "MEPhI: -3iq (Idrisov, Zakharov, Bogolyubov)", - "shortName": "MEPhI: -3iq (Idrisov, Zakharov, Bogolyubov)", - "contestSystemId": "nef788352", + "id": "nef780679", + "name": "Petrozavodsk SU: Aboba (Smirnov, Anisimov, Ermakov)", + "shortName": "Petrozavodsk SU: Aboba (Smirnov, Anisimov, Ermakov)", "groups": [], "hashTag": null, "medias": {}, @@ -986,10 +922,9 @@ "customFields": {} }, { - "id": 65, - "name": "VoronezhSU: H (Shishko, Paukov, Novotochinov)", - "shortName": "VoronezhSU: H (Shishko, Paukov, Novotochinov)", - "contestSystemId": "nef790104", + "id": "nef780680", + "name": "SPb SU of AI: MegaSmetanka (Fesenko, Zhukov, Kurilov)", + "shortName": "SPb SU of AI: MegaSmetanka (Fesenko, Zhukov, Kurilov)", "groups": [], "hashTag": null, "medias": {}, @@ -999,10 +934,9 @@ "customFields": {} }, { - "id": 66, - "name": "SPb ITMO: Unexpected Value (Kuzin, Damasevich, Stepanov)", - "shortName": "SPb ITMO: Unexpected Value (Kuzin, Damasevich, Stepanov)", - "contestSystemId": "nef780671", + "id": "nef780681", + "name": "SPb SU of AI: 0x60D7EA44 (Kolesnikova, Semkov, Petrov)", + "shortName": "SPb SU of AI: 0x60D7EA44 (Kolesnikova, Semkov, Petrov)", "groups": [], "hashTag": null, "medias": {}, @@ -1012,10 +946,9 @@ "customFields": {} }, { - "id": 67, - "name": "Kazan FU: S (Mokut, Saifutdinov, Bikmullin)", - "shortName": "Kazan FU: S (Mokut, Saifutdinov, Bikmullin)", - "contestSystemId": "nef790100", + "id": "nef780682", + "name": "SPb ETU: Belaruskiya krakadzily (Abibulaev, Parfentev, Rudko)", + "shortName": "SPb ETU: Belaruskiya krakadzily (Abibulaev, Parfentev, Rudko)", "groups": [], "hashTag": null, "medias": {}, @@ -1025,10 +958,9 @@ "customFields": {} }, { - "id": 68, - "name": "Kazan FU: J (Gizzatullin, Shermatov, Valeev)", - "shortName": "Kazan FU: J (Gizzatullin, Shermatov, Valeev)", - "contestSystemId": "nef790103", + "id": "nef780683", + "name": "Mil A of Comm: Number One (Sundukov, Voitenko, Chichkov)", + "shortName": "Mil A of Comm: Number One (Sundukov, Voitenko, Chichkov)", "groups": [], "hashTag": null, "medias": {}, @@ -1038,10 +970,9 @@ "customFields": {} }, { - "id": 69, - "name": "Novosibirsk SU: 5: Successful payment (Vladimirov, Bukhner, Kulakov)", - "shortName": "Novosibirsk SU: 5: Successful payment (Vladimirov, Bukhner, Kulakov)", - "contestSystemId": "nef796578", + "id": "nef780684", + "name": "SPb SU of Telecom: BonchBotz.SUT (Mikhailov, Timoshkov, Ganichev)", + "shortName": "SPb SU of Telecom: BonchBotz.SUT (Mikhailov, Timoshkov, Ganichev)", "groups": [], "hashTag": null, "medias": {}, @@ -1051,10 +982,9 @@ "customFields": {} }, { - "id": 70, - "name": "Izhevsk STU: People++ (Bugakov, Kismatov, Lykov)", - "shortName": "Izhevsk STU: People++ (Bugakov, Kismatov, Lykov)", - "contestSystemId": "nef788056", + "id": "nef788026", + "name": "Ural FU: Re:Fresh (Sychev, Bykov, Bazeev)", + "shortName": "Ural FU: Re:Fresh (Sychev, Bykov, Bazeev)", "groups": [], "hashTag": null, "medias": {}, @@ -1064,10 +994,9 @@ "customFields": {} }, { - "id": 71, - "name": "TUIT: Algo Experts (Qarshiyev, Qayumjonov, Jalolov)", - "shortName": "TUIT: Algo Experts (Qarshiyev, Qayumjonov, Jalolov)", - "contestSystemId": "nef795855", + "id": "nef788027", + "name": "Ural FU: what is happening (Mikhailov, Avriskin, Barinov)", + "shortName": "Ural FU: what is happening (Mikhailov, Avriskin, Barinov)", "groups": [], "hashTag": null, "medias": {}, @@ -1077,10 +1006,9 @@ "customFields": {} }, { - "id": 72, - "name": "NNSU: Kaifariki (Petukhov, Devlikamov, Lebedev)", - "shortName": "NNSU: Kaifariki (Petukhov, Devlikamov, Lebedev)", - "contestSystemId": "nef790102", + "id": "nef788028", + "name": "Ural FU: i dont walk with washing powder (Kasianov, Skripkin, Moskovchenko)", + "shortName": "Ural FU: i dont walk with washing powder (Kasianov, Skripkin, Moskovchenko)", "groups": [], "hashTag": null, "medias": {}, @@ -1090,10 +1018,9 @@ "customFields": {} }, { - "id": 73, - "name": "MISiS: Fiksiki (Shalimov, Skobelev, Maximov)", - "shortName": "MISiS: Fiksiki (Shalimov, Skobelev, Maximov)", - "contestSystemId": "nef788345", + "id": "nef788029", + "name": "Perm SNRU: Cat$ (Sidorenko, Subbotin, Yourchatov)", + "shortName": "Perm SNRU: Cat$ (Sidorenko, Subbotin, Yourchatov)", "groups": [], "hashTag": null, "medias": {}, @@ -1103,10 +1030,9 @@ "customFields": {} }, { - "id": 74, - "name": "Ufa SATU: WeHaveABreak (Shaikhutdinov, Nazyrov, Khamatnurov)", - "shortName": "Ufa SATU: WeHaveABreak (Shaikhutdinov, Nazyrov, Khamatnurov)", - "contestSystemId": "nef788057", + "id": "nef788030", + "name": "Ural FU: Cucumber Juice 73 (Khramov, Nigmatullin, Rychkov)", + "shortName": "Ural FU: Cucumber Juice 73 (Khramov, Nigmatullin, Rychkov)", "groups": [], "hashTag": null, "medias": {}, @@ -1116,10 +1042,9 @@ "customFields": {} }, { - "id": 75, - "name": "Nizhny Novgorod HSE: Brawl Stars (Yakhtin, Martirosyan, Zhelezin)", - "shortName": "Nizhny Novgorod HSE: Brawl Stars (Yakhtin, Martirosyan, Zhelezin)", - "contestSystemId": "nef790071", + "id": "nef788031", + "name": "Chelyabinsk SU: Eternity (Akhmerov, Kirionenko, Korchagin)", + "shortName": "Chelyabinsk SU: Eternity (Akhmerov, Kirionenko, Korchagin)", "groups": [], "hashTag": null, "medias": {}, @@ -1129,10 +1054,9 @@ "customFields": {} }, { - "id": 76, - "name": "Kazakh-British TU: LaGoona Goo (Bazarbekov, Zhamauov, Zhanibek)", - "shortName": "Kazakh-British TU: LaGoona Goo (Bazarbekov, Zhamauov, Zhanibek)", - "contestSystemId": "nef780566", + "id": "nef788032", + "name": "Izhevsk STU: Skill++ (Gogolev, Drachev, Konovalov)", + "shortName": "Izhevsk STU: Skill++ (Gogolev, Drachev, Konovalov)", "groups": [], "hashTag": null, "medias": {}, @@ -1142,10 +1066,9 @@ "customFields": {} }, { - "id": 77, - "name": "South Ural SU: Pivosaurus (Kormilin, Kulikova, Stepanov)", - "shortName": "South Ural SU: Pivosaurus (Kormilin, Kulikova, Stepanov)", - "contestSystemId": "nef788059", + "id": "nef788054", + "name": "Perm NRPU: Azkaban's Axiom (Ershov, Nurislamov, Nyashin)", + "shortName": "Perm NRPU: Azkaban's Axiom (Ershov, Nurislamov, Nyashin)", "groups": [], "hashTag": null, "medias": {}, @@ -1155,10 +1078,9 @@ "customFields": {} }, { - "id": 78, - "name": "Omsk SU: 3 (Moiseev, Mingazov, Silaev)", - "shortName": "Omsk SU: 3 (Moiseev, Mingazov, Silaev)", - "contestSystemId": "nef797079", + "id": "nef788055", + "name": "Perm SNRU: longlong nelzya int (Shestakov, Ponkin, Zakharov)", + "shortName": "Perm SNRU: longlong nelzya int (Shestakov, Ponkin, Zakharov)", "groups": [], "hashTag": null, "medias": {}, @@ -1168,10 +1090,9 @@ "customFields": {} }, { - "id": 79, - "name": "Moscow SU: otolob2 (Matveev, Viktorov, Kuznetsov)", - "shortName": "Moscow SU: otolob2 (Matveev, Viktorov, Kuznetsov)", - "contestSystemId": "nef788347", + "id": "nef788056", + "name": "Izhevsk STU: People++ (Bugakov, Kismatov, Lykov)", + "shortName": "Izhevsk STU: People++ (Bugakov, Kismatov, Lykov)", "groups": [], "hashTag": null, "medias": {}, @@ -1181,10 +1102,9 @@ "customFields": {} }, { - "id": 80, - "name": "Grodno SU: #1 (Laktsevich, Zdanchuk, Ihnatsenka)", - "shortName": "Grodno SU: #1 (Laktsevich, Zdanchuk, Ihnatsenka)", - "contestSystemId": "nef788430", + "id": "nef788057", + "name": "Ufa SATU: WeHaveABreak (Shaikhutdinov, Nazyrov, Khamatnurov)", + "shortName": "Ufa SATU: WeHaveABreak (Shaikhutdinov, Nazyrov, Khamatnurov)", "groups": [], "hashTag": null, "medias": {}, @@ -1194,10 +1114,9 @@ "customFields": {} }, { - "id": 81, - "name": "Belarusian SU: 5: Medium rare (Harachkina, Hnedzko, Zarouski)", - "shortName": "Belarusian SU: 5: Medium rare (Harachkina, Hnedzko, Zarouski)", - "contestSystemId": "nef788421", + "id": "nef788058", + "name": "South Ural SU: Hydra (Ilinykh, Sarapultsev, Kulbachnyi)", + "shortName": "South Ural SU: Hydra (Ilinykh, Sarapultsev, Kulbachnyi)", "groups": [], "hashTag": null, "medias": {}, @@ -1207,10 +1126,9 @@ "customFields": {} }, { - "id": 82, - "name": "Tbilisi Freeuni: 1 (Khvedelidze, Tsimakuridze, Kobakhia)", - "shortName": "Tbilisi Freeuni: 1 (Khvedelidze, Tsimakuridze, Kobakhia)", - "contestSystemId": "nef799340", + "id": "nef788059", + "name": "South Ural SU: Pivosaurus (Kormilin, Kulikova, Stepanov)", + "shortName": "South Ural SU: Pivosaurus (Kormilin, Kulikova, Stepanov)", "groups": [], "hashTag": null, "medias": {}, @@ -1220,10 +1138,9 @@ "customFields": {} }, { - "id": 83, - "name": "Financial U: Nails (Bekirov, Babich, Korobkov)", - "shortName": "Financial U: Nails (Bekirov, Babich, Korobkov)", - "contestSystemId": "nef788349", + "id": "nef788060", + "name": "Izhevsk STU: ZEDbl (Kulikov, Postnikov, Ivshin)", + "shortName": "Izhevsk STU: ZEDbl (Kulikov, Postnikov, Ivshin)", "groups": [], "hashTag": null, "medias": {}, @@ -1233,10 +1150,9 @@ "customFields": {} }, { - "id": 84, - "name": "Nazarbayev U: The Glider (Amangeldiyev, Zhumagazyuly, Yussupov)", - "shortName": "Nazarbayev U: The Glider (Amangeldiyev, Zhumagazyuly, Yussupov)", - "contestSystemId": "nef780564", + "id": "nef788061", + "name": "South Ural SU: Three-headed programmer (Sukhoverkhov, Morozov, Alekseev)", + "shortName": "South Ural SU: Three-headed programmer (Sukhoverkhov, Morozov, Alekseev)", "groups": [], "hashTag": null, "medias": {}, @@ -1246,10 +1162,9 @@ "customFields": {} }, { - "id": 85, - "name": "Innopolis: U J (Smirnov, Zimin, Korinenko)", - "shortName": "Innopolis: U J (Smirnov, Zimin, Korinenko)", - "contestSystemId": "nef797071", + "id": "nef788062", + "name": "Tyumen IU: kriper2004 (Vyazov, Petrov, Krasnova)", + "shortName": "Tyumen IU: kriper2004 (Vyazov, Petrov, Krasnova)", "groups": [], "hashTag": null, "medias": {}, @@ -1259,10 +1174,9 @@ "customFields": {} }, { - "id": 86, - "name": "IITU: Akvelon Team (Tastanov, Kassymbekov, Niyazbekov)", - "shortName": "IITU: Akvelon Team (Tastanov, Kassymbekov, Niyazbekov)", - "contestSystemId": "nef780570", + "id": "nef788063", + "name": "Ufa SATU: God`s Choice (Sakhapov, Taratorin, Shepshelevich)", + "shortName": "Ufa SATU: God`s Choice (Sakhapov, Taratorin, Shepshelevich)", "groups": [], "hashTag": null, "medias": {}, @@ -1272,10 +1186,9 @@ "customFields": {} }, { - "id": 87, - "name": "SibSUTI: 1 Neutral (Kashkarev, Solodkin, Boyarkin)", - "shortName": "SibSUTI: 1 Neutral (Kashkarev, Solodkin, Boyarkin)", - "contestSystemId": "nef797075", + "id": "nef788064", + "name": "Orenburg SU: Feel Good © (Kurynov, Sagitov, Belyy)", + "shortName": "Orenburg SU: Feel Good © (Kurynov, Sagitov, Belyy)", "groups": [], "hashTag": null, "medias": {}, @@ -1285,10 +1198,9 @@ "customFields": {} }, { - "id": 88, + "id": "nef788065", "name": "Tyumen SU: import.math (Tashbulatov, Leonov, Yakubov)", "shortName": "Tyumen SU: import.math (Tashbulatov, Leonov, Yakubov)", - "contestSystemId": "nef788065", "groups": [], "hashTag": null, "medias": {}, @@ -1298,10 +1210,9 @@ "customFields": {} }, { - "id": 89, - "name": "AITU: 4 (Zhonkebayev, Tleuzhan, Mussabay)", - "shortName": "AITU: 4 (Zhonkebayev, Tleuzhan, Mussabay)", - "contestSystemId": "nef780574", + "id": "nef788066", + "name": "Perm NRPU: PythonTrio (Riabov, Matveev, Cupewkin)", + "shortName": "Perm NRPU: PythonTrio (Riabov, Matveev, Cupewkin)", "groups": [], "hashTag": null, "medias": {}, @@ -1311,10 +1222,9 @@ "customFields": {} }, { - "id": 90, - "name": "Kazakh-British TU: Unexpected (Kaisar, Khibadullin, Aimagambetov)", - "shortName": "Kazakh-British TU: Unexpected (Kaisar, Khibadullin, Aimagambetov)", - "contestSystemId": "nef780543", + "id": "nef788067", + "name": "Perm HSE: ALKgo! (Talan, Dolnykova, Belash)", + "shortName": "Perm HSE: ALKgo! (Talan, Dolnykova, Belash)", "groups": [], "hashTag": null, "medias": {}, @@ -1324,10 +1234,9 @@ "customFields": {} }, { - "id": 91, - "name": "South Ural SU: Three-headed programmer (Sukhoverkhov, Morozov, Alekseev)", - "shortName": "South Ural SU: Three-headed programmer (Sukhoverkhov, Morozov, Alekseev)", - "contestSystemId": "nef788061", + "id": "nef788068", + "name": "Ural FU: If True (Sennikov, Petrov, Rybin)", + "shortName": "Ural FU: If True (Sennikov, Petrov, Rybin)", "groups": [], "hashTag": null, "medias": {}, @@ -1337,10 +1246,9 @@ "customFields": {} }, { - "id": 92, - "name": "SPb ITMO: optimized out (Shevchenko, Chernishev, Dmitriev)", - "shortName": "SPb ITMO: optimized out (Shevchenko, Chernishev, Dmitriev)", - "contestSystemId": "nef780672", + "id": "nef788318", + "name": "HSE: FFTilted (Kudryashov, Babin, Romashov)", + "shortName": "HSE: FFTilted (Kudryashov, Babin, Romashov)", "groups": [], "hashTag": null, "medias": {}, @@ -1350,10 +1258,9 @@ "customFields": {} }, { - "id": 93, - "name": "Kutaisi IU: WeShowSpeed (Tamliani, Kvinikadze, Oniani)", - "shortName": "Kutaisi IU: WeShowSpeed (Tamliani, Kvinikadze, Oniani)", - "contestSystemId": "nef799341", + "id": "nef788319", + "name": "MIPT: Log-rank conjecture (Shekhovtsov, Sadovnichiy, Efremov)", + "shortName": "MIPT: Log-rank conjecture (Shekhovtsov, Sadovnichiy, Efremov)", "groups": [], "hashTag": null, "medias": {}, @@ -1363,10 +1270,9 @@ "customFields": {} }, { - "id": 94, - "name": "KRSU: 1 (Kasymov, Bakirov, Ulukbekov)", - "shortName": "KRSU: 1 (Kasymov, Bakirov, Ulukbekov)", - "contestSystemId": "nef772709", + "id": "nef788320", + "name": "MIPT: Machula's fun club (Zgursky, Tretiakov, Gaponov)", + "shortName": "MIPT: Machula's fun club (Zgursky, Tretiakov, Gaponov)", "groups": [], "hashTag": null, "medias": {}, @@ -1376,10 +1282,9 @@ "customFields": {} }, { - "id": 95, - "name": "Perm SNRU: longlong nelzya int (Shestakov, Ponkin, Zakharov)", - "shortName": "Perm SNRU: longlong nelzya int (Shestakov, Ponkin, Zakharov)", - "contestSystemId": "nef788055", + "id": "nef788321", + "name": "MIPT: Yolki-palki (Nagibin, Mustafin, Evteev)", + "shortName": "MIPT: Yolki-palki (Nagibin, Mustafin, Evteev)", "groups": [], "hashTag": null, "medias": {}, @@ -1389,10 +1294,9 @@ "customFields": {} }, { - "id": 96, - "name": "ADA: U 1 (Inochkin, Kachabekov, Taghizade)", - "shortName": "ADA: U 1 (Inochkin, Kachabekov, Taghizade)", - "contestSystemId": "nef799358", + "id": "nef788323", + "name": "HSE: FAT (Zimanov, Zimanov, Popov)", + "shortName": "HSE: FAT (Zimanov, Zimanov, Popov)", "groups": [], "hashTag": null, "medias": {}, @@ -1402,10 +1306,9 @@ "customFields": {} }, { - "id": 97, - "name": "Tbilisi Freeuni: 12 (Pkhaladze, Managadze, Zhorzholiani)", - "shortName": "Tbilisi Freeuni: 12 (Pkhaladze, Managadze, Zhorzholiani)", - "contestSystemId": "nef799345", + "id": "nef788324", + "name": "HSE: Elderly Passion Fruit (Markelov, Pustovalov, Nekrasov)", + "shortName": "HSE: Elderly Passion Fruit (Markelov, Pustovalov, Nekrasov)", "groups": [], "hashTag": null, "medias": {}, @@ -1415,10 +1318,9 @@ "customFields": {} }, { - "id": 98, - "name": "MISiS: Eva Fan Club (Panin, Bikmetov, Shabaev)", - "shortName": "MISiS: Eva Fan Club (Panin, Bikmetov, Shabaev)", - "contestSystemId": "nef788330", + "id": "nef788325", + "name": "MIPT: SkyFall (Surkov, Peregudov, Belyi)", + "shortName": "MIPT: SkyFall (Surkov, Peregudov, Belyi)", "groups": [], "hashTag": null, "medias": {}, @@ -1428,10 +1330,9 @@ "customFields": {} }, { - "id": 99, - "name": "RAU: 2 (Khroyan, Tsaturyan, Fahradyan)", - "shortName": "RAU: 2 (Khroyan, Tsaturyan, Fahradyan)", - "contestSystemId": "nef790043", + "id": "nef788326", + "name": "MAI: #1 (Plyushkin, Tushkanov, Grekov)", + "shortName": "MAI: #1 (Plyushkin, Tushkanov, Grekov)", "groups": [], "hashTag": null, "medias": {}, @@ -1441,10 +1342,9 @@ "customFields": {} }, { - "id": 100, - "name": "Ufa SATU: God`s Choice (Sakhapov, Taratorin, Shepshelevich)", - "shortName": "Ufa SATU: God`s Choice (Sakhapov, Taratorin, Shepshelevich)", - "contestSystemId": "nef788063", + "id": "nef788327", + "name": "HSE: It Has To Work (Ivanova, Novikov, Machugovskiy)", + "shortName": "HSE: It Has To Work (Ivanova, Novikov, Machugovskiy)", "groups": [], "hashTag": null, "medias": {}, @@ -1454,10 +1354,9 @@ "customFields": {} }, { - "id": 101, - "name": "Petrozavodsk SU: belyashes with kittens (Koshkarev, Krishtal, Masaeva)", - "shortName": "Petrozavodsk SU: belyashes with kittens (Koshkarev, Krishtal, Masaeva)", - "contestSystemId": "nef780677", + "id": "nef788328", + "name": "MIPT: Emil, we are with you (Divilkovskiy, Anikin, Savvateev)", + "shortName": "MIPT: Emil, we are with you (Divilkovskiy, Anikin, Savvateev)", "groups": [], "hashTag": null, "medias": {}, @@ -1467,10 +1366,9 @@ "customFields": {} }, { - "id": 102, - "name": "Kazakh-British TU: Should you be here? (Turgyn, Issenbayev, Zhumalin)", - "shortName": "Kazakh-British TU: Should you be here? (Turgyn, Issenbayev, Zhumalin)", - "contestSystemId": "nef780567", + "id": "nef788329", + "name": "MIPT: Pshimaf Naniz (Alekseev, Myasnikov, Mukhametgalin)", + "shortName": "MIPT: Pshimaf Naniz (Alekseev, Myasnikov, Mukhametgalin)", "groups": [], "hashTag": null, "medias": {}, @@ -1480,10 +1378,9 @@ "customFields": {} }, { - "id": 103, - "name": "SPb ETU: Belaruskiya krakadzily (Abibulaev, Parfentev, Rudko)", - "shortName": "SPb ETU: Belaruskiya krakadzily (Abibulaev, Parfentev, Rudko)", - "contestSystemId": "nef780682", + "id": "nef788330", + "name": "MISiS: Eva Fan Club (Panin, Bikmetov, Shabaev)", + "shortName": "MISiS: Eva Fan Club (Panin, Bikmetov, Shabaev)", "groups": [], "hashTag": null, "medias": {}, @@ -1493,10 +1390,9 @@ "customFields": {} }, { - "id": 104, - "name": "Nazarbayev U: 1.1 (Gallam, Bauyrzhanuly, Turysbek)", - "shortName": "Nazarbayev U: 1.1 (Gallam, Bauyrzhanuly, Turysbek)", - "contestSystemId": "nef780563", + "id": "nef788331", + "name": "MISiS: Yams (Kolodin, Tagiltsev, Boltikov)", + "shortName": "MISiS: Yams (Kolodin, Tagiltsev, Boltikov)", "groups": [], "hashTag": null, "medias": {}, @@ -1506,10 +1402,9 @@ "customFields": {} }, { - "id": 105, - "name": "RAU: 1 (Petrosian, Ayanyan, Drambyan)", - "shortName": "RAU: 1 (Petrosian, Ayanyan, Drambyan)", - "contestSystemId": "nef790040", + "id": "nef788332", + "name": "Moscow SU: apes together strong (Voyt, Bargatin, Grigorev)", + "shortName": "Moscow SU: apes together strong (Voyt, Bargatin, Grigorev)", "groups": [], "hashTag": null, "medias": {}, @@ -1519,10 +1414,9 @@ "customFields": {} }, { - "id": 106, - "name": "AITU: 2 (Biakhmet, Maulen, Oralkhanov)", - "shortName": "AITU: 2 (Biakhmet, Maulen, Oralkhanov)", - "contestSystemId": "nef780539", + "id": "nef788334", + "name": "Skoltech: Caravella (Fadeeva, Goldman, Morozov)", + "shortName": "Skoltech: Caravella (Fadeeva, Goldman, Morozov)", "groups": [], "hashTag": null, "medias": {}, @@ -1532,10 +1426,9 @@ "customFields": {} }, { - "id": 107, - "name": "BSUIR: #7: Brute Force - Best Force (Berazhny, Volkovskiy, Farisey)", - "shortName": "BSUIR: #7: Brute Force - Best Force (Berazhny, Volkovskiy, Farisey)", - "contestSystemId": "nef788428", + "id": "nef788335", + "name": "MEPhI: Useless but powerful (Melnikov, Anzin, Ivanenko)", + "shortName": "MEPhI: Useless but powerful (Melnikov, Anzin, Ivanenko)", "groups": [], "hashTag": null, "medias": {}, @@ -1545,10 +1438,9 @@ "customFields": {} }, { - "id": 108, - "name": "KGiAI: ToB (Duyshenaliev, Yugai, Almazbekov)", - "shortName": "KGiAI: ToB (Duyshenaliev, Yugai, Almazbekov)", - "contestSystemId": "nef772710", + "id": "nef788336", + "name": "MPSU: Brain Limit (Prokoptsev, Lysenkov, Kniazevsky)", + "shortName": "MPSU: Brain Limit (Prokoptsev, Lysenkov, Kniazevsky)", "groups": [], "hashTag": null, "medias": {}, @@ -1558,10 +1450,9 @@ "customFields": {} }, { - "id": 109, - "name": "MAI: #1 (Plyushkin, Tushkanov, Grekov)", - "shortName": "MAI: #1 (Plyushkin, Tushkanov, Grekov)", - "contestSystemId": "nef788326", + "id": "nef788337", + "name": "Moscow SU: Meanwhile, Elk, MrF & YaV (Bazilevich, Denisev, Yakunin)", + "shortName": "Moscow SU: Meanwhile, Elk, MrF & YaV (Bazilevich, Denisev, Yakunin)", "groups": [], "hashTag": null, "medias": {}, @@ -1571,10 +1462,9 @@ "customFields": {} }, { - "id": 110, - "name": "NArFU: 2 (Burkov, Grishin, Lodygin)", - "shortName": "NArFU: 2 (Burkov, Grishin, Lodygin)", - "contestSystemId": "nef780305", + "id": "nef788338", + "name": "MAI: #4 (Novikov, Chakiryan, Barsov)", + "shortName": "MAI: #4 (Novikov, Chakiryan, Barsov)", "groups": [], "hashTag": null, "medias": {}, @@ -1584,10 +1474,9 @@ "customFields": {} }, { - "id": 111, - "name": "Innopolis: U T (Kolomin, Rudakov, Batyrgariyev)", - "shortName": "Innopolis: U T (Kolomin, Rudakov, Batyrgariyev)", - "contestSystemId": "nef790438", + "id": "nef788340", + "name": "MISiS: 206 kg Ivana Yakimova (Fadeev, Ilin, Yakimov)", + "shortName": "MISiS: 206 kg Ivana Yakimova (Fadeev, Ilin, Yakimov)", "groups": [], "hashTag": null, "medias": {}, @@ -1597,10 +1486,9 @@ "customFields": {} }, { - "id": 112, - "name": "OrelSU: 1: CatForces (Nikulin, Kashirin, Yakovlev)", - "shortName": "OrelSU: 1: CatForces (Nikulin, Kashirin, Yakovlev)", - "contestSystemId": "nef780304", + "id": "nef788341", + "name": "MAI: #2 (Belousov, Smirnov, Inyutin)", + "shortName": "MAI: #2 (Belousov, Smirnov, Inyutin)", "groups": [], "hashTag": null, "medias": {}, @@ -1610,10 +1498,9 @@ "customFields": {} }, { - "id": 113, - "name": "Kazakh-British TU: Undertrained (Bakhtiyar, Kabyl, Ayupov)", - "shortName": "Kazakh-British TU: Undertrained (Bakhtiyar, Kabyl, Ayupov)", - "contestSystemId": "nef780569", + "id": "nef788342", + "name": "MISiS: Stop this round (Levshin, Fedorov, Korobko)", + "shortName": "MISiS: Stop this round (Levshin, Fedorov, Korobko)", "groups": [], "hashTag": null, "medias": {}, @@ -1623,10 +1510,9 @@ "customFields": {} }, { - "id": 114, - "name": "Moscow SU: Meanwhile, Elk, MrF & YaV (Bazilevich, Denisev, Yakunin)", - "shortName": "Moscow SU: Meanwhile, Elk, MrF & YaV (Bazilevich, Denisev, Yakunin)", - "contestSystemId": "nef788337", + "id": "nef788344", + "name": "BMSTU: 30 seconds to parse (Belousov, Zhuk, Egorov)", + "shortName": "BMSTU: 30 seconds to parse (Belousov, Zhuk, Egorov)", "groups": [], "hashTag": null, "medias": {}, @@ -1636,10 +1522,9 @@ "customFields": {} }, { - "id": 115, - "name": "Ural FU: Re:Fresh (Sychev, Bykov, Bazeev)", - "shortName": "Ural FU: Re:Fresh (Sychev, Bykov, Bazeev)", - "contestSystemId": "nef788026", + "id": "nef788345", + "name": "MISiS: Fiksiki (Shalimov, Skobelev, Maximov)", + "shortName": "MISiS: Fiksiki (Shalimov, Skobelev, Maximov)", "groups": [], "hashTag": null, "medias": {}, @@ -1649,10 +1534,9 @@ "customFields": {} }, { - "id": 116, - "name": "Tbilisi Freeuni: 3 (Glunchadze, Khutsishvili, Gelashvili)", - "shortName": "Tbilisi Freeuni: 3 (Glunchadze, Khutsishvili, Gelashvili)", - "contestSystemId": "nef799342", + "id": "nef788346", + "name": "Moscow SU: broken cisgenders (Gareev, Tokar, Kostychev)", + "shortName": "Moscow SU: broken cisgenders (Gareev, Tokar, Kostychev)", "groups": [], "hashTag": null, "medias": {}, @@ -1662,10 +1546,9 @@ "customFields": {} }, { - "id": 117, - "name": "RosNOU: RNUteam (Aniutin, Solostovskiy, Vafin)", - "shortName": "RosNOU: RNUteam (Aniutin, Solostovskiy, Vafin)", - "contestSystemId": "nef788350", + "id": "nef788347", + "name": "Moscow SU: otolob2 (Matveev, Viktorov, Kuznetsov)", + "shortName": "Moscow SU: otolob2 (Matveev, Viktorov, Kuznetsov)", "groups": [], "hashTag": null, "medias": {}, @@ -1675,10 +1558,9 @@ "customFields": {} }, { - "id": 118, - "name": "Volgograd STU: D (Chupinin, Oleynikov, Tsarenok)", - "shortName": "Volgograd STU: D (Chupinin, Oleynikov, Tsarenok)", - "contestSystemId": "nef790070", + "id": "nef788349", + "name": "Financial U: Nails (Bekirov, Babich, Korobkov)", + "shortName": "Financial U: Nails (Bekirov, Babich, Korobkov)", "groups": [], "hashTag": null, "medias": {}, @@ -1688,10 +1570,9 @@ "customFields": {} }, { - "id": 119, - "name": "Ural FU: i dont walk with washing powder (Kasianov, Skripkin, Moskovchenko)", - "shortName": "Ural FU: i dont walk with washing powder (Kasianov, Skripkin, Moskovchenko)", - "contestSystemId": "nef788028", + "id": "nef788350", + "name": "RosNOU: RNUteam (Aniutin, Solostovskiy, Vafin)", + "shortName": "RosNOU: RNUteam (Aniutin, Solostovskiy, Vafin)", "groups": [], "hashTag": null, "medias": {}, @@ -1701,10 +1582,9 @@ "customFields": {} }, { - "id": 120, - "name": "MISiS: Stop this round (Levshin, Fedorov, Korobko)", - "shortName": "MISiS: Stop this round (Levshin, Fedorov, Korobko)", - "contestSystemId": "nef788342", + "id": "nef788351", + "name": "Moscow Tech U MIREA: Team 11 (Amosov, Foteev, Чикунов)", + "shortName": "Moscow Tech U MIREA: Team 11 (Amosov, Foteev, Чикунов)", "groups": [], "hashTag": null, "medias": {}, @@ -1714,10 +1594,9 @@ "customFields": {} }, { - "id": 121, - "name": "MPSU: Brain Limit (Prokoptsev, Lysenkov, Kniazevsky)", - "shortName": "MPSU: Brain Limit (Prokoptsev, Lysenkov, Kniazevsky)", - "contestSystemId": "nef788336", + "id": "nef788352", + "name": "MEPhI: -3iq (Idrisov, Zakharov, Bogolyubov)", + "shortName": "MEPhI: -3iq (Idrisov, Zakharov, Bogolyubov)", "groups": [], "hashTag": null, "medias": {}, @@ -1727,10 +1606,9 @@ "customFields": {} }, { - "id": 122, - "name": "Moscow Tech U MIREA: Team 4 (Kobetz, Kiriakov, Ignatiev)", - "shortName": "Moscow Tech U MIREA: Team 4 (Kobetz, Kiriakov, Ignatiev)", - "contestSystemId": "nef790437", + "id": "nef788353", + "name": "MTUCI: Sigma Chad Machines (Khripkov, Erdyakov, Kuleshov)", + "shortName": "MTUCI: Sigma Chad Machines (Khripkov, Erdyakov, Kuleshov)", "groups": [], "hashTag": null, "medias": {}, @@ -1740,10 +1618,9 @@ "customFields": {} }, { - "id": 123, - "name": "Izhevsk STU: Skill++ (Gogolev, Drachev, Konovalov)", - "shortName": "Izhevsk STU: Skill++ (Gogolev, Drachev, Konovalov)", - "contestSystemId": "nef788032", + "id": "nef788390", + "name": "Vologda SU: 1 (Astashonok, Kovalev, Omelin)", + "shortName": "Vologda SU: 1 (Astashonok, Kovalev, Omelin)", "groups": [], "hashTag": null, "medias": {}, @@ -1753,10 +1630,9 @@ "customFields": {} }, { - "id": 124, - "name": "SamTUIT: MAAc (Abdullayev, Yusufov, Baxriddinov)", - "shortName": "SamTUIT: MAAc (Abdullayev, Yusufov, Baxriddinov)", - "contestSystemId": "nef795857", + "id": "nef788392", + "name": "TulaSU: 1: pepelats (Savin, Basalova, Ivlev)", + "shortName": "TulaSU: 1: pepelats (Savin, Basalova, Ivlev)", "groups": [], "hashTag": null, "medias": {}, @@ -1766,10 +1642,9 @@ "customFields": {} }, { - "id": 125, - "name": "South FU IMMCS: H (Bezuglov, Krivosheyev, Kulakov)", - "shortName": "South FU IMMCS: H (Bezuglov, Krivosheyev, Kulakov)", - "contestSystemId": "nef790074", + "id": "nef788395", + "name": "YarSU: YaroslavlSU 1: STACKMANS (Voinov, Maslenikov, Pasyura)", + "shortName": "YarSU: YaroslavlSU 1: STACKMANS (Voinov, Maslenikov, Pasyura)", "groups": [], "hashTag": null, "medias": {}, @@ -1779,10 +1654,9 @@ "customFields": {} }, { - "id": 126, - "name": "BryanskSTU: 1: winx_v3.0 (Kapralova, Sopolaev, Dudlin)", - "shortName": "BryanskSTU: 1: winx_v3.0 (Kapralova, Sopolaev, Dudlin)", - "contestSystemId": "nef791356", + "id": "nef788418", + "name": "Belarusian SU: 1: Dungeon Thread (Klimasheuski, Paliukhovich, Dzenhaliou)", + "shortName": "Belarusian SU: 1: Dungeon Thread (Klimasheuski, Paliukhovich, Dzenhaliou)", "groups": [], "hashTag": null, "medias": {}, @@ -1792,10 +1666,9 @@ "customFields": {} }, { - "id": 127, - "name": "ADA: U 2 (Hajiyev, Kazimov, Mammadli)", - "shortName": "ADA: U 2 (Hajiyev, Kazimov, Mammadli)", - "contestSystemId": "nef799360", + "id": "nef788419", + "name": "BSUIR: #1: So stuffy (Loseu, Halukh, Markavets)", + "shortName": "BSUIR: #1: So stuffy (Loseu, Halukh, Markavets)", "groups": [], "hashTag": null, "medias": {}, @@ -1805,10 +1678,9 @@ "customFields": {} }, { - "id": 128, - "name": "Far Eastern STU: DevOchka (Lysenko, Kochetkova, Kravets)", - "shortName": "Far Eastern STU: DevOchka (Lysenko, Kochetkova, Kravets)", - "contestSystemId": "nef789939", + "id": "nef788420", + "name": "Belarusian SU: 2: Fiksiki (Kharasau, Koshchanka, Kastsiany)", + "shortName": "Belarusian SU: 2: Fiksiki (Kharasau, Koshchanka, Kastsiany)", "groups": [], "hashTag": null, "medias": {}, @@ -1818,10 +1690,9 @@ "customFields": {} }, { - "id": 129, - "name": "BSUIR: turbosvin u+1f416 u+1f4a8 (Seviaryn, Artikhovich, Mikhei)", - "shortName": "BSUIR: turbosvin u+1f416 u+1f4a8 (Seviaryn, Artikhovich, Mikhei)", - "contestSystemId": "nef788427", + "id": "nef788421", + "name": "Belarusian SU: 5: Medium rare (Harachkina, Hnedzko, Zarouski)", + "shortName": "Belarusian SU: 5: Medium rare (Harachkina, Hnedzko, Zarouski)", "groups": [], "hashTag": null, "medias": {}, @@ -1831,10 +1702,9 @@ "customFields": {} }, { - "id": 130, - "name": "Irkutsk SU: 322 (Bonoev, Taglasov, Kravchenko)", - "shortName": "Irkutsk SU: 322 (Bonoev, Taglasov, Kravchenko)", - "contestSystemId": "nef796438", + "id": "nef788422", + "name": "GSU: -2 (Korotkevich, Bortenko, Khamkou)", + "shortName": "GSU: -2 (Korotkevich, Bortenko, Khamkou)", "groups": [], "hashTag": null, "medias": {}, @@ -1844,10 +1714,9 @@ "customFields": {} }, { - "id": 131, - "name": "BNTU: #2 Pogchampions (Ptukha, BAHDAN, Zhauniak)", - "shortName": "BNTU: #2 Pogchampions (Ptukha, BAHDAN, Zhauniak)", - "contestSystemId": "nef788432", + "id": "nef788423", + "name": "BSUIR: #3: Enter name of team (Yermakou, Malets, Smoliar)", + "shortName": "BSUIR: #3: Enter name of team (Yermakou, Malets, Smoliar)", "groups": [], "hashTag": null, "medias": {}, @@ -1857,10 +1726,9 @@ "customFields": {} }, { - "id": 132, - "name": "IITU: ur mamaso (Mazylo, Soldatbay, Manashov)", - "shortName": "IITU: ur mamaso (Mazylo, Soldatbay, Manashov)", - "contestSystemId": "nef780571", + "id": "nef788424", + "name": "Belarusian SU: 3 (Kernazhytski, Koval, Melnichenka)", + "shortName": "Belarusian SU: 3 (Kernazhytski, Koval, Melnichenka)", "groups": [], "hashTag": null, "medias": {}, @@ -1870,10 +1738,9 @@ "customFields": {} }, { - "id": 133, - "name": "MISiS: 206 kg Ivana Yakimova (Fadeev, Ilin, Yakimov)", - "shortName": "MISiS: 206 kg Ivana Yakimova (Fadeev, Ilin, Yakimov)", - "contestSystemId": "nef788340", + "id": "nef788425", + "name": "Belarusian SU: 4: OSUTeam (Ulyanau, Barysau, Shishkou)", + "shortName": "Belarusian SU: 4: OSUTeam (Ulyanau, Barysau, Shishkou)", "groups": [], "hashTag": null, "medias": {}, @@ -1883,10 +1750,9 @@ "customFields": {} }, { - "id": 134, - "name": "Baku HOS: 7 (Maharramli, Isgandarov, Aliyev)", - "shortName": "Baku HOS: 7 (Maharramli, Isgandarov, Aliyev)", - "contestSystemId": "nef799571", + "id": "nef788426", + "name": "Baltic FU: 1: Num4 (Chernozhukov, Dobrilko, Alekseev)", + "shortName": "Baltic FU: 1: Num4 (Chernozhukov, Dobrilko, Alekseev)", "groups": [], "hashTag": null, "medias": {}, @@ -1896,10 +1762,9 @@ "customFields": {} }, { - "id": 135, - "name": "Petrozavodsk SU: Aboba (Smirnov, Anisimov, Ermakov)", - "shortName": "Petrozavodsk SU: Aboba (Smirnov, Anisimov, Ermakov)", - "contestSystemId": "nef780679", + "id": "nef788427", + "name": "BSUIR: turbosvin u+1f416 u+1f4a8 (Seviaryn, Artikhovich, Mikhei)", + "shortName": "BSUIR: turbosvin u+1f416 u+1f4a8 (Seviaryn, Artikhovich, Mikhei)", "groups": [], "hashTag": null, "medias": {}, @@ -1909,10 +1774,9 @@ "customFields": {} }, { - "id": 136, - "name": "Yerevan SU: Useless As Long (Aghamalyan, Grigoryan, Tsirunyan)", - "shortName": "Yerevan SU: Useless As Long (Aghamalyan, Grigoryan, Tsirunyan)", - "contestSystemId": "nef790041", + "id": "nef788428", + "name": "BSUIR: #7: Brute Force - Best Force (Berazhny, Volkovskiy, Farisey)", + "shortName": "BSUIR: #7: Brute Force - Best Force (Berazhny, Volkovskiy, Farisey)", "groups": [], "hashTag": null, "medias": {}, @@ -1922,10 +1786,9 @@ "customFields": {} }, { - "id": 137, - "name": "TulaSU: 1: pepelats (Savin, Basalova, Ivlev)", - "shortName": "TulaSU: 1: pepelats (Savin, Basalova, Ivlev)", - "contestSystemId": "nef788392", + "id": "nef788429", + "name": "BelSUT: _1 (Manarkhovich, Ivanitski, Daroshchanka)", + "shortName": "BelSUT: _1 (Manarkhovich, Ivanitski, Daroshchanka)", "groups": [], "hashTag": null, "medias": {}, @@ -1935,10 +1798,9 @@ "customFields": {} }, { - "id": 138, - "name": "MAI: #4 (Novikov, Chakiryan, Barsov)", - "shortName": "MAI: #4 (Novikov, Chakiryan, Barsov)", - "contestSystemId": "nef788338", + "id": "nef788430", + "name": "Grodno SU: #1 (Laktsevich, Zdanchuk, Ihnatsenka)", + "shortName": "Grodno SU: #1 (Laktsevich, Zdanchuk, Ihnatsenka)", "groups": [], "hashTag": null, "medias": {}, @@ -1948,10 +1810,9 @@ "customFields": {} }, { - "id": 139, - "name": "MordSU: A (Gryaznov, Rotanov, Pivkin)", - "shortName": "MordSU: A (Gryaznov, Rotanov, Pivkin)", - "contestSystemId": "nef790101", + "id": "nef788431", + "name": "BNTU: #1 FITRx3 (Zaitsau, Maliavanny, Kikhtsenka)", + "shortName": "BNTU: #1 FITRx3 (Zaitsau, Maliavanny, Kikhtsenka)", "groups": [], "hashTag": null, "medias": {}, @@ -1961,10 +1822,9 @@ "customFields": {} }, { - "id": 140, - "name": "Kutaisi IU: Gurkotas Lekvebi (Nadareishvili, Khantadze, Khomasuridze)", - "shortName": "Kutaisi IU: Gurkotas Lekvebi (Nadareishvili, Khantadze, Khomasuridze)", - "contestSystemId": "nef799346", + "id": "nef788432", + "name": "BNTU: #2 Pogchampions (Ptukha, BAHDAN, Zhauniak)", + "shortName": "BNTU: #2 Pogchampions (Ptukha, BAHDAN, Zhauniak)", "groups": [], "hashTag": null, "medias": {}, @@ -1974,10 +1834,9 @@ "customFields": {} }, { - "id": 141, - "name": "Moscow SU: broken cisgenders (Gareev, Tokar, Kostychev)", - "shortName": "Moscow SU: broken cisgenders (Gareev, Tokar, Kostychev)", - "contestSystemId": "nef788346", + "id": "nef788945", + "name": "CFUV: Drei kameraden (Poznyak, Polev, Novikov)", + "shortName": "CFUV: Drei kameraden (Poznyak, Polev, Novikov)", "groups": [], "hashTag": null, "medias": {}, @@ -1987,10 +1846,9 @@ "customFields": {} }, { - "id": 142, - "name": "Karaganda SU: Buketov Team (Radolda, Oralbek, Radolda)", - "shortName": "Karaganda SU: Buketov Team (Radolda, Oralbek, Radolda)", - "contestSystemId": "nef780578", + "id": "nef789838", + "name": "CFUV: -1 (Kozenko, Pasternak, Kurakov)", + "shortName": "CFUV: -1 (Kozenko, Pasternak, Kurakov)", "groups": [], "hashTag": null, "medias": {}, @@ -2000,10 +1858,9 @@ "customFields": {} }, { - "id": 143, - "name": "USTU: Ulyanovsk STU C (Krutov, Duvanov, Poluvesov)", - "shortName": "USTU: Ulyanovsk STU C (Krutov, Duvanov, Poluvesov)", - "contestSystemId": "nef790105", + "id": "nef789937", + "name": "Far Eastern FU: SpaceDuck (Baderik, Baderik, Zavgorodnev)", + "shortName": "Far Eastern FU: SpaceDuck (Baderik, Baderik, Zavgorodnev)", "groups": [], "hashTag": null, "medias": {}, @@ -2013,10 +1870,9 @@ "customFields": {} }, { - "id": 144, - "name": "SDU: 5 (Kenes, Baigarayev, Mustakhov)", - "shortName": "SDU: 5 (Kenes, Baigarayev, Mustakhov)", - "contestSystemId": "nef780575", + "id": "nef789939", + "name": "Far Eastern STU: DevOchka (Lysenko, Kochetkova, Kravets)", + "shortName": "Far Eastern STU: DevOchka (Lysenko, Kochetkova, Kravets)", "groups": [], "hashTag": null, "medias": {}, @@ -2026,10 +1882,9 @@ "customFields": {} }, { - "id": 145, - "name": "SPb SU of AI: MegaSmetanka (Fesenko, Zhukov, Kurilov)", - "shortName": "SPb SU of AI: MegaSmetanka (Fesenko, Zhukov, Kurilov)", - "contestSystemId": "nef780680", + "id": "nef789941", + "name": "North-Eastern FU: ultramarines (Kulichkina, Zakharov, Semenov)", + "shortName": "North-Eastern FU: ultramarines (Kulichkina, Zakharov, Semenov)", "groups": [], "hashTag": null, "medias": {}, @@ -2039,10 +1894,9 @@ "customFields": {} }, { - "id": 146, - "name": "Yerevan SU: 4 (Boyakhchyan, Unupoghlyan, Baghdasaryan)", - "shortName": "Yerevan SU: 4 (Boyakhchyan, Unupoghlyan, Baghdasaryan)", - "contestSystemId": "nef790042", + "id": "nef789942", + "name": "Far Eastern FU: Cyber-Meatball (Ryutin, Kikot, Koshel)", + "shortName": "Far Eastern FU: Cyber-Meatball (Ryutin, Kikot, Koshel)", "groups": [], "hashTag": null, "medias": {}, @@ -2052,10 +1906,9 @@ "customFields": {} }, { - "id": 147, - "name": "ADA: U 3 (Asadzade, Nabiyev, Huseynli)", - "shortName": "ADA: U 3 (Asadzade, Nabiyev, Huseynli)", - "contestSystemId": "nef799361", + "id": "nef789943", + "name": "Far Eastern FU: Chamliks (Izotov, Kopiyko, Vodovskov)", + "shortName": "Far Eastern FU: Chamliks (Izotov, Kopiyko, Vodovskov)", "groups": [], "hashTag": null, "medias": {}, @@ -2065,10 +1918,9 @@ "customFields": {} }, { - "id": 148, - "name": "SibSUTI: 2 TRIPLE_A (Podkovyrov, Nikolaev, Dubrovin)", - "shortName": "SibSUTI: 2 TRIPLE_A (Podkovyrov, Nikolaev, Dubrovin)", - "contestSystemId": "nef797077", + "id": "nef789945", + "name": "Pacific NU: Compilation failed (Gordeeva, Podtergera, Matveev)", + "shortName": "Pacific NU: Compilation failed (Gordeeva, Podtergera, Matveev)", "groups": [], "hashTag": null, "medias": {}, @@ -2078,10 +1930,9 @@ "customFields": {} }, { - "id": 149, - "name": "YarSU: YaroslavlSU 1: STACKMANS (Voinov, Maslenikov, Pasyura)", - "shortName": "YarSU: YaroslavlSU 1: STACKMANS (Voinov, Maslenikov, Pasyura)", - "contestSystemId": "nef788395", + "id": "nef789946", + "name": "Vladivostok SU: ADA (Plutitskiy, Ryndin, Kotkov)", + "shortName": "Vladivostok SU: ADA (Plutitskiy, Ryndin, Kotkov)", "groups": [], "hashTag": null, "medias": {}, @@ -2091,10 +1942,9 @@ "customFields": {} }, { - "id": 150, - "name": "Tomsk PU: 1 (Степанов, Kuzlyaev, Васин)", - "shortName": "Tomsk PU: 1 (Степанов, Kuzlyaev, Васин)", - "contestSystemId": "nef797076", + "id": "nef789968", + "name": "North-Eastern FU: opa! (Obudov, Androsov, Platonova)", + "shortName": "North-Eastern FU: opa! (Obudov, Androsov, Platonova)", "groups": [], "hashTag": null, "medias": {}, @@ -2104,10 +1954,9 @@ "customFields": {} }, { - "id": 151, - "name": "Tbilisi Freeuni: 13 (Paichadze, Kldiashvili, Megrelidze)", - "shortName": "Tbilisi Freeuni: 13 (Paichadze, Kldiashvili, Megrelidze)", - "contestSystemId": "nef799343", + "id": "nef790038", + "name": "Yerevan SU: 1 (Margaryan, Kocharyan, Andreasyan)", + "shortName": "Yerevan SU: 1 (Margaryan, Kocharyan, Andreasyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2117,10 +1966,9 @@ "customFields": {} }, { - "id": 152, - "name": "Mil A of Comm: Number One (Sundukov, Voitenko, Chichkov)", - "shortName": "Mil A of Comm: Number One (Sundukov, Voitenko, Chichkov)", - "contestSystemId": "nef780683", + "id": "nef790039", + "name": "Yerevan SU: X (Sergoyan, Galstyan, Mikaelyan)", + "shortName": "Yerevan SU: X (Sergoyan, Galstyan, Mikaelyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2130,10 +1978,9 @@ "customFields": {} }, { - "id": 153, - "name": "TUIT: Lorem Ipsum (Doniyorov, Umarov, Uralov)", - "shortName": "TUIT: Lorem Ipsum (Doniyorov, Umarov, Uralov)", - "contestSystemId": "nef795858", + "id": "nef790040", + "name": "RAU: 1 (Petrosian, Ayanyan, Drambyan)", + "shortName": "RAU: 1 (Petrosian, Ayanyan, Drambyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2143,10 +1990,9 @@ "customFields": {} }, { - "id": 154, - "name": "ISPU: #3 (Ivanov, Kochnev, Doketov)", - "shortName": "ISPU: #3 (Ivanov, Kochnev, Doketov)", - "contestSystemId": "nef791357", + "id": "nef790041", + "name": "Yerevan SU: Useless As Long (Aghamalyan, Grigoryan, Tsirunyan)", + "shortName": "Yerevan SU: Useless As Long (Aghamalyan, Grigoryan, Tsirunyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2156,10 +2002,9 @@ "customFields": {} }, { - "id": 155, - "name": "SFU: div ++inf (Nazarov, Erakhtin, Borisenko)", - "shortName": "SFU: div ++inf (Nazarov, Erakhtin, Borisenko)", - "contestSystemId": "nef796442", + "id": "nef790042", + "name": "Yerevan SU: 4 (Boyakhchyan, Unupoghlyan, Baghdasaryan)", + "shortName": "Yerevan SU: 4 (Boyakhchyan, Unupoghlyan, Baghdasaryan)", "groups": [], "hashTag": null, "medias": {}, @@ -2169,10 +2014,9 @@ "customFields": {} }, { - "id": 156, - "name": "Far Eastern FU: Chamliks (Izotov, Kopiyko, Vodovskov)", - "shortName": "Far Eastern FU: Chamliks (Izotov, Kopiyko, Vodovskov)", - "contestSystemId": "nef789943", + "id": "nef790043", + "name": "RAU: 2 (Khroyan, Tsaturyan, Fahradyan)", + "shortName": "RAU: 2 (Khroyan, Tsaturyan, Fahradyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2182,10 +2026,9 @@ "customFields": {} }, { - "id": 157, - "name": "ASU: A (Emiszh, Verdenko, Kuznetsov)", - "shortName": "ASU: A (Emiszh, Verdenko, Kuznetsov)", - "contestSystemId": "nef790139", + "id": "nef790044", + "name": "RAU: 3 (Balayan, Khachatryan, Avagyan)", + "shortName": "RAU: 3 (Balayan, Khachatryan, Avagyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2195,10 +2038,9 @@ "customFields": {} }, { - "id": 158, - "name": "Ural FU: If True (Sennikov, Petrov, Rybin)", - "shortName": "Ural FU: If True (Sennikov, Petrov, Rybin)", - "contestSystemId": "nef788068", + "id": "nef790046", + "name": "RAU: 4 (Mkrtumyan, Tovmasyan, Zohrabyan)", + "shortName": "RAU: 4 (Mkrtumyan, Tovmasyan, Zohrabyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2208,10 +2050,9 @@ "customFields": {} }, { - "id": 159, - "name": "SDU: Kak dela v ka4alke, pasany? (Nyshanbay, Beisenbay, Beisenkhan)", - "shortName": "SDU: Kak dela v ka4alke, pasany? (Nyshanbay, Beisenbay, Beisenkhan)", - "contestSystemId": "nef780576", + "id": "nef790047", + "name": "Goris SU: We and Our Mountains (Aghabekyan, Arakelyan, Martirosyan)", + "shortName": "Goris SU: We and Our Mountains (Aghabekyan, Arakelyan, Martirosyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2221,10 +2062,9 @@ "customFields": {} }, { - "id": 160, - "name": "Baku HOS: 1 (Gasimzade, Isayev, Orujov)", - "shortName": "Baku HOS: 1 (Gasimzade, Isayev, Orujov)", - "contestSystemId": "nef799357", + "id": "nef790048", + "name": "Goris SU: NoPolitic++s (Kocharyan, Pashayan, Arakelyan)", + "shortName": "Goris SU: NoPolitic++s (Kocharyan, Pashayan, Arakelyan)", "groups": [], "hashTag": null, "medias": {}, @@ -2234,10 +2074,9 @@ "customFields": {} }, { - "id": 161, - "name": "Petrozavodsk SU: _ = (1 - q^n) / (1 - q) (Roitburd, Lavrov, Reikenen)", - "shortName": "Petrozavodsk SU: _ = (1 - q^n) / (1 - q) (Roitburd, Lavrov, Reikenen)", - "contestSystemId": "nef780678", + "id": "nef790050", + "name": "EUA: 1 (Madhav, Aro Chiraz, Katebi)", + "shortName": "EUA: 1 (Madhav, Aro Chiraz, Katebi)", "groups": [], "hashTag": null, "medias": {}, @@ -2247,10 +2086,9 @@ "customFields": {} }, { - "id": 162, - "name": "BNTU: #1 FITRx3 (Zaitsau, Maliavanny, Kikhtsenka)", - "shortName": "BNTU: #1 FITRx3 (Zaitsau, Maliavanny, Kikhtsenka)", - "contestSystemId": "nef788431", + "id": "nef790061", + "name": "Innopolis: U A (Hakimiyon, Hokimiyon, Ahmed)", + "shortName": "Innopolis: U A (Hakimiyon, Hokimiyon, Ahmed)", "groups": [], "hashTag": null, "medias": {}, @@ -2260,10 +2098,9 @@ "customFields": {} }, { - "id": 163, - "name": "NSTU: 6-FPMI (Afonin, Zatyazhchuk, Isakin)", - "shortName": "NSTU: 6-FPMI (Afonin, Zatyazhchuk, Isakin)", - "contestSystemId": "nef797089", + "id": "nef790067", + "name": "Saratov SU: K (Brovko, Lankin, Shnirelman)", + "shortName": "Saratov SU: K (Brovko, Lankin, Shnirelman)", "groups": [], "hashTag": null, "medias": {}, @@ -2273,10 +2110,9 @@ "customFields": {} }, { - "id": 164, - "name": "Kazan FU: P (Akhmetov, Novozhilov, Gareyev)", - "shortName": "Kazan FU: P (Akhmetov, Novozhilov, Gareyev)", - "contestSystemId": "nef797070", + "id": "nef790068", + "name": "Innopolis: U M (Alhussin, Sarhan, Almouine)", + "shortName": "Innopolis: U M (Alhussin, Sarhan, Almouine)", "groups": [], "hashTag": null, "medias": {}, @@ -2286,10 +2122,9 @@ "customFields": {} }, { - "id": 165, - "name": "Izhevsk STU: ZEDbl (Kulikov, Postnikov, Ivshin)", - "shortName": "Izhevsk STU: ZEDbl (Kulikov, Postnikov, Ivshin)", - "contestSystemId": "nef788060", + "id": "nef790069", + "name": "Kazan FU: I (Beloborodov, Fazylov, Sudakov)", + "shortName": "Kazan FU: I (Beloborodov, Fazylov, Sudakov)", "groups": [], "hashTag": null, "medias": {}, @@ -2299,10 +2134,9 @@ "customFields": {} }, { - "id": 166, - "name": "MTUCI: Sigma Chad Machines (Khripkov, Erdyakov, Kuleshov)", - "shortName": "MTUCI: Sigma Chad Machines (Khripkov, Erdyakov, Kuleshov)", - "contestSystemId": "nef788353", + "id": "nef790070", + "name": "Volgograd STU: D (Chupinin, Oleynikov, Tsarenok)", + "shortName": "Volgograd STU: D (Chupinin, Oleynikov, Tsarenok)", "groups": [], "hashTag": null, "medias": {}, @@ -2312,10 +2146,9 @@ "customFields": {} }, { - "id": 167, - "name": "South Ural SU: Hydra (Ilinykh, Sarapultsev, Kulbachnyi)", - "shortName": "South Ural SU: Hydra (Ilinykh, Sarapultsev, Kulbachnyi)", - "contestSystemId": "nef788058", + "id": "nef790071", + "name": "Nizhny Novgorod HSE: Brawl Stars (Yakhtin, Martirosyan, Zhelezin)", + "shortName": "Nizhny Novgorod HSE: Brawl Stars (Yakhtin, Martirosyan, Zhelezin)", "groups": [], "hashTag": null, "medias": {}, @@ -2325,10 +2158,9 @@ "customFields": {} }, { - "id": 168, - "name": "SPb SU of AI: 0x60D7EA44 (Kolesnikova, Semkov, Petrov)", - "shortName": "SPb SU of AI: 0x60D7EA44 (Kolesnikova, Semkov, Petrov)", - "contestSystemId": "nef780681", + "id": "nef790072", + "name": "NNSU: Lera not Retired (Mitin, Larin, Ryabchikova)", + "shortName": "NNSU: Lera not Retired (Mitin, Larin, Ryabchikova)", "groups": [], "hashTag": null, "medias": {}, @@ -2338,10 +2170,9 @@ "customFields": {} }, { - "id": 169, - "name": "BSUIR: #3: Enter name of team (Yermakou, Malets, Smoliar)", - "shortName": "BSUIR: #3: Enter name of team (Yermakou, Malets, Smoliar)", - "contestSystemId": "nef788423", + "id": "nef790073", + "name": "NNSU: Alexey Sergeevich (Sukharev, Burdukov, Kulandin)", + "shortName": "NNSU: Alexey Sergeevich (Sukharev, Burdukov, Kulandin)", "groups": [], "hashTag": null, "medias": {}, @@ -2351,10 +2182,9 @@ "customFields": {} }, { - "id": 170, - "name": "Samara U: F (Nedugov, Nemchenko, Yashin)", - "shortName": "Samara U: F (Nedugov, Nemchenko, Yashin)", - "contestSystemId": "nef790136", + "id": "nef790074", + "name": "South FU IMMCS: H (Bezuglov, Krivosheyev, Kulakov)", + "shortName": "South FU IMMCS: H (Bezuglov, Krivosheyev, Kulakov)", "groups": [], "hashTag": null, "medias": {}, @@ -2364,10 +2194,9 @@ "customFields": {} }, { - "id": 171, - "name": "Buryat SU: (INF)acts (Smolyov, Panteleev, Gorbacheva)", - "shortName": "Buryat SU: (INF)acts (Smolyov, Panteleev, Gorbacheva)", - "contestSystemId": "nef796439", + "id": "nef790100", + "name": "Kazan FU: S (Mokut, Saifutdinov, Bikmullin)", + "shortName": "Kazan FU: S (Mokut, Saifutdinov, Bikmullin)", "groups": [], "hashTag": null, "medias": {}, @@ -2377,10 +2206,9 @@ "customFields": {} }, { - "id": 172, - "name": "Perm NRPU: Azkaban's Axiom (Ershov, Nurislamov, Nyashin)", - "shortName": "Perm NRPU: Azkaban's Axiom (Ershov, Nurislamov, Nyashin)", - "contestSystemId": "nef788054", + "id": "nef790101", + "name": "MordSU: A (Gryaznov, Rotanov, Pivkin)", + "shortName": "MordSU: A (Gryaznov, Rotanov, Pivkin)", "groups": [], "hashTag": null, "medias": {}, @@ -2390,10 +2218,9 @@ "customFields": {} }, { - "id": 173, - "name": "Kutaisi IU: Tamliani (Rusishvili, Kikvadze, Tabatadze)", - "shortName": "Kutaisi IU: Tamliani (Rusishvili, Kikvadze, Tabatadze)", - "contestSystemId": "nef799349", + "id": "nef790102", + "name": "NNSU: Kaifariki (Petukhov, Devlikamov, Lebedev)", + "shortName": "NNSU: Kaifariki (Petukhov, Devlikamov, Lebedev)", "groups": [], "hashTag": null, "medias": {}, @@ -2403,10 +2230,9 @@ "customFields": {} }, { - "id": 174, - "name": "AUCA: ZXC (Beliaev, Dzheentaev, Alimov)", - "shortName": "AUCA: ZXC (Beliaev, Dzheentaev, Alimov)", - "contestSystemId": "nef772711", + "id": "nef790103", + "name": "Kazan FU: J (Gizzatullin, Shermatov, Valeev)", + "shortName": "Kazan FU: J (Gizzatullin, Shermatov, Valeev)", "groups": [], "hashTag": null, "medias": {}, @@ -2416,10 +2242,9 @@ "customFields": {} }, { - "id": 175, - "name": "TIU: #1 (Karimova, Muhammadixonova, Hasanov)", - "shortName": "TIU: #1 (Karimova, Muhammadixonova, Hasanov)", - "contestSystemId": "nef795853", + "id": "nef790104", + "name": "VoronezhSU: H (Shishko, Paukov, Novotochinov)", + "shortName": "VoronezhSU: H (Shishko, Paukov, Novotochinov)", "groups": [], "hashTag": null, "medias": {}, @@ -2429,10 +2254,9 @@ "customFields": {} }, { - "id": 176, - "name": "RusTjkSlav: REAL NERU (Orash, Mahmudzoda, Nazarov)", - "shortName": "RusTjkSlav: REAL NERU (Orash, Mahmudzoda, Nazarov)", - "contestSystemId": "nef795856", + "id": "nef790105", + "name": "USTU: Ulyanovsk STU C (Krutov, Duvanov, Poluvesov)", + "shortName": "USTU: Ulyanovsk STU C (Krutov, Duvanov, Poluvesov)", "groups": [], "hashTag": null, "medias": {}, @@ -2442,10 +2266,9 @@ "customFields": {} }, { - "id": 177, - "name": "ADA: U 5 (Tahmazov, Huseynzada, Aghayev)", - "shortName": "ADA: U 5 (Tahmazov, Huseynzada, Aghayev)", - "contestSystemId": "nef799366", + "id": "nef790133", + "name": "Penza SU: Arbina | Vadim Team (Kalugin, Dorofeyev, Svinarev)", + "shortName": "Penza SU: Arbina | Vadim Team (Kalugin, Dorofeyev, Svinarev)", "groups": [], "hashTag": null, "medias": {}, @@ -2455,10 +2278,9 @@ "customFields": {} }, { - "id": 178, - "name": "NSTU: PUDGE (Mikhailova, Nagaev, Bugrova)", - "shortName": "NSTU: PUDGE (Mikhailova, Nagaev, Bugrova)", - "contestSystemId": "nef790137", + "id": "nef790134", + "name": "Saratov SU: J (Kirnosov, Rodin, Bujkevich)", + "shortName": "Saratov SU: J (Kirnosov, Rodin, Bujkevich)", "groups": [], "hashTag": null, "medias": {}, @@ -2468,10 +2290,9 @@ "customFields": {} }, { - "id": 179, - "name": "Ufa SATU: Seven_H (Lelikov, Tlyavsin, Zendel)", - "shortName": "Ufa SATU: Seven_H (Lelikov, Tlyavsin, Zendel)", - "contestSystemId": "nef790435", + "id": "nef790135", + "name": "Kazan FU: AA (Kashbiev, Khaziev, Fayzrakhmanov)", + "shortName": "Kazan FU: AA (Kashbiev, Khaziev, Fayzrakhmanov)", "groups": [], "hashTag": null, "medias": {}, @@ -2481,10 +2302,9 @@ "customFields": {} }, { - "id": 180, - "name": "TUIT: Dominators (Hasanov, Urinboyev, Parpiyev)", - "shortName": "TUIT: Dominators (Hasanov, Urinboyev, Parpiyev)", - "contestSystemId": "nef795862", + "id": "nef790136", + "name": "Samara U: F (Nedugov, Nemchenko, Yashin)", + "shortName": "Samara U: F (Nedugov, Nemchenko, Yashin)", "groups": [], "hashTag": null, "medias": {}, @@ -2494,10 +2314,9 @@ "customFields": {} }, { - "id": 181, - "name": "Far Eastern FU: Cyber-Meatball (Ryutin, Kikot, Koshel)", - "shortName": "Far Eastern FU: Cyber-Meatball (Ryutin, Kikot, Koshel)", - "contestSystemId": "nef789942", + "id": "nef790137", + "name": "NSTU: PUDGE (Mikhailova, Nagaev, Bugrova)", + "shortName": "NSTU: PUDGE (Mikhailova, Nagaev, Bugrova)", "groups": [], "hashTag": null, "medias": {}, @@ -2507,10 +2326,9 @@ "customFields": {} }, { - "id": 182, - "name": "Penza SU: Arbina | Vadim Team (Kalugin, Dorofeyev, Svinarev)", - "shortName": "Penza SU: Arbina | Vadim Team (Kalugin, Dorofeyev, Svinarev)", - "contestSystemId": "nef790133", + "id": "nef790138", + "name": "MordSU: C (Kuryaev, Nikashkin, Taynov)", + "shortName": "MordSU: C (Kuryaev, Nikashkin, Taynov)", "groups": [], "hashTag": null, "medias": {}, @@ -2520,10 +2338,9 @@ "customFields": {} }, { - "id": 183, - "name": "Tyumen IU: kriper2004 (Vyazov, Petrov, Krasnova)", - "shortName": "Tyumen IU: kriper2004 (Vyazov, Petrov, Krasnova)", - "contestSystemId": "nef788062", + "id": "nef790139", + "name": "ASU: A (Emiszh, Verdenko, Kuznetsov)", + "shortName": "ASU: A (Emiszh, Verdenko, Kuznetsov)", "groups": [], "hashTag": null, "medias": {}, @@ -2533,10 +2350,9 @@ "customFields": {} }, { - "id": 184, - "name": "IAU: nothing to code (tynychbekov, Azamatov, Chekirbaev)", - "shortName": "IAU: nothing to code (tynychbekov, Azamatov, Chekirbaev)", - "contestSystemId": "nef772712", + "id": "nef790140", + "name": "Penza SU: Arbina | SE Prodigies (Abuzyarov, Grunin, Levin)", + "shortName": "Penza SU: Arbina | SE Prodigies (Abuzyarov, Grunin, Levin)", "groups": [], "hashTag": null, "medias": {}, @@ -2546,10 +2362,9 @@ "customFields": {} }, { - "id": 185, - "name": "MordSU: C (Kuryaev, Nikashkin, Taynov)", - "shortName": "MordSU: C (Kuryaev, Nikashkin, Taynov)", - "contestSystemId": "nef790138", + "id": "nef790141", + "name": "VoronezhSU: Q (Kosobutskaya, Danilov, Klyuev)", + "shortName": "VoronezhSU: Q (Kosobutskaya, Danilov, Klyuev)", "groups": [], "hashTag": null, "medias": {}, @@ -2559,10 +2374,9 @@ "customFields": {} }, { - "id": 186, - "name": "Tver SU: 1: Guerilla Gorillas (Grigorev, Lutsai, Fomin)", - "shortName": "Tver SU: 1: Guerilla Gorillas (Grigorev, Lutsai, Fomin)", - "contestSystemId": "nef780306", + "id": "nef790142", + "name": "Nizhny Novgorod HSE: Dark Horse (Gazizullin, Lebedev, Kulyukin)", + "shortName": "Nizhny Novgorod HSE: Dark Horse (Gazizullin, Lebedev, Kulyukin)", "groups": [], "hashTag": null, "medias": {}, @@ -2572,10 +2386,9 @@ "customFields": {} }, { - "id": 187, - "name": "TUIT: Code of Duty (Davlatbek, Qodirov, Ganiev)", - "shortName": "TUIT: Code of Duty (Davlatbek, Qodirov, Ganiev)", - "contestSystemId": "nef795854", + "id": "nef790432", + "name": "Belarusian SU: 9: Pointing Hands (Kohan, Filipovich, Kuzmitski)", + "shortName": "Belarusian SU: 9: Pointing Hands (Kohan, Filipovich, Kuzmitski)", "groups": [], "hashTag": null, "medias": {}, @@ -2585,10 +2398,9 @@ "customFields": {} }, { - "id": 188, - "name": "Perm NRPU: PythonTrio (Riabov, Matveev, Cupewkin)", - "shortName": "Perm NRPU: PythonTrio (Riabov, Matveev, Cupewkin)", - "contestSystemId": "nef788066", + "id": "nef790433", + "name": "Izhevsk STU: Comrade coders (Vasiliev, Korepanov, Kadukov)", + "shortName": "Izhevsk STU: Comrade coders (Vasiliev, Korepanov, Kadukov)", "groups": [], "hashTag": null, "medias": {}, @@ -2598,10 +2410,9 @@ "customFields": {} }, { - "id": 189, - "name": "NNSU: Lera not Retired (Mitin, Larin, Ryabchikova)", - "shortName": "NNSU: Lera not Retired (Mitin, Larin, Ryabchikova)", - "contestSystemId": "nef790072", + "id": "nef790434", + "name": "Perm SNRU: busy beavers (Dyshlevsky, Sherstobitov, Kalayda)", + "shortName": "Perm SNRU: busy beavers (Dyshlevsky, Sherstobitov, Kalayda)", "groups": [], "hashTag": null, "medias": {}, @@ -2611,10 +2422,9 @@ "customFields": {} }, { - "id": 190, - "name": "TUIT Urgench Branch: #1 (Allayarov, Ismoilova, Qalandarov)", - "shortName": "TUIT Urgench Branch: #1 (Allayarov, Ismoilova, Qalandarov)", - "contestSystemId": "nef795860", + "id": "nef790435", + "name": "Ufa SATU: Seven_H (Lelikov, Tlyavsin, Zendel)", + "shortName": "Ufa SATU: Seven_H (Lelikov, Tlyavsin, Zendel)", "groups": [], "hashTag": null, "medias": {}, @@ -2624,10 +2434,9 @@ "customFields": {} }, { - "id": 191, - "name": "Penza SU: Arbina | SE Prodigies (Abuzyarov, Grunin, Levin)", - "shortName": "Penza SU: Arbina | SE Prodigies (Abuzyarov, Grunin, Levin)", - "contestSystemId": "nef790140", + "id": "nef790436", + "name": "HSE: Dirizhabl’ (Arzhantsev, Akulov, Pogodin)", + "shortName": "HSE: Dirizhabl’ (Arzhantsev, Akulov, Pogodin)", "groups": [], "hashTag": null, "medias": {}, @@ -2637,10 +2446,9 @@ "customFields": {} }, { - "id": 192, - "name": "YarSU: 14: MMM (Agaev, Sidorov, Chirkov)", - "shortName": "YarSU: 14: MMM (Agaev, Sidorov, Chirkov)", - "contestSystemId": "nef780302", + "id": "nef790437", + "name": "Moscow Tech U MIREA: Team 4 (Kobetz, Kiriakov, Ignatiev)", + "shortName": "Moscow Tech U MIREA: Team 4 (Kobetz, Kiriakov, Ignatiev)", "groups": [], "hashTag": null, "medias": {}, @@ -2650,10 +2458,9 @@ "customFields": {} }, { - "id": 193, - "name": "Tbilisi SU: T2 (Gumberidze, Jibuti, Beriashvili)", - "shortName": "Tbilisi SU: T2 (Gumberidze, Jibuti, Beriashvili)", - "contestSystemId": "nef799348", + "id": "nef790438", + "name": "Innopolis: U T (Kolomin, Rudakov, Batyrgariyev)", + "shortName": "Innopolis: U T (Kolomin, Rudakov, Batyrgariyev)", "groups": [], "hashTag": null, "medias": {}, @@ -2663,10 +2470,9 @@ "customFields": {} }, { - "id": 194, - "name": "Kazan FU: AA (Kashbiev, Khaziev, Fayzrakhmanov)", - "shortName": "Kazan FU: AA (Kashbiev, Khaziev, Fayzrakhmanov)", - "contestSystemId": "nef790135", + "id": "nef790439", + "name": "Volgograd STU: H (Shchetinin, Mangushev, Zheleznyakov)", + "shortName": "Volgograd STU: H (Shchetinin, Mangushev, Zheleznyakov)", "groups": [], "hashTag": null, "medias": {}, @@ -2676,10 +2482,9 @@ "customFields": {} }, { - "id": 195, - "name": "UFAZ: 1 (Aliyev, Jabrayilov, Azimov)", - "shortName": "UFAZ: 1 (Aliyev, Jabrayilov, Azimov)", - "contestSystemId": "nef799363", + "id": "nef791228", + "name": "Saratov SU: M (Kozikov, Yanchenko, Yeremenko)", + "shortName": "Saratov SU: M (Kozikov, Yanchenko, Yeremenko)", "groups": [], "hashTag": null, "medias": {}, @@ -2689,10 +2494,9 @@ "customFields": {} }, { - "id": 196, - "name": "North-Eastern FU: opa! (Obudov, Androsov, Platonova)", - "shortName": "North-Eastern FU: opa! (Obudov, Androsov, Platonova)", - "contestSystemId": "nef789968", + "id": "nef791356", + "name": "BryanskSTU: 1: winx_v3.0 (Kapralova, Sopolaev, Dudlin)", + "shortName": "BryanskSTU: 1: winx_v3.0 (Kapralova, Sopolaev, Dudlin)", "groups": [], "hashTag": null, "medias": {}, @@ -2702,10 +2506,9 @@ "customFields": {} }, { - "id": 197, - "name": "Moscow Tech U MIREA: Team 11 (Amosov, Foteev, Чикунов)", - "shortName": "Moscow Tech U MIREA: Team 11 (Amosov, Foteev, Чикунов)", - "contestSystemId": "nef788351", + "id": "nef791357", + "name": "ISPU: #3 (Ivanov, Kochnev, Doketov)", + "shortName": "ISPU: #3 (Ivanov, Kochnev, Doketov)", "groups": [], "hashTag": null, "medias": {}, @@ -2715,10 +2518,9 @@ "customFields": {} }, { - "id": 198, - "name": "VoronezhSU: Q (Kosobutskaya, Danilov, Klyuev)", - "shortName": "VoronezhSU: Q (Kosobutskaya, Danilov, Klyuev)", - "contestSystemId": "nef790141", + "id": "nef795852", + "name": "MSU Tashkent: 1 Awesome Team (Toshpulatov, Ashirmatov, Ashrapov)", + "shortName": "MSU Tashkent: 1 Awesome Team (Toshpulatov, Ashirmatov, Ashrapov)", "groups": [], "hashTag": null, "medias": {}, @@ -2728,10 +2530,9 @@ "customFields": {} }, { - "id": 199, - "name": "Chelyabinsk SU: Eternity (Akhmerov, Kirionenko, Korchagin)", - "shortName": "Chelyabinsk SU: Eternity (Akhmerov, Kirionenko, Korchagin)", - "contestSystemId": "nef788031", + "id": "nef795853", + "name": "TIU: #1 (Karimova, Muhammadixonova, Hasanov)", + "shortName": "TIU: #1 (Karimova, Muhammadixonova, Hasanov)", "groups": [], "hashTag": null, "medias": {}, @@ -2741,10 +2542,9 @@ "customFields": {} }, { - "id": 200, - "name": "Tbilisi Freeuni: 6 (Karaputadze, Tsotniashvili, Khukhua)", - "shortName": "Tbilisi Freeuni: 6 (Karaputadze, Tsotniashvili, Khukhua)", - "contestSystemId": "nef799344", + "id": "nef795854", + "name": "TUIT: Code of Duty (Davlatbek, Qodirov, Ganiev)", + "shortName": "TUIT: Code of Duty (Davlatbek, Qodirov, Ganiev)", "groups": [], "hashTag": null, "medias": {}, @@ -2754,10 +2554,9 @@ "customFields": {} }, { - "id": 201, - "name": "ISRU: BebraniumCoders (Belyaev, Gordeev, Donskoy)", - "shortName": "ISRU: BebraniumCoders (Belyaev, Gordeev, Donskoy)", - "contestSystemId": "nef796545", + "id": "nef795855", + "name": "TUIT: Algo Experts (Qarshiyev, Qayumjonov, Jalolov)", + "shortName": "TUIT: Algo Experts (Qarshiyev, Qayumjonov, Jalolov)", "groups": [], "hashTag": null, "medias": {}, @@ -2767,10 +2566,9 @@ "customFields": {} }, { - "id": 202, - "name": "Nizhny Novgorod HSE: Dark Horse (Gazizullin, Lebedev, Kulyukin)", - "shortName": "Nizhny Novgorod HSE: Dark Horse (Gazizullin, Lebedev, Kulyukin)", - "contestSystemId": "nef790142", + "id": "nef795856", + "name": "RusTjkSlav: REAL NERU (Orash, Mahmudzoda, Nazarov)", + "shortName": "RusTjkSlav: REAL NERU (Orash, Mahmudzoda, Nazarov)", "groups": [], "hashTag": null, "medias": {}, @@ -2780,10 +2578,9 @@ "customFields": {} }, { - "id": 203, - "name": "Saratov SU: J (Kirnosov, Rodin, Bujkevich)", - "shortName": "Saratov SU: J (Kirnosov, Rodin, Bujkevich)", - "contestSystemId": "nef790134", + "id": "nef795857", + "name": "SamTUIT: MAAc (Abdullayev, Yusufov, Baxriddinov)", + "shortName": "SamTUIT: MAAc (Abdullayev, Yusufov, Baxriddinov)", "groups": [], "hashTag": null, "medias": {}, @@ -2793,10 +2590,9 @@ "customFields": {} }, { - "id": 204, - "name": "Izhevsk STU: Comrade coders (Vasiliev, Korepanov, Kadukov)", - "shortName": "Izhevsk STU: Comrade coders (Vasiliev, Korepanov, Kadukov)", - "contestSystemId": "nef790433", + "id": "nef795858", + "name": "TUIT: Lorem Ipsum (Doniyorov, Umarov, Uralov)", + "shortName": "TUIT: Lorem Ipsum (Doniyorov, Umarov, Uralov)", "groups": [], "hashTag": null, "medias": {}, @@ -2806,10 +2602,9 @@ "customFields": {} }, { - "id": 205, - "name": "Nazarbayev U: Please, relocate randomly. (Saiyngali, Tarikh, Taniyev)", - "shortName": "Nazarbayev U: Please, relocate randomly. (Saiyngali, Tarikh, Taniyev)", - "contestSystemId": "nef780572", + "id": "nef795860", + "name": "TUIT Urgench Branch: #1 (Allayarov, Ismoilova, Qalandarov)", + "shortName": "TUIT Urgench Branch: #1 (Allayarov, Ismoilova, Qalandarov)", "groups": [], "hashTag": null, "medias": {}, @@ -2819,10 +2614,9 @@ "customFields": {} }, { - "id": 206, - "name": "Kutaisi IU: FarosanSlayer (Nadaraia, Koghuashvili, Turmanidze)", - "shortName": "Kutaisi IU: FarosanSlayer (Nadaraia, Koghuashvili, Turmanidze)", - "contestSystemId": "nef799353", + "id": "nef795862", + "name": "TUIT: Dominators (Hasanov, Urinboyev, Parpiyev)", + "shortName": "TUIT: Dominators (Hasanov, Urinboyev, Parpiyev)", "groups": [], "hashTag": null, "medias": {}, @@ -2832,10 +2626,9 @@ "customFields": {} }, { - "id": 207, - "name": "RAU: 3 (Balayan, Khachatryan, Avagyan)", - "shortName": "RAU: 3 (Balayan, Khachatryan, Avagyan)", - "contestSystemId": "nef790044", + "id": "nef795863", + "name": "NewUU: Import magic (Normuminov, Musurmonov, Rustamov)", + "shortName": "NewUU: Import magic (Normuminov, Musurmonov, Rustamov)", "groups": [], "hashTag": null, "medias": {}, @@ -2845,10 +2638,9 @@ "customFields": {} }, { - "id": 208, - "name": "Irkutsk SU: Take it easy (Davydov, Bragin, Fedorov)", - "shortName": "Irkutsk SU: Take it easy (Davydov, Bragin, Fedorov)", - "contestSystemId": "nef796440", + "id": "nef795864", + "name": "IIAU: TEAM SEVEN (Juraboyev, Habibov, Muhsinov)", + "shortName": "IIAU: TEAM SEVEN (Juraboyev, Habibov, Muhsinov)", "groups": [], "hashTag": null, "medias": {}, @@ -2858,10 +2650,9 @@ "customFields": {} }, { - "id": 209, - "name": "SDU: 3 (Yerkebayev, Amanzholov, Serik)", - "shortName": "SDU: 3 (Yerkebayev, Amanzholov, Serik)", - "contestSystemId": "nef780577", + "id": "nef795865", + "name": "MSU Tashkent: Ace (Sobirov, Askarkhujaev, Babaev)", + "shortName": "MSU Tashkent: Ace (Sobirov, Askarkhujaev, Babaev)", "groups": [], "hashTag": null, "medias": {}, @@ -2871,10 +2662,9 @@ "customFields": {} }, { - "id": 210, - "name": "NewUU: Import magic (Normuminov, Musurmonov, Rustamov)", - "shortName": "NewUU: Import magic (Normuminov, Musurmonov, Rustamov)", - "contestSystemId": "nef795863", + "id": "nef795866", + "name": "SamTUIT: Vertow (Murodullaev, Narzullayev, Narzullayev)", + "shortName": "SamTUIT: Vertow (Murodullaev, Narzullayev, Narzullayev)", "groups": [], "hashTag": null, "medias": {}, @@ -2884,10 +2674,9 @@ "customFields": {} }, { - "id": 211, - "name": "SibSUTI: 6 hodgepodge (Lugovaya, Mal'cev, Koynov)", - "shortName": "SibSUTI: 6 hodgepodge (Lugovaya, Mal'cev, Koynov)", - "contestSystemId": "nef797083", + "id": "nef795867", + "name": "BukhSU: _1 (Muxtorov, Qayimov, Akramov)", + "shortName": "BukhSU: _1 (Muxtorov, Qayimov, Akramov)", "groups": [], "hashTag": null, "medias": {}, @@ -2897,10 +2686,9 @@ "customFields": {} }, { - "id": 212, - "name": "Saratov SU: M (Kozikov, Yanchenko, Yeremenko)", - "shortName": "Saratov SU: M (Kozikov, Yanchenko, Yeremenko)", - "contestSystemId": "nef791228", + "id": "nef795869", + "name": "JBNUU: 1 (Nizometdinov, Ayxanov, Gofurova)", + "shortName": "JBNUU: 1 (Nizometdinov, Ayxanov, Gofurova)", "groups": [], "hashTag": null, "medias": {}, @@ -2910,10 +2698,9 @@ "customFields": {} }, { - "id": 213, - "name": "Irkutsk SU: Gigachads (Popov, Chekhov, Armaev)", - "shortName": "Irkutsk SU: Gigachads (Popov, Chekhov, Armaev)", - "contestSystemId": "nef796544", + "id": "nef795870", + "name": "Namangan SU: #1 (Muhammadiev, Toirxanov, Tursunov)", + "shortName": "Namangan SU: #1 (Muhammadiev, Toirxanov, Tursunov)", "groups": [], "hashTag": null, "medias": {}, @@ -2923,10 +2710,9 @@ "customFields": {} }, { - "id": 214, - "name": "* KazNU: - Solo (Asuov)", - "shortName": "* KazNU: - Solo (Asuov)", - "contestSystemId": "nef780573", + "id": "nef795871", + "name": "TUIT Urgench Branch: #2 (Bekjanov, Abdirimov, Anvarova)", + "shortName": "TUIT Urgench Branch: #2 (Bekjanov, Abdirimov, Anvarova)", "groups": [], "hashTag": null, "medias": {}, @@ -2936,10 +2722,9 @@ "customFields": {} }, { - "id": 215, - "name": "UCA: Fortuna (Diushekeev, Azizbekov, Akatov)", - "shortName": "UCA: Fortuna (Diushekeev, Azizbekov, Akatov)", - "contestSystemId": "nef772714", + "id": "nef795872", + "name": "SamSU: DREAM TEAM (Saidqulov, Shoyim, Sindarov)", + "shortName": "SamSU: DREAM TEAM (Saidqulov, Shoyim, Sindarov)", "groups": [], "hashTag": null, "medias": {}, @@ -2949,10 +2734,9 @@ "customFields": {} }, { - "id": 216, - "name": "UCA: SeniorS (Madiev, Bazarov, Iskenderova)", - "shortName": "UCA: SeniorS (Madiev, Bazarov, Iskenderova)", - "contestSystemId": "nef772721", + "id": "nef796437", + "name": "Irkutsk SU: ICPC means Irkutsk Competitive Programming Community (Muratov, Mitrofanov, Grachev)", + "shortName": "Irkutsk SU: ICPC means Irkutsk Competitive Programming Community (Muratov, Mitrofanov, Grachev)", "groups": [], "hashTag": null, "medias": {}, @@ -2962,10 +2746,9 @@ "customFields": {} }, { - "id": 217, - "name": "YarSU: 23: AmateraSU (Yurgenson, Golubev, Korolev)", - "shortName": "YarSU: 23: AmateraSU (Yurgenson, Golubev, Korolev)", - "contestSystemId": "nef780309", + "id": "nef796438", + "name": "Irkutsk SU: 322 (Bonoev, Taglasov, Kravchenko)", + "shortName": "Irkutsk SU: 322 (Bonoev, Taglasov, Kravchenko)", "groups": [], "hashTag": null, "medias": {}, @@ -2975,10 +2758,9 @@ "customFields": {} }, { - "id": 218, - "name": "CFUV: Drei kameraden (Poznyak, Polev, Novikov)", - "shortName": "CFUV: Drei kameraden (Poznyak, Polev, Novikov)", - "contestSystemId": "nef788945", + "id": "nef796439", + "name": "Buryat SU: (INF)acts (Smolyov, Panteleev, Gorbacheva)", + "shortName": "Buryat SU: (INF)acts (Smolyov, Panteleev, Gorbacheva)", "groups": [], "hashTag": null, "medias": {}, @@ -2988,10 +2770,9 @@ "customFields": {} }, { - "id": 219, - "name": "Volgograd STU: H (Shchetinin, Mangushev, Zheleznyakov)", - "shortName": "Volgograd STU: H (Shchetinin, Mangushev, Zheleznyakov)", - "contestSystemId": "nef790439", + "id": "nef796440", + "name": "Irkutsk SU: Take it easy (Davydov, Bragin, Fedorov)", + "shortName": "Irkutsk SU: Take it easy (Davydov, Bragin, Fedorov)", "groups": [], "hashTag": null, "medias": {}, @@ -3001,10 +2782,9 @@ "customFields": {} }, { - "id": 220, - "name": "SPb SU of Telecom: BonchBotz.SUT (Mikhailov, Timoshkov, Ganichev)", - "shortName": "SPb SU of Telecom: BonchBotz.SUT (Mikhailov, Timoshkov, Ganichev)", - "contestSystemId": "nef780684", + "id": "nef796442", + "name": "SFU: div ++inf (Nazarov, Erakhtin, Borisenko)", + "shortName": "SFU: div ++inf (Nazarov, Erakhtin, Borisenko)", "groups": [], "hashTag": null, "medias": {}, @@ -3014,10 +2794,9 @@ "customFields": {} }, { - "id": 221, - "name": "Perm HSE: ALKgo! (Talan, Dolnykova, Belash)", - "shortName": "Perm HSE: ALKgo! (Talan, Dolnykova, Belash)", - "contestSystemId": "nef788067", + "id": "nef796543", + "name": "Buryat SU: 2: SYAS (Beloborodov, Oshorov, Dmitry)", + "shortName": "Buryat SU: 2: SYAS (Beloborodov, Oshorov, Dmitry)", "groups": [], "hashTag": null, "medias": {}, @@ -3027,10 +2806,9 @@ "customFields": {} }, { - "id": 222, - "name": "Kutaisi ATSU: 1 (Dgebuadze, Panchulidze, Jangveladze)", - "shortName": "Kutaisi ATSU: 1 (Dgebuadze, Panchulidze, Jangveladze)", - "contestSystemId": "nef799351", + "id": "nef796544", + "name": "Irkutsk SU: Gigachads (Popov, Chekhov, Armaev)", + "shortName": "Irkutsk SU: Gigachads (Popov, Chekhov, Armaev)", "groups": [], "hashTag": null, "medias": {}, @@ -3040,10 +2818,9 @@ "customFields": {} }, { - "id": 223, - "name": "Namangan SU: #1 (Muhammadiev, Toirxanov, Tursunov)", - "shortName": "Namangan SU: #1 (Muhammadiev, Toirxanov, Tursunov)", - "contestSystemId": "nef795870", + "id": "nef796545", + "name": "ISRU: BebraniumCoders (Belyaev, Gordeev, Donskoy)", + "shortName": "ISRU: BebraniumCoders (Belyaev, Gordeev, Donskoy)", "groups": [], "hashTag": null, "medias": {}, @@ -3053,10 +2830,9 @@ "customFields": {} }, { - "id": 224, - "name": "UCA: Tourists (Salihar, Ulanbek uulu, Sidikov)", - "shortName": "UCA: Tourists (Salihar, Ulanbek uulu, Sidikov)", - "contestSystemId": "nef772723", + "id": "nef796546", + "name": "Irkutsk SU: Amigos (Buchnev, Vyatkin, Nazimov)", + "shortName": "Irkutsk SU: Amigos (Buchnev, Vyatkin, Nazimov)", "groups": [], "hashTag": null, "medias": {}, @@ -3066,10 +2842,9 @@ "customFields": {} }, { - "id": 225, - "name": "Tomsk PU: 2 (Gan, Bukhalov, Kostenko)", - "shortName": "Tomsk PU: 2 (Gan, Bukhalov, Kostenko)", - "contestSystemId": "nef797094", + "id": "nef796547", + "name": "SFU: CHERVI (Solodnikov, Nosov, Strekalovskiy)", + "shortName": "SFU: CHERVI (Solodnikov, Nosov, Strekalovskiy)", "groups": [], "hashTag": null, "medias": {}, @@ -3079,10 +2854,9 @@ "customFields": {} }, { - "id": 226, - "name": "BelSUT: _1 (Manarkhovich, Ivanitski, Daroshchanka)", - "shortName": "BelSUT: _1 (Manarkhovich, Ivanitski, Daroshchanka)", - "contestSystemId": "nef788429", + "id": "nef796550", + "name": "ISRU: Glupoe nazvanie (Kupriyanov, Vedernikov, Novoselov)", + "shortName": "ISRU: Glupoe nazvanie (Kupriyanov, Vedernikov, Novoselov)", "groups": [], "hashTag": null, "medias": {}, @@ -3092,10 +2866,9 @@ "customFields": {} }, { - "id": 227, - "name": "Tbilisi SU: T1 (Kashibadze, Melikidze, Khorbaladze)", - "shortName": "Tbilisi SU: T1 (Kashibadze, Melikidze, Khorbaladze)", - "contestSystemId": "nef799347", + "id": "nef796555", + "name": "Khakas TI of SFU: 1 (Yarova, Nabirukhina, Shchetinina)", + "shortName": "Khakas TI of SFU: 1 (Yarova, Nabirukhina, Shchetinina)", "groups": [], "hashTag": null, "medias": {}, @@ -3105,10 +2878,9 @@ "customFields": {} }, { - "id": 228, - "name": "SFU: CHERVI (Solodnikov, Nosov, Strekalovskiy)", - "shortName": "SFU: CHERVI (Solodnikov, Nosov, Strekalovskiy)", - "contestSystemId": "nef796547", + "id": "nef796557", + "name": "Buryat SU: 3: OP2G (Nasanov, Шадрин, Ilin)", + "shortName": "Buryat SU: 3: OP2G (Nasanov, Шадрин, Ilin)", "groups": [], "hashTag": null, "medias": {}, @@ -3118,10 +2890,9 @@ "customFields": {} }, { - "id": 229, - "name": "Tbilisi CU: 1 (Svanidze, Khizanishvili, Tsiklauri)", - "shortName": "Tbilisi CU: 1 (Svanidze, Khizanishvili, Tsiklauri)", - "contestSystemId": "nef799350", + "id": "nef796574", + "name": "Novosibirsk SU: 1: Gena the crocodile (Plyusnin, Lylova, Mokrousov)", + "shortName": "Novosibirsk SU: 1: Gena the crocodile (Plyusnin, Lylova, Mokrousov)", "groups": [], "hashTag": null, "medias": {}, @@ -3131,10 +2902,9 @@ "customFields": {} }, { - "id": 230, - "name": "Altai STU: 1 (Shulpov, Shintyapin, Krasnikov)", - "shortName": "Altai STU: 1 (Shulpov, Shintyapin, Krasnikov)", - "contestSystemId": "nef797080", + "id": "nef796575", + "name": "Novosibirsk SU: 4: MathWay (Malinovskii, Fesenko, Goncharov)", + "shortName": "Novosibirsk SU: 4: MathWay (Malinovskii, Fesenko, Goncharov)", "groups": [], "hashTag": null, "medias": {}, @@ -3144,10 +2914,9 @@ "customFields": {} }, { - "id": 231, - "name": "Vladivostok SU: ADA (Plutitskiy, Ryndin, Kotkov)", - "shortName": "Vladivostok SU: ADA (Plutitskiy, Ryndin, Kotkov)", - "contestSystemId": "nef789946", + "id": "nef796576", + "name": "Novosibirsk SU: 12: The Colleagues (Khrapovitskii, Kyrgys, Morozov)", + "shortName": "Novosibirsk SU: 12: The Colleagues (Khrapovitskii, Kyrgys, Morozov)", "groups": [], "hashTag": null, "medias": {}, @@ -3157,10 +2926,9 @@ "customFields": {} }, { - "id": 232, - "name": "KazNU: 2 - SEN (Zhaksylyk, Tulepbergen, Kyrykbay)", - "shortName": "KazNU: 2 - SEN (Zhaksylyk, Tulepbergen, Kyrykbay)", - "contestSystemId": "nef780596", + "id": "nef796577", + "name": "Novosibirsk SU: 2: Ia-Ia (Lozhnikov, Maksakovsky, Vlasov)", + "shortName": "Novosibirsk SU: 2: Ia-Ia (Lozhnikov, Maksakovsky, Vlasov)", "groups": [], "hashTag": null, "medias": {}, @@ -3170,10 +2938,9 @@ "customFields": {} }, { - "id": 233, - "name": "Baku EU: 1 (Melikov, Orujov, Tarverdiyev)", - "shortName": "Baku EU: 1 (Melikov, Orujov, Tarverdiyev)", - "contestSystemId": "nef799368", + "id": "nef796578", + "name": "Novosibirsk SU: 5: Successful payment (Vladimirov, Bukhner, Kulakov)", + "shortName": "Novosibirsk SU: 5: Successful payment (Vladimirov, Bukhner, Kulakov)", "groups": [], "hashTag": null, "medias": {}, @@ -3183,10 +2950,9 @@ "customFields": {} }, { - "id": 234, - "name": "EUA: 1 (Madhav, Aro Chiraz, Katebi)", - "shortName": "EUA: 1 (Madhav, Aro Chiraz, Katebi)", - "contestSystemId": "nef790050", + "id": "nef797070", + "name": "Kazan FU: P (Akhmetov, Novozhilov, Gareyev)", + "shortName": "Kazan FU: P (Akhmetov, Novozhilov, Gareyev)", "groups": [], "hashTag": null, "medias": {}, @@ -3196,10 +2962,9 @@ "customFields": {} }, { - "id": 235, - "name": "AUCA: undefined (Rakhmatov, Atabekov, Yrysov)", - "shortName": "AUCA: undefined (Rakhmatov, Atabekov, Yrysov)", - "contestSystemId": "nef772715", + "id": "nef797071", + "name": "Innopolis: U J (Smirnov, Zimin, Korinenko)", + "shortName": "Innopolis: U J (Smirnov, Zimin, Korinenko)", "groups": [], "hashTag": null, "medias": {}, @@ -3209,10 +2974,9 @@ "customFields": {} }, { - "id": 236, - "name": "CFUV: -1 (Kozenko, Pasternak, Kurakov)", - "shortName": "CFUV: -1 (Kozenko, Pasternak, Kurakov)", - "contestSystemId": "nef789838", + "id": "nef797072", + "name": "NNSU: Almost Enqueued (Polozov, Kruglov, Sadikov)", + "shortName": "NNSU: Almost Enqueued (Polozov, Kruglov, Sadikov)", "groups": [], "hashTag": null, "medias": {}, @@ -3222,10 +2986,9 @@ "customFields": {} }, { - "id": 237, - "name": "Irkutsk SU: Amigos (Buchnev, Vyatkin, Nazimov)", - "shortName": "Irkutsk SU: Amigos (Buchnev, Vyatkin, Nazimov)", - "contestSystemId": "nef796546", + "id": "nef797075", + "name": "SibSUTI: 1 Neutral (Kashkarev, Solodkin, Boyarkin)", + "shortName": "SibSUTI: 1 Neutral (Kashkarev, Solodkin, Boyarkin)", "groups": [], "hashTag": null, "medias": {}, @@ -3235,10 +2998,9 @@ "customFields": {} }, { - "id": 238, - "name": "UCA: Outsiders (Yugay, Davlatmamadov, Bahodur)", - "shortName": "UCA: Outsiders (Yugay, Davlatmamadov, Bahodur)", - "contestSystemId": "nef772718", + "id": "nef797076", + "name": "Tomsk PU: 1 (Степанов, Kuzlyaev, Васин)", + "shortName": "Tomsk PU: 1 (Степанов, Kuzlyaev, Васин)", "groups": [], "hashTag": null, "medias": {}, @@ -3248,10 +3010,9 @@ "customFields": {} }, { - "id": 239, - "name": "ISRU: Glupoe nazvanie (Kupriyanov, Vedernikov, Novoselov)", - "shortName": "ISRU: Glupoe nazvanie (Kupriyanov, Vedernikov, Novoselov)", - "contestSystemId": "nef796550", + "id": "nef797077", + "name": "SibSUTI: 2 TRIPLE_A (Podkovyrov, Nikolaev, Dubrovin)", + "shortName": "SibSUTI: 2 TRIPLE_A (Podkovyrov, Nikolaev, Dubrovin)", "groups": [], "hashTag": null, "medias": {}, @@ -3261,10 +3022,9 @@ "customFields": {} }, { - "id": 240, - "name": "TulaSU: 2: Accepted_and_point (Perezyabov, Vasin, Fursov)", - "shortName": "TulaSU: 2: Accepted_and_point (Perezyabov, Vasin, Fursov)", - "contestSystemId": "nef780303", + "id": "nef797079", + "name": "Omsk SU: 3 (Moiseev, Mingazov, Silaev)", + "shortName": "Omsk SU: 3 (Moiseev, Mingazov, Silaev)", "groups": [], "hashTag": null, "medias": {}, @@ -3274,10 +3034,9 @@ "customFields": {} }, { - "id": 241, - "name": "Perm SNRU: busy beavers (Dyshlevsky, Sherstobitov, Kalayda)", - "shortName": "Perm SNRU: busy beavers (Dyshlevsky, Sherstobitov, Kalayda)", - "contestSystemId": "nef790434", + "id": "nef797080", + "name": "Altai STU: 1 (Shulpov, Shintyapin, Krasnikov)", + "shortName": "Altai STU: 1 (Shulpov, Shintyapin, Krasnikov)", "groups": [], "hashTag": null, "medias": {}, @@ -3287,10 +3046,9 @@ "customFields": {} }, { - "id": 242, - "name": "UCA: Preps (Alikbaev, Shonabiev, Asanaliev)", - "shortName": "UCA: Preps (Alikbaev, Shonabiev, Asanaliev)", - "contestSystemId": "nef772722", + "id": "nef797081", + "name": "Omsk SU: 1 (Gusev, Manuilov, Kramskoy)", + "shortName": "Omsk SU: 1 (Gusev, Manuilov, Kramskoy)", "groups": [], "hashTag": null, "medias": {}, @@ -3300,10 +3058,9 @@ "customFields": {} }, { - "id": 243, - "name": "Omsk SU: 2 (Teslov, Ruzanova, Bugaev)", - "shortName": "Omsk SU: 2 (Teslov, Ruzanova, Bugaev)", - "contestSystemId": "nef797084", + "id": "nef797082", + "name": "NSTU: 5 (Averyanov, Kulizhnikov, Lobastov)", + "shortName": "NSTU: 5 (Averyanov, Kulizhnikov, Lobastov)", "groups": [], "hashTag": null, "medias": {}, @@ -3313,10 +3070,9 @@ "customFields": {} }, { - "id": 244, - "name": "NSTU: 12 (Eremeeva, Kirichenko, Golekbarova)", - "shortName": "NSTU: 12 (Eremeeva, Kirichenko, Golekbarova)", - "contestSystemId": "nef797093", + "id": "nef797083", + "name": "SibSUTI: 6 hodgepodge (Lugovaya, Mal'cev, Koynov)", + "shortName": "SibSUTI: 6 hodgepodge (Lugovaya, Mal'cev, Koynov)", "groups": [], "hashTag": null, "medias": {}, @@ -3326,10 +3082,9 @@ "customFields": {} }, { - "id": 245, - "name": "AzSUE-UNEC: _1 (Abasov, Novruzlu, Axundzade)", - "shortName": "AzSUE-UNEC: _1 (Abasov, Novruzlu, Axundzade)", - "contestSystemId": "nef799364", + "id": "nef797084", + "name": "Omsk SU: 2 (Teslov, Ruzanova, Bugaev)", + "shortName": "Omsk SU: 2 (Teslov, Ruzanova, Bugaev)", "groups": [], "hashTag": null, "medias": {}, @@ -3339,10 +3094,9 @@ "customFields": {} }, { - "id": 246, - "name": "Tbilisi CU: 2 (Berishvili, Tkhilaishvili, Esakia)", - "shortName": "Tbilisi CU: 2 (Berishvili, Tkhilaishvili, Esakia)", - "contestSystemId": "nef799354", + "id": "nef797086", + "name": "NSTU: 4 (Semyonov, Kolpakov, Pleskach)", + "shortName": "NSTU: 4 (Semyonov, Kolpakov, Pleskach)", "groups": [], "hashTag": null, "medias": {}, @@ -3352,10 +3106,9 @@ "customFields": {} }, { - "id": 247, - "name": "Buryat SU: 3: OP2G (Nasanov, Шадрин, Ilin)", - "shortName": "Buryat SU: 3: OP2G (Nasanov, Шадрин, Ilin)", - "contestSystemId": "nef796557", + "id": "nef797087", + "name": "Altai STU: 4 (Tagaev, Silyanov, Medvedev)", + "shortName": "Altai STU: 4 (Tagaev, Silyanov, Medvedev)", "groups": [], "hashTag": null, "medias": {}, @@ -3365,10 +3118,9 @@ "customFields": {} }, { - "id": 248, - "name": "Kutaisi ATSU: 2 (Bubashvili, Chakvetadze, jinjikhadze)", - "shortName": "Kutaisi ATSU: 2 (Bubashvili, Chakvetadze, jinjikhadze)", - "contestSystemId": "nef799355", + "id": "nef797089", + "name": "NSTU: 6-FPMI (Afonin, Zatyazhchuk, Isakin)", + "shortName": "NSTU: 6-FPMI (Afonin, Zatyazhchuk, Isakin)", "groups": [], "hashTag": null, "medias": {}, @@ -3378,10 +3130,9 @@ "customFields": {} }, { - "id": 249, - "name": "SamTUIT: Vertow (Murodullaev, Narzullayev, Narzullayev)", - "shortName": "SamTUIT: Vertow (Murodullaev, Narzullayev, Narzullayev)", - "contestSystemId": "nef795866", + "id": "nef797090", + "name": "Altai STU: 3 (Vorobyev, Timonin, Brazhnikov)", + "shortName": "Altai STU: 3 (Vorobyev, Timonin, Brazhnikov)", "groups": [], "hashTag": null, "medias": {}, @@ -3391,10 +3142,9 @@ "customFields": {} }, { - "id": 250, - "name": "North-Eastern FU: ultramarines (Kulichkina, Zakharov, Semenov)", - "shortName": "North-Eastern FU: ultramarines (Kulichkina, Zakharov, Semenov)", - "contestSystemId": "nef789941", + "id": "nef797093", + "name": "NSTU: 12 (Eremeeva, Kirichenko, Golekbarova)", + "shortName": "NSTU: 12 (Eremeeva, Kirichenko, Golekbarova)", "groups": [], "hashTag": null, "medias": {}, @@ -3404,10 +3154,9 @@ "customFields": {} }, { - "id": 251, - "name": "Goris SU: We and Our Mountains (Aghabekyan, Arakelyan, Martirosyan)", - "shortName": "Goris SU: We and Our Mountains (Aghabekyan, Arakelyan, Martirosyan)", - "contestSystemId": "nef790047", + "id": "nef797094", + "name": "Tomsk PU: 2 (Gan, Bukhalov, Kostenko)", + "shortName": "Tomsk PU: 2 (Gan, Bukhalov, Kostenko)", "groups": [], "hashTag": null, "medias": {}, @@ -3417,10 +3166,9 @@ "customFields": {} }, { - "id": 252, - "name": "Baku SU: 1 (Aliyev, Zeynalov, Sadigov)", - "shortName": "Baku SU: 1 (Aliyev, Zeynalov, Sadigov)", - "contestSystemId": "nef799373", + "id": "nef799340", + "name": "Tbilisi Freeuni: 1 (Khvedelidze, Tsimakuridze, Kobakhia)", + "shortName": "Tbilisi Freeuni: 1 (Khvedelidze, Tsimakuridze, Kobakhia)", "groups": [], "hashTag": null, "medias": {}, @@ -3430,10 +3178,9 @@ "customFields": {} }, { - "id": 253, - "name": "Kyrgyz-Turkey Manas U: 5 (Ulanbek uulu, Mamatazimov, Tilekmatov)", - "shortName": "Kyrgyz-Turkey Manas U: 5 (Ulanbek uulu, Mamatazimov, Tilekmatov)", - "contestSystemId": "nef772717", + "id": "nef799341", + "name": "Kutaisi IU: WeShowSpeed (Tamliani, Kvinikadze, Oniani)", + "shortName": "Kutaisi IU: WeShowSpeed (Tamliani, Kvinikadze, Oniani)", "groups": [], "hashTag": null, "medias": {}, @@ -3443,10 +3190,9 @@ "customFields": {} }, { - "id": 254, - "name": "UCA: Hooks (Abdyrashitov, Urmatbekov, Karimov)", - "shortName": "UCA: Hooks (Abdyrashitov, Urmatbekov, Karimov)", - "contestSystemId": "nef772720", + "id": "nef799342", + "name": "Tbilisi Freeuni: 3 (Glunchadze, Khutsishvili, Gelashvili)", + "shortName": "Tbilisi Freeuni: 3 (Glunchadze, Khutsishvili, Gelashvili)", "groups": [], "hashTag": null, "medias": {}, @@ -3456,10 +3202,9 @@ "customFields": {} }, { - "id": 255, - "name": "NSTU: 4 (Semyonov, Kolpakov, Pleskach)", - "shortName": "NSTU: 4 (Semyonov, Kolpakov, Pleskach)", - "contestSystemId": "nef797086", + "id": "nef799343", + "name": "Tbilisi Freeuni: 13 (Paichadze, Kldiashvili, Megrelidze)", + "shortName": "Tbilisi Freeuni: 13 (Paichadze, Kldiashvili, Megrelidze)", "groups": [], "hashTag": null, "medias": {}, @@ -3469,10 +3214,9 @@ "customFields": {} }, { - "id": 256, - "name": "BukhSU: _1 (Muxtorov, Qayimov, Akramov)", - "shortName": "BukhSU: _1 (Muxtorov, Qayimov, Akramov)", - "contestSystemId": "nef795867", + "id": "nef799344", + "name": "Tbilisi Freeuni: 6 (Karaputadze, Tsotniashvili, Khukhua)", + "shortName": "Tbilisi Freeuni: 6 (Karaputadze, Tsotniashvili, Khukhua)", "groups": [], "hashTag": null, "medias": {}, @@ -3482,10 +3226,9 @@ "customFields": {} }, { - "id": 257, - "name": "NSTU: 5 (Averyanov, Kulizhnikov, Lobastov)", - "shortName": "NSTU: 5 (Averyanov, Kulizhnikov, Lobastov)", - "contestSystemId": "nef797082", + "id": "nef799345", + "name": "Tbilisi Freeuni: 12 (Pkhaladze, Managadze, Zhorzholiani)", + "shortName": "Tbilisi Freeuni: 12 (Pkhaladze, Managadze, Zhorzholiani)", "groups": [], "hashTag": null, "medias": {}, @@ -3495,10 +3238,9 @@ "customFields": {} }, { - "id": 258, - "name": "Buryat SU: 2: SYAS (Beloborodov, Oshorov, Dmitry)", - "shortName": "Buryat SU: 2: SYAS (Beloborodov, Oshorov, Dmitry)", - "contestSystemId": "nef796543", + "id": "nef799346", + "name": "Kutaisi IU: Gurkotas Lekvebi (Nadareishvili, Khantadze, Khomasuridze)", + "shortName": "Kutaisi IU: Gurkotas Lekvebi (Nadareishvili, Khantadze, Khomasuridze)", "groups": [], "hashTag": null, "medias": {}, @@ -3508,10 +3250,9 @@ "customFields": {} }, { - "id": 259, - "name": "Batumi SU: 1 (Kartsivadze, Makharadze, Kunchulia)", - "shortName": "Batumi SU: 1 (Kartsivadze, Makharadze, Kunchulia)", - "contestSystemId": "nef799356", + "id": "nef799347", + "name": "Tbilisi SU: T1 (Kashibadze, Melikidze, Khorbaladze)", + "shortName": "Tbilisi SU: T1 (Kashibadze, Melikidze, Khorbaladze)", "groups": [], "hashTag": null, "medias": {}, @@ -3521,10 +3262,9 @@ "customFields": {} }, { - "id": 260, - "name": "Omsk SU: 1 (Gusev, Manuilov, Kramskoy)", - "shortName": "Omsk SU: 1 (Gusev, Manuilov, Kramskoy)", - "contestSystemId": "nef797081", + "id": "nef799348", + "name": "Tbilisi SU: T2 (Gumberidze, Jibuti, Beriashvili)", + "shortName": "Tbilisi SU: T2 (Gumberidze, Jibuti, Beriashvili)", "groups": [], "hashTag": null, "medias": {}, @@ -3534,10 +3274,9 @@ "customFields": {} }, { - "id": 261, - "name": "IBSU: Tbilisi 3 (Tchabukiani, Kiknavelidze, Rakviashvili)", - "shortName": "IBSU: Tbilisi 3 (Tchabukiani, Kiknavelidze, Rakviashvili)", - "contestSystemId": "nef799352", + "id": "nef799349", + "name": "Kutaisi IU: Tamliani (Rusishvili, Kikvadze, Tabatadze)", + "shortName": "Kutaisi IU: Tamliani (Rusishvili, Kikvadze, Tabatadze)", "groups": [], "hashTag": null, "medias": {}, @@ -3547,10 +3286,9 @@ "customFields": {} }, { - "id": 262, - "name": "SamSU: DREAM TEAM (Saidqulov, Shoyim, Sindarov)", - "shortName": "SamSU: DREAM TEAM (Saidqulov, Shoyim, Sindarov)", - "contestSystemId": "nef795872", + "id": "nef799350", + "name": "Tbilisi CU: 1 (Svanidze, Khizanishvili, Tsiklauri)", + "shortName": "Tbilisi CU: 1 (Svanidze, Khizanishvili, Tsiklauri)", "groups": [], "hashTag": null, "medias": {}, @@ -3560,10 +3298,9 @@ "customFields": {} }, { - "id": 263, - "name": "KyrgyzTU: 2 (Asanov, Zakirov, Altynbekova)", - "shortName": "KyrgyzTU: 2 (Asanov, Zakirov, Altynbekova)", - "contestSystemId": "nef772713", + "id": "nef799351", + "name": "Kutaisi ATSU: 1 (Dgebuadze, Panchulidze, Jangveladze)", + "shortName": "Kutaisi ATSU: 1 (Dgebuadze, Panchulidze, Jangveladze)", "groups": [], "hashTag": null, "medias": {}, @@ -3573,10 +3310,9 @@ "customFields": {} }, { - "id": 264, - "name": "MSU Tashkent: Ace (Sobirov, Askarkhujaev, Babaev)", - "shortName": "MSU Tashkent: Ace (Sobirov, Askarkhujaev, Babaev)", - "contestSystemId": "nef795865", + "id": "nef799352", + "name": "IBSU: Tbilisi 3 (Tchabukiani, Kiknavelidze, Rakviashvili)", + "shortName": "IBSU: Tbilisi 3 (Tchabukiani, Kiknavelidze, Rakviashvili)", "groups": [], "hashTag": null, "medias": {}, @@ -3586,10 +3322,9 @@ "customFields": {} }, { - "id": 265, - "name": "KazNU: 3 - DAD (Toxanbayev, Duisenov, Alpamys)", - "shortName": "KazNU: 3 - DAD (Toxanbayev, Duisenov, Alpamys)", - "contestSystemId": "nef780600", + "id": "nef799353", + "name": "Kutaisi IU: FarosanSlayer (Nadaraia, Koghuashvili, Turmanidze)", + "shortName": "Kutaisi IU: FarosanSlayer (Nadaraia, Koghuashvili, Turmanidze)", "groups": [], "hashTag": null, "medias": {}, @@ -3599,10 +3334,9 @@ "customFields": {} }, { - "id": 266, - "name": "Altai STU: 4 (Tagaev, Silyanov, Medvedev)", - "shortName": "Altai STU: 4 (Tagaev, Silyanov, Medvedev)", - "contestSystemId": "nef797087", + "id": "nef799354", + "name": "Tbilisi CU: 2 (Berishvili, Tkhilaishvili, Esakia)", + "shortName": "Tbilisi CU: 2 (Berishvili, Tkhilaishvili, Esakia)", "groups": [], "hashTag": null, "medias": {}, @@ -3612,10 +3346,9 @@ "customFields": {} }, { - "id": 267, - "name": "IIAU: TEAM SEVEN (Juraboyev, Habibov, Muhsinov)", - "shortName": "IIAU: TEAM SEVEN (Juraboyev, Habibov, Muhsinov)", - "contestSystemId": "nef795864", + "id": "nef799355", + "name": "Kutaisi ATSU: 2 (Bubashvili, Chakvetadze, jinjikhadze)", + "shortName": "Kutaisi ATSU: 2 (Bubashvili, Chakvetadze, jinjikhadze)", "groups": [], "hashTag": null, "medias": {}, @@ -3625,10 +3358,9 @@ "customFields": {} }, { - "id": 268, - "name": "JBNUU: 1 (Nizometdinov, Ayxanov, Gofurova)", - "shortName": "JBNUU: 1 (Nizometdinov, Ayxanov, Gofurova)", - "contestSystemId": "nef795869", + "id": "nef799356", + "name": "Batumi SU: 1 (Kartsivadze, Makharadze, Kunchulia)", + "shortName": "Batumi SU: 1 (Kartsivadze, Makharadze, Kunchulia)", "groups": [], "hashTag": null, "medias": {}, @@ -3638,10 +3370,9 @@ "customFields": {} }, { - "id": 269, - "name": "AIPET: -3 (Erasyl, Pak, Ruslan)", - "shortName": "AIPET: -3 (Erasyl, Pak, Ruslan)", - "contestSystemId": "nef780598", + "id": "nef799357", + "name": "Baku HOS: 1 (Gasimzade, Isayev, Orujov)", + "shortName": "Baku HOS: 1 (Gasimzade, Isayev, Orujov)", "groups": [], "hashTag": null, "medias": {}, @@ -3651,10 +3382,9 @@ "customFields": {} }, { - "id": 270, - "name": "UCA: ATWOT (Orozova, Isaev, Momukeev)", - "shortName": "UCA: ATWOT (Orozova, Isaev, Momukeev)", - "contestSystemId": "nef772716", + "id": "nef799358", + "name": "ADA: U 1 (Inochkin, Kachabekov, Taghizade)", + "shortName": "ADA: U 1 (Inochkin, Kachabekov, Taghizade)", "groups": [], "hashTag": null, "medias": {}, @@ -3664,10 +3394,9 @@ "customFields": {} }, { - "id": 271, - "name": "AUCA: MicroHumans (Malikov, Adanbaev, Dzhumaev)", - "shortName": "AUCA: MicroHumans (Malikov, Adanbaev, Dzhumaev)", - "contestSystemId": "nef772719", + "id": "nef799360", + "name": "ADA: U 2 (Hajiyev, Kazimov, Mammadli)", + "shortName": "ADA: U 2 (Hajiyev, Kazimov, Mammadli)", "groups": [], "hashTag": null, "medias": {}, @@ -3677,10 +3406,9 @@ "customFields": {} }, { - "id": 272, - "name": "* AIPET: -200 (Aibek, Abay)", - "shortName": "* AIPET: -200 (Aibek, Abay)", - "contestSystemId": "nef780601", + "id": "nef799361", + "name": "ADA: U 3 (Asadzade, Nabiyev, Huseynli)", + "shortName": "ADA: U 3 (Asadzade, Nabiyev, Huseynli)", "groups": [], "hashTag": null, "medias": {}, @@ -3690,10 +3418,9 @@ "customFields": {} }, { - "id": 273, - "name": "Pacific NU: Compilation failed (Gordeeva, Podtergera, Matveev)", - "shortName": "Pacific NU: Compilation failed (Gordeeva, Podtergera, Matveev)", - "contestSystemId": "nef789945", + "id": "nef799363", + "name": "UFAZ: 1 (Aliyev, Jabrayilov, Azimov)", + "shortName": "UFAZ: 1 (Aliyev, Jabrayilov, Azimov)", "groups": [], "hashTag": null, "medias": {}, @@ -3703,10 +3430,9 @@ "customFields": {} }, { - "id": 274, - "name": "RAU: 4 (Mkrtumyan, Tovmasyan, Zohrabyan)", - "shortName": "RAU: 4 (Mkrtumyan, Tovmasyan, Zohrabyan)", - "contestSystemId": "nef790046", + "id": "nef799364", + "name": "AzSUE-UNEC: _1 (Abasov, Novruzlu, Axundzade)", + "shortName": "AzSUE-UNEC: _1 (Abasov, Novruzlu, Axundzade)", "groups": [], "hashTag": null, "medias": {}, @@ -3716,10 +3442,9 @@ "customFields": {} }, { - "id": 275, - "name": "Goris SU: NoPolitic++s (Kocharyan, Pashayan, Arakelyan)", - "shortName": "Goris SU: NoPolitic++s (Kocharyan, Pashayan, Arakelyan)", - "contestSystemId": "nef790048", + "id": "nef799365", + "name": "UFAZ: 3 (Azizov, Mammadov, Ahmadov)", + "shortName": "UFAZ: 3 (Azizov, Mammadov, Ahmadov)", "groups": [], "hashTag": null, "medias": {}, @@ -3729,10 +3454,9 @@ "customFields": {} }, { - "id": 276, - "name": "TUIT Urgench Branch: #2 (Bekjanov, Abdirimov, Anvarova)", - "shortName": "TUIT Urgench Branch: #2 (Bekjanov, Abdirimov, Anvarova)", - "contestSystemId": "nef795871", + "id": "nef799366", + "name": "ADA: U 5 (Tahmazov, Huseynzada, Aghayev)", + "shortName": "ADA: U 5 (Tahmazov, Huseynzada, Aghayev)", "groups": [], "hashTag": null, "medias": {}, @@ -3742,10 +3466,9 @@ "customFields": {} }, { - "id": 277, - "name": "Khakas TI of SFU: 1 (Yarova, Nabirukhina, Shchetinina)", - "shortName": "Khakas TI of SFU: 1 (Yarova, Nabirukhina, Shchetinina)", - "contestSystemId": "nef796555", + "id": "nef799368", + "name": "Baku EU: 1 (Melikov, Orujov, Tarverdiyev)", + "shortName": "Baku EU: 1 (Melikov, Orujov, Tarverdiyev)", "groups": [], "hashTag": null, "medias": {}, @@ -3755,10 +3478,9 @@ "customFields": {} }, { - "id": 278, - "name": "Altai STU: 3 (Vorobyev, Timonin, Brazhnikov)", - "shortName": "Altai STU: 3 (Vorobyev, Timonin, Brazhnikov)", - "contestSystemId": "nef797090", + "id": "nef799369", + "name": "ASOIU: 1 (Mammadli, Haciyev, Masmaliyev)", + "shortName": "ASOIU: 1 (Mammadli, Haciyev, Masmaliyev)", "groups": [], "hashTag": null, "medias": {}, @@ -3768,10 +3490,9 @@ "customFields": {} }, { - "id": 279, - "name": "UFAZ: 3 (Azizov, Mammadov, Ahmadov)", - "shortName": "UFAZ: 3 (Azizov, Mammadov, Ahmadov)", - "contestSystemId": "nef799365", + "id": "nef799372", + "name": "AzTU: SABAH 17 (Bayramaliev, Binataliyev, Gadashev)", + "shortName": "AzTU: SABAH 17 (Bayramaliev, Binataliyev, Gadashev)", "groups": [], "hashTag": null, "medias": {}, @@ -3781,10 +3502,9 @@ "customFields": {} }, { - "id": 280, - "name": "ASOIU: 1 (Mammadli, Haciyev, Masmaliyev)", - "shortName": "ASOIU: 1 (Mammadli, Haciyev, Masmaliyev)", - "contestSystemId": "nef799369", + "id": "nef799373", + "name": "Baku SU: 1 (Aliyev, Zeynalov, Sadigov)", + "shortName": "Baku SU: 1 (Aliyev, Zeynalov, Sadigov)", "groups": [], "hashTag": null, "medias": {}, @@ -3794,10 +3514,9 @@ "customFields": {} }, { - "id": 281, - "name": "AzTU: SABAH 17 (Bayramaliev, Binataliyev, Gadashev)", - "shortName": "AzTU: SABAH 17 (Bayramaliev, Binataliyev, Gadashev)", - "contestSystemId": "nef799372", + "id": "nef799571", + "name": "Baku HOS: 7 (Maharramli, Isgandarov, Aliyev)", + "shortName": "Baku HOS: 7 (Maharramli, Isgandarov, Aliyev)", "groups": [], "hashTag": null, "medias": {}, @@ -3828,7 +3547,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 2, + "teamId": "nef788318", "time": 304138, "featuredRunMedia": null, "reactionVideos": [], @@ -3846,7 +3565,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 66, + "teamId": "nef780671", "time": 418853, "featuredRunMedia": null, "reactionVideos": [], @@ -3864,7 +3583,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 61, + "teamId": "nef790068", "time": 425021, "featuredRunMedia": null, "reactionVideos": [], @@ -3882,7 +3601,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "nef788321", "time": 482699, "featuredRunMedia": null, "reactionVideos": [], @@ -3900,7 +3619,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 64, + "teamId": "nef788352", "time": 526052, "featuredRunMedia": null, "reactionVideos": [], @@ -3918,7 +3637,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 107, + "teamId": "nef788428", "time": 534450, "featuredRunMedia": null, "reactionVideos": [], @@ -3936,7 +3655,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 31, + "teamId": "nef790067", "time": 541429, "featuredRunMedia": null, "reactionVideos": [], @@ -3954,7 +3673,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 25, + "teamId": "nef780669", "time": 569574, "featuredRunMedia": null, "reactionVideos": [], @@ -3972,7 +3691,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "nef780668", "time": 626533, "featuredRunMedia": null, "reactionVideos": [], @@ -3990,7 +3709,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 5, + "teamId": "nef780665", "time": 629954, "featuredRunMedia": null, "reactionVideos": [], @@ -4008,7 +3727,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 32, + "teamId": "nef788335", "time": 632066, "featuredRunMedia": null, "reactionVideos": [], @@ -4026,7 +3745,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 107, + "teamId": "nef788428", "time": 639057, "featuredRunMedia": null, "reactionVideos": [], @@ -4044,7 +3763,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 6, + "teamId": "nef788319", "time": 640944, "featuredRunMedia": null, "reactionVideos": [], @@ -4062,7 +3781,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "nef788324", "time": 646018, "featuredRunMedia": null, "reactionVideos": [], @@ -4080,7 +3799,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 61, + "teamId": "nef790068", "time": 648066, "featuredRunMedia": null, "reactionVideos": [], @@ -4098,7 +3817,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 7, + "teamId": "nef788325", "time": 664383, "featuredRunMedia": null, "reactionVideos": [], @@ -4116,7 +3835,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 4, + "teamId": "nef788418", "time": 667680, "featuredRunMedia": null, "reactionVideos": [], @@ -4134,7 +3853,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 27, + "teamId": "nef788419", "time": 668589, "featuredRunMedia": null, "reactionVideos": [], @@ -4152,7 +3871,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 33, + "teamId": "nef780544", "time": 668925, "featuredRunMedia": null, "reactionVideos": [], @@ -4170,7 +3889,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 195, + "teamId": "nef799363", "time": 674924, "featuredRunMedia": null, "reactionVideos": [], @@ -4188,7 +3907,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 161, + "teamId": "nef780678", "time": 721136, "featuredRunMedia": null, "reactionVideos": [], @@ -4206,7 +3925,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 61, + "teamId": "nef790068", "time": 728229, "featuredRunMedia": null, "reactionVideos": [], @@ -4224,7 +3943,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 85, + "teamId": "nef797071", "time": 740400, "featuredRunMedia": null, "reactionVideos": [], @@ -4242,7 +3961,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 11, + "teamId": "nef788328", "time": 780361, "featuredRunMedia": null, "reactionVideos": [], @@ -4260,7 +3979,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 85, + "teamId": "nef797071", "time": 785805, "featuredRunMedia": null, "reactionVideos": [], @@ -4278,7 +3997,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 61, + "teamId": "nef790068", "time": 788650, "featuredRunMedia": null, "reactionVideos": [], @@ -4296,7 +4015,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 90, + "teamId": "nef780543", "time": 805990, "featuredRunMedia": null, "reactionVideos": [], @@ -4314,7 +4033,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 91, + "teamId": "nef788061", "time": 809411, "featuredRunMedia": null, "reactionVideos": [], @@ -4332,7 +4051,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "nef780668", "time": 813519, "featuredRunMedia": null, "reactionVideos": [], @@ -4350,7 +4069,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 60, + "teamId": "nef797072", "time": 814482, "featuredRunMedia": null, "reactionVideos": [], @@ -4368,7 +4087,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 131, + "teamId": "nef788432", "time": 816731, "featuredRunMedia": null, "reactionVideos": [], @@ -4386,7 +4105,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 121, + "teamId": "nef788336", "time": 820429, "featuredRunMedia": null, "reactionVideos": [], @@ -4404,7 +4123,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 829864, "featuredRunMedia": null, "reactionVideos": [], @@ -4422,7 +4141,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 106, + "teamId": "nef780539", "time": 832530, "featuredRunMedia": null, "reactionVideos": [], @@ -4440,7 +4159,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 27, + "teamId": "nef788419", "time": 836161, "featuredRunMedia": null, "reactionVideos": [], @@ -4458,7 +4177,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 66, + "teamId": "nef780671", "time": 843183, "featuredRunMedia": null, "reactionVideos": [], @@ -4476,7 +4195,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 136, + "teamId": "nef790041", "time": 843246, "featuredRunMedia": null, "reactionVideos": [], @@ -4494,7 +4213,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 72, + "teamId": "nef790102", "time": 851603, "featuredRunMedia": null, "reactionVideos": [], @@ -4512,7 +4231,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 60, + "teamId": "nef797072", "time": 855510, "featuredRunMedia": null, "reactionVideos": [], @@ -4530,7 +4249,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 23, + "teamId": "nef780541", "time": 859439, "featuredRunMedia": null, "reactionVideos": [], @@ -4548,7 +4267,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 78, + "teamId": "nef797079", "time": 863294, "featuredRunMedia": null, "reactionVideos": [], @@ -4566,7 +4285,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 21, + "teamId": "nef790436", "time": 864008, "featuredRunMedia": null, "reactionVideos": [], @@ -4584,7 +4303,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 57, + "teamId": "nef796576", "time": 874612, "featuredRunMedia": null, "reactionVideos": [], @@ -4602,7 +4321,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 63, + "teamId": "nef788029", "time": 874832, "featuredRunMedia": null, "reactionVideos": [], @@ -4620,7 +4339,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "nef788318", "time": 875979, "featuredRunMedia": null, "reactionVideos": [], @@ -4638,7 +4357,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 85, + "teamId": "nef797071", "time": 892100, "featuredRunMedia": null, "reactionVideos": [], @@ -4656,7 +4375,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 58, + "teamId": "nef790432", "time": 926212, "featuredRunMedia": null, "reactionVideos": [], @@ -4674,7 +4393,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 33, + "teamId": "nef780544", "time": 932384, "featuredRunMedia": null, "reactionVideos": [], @@ -4692,7 +4411,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 125, + "teamId": "nef790074", "time": 933296, "featuredRunMedia": null, "reactionVideos": [], @@ -4710,7 +4429,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 98, + "teamId": "nef788330", "time": 936881, "featuredRunMedia": null, "reactionVideos": [], @@ -4728,7 +4447,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 136, + "teamId": "nef790041", "time": 940914, "featuredRunMedia": null, "reactionVideos": [], @@ -4746,7 +4465,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 79, + "teamId": "nef788347", "time": 950197, "featuredRunMedia": null, "reactionVideos": [], @@ -4764,7 +4483,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "nef788327", "time": 951594, "featuredRunMedia": null, "reactionVideos": [], @@ -4782,7 +4501,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 15, + "teamId": "nef780675", "time": 954715, "featuredRunMedia": null, "reactionVideos": [], @@ -4800,7 +4519,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "nef780665", "time": 957665, "featuredRunMedia": null, "reactionVideos": [], @@ -4818,7 +4537,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 959150, "featuredRunMedia": null, "reactionVideos": [], @@ -4836,7 +4555,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 192, + "teamId": "nef780302", "time": 960167, "featuredRunMedia": null, "reactionVideos": [], @@ -4854,7 +4573,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 10, + "teamId": "nef780666", "time": 961736, "featuredRunMedia": null, "reactionVideos": [], @@ -4872,7 +4591,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 106, + "teamId": "nef780539", "time": 964605, "featuredRunMedia": null, "reactionVideos": [], @@ -4890,7 +4609,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 9, + "teamId": "nef788320", "time": 965228, "featuredRunMedia": null, "reactionVideos": [], @@ -4908,7 +4627,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 276, + "teamId": "nef795871", "time": 972415, "featuredRunMedia": null, "reactionVideos": [], @@ -4926,7 +4645,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 66, + "teamId": "nef780671", "time": 976276, "featuredRunMedia": null, "reactionVideos": [], @@ -4944,7 +4663,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 222, + "teamId": "nef799351", "time": 977331, "featuredRunMedia": null, "reactionVideos": [], @@ -4962,7 +4681,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 28, + "teamId": "nef788329", "time": 982895, "featuredRunMedia": null, "reactionVideos": [], @@ -4980,7 +4699,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 57, + "teamId": "nef796576", "time": 983611, "featuredRunMedia": null, "reactionVideos": [], @@ -4998,7 +4717,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 16, + "teamId": "nef788424", "time": 984713, "featuredRunMedia": null, "reactionVideos": [], @@ -5016,7 +4735,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 60, + "teamId": "nef797072", "time": 993676, "featuredRunMedia": null, "reactionVideos": [], @@ -5034,7 +4753,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 994643, "featuredRunMedia": null, "reactionVideos": [], @@ -5052,7 +4771,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 127, + "teamId": "nef799360", "time": 999906, "featuredRunMedia": null, "reactionVideos": [], @@ -5070,7 +4789,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 222, + "teamId": "nef799351", "time": 1008497, "featuredRunMedia": null, "reactionVideos": [], @@ -5088,7 +4807,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 71, + "teamId": "nef795855", "time": 1022608, "featuredRunMedia": null, "reactionVideos": [], @@ -5106,7 +4825,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 53, + "teamId": "nef788341", "time": 1024904, "featuredRunMedia": null, "reactionVideos": [], @@ -5124,7 +4843,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 200, + "teamId": "nef799344", "time": 1026568, "featuredRunMedia": null, "reactionVideos": [], @@ -5142,7 +4861,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 34, + "teamId": "nef788331", "time": 1029629, "featuredRunMedia": null, "reactionVideos": [], @@ -5160,7 +4879,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 21, + "teamId": "nef790436", "time": 1031934, "featuredRunMedia": null, "reactionVideos": [], @@ -5178,7 +4897,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 59, + "teamId": "nef780307", "time": 1037909, "featuredRunMedia": null, "reactionVideos": [], @@ -5196,7 +4915,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 49, + "teamId": "nef780673", "time": 1038082, "featuredRunMedia": null, "reactionVideos": [], @@ -5214,7 +4933,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 94, + "teamId": "nef772709", "time": 1039968, "featuredRunMedia": null, "reactionVideos": [], @@ -5232,7 +4951,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 41, + "teamId": "nef796574", "time": 1054913, "featuredRunMedia": null, "reactionVideos": [], @@ -5250,7 +4969,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "nef788418", "time": 1062557, "featuredRunMedia": null, "reactionVideos": [], @@ -5268,7 +4987,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 45, + "teamId": "nef788030", "time": 1072733, "featuredRunMedia": null, "reactionVideos": [], @@ -5286,7 +5005,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 135, + "teamId": "nef780679", "time": 1083682, "featuredRunMedia": null, "reactionVideos": [], @@ -5304,7 +5023,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 65, + "teamId": "nef790104", "time": 1084882, "featuredRunMedia": null, "reactionVideos": [], @@ -5322,7 +5041,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 1097317, "featuredRunMedia": null, "reactionVideos": [], @@ -5340,7 +5059,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 262, + "teamId": "nef795872", "time": 1110778, "featuredRunMedia": null, "reactionVideos": [], @@ -5358,7 +5077,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 26, + "teamId": "nef788425", "time": 1120158, "featuredRunMedia": null, "reactionVideos": [], @@ -5376,7 +5095,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 92, + "teamId": "nef780672", "time": 1121767, "featuredRunMedia": null, "reactionVideos": [], @@ -5394,7 +5113,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 1125518, "featuredRunMedia": null, "reactionVideos": [], @@ -5412,7 +5131,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 147, + "teamId": "nef799361", "time": 1131288, "featuredRunMedia": null, "reactionVideos": [], @@ -5430,7 +5149,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 22, + "teamId": "nef788420", "time": 1141172, "featuredRunMedia": null, "reactionVideos": [], @@ -5448,7 +5167,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 90, + "teamId": "nef780543", "time": 1141887, "featuredRunMedia": null, "reactionVideos": [], @@ -5466,7 +5185,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 135, + "teamId": "nef780679", "time": 1146839, "featuredRunMedia": null, "reactionVideos": [], @@ -5484,7 +5203,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 44, + "teamId": "nef790073", "time": 1153277, "featuredRunMedia": null, "reactionVideos": [], @@ -5502,7 +5221,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 29, + "teamId": "nef796575", "time": 1155129, "featuredRunMedia": null, "reactionVideos": [], @@ -5520,7 +5239,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "nef788319", "time": 1166191, "featuredRunMedia": null, "reactionVideos": [], @@ -5538,7 +5257,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 69, + "teamId": "nef796578", "time": 1174399, "featuredRunMedia": null, "reactionVideos": [], @@ -5556,7 +5275,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 94, + "teamId": "nef772709", "time": 1175381, "featuredRunMedia": null, "reactionVideos": [], @@ -5574,7 +5293,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 87, + "teamId": "nef797075", "time": 1177321, "featuredRunMedia": null, "reactionVideos": [], @@ -5592,7 +5311,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 96, + "teamId": "nef799358", "time": 1178878, "featuredRunMedia": null, "reactionVideos": [], @@ -5610,7 +5329,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 1181400, "featuredRunMedia": null, "reactionVideos": [], @@ -5628,7 +5347,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 113, + "teamId": "nef780569", "time": 1182701, "featuredRunMedia": null, "reactionVideos": [], @@ -5646,7 +5365,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 65, + "teamId": "nef790104", "time": 1186867, "featuredRunMedia": null, "reactionVideos": [], @@ -5664,7 +5383,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 37, + "teamId": "nef788422", "time": 1196849, "featuredRunMedia": null, "reactionVideos": [], @@ -5682,7 +5401,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 110, + "teamId": "nef780305", "time": 1198070, "featuredRunMedia": null, "reactionVideos": [], @@ -5700,7 +5419,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 169, + "teamId": "nef788423", "time": 1201871, "featuredRunMedia": null, "reactionVideos": [], @@ -5718,7 +5437,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 187, + "teamId": "nef795854", "time": 1204250, "featuredRunMedia": null, "reactionVideos": [], @@ -5736,7 +5455,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "nef788327", "time": 1206564, "featuredRunMedia": null, "reactionVideos": [], @@ -5754,7 +5473,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 17, + "teamId": "nef788324", "time": 1206802, "featuredRunMedia": null, "reactionVideos": [], @@ -5772,7 +5491,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 1208656, "featuredRunMedia": null, "reactionVideos": [], @@ -5790,7 +5509,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 31, + "teamId": "nef790067", "time": 1208906, "featuredRunMedia": null, "reactionVideos": [], @@ -5808,7 +5527,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 132, + "teamId": "nef780571", "time": 1209041, "featuredRunMedia": null, "reactionVideos": [], @@ -5826,7 +5545,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 57, + "teamId": "nef796576", "time": 1209277, "featuredRunMedia": null, "reactionVideos": [], @@ -5844,7 +5563,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 92, + "teamId": "nef780672", "time": 1209346, "featuredRunMedia": null, "reactionVideos": [], @@ -5862,7 +5581,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 27, + "teamId": "nef788419", "time": 1215285, "featuredRunMedia": null, "reactionVideos": [], @@ -5880,7 +5599,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 108, + "teamId": "nef772710", "time": 1216065, "featuredRunMedia": null, "reactionVideos": [], @@ -5898,7 +5617,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 172, + "teamId": "nef788054", "time": 1218872, "featuredRunMedia": null, "reactionVideos": [], @@ -5916,7 +5635,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 55, + "teamId": "nef788344", "time": 1222554, "featuredRunMedia": null, "reactionVideos": [], @@ -5934,7 +5653,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 131, + "teamId": "nef788432", "time": 1227769, "featuredRunMedia": null, "reactionVideos": [], @@ -5952,7 +5671,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 183, + "teamId": "nef788062", "time": 1232997, "featuredRunMedia": null, "reactionVideos": [], @@ -5970,7 +5689,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 1234704, "featuredRunMedia": null, "reactionVideos": [], @@ -5988,7 +5707,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "nef788328", "time": 1236892, "featuredRunMedia": null, "reactionVideos": [], @@ -6006,7 +5725,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 86, + "teamId": "nef780570", "time": 1239043, "featuredRunMedia": null, "reactionVideos": [], @@ -6024,7 +5743,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 139, + "teamId": "nef790101", "time": 1239322, "featuredRunMedia": null, "reactionVideos": [], @@ -6042,7 +5761,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 48, + "teamId": "nef780538", "time": 1245034, "featuredRunMedia": null, "reactionVideos": [], @@ -6060,7 +5779,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 65, + "teamId": "nef790104", "time": 1253362, "featuredRunMedia": null, "reactionVideos": [], @@ -6078,7 +5797,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 204, + "teamId": "nef790433", "time": 1254597, "featuredRunMedia": null, "reactionVideos": [], @@ -6096,7 +5815,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 25, + "teamId": "nef780669", "time": 1263217, "featuredRunMedia": null, "reactionVideos": [], @@ -6114,7 +5833,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 97, + "teamId": "nef799345", "time": 1264308, "featuredRunMedia": null, "reactionVideos": [], @@ -6132,7 +5851,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "nef780537", "time": 1273748, "featuredRunMedia": null, "reactionVideos": [], @@ -6150,7 +5869,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 77, + "teamId": "nef788059", "time": 1274323, "featuredRunMedia": null, "reactionVideos": [], @@ -6168,7 +5887,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 187, + "teamId": "nef795854", "time": 1280987, "featuredRunMedia": null, "reactionVideos": [], @@ -6186,7 +5905,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 1291322, "featuredRunMedia": null, "reactionVideos": [], @@ -6204,7 +5923,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 135, + "teamId": "nef780679", "time": 1291545, "featuredRunMedia": null, "reactionVideos": [], @@ -6222,7 +5941,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 134, + "teamId": "nef799571", "time": 1293092, "featuredRunMedia": null, "reactionVideos": [], @@ -6240,7 +5959,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 46, + "teamId": "nef788027", "time": 1296158, "featuredRunMedia": null, "reactionVideos": [], @@ -6258,7 +5977,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 70, + "teamId": "nef788056", "time": 1297505, "featuredRunMedia": null, "reactionVideos": [], @@ -6276,7 +5995,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 1298027, "featuredRunMedia": null, "reactionVideos": [], @@ -6294,7 +6013,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 87, + "teamId": "nef797075", "time": 1300196, "featuredRunMedia": null, "reactionVideos": [], @@ -6312,7 +6031,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 38, + "teamId": "nef790038", "time": 1301486, "featuredRunMedia": null, "reactionVideos": [], @@ -6330,7 +6049,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 180, + "teamId": "nef795862", "time": 1303372, "featuredRunMedia": null, "reactionVideos": [], @@ -6348,7 +6067,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 118, + "teamId": "nef790070", "time": 1307320, "featuredRunMedia": null, "reactionVideos": [], @@ -6366,7 +6085,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 144, + "teamId": "nef780575", "time": 1307778, "featuredRunMedia": null, "reactionVideos": [], @@ -6384,7 +6103,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 36, + "teamId": "nef790069", "time": 1311652, "featuredRunMedia": null, "reactionVideos": [], @@ -6402,7 +6121,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 226, + "teamId": "nef788429", "time": 1314859, "featuredRunMedia": null, "reactionVideos": [], @@ -6420,7 +6139,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 69, + "teamId": "nef796578", "time": 1315458, "featuredRunMedia": null, "reactionVideos": [], @@ -6438,7 +6157,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 65, + "teamId": "nef790104", "time": 1325059, "featuredRunMedia": null, "reactionVideos": [], @@ -6456,7 +6175,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "nef780668", "time": 1326248, "featuredRunMedia": null, "reactionVideos": [], @@ -6474,7 +6193,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 94, + "teamId": "nef772709", "time": 1327380, "featuredRunMedia": null, "reactionVideos": [], @@ -6492,7 +6211,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 93, + "teamId": "nef799341", "time": 1328567, "featuredRunMedia": null, "reactionVideos": [], @@ -6510,7 +6229,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 72, + "teamId": "nef790102", "time": 1330226, "featuredRunMedia": null, "reactionVideos": [], @@ -6528,7 +6247,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 95, + "teamId": "nef788055", "time": 1337600, "featuredRunMedia": null, "reactionVideos": [], @@ -6546,7 +6265,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 124, + "teamId": "nef795857", "time": 1338024, "featuredRunMedia": null, "reactionVideos": [], @@ -6564,7 +6283,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 66, + "teamId": "nef780671", "time": 1340261, "featuredRunMedia": null, "reactionVideos": [], @@ -6582,7 +6301,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 192, + "teamId": "nef780302", "time": 1344646, "featuredRunMedia": null, "reactionVideos": [], @@ -6600,7 +6319,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 182, + "teamId": "nef790133", "time": 1351219, "featuredRunMedia": null, "reactionVideos": [], @@ -6618,7 +6337,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 51, + "teamId": "nef780565", "time": 1360293, "featuredRunMedia": null, "reactionVideos": [], @@ -6636,7 +6355,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 95, + "teamId": "nef788055", "time": 1363507, "featuredRunMedia": null, "reactionVideos": [], @@ -6654,7 +6373,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 143, + "teamId": "nef790105", "time": 1364580, "featuredRunMedia": null, "reactionVideos": [], @@ -6672,7 +6391,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 169, + "teamId": "nef788423", "time": 1368145, "featuredRunMedia": null, "reactionVideos": [], @@ -6690,7 +6409,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 39, + "teamId": "nef788390", "time": 1368611, "featuredRunMedia": null, "reactionVideos": [], @@ -6708,7 +6427,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 112, + "teamId": "nef780304", "time": 1368741, "featuredRunMedia": null, "reactionVideos": [], @@ -6726,7 +6445,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 219, + "teamId": "nef790439", "time": 1371040, "featuredRunMedia": null, "reactionVideos": [], @@ -6744,7 +6463,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 88, + "teamId": "nef788065", "time": 1372207, "featuredRunMedia": null, "reactionVideos": [], @@ -6762,7 +6481,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 139, + "teamId": "nef790101", "time": 1373719, "featuredRunMedia": null, "reactionVideos": [], @@ -6780,7 +6499,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 27, + "teamId": "nef788419", "time": 1381439, "featuredRunMedia": null, "reactionVideos": [], @@ -6798,7 +6517,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 179, + "teamId": "nef790435", "time": 1386847, "featuredRunMedia": null, "reactionVideos": [], @@ -6816,7 +6535,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 130, + "teamId": "nef796438", "time": 1388452, "featuredRunMedia": null, "reactionVideos": [], @@ -6834,7 +6553,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 214, + "teamId": "nef780573", "time": 1388461, "featuredRunMedia": null, "reactionVideos": [], @@ -6852,7 +6571,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 91, + "teamId": "nef788061", "time": 1390065, "featuredRunMedia": null, "reactionVideos": [], @@ -6870,7 +6589,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 20, + "teamId": "nef780540", "time": 1397580, "featuredRunMedia": null, "reactionVideos": [], @@ -6888,7 +6607,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 77, + "teamId": "nef788059", "time": 1400036, "featuredRunMedia": null, "reactionVideos": [], @@ -6906,7 +6625,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 93, + "teamId": "nef799341", "time": 1400287, "featuredRunMedia": null, "reactionVideos": [], @@ -6924,7 +6643,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 100, + "teamId": "nef788063", "time": 1404296, "featuredRunMedia": null, "reactionVideos": [], @@ -6942,7 +6661,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 83, + "teamId": "nef788349", "time": 1404572, "featuredRunMedia": null, "reactionVideos": [], @@ -6960,7 +6679,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 97, + "teamId": "nef799345", "time": 1408377, "featuredRunMedia": null, "reactionVideos": [], @@ -6978,7 +6697,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 118, + "teamId": "nef790070", "time": 1412053, "featuredRunMedia": null, "reactionVideos": [], @@ -6996,7 +6715,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 109, + "teamId": "nef788326", "time": 1415558, "featuredRunMedia": null, "reactionVideos": [], @@ -7014,7 +6733,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "nef788341", "time": 1418198, "featuredRunMedia": null, "reactionVideos": [], @@ -7032,7 +6751,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 106, + "teamId": "nef780539", "time": 1420415, "featuredRunMedia": null, "reactionVideos": [], @@ -7050,7 +6769,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 130, + "teamId": "nef796438", "time": 1421424, "featuredRunMedia": null, "reactionVideos": [], @@ -7068,7 +6787,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 95, + "teamId": "nef788055", "time": 1423570, "featuredRunMedia": null, "reactionVideos": [], @@ -7086,7 +6805,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 42, + "teamId": "nef788334", "time": 1423779, "featuredRunMedia": null, "reactionVideos": [], @@ -7104,7 +6823,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 199, + "teamId": "nef788031", "time": 1425573, "featuredRunMedia": null, "reactionVideos": [], @@ -7122,7 +6841,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 189, + "teamId": "nef790072", "time": 1426206, "featuredRunMedia": null, "reactionVideos": [], @@ -7140,7 +6859,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 129, + "teamId": "nef788427", "time": 1430710, "featuredRunMedia": null, "reactionVideos": [], @@ -7158,7 +6877,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 80, + "teamId": "nef788430", "time": 1431592, "featuredRunMedia": null, "reactionVideos": [], @@ -7176,7 +6895,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 192, + "teamId": "nef780302", "time": 1436624, "featuredRunMedia": null, "reactionVideos": [], @@ -7194,7 +6913,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 186, + "teamId": "nef780306", "time": 1437366, "featuredRunMedia": null, "reactionVideos": [], @@ -7212,7 +6931,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 58, + "teamId": "nef790432", "time": 1439093, "featuredRunMedia": null, "reactionVideos": [], @@ -7230,7 +6949,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 60, + "teamId": "nef797072", "time": 1441708, "featuredRunMedia": null, "reactionVideos": [], @@ -7248,7 +6967,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 30, + "teamId": "nef780676", "time": 1442673, "featuredRunMedia": null, "reactionVideos": [], @@ -7266,7 +6985,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 67, + "teamId": "nef790100", "time": 1445158, "featuredRunMedia": null, "reactionVideos": [], @@ -7284,7 +7003,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 161, + "teamId": "nef780678", "time": 1447901, "featuredRunMedia": null, "reactionVideos": [], @@ -7302,7 +7021,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 84, + "teamId": "nef780564", "time": 1448353, "featuredRunMedia": null, "reactionVideos": [], @@ -7320,7 +7039,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 62, + "teamId": "nef788064", "time": 1458555, "featuredRunMedia": null, "reactionVideos": [], @@ -7338,7 +7057,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 167, + "teamId": "nef788058", "time": 1460003, "featuredRunMedia": null, "reactionVideos": [], @@ -7356,7 +7075,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 16, + "teamId": "nef788424", "time": 1461236, "featuredRunMedia": null, "reactionVideos": [], @@ -7374,7 +7093,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 226, + "teamId": "nef788429", "time": 1464039, "featuredRunMedia": null, "reactionVideos": [], @@ -7392,7 +7111,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 185, + "teamId": "nef790138", "time": 1466984, "featuredRunMedia": null, "reactionVideos": [], @@ -7410,7 +7129,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 168, + "teamId": "nef780681", "time": 1473256, "featuredRunMedia": null, "reactionVideos": [], @@ -7428,7 +7147,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 160, + "teamId": "nef799357", "time": 1473321, "featuredRunMedia": null, "reactionVideos": [], @@ -7446,7 +7165,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 85, + "teamId": "nef797071", "time": 1478333, "featuredRunMedia": null, "reactionVideos": [], @@ -7464,7 +7183,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 43, + "teamId": "nef788426", "time": 1485289, "featuredRunMedia": null, "reactionVideos": [], @@ -7482,7 +7201,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 47, + "teamId": "nef780670", "time": 1485356, "featuredRunMedia": null, "reactionVideos": [], @@ -7500,7 +7219,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 83, + "teamId": "nef788349", "time": 1486050, "featuredRunMedia": null, "reactionVideos": [], @@ -7518,7 +7237,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 10, + "teamId": "nef780666", "time": 1488307, "featuredRunMedia": null, "reactionVideos": [], @@ -7536,7 +7255,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 108, + "teamId": "nef772710", "time": 1490915, "featuredRunMedia": null, "reactionVideos": [], @@ -7554,7 +7273,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 188, + "teamId": "nef788066", "time": 1491472, "featuredRunMedia": null, "reactionVideos": [], @@ -7572,7 +7291,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 15, + "teamId": "nef780675", "time": 1491896, "featuredRunMedia": null, "reactionVideos": [], @@ -7590,7 +7309,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 114, + "teamId": "nef788337", "time": 1495885, "featuredRunMedia": null, "reactionVideos": [], @@ -7608,7 +7327,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 37, + "teamId": "nef788422", "time": 1496513, "featuredRunMedia": null, "reactionVideos": [], @@ -7626,7 +7345,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 122, + "teamId": "nef790437", "time": 1497195, "featuredRunMedia": null, "reactionVideos": [], @@ -7644,7 +7363,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 80, + "teamId": "nef788430", "time": 1497898, "featuredRunMedia": null, "reactionVideos": [], @@ -7662,7 +7381,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 41, + "teamId": "nef796574", "time": 1497971, "featuredRunMedia": null, "reactionVideos": [], @@ -7680,7 +7399,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 84, + "teamId": "nef780564", "time": 1499783, "featuredRunMedia": null, "reactionVideos": [], @@ -7698,7 +7417,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 16, + "teamId": "nef788424", "time": 1501458, "featuredRunMedia": null, "reactionVideos": [], @@ -7716,7 +7435,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 222, + "teamId": "nef799351", "time": 1506874, "featuredRunMedia": null, "reactionVideos": [], @@ -7734,7 +7453,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 138, + "teamId": "nef788338", "time": 1507193, "featuredRunMedia": null, "reactionVideos": [], @@ -7752,7 +7471,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 115, + "teamId": "nef788026", "time": 1509244, "featuredRunMedia": null, "reactionVideos": [], @@ -7770,7 +7489,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 98, + "teamId": "nef788330", "time": 1513900, "featuredRunMedia": null, "reactionVideos": [], @@ -7788,7 +7507,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 124, + "teamId": "nef795857", "time": 1516244, "featuredRunMedia": null, "reactionVideos": [], @@ -7806,7 +7525,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 37, + "teamId": "nef788422", "time": 1520069, "featuredRunMedia": null, "reactionVideos": [], @@ -7824,7 +7543,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 25, + "teamId": "nef780669", "time": 1532606, "featuredRunMedia": null, "reactionVideos": [], @@ -7842,7 +7561,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 39, + "teamId": "nef788390", "time": 1532974, "featuredRunMedia": null, "reactionVideos": [], @@ -7860,7 +7579,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 1533800, "featuredRunMedia": null, "reactionVideos": [], @@ -7878,7 +7597,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 7, + "teamId": "nef788325", "time": 1538040, "featuredRunMedia": null, "reactionVideos": [], @@ -7896,7 +7615,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 1539509, "featuredRunMedia": null, "reactionVideos": [], @@ -7914,7 +7633,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 222, + "teamId": "nef799351", "time": 1539511, "featuredRunMedia": null, "reactionVideos": [], @@ -7932,7 +7651,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 21, + "teamId": "nef790436", "time": 1542443, "featuredRunMedia": null, "reactionVideos": [], @@ -7950,7 +7669,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 15, + "teamId": "nef780675", "time": 1543677, "featuredRunMedia": null, "reactionVideos": [], @@ -7968,7 +7687,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 45, + "teamId": "nef788030", "time": 1556292, "featuredRunMedia": null, "reactionVideos": [], @@ -7986,7 +7705,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 141, + "teamId": "nef788346", "time": 1557663, "featuredRunMedia": null, "reactionVideos": [], @@ -8004,7 +7723,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 90, + "teamId": "nef780543", "time": 1560373, "featuredRunMedia": null, "reactionVideos": [], @@ -8022,7 +7741,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 79, + "teamId": "nef788347", "time": 1563969, "featuredRunMedia": null, "reactionVideos": [], @@ -8040,7 +7759,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 122, + "teamId": "nef790437", "time": 1576576, "featuredRunMedia": null, "reactionVideos": [], @@ -8058,7 +7777,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 19, + "teamId": "nef780674", "time": 1576798, "featuredRunMedia": null, "reactionVideos": [], @@ -8076,7 +7795,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 261, + "teamId": "nef799352", "time": 1579115, "featuredRunMedia": null, "reactionVideos": [], @@ -8094,7 +7813,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 127, + "teamId": "nef799360", "time": 1596078, "featuredRunMedia": null, "reactionVideos": [], @@ -8112,7 +7831,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 96, + "teamId": "nef799358", "time": 1600210, "featuredRunMedia": null, "reactionVideos": [], @@ -8130,7 +7849,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 51, + "teamId": "nef780565", "time": 1600383, "featuredRunMedia": null, "reactionVideos": [], @@ -8148,7 +7867,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 46, + "teamId": "nef788027", "time": 1603325, "featuredRunMedia": null, "reactionVideos": [], @@ -8166,7 +7885,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 213, + "teamId": "nef796544", "time": 1603717, "featuredRunMedia": null, "reactionVideos": [], @@ -8184,7 +7903,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 205, + "teamId": "nef780572", "time": 1610390, "featuredRunMedia": null, "reactionVideos": [], @@ -8202,7 +7921,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 204, + "teamId": "nef790433", "time": 1612094, "featuredRunMedia": null, "reactionVideos": [], @@ -8220,7 +7939,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "nef788321", "time": 1613816, "featuredRunMedia": null, "reactionVideos": [], @@ -8238,7 +7957,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 58, + "teamId": "nef790432", "time": 1621184, "featuredRunMedia": null, "reactionVideos": [], @@ -8256,7 +7975,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 74, + "teamId": "nef788057", "time": 1630808, "featuredRunMedia": null, "reactionVideos": [], @@ -8274,7 +7993,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 56, + "teamId": "nef789937", "time": 1656002, "featuredRunMedia": null, "reactionVideos": [], @@ -8292,7 +8011,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "nef780537", "time": 1656540, "featuredRunMedia": null, "reactionVideos": [], @@ -8310,7 +8029,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 1658549, "featuredRunMedia": null, "reactionVideos": [], @@ -8328,7 +8047,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 109, + "teamId": "nef788326", "time": 1663455, "featuredRunMedia": null, "reactionVideos": [], @@ -8346,7 +8065,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 68, + "teamId": "nef790103", "time": 1664055, "featuredRunMedia": null, "reactionVideos": [], @@ -8364,7 +8083,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 208, + "teamId": "nef796440", "time": 1664921, "featuredRunMedia": null, "reactionVideos": [], @@ -8382,7 +8101,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 173, + "teamId": "nef799349", "time": 1664965, "featuredRunMedia": null, "reactionVideos": [], @@ -8400,7 +8119,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "nef788323", "time": 1666932, "featuredRunMedia": null, "reactionVideos": [], @@ -8418,7 +8137,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 97, + "teamId": "nef799345", "time": 1670707, "featuredRunMedia": null, "reactionVideos": [], @@ -8436,7 +8155,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 128, + "teamId": "nef789939", "time": 1682662, "featuredRunMedia": null, "reactionVideos": [], @@ -8454,7 +8173,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 34, + "teamId": "nef788331", "time": 1687366, "featuredRunMedia": null, "reactionVideos": [], @@ -8472,7 +8191,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 214, + "teamId": "nef780573", "time": 1696479, "featuredRunMedia": null, "reactionVideos": [], @@ -8490,7 +8209,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 1702117, "featuredRunMedia": null, "reactionVideos": [], @@ -8508,7 +8227,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 52, + "teamId": "nef790039", "time": 1710775, "featuredRunMedia": null, "reactionVideos": [], @@ -8526,7 +8245,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 99, + "teamId": "nef790043", "time": 1712264, "featuredRunMedia": null, "reactionVideos": [], @@ -8544,7 +8263,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 197, + "teamId": "nef788351", "time": 1717270, "featuredRunMedia": null, "reactionVideos": [], @@ -8562,7 +8281,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 203, + "teamId": "nef790134", "time": 1718049, "featuredRunMedia": null, "reactionVideos": [], @@ -8580,7 +8299,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 29, + "teamId": "nef796575", "time": 1718643, "featuredRunMedia": null, "reactionVideos": [], @@ -8598,7 +8317,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 161, + "teamId": "nef780678", "time": 1721645, "featuredRunMedia": null, "reactionVideos": [], @@ -8616,7 +8335,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 189, + "teamId": "nef790072", "time": 1725312, "featuredRunMedia": null, "reactionVideos": [], @@ -8634,7 +8353,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 75, + "teamId": "nef790071", "time": 1725972, "featuredRunMedia": null, "reactionVideos": [], @@ -8652,7 +8371,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 197, + "teamId": "nef788351", "time": 1736427, "featuredRunMedia": null, "reactionVideos": [], @@ -8670,7 +8389,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 47, + "teamId": "nef780670", "time": 1739443, "featuredRunMedia": null, "reactionVideos": [], @@ -8688,7 +8407,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 39, + "teamId": "nef788390", "time": 1752179, "featuredRunMedia": null, "reactionVideos": [], @@ -8706,7 +8425,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 224, + "teamId": "nef772723", "time": 1759064, "featuredRunMedia": null, "reactionVideos": [], @@ -8724,7 +8443,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 50, + "teamId": "nef780568", "time": 1762318, "featuredRunMedia": null, "reactionVideos": [], @@ -8742,7 +8461,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 129, + "teamId": "nef788427", "time": 1763491, "featuredRunMedia": null, "reactionVideos": [], @@ -8760,7 +8479,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 93, + "teamId": "nef799341", "time": 1765939, "featuredRunMedia": null, "reactionVideos": [], @@ -8778,7 +8497,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 49, + "teamId": "nef780673", "time": 1771364, "featuredRunMedia": null, "reactionVideos": [], @@ -8796,7 +8515,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 147, + "teamId": "nef799361", "time": 1777967, "featuredRunMedia": null, "reactionVideos": [], @@ -8814,7 +8533,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 173, + "teamId": "nef799349", "time": 1778173, "featuredRunMedia": null, "reactionVideos": [], @@ -8832,7 +8551,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 121, + "teamId": "nef788336", "time": 1778182, "featuredRunMedia": null, "reactionVideos": [], @@ -8850,7 +8569,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 23, + "teamId": "nef780541", "time": 1780440, "featuredRunMedia": null, "reactionVideos": [], @@ -8868,7 +8587,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 50, + "teamId": "nef780568", "time": 1781502, "featuredRunMedia": null, "reactionVideos": [], @@ -8886,7 +8605,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 148, + "teamId": "nef797077", "time": 1785666, "featuredRunMedia": null, "reactionVideos": [], @@ -8904,7 +8623,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "nef788332", "time": 1786902, "featuredRunMedia": null, "reactionVideos": [], @@ -8922,7 +8641,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 94, + "teamId": "nef772709", "time": 1798809, "featuredRunMedia": null, "reactionVideos": [], @@ -8940,7 +8659,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 172, + "teamId": "nef788054", "time": 1804273, "featuredRunMedia": null, "reactionVideos": [], @@ -8958,7 +8677,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 200, + "teamId": "nef799344", "time": 1807589, "featuredRunMedia": null, "reactionVideos": [], @@ -8976,7 +8695,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 193, + "teamId": "nef799348", "time": 1810926, "featuredRunMedia": null, "reactionVideos": [], @@ -8994,7 +8713,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 194, + "teamId": "nef790135", "time": 1821296, "featuredRunMedia": null, "reactionVideos": [], @@ -9012,7 +8731,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "nef788320", "time": 1826070, "featuredRunMedia": null, "reactionVideos": [], @@ -9030,7 +8749,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 89, + "teamId": "nef780574", "time": 1827557, "featuredRunMedia": null, "reactionVideos": [], @@ -9048,7 +8767,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 45, + "teamId": "nef788030", "time": 1838132, "featuredRunMedia": null, "reactionVideos": [], @@ -9066,7 +8785,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 94, + "teamId": "nef772709", "time": 1844818, "featuredRunMedia": null, "reactionVideos": [], @@ -9084,7 +8803,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 18, + "teamId": "nef788323", "time": 1845816, "featuredRunMedia": null, "reactionVideos": [], @@ -9102,7 +8821,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 191, + "teamId": "nef790140", "time": 1847011, "featuredRunMedia": null, "reactionVideos": [], @@ -9120,7 +8839,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 83, + "teamId": "nef788349", "time": 1848287, "featuredRunMedia": null, "reactionVideos": [], @@ -9138,7 +8857,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 44, + "teamId": "nef790073", "time": 1849686, "featuredRunMedia": null, "reactionVideos": [], @@ -9156,7 +8875,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 101, + "teamId": "nef780677", "time": 1852938, "featuredRunMedia": null, "reactionVideos": [], @@ -9174,7 +8893,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 117, + "teamId": "nef788350", "time": 1858845, "featuredRunMedia": null, "reactionVideos": [], @@ -9192,7 +8911,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 254, + "teamId": "nef772720", "time": 1862044, "featuredRunMedia": null, "reactionVideos": [], @@ -9210,7 +8929,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 179, + "teamId": "nef790435", "time": 1864819, "featuredRunMedia": null, "reactionVideos": [], @@ -9228,7 +8947,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 1865759, "featuredRunMedia": null, "reactionVideos": [], @@ -9246,7 +8965,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 161, + "teamId": "nef780678", "time": 1870123, "featuredRunMedia": null, "reactionVideos": [], @@ -9264,7 +8983,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 102, + "teamId": "nef780567", "time": 1874424, "featuredRunMedia": null, "reactionVideos": [], @@ -9282,7 +9001,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 177, + "teamId": "nef799366", "time": 1878756, "featuredRunMedia": null, "reactionVideos": [], @@ -9300,7 +9019,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 208, + "teamId": "nef796440", "time": 1879183, "featuredRunMedia": null, "reactionVideos": [], @@ -9318,7 +9037,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 137, + "teamId": "nef788392", "time": 1882706, "featuredRunMedia": null, "reactionVideos": [], @@ -9336,7 +9055,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 238, + "teamId": "nef772718", "time": 1882737, "featuredRunMedia": null, "reactionVideos": [], @@ -9354,7 +9073,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 240, + "teamId": "nef780303", "time": 1886453, "featuredRunMedia": null, "reactionVideos": [], @@ -9372,7 +9091,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 202, + "teamId": "nef790142", "time": 1888931, "featuredRunMedia": null, "reactionVideos": [], @@ -9390,7 +9109,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 25, + "teamId": "nef780669", "time": 1892538, "featuredRunMedia": null, "reactionVideos": [], @@ -9408,7 +9127,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 148, + "teamId": "nef797077", "time": 1892603, "featuredRunMedia": null, "reactionVideos": [], @@ -9426,7 +9145,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 62, + "teamId": "nef788064", "time": 1893743, "featuredRunMedia": null, "reactionVideos": [], @@ -9444,7 +9163,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 1896842, "featuredRunMedia": null, "reactionVideos": [], @@ -9462,7 +9181,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 242, + "teamId": "nef772722", "time": 1904742, "featuredRunMedia": null, "reactionVideos": [], @@ -9480,7 +9199,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 88, + "teamId": "nef788065", "time": 1909956, "featuredRunMedia": null, "reactionVideos": [], @@ -9498,7 +9217,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 258, + "teamId": "nef796543", "time": 1910504, "featuredRunMedia": null, "reactionVideos": [], @@ -9516,7 +9235,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 164, + "teamId": "nef797070", "time": 1912543, "featuredRunMedia": null, "reactionVideos": [], @@ -9534,7 +9253,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 89, + "teamId": "nef780574", "time": 1917056, "featuredRunMedia": null, "reactionVideos": [], @@ -9552,7 +9271,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 212, + "teamId": "nef791228", "time": 1918233, "featuredRunMedia": null, "reactionVideos": [], @@ -9570,7 +9289,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 128, + "teamId": "nef789939", "time": 1921527, "featuredRunMedia": null, "reactionVideos": [], @@ -9588,7 +9307,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 236, + "teamId": "nef789838", "time": 1925572, "featuredRunMedia": null, "reactionVideos": [], @@ -9606,7 +9325,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 202, + "teamId": "nef790142", "time": 1925906, "featuredRunMedia": null, "reactionVideos": [], @@ -9624,7 +9343,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 102, + "teamId": "nef780567", "time": 1927676, "featuredRunMedia": null, "reactionVideos": [], @@ -9642,7 +9361,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 26, + "teamId": "nef788425", "time": 1933457, "featuredRunMedia": null, "reactionVideos": [], @@ -9660,7 +9379,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 33, + "teamId": "nef780544", "time": 1933524, "featuredRunMedia": null, "reactionVideos": [], @@ -9678,7 +9397,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 107, + "teamId": "nef788428", "time": 1933564, "featuredRunMedia": null, "reactionVideos": [], @@ -9696,7 +9415,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 160, + "teamId": "nef799357", "time": 1935941, "featuredRunMedia": null, "reactionVideos": [], @@ -9714,7 +9433,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "nef788332", "time": 1936933, "featuredRunMedia": null, "reactionVideos": [], @@ -9732,7 +9451,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 30, + "teamId": "nef780676", "time": 1938502, "featuredRunMedia": null, "reactionVideos": [], @@ -9750,7 +9469,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "nef788029", "time": 1942051, "featuredRunMedia": null, "reactionVideos": [], @@ -9768,7 +9487,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 94, + "teamId": "nef772709", "time": 1944064, "featuredRunMedia": null, "reactionVideos": [], @@ -9786,7 +9505,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 55, + "teamId": "nef788344", "time": 1958105, "featuredRunMedia": null, "reactionVideos": [], @@ -9804,7 +9523,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 84, + "teamId": "nef780564", "time": 1962805, "featuredRunMedia": null, "reactionVideos": [], @@ -9822,7 +9541,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 167, + "teamId": "nef788058", "time": 1963253, "featuredRunMedia": null, "reactionVideos": [], @@ -9840,7 +9559,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 65, + "teamId": "nef790104", "time": 1963538, "featuredRunMedia": null, "reactionVideos": [], @@ -9858,7 +9577,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 113, + "teamId": "nef780569", "time": 1966338, "featuredRunMedia": null, "reactionVideos": [], @@ -9876,7 +9595,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 209, + "teamId": "nef780577", "time": 1969560, "featuredRunMedia": null, "reactionVideos": [], @@ -9894,7 +9613,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 123, + "teamId": "nef788032", "time": 1971631, "featuredRunMedia": null, "reactionVideos": [], @@ -9912,7 +9631,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "nef788321", "time": 1975291, "featuredRunMedia": null, "reactionVideos": [], @@ -9930,7 +9649,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 199, + "teamId": "nef788031", "time": 1975375, "featuredRunMedia": null, "reactionVideos": [], @@ -9948,7 +9667,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 262, + "teamId": "nef795872", "time": 1978926, "featuredRunMedia": null, "reactionVideos": [], @@ -9966,7 +9685,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 1979983, "featuredRunMedia": null, "reactionVideos": [], @@ -9984,7 +9703,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "nef790061", "time": 1981267, "featuredRunMedia": null, "reactionVideos": [], @@ -10002,7 +9721,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 248, + "teamId": "nef799355", "time": 1986829, "featuredRunMedia": null, "reactionVideos": [], @@ -10020,7 +9739,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 100, + "teamId": "nef788063", "time": 1991411, "featuredRunMedia": null, "reactionVideos": [], @@ -10038,7 +9757,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 87, + "teamId": "nef797075", "time": 1994030, "featuredRunMedia": null, "reactionVideos": [], @@ -10056,7 +9775,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 142, + "teamId": "nef780578", "time": 2018760, "featuredRunMedia": null, "reactionVideos": [], @@ -10074,7 +9793,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 168, + "teamId": "nef780681", "time": 2021082, "featuredRunMedia": null, "reactionVideos": [], @@ -10092,7 +9811,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 138, + "teamId": "nef788338", "time": 2021758, "featuredRunMedia": null, "reactionVideos": [], @@ -10110,7 +9829,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 89, + "teamId": "nef780574", "time": 2028956, "featuredRunMedia": null, "reactionVideos": [], @@ -10128,7 +9847,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 141, + "teamId": "nef788346", "time": 2032553, "featuredRunMedia": null, "reactionVideos": [], @@ -10146,7 +9865,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 173, + "teamId": "nef799349", "time": 2036150, "featuredRunMedia": null, "reactionVideos": [], @@ -10164,7 +9883,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2036868, "featuredRunMedia": null, "reactionVideos": [], @@ -10182,7 +9901,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 27, + "teamId": "nef788419", "time": 2040696, "featuredRunMedia": null, "reactionVideos": [], @@ -10200,7 +9919,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 2044288, "featuredRunMedia": null, "reactionVideos": [], @@ -10218,7 +9937,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 70, + "teamId": "nef788056", "time": 2044509, "featuredRunMedia": null, "reactionVideos": [], @@ -10236,7 +9955,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "nef790061", "time": 2044666, "featuredRunMedia": null, "reactionVideos": [], @@ -10254,7 +9973,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 92, + "teamId": "nef780672", "time": 2046771, "featuredRunMedia": null, "reactionVideos": [], @@ -10272,7 +9991,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 2048198, "featuredRunMedia": null, "reactionVideos": [], @@ -10290,7 +10009,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 78, + "teamId": "nef797079", "time": 2048431, "featuredRunMedia": null, "reactionVideos": [], @@ -10308,7 +10027,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "nef790100", "time": 2057772, "featuredRunMedia": null, "reactionVideos": [], @@ -10326,7 +10045,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 214, + "teamId": "nef780573", "time": 2063020, "featuredRunMedia": null, "reactionVideos": [], @@ -10344,7 +10063,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 224, + "teamId": "nef772723", "time": 2072700, "featuredRunMedia": null, "reactionVideos": [], @@ -10362,7 +10081,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "nef788332", "time": 2077022, "featuredRunMedia": null, "reactionVideos": [], @@ -10380,7 +10099,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 111, + "teamId": "nef790438", "time": 2077834, "featuredRunMedia": null, "reactionVideos": [], @@ -10398,7 +10117,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 190, + "teamId": "nef795860", "time": 2080143, "featuredRunMedia": null, "reactionVideos": [], @@ -10416,7 +10135,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 2084788, "featuredRunMedia": null, "reactionVideos": [], @@ -10434,7 +10153,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 219, + "teamId": "nef790439", "time": 2087846, "featuredRunMedia": null, "reactionVideos": [], @@ -10452,7 +10171,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 46, + "teamId": "nef788027", "time": 2088425, "featuredRunMedia": null, "reactionVideos": [], @@ -10470,7 +10189,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 36, + "teamId": "nef790069", "time": 2088631, "featuredRunMedia": null, "reactionVideos": [], @@ -10488,7 +10207,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 80, + "teamId": "nef788430", "time": 2088994, "featuredRunMedia": null, "reactionVideos": [], @@ -10506,7 +10225,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 197, + "teamId": "nef788351", "time": 2089249, "featuredRunMedia": null, "reactionVideos": [], @@ -10524,7 +10243,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 177, + "teamId": "nef799366", "time": 2091900, "featuredRunMedia": null, "reactionVideos": [], @@ -10542,7 +10261,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 159, + "teamId": "nef780576", "time": 2093173, "featuredRunMedia": null, "reactionVideos": [], @@ -10560,7 +10279,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 55, + "teamId": "nef788344", "time": 2098191, "featuredRunMedia": null, "reactionVideos": [], @@ -10578,7 +10297,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 120, + "teamId": "nef788342", "time": 2098353, "featuredRunMedia": null, "reactionVideos": [], @@ -10596,7 +10315,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 182, + "teamId": "nef790133", "time": 2099307, "featuredRunMedia": null, "reactionVideos": [], @@ -10614,7 +10333,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 2101630, "featuredRunMedia": null, "reactionVideos": [], @@ -10632,7 +10351,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "nef788059", "time": 2105974, "featuredRunMedia": null, "reactionVideos": [], @@ -10650,7 +10369,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 98, + "teamId": "nef788330", "time": 2111323, "featuredRunMedia": null, "reactionVideos": [], @@ -10668,7 +10387,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "nef790038", "time": 2112412, "featuredRunMedia": null, "reactionVideos": [], @@ -10686,7 +10405,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 150, + "teamId": "nef797076", "time": 2117091, "featuredRunMedia": null, "reactionVideos": [], @@ -10704,7 +10423,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 145, + "teamId": "nef780680", "time": 2117553, "featuredRunMedia": null, "reactionVideos": [], @@ -10722,7 +10441,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 2118599, "featuredRunMedia": null, "reactionVideos": [], @@ -10740,7 +10459,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 10, + "teamId": "nef780666", "time": 2118936, "featuredRunMedia": null, "reactionVideos": [], @@ -10758,7 +10477,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 94, + "teamId": "nef772709", "time": 2119517, "featuredRunMedia": null, "reactionVideos": [], @@ -10776,7 +10495,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 110, + "teamId": "nef780305", "time": 2125070, "featuredRunMedia": null, "reactionVideos": [], @@ -10794,7 +10513,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 248, + "teamId": "nef799355", "time": 2126039, "featuredRunMedia": null, "reactionVideos": [], @@ -10812,7 +10531,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "nef790071", "time": 2133427, "featuredRunMedia": null, "reactionVideos": [], @@ -10830,7 +10549,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 148, + "teamId": "nef797077", "time": 2141111, "featuredRunMedia": null, "reactionVideos": [], @@ -10848,7 +10567,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 209, + "teamId": "nef780577", "time": 2146141, "featuredRunMedia": null, "reactionVideos": [], @@ -10866,7 +10585,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 236, + "teamId": "nef789838", "time": 2156248, "featuredRunMedia": null, "reactionVideos": [], @@ -10884,7 +10603,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 171, + "teamId": "nef796439", "time": 2158984, "featuredRunMedia": null, "reactionVideos": [], @@ -10902,7 +10621,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "nef780307", "time": 2159008, "featuredRunMedia": null, "reactionVideos": [], @@ -10920,7 +10639,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 150, + "teamId": "nef797076", "time": 2160029, "featuredRunMedia": null, "reactionVideos": [], @@ -10938,7 +10657,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2163808, "featuredRunMedia": null, "reactionVideos": [], @@ -10956,7 +10675,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 47, + "teamId": "nef780670", "time": 2166511, "featuredRunMedia": null, "reactionVideos": [], @@ -10974,7 +10693,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 43, + "teamId": "nef788426", "time": 2169227, "featuredRunMedia": null, "reactionVideos": [], @@ -10992,7 +10711,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 194, + "teamId": "nef790135", "time": 2170258, "featuredRunMedia": null, "reactionVideos": [], @@ -11010,7 +10729,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 135, + "teamId": "nef780679", "time": 2170939, "featuredRunMedia": null, "reactionVideos": [], @@ -11028,7 +10747,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 48, + "teamId": "nef780538", "time": 2171238, "featuredRunMedia": null, "reactionVideos": [], @@ -11046,7 +10765,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 214, + "teamId": "nef780573", "time": 2175819, "featuredRunMedia": null, "reactionVideos": [], @@ -11064,7 +10783,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 105, + "teamId": "nef790040", "time": 2178005, "featuredRunMedia": null, "reactionVideos": [], @@ -11082,7 +10801,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 80, + "teamId": "nef788430", "time": 2179198, "featuredRunMedia": null, "reactionVideos": [], @@ -11100,7 +10819,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 106, + "teamId": "nef780539", "time": 2179631, "featuredRunMedia": null, "reactionVideos": [], @@ -11118,7 +10837,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 95, + "teamId": "nef788055", "time": 2180686, "featuredRunMedia": null, "reactionVideos": [], @@ -11136,7 +10855,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 140, + "teamId": "nef799346", "time": 2187411, "featuredRunMedia": null, "reactionVideos": [], @@ -11154,7 +10873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 161, + "teamId": "nef780678", "time": 2200497, "featuredRunMedia": null, "reactionVideos": [], @@ -11172,7 +10891,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 64, + "teamId": "nef788352", "time": 2200737, "featuredRunMedia": null, "reactionVideos": [], @@ -11190,7 +10909,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 35, + "teamId": "nef795852", "time": 2206552, "featuredRunMedia": null, "reactionVideos": [], @@ -11208,7 +10927,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "nef790061", "time": 2211644, "featuredRunMedia": null, "reactionVideos": [], @@ -11226,7 +10945,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 146, + "teamId": "nef790042", "time": 2218194, "featuredRunMedia": null, "reactionVideos": [], @@ -11244,7 +10963,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "nef788332", "time": 2219737, "featuredRunMedia": null, "reactionVideos": [], @@ -11262,7 +10981,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 198, + "teamId": "nef790141", "time": 2220454, "featuredRunMedia": null, "reactionVideos": [], @@ -11280,7 +10999,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 212, + "teamId": "nef791228", "time": 2220614, "featuredRunMedia": null, "reactionVideos": [], @@ -11298,7 +11017,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 120, + "teamId": "nef788342", "time": 2225400, "featuredRunMedia": null, "reactionVideos": [], @@ -11316,7 +11035,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 174, + "teamId": "nef772711", "time": 2232824, "featuredRunMedia": null, "reactionVideos": [], @@ -11334,7 +11053,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2235175, "featuredRunMedia": null, "reactionVideos": [], @@ -11352,7 +11071,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 241, + "teamId": "nef790434", "time": 2239477, "featuredRunMedia": null, "reactionVideos": [], @@ -11370,7 +11089,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 26, + "teamId": "nef788425", "time": 2240139, "featuredRunMedia": null, "reactionVideos": [], @@ -11388,7 +11107,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 2240192, "featuredRunMedia": null, "reactionVideos": [], @@ -11406,7 +11125,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 2242558, "featuredRunMedia": null, "reactionVideos": [], @@ -11424,7 +11143,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 101, + "teamId": "nef780677", "time": 2245141, "featuredRunMedia": null, "reactionVideos": [], @@ -11442,7 +11161,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 142, + "teamId": "nef780578", "time": 2245738, "featuredRunMedia": null, "reactionVideos": [], @@ -11460,7 +11179,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "nef790071", "time": 2246141, "featuredRunMedia": null, "reactionVideos": [], @@ -11478,7 +11197,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 141, + "teamId": "nef788346", "time": 2252266, "featuredRunMedia": null, "reactionVideos": [], @@ -11496,7 +11215,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 56, + "teamId": "nef789937", "time": 2260457, "featuredRunMedia": null, "reactionVideos": [], @@ -11514,7 +11233,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 235, + "teamId": "nef772715", "time": 2265181, "featuredRunMedia": null, "reactionVideos": [], @@ -11532,7 +11251,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 249, + "teamId": "nef795866", "time": 2269442, "featuredRunMedia": null, "reactionVideos": [], @@ -11550,7 +11269,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 82, + "teamId": "nef799340", "time": 2269723, "featuredRunMedia": null, "reactionVideos": [], @@ -11568,7 +11287,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 2274802, "featuredRunMedia": null, "reactionVideos": [], @@ -11586,7 +11305,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 189, + "teamId": "nef790072", "time": 2274831, "featuredRunMedia": null, "reactionVideos": [], @@ -11604,7 +11323,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 171, + "teamId": "nef796439", "time": 2282810, "featuredRunMedia": null, "reactionVideos": [], @@ -11622,7 +11341,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 240, + "teamId": "nef780303", "time": 2292590, "featuredRunMedia": null, "reactionVideos": [], @@ -11640,7 +11359,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "nef788332", "time": 2296145, "featuredRunMedia": null, "reactionVideos": [], @@ -11658,7 +11377,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 2300929, "featuredRunMedia": null, "reactionVideos": [], @@ -11676,7 +11395,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "nef796576", "time": 2301783, "featuredRunMedia": null, "reactionVideos": [], @@ -11694,7 +11413,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 229, + "teamId": "nef799350", "time": 2305569, "featuredRunMedia": null, "reactionVideos": [], @@ -11712,7 +11431,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 107, + "teamId": "nef788428", "time": 2306182, "featuredRunMedia": null, "reactionVideos": [], @@ -11730,7 +11449,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 187, + "teamId": "nef795854", "time": 2306676, "featuredRunMedia": null, "reactionVideos": [], @@ -11748,7 +11467,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 83, + "teamId": "nef788349", "time": 2308406, "featuredRunMedia": null, "reactionVideos": [], @@ -11766,7 +11485,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 158, + "teamId": "nef788068", "time": 2310311, "featuredRunMedia": null, "reactionVideos": [], @@ -11784,7 +11503,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 99, + "teamId": "nef790043", "time": 2312261, "featuredRunMedia": null, "reactionVideos": [], @@ -11802,7 +11521,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 25, + "teamId": "nef780669", "time": 2318513, "featuredRunMedia": null, "reactionVideos": [], @@ -11820,7 +11539,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 2318513, "featuredRunMedia": null, "reactionVideos": [], @@ -11838,7 +11557,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 76, + "teamId": "nef780566", "time": 2320056, "featuredRunMedia": null, "reactionVideos": [], @@ -11856,7 +11575,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 53, + "teamId": "nef788341", "time": 2323227, "featuredRunMedia": null, "reactionVideos": [], @@ -11874,7 +11593,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 178, + "teamId": "nef790137", "time": 2323328, "featuredRunMedia": null, "reactionVideos": [], @@ -11892,7 +11611,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 156, + "teamId": "nef789943", "time": 2323482, "featuredRunMedia": null, "reactionVideos": [], @@ -11910,7 +11629,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 258, + "teamId": "nef796543", "time": 2330072, "featuredRunMedia": null, "reactionVideos": [], @@ -11928,7 +11647,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 170, + "teamId": "nef790136", "time": 2330367, "featuredRunMedia": null, "reactionVideos": [], @@ -11946,7 +11665,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 42, + "teamId": "nef788334", "time": 2333189, "featuredRunMedia": null, "reactionVideos": [], @@ -11964,7 +11683,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 168, + "teamId": "nef780681", "time": 2333648, "featuredRunMedia": null, "reactionVideos": [], @@ -11982,7 +11701,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 51, + "teamId": "nef780565", "time": 2340560, "featuredRunMedia": null, "reactionVideos": [], @@ -12000,7 +11719,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 104, + "teamId": "nef780563", "time": 2345272, "featuredRunMedia": null, "reactionVideos": [], @@ -12018,7 +11737,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "nef788328", "time": 2346471, "featuredRunMedia": null, "reactionVideos": [], @@ -12036,7 +11755,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 168, + "teamId": "nef780681", "time": 2347644, "featuredRunMedia": null, "reactionVideos": [], @@ -12054,7 +11773,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 2350813, "featuredRunMedia": null, "reactionVideos": [], @@ -12072,7 +11791,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 119, + "teamId": "nef788028", "time": 2351531, "featuredRunMedia": null, "reactionVideos": [], @@ -12090,7 +11809,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 101, + "teamId": "nef780677", "time": 2354893, "featuredRunMedia": null, "reactionVideos": [], @@ -12108,7 +11827,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 169, + "teamId": "nef788423", "time": 2355575, "featuredRunMedia": null, "reactionVideos": [], @@ -12126,7 +11845,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "nef780540", "time": 2357501, "featuredRunMedia": null, "reactionVideos": [], @@ -12144,7 +11863,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 12, + "teamId": "nef790061", "time": 2365017, "featuredRunMedia": null, "reactionVideos": [], @@ -12162,7 +11881,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 143, + "teamId": "nef790105", "time": 2367079, "featuredRunMedia": null, "reactionVideos": [], @@ -12180,7 +11899,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 112, + "teamId": "nef780304", "time": 2367921, "featuredRunMedia": null, "reactionVideos": [], @@ -12198,7 +11917,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 134, + "teamId": "nef799571", "time": 2375260, "featuredRunMedia": null, "reactionVideos": [], @@ -12216,7 +11935,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 8, + "teamId": "nef788327", "time": 2378868, "featuredRunMedia": null, "reactionVideos": [], @@ -12234,7 +11953,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 150, + "teamId": "nef797076", "time": 2379865, "featuredRunMedia": null, "reactionVideos": [], @@ -12252,7 +11971,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 36, + "teamId": "nef790069", "time": 2379996, "featuredRunMedia": null, "reactionVideos": [], @@ -12270,7 +11989,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 116, + "teamId": "nef799342", "time": 2381267, "featuredRunMedia": null, "reactionVideos": [], @@ -12288,7 +12007,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 27, + "teamId": "nef788419", "time": 2382266, "featuredRunMedia": null, "reactionVideos": [], @@ -12306,7 +12025,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "nef796576", "time": 2386081, "featuredRunMedia": null, "reactionVideos": [], @@ -12324,7 +12043,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 40, + "teamId": "nef796437", "time": 2390825, "featuredRunMedia": null, "reactionVideos": [], @@ -12342,7 +12061,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 2394296, "featuredRunMedia": null, "reactionVideos": [], @@ -12360,7 +12079,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 52, + "teamId": "nef790039", "time": 2395405, "featuredRunMedia": null, "reactionVideos": [], @@ -12378,7 +12097,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 118, + "teamId": "nef790070", "time": 2404676, "featuredRunMedia": null, "reactionVideos": [], @@ -12396,7 +12115,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 2405373, "featuredRunMedia": null, "reactionVideos": [], @@ -12414,7 +12133,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 60, + "teamId": "nef797072", "time": 2407351, "featuredRunMedia": null, "reactionVideos": [], @@ -12432,7 +12151,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 179, + "teamId": "nef790435", "time": 2407373, "featuredRunMedia": null, "reactionVideos": [], @@ -12450,7 +12169,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 2407952, "featuredRunMedia": null, "reactionVideos": [], @@ -12468,7 +12187,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 226, + "teamId": "nef788429", "time": 2427838, "featuredRunMedia": null, "reactionVideos": [], @@ -12486,7 +12205,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 219, + "teamId": "nef790439", "time": 2431776, "featuredRunMedia": null, "reactionVideos": [], @@ -12504,7 +12223,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 54, + "teamId": "nef796577", "time": 2434914, "featuredRunMedia": null, "reactionVideos": [], @@ -12522,7 +12241,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 50, + "teamId": "nef780568", "time": 2436279, "featuredRunMedia": null, "reactionVideos": [], @@ -12540,7 +12259,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 58, + "teamId": "nef790432", "time": 2438906, "featuredRunMedia": null, "reactionVideos": [], @@ -12558,7 +12277,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 19, + "teamId": "nef780674", "time": 2439459, "featuredRunMedia": null, "reactionVideos": [], @@ -12576,7 +12295,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 2443765, "featuredRunMedia": null, "reactionVideos": [], @@ -12594,7 +12313,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 142, + "teamId": "nef780578", "time": 2452368, "featuredRunMedia": null, "reactionVideos": [], @@ -12612,7 +12331,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 114, + "teamId": "nef788337", "time": 2454404, "featuredRunMedia": null, "reactionVideos": [], @@ -12630,7 +12349,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 235, + "teamId": "nef772715", "time": 2456864, "featuredRunMedia": null, "reactionVideos": [], @@ -12648,7 +12367,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2476769, "featuredRunMedia": null, "reactionVideos": [], @@ -12666,7 +12385,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 256, + "teamId": "nef795867", "time": 2483853, "featuredRunMedia": null, "reactionVideos": [], @@ -12684,7 +12403,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 106, + "teamId": "nef780539", "time": 2488478, "featuredRunMedia": null, "reactionVideos": [], @@ -12702,7 +12421,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 139, + "teamId": "nef790101", "time": 2494198, "featuredRunMedia": null, "reactionVideos": [], @@ -12720,7 +12439,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 22, + "teamId": "nef788420", "time": 2494842, "featuredRunMedia": null, "reactionVideos": [], @@ -12738,7 +12457,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 103, + "teamId": "nef780682", "time": 2497101, "featuredRunMedia": null, "reactionVideos": [], @@ -12756,7 +12475,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 35, + "teamId": "nef795852", "time": 2501390, "featuredRunMedia": null, "reactionVideos": [], @@ -12774,7 +12493,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 281, + "teamId": "nef799372", "time": 2503183, "featuredRunMedia": null, "reactionVideos": [], @@ -12792,7 +12511,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 223, + "teamId": "nef795870", "time": 2506988, "featuredRunMedia": null, "reactionVideos": [], @@ -12810,7 +12529,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 173, + "teamId": "nef799349", "time": 2509738, "featuredRunMedia": null, "reactionVideos": [], @@ -12828,7 +12547,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 109, + "teamId": "nef788326", "time": 2510170, "featuredRunMedia": null, "reactionVideos": [], @@ -12846,7 +12565,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 224, + "teamId": "nef772723", "time": 2510708, "featuredRunMedia": null, "reactionVideos": [], @@ -12864,7 +12583,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 19, + "teamId": "nef780674", "time": 2511977, "featuredRunMedia": null, "reactionVideos": [], @@ -12882,7 +12601,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "nef780540", "time": 2513523, "featuredRunMedia": null, "reactionVideos": [], @@ -12900,7 +12619,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 28, + "teamId": "nef788329", "time": 2518603, "featuredRunMedia": null, "reactionVideos": [], @@ -12918,7 +12637,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 249, + "teamId": "nef795866", "time": 2535889, "featuredRunMedia": null, "reactionVideos": [], @@ -12936,7 +12655,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 196, + "teamId": "nef789968", "time": 2536586, "featuredRunMedia": null, "reactionVideos": [], @@ -12954,7 +12673,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 2537761, "featuredRunMedia": null, "reactionVideos": [], @@ -12972,7 +12691,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 199, + "teamId": "nef788031", "time": 2538009, "featuredRunMedia": null, "reactionVideos": [], @@ -12990,7 +12709,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 130, + "teamId": "nef796438", "time": 2542917, "featuredRunMedia": null, "reactionVideos": [], @@ -13008,7 +12727,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 195, + "teamId": "nef799363", "time": 2544941, "featuredRunMedia": null, "reactionVideos": [], @@ -13026,7 +12745,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 153, + "teamId": "nef795858", "time": 2545897, "featuredRunMedia": null, "reactionVideos": [], @@ -13044,7 +12763,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 45, + "teamId": "nef788030", "time": 2555262, "featuredRunMedia": null, "reactionVideos": [], @@ -13062,7 +12781,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 223, + "teamId": "nef795870", "time": 2562202, "featuredRunMedia": null, "reactionVideos": [], @@ -13080,7 +12799,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 9, + "teamId": "nef788320", "time": 2564062, "featuredRunMedia": null, "reactionVideos": [], @@ -13098,7 +12817,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 202, + "teamId": "nef790142", "time": 2565537, "featuredRunMedia": null, "reactionVideos": [], @@ -13116,7 +12835,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 2569269, "featuredRunMedia": null, "reactionVideos": [], @@ -13134,7 +12853,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 2571575, "featuredRunMedia": null, "reactionVideos": [], @@ -13152,7 +12871,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 111, + "teamId": "nef790438", "time": 2573501, "featuredRunMedia": null, "reactionVideos": [], @@ -13170,7 +12889,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 22, + "teamId": "nef788420", "time": 2576513, "featuredRunMedia": null, "reactionVideos": [], @@ -13188,7 +12907,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 19, + "teamId": "nef780674", "time": 2579266, "featuredRunMedia": null, "reactionVideos": [], @@ -13206,7 +12925,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2580426, "featuredRunMedia": null, "reactionVideos": [], @@ -13224,7 +12943,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 195, + "teamId": "nef799363", "time": 2583511, "featuredRunMedia": null, "reactionVideos": [], @@ -13242,7 +12961,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 123, + "teamId": "nef788032", "time": 2605318, "featuredRunMedia": null, "reactionVideos": [], @@ -13260,7 +12979,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 227, + "teamId": "nef799347", "time": 2608610, "featuredRunMedia": null, "reactionVideos": [], @@ -13278,7 +12997,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 97, + "teamId": "nef799345", "time": 2609502, "featuredRunMedia": null, "reactionVideos": [], @@ -13296,7 +13015,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 256, + "teamId": "nef795867", "time": 2610995, "featuredRunMedia": null, "reactionVideos": [], @@ -13314,7 +13033,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 2613545, "featuredRunMedia": null, "reactionVideos": [], @@ -13332,7 +13051,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 73, + "teamId": "nef788345", "time": 2617422, "featuredRunMedia": null, "reactionVideos": [], @@ -13350,7 +13069,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "nef788328", "time": 2624709, "featuredRunMedia": null, "reactionVideos": [], @@ -13368,7 +13087,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 2625931, "featuredRunMedia": null, "reactionVideos": [], @@ -13386,7 +13105,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 45, + "teamId": "nef788030", "time": 2630245, "featuredRunMedia": null, "reactionVideos": [], @@ -13404,7 +13123,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 209, + "teamId": "nef780577", "time": 2630678, "featuredRunMedia": null, "reactionVideos": [], @@ -13422,7 +13141,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 133, + "teamId": "nef788340", "time": 2636445, "featuredRunMedia": null, "reactionVideos": [], @@ -13440,7 +13159,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 100, + "teamId": "nef788063", "time": 2638364, "featuredRunMedia": null, "reactionVideos": [], @@ -13458,7 +13177,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 2656864, "featuredRunMedia": null, "reactionVideos": [], @@ -13476,7 +13195,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 201, + "teamId": "nef796545", "time": 2659359, "featuredRunMedia": null, "reactionVideos": [], @@ -13494,7 +13213,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 115, + "teamId": "nef788026", "time": 2660448, "featuredRunMedia": null, "reactionVideos": [], @@ -13512,7 +13231,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 2660903, "featuredRunMedia": null, "reactionVideos": [], @@ -13530,7 +13249,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 223, + "teamId": "nef795870", "time": 2673508, "featuredRunMedia": null, "reactionVideos": [], @@ -13548,7 +13267,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 149, + "teamId": "nef788395", "time": 2683702, "featuredRunMedia": null, "reactionVideos": [], @@ -13566,7 +13285,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 208, + "teamId": "nef796440", "time": 2685450, "featuredRunMedia": null, "reactionVideos": [], @@ -13584,7 +13303,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 32, + "teamId": "nef788335", "time": 2694249, "featuredRunMedia": null, "reactionVideos": [], @@ -13602,7 +13321,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 209, + "teamId": "nef780577", "time": 2696928, "featuredRunMedia": null, "reactionVideos": [], @@ -13620,7 +13339,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 227, + "teamId": "nef799347", "time": 2717230, "featuredRunMedia": null, "reactionVideos": [], @@ -13638,7 +13357,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 201, + "teamId": "nef796545", "time": 2717267, "featuredRunMedia": null, "reactionVideos": [], @@ -13656,7 +13375,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 239, + "teamId": "nef796550", "time": 2719468, "featuredRunMedia": null, "reactionVideos": [], @@ -13674,7 +13393,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 41, + "teamId": "nef796574", "time": 2719722, "featuredRunMedia": null, "reactionVideos": [], @@ -13692,7 +13411,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "nef788321", "time": 2722178, "featuredRunMedia": null, "reactionVideos": [], @@ -13710,7 +13429,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 213, + "teamId": "nef796544", "time": 2722927, "featuredRunMedia": null, "reactionVideos": [], @@ -13728,7 +13447,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 22, + "teamId": "nef788420", "time": 2726788, "featuredRunMedia": null, "reactionVideos": [], @@ -13746,7 +13465,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 133, + "teamId": "nef788340", "time": 2727805, "featuredRunMedia": null, "reactionVideos": [], @@ -13764,7 +13483,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 2728213, "featuredRunMedia": null, "reactionVideos": [], @@ -13782,7 +13501,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 181, + "teamId": "nef789942", "time": 2730753, "featuredRunMedia": null, "reactionVideos": [], @@ -13800,7 +13519,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 179, + "teamId": "nef790435", "time": 2736542, "featuredRunMedia": null, "reactionVideos": [], @@ -13818,7 +13537,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 41, + "teamId": "nef796574", "time": 2738052, "featuredRunMedia": null, "reactionVideos": [], @@ -13836,7 +13555,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 125, + "teamId": "nef790074", "time": 2747746, "featuredRunMedia": null, "reactionVideos": [], @@ -13854,7 +13573,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 2760817, "featuredRunMedia": null, "reactionVideos": [], @@ -13872,7 +13591,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 8, + "teamId": "nef788327", "time": 2773390, "featuredRunMedia": null, "reactionVideos": [], @@ -13890,7 +13609,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 22, + "teamId": "nef788420", "time": 2797171, "featuredRunMedia": null, "reactionVideos": [], @@ -13908,7 +13627,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 229, + "teamId": "nef799350", "time": 2801295, "featuredRunMedia": null, "reactionVideos": [], @@ -13926,7 +13645,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "nef788321", "time": 2803121, "featuredRunMedia": null, "reactionVideos": [], @@ -13944,7 +13663,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 140, + "teamId": "nef799346", "time": 2806890, "featuredRunMedia": null, "reactionVideos": [], @@ -13962,7 +13681,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 192, + "teamId": "nef780302", "time": 2816530, "featuredRunMedia": null, "reactionVideos": [], @@ -13980,7 +13699,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 241, + "teamId": "nef790434", "time": 2818209, "featuredRunMedia": null, "reactionVideos": [], @@ -13998,7 +13717,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 2818474, "featuredRunMedia": null, "reactionVideos": [], @@ -14016,7 +13735,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 132, + "teamId": "nef780571", "time": 2821230, "featuredRunMedia": null, "reactionVideos": [], @@ -14034,7 +13753,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 223, + "teamId": "nef795870", "time": 2829555, "featuredRunMedia": null, "reactionVideos": [], @@ -14052,7 +13771,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 62, + "teamId": "nef788064", "time": 2840251, "featuredRunMedia": null, "reactionVideos": [], @@ -14070,7 +13789,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 192, + "teamId": "nef780302", "time": 2846223, "featuredRunMedia": null, "reactionVideos": [], @@ -14088,7 +13807,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "nef788390", "time": 2847786, "featuredRunMedia": null, "reactionVideos": [], @@ -14106,7 +13825,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 40, + "teamId": "nef796437", "time": 2848985, "featuredRunMedia": null, "reactionVideos": [], @@ -14124,7 +13843,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 19, + "teamId": "nef780674", "time": 2857272, "featuredRunMedia": null, "reactionVideos": [], @@ -14142,7 +13861,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 64, + "teamId": "nef788352", "time": 2873890, "featuredRunMedia": null, "reactionVideos": [], @@ -14160,7 +13879,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 173, + "teamId": "nef799349", "time": 2877208, "featuredRunMedia": null, "reactionVideos": [], @@ -14178,7 +13897,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 184, + "teamId": "nef772712", "time": 2881077, "featuredRunMedia": null, "reactionVideos": [], @@ -14196,7 +13915,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 64, + "teamId": "nef788352", "time": 2889476, "featuredRunMedia": null, "reactionVideos": [], @@ -14214,7 +13933,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 168, + "teamId": "nef780681", "time": 2894579, "featuredRunMedia": null, "reactionVideos": [], @@ -14232,7 +13951,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 152, + "teamId": "nef780683", "time": 2900171, "featuredRunMedia": null, "reactionVideos": [], @@ -14250,7 +13969,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 8, + "teamId": "nef788327", "time": 2902657, "featuredRunMedia": null, "reactionVideos": [], @@ -14268,7 +13987,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 98, + "teamId": "nef788330", "time": 2905342, "featuredRunMedia": null, "reactionVideos": [], @@ -14286,7 +14005,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 2913806, "featuredRunMedia": null, "reactionVideos": [], @@ -14304,7 +14023,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 151, + "teamId": "nef799343", "time": 2918188, "featuredRunMedia": null, "reactionVideos": [], @@ -14322,7 +14041,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 242, + "teamId": "nef772722", "time": 2919267, "featuredRunMedia": null, "reactionVideos": [], @@ -14340,7 +14059,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 153, + "teamId": "nef795858", "time": 2920068, "featuredRunMedia": null, "reactionVideos": [], @@ -14358,7 +14077,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 132, + "teamId": "nef780571", "time": 2920235, "featuredRunMedia": null, "reactionVideos": [], @@ -14376,7 +14095,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 75, + "teamId": "nef790071", "time": 2925854, "featuredRunMedia": null, "reactionVideos": [], @@ -14394,7 +14113,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 257, + "teamId": "nef797082", "time": 2936694, "featuredRunMedia": null, "reactionVideos": [], @@ -14412,7 +14131,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 185, + "teamId": "nef790138", "time": 2940464, "featuredRunMedia": null, "reactionVideos": [], @@ -14430,7 +14149,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 276, + "teamId": "nef795871", "time": 2949003, "featuredRunMedia": null, "reactionVideos": [], @@ -14448,7 +14167,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 2961662, "featuredRunMedia": null, "reactionVideos": [], @@ -14466,7 +14185,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 224, + "teamId": "nef772723", "time": 2967832, "featuredRunMedia": null, "reactionVideos": [], @@ -14484,7 +14203,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "nef780668", "time": 2977886, "featuredRunMedia": null, "reactionVideos": [], @@ -14502,7 +14221,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 177, + "teamId": "nef799366", "time": 2983191, "featuredRunMedia": null, "reactionVideos": [], @@ -14520,7 +14239,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "nef799340", "time": 2988300, "featuredRunMedia": null, "reactionVideos": [], @@ -14538,7 +14257,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "nef796577", "time": 2989138, "featuredRunMedia": null, "reactionVideos": [], @@ -14556,7 +14275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 10, + "teamId": "nef780666", "time": 2989522, "featuredRunMedia": null, "reactionVideos": [], @@ -14574,7 +14293,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 235, + "teamId": "nef772715", "time": 2992926, "featuredRunMedia": null, "reactionVideos": [], @@ -14592,7 +14311,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 105, + "teamId": "nef790040", "time": 2999821, "featuredRunMedia": null, "reactionVideos": [], @@ -14610,7 +14329,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 275, + "teamId": "nef790048", "time": 3007801, "featuredRunMedia": null, "reactionVideos": [], @@ -14628,7 +14347,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 133, + "teamId": "nef788340", "time": 3008893, "featuredRunMedia": null, "reactionVideos": [], @@ -14646,7 +14365,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 71, + "teamId": "nef795855", "time": 3012284, "featuredRunMedia": null, "reactionVideos": [], @@ -14664,7 +14383,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 84, + "teamId": "nef780564", "time": 3017065, "featuredRunMedia": null, "reactionVideos": [], @@ -14682,7 +14401,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 3028681, "featuredRunMedia": null, "reactionVideos": [], @@ -14700,7 +14419,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 221, + "teamId": "nef788067", "time": 3029633, "featuredRunMedia": null, "reactionVideos": [], @@ -14718,7 +14437,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 232, + "teamId": "nef780596", "time": 3040295, "featuredRunMedia": null, "reactionVideos": [], @@ -14736,7 +14455,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 142, + "teamId": "nef780578", "time": 3048759, "featuredRunMedia": null, "reactionVideos": [], @@ -14754,7 +14473,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 232, + "teamId": "nef780596", "time": 3049680, "featuredRunMedia": null, "reactionVideos": [], @@ -14772,7 +14491,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 144, + "teamId": "nef780575", "time": 3049916, "featuredRunMedia": null, "reactionVideos": [], @@ -14790,7 +14509,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 162, + "teamId": "nef788431", "time": 3056254, "featuredRunMedia": null, "reactionVideos": [], @@ -14808,7 +14527,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 3059397, "featuredRunMedia": null, "reactionVideos": [], @@ -14826,7 +14545,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 15, + "teamId": "nef780675", "time": 3064311, "featuredRunMedia": null, "reactionVideos": [], @@ -14844,7 +14563,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 182, + "teamId": "nef790133", "time": 3072188, "featuredRunMedia": null, "reactionVideos": [], @@ -14862,7 +14581,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 248, + "teamId": "nef799355", "time": 3072293, "featuredRunMedia": null, "reactionVideos": [], @@ -14880,7 +14599,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 124, + "teamId": "nef795857", "time": 3073625, "featuredRunMedia": null, "reactionVideos": [], @@ -14898,7 +14617,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 106, + "teamId": "nef780539", "time": 3076952, "featuredRunMedia": null, "reactionVideos": [], @@ -14916,7 +14635,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 3082345, "featuredRunMedia": null, "reactionVideos": [], @@ -14934,7 +14653,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 181, + "teamId": "nef789942", "time": 3084043, "featuredRunMedia": null, "reactionVideos": [], @@ -14952,7 +14671,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 150, + "teamId": "nef797076", "time": 3085573, "featuredRunMedia": null, "reactionVideos": [], @@ -14970,7 +14689,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 40, + "teamId": "nef796437", "time": 3088463, "featuredRunMedia": null, "reactionVideos": [], @@ -14988,7 +14707,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 148, + "teamId": "nef797077", "time": 3093982, "featuredRunMedia": null, "reactionVideos": [], @@ -15006,7 +14725,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "nef788319", "time": 3094345, "featuredRunMedia": null, "reactionVideos": [], @@ -15024,7 +14743,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "nef780668", "time": 3099037, "featuredRunMedia": null, "reactionVideos": [], @@ -15042,7 +14761,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 112, + "teamId": "nef780304", "time": 3099308, "featuredRunMedia": null, "reactionVideos": [], @@ -15060,7 +14779,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 215, + "teamId": "nef772714", "time": 3112386, "featuredRunMedia": null, "reactionVideos": [], @@ -15078,7 +14797,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "nef788328", "time": 3112540, "featuredRunMedia": null, "reactionVideos": [], @@ -15096,7 +14815,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 130, + "teamId": "nef796438", "time": 3116154, "featuredRunMedia": null, "reactionVideos": [], @@ -15114,7 +14833,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 7, + "teamId": "nef788325", "time": 3119174, "featuredRunMedia": null, "reactionVideos": [], @@ -15132,7 +14851,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 62, + "teamId": "nef788064", "time": 3126021, "featuredRunMedia": null, "reactionVideos": [], @@ -15150,7 +14869,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 267, + "teamId": "nef795864", "time": 3126454, "featuredRunMedia": null, "reactionVideos": [], @@ -15168,7 +14887,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 84, + "teamId": "nef780564", "time": 3130105, "featuredRunMedia": null, "reactionVideos": [], @@ -15186,7 +14905,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 221, + "teamId": "nef788067", "time": 3134122, "featuredRunMedia": null, "reactionVideos": [], @@ -15204,7 +14923,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 183, + "teamId": "nef788062", "time": 3135889, "featuredRunMedia": null, "reactionVideos": [], @@ -15222,7 +14941,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 104, + "teamId": "nef780563", "time": 3141696, "featuredRunMedia": null, "reactionVideos": [], @@ -15240,7 +14959,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 46, + "teamId": "nef788027", "time": 3145063, "featuredRunMedia": null, "reactionVideos": [], @@ -15258,7 +14977,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 3146129, "featuredRunMedia": null, "reactionVideos": [], @@ -15276,7 +14995,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 165, + "teamId": "nef788060", "time": 3149280, "featuredRunMedia": null, "reactionVideos": [], @@ -15294,7 +15013,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 176, + "teamId": "nef795856", "time": 3150333, "featuredRunMedia": null, "reactionVideos": [], @@ -15312,7 +15031,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 3158047, "featuredRunMedia": null, "reactionVideos": [], @@ -15330,7 +15049,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 65, + "teamId": "nef790104", "time": 3160518, "featuredRunMedia": null, "reactionVideos": [], @@ -15348,7 +15067,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 40, + "teamId": "nef796437", "time": 3177072, "featuredRunMedia": null, "reactionVideos": [], @@ -15366,7 +15085,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 127, + "teamId": "nef799360", "time": 3181132, "featuredRunMedia": null, "reactionVideos": [], @@ -15384,7 +15103,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 130, + "teamId": "nef796438", "time": 3189310, "featuredRunMedia": null, "reactionVideos": [], @@ -15402,7 +15121,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 216, + "teamId": "nef772721", "time": 3200038, "featuredRunMedia": null, "reactionVideos": [], @@ -15420,7 +15139,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 226, + "teamId": "nef788429", "time": 3201620, "featuredRunMedia": null, "reactionVideos": [], @@ -15438,7 +15157,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 86, + "teamId": "nef780570", "time": 3205601, "featuredRunMedia": null, "reactionVideos": [], @@ -15456,7 +15175,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 3211520, "featuredRunMedia": null, "reactionVideos": [], @@ -15474,7 +15193,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 101, + "teamId": "nef780677", "time": 3211769, "featuredRunMedia": null, "reactionVideos": [], @@ -15492,7 +15211,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 3213000, "featuredRunMedia": null, "reactionVideos": [], @@ -15510,7 +15229,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 217, + "teamId": "nef780309", "time": 3215033, "featuredRunMedia": null, "reactionVideos": [], @@ -15528,7 +15247,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 124, + "teamId": "nef795857", "time": 3215262, "featuredRunMedia": null, "reactionVideos": [], @@ -15546,7 +15265,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 40, + "teamId": "nef796437", "time": 3220965, "featuredRunMedia": null, "reactionVideos": [], @@ -15564,7 +15283,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 232, + "teamId": "nef780596", "time": 3221639, "featuredRunMedia": null, "reactionVideos": [], @@ -15582,7 +15301,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 3223655, "featuredRunMedia": null, "reactionVideos": [], @@ -15600,7 +15319,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 21, + "teamId": "nef790436", "time": 3252665, "featuredRunMedia": null, "reactionVideos": [], @@ -15618,7 +15337,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 154, + "teamId": "nef791357", "time": 3257436, "featuredRunMedia": null, "reactionVideos": [], @@ -15636,7 +15355,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 178, + "teamId": "nef790137", "time": 3261341, "featuredRunMedia": null, "reactionVideos": [], @@ -15654,7 +15373,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 37, + "teamId": "nef788422", "time": 3263658, "featuredRunMedia": null, "reactionVideos": [], @@ -15672,7 +15391,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 92, + "teamId": "nef780672", "time": 3264221, "featuredRunMedia": null, "reactionVideos": [], @@ -15690,7 +15409,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 247, + "teamId": "nef796557", "time": 3265138, "featuredRunMedia": null, "reactionVideos": [], @@ -15708,7 +15427,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 256, + "teamId": "nef795867", "time": 3267301, "featuredRunMedia": null, "reactionVideos": [], @@ -15726,7 +15445,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 211, + "teamId": "nef797083", "time": 3279649, "featuredRunMedia": null, "reactionVideos": [], @@ -15744,7 +15463,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 249, + "teamId": "nef795866", "time": 3279879, "featuredRunMedia": null, "reactionVideos": [], @@ -15762,7 +15481,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "nef790038", "time": 3295805, "featuredRunMedia": null, "reactionVideos": [], @@ -15780,7 +15499,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 216, + "teamId": "nef772721", "time": 3296128, "featuredRunMedia": null, "reactionVideos": [], @@ -15798,7 +15517,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 186, + "teamId": "nef780306", "time": 3296830, "featuredRunMedia": null, "reactionVideos": [], @@ -15816,7 +15535,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 160, + "teamId": "nef799357", "time": 3297725, "featuredRunMedia": null, "reactionVideos": [], @@ -15834,7 +15553,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 89, + "teamId": "nef780574", "time": 3316172, "featuredRunMedia": null, "reactionVideos": [], @@ -15852,7 +15571,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 155, + "teamId": "nef796442", "time": 3327819, "featuredRunMedia": null, "reactionVideos": [], @@ -15870,7 +15589,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 221, + "teamId": "nef788067", "time": 3329133, "featuredRunMedia": null, "reactionVideos": [], @@ -15888,7 +15607,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 236, + "teamId": "nef789838", "time": 3331182, "featuredRunMedia": null, "reactionVideos": [], @@ -15906,7 +15625,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "nef780566", "time": 3343500, "featuredRunMedia": null, "reactionVideos": [], @@ -15924,7 +15643,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 26, + "teamId": "nef788425", "time": 3347757, "featuredRunMedia": null, "reactionVideos": [], @@ -15942,7 +15661,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 65, + "teamId": "nef790104", "time": 3348478, "featuredRunMedia": null, "reactionVideos": [], @@ -15960,7 +15679,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "nef788056", "time": 3350403, "featuredRunMedia": null, "reactionVideos": [], @@ -15978,7 +15697,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 3354117, "featuredRunMedia": null, "reactionVideos": [], @@ -15996,7 +15715,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 256, + "teamId": "nef795867", "time": 3356491, "featuredRunMedia": null, "reactionVideos": [], @@ -16014,7 +15733,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 65, + "teamId": "nef790104", "time": 3375889, "featuredRunMedia": null, "reactionVideos": [], @@ -16032,7 +15751,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 206, + "teamId": "nef799353", "time": 3386508, "featuredRunMedia": null, "reactionVideos": [], @@ -16050,7 +15769,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 188, + "teamId": "nef788066", "time": 3405103, "featuredRunMedia": null, "reactionVideos": [], @@ -16068,7 +15787,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "nef780674", "time": 3408541, "featuredRunMedia": null, "reactionVideos": [], @@ -16086,7 +15805,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 232, + "teamId": "nef780596", "time": 3422792, "featuredRunMedia": null, "reactionVideos": [], @@ -16104,7 +15823,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 125, + "teamId": "nef790074", "time": 3423237, "featuredRunMedia": null, "reactionVideos": [], @@ -16122,7 +15841,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 68, + "teamId": "nef790103", "time": 3431205, "featuredRunMedia": null, "reactionVideos": [], @@ -16140,7 +15859,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 159, + "teamId": "nef780576", "time": 3433004, "featuredRunMedia": null, "reactionVideos": [], @@ -16158,7 +15877,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 3447114, "featuredRunMedia": null, "reactionVideos": [], @@ -16176,7 +15895,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 3447369, "featuredRunMedia": null, "reactionVideos": [], @@ -16194,7 +15913,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 126, + "teamId": "nef791356", "time": 3452720, "featuredRunMedia": null, "reactionVideos": [], @@ -16212,7 +15931,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 3454643, "featuredRunMedia": null, "reactionVideos": [], @@ -16230,7 +15949,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 126, + "teamId": "nef791356", "time": 3468023, "featuredRunMedia": null, "reactionVideos": [], @@ -16248,7 +15967,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 93, + "teamId": "nef799341", "time": 3477270, "featuredRunMedia": null, "reactionVideos": [], @@ -16266,7 +15985,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "nef790071", "time": 3483222, "featuredRunMedia": null, "reactionVideos": [], @@ -16284,7 +16003,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 152, + "teamId": "nef780683", "time": 3487906, "featuredRunMedia": null, "reactionVideos": [], @@ -16302,7 +16021,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 190, + "teamId": "nef795860", "time": 3494172, "featuredRunMedia": null, "reactionVideos": [], @@ -16320,7 +16039,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "nef788345", "time": 3503040, "featuredRunMedia": null, "reactionVideos": [], @@ -16338,7 +16057,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 37, + "teamId": "nef788422", "time": 3505126, "featuredRunMedia": null, "reactionVideos": [], @@ -16356,7 +16075,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "nef788056", "time": 3508125, "featuredRunMedia": null, "reactionVideos": [], @@ -16374,7 +16093,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "nef780674", "time": 3508269, "featuredRunMedia": null, "reactionVideos": [], @@ -16392,7 +16111,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 3509919, "featuredRunMedia": null, "reactionVideos": [], @@ -16410,7 +16129,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 56, + "teamId": "nef789937", "time": 3522694, "featuredRunMedia": null, "reactionVideos": [], @@ -16428,7 +16147,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 199, + "teamId": "nef788031", "time": 3534661, "featuredRunMedia": null, "reactionVideos": [], @@ -16446,7 +16165,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 162, + "teamId": "nef788431", "time": 3535768, "featuredRunMedia": null, "reactionVideos": [], @@ -16464,7 +16183,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 206, + "teamId": "nef799353", "time": 3537079, "featuredRunMedia": null, "reactionVideos": [], @@ -16482,7 +16201,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 3537552, "featuredRunMedia": null, "reactionVideos": [], @@ -16500,7 +16219,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 3543546, "featuredRunMedia": null, "reactionVideos": [], @@ -16518,7 +16237,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 175, + "teamId": "nef795853", "time": 3549363, "featuredRunMedia": null, "reactionVideos": [], @@ -16536,7 +16255,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 3552197, "featuredRunMedia": null, "reactionVideos": [], @@ -16554,7 +16273,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 3558833, "featuredRunMedia": null, "reactionVideos": [], @@ -16572,7 +16291,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 200, + "teamId": "nef799344", "time": 3566243, "featuredRunMedia": null, "reactionVideos": [], @@ -16590,7 +16309,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 256, + "teamId": "nef795867", "time": 3566570, "featuredRunMedia": null, "reactionVideos": [], @@ -16608,7 +16327,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 69, + "teamId": "nef796578", "time": 3580439, "featuredRunMedia": null, "reactionVideos": [], @@ -16626,7 +16345,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 203, + "teamId": "nef790134", "time": 3582327, "featuredRunMedia": null, "reactionVideos": [], @@ -16644,7 +16363,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 32, + "teamId": "nef788335", "time": 3585480, "featuredRunMedia": null, "reactionVideos": [], @@ -16662,7 +16381,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 124, + "teamId": "nef795857", "time": 3587815, "featuredRunMedia": null, "reactionVideos": [], @@ -16680,7 +16399,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 174, + "teamId": "nef772711", "time": 3590540, "featuredRunMedia": null, "reactionVideos": [], @@ -16698,7 +16417,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 216, + "teamId": "nef772721", "time": 3591455, "featuredRunMedia": null, "reactionVideos": [], @@ -16716,7 +16435,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 177, + "teamId": "nef799366", "time": 3591990, "featuredRunMedia": null, "reactionVideos": [], @@ -16734,7 +16453,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 152, + "teamId": "nef780683", "time": 3606479, "featuredRunMedia": null, "reactionVideos": [], @@ -16752,7 +16471,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 221, + "teamId": "nef788067", "time": 3613139, "featuredRunMedia": null, "reactionVideos": [], @@ -16770,7 +16489,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 36, + "teamId": "nef790069", "time": 3616521, "featuredRunMedia": null, "reactionVideos": [], @@ -16788,7 +16507,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 3620844, "featuredRunMedia": null, "reactionVideos": [], @@ -16806,7 +16525,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 206, + "teamId": "nef799353", "time": 3626491, "featuredRunMedia": null, "reactionVideos": [], @@ -16824,7 +16543,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 81, + "teamId": "nef788421", "time": 3641949, "featuredRunMedia": null, "reactionVideos": [], @@ -16842,7 +16561,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 74, + "teamId": "nef788057", "time": 3648901, "featuredRunMedia": null, "reactionVideos": [], @@ -16860,7 +16579,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 246, + "teamId": "nef799354", "time": 3649512, "featuredRunMedia": null, "reactionVideos": [], @@ -16878,7 +16597,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 218, + "teamId": "nef788945", "time": 3660563, "featuredRunMedia": null, "reactionVideos": [], @@ -16896,7 +16615,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 3661114, "featuredRunMedia": null, "reactionVideos": [], @@ -16914,7 +16633,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 194, + "teamId": "nef790135", "time": 3671648, "featuredRunMedia": null, "reactionVideos": [], @@ -16932,7 +16651,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 3696982, "featuredRunMedia": null, "reactionVideos": [], @@ -16950,7 +16669,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 3697086, "featuredRunMedia": null, "reactionVideos": [], @@ -16968,7 +16687,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 37, + "teamId": "nef788422", "time": 3698197, "featuredRunMedia": null, "reactionVideos": [], @@ -16986,7 +16705,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 105, + "teamId": "nef790040", "time": 3703959, "featuredRunMedia": null, "reactionVideos": [], @@ -17004,7 +16723,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 3719064, "featuredRunMedia": null, "reactionVideos": [], @@ -17022,7 +16741,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 133, + "teamId": "nef788340", "time": 3728366, "featuredRunMedia": null, "reactionVideos": [], @@ -17040,7 +16759,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 104, + "teamId": "nef780563", "time": 3730954, "featuredRunMedia": null, "reactionVideos": [], @@ -17058,7 +16777,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 3732031, "featuredRunMedia": null, "reactionVideos": [], @@ -17076,7 +16795,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 170, + "teamId": "nef790136", "time": 3737222, "featuredRunMedia": null, "reactionVideos": [], @@ -17094,7 +16813,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 144, + "teamId": "nef780575", "time": 3760700, "featuredRunMedia": null, "reactionVideos": [], @@ -17112,7 +16831,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 157, + "teamId": "nef790139", "time": 3768381, "featuredRunMedia": null, "reactionVideos": [], @@ -17130,7 +16849,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 92, + "teamId": "nef780672", "time": 3772395, "featuredRunMedia": null, "reactionVideos": [], @@ -17148,7 +16867,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 202, + "teamId": "nef790142", "time": 3773357, "featuredRunMedia": null, "reactionVideos": [], @@ -17166,7 +16885,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 3780764, "featuredRunMedia": null, "reactionVideos": [], @@ -17184,7 +16903,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 3783905, "featuredRunMedia": null, "reactionVideos": [], @@ -17202,7 +16921,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 217, + "teamId": "nef780309", "time": 3784090, "featuredRunMedia": null, "reactionVideos": [], @@ -17220,7 +16939,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 16, + "teamId": "nef788424", "time": 3784213, "featuredRunMedia": null, "reactionVideos": [], @@ -17238,7 +16957,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 245, + "teamId": "nef799364", "time": 3785551, "featuredRunMedia": null, "reactionVideos": [], @@ -17256,7 +16975,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 231, + "teamId": "nef789946", "time": 3785960, "featuredRunMedia": null, "reactionVideos": [], @@ -17274,7 +16993,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 25, + "teamId": "nef780669", "time": 3787399, "featuredRunMedia": null, "reactionVideos": [], @@ -17292,7 +17011,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 221, + "teamId": "nef788067", "time": 3793700, "featuredRunMedia": null, "reactionVideos": [], @@ -17310,7 +17029,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 170, + "teamId": "nef790136", "time": 3807003, "featuredRunMedia": null, "reactionVideos": [], @@ -17328,7 +17047,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 5, + "teamId": "nef780665", "time": 3809523, "featuredRunMedia": null, "reactionVideos": [], @@ -17346,7 +17065,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 3825528, "featuredRunMedia": null, "reactionVideos": [], @@ -17364,7 +17083,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 244, + "teamId": "nef797093", "time": 3825783, "featuredRunMedia": null, "reactionVideos": [], @@ -17382,7 +17101,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 253, + "teamId": "nef772717", "time": 3828713, "featuredRunMedia": null, "reactionVideos": [], @@ -17400,7 +17119,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 214, + "teamId": "nef780573", "time": 3830562, "featuredRunMedia": null, "reactionVideos": [], @@ -17418,7 +17137,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 178, + "teamId": "nef790137", "time": 3835684, "featuredRunMedia": null, "reactionVideos": [], @@ -17436,7 +17155,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 117, + "teamId": "nef788350", "time": 3840135, "featuredRunMedia": null, "reactionVideos": [], @@ -17454,7 +17173,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 3840841, "featuredRunMedia": null, "reactionVideos": [], @@ -17472,7 +17191,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 210, + "teamId": "nef795863", "time": 3851553, "featuredRunMedia": null, "reactionVideos": [], @@ -17490,7 +17209,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 48, + "teamId": "nef780538", "time": 3855981, "featuredRunMedia": null, "reactionVideos": [], @@ -17508,7 +17227,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 182, + "teamId": "nef790133", "time": 3870322, "featuredRunMedia": null, "reactionVideos": [], @@ -17526,7 +17245,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 3871428, "featuredRunMedia": null, "reactionVideos": [], @@ -17544,7 +17263,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 267, + "teamId": "nef795864", "time": 3881383, "featuredRunMedia": null, "reactionVideos": [], @@ -17562,7 +17281,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 207, + "teamId": "nef790044", "time": 3898880, "featuredRunMedia": null, "reactionVideos": [], @@ -17580,7 +17299,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 223, + "teamId": "nef795870", "time": 3900348, "featuredRunMedia": null, "reactionVideos": [], @@ -17598,7 +17317,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "nef788321", "time": 3905437, "featuredRunMedia": null, "reactionVideos": [], @@ -17616,7 +17335,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 21, + "teamId": "nef790436", "time": 3905663, "featuredRunMedia": null, "reactionVideos": [], @@ -17634,7 +17353,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 157, + "teamId": "nef790139", "time": 3915659, "featuredRunMedia": null, "reactionVideos": [], @@ -17652,7 +17371,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "nef790039", "time": 3939707, "featuredRunMedia": null, "reactionVideos": [], @@ -17670,7 +17389,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 227, + "teamId": "nef799347", "time": 3948858, "featuredRunMedia": null, "reactionVideos": [], @@ -17688,7 +17407,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 245, + "teamId": "nef799364", "time": 3950208, "featuredRunMedia": null, "reactionVideos": [], @@ -17706,7 +17425,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 3952088, "featuredRunMedia": null, "reactionVideos": [], @@ -17724,7 +17443,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 25, + "teamId": "nef780669", "time": 3959209, "featuredRunMedia": null, "reactionVideos": [], @@ -17742,7 +17461,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 130, + "teamId": "nef796438", "time": 3969655, "featuredRunMedia": null, "reactionVideos": [], @@ -17760,7 +17479,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 24, + "teamId": "nef788332", "time": 3971415, "featuredRunMedia": null, "reactionVideos": [], @@ -17778,7 +17497,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 109, + "teamId": "nef788326", "time": 3971823, "featuredRunMedia": null, "reactionVideos": [], @@ -17796,7 +17515,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 120, + "teamId": "nef788342", "time": 3980551, "featuredRunMedia": null, "reactionVideos": [], @@ -17814,7 +17533,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 151, + "teamId": "nef799343", "time": 3982282, "featuredRunMedia": null, "reactionVideos": [], @@ -17832,7 +17551,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 96, + "teamId": "nef799358", "time": 3985666, "featuredRunMedia": null, "reactionVideos": [], @@ -17850,7 +17569,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 244, + "teamId": "nef797093", "time": 3986746, "featuredRunMedia": null, "reactionVideos": [], @@ -17868,7 +17587,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 142, + "teamId": "nef780578", "time": 3989000, "featuredRunMedia": null, "reactionVideos": [], @@ -17886,7 +17605,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 48, + "teamId": "nef780538", "time": 3991307, "featuredRunMedia": null, "reactionVideos": [], @@ -17904,7 +17623,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 137, + "teamId": "nef788392", "time": 3993416, "featuredRunMedia": null, "reactionVideos": [], @@ -17922,7 +17641,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 228, + "teamId": "nef796547", "time": 3999372, "featuredRunMedia": null, "reactionVideos": [], @@ -17940,7 +17659,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 4004260, "featuredRunMedia": null, "reactionVideos": [], @@ -17958,7 +17677,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 55, + "teamId": "nef788344", "time": 4011222, "featuredRunMedia": null, "reactionVideos": [], @@ -17976,7 +17695,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 4011627, "featuredRunMedia": null, "reactionVideos": [], @@ -17994,7 +17713,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 191, + "teamId": "nef790140", "time": 4020841, "featuredRunMedia": null, "reactionVideos": [], @@ -18012,7 +17731,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 163, + "teamId": "nef797089", "time": 4022877, "featuredRunMedia": null, "reactionVideos": [], @@ -18030,7 +17749,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 36, + "teamId": "nef790069", "time": 4035153, "featuredRunMedia": null, "reactionVideos": [], @@ -18048,7 +17767,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 227, + "teamId": "nef799347", "time": 4038377, "featuredRunMedia": null, "reactionVideos": [], @@ -18066,7 +17785,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 14, + "teamId": "nef780537", "time": 4039045, "featuredRunMedia": null, "reactionVideos": [], @@ -18084,7 +17803,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 209, + "teamId": "nef780577", "time": 4072316, "featuredRunMedia": null, "reactionVideos": [], @@ -18102,7 +17821,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "nef780668", "time": 4074130, "featuredRunMedia": null, "reactionVideos": [], @@ -18120,7 +17839,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 203, + "teamId": "nef790134", "time": 4075110, "featuredRunMedia": null, "reactionVideos": [], @@ -18138,7 +17857,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 132, + "teamId": "nef780571", "time": 4075755, "featuredRunMedia": null, "reactionVideos": [], @@ -18156,7 +17875,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 228, + "teamId": "nef796547", "time": 4076695, "featuredRunMedia": null, "reactionVideos": [], @@ -18174,7 +17893,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 274, + "teamId": "nef790046", "time": 4083681, "featuredRunMedia": null, "reactionVideos": [], @@ -18192,7 +17911,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 61, + "teamId": "nef790068", "time": 4090738, "featuredRunMedia": null, "reactionVideos": [], @@ -18210,7 +17929,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 4092438, "featuredRunMedia": null, "reactionVideos": [], @@ -18228,7 +17947,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 178, + "teamId": "nef790137", "time": 4099221, "featuredRunMedia": null, "reactionVideos": [], @@ -18246,7 +17965,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 166, + "teamId": "nef788353", "time": 4112116, "featuredRunMedia": null, "reactionVideos": [], @@ -18264,7 +17983,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 225, + "teamId": "nef797094", "time": 4113541, "featuredRunMedia": null, "reactionVideos": [], @@ -18282,7 +18001,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 2, + "teamId": "nef788318", "time": 4114364, "featuredRunMedia": null, "reactionVideos": [], @@ -18300,7 +18019,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 4117074, "featuredRunMedia": null, "reactionVideos": [], @@ -18318,7 +18037,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 138, + "teamId": "nef788338", "time": 4119577, "featuredRunMedia": null, "reactionVideos": [], @@ -18336,7 +18055,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 4128397, "featuredRunMedia": null, "reactionVideos": [], @@ -18354,7 +18073,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 55, + "teamId": "nef788344", "time": 4130080, "featuredRunMedia": null, "reactionVideos": [], @@ -18372,7 +18091,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 140, + "teamId": "nef799346", "time": 4131740, "featuredRunMedia": null, "reactionVideos": [], @@ -18390,7 +18109,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 4131886, "featuredRunMedia": null, "reactionVideos": [], @@ -18408,7 +18127,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 214, + "teamId": "nef780573", "time": 4139309, "featuredRunMedia": null, "reactionVideos": [], @@ -18426,7 +18145,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 129, + "teamId": "nef788427", "time": 4144577, "featuredRunMedia": null, "reactionVideos": [], @@ -18444,7 +18163,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 118, + "teamId": "nef790070", "time": 4144659, "featuredRunMedia": null, "reactionVideos": [], @@ -18462,7 +18181,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "nef780668", "time": 4145202, "featuredRunMedia": null, "reactionVideos": [], @@ -18480,7 +18199,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 226, + "teamId": "nef788429", "time": 4156972, "featuredRunMedia": null, "reactionVideos": [], @@ -18498,7 +18217,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 4164325, "featuredRunMedia": null, "reactionVideos": [], @@ -18516,7 +18235,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 274, + "teamId": "nef790046", "time": 4164479, "featuredRunMedia": null, "reactionVideos": [], @@ -18534,7 +18253,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 166, + "teamId": "nef788353", "time": 4167106, "featuredRunMedia": null, "reactionVideos": [], @@ -18552,7 +18271,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 126, + "teamId": "nef791356", "time": 4172631, "featuredRunMedia": null, "reactionVideos": [], @@ -18570,7 +18289,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 245, + "teamId": "nef799364", "time": 4177268, "featuredRunMedia": null, "reactionVideos": [], @@ -18588,7 +18307,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 227, + "teamId": "nef799347", "time": 4177334, "featuredRunMedia": null, "reactionVideos": [], @@ -18606,7 +18325,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 109, + "teamId": "nef788326", "time": 4182700, "featuredRunMedia": null, "reactionVideos": [], @@ -18624,7 +18343,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 118, + "teamId": "nef790070", "time": 4187003, "featuredRunMedia": null, "reactionVideos": [], @@ -18642,7 +18361,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 4191791, "featuredRunMedia": null, "reactionVideos": [], @@ -18660,7 +18379,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 167, + "teamId": "nef788058", "time": 4200405, "featuredRunMedia": null, "reactionVideos": [], @@ -18678,7 +18397,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 104, + "teamId": "nef780563", "time": 4201226, "featuredRunMedia": null, "reactionVideos": [], @@ -18696,7 +18415,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 165, + "teamId": "nef788060", "time": 4224157, "featuredRunMedia": null, "reactionVideos": [], @@ -18714,7 +18433,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 4224375, "featuredRunMedia": null, "reactionVideos": [], @@ -18732,7 +18451,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 151, + "teamId": "nef799343", "time": 4225571, "featuredRunMedia": null, "reactionVideos": [], @@ -18750,7 +18469,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "nef790039", "time": 4232093, "featuredRunMedia": null, "reactionVideos": [], @@ -18768,7 +18487,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 72, + "teamId": "nef790102", "time": 4232712, "featuredRunMedia": null, "reactionVideos": [], @@ -18786,7 +18505,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 246, + "teamId": "nef799354", "time": 4233848, "featuredRunMedia": null, "reactionVideos": [], @@ -18804,7 +18523,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 4239009, "featuredRunMedia": null, "reactionVideos": [], @@ -18822,7 +18541,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 247, + "teamId": "nef796557", "time": 4240063, "featuredRunMedia": null, "reactionVideos": [], @@ -18840,7 +18559,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 227, + "teamId": "nef799347", "time": 4242405, "featuredRunMedia": null, "reactionVideos": [], @@ -18858,7 +18577,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 114, + "teamId": "nef788337", "time": 4246978, "featuredRunMedia": null, "reactionVideos": [], @@ -18876,7 +18595,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 17, + "teamId": "nef788324", "time": 4251364, "featuredRunMedia": null, "reactionVideos": [], @@ -18894,7 +18613,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 4255915, "featuredRunMedia": null, "reactionVideos": [], @@ -18912,7 +18631,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 183, + "teamId": "nef788062", "time": 4280458, "featuredRunMedia": null, "reactionVideos": [], @@ -18930,7 +18649,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 55, + "teamId": "nef788344", "time": 4290782, "featuredRunMedia": null, "reactionVideos": [], @@ -18948,7 +18667,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 140, + "teamId": "nef799346", "time": 4299394, "featuredRunMedia": null, "reactionVideos": [], @@ -18966,7 +18685,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 80, + "teamId": "nef788430", "time": 4301416, "featuredRunMedia": null, "reactionVideos": [], @@ -18984,7 +18703,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 114, + "teamId": "nef788337", "time": 4306951, "featuredRunMedia": null, "reactionVideos": [], @@ -19002,7 +18721,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 39, + "teamId": "nef788390", "time": 4317271, "featuredRunMedia": null, "reactionVideos": [], @@ -19020,7 +18739,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 88, + "teamId": "nef788065", "time": 4335147, "featuredRunMedia": null, "reactionVideos": [], @@ -19038,7 +18757,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 41, + "teamId": "nef796574", "time": 4348345, "featuredRunMedia": null, "reactionVideos": [], @@ -19056,7 +18775,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "nef780543", "time": 4365386, "featuredRunMedia": null, "reactionVideos": [], @@ -19074,7 +18793,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 80, + "teamId": "nef788430", "time": 4366179, "featuredRunMedia": null, "reactionVideos": [], @@ -19092,7 +18811,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 218, + "teamId": "nef788945", "time": 4381603, "featuredRunMedia": null, "reactionVideos": [], @@ -19110,7 +18829,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 140, + "teamId": "nef799346", "time": 4392235, "featuredRunMedia": null, "reactionVideos": [], @@ -19128,7 +18847,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 4400021, "featuredRunMedia": null, "reactionVideos": [], @@ -19146,7 +18865,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "nef788323", "time": 4405771, "featuredRunMedia": null, "reactionVideos": [], @@ -19164,7 +18883,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 210, + "teamId": "nef795863", "time": 4422632, "featuredRunMedia": null, "reactionVideos": [], @@ -19182,7 +18901,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 118, + "teamId": "nef790070", "time": 4428816, "featuredRunMedia": null, "reactionVideos": [], @@ -19200,7 +18919,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "nef788318", "time": 4431864, "featuredRunMedia": null, "reactionVideos": [], @@ -19218,7 +18937,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 4440504, "featuredRunMedia": null, "reactionVideos": [], @@ -19236,7 +18955,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 4445016, "featuredRunMedia": null, "reactionVideos": [], @@ -19254,7 +18973,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 60, + "teamId": "nef797072", "time": 4447341, "featuredRunMedia": null, "reactionVideos": [], @@ -19272,7 +18991,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 231, + "teamId": "nef789946", "time": 4454813, "featuredRunMedia": null, "reactionVideos": [], @@ -19290,7 +19009,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 149, + "teamId": "nef788395", "time": 4457066, "featuredRunMedia": null, "reactionVideos": [], @@ -19308,7 +19027,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 158, + "teamId": "nef788068", "time": 4459490, "featuredRunMedia": null, "reactionVideos": [], @@ -19326,7 +19045,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 122, + "teamId": "nef790437", "time": 4464788, "featuredRunMedia": null, "reactionVideos": [], @@ -19344,7 +19063,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 4474379, "featuredRunMedia": null, "reactionVideos": [], @@ -19362,7 +19081,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 28, + "teamId": "nef788329", "time": 4474792, "featuredRunMedia": null, "reactionVideos": [], @@ -19380,7 +19099,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 149, + "teamId": "nef788395", "time": 4478294, "featuredRunMedia": null, "reactionVideos": [], @@ -19398,7 +19117,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 228, + "teamId": "nef796547", "time": 4479554, "featuredRunMedia": null, "reactionVideos": [], @@ -19416,7 +19135,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 101, + "teamId": "nef780677", "time": 4481375, "featuredRunMedia": null, "reactionVideos": [], @@ -19434,7 +19153,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 119, + "teamId": "nef788028", "time": 4481823, "featuredRunMedia": null, "reactionVideos": [], @@ -19452,7 +19171,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 209, + "teamId": "nef780577", "time": 4495557, "featuredRunMedia": null, "reactionVideos": [], @@ -19470,7 +19189,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 178, + "teamId": "nef790137", "time": 4501320, "featuredRunMedia": null, "reactionVideos": [], @@ -19488,7 +19207,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 195, + "teamId": "nef799363", "time": 4505768, "featuredRunMedia": null, "reactionVideos": [], @@ -19506,7 +19225,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 4514305, "featuredRunMedia": null, "reactionVideos": [], @@ -19524,7 +19243,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 184, + "teamId": "nef772712", "time": 4515584, "featuredRunMedia": null, "reactionVideos": [], @@ -19542,7 +19261,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 91, + "teamId": "nef788061", "time": 4519895, "featuredRunMedia": null, "reactionVideos": [], @@ -19560,7 +19279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "nef788323", "time": 4520750, "featuredRunMedia": null, "reactionVideos": [], @@ -19578,7 +19297,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 174, + "teamId": "nef772711", "time": 4520858, "featuredRunMedia": null, "reactionVideos": [], @@ -19596,7 +19315,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 4537425, "featuredRunMedia": null, "reactionVideos": [], @@ -19614,7 +19333,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 42, + "teamId": "nef788334", "time": 4537831, "featuredRunMedia": null, "reactionVideos": [], @@ -19632,7 +19351,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 183, + "teamId": "nef788062", "time": 4548388, "featuredRunMedia": null, "reactionVideos": [], @@ -19650,7 +19369,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 197, + "teamId": "nef788351", "time": 4554261, "featuredRunMedia": null, "reactionVideos": [], @@ -19668,7 +19387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 36, + "teamId": "nef790069", "time": 4568350, "featuredRunMedia": null, "reactionVideos": [], @@ -19686,7 +19405,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 4570816, "featuredRunMedia": null, "reactionVideos": [], @@ -19704,7 +19423,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 281, + "teamId": "nef799372", "time": 4597845, "featuredRunMedia": null, "reactionVideos": [], @@ -19722,7 +19441,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 140, + "teamId": "nef799346", "time": 4601871, "featuredRunMedia": null, "reactionVideos": [], @@ -19740,7 +19459,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 4620165, "featuredRunMedia": null, "reactionVideos": [], @@ -19758,7 +19477,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 84, + "teamId": "nef780564", "time": 4626536, "featuredRunMedia": null, "reactionVideos": [], @@ -19776,7 +19495,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 15, + "teamId": "nef780675", "time": 4628603, "featuredRunMedia": null, "reactionVideos": [], @@ -19794,7 +19513,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 4629294, "featuredRunMedia": null, "reactionVideos": [], @@ -19812,7 +19531,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 151, + "teamId": "nef799343", "time": 4630691, "featuredRunMedia": null, "reactionVideos": [], @@ -19830,7 +19549,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 31, + "teamId": "nef790067", "time": 4635355, "featuredRunMedia": null, "reactionVideos": [], @@ -19848,7 +19567,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 4637156, "featuredRunMedia": null, "reactionVideos": [], @@ -19866,7 +19585,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "nef796578", "time": 4641829, "featuredRunMedia": null, "reactionVideos": [], @@ -19884,7 +19603,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 201, + "teamId": "nef796545", "time": 4644728, "featuredRunMedia": null, "reactionVideos": [], @@ -19902,7 +19621,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 81, + "teamId": "nef788421", "time": 4648562, "featuredRunMedia": null, "reactionVideos": [], @@ -19920,7 +19639,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 6, + "teamId": "nef788319", "time": 4651658, "featuredRunMedia": null, "reactionVideos": [], @@ -19938,7 +19657,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 166, + "teamId": "nef788353", "time": 4656449, "featuredRunMedia": null, "reactionVideos": [], @@ -19956,7 +19675,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 4662674, "featuredRunMedia": null, "reactionVideos": [], @@ -19974,7 +19693,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 84, + "teamId": "nef780564", "time": 4663979, "featuredRunMedia": null, "reactionVideos": [], @@ -19992,7 +19711,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 4664661, "featuredRunMedia": null, "reactionVideos": [], @@ -20010,7 +19729,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "nef780543", "time": 4667603, "featuredRunMedia": null, "reactionVideos": [], @@ -20028,7 +19747,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 23, + "teamId": "nef780541", "time": 4674623, "featuredRunMedia": null, "reactionVideos": [], @@ -20046,7 +19765,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 4679185, "featuredRunMedia": null, "reactionVideos": [], @@ -20064,7 +19783,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 108, + "teamId": "nef772710", "time": 4741304, "featuredRunMedia": null, "reactionVideos": [], @@ -20082,7 +19801,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 4754948, "featuredRunMedia": null, "reactionVideos": [], @@ -20100,7 +19819,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 66, + "teamId": "nef780671", "time": 4756970, "featuredRunMedia": null, "reactionVideos": [], @@ -20118,7 +19837,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 73, + "teamId": "nef788345", "time": 4780681, "featuredRunMedia": null, "reactionVideos": [], @@ -20136,7 +19855,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 196, + "teamId": "nef789968", "time": 4780693, "featuredRunMedia": null, "reactionVideos": [], @@ -20154,7 +19873,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 61, + "teamId": "nef790068", "time": 4793148, "featuredRunMedia": null, "reactionVideos": [], @@ -20172,7 +19891,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 4793170, "featuredRunMedia": null, "reactionVideos": [], @@ -20190,7 +19909,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 231, + "teamId": "nef789946", "time": 4804390, "featuredRunMedia": null, "reactionVideos": [], @@ -20208,7 +19927,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 184, + "teamId": "nef772712", "time": 4807583, "featuredRunMedia": null, "reactionVideos": [], @@ -20226,7 +19945,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 4807594, "featuredRunMedia": null, "reactionVideos": [], @@ -20244,7 +19963,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 193, + "teamId": "nef799348", "time": 4811241, "featuredRunMedia": null, "reactionVideos": [], @@ -20262,7 +19981,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 56, + "teamId": "nef789937", "time": 4813645, "featuredRunMedia": null, "reactionVideos": [], @@ -20280,7 +19999,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 46, + "teamId": "nef788027", "time": 4814072, "featuredRunMedia": null, "reactionVideos": [], @@ -20298,7 +20017,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 15, + "teamId": "nef780675", "time": 4815470, "featuredRunMedia": null, "reactionVideos": [], @@ -20316,7 +20035,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 89, + "teamId": "nef780574", "time": 4826755, "featuredRunMedia": null, "reactionVideos": [], @@ -20334,7 +20053,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 128, + "teamId": "nef789939", "time": 4829870, "featuredRunMedia": null, "reactionVideos": [], @@ -20352,7 +20071,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 12, + "teamId": "nef790061", "time": 4833529, "featuredRunMedia": null, "reactionVideos": [], @@ -20370,7 +20089,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 4845208, "featuredRunMedia": null, "reactionVideos": [], @@ -20388,7 +20107,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 4, + "teamId": "nef788418", "time": 4846342, "featuredRunMedia": null, "reactionVideos": [], @@ -20406,7 +20125,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 29, + "teamId": "nef796575", "time": 4848784, "featuredRunMedia": null, "reactionVideos": [], @@ -20424,7 +20143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "nef788323", "time": 4851906, "featuredRunMedia": null, "reactionVideos": [], @@ -20442,7 +20161,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 4855566, "featuredRunMedia": null, "reactionVideos": [], @@ -20460,7 +20179,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 105, + "teamId": "nef790040", "time": 4865234, "featuredRunMedia": null, "reactionVideos": [], @@ -20478,7 +20197,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 4870601, "featuredRunMedia": null, "reactionVideos": [], @@ -20496,7 +20215,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 2, + "teamId": "nef788318", "time": 4879907, "featuredRunMedia": null, "reactionVideos": [], @@ -20514,7 +20233,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 166, + "teamId": "nef788353", "time": 4888492, "featuredRunMedia": null, "reactionVideos": [], @@ -20532,7 +20251,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 136, + "teamId": "nef790041", "time": 4888829, "featuredRunMedia": null, "reactionVideos": [], @@ -20550,7 +20269,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 4909161, "featuredRunMedia": null, "reactionVideos": [], @@ -20568,7 +20287,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 57, + "teamId": "nef796576", "time": 4920016, "featuredRunMedia": null, "reactionVideos": [], @@ -20586,7 +20305,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 46, + "teamId": "nef788027", "time": 4921235, "featuredRunMedia": null, "reactionVideos": [], @@ -20604,7 +20323,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 166, + "teamId": "nef788353", "time": 4937760, "featuredRunMedia": null, "reactionVideos": [], @@ -20622,7 +20341,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 4940543, "featuredRunMedia": null, "reactionVideos": [], @@ -20640,7 +20359,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 243, + "teamId": "nef797084", "time": 4940726, "featuredRunMedia": null, "reactionVideos": [], @@ -20658,7 +20377,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 145, + "teamId": "nef780680", "time": 4946509, "featuredRunMedia": null, "reactionVideos": [], @@ -20676,7 +20395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 4949663, "featuredRunMedia": null, "reactionVideos": [], @@ -20694,7 +20413,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 183, + "teamId": "nef788062", "time": 4951328, "featuredRunMedia": null, "reactionVideos": [], @@ -20712,7 +20431,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 145, + "teamId": "nef780680", "time": 4954397, "featuredRunMedia": null, "reactionVideos": [], @@ -20730,7 +20449,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 4955742, "featuredRunMedia": null, "reactionVideos": [], @@ -20748,7 +20467,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 214, + "teamId": "nef780573", "time": 4957933, "featuredRunMedia": null, "reactionVideos": [], @@ -20766,7 +20485,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 28, + "teamId": "nef788329", "time": 4962743, "featuredRunMedia": null, "reactionVideos": [], @@ -20784,7 +20503,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 6, + "teamId": "nef788319", "time": 4965987, "featuredRunMedia": null, "reactionVideos": [], @@ -20802,7 +20521,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 151, + "teamId": "nef799343", "time": 4972583, "featuredRunMedia": null, "reactionVideos": [], @@ -20820,7 +20539,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 279, + "teamId": "nef799365", "time": 4979008, "featuredRunMedia": null, "reactionVideos": [], @@ -20838,7 +20557,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 154, + "teamId": "nef791357", "time": 4979753, "featuredRunMedia": null, "reactionVideos": [], @@ -20856,7 +20575,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 4981190, "featuredRunMedia": null, "reactionVideos": [], @@ -20874,7 +20593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 4990127, "featuredRunMedia": null, "reactionVideos": [], @@ -20892,7 +20611,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "nef790061", "time": 4992277, "featuredRunMedia": null, "reactionVideos": [], @@ -20910,7 +20629,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 228, + "teamId": "nef796547", "time": 4999929, "featuredRunMedia": null, "reactionVideos": [], @@ -20928,7 +20647,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 81, + "teamId": "nef788421", "time": 5004931, "featuredRunMedia": null, "reactionVideos": [], @@ -20946,7 +20665,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 138, + "teamId": "nef788338", "time": 5011032, "featuredRunMedia": null, "reactionVideos": [], @@ -20964,7 +20683,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 132, + "teamId": "nef780571", "time": 5022463, "featuredRunMedia": null, "reactionVideos": [], @@ -20982,7 +20701,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 5029048, "featuredRunMedia": null, "reactionVideos": [], @@ -21000,7 +20719,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 5040630, "featuredRunMedia": null, "reactionVideos": [], @@ -21018,7 +20737,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 5041463, "featuredRunMedia": null, "reactionVideos": [], @@ -21036,7 +20755,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 170, + "teamId": "nef790136", "time": 5044330, "featuredRunMedia": null, "reactionVideos": [], @@ -21054,7 +20773,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 181, + "teamId": "nef789942", "time": 5052875, "featuredRunMedia": null, "reactionVideos": [], @@ -21072,7 +20791,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 261, + "teamId": "nef799352", "time": 5056501, "featuredRunMedia": null, "reactionVideos": [], @@ -21090,7 +20809,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 159, + "teamId": "nef780576", "time": 5059175, "featuredRunMedia": null, "reactionVideos": [], @@ -21108,7 +20827,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 94, + "teamId": "nef772709", "time": 5071520, "featuredRunMedia": null, "reactionVideos": [], @@ -21126,7 +20845,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 182, + "teamId": "nef790133", "time": 5075799, "featuredRunMedia": null, "reactionVideos": [], @@ -21144,7 +20863,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 5076273, "featuredRunMedia": null, "reactionVideos": [], @@ -21162,7 +20881,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 5080009, "featuredRunMedia": null, "reactionVideos": [], @@ -21180,7 +20899,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 200, + "teamId": "nef799344", "time": 5087274, "featuredRunMedia": null, "reactionVideos": [], @@ -21198,7 +20917,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 102, + "teamId": "nef780567", "time": 5088464, "featuredRunMedia": null, "reactionVideos": [], @@ -21216,7 +20935,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "nef790039", "time": 5094683, "featuredRunMedia": null, "reactionVideos": [], @@ -21234,7 +20953,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "nef788424", "time": 5101037, "featuredRunMedia": null, "reactionVideos": [], @@ -21252,7 +20971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 5114425, "featuredRunMedia": null, "reactionVideos": [], @@ -21270,7 +20989,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 5117098, "featuredRunMedia": null, "reactionVideos": [], @@ -21288,7 +21007,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 12, + "teamId": "nef790061", "time": 5125299, "featuredRunMedia": null, "reactionVideos": [], @@ -21306,7 +21025,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 258, + "teamId": "nef796543", "time": 5136345, "featuredRunMedia": null, "reactionVideos": [], @@ -21324,7 +21043,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 178, + "teamId": "nef790137", "time": 5137485, "featuredRunMedia": null, "reactionVideos": [], @@ -21342,7 +21061,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 114, + "teamId": "nef788337", "time": 5139902, "featuredRunMedia": null, "reactionVideos": [], @@ -21360,7 +21079,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 4, + "teamId": "nef788418", "time": 5145791, "featuredRunMedia": null, "reactionVideos": [], @@ -21378,7 +21097,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 5147608, "featuredRunMedia": null, "reactionVideos": [], @@ -21396,7 +21115,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 5152374, "featuredRunMedia": null, "reactionVideos": [], @@ -21414,7 +21133,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 122, + "teamId": "nef790437", "time": 5153560, "featuredRunMedia": null, "reactionVideos": [], @@ -21432,7 +21151,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 30, + "teamId": "nef780676", "time": 5154628, "featuredRunMedia": null, "reactionVideos": [], @@ -21450,7 +21169,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 170, + "teamId": "nef790136", "time": 5156325, "featuredRunMedia": null, "reactionVideos": [], @@ -21468,7 +21187,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 206, + "teamId": "nef799353", "time": 5157022, "featuredRunMedia": null, "reactionVideos": [], @@ -21486,7 +21205,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 5181664, "featuredRunMedia": null, "reactionVideos": [], @@ -21504,7 +21223,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "nef788325", "time": 5191619, "featuredRunMedia": null, "reactionVideos": [], @@ -21522,7 +21241,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 253, + "teamId": "nef772717", "time": 5205274, "featuredRunMedia": null, "reactionVideos": [], @@ -21540,7 +21259,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 101, + "teamId": "nef780677", "time": 5239030, "featuredRunMedia": null, "reactionVideos": [], @@ -21558,7 +21277,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 116, + "teamId": "nef799342", "time": 5248553, "featuredRunMedia": null, "reactionVideos": [], @@ -21576,7 +21295,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 225, + "teamId": "nef797094", "time": 5249352, "featuredRunMedia": null, "reactionVideos": [], @@ -21594,7 +21313,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 5255324, "featuredRunMedia": null, "reactionVideos": [], @@ -21612,7 +21331,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 114, + "teamId": "nef788337", "time": 5256086, "featuredRunMedia": null, "reactionVideos": [], @@ -21630,7 +21349,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "nef780543", "time": 5256194, "featuredRunMedia": null, "reactionVideos": [], @@ -21648,7 +21367,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 43, + "teamId": "nef788426", "time": 5269152, "featuredRunMedia": null, "reactionVideos": [], @@ -21666,7 +21385,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 145, + "teamId": "nef780680", "time": 5273863, "featuredRunMedia": null, "reactionVideos": [], @@ -21684,7 +21403,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "nef788325", "time": 5280580, "featuredRunMedia": null, "reactionVideos": [], @@ -21702,7 +21421,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 5287339, "featuredRunMedia": null, "reactionVideos": [], @@ -21720,7 +21439,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 141, + "teamId": "nef788346", "time": 5290621, "featuredRunMedia": null, "reactionVideos": [], @@ -21738,7 +21457,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 178, + "teamId": "nef790137", "time": 5292237, "featuredRunMedia": null, "reactionVideos": [], @@ -21756,7 +21475,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 152, + "teamId": "nef780683", "time": 5294218, "featuredRunMedia": null, "reactionVideos": [], @@ -21774,7 +21493,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 5305655, "featuredRunMedia": null, "reactionVideos": [], @@ -21792,7 +21511,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 46, + "teamId": "nef788027", "time": 5314011, "featuredRunMedia": null, "reactionVideos": [], @@ -21810,7 +21529,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 85, + "teamId": "nef797071", "time": 5315033, "featuredRunMedia": null, "reactionVideos": [], @@ -21828,7 +21547,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 157, + "teamId": "nef790139", "time": 5323272, "featuredRunMedia": null, "reactionVideos": [], @@ -21846,7 +21565,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 234, + "teamId": "nef790050", "time": 5327283, "featuredRunMedia": null, "reactionVideos": [], @@ -21864,7 +21583,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 153, + "teamId": "nef795858", "time": 5368184, "featuredRunMedia": null, "reactionVideos": [], @@ -21882,7 +21601,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 81, + "teamId": "nef788421", "time": 5383881, "featuredRunMedia": null, "reactionVideos": [], @@ -21900,7 +21619,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 251, + "teamId": "nef790047", "time": 5388136, "featuredRunMedia": null, "reactionVideos": [], @@ -21918,7 +21637,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 175, + "teamId": "nef795853", "time": 5389474, "featuredRunMedia": null, "reactionVideos": [], @@ -21936,7 +21655,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 61, + "teamId": "nef790068", "time": 5390075, "featuredRunMedia": null, "reactionVideos": [], @@ -21954,7 +21673,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "nef790071", "time": 5394362, "featuredRunMedia": null, "reactionVideos": [], @@ -21972,7 +21691,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 253, + "teamId": "nef772717", "time": 5398787, "featuredRunMedia": null, "reactionVideos": [], @@ -21990,7 +21709,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 4, + "teamId": "nef788418", "time": 5401148, "featuredRunMedia": null, "reactionVideos": [], @@ -22008,7 +21727,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 260, + "teamId": "nef797081", "time": 5411703, "featuredRunMedia": null, "reactionVideos": [], @@ -22026,7 +21745,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 34, + "teamId": "nef788331", "time": 5413634, "featuredRunMedia": null, "reactionVideos": [], @@ -22044,7 +21763,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 5419400, "featuredRunMedia": null, "reactionVideos": [], @@ -22062,7 +21781,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 153, + "teamId": "nef795858", "time": 5435763, "featuredRunMedia": null, "reactionVideos": [], @@ -22080,7 +21799,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 34, + "teamId": "nef788331", "time": 5443099, "featuredRunMedia": null, "reactionVideos": [], @@ -22098,7 +21817,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 5448125, "featuredRunMedia": null, "reactionVideos": [], @@ -22116,7 +21835,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 47, + "teamId": "nef780670", "time": 5459252, "featuredRunMedia": null, "reactionVideos": [], @@ -22134,7 +21853,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 178, + "teamId": "nef790137", "time": 5474829, "featuredRunMedia": null, "reactionVideos": [], @@ -22152,7 +21871,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 166, + "teamId": "nef788353", "time": 5488425, "featuredRunMedia": null, "reactionVideos": [], @@ -22170,7 +21889,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 5498793, "featuredRunMedia": null, "reactionVideos": [], @@ -22188,7 +21907,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 17, + "teamId": "nef788324", "time": 5500691, "featuredRunMedia": null, "reactionVideos": [], @@ -22206,7 +21925,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 94, + "teamId": "nef772709", "time": 5500774, "featuredRunMedia": null, "reactionVideos": [], @@ -22224,7 +21943,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 84, + "teamId": "nef780564", "time": 5502001, "featuredRunMedia": null, "reactionVideos": [], @@ -22242,7 +21961,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 220, + "teamId": "nef780684", "time": 5520674, "featuredRunMedia": null, "reactionVideos": [], @@ -22260,7 +21979,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 85, + "teamId": "nef797071", "time": 5524569, "featuredRunMedia": null, "reactionVideos": [], @@ -22278,7 +21997,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 31, + "teamId": "nef790067", "time": 5536850, "featuredRunMedia": null, "reactionVideos": [], @@ -22296,7 +22015,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 89, + "teamId": "nef780574", "time": 5542160, "featuredRunMedia": null, "reactionVideos": [], @@ -22314,7 +22033,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 47, + "teamId": "nef780670", "time": 5549643, "featuredRunMedia": null, "reactionVideos": [], @@ -22332,7 +22051,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 102, + "teamId": "nef780567", "time": 5550339, "featuredRunMedia": null, "reactionVideos": [], @@ -22350,7 +22069,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 241, + "teamId": "nef790434", "time": 5552551, "featuredRunMedia": null, "reactionVideos": [], @@ -22368,7 +22087,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 123, + "teamId": "nef788032", "time": 5556717, "featuredRunMedia": null, "reactionVideos": [], @@ -22386,7 +22105,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 251, + "teamId": "nef790047", "time": 5561501, "featuredRunMedia": null, "reactionVideos": [], @@ -22404,7 +22123,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "nef788324", "time": 5564696, "featuredRunMedia": null, "reactionVideos": [], @@ -22422,7 +22141,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 5568367, "featuredRunMedia": null, "reactionVideos": [], @@ -22440,7 +22159,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 80, + "teamId": "nef788430", "time": 5571749, "featuredRunMedia": null, "reactionVideos": [], @@ -22458,7 +22177,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "nef790039", "time": 5581431, "featuredRunMedia": null, "reactionVideos": [], @@ -22476,7 +22195,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 5584007, "featuredRunMedia": null, "reactionVideos": [], @@ -22494,7 +22213,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 72, + "teamId": "nef790102", "time": 5591639, "featuredRunMedia": null, "reactionVideos": [], @@ -22512,7 +22231,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 20, + "teamId": "nef780540", "time": 5611818, "featuredRunMedia": null, "reactionVideos": [], @@ -22530,7 +22249,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 175, + "teamId": "nef795853", "time": 5621457, "featuredRunMedia": null, "reactionVideos": [], @@ -22548,7 +22267,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 5629051, "featuredRunMedia": null, "reactionVideos": [], @@ -22566,7 +22285,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 5634638, "featuredRunMedia": null, "reactionVideos": [], @@ -22584,7 +22303,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 156, + "teamId": "nef789943", "time": 5647861, "featuredRunMedia": null, "reactionVideos": [], @@ -22602,7 +22321,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 5658120, "featuredRunMedia": null, "reactionVideos": [], @@ -22620,7 +22339,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 23, + "teamId": "nef780541", "time": 5661005, "featuredRunMedia": null, "reactionVideos": [], @@ -22638,7 +22357,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 156, + "teamId": "nef789943", "time": 5686679, "featuredRunMedia": null, "reactionVideos": [], @@ -22656,7 +22375,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 5688915, "featuredRunMedia": null, "reactionVideos": [], @@ -22674,7 +22393,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 14, + "teamId": "nef780537", "time": 5707757, "featuredRunMedia": null, "reactionVideos": [], @@ -22692,7 +22411,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 198, + "teamId": "nef790141", "time": 5710714, "featuredRunMedia": null, "reactionVideos": [], @@ -22710,7 +22429,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 207, + "teamId": "nef790044", "time": 5715180, "featuredRunMedia": null, "reactionVideos": [], @@ -22728,7 +22447,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 5723274, "featuredRunMedia": null, "reactionVideos": [], @@ -22746,7 +22465,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 5724714, "featuredRunMedia": null, "reactionVideos": [], @@ -22764,7 +22483,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "nef788335", "time": 5732200, "featuredRunMedia": null, "reactionVideos": [], @@ -22782,7 +22501,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "nef788324", "time": 5745984, "featuredRunMedia": null, "reactionVideos": [], @@ -22800,7 +22519,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "nef796437", "time": 5752150, "featuredRunMedia": null, "reactionVideos": [], @@ -22818,7 +22537,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 5756011, "featuredRunMedia": null, "reactionVideos": [], @@ -22836,7 +22555,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 47, + "teamId": "nef780670", "time": 5757813, "featuredRunMedia": null, "reactionVideos": [], @@ -22854,7 +22573,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 10, + "teamId": "nef780666", "time": 5760372, "featuredRunMedia": null, "reactionVideos": [], @@ -22872,7 +22591,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 9, + "teamId": "nef788320", "time": 5764180, "featuredRunMedia": null, "reactionVideos": [], @@ -22890,7 +22609,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 5775229, "featuredRunMedia": null, "reactionVideos": [], @@ -22908,7 +22627,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 125, + "teamId": "nef790074", "time": 5775340, "featuredRunMedia": null, "reactionVideos": [], @@ -22926,7 +22645,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 5782580, "featuredRunMedia": null, "reactionVideos": [], @@ -22944,7 +22663,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 5784513, "featuredRunMedia": null, "reactionVideos": [], @@ -22962,7 +22681,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 5785697, "featuredRunMedia": null, "reactionVideos": [], @@ -22980,7 +22699,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 177, + "teamId": "nef799366", "time": 5786231, "featuredRunMedia": null, "reactionVideos": [], @@ -22998,7 +22717,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 211, + "teamId": "nef797083", "time": 5808205, "featuredRunMedia": null, "reactionVideos": [], @@ -23016,7 +22735,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 5814538, "featuredRunMedia": null, "reactionVideos": [], @@ -23034,7 +22753,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 134, + "teamId": "nef799571", "time": 5814831, "featuredRunMedia": null, "reactionVideos": [], @@ -23052,7 +22771,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 14, + "teamId": "nef780537", "time": 5817338, "featuredRunMedia": null, "reactionVideos": [], @@ -23070,7 +22789,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 20, + "teamId": "nef780540", "time": 5821209, "featuredRunMedia": null, "reactionVideos": [], @@ -23088,7 +22807,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 274, + "teamId": "nef790046", "time": 5830885, "featuredRunMedia": null, "reactionVideos": [], @@ -23106,7 +22825,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 147, + "teamId": "nef799361", "time": 5835745, "featuredRunMedia": null, "reactionVideos": [], @@ -23124,7 +22843,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 5848569, "featuredRunMedia": null, "reactionVideos": [], @@ -23142,7 +22861,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 5856915, "featuredRunMedia": null, "reactionVideos": [], @@ -23160,7 +22879,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 230, + "teamId": "nef797080", "time": 5858279, "featuredRunMedia": null, "reactionVideos": [], @@ -23178,7 +22897,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 5858432, "featuredRunMedia": null, "reactionVideos": [], @@ -23196,7 +22915,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 250, + "teamId": "nef789941", "time": 5867586, "featuredRunMedia": null, "reactionVideos": [], @@ -23214,7 +22933,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 125, + "teamId": "nef790074", "time": 5888243, "featuredRunMedia": null, "reactionVideos": [], @@ -23232,7 +22951,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 131, + "teamId": "nef788432", "time": 5898540, "featuredRunMedia": null, "reactionVideos": [], @@ -23250,7 +22969,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 194, + "teamId": "nef790135", "time": 5901462, "featuredRunMedia": null, "reactionVideos": [], @@ -23268,7 +22987,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 123, + "teamId": "nef788032", "time": 5902941, "featuredRunMedia": null, "reactionVideos": [], @@ -23286,7 +23005,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 5904443, "featuredRunMedia": null, "reactionVideos": [], @@ -23304,7 +23023,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 5911436, "featuredRunMedia": null, "reactionVideos": [], @@ -23322,7 +23041,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 162, + "teamId": "nef788431", "time": 5922615, "featuredRunMedia": null, "reactionVideos": [], @@ -23340,7 +23059,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 212, + "teamId": "nef791228", "time": 5926363, "featuredRunMedia": null, "reactionVideos": [], @@ -23358,7 +23077,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 259, + "teamId": "nef799356", "time": 5933960, "featuredRunMedia": null, "reactionVideos": [], @@ -23376,7 +23095,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 47, + "teamId": "nef780670", "time": 5938194, "featuredRunMedia": null, "reactionVideos": [], @@ -23394,7 +23113,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 184, + "teamId": "nef772712", "time": 5940177, "featuredRunMedia": null, "reactionVideos": [], @@ -23412,7 +23131,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 236, + "teamId": "nef789838", "time": 5944236, "featuredRunMedia": null, "reactionVideos": [], @@ -23430,7 +23149,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 29, + "teamId": "nef796575", "time": 5945387, "featuredRunMedia": null, "reactionVideos": [], @@ -23448,7 +23167,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 25, + "teamId": "nef780669", "time": 5982360, "featuredRunMedia": null, "reactionVideos": [], @@ -23466,7 +23185,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "nef790039", "time": 5996093, "featuredRunMedia": null, "reactionVideos": [], @@ -23484,7 +23203,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 2, + "teamId": "nef788318", "time": 6017887, "featuredRunMedia": null, "reactionVideos": [], @@ -23502,7 +23221,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 84, + "teamId": "nef780564", "time": 6026128, "featuredRunMedia": null, "reactionVideos": [], @@ -23520,7 +23239,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 6043460, "featuredRunMedia": null, "reactionVideos": [], @@ -23538,7 +23257,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 27, + "teamId": "nef788419", "time": 6059935, "featuredRunMedia": null, "reactionVideos": [], @@ -23556,7 +23275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 6061071, "featuredRunMedia": null, "reactionVideos": [], @@ -23574,7 +23293,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 6062984, "featuredRunMedia": null, "reactionVideos": [], @@ -23592,7 +23311,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 227, + "teamId": "nef799347", "time": 6080912, "featuredRunMedia": null, "reactionVideos": [], @@ -23610,7 +23329,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 6081723, "featuredRunMedia": null, "reactionVideos": [], @@ -23628,7 +23347,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 110, + "teamId": "nef780305", "time": 6085418, "featuredRunMedia": null, "reactionVideos": [], @@ -23646,7 +23365,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 6086159, "featuredRunMedia": null, "reactionVideos": [], @@ -23664,7 +23383,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 146, + "teamId": "nef790042", "time": 6089128, "featuredRunMedia": null, "reactionVideos": [], @@ -23682,7 +23401,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 177, + "teamId": "nef799366", "time": 6091850, "featuredRunMedia": null, "reactionVideos": [], @@ -23700,7 +23419,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 6112114, "featuredRunMedia": null, "reactionVideos": [], @@ -23718,7 +23437,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 6120912, "featuredRunMedia": null, "reactionVideos": [], @@ -23736,7 +23455,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 6123625, "featuredRunMedia": null, "reactionVideos": [], @@ -23754,7 +23473,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 230, + "teamId": "nef797080", "time": 6125322, "featuredRunMedia": null, "reactionVideos": [], @@ -23772,7 +23491,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 27, + "teamId": "nef788419", "time": 6127227, "featuredRunMedia": null, "reactionVideos": [], @@ -23790,7 +23509,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 6130184, "featuredRunMedia": null, "reactionVideos": [], @@ -23808,7 +23527,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 49, + "teamId": "nef780673", "time": 6132611, "featuredRunMedia": null, "reactionVideos": [], @@ -23826,7 +23545,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "nef788059", "time": 6151203, "featuredRunMedia": null, "reactionVideos": [], @@ -23844,7 +23563,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 6152395, "featuredRunMedia": null, "reactionVideos": [], @@ -23862,7 +23581,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 241, + "teamId": "nef790434", "time": 6155544, "featuredRunMedia": null, "reactionVideos": [], @@ -23880,7 +23599,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 174, + "teamId": "nef772711", "time": 6156614, "featuredRunMedia": null, "reactionVideos": [], @@ -23898,7 +23617,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 81, + "teamId": "nef788421", "time": 6158122, "featuredRunMedia": null, "reactionVideos": [], @@ -23916,7 +23635,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 227, + "teamId": "nef799347", "time": 6158242, "featuredRunMedia": null, "reactionVideos": [], @@ -23934,7 +23653,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 24, + "teamId": "nef788332", "time": 6158793, "featuredRunMedia": null, "reactionVideos": [], @@ -23952,7 +23671,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 211, + "teamId": "nef797083", "time": 6159097, "featuredRunMedia": null, "reactionVideos": [], @@ -23970,7 +23689,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 6163510, "featuredRunMedia": null, "reactionVideos": [], @@ -23988,7 +23707,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 6165285, "featuredRunMedia": null, "reactionVideos": [], @@ -24006,7 +23725,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 77, + "teamId": "nef788059", "time": 6166775, "featuredRunMedia": null, "reactionVideos": [], @@ -24024,7 +23743,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 84, + "teamId": "nef780564", "time": 6170261, "featuredRunMedia": null, "reactionVideos": [], @@ -24042,7 +23761,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 37, + "teamId": "nef788422", "time": 6175251, "featuredRunMedia": null, "reactionVideos": [], @@ -24060,7 +23779,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 192, + "teamId": "nef780302", "time": 6181546, "featuredRunMedia": null, "reactionVideos": [], @@ -24078,7 +23797,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 6188250, "featuredRunMedia": null, "reactionVideos": [], @@ -24096,7 +23815,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 188, + "teamId": "nef788066", "time": 6196543, "featuredRunMedia": null, "reactionVideos": [], @@ -24114,7 +23833,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 44, + "teamId": "nef790073", "time": 6204555, "featuredRunMedia": null, "reactionVideos": [], @@ -24132,7 +23851,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 67, + "teamId": "nef790100", "time": 6212790, "featuredRunMedia": null, "reactionVideos": [], @@ -24150,7 +23869,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 25, + "teamId": "nef780669", "time": 6216928, "featuredRunMedia": null, "reactionVideos": [], @@ -24168,7 +23887,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 166, + "teamId": "nef788353", "time": 6217852, "featuredRunMedia": null, "reactionVideos": [], @@ -24186,7 +23905,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 6226926, "featuredRunMedia": null, "reactionVideos": [], @@ -24204,7 +23923,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 105, + "teamId": "nef790040", "time": 6229326, "featuredRunMedia": null, "reactionVideos": [], @@ -24222,7 +23941,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 110, + "teamId": "nef780305", "time": 6237420, "featuredRunMedia": null, "reactionVideos": [], @@ -24240,7 +23959,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 6247633, "featuredRunMedia": null, "reactionVideos": [], @@ -24258,7 +23977,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 6258078, "featuredRunMedia": null, "reactionVideos": [], @@ -24276,7 +23995,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 61, + "teamId": "nef790068", "time": 6264955, "featuredRunMedia": null, "reactionVideos": [], @@ -24294,7 +24013,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "nef788347", "time": 6277663, "featuredRunMedia": null, "reactionVideos": [], @@ -24312,7 +24031,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 80, + "teamId": "nef788430", "time": 6281045, "featuredRunMedia": null, "reactionVideos": [], @@ -24330,7 +24049,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 218, + "teamId": "nef788945", "time": 6281486, "featuredRunMedia": null, "reactionVideos": [], @@ -24348,7 +24067,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 6281564, "featuredRunMedia": null, "reactionVideos": [], @@ -24366,7 +24085,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 262, + "teamId": "nef795872", "time": 6294810, "featuredRunMedia": null, "reactionVideos": [], @@ -24384,7 +24103,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 118, + "teamId": "nef790070", "time": 6304817, "featuredRunMedia": null, "reactionVideos": [], @@ -24402,7 +24121,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 31, + "teamId": "nef790067", "time": 6315289, "featuredRunMedia": null, "reactionVideos": [], @@ -24420,7 +24139,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 21, + "teamId": "nef790436", "time": 6316115, "featuredRunMedia": null, "reactionVideos": [], @@ -24438,7 +24157,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 6322255, "featuredRunMedia": null, "reactionVideos": [], @@ -24456,7 +24175,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 6322791, "featuredRunMedia": null, "reactionVideos": [], @@ -24474,7 +24193,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 26, + "teamId": "nef788425", "time": 6325109, "featuredRunMedia": null, "reactionVideos": [], @@ -24492,7 +24211,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 53, + "teamId": "nef788341", "time": 6325205, "featuredRunMedia": null, "reactionVideos": [], @@ -24510,7 +24229,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 9, + "teamId": "nef788320", "time": 6326784, "featuredRunMedia": null, "reactionVideos": [], @@ -24528,7 +24247,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 6327376, "featuredRunMedia": null, "reactionVideos": [], @@ -24546,7 +24265,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 6, + "teamId": "nef788319", "time": 6332229, "featuredRunMedia": null, "reactionVideos": [], @@ -24564,7 +24283,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 6340328, "featuredRunMedia": null, "reactionVideos": [], @@ -24582,7 +24301,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 6341863, "featuredRunMedia": null, "reactionVideos": [], @@ -24600,7 +24319,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 60, + "teamId": "nef797072", "time": 6344790, "featuredRunMedia": null, "reactionVideos": [], @@ -24618,7 +24337,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 207, + "teamId": "nef790044", "time": 6346394, "featuredRunMedia": null, "reactionVideos": [], @@ -24636,7 +24355,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 6349678, "featuredRunMedia": null, "reactionVideos": [], @@ -24654,7 +24373,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 111, + "teamId": "nef790438", "time": 6350466, "featuredRunMedia": null, "reactionVideos": [], @@ -24672,7 +24391,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 212, + "teamId": "nef791228", "time": 6367689, "featuredRunMedia": null, "reactionVideos": [], @@ -24690,7 +24409,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 6371998, "featuredRunMedia": null, "reactionVideos": [], @@ -24708,7 +24427,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 6382550, "featuredRunMedia": null, "reactionVideos": [], @@ -24726,7 +24445,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 208, + "teamId": "nef796440", "time": 6384621, "featuredRunMedia": null, "reactionVideos": [], @@ -24744,7 +24463,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 21, + "teamId": "nef790436", "time": 6391404, "featuredRunMedia": null, "reactionVideos": [], @@ -24762,7 +24481,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 6393643, "featuredRunMedia": null, "reactionVideos": [], @@ -24780,7 +24499,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "nef790038", "time": 6411901, "featuredRunMedia": null, "reactionVideos": [], @@ -24798,7 +24517,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 85, + "teamId": "nef797071", "time": 6412893, "featuredRunMedia": null, "reactionVideos": [], @@ -24816,7 +24535,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 6420541, "featuredRunMedia": null, "reactionVideos": [], @@ -24834,7 +24553,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "nef790103", "time": 6424328, "featuredRunMedia": null, "reactionVideos": [], @@ -24852,7 +24571,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 6424494, "featuredRunMedia": null, "reactionVideos": [], @@ -24870,7 +24589,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 85, + "teamId": "nef797071", "time": 6431530, "featuredRunMedia": null, "reactionVideos": [], @@ -24888,7 +24607,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 50, + "teamId": "nef780568", "time": 6441101, "featuredRunMedia": null, "reactionVideos": [], @@ -24906,7 +24625,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "nef788056", "time": 6443003, "featuredRunMedia": null, "reactionVideos": [], @@ -24924,7 +24643,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 6444642, "featuredRunMedia": null, "reactionVideos": [], @@ -24942,7 +24661,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 21, + "teamId": "nef790436", "time": 6445549, "featuredRunMedia": null, "reactionVideos": [], @@ -24960,7 +24679,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 6450955, "featuredRunMedia": null, "reactionVideos": [], @@ -24978,7 +24697,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "nef788422", "time": 6455431, "featuredRunMedia": null, "reactionVideos": [], @@ -24996,7 +24715,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 61, + "teamId": "nef790068", "time": 6462062, "featuredRunMedia": null, "reactionVideos": [], @@ -25014,7 +24733,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 91, + "teamId": "nef788061", "time": 6466510, "featuredRunMedia": null, "reactionVideos": [], @@ -25032,7 +24751,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 74, + "teamId": "nef788057", "time": 6468994, "featuredRunMedia": null, "reactionVideos": [], @@ -25050,7 +24769,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 259, + "teamId": "nef799356", "time": 6470027, "featuredRunMedia": null, "reactionVideos": [], @@ -25068,7 +24787,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 155, + "teamId": "nef796442", "time": 6474527, "featuredRunMedia": null, "reactionVideos": [], @@ -25086,7 +24805,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 230, + "teamId": "nef797080", "time": 6475982, "featuredRunMedia": null, "reactionVideos": [], @@ -25104,7 +24823,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 6502649, "featuredRunMedia": null, "reactionVideos": [], @@ -25122,7 +24841,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 113, + "teamId": "nef780569", "time": 6520953, "featuredRunMedia": null, "reactionVideos": [], @@ -25140,7 +24859,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "nef790432", "time": 6521036, "featuredRunMedia": null, "reactionVideos": [], @@ -25158,7 +24877,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 6521442, "featuredRunMedia": null, "reactionVideos": [], @@ -25176,7 +24895,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 91, + "teamId": "nef788061", "time": 6526842, "featuredRunMedia": null, "reactionVideos": [], @@ -25194,7 +24913,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 6533711, "featuredRunMedia": null, "reactionVideos": [], @@ -25212,7 +24931,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 50, + "teamId": "nef780568", "time": 6539092, "featuredRunMedia": null, "reactionVideos": [], @@ -25230,7 +24949,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "nef790432", "time": 6568946, "featuredRunMedia": null, "reactionVideos": [], @@ -25248,7 +24967,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 1, + "teamId": "nef788321", "time": 6580566, "featuredRunMedia": null, "reactionVideos": [], @@ -25266,7 +24985,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6583934, "featuredRunMedia": null, "reactionVideos": [], @@ -25284,7 +25003,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "nef788327", "time": 6593559, "featuredRunMedia": null, "reactionVideos": [], @@ -25302,7 +25021,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 34, + "teamId": "nef788331", "time": 6597107, "featuredRunMedia": null, "reactionVideos": [], @@ -25320,7 +25039,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 276, + "teamId": "nef795871", "time": 6607374, "featuredRunMedia": null, "reactionVideos": [], @@ -25338,7 +25057,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 100, + "teamId": "nef788063", "time": 6609727, "featuredRunMedia": null, "reactionVideos": [], @@ -25356,7 +25075,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 254, + "teamId": "nef772720", "time": 6610164, "featuredRunMedia": null, "reactionVideos": [], @@ -25374,7 +25093,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 127, + "teamId": "nef799360", "time": 6616389, "featuredRunMedia": null, "reactionVideos": [], @@ -25392,7 +25111,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 6617027, "featuredRunMedia": null, "reactionVideos": [], @@ -25410,7 +25129,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 74, + "teamId": "nef788057", "time": 6628477, "featuredRunMedia": null, "reactionVideos": [], @@ -25428,7 +25147,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 227, + "teamId": "nef799347", "time": 6635399, "featuredRunMedia": null, "reactionVideos": [], @@ -25446,7 +25165,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 24, + "teamId": "nef788332", "time": 6637203, "featuredRunMedia": null, "reactionVideos": [], @@ -25464,7 +25183,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 26, + "teamId": "nef788425", "time": 6638081, "featuredRunMedia": null, "reactionVideos": [], @@ -25482,7 +25201,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6649237, "featuredRunMedia": null, "reactionVideos": [], @@ -25500,7 +25219,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 245, + "teamId": "nef799364", "time": 6655999, "featuredRunMedia": null, "reactionVideos": [], @@ -25518,7 +25237,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 21, + "teamId": "nef790436", "time": 6661744, "featuredRunMedia": null, "reactionVideos": [], @@ -25536,7 +25255,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 258, + "teamId": "nef796543", "time": 6673431, "featuredRunMedia": null, "reactionVideos": [], @@ -25554,7 +25273,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "nef780666", "time": 6674388, "featuredRunMedia": null, "reactionVideos": [], @@ -25572,7 +25291,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 26, + "teamId": "nef788425", "time": 6683124, "featuredRunMedia": null, "reactionVideos": [], @@ -25590,7 +25309,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 261, + "teamId": "nef799352", "time": 6685855, "featuredRunMedia": null, "reactionVideos": [], @@ -25608,7 +25327,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6689003, "featuredRunMedia": null, "reactionVideos": [], @@ -25626,7 +25345,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 112, + "teamId": "nef780304", "time": 6693759, "featuredRunMedia": null, "reactionVideos": [], @@ -25644,7 +25363,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 37, + "teamId": "nef788422", "time": 6703557, "featuredRunMedia": null, "reactionVideos": [], @@ -25662,7 +25381,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 27, + "teamId": "nef788419", "time": 6703945, "featuredRunMedia": null, "reactionVideos": [], @@ -25680,7 +25399,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 6711195, "featuredRunMedia": null, "reactionVideos": [], @@ -25698,7 +25417,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 6712366, "featuredRunMedia": null, "reactionVideos": [], @@ -25716,7 +25435,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 240, + "teamId": "nef780303", "time": 6714283, "featuredRunMedia": null, "reactionVideos": [], @@ -25734,7 +25453,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "nef780543", "time": 6719821, "featuredRunMedia": null, "reactionVideos": [], @@ -25752,7 +25471,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "nef780665", "time": 6728840, "featuredRunMedia": null, "reactionVideos": [], @@ -25770,7 +25489,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "nef790432", "time": 6736160, "featuredRunMedia": null, "reactionVideos": [], @@ -25788,7 +25507,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 91, + "teamId": "nef788061", "time": 6736667, "featuredRunMedia": null, "reactionVideos": [], @@ -25806,7 +25525,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 259, + "teamId": "nef799356", "time": 6737244, "featuredRunMedia": null, "reactionVideos": [], @@ -25824,7 +25543,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 164, + "teamId": "nef797070", "time": 6747458, "featuredRunMedia": null, "reactionVideos": [], @@ -25842,7 +25561,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "nef788390", "time": 6769352, "featuredRunMedia": null, "reactionVideos": [], @@ -25860,7 +25579,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 24, + "teamId": "nef788332", "time": 6777936, "featuredRunMedia": null, "reactionVideos": [], @@ -25878,7 +25597,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 186, + "teamId": "nef780306", "time": 6785046, "featuredRunMedia": null, "reactionVideos": [], @@ -25896,7 +25615,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 113, + "teamId": "nef780569", "time": 6800194, "featuredRunMedia": null, "reactionVideos": [], @@ -25914,7 +25633,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "nef796437", "time": 6802227, "featuredRunMedia": null, "reactionVideos": [], @@ -25932,7 +25651,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "nef790432", "time": 6802395, "featuredRunMedia": null, "reactionVideos": [], @@ -25950,7 +25669,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 23, + "teamId": "nef780541", "time": 6824554, "featuredRunMedia": null, "reactionVideos": [], @@ -25968,7 +25687,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 55, + "teamId": "nef788344", "time": 6827714, "featuredRunMedia": null, "reactionVideos": [], @@ -25986,7 +25705,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 6833909, "featuredRunMedia": null, "reactionVideos": [], @@ -26004,7 +25723,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 29, + "teamId": "nef796575", "time": 6834134, "featuredRunMedia": null, "reactionVideos": [], @@ -26022,7 +25741,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 175, + "teamId": "nef795853", "time": 6840205, "featuredRunMedia": null, "reactionVideos": [], @@ -26040,7 +25759,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 6841487, "featuredRunMedia": null, "reactionVideos": [], @@ -26058,7 +25777,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 6851946, "featuredRunMedia": null, "reactionVideos": [], @@ -26076,7 +25795,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 261, + "teamId": "nef799352", "time": 6854015, "featuredRunMedia": null, "reactionVideos": [], @@ -26094,7 +25813,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 75, + "teamId": "nef790071", "time": 6864146, "featuredRunMedia": null, "reactionVideos": [], @@ -26112,7 +25831,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 85, + "teamId": "nef797071", "time": 6865844, "featuredRunMedia": null, "reactionVideos": [], @@ -26130,7 +25849,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 6866947, "featuredRunMedia": null, "reactionVideos": [], @@ -26148,7 +25867,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 24, + "teamId": "nef788332", "time": 6868534, "featuredRunMedia": null, "reactionVideos": [], @@ -26166,7 +25885,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 257, + "teamId": "nef797082", "time": 6876632, "featuredRunMedia": null, "reactionVideos": [], @@ -26184,7 +25903,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 274, + "teamId": "nef790046", "time": 6879192, "featuredRunMedia": null, "reactionVideos": [], @@ -26202,7 +25921,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6888490, "featuredRunMedia": null, "reactionVideos": [], @@ -26220,7 +25939,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 230, + "teamId": "nef797080", "time": 6896469, "featuredRunMedia": null, "reactionVideos": [], @@ -26238,7 +25957,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "nef788352", "time": 6907530, "featuredRunMedia": null, "reactionVideos": [], @@ -26256,7 +25975,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 46, + "teamId": "nef788027", "time": 6910168, "featuredRunMedia": null, "reactionVideos": [], @@ -26274,7 +25993,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 42, + "teamId": "nef788334", "time": 6910550, "featuredRunMedia": null, "reactionVideos": [], @@ -26292,7 +26011,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 276, + "teamId": "nef795871", "time": 6910559, "featuredRunMedia": null, "reactionVideos": [], @@ -26310,7 +26029,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "nef788327", "time": 6911391, "featuredRunMedia": null, "reactionVideos": [], @@ -26328,7 +26047,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 75, + "teamId": "nef790071", "time": 6913711, "featuredRunMedia": null, "reactionVideos": [], @@ -26346,7 +26065,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 103, + "teamId": "nef780682", "time": 6917722, "featuredRunMedia": null, "reactionVideos": [], @@ -26364,7 +26083,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 51, + "teamId": "nef780565", "time": 6918151, "featuredRunMedia": null, "reactionVideos": [], @@ -26382,7 +26101,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "nef788390", "time": 6925801, "featuredRunMedia": null, "reactionVideos": [], @@ -26400,7 +26119,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6946249, "featuredRunMedia": null, "reactionVideos": [], @@ -26418,7 +26137,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 30, + "teamId": "nef780676", "time": 6954226, "featuredRunMedia": null, "reactionVideos": [], @@ -26436,7 +26155,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "nef788327", "time": 6956363, "featuredRunMedia": null, "reactionVideos": [], @@ -26454,7 +26173,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 210, + "teamId": "nef795863", "time": 6967875, "featuredRunMedia": null, "reactionVideos": [], @@ -26472,7 +26191,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 212, + "teamId": "nef791228", "time": 6968893, "featuredRunMedia": null, "reactionVideos": [], @@ -26490,7 +26209,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 211, + "teamId": "nef797083", "time": 6969124, "featuredRunMedia": null, "reactionVideos": [], @@ -26508,7 +26227,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 34, + "teamId": "nef788331", "time": 6981269, "featuredRunMedia": null, "reactionVideos": [], @@ -26526,7 +26245,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 6986826, "featuredRunMedia": null, "reactionVideos": [], @@ -26544,7 +26263,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 6992756, "featuredRunMedia": null, "reactionVideos": [], @@ -26562,7 +26281,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 253, + "teamId": "nef772717", "time": 7002603, "featuredRunMedia": null, "reactionVideos": [], @@ -26580,7 +26299,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 54, + "teamId": "nef796577", "time": 7008171, "featuredRunMedia": null, "reactionVideos": [], @@ -26598,7 +26317,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 67, + "teamId": "nef790100", "time": 7023657, "featuredRunMedia": null, "reactionVideos": [], @@ -26616,7 +26335,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 7030480, "featuredRunMedia": null, "reactionVideos": [], @@ -26634,7 +26353,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 113, + "teamId": "nef780569", "time": 7034077, "featuredRunMedia": null, "reactionVideos": [], @@ -26652,7 +26371,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 7037399, "featuredRunMedia": null, "reactionVideos": [], @@ -26670,7 +26389,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "nef788327", "time": 7040478, "featuredRunMedia": null, "reactionVideos": [], @@ -26688,7 +26407,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 74, + "teamId": "nef788057", "time": 7045317, "featuredRunMedia": null, "reactionVideos": [], @@ -26706,7 +26425,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 29, + "teamId": "nef796575", "time": 7049147, "featuredRunMedia": null, "reactionVideos": [], @@ -26724,7 +26443,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 7049783, "featuredRunMedia": null, "reactionVideos": [], @@ -26742,7 +26461,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 7052537, "featuredRunMedia": null, "reactionVideos": [], @@ -26760,7 +26479,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 7060413, "featuredRunMedia": null, "reactionVideos": [], @@ -26778,7 +26497,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 257, + "teamId": "nef797082", "time": 7064859, "featuredRunMedia": null, "reactionVideos": [], @@ -26796,7 +26515,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 261, + "teamId": "nef799352", "time": 7066184, "featuredRunMedia": null, "reactionVideos": [], @@ -26814,7 +26533,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 7068077, "featuredRunMedia": null, "reactionVideos": [], @@ -26832,7 +26551,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 20, + "teamId": "nef780540", "time": 7070076, "featuredRunMedia": null, "reactionVideos": [], @@ -26850,7 +26569,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 222, + "teamId": "nef799351", "time": 7070226, "featuredRunMedia": null, "reactionVideos": [], @@ -26868,7 +26587,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 259, + "teamId": "nef799356", "time": 7085583, "featuredRunMedia": null, "reactionVideos": [], @@ -26886,7 +26605,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 54, + "teamId": "nef796577", "time": 7106023, "featuredRunMedia": null, "reactionVideos": [], @@ -26904,7 +26623,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 173, + "teamId": "nef799349", "time": 7106368, "featuredRunMedia": null, "reactionVideos": [], @@ -26922,7 +26641,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "nef788327", "time": 7110874, "featuredRunMedia": null, "reactionVideos": [], @@ -26940,7 +26659,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 92, + "teamId": "nef780672", "time": 7111945, "featuredRunMedia": null, "reactionVideos": [], @@ -26958,7 +26677,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 7119788, "featuredRunMedia": null, "reactionVideos": [], @@ -26976,7 +26695,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 73, + "teamId": "nef788345", "time": 7147018, "featuredRunMedia": null, "reactionVideos": [], @@ -26994,7 +26713,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "nef788352", "time": 7164811, "featuredRunMedia": null, "reactionVideos": [], @@ -27012,7 +26731,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 71, + "teamId": "nef795855", "time": 7166931, "featuredRunMedia": null, "reactionVideos": [], @@ -27030,7 +26749,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 7189615, "featuredRunMedia": null, "reactionVideos": [], @@ -27048,7 +26767,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 124, + "teamId": "nef795857", "time": 7189966, "featuredRunMedia": null, "reactionVideos": [], @@ -27066,7 +26785,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "nef788352", "time": 7190279, "featuredRunMedia": null, "reactionVideos": [], @@ -27084,7 +26803,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "nef795852", "time": 7201179, "featuredRunMedia": null, "reactionVideos": [], @@ -27102,7 +26821,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 253, + "teamId": "nef772717", "time": 7201529, "featuredRunMedia": null, "reactionVideos": [], @@ -27120,7 +26839,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 252, + "teamId": "nef799373", "time": 7202188, "featuredRunMedia": null, "reactionVideos": [], @@ -27138,7 +26857,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 6, + "teamId": "nef788319", "time": 7210515, "featuredRunMedia": null, "reactionVideos": [], @@ -27156,7 +26875,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "nef788352", "time": 7215331, "featuredRunMedia": null, "reactionVideos": [], @@ -27174,7 +26893,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 116, + "teamId": "nef799342", "time": 7216710, "featuredRunMedia": null, "reactionVideos": [], @@ -27192,7 +26911,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 92, + "teamId": "nef780672", "time": 7221692, "featuredRunMedia": null, "reactionVideos": [], @@ -27210,7 +26929,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 61, + "teamId": "nef790068", "time": 7243868, "featuredRunMedia": null, "reactionVideos": [], @@ -27228,7 +26947,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 200, + "teamId": "nef799344", "time": 7245924, "featuredRunMedia": null, "reactionVideos": [], @@ -27246,7 +26965,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 7247254, "featuredRunMedia": null, "reactionVideos": [], @@ -27264,7 +26983,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 279, + "teamId": "nef799365", "time": 7250865, "featuredRunMedia": null, "reactionVideos": [], @@ -27282,7 +27001,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 59, + "teamId": "nef780307", "time": 7253773, "featuredRunMedia": null, "reactionVideos": [], @@ -27300,7 +27019,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "nef788352", "time": 7255975, "featuredRunMedia": null, "reactionVideos": [], @@ -27318,7 +27037,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 125, + "teamId": "nef790074", "time": 7266927, "featuredRunMedia": null, "reactionVideos": [], @@ -27336,7 +27055,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 14, + "teamId": "nef780537", "time": 7277743, "featuredRunMedia": null, "reactionVideos": [], @@ -27354,7 +27073,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 7292651, "featuredRunMedia": null, "reactionVideos": [], @@ -27372,7 +27091,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 37, + "teamId": "nef788422", "time": 7304236, "featuredRunMedia": null, "reactionVideos": [], @@ -27390,7 +27109,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 97, + "teamId": "nef799345", "time": 7310692, "featuredRunMedia": null, "reactionVideos": [], @@ -27408,7 +27127,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 77, + "teamId": "nef788059", "time": 7314956, "featuredRunMedia": null, "reactionVideos": [], @@ -27426,7 +27145,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 200, + "teamId": "nef799344", "time": 7316460, "featuredRunMedia": null, "reactionVideos": [], @@ -27444,7 +27163,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 204, + "teamId": "nef790433", "time": 7317458, "featuredRunMedia": null, "reactionVideos": [], @@ -27462,7 +27181,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 226, + "teamId": "nef788429", "time": 7318259, "featuredRunMedia": null, "reactionVideos": [], @@ -27480,7 +27199,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 71, + "teamId": "nef795855", "time": 7318781, "featuredRunMedia": null, "reactionVideos": [], @@ -27498,7 +27217,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 7342890, "featuredRunMedia": null, "reactionVideos": [], @@ -27516,7 +27235,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 143, + "teamId": "nef790105", "time": 7349816, "featuredRunMedia": null, "reactionVideos": [], @@ -27534,7 +27253,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 7355673, "featuredRunMedia": null, "reactionVideos": [], @@ -27552,7 +27271,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 125, + "teamId": "nef790074", "time": 7362543, "featuredRunMedia": null, "reactionVideos": [], @@ -27570,7 +27289,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 7366647, "featuredRunMedia": null, "reactionVideos": [], @@ -27588,7 +27307,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 183, + "teamId": "nef788062", "time": 7369033, "featuredRunMedia": null, "reactionVideos": [], @@ -27606,7 +27325,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 54, + "teamId": "nef796577", "time": 7373083, "featuredRunMedia": null, "reactionVideos": [], @@ -27624,7 +27343,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 124, + "teamId": "nef795857", "time": 7376010, "featuredRunMedia": null, "reactionVideos": [], @@ -27642,7 +27361,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 7376589, "featuredRunMedia": null, "reactionVideos": [], @@ -27660,7 +27379,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 12, + "teamId": "nef790061", "time": 7381839, "featuredRunMedia": null, "reactionVideos": [], @@ -27678,7 +27397,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 7382407, "featuredRunMedia": null, "reactionVideos": [], @@ -27696,7 +27415,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 61, + "teamId": "nef790068", "time": 7386871, "featuredRunMedia": null, "reactionVideos": [], @@ -27714,7 +27433,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "nef796437", "time": 7388999, "featuredRunMedia": null, "reactionVideos": [], @@ -27732,7 +27451,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "nef788029", "time": 7397836, "featuredRunMedia": null, "reactionVideos": [], @@ -27750,7 +27469,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 56, + "teamId": "nef789937", "time": 7402059, "featuredRunMedia": null, "reactionVideos": [], @@ -27768,7 +27487,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "nef780665", "time": 7416896, "featuredRunMedia": null, "reactionVideos": [], @@ -27786,7 +27505,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 28, + "teamId": "nef788329", "time": 7428423, "featuredRunMedia": null, "reactionVideos": [], @@ -27804,7 +27523,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 23, + "teamId": "nef780541", "time": 7434656, "featuredRunMedia": null, "reactionVideos": [], @@ -27822,7 +27541,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 126, + "teamId": "nef791356", "time": 7441494, "featuredRunMedia": null, "reactionVideos": [], @@ -27840,7 +27559,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 71, + "teamId": "nef795855", "time": 7458198, "featuredRunMedia": null, "reactionVideos": [], @@ -27858,7 +27577,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 34, + "teamId": "nef788331", "time": 7458635, "featuredRunMedia": null, "reactionVideos": [], @@ -27876,7 +27595,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 162, + "teamId": "nef788431", "time": 7459541, "featuredRunMedia": null, "reactionVideos": [], @@ -27894,7 +27613,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 7468877, "featuredRunMedia": null, "reactionVideos": [], @@ -27912,7 +27631,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 240, + "teamId": "nef780303", "time": 7469139, "featuredRunMedia": null, "reactionVideos": [], @@ -27930,7 +27649,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 124, + "teamId": "nef795857", "time": 7477539, "featuredRunMedia": null, "reactionVideos": [], @@ -27948,7 +27667,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 7494315, "featuredRunMedia": null, "reactionVideos": [], @@ -27966,7 +27685,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 19, + "teamId": "nef780674", "time": 7500954, "featuredRunMedia": null, "reactionVideos": [], @@ -27984,7 +27703,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 92, + "teamId": "nef780672", "time": 7506753, "featuredRunMedia": null, "reactionVideos": [], @@ -28002,7 +27721,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 7510092, "featuredRunMedia": null, "reactionVideos": [], @@ -28020,7 +27739,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 7511717, "featuredRunMedia": null, "reactionVideos": [], @@ -28038,7 +27757,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 93, + "teamId": "nef799341", "time": 7516462, "featuredRunMedia": null, "reactionVideos": [], @@ -28056,7 +27775,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 86, + "teamId": "nef780570", "time": 7521779, "featuredRunMedia": null, "reactionVideos": [], @@ -28074,7 +27793,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 7530695, "featuredRunMedia": null, "reactionVideos": [], @@ -28092,7 +27811,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 7543903, "featuredRunMedia": null, "reactionVideos": [], @@ -28110,7 +27829,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 7551848, "featuredRunMedia": null, "reactionVideos": [], @@ -28128,7 +27847,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 249, + "teamId": "nef795866", "time": 7552703, "featuredRunMedia": null, "reactionVideos": [], @@ -28146,7 +27865,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 137, + "teamId": "nef788392", "time": 7556854, "featuredRunMedia": null, "reactionVideos": [], @@ -28164,7 +27883,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 19, + "teamId": "nef780674", "time": 7562241, "featuredRunMedia": null, "reactionVideos": [], @@ -28182,7 +27901,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 213, + "teamId": "nef796544", "time": 7569388, "featuredRunMedia": null, "reactionVideos": [], @@ -28200,7 +27919,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 215, + "teamId": "nef772714", "time": 7589013, "featuredRunMedia": null, "reactionVideos": [], @@ -28218,7 +27937,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 62, + "teamId": "nef788064", "time": 7605801, "featuredRunMedia": null, "reactionVideos": [], @@ -28236,7 +27955,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 86, + "teamId": "nef780570", "time": 7608378, "featuredRunMedia": null, "reactionVideos": [], @@ -28254,7 +27973,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 249, + "teamId": "nef795866", "time": 7616167, "featuredRunMedia": null, "reactionVideos": [], @@ -28272,7 +27991,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 7616308, "featuredRunMedia": null, "reactionVideos": [], @@ -28290,7 +28009,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 63, + "teamId": "nef788029", "time": 7645817, "featuredRunMedia": null, "reactionVideos": [], @@ -28308,7 +28027,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 126, + "teamId": "nef791356", "time": 7648340, "featuredRunMedia": null, "reactionVideos": [], @@ -28326,7 +28045,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 43, + "teamId": "nef788426", "time": 7649195, "featuredRunMedia": null, "reactionVideos": [], @@ -28344,7 +28063,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 7652525, "featuredRunMedia": null, "reactionVideos": [], @@ -28362,7 +28081,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 62, + "teamId": "nef788064", "time": 7668655, "featuredRunMedia": null, "reactionVideos": [], @@ -28380,7 +28099,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "nef788327", "time": 7678114, "featuredRunMedia": null, "reactionVideos": [], @@ -28398,7 +28117,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 7682553, "featuredRunMedia": null, "reactionVideos": [], @@ -28416,7 +28135,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 105, + "teamId": "nef790040", "time": 7685898, "featuredRunMedia": null, "reactionVideos": [], @@ -28434,7 +28153,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 7698887, "featuredRunMedia": null, "reactionVideos": [], @@ -28452,7 +28171,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 19, + "teamId": "nef780674", "time": 7700077, "featuredRunMedia": null, "reactionVideos": [], @@ -28470,7 +28189,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 7705730, "featuredRunMedia": null, "reactionVideos": [], @@ -28488,7 +28207,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 205, + "teamId": "nef780572", "time": 7709861, "featuredRunMedia": null, "reactionVideos": [], @@ -28506,7 +28225,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 226, + "teamId": "nef788429", "time": 7715011, "featuredRunMedia": null, "reactionVideos": [], @@ -28524,7 +28243,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 34, + "teamId": "nef788331", "time": 7726172, "featuredRunMedia": null, "reactionVideos": [], @@ -28542,7 +28261,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 266, + "teamId": "nef797087", "time": 7729021, "featuredRunMedia": null, "reactionVideos": [], @@ -28560,7 +28279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 115, + "teamId": "nef788026", "time": 7733018, "featuredRunMedia": null, "reactionVideos": [], @@ -28578,7 +28297,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 117, + "teamId": "nef788350", "time": 7735540, "featuredRunMedia": null, "reactionVideos": [], @@ -28596,7 +28315,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7735775, "featuredRunMedia": null, "reactionVideos": [], @@ -28614,7 +28333,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "nef788421", "time": 7740831, "featuredRunMedia": null, "reactionVideos": [], @@ -28632,7 +28351,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 7756715, "featuredRunMedia": null, "reactionVideos": [], @@ -28650,7 +28369,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7773953, "featuredRunMedia": null, "reactionVideos": [], @@ -28668,7 +28387,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 213, + "teamId": "nef796544", "time": 7790481, "featuredRunMedia": null, "reactionVideos": [], @@ -28686,7 +28405,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 7795899, "featuredRunMedia": null, "reactionVideos": [], @@ -28704,7 +28423,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 115, + "teamId": "nef788026", "time": 7796151, "featuredRunMedia": null, "reactionVideos": [], @@ -28722,7 +28441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 7807505, "featuredRunMedia": null, "reactionVideos": [], @@ -28740,7 +28459,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "nef788418", "time": 7808277, "featuredRunMedia": null, "reactionVideos": [], @@ -28758,7 +28477,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 7809423, "featuredRunMedia": null, "reactionVideos": [], @@ -28776,7 +28495,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7814357, "featuredRunMedia": null, "reactionVideos": [], @@ -28794,7 +28513,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 126, + "teamId": "nef791356", "time": 7817220, "featuredRunMedia": null, "reactionVideos": [], @@ -28812,7 +28531,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7832965, "featuredRunMedia": null, "reactionVideos": [], @@ -28830,7 +28549,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 194, + "teamId": "nef790135", "time": 7840765, "featuredRunMedia": null, "reactionVideos": [], @@ -28848,7 +28567,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 7846229, "featuredRunMedia": null, "reactionVideos": [], @@ -28866,7 +28585,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7847556, "featuredRunMedia": null, "reactionVideos": [], @@ -28884,7 +28603,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 7859947, "featuredRunMedia": null, "reactionVideos": [], @@ -28902,7 +28621,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 255, + "teamId": "nef797086", "time": 7863593, "featuredRunMedia": null, "reactionVideos": [], @@ -28920,7 +28639,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 7868180, "featuredRunMedia": null, "reactionVideos": [], @@ -28938,7 +28657,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 7870517, "featuredRunMedia": null, "reactionVideos": [], @@ -28956,7 +28675,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 7876182, "featuredRunMedia": null, "reactionVideos": [], @@ -28974,7 +28693,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 7878354, "featuredRunMedia": null, "reactionVideos": [], @@ -28992,7 +28711,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 7885297, "featuredRunMedia": null, "reactionVideos": [], @@ -29010,7 +28729,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 25, + "teamId": "nef780669", "time": 7890288, "featuredRunMedia": null, "reactionVideos": [], @@ -29028,7 +28747,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 45, + "teamId": "nef788030", "time": 7891981, "featuredRunMedia": null, "reactionVideos": [], @@ -29046,7 +28765,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 194, + "teamId": "nef790135", "time": 7897455, "featuredRunMedia": null, "reactionVideos": [], @@ -29064,7 +28783,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 123, + "teamId": "nef788032", "time": 7898128, "featuredRunMedia": null, "reactionVideos": [], @@ -29082,7 +28801,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 25, + "teamId": "nef780669", "time": 7905103, "featuredRunMedia": null, "reactionVideos": [], @@ -29100,7 +28819,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 115, + "teamId": "nef788026", "time": 7907163, "featuredRunMedia": null, "reactionVideos": [], @@ -29118,7 +28837,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 60, + "teamId": "nef797072", "time": 7917244, "featuredRunMedia": null, "reactionVideos": [], @@ -29136,7 +28855,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "nef780538", "time": 7918041, "featuredRunMedia": null, "reactionVideos": [], @@ -29154,7 +28873,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 117, + "teamId": "nef788350", "time": 7938975, "featuredRunMedia": null, "reactionVideos": [], @@ -29172,7 +28891,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 7948711, "featuredRunMedia": null, "reactionVideos": [], @@ -29190,7 +28909,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "nef780665", "time": 7955222, "featuredRunMedia": null, "reactionVideos": [], @@ -29208,7 +28927,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 174, + "teamId": "nef772711", "time": 7958779, "featuredRunMedia": null, "reactionVideos": [], @@ -29226,7 +28945,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 263, + "teamId": "nef772713", "time": 7966388, "featuredRunMedia": null, "reactionVideos": [], @@ -29244,7 +28963,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 216, + "teamId": "nef772721", "time": 7968672, "featuredRunMedia": null, "reactionVideos": [], @@ -29262,7 +28981,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 7972609, "featuredRunMedia": null, "reactionVideos": [], @@ -29280,7 +28999,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 163, + "teamId": "nef797089", "time": 7973934, "featuredRunMedia": null, "reactionVideos": [], @@ -29298,7 +29017,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 7975841, "featuredRunMedia": null, "reactionVideos": [], @@ -29316,7 +29035,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 45, + "teamId": "nef788030", "time": 7980398, "featuredRunMedia": null, "reactionVideos": [], @@ -29334,7 +29053,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 7990861, "featuredRunMedia": null, "reactionVideos": [], @@ -29352,7 +29071,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 44, + "teamId": "nef790073", "time": 7993562, "featuredRunMedia": null, "reactionVideos": [], @@ -29370,7 +29089,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 7994485, "featuredRunMedia": null, "reactionVideos": [], @@ -29388,7 +29107,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "nef788321", "time": 7995566, "featuredRunMedia": null, "reactionVideos": [], @@ -29406,7 +29125,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 7999460, "featuredRunMedia": null, "reactionVideos": [], @@ -29424,7 +29143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 109, + "teamId": "nef788326", "time": 8000298, "featuredRunMedia": null, "reactionVideos": [], @@ -29442,7 +29161,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 162, + "teamId": "nef788431", "time": 8008049, "featuredRunMedia": null, "reactionVideos": [], @@ -29460,7 +29179,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 109, + "teamId": "nef788326", "time": 8008418, "featuredRunMedia": null, "reactionVideos": [], @@ -29478,7 +29197,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 8011587, "featuredRunMedia": null, "reactionVideos": [], @@ -29496,7 +29215,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 8011948, "featuredRunMedia": null, "reactionVideos": [], @@ -29514,7 +29233,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 105, + "teamId": "nef790040", "time": 8014820, "featuredRunMedia": null, "reactionVideos": [], @@ -29532,7 +29251,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 8016811, "featuredRunMedia": null, "reactionVideos": [], @@ -29550,7 +29269,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "nef788321", "time": 8019461, "featuredRunMedia": null, "reactionVideos": [], @@ -29568,7 +29287,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 129, + "teamId": "nef788427", "time": 8020298, "featuredRunMedia": null, "reactionVideos": [], @@ -29586,7 +29305,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 140, + "teamId": "nef799346", "time": 8024113, "featuredRunMedia": null, "reactionVideos": [], @@ -29604,7 +29323,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 8028628, "featuredRunMedia": null, "reactionVideos": [], @@ -29622,7 +29341,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 23, + "teamId": "nef780541", "time": 8032993, "featuredRunMedia": null, "reactionVideos": [], @@ -29640,7 +29359,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 241, + "teamId": "nef790434", "time": 8038715, "featuredRunMedia": null, "reactionVideos": [], @@ -29658,7 +29377,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 240, + "teamId": "nef780303", "time": 8042045, "featuredRunMedia": null, "reactionVideos": [], @@ -29676,7 +29395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 8053289, "featuredRunMedia": null, "reactionVideos": [], @@ -29694,7 +29413,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 180, + "teamId": "nef795862", "time": 8053295, "featuredRunMedia": null, "reactionVideos": [], @@ -29712,7 +29431,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 8060525, "featuredRunMedia": null, "reactionVideos": [], @@ -29730,7 +29449,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 8071972, "featuredRunMedia": null, "reactionVideos": [], @@ -29748,7 +29467,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "nef780665", "time": 8077182, "featuredRunMedia": null, "reactionVideos": [], @@ -29766,7 +29485,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 8082735, "featuredRunMedia": null, "reactionVideos": [], @@ -29784,7 +29503,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 8084156, "featuredRunMedia": null, "reactionVideos": [], @@ -29802,7 +29521,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 140, + "teamId": "nef799346", "time": 8089154, "featuredRunMedia": null, "reactionVideos": [], @@ -29820,7 +29539,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 219, + "teamId": "nef790439", "time": 8094033, "featuredRunMedia": null, "reactionVideos": [], @@ -29838,7 +29557,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 200, + "teamId": "nef799344", "time": 8094881, "featuredRunMedia": null, "reactionVideos": [], @@ -29856,7 +29575,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 8101972, "featuredRunMedia": null, "reactionVideos": [], @@ -29874,7 +29593,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 30, + "teamId": "nef780676", "time": 8102517, "featuredRunMedia": null, "reactionVideos": [], @@ -29892,7 +29611,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 8108660, "featuredRunMedia": null, "reactionVideos": [], @@ -29910,7 +29629,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 8111293, "featuredRunMedia": null, "reactionVideos": [], @@ -29928,7 +29647,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 241, + "teamId": "nef790434", "time": 8113987, "featuredRunMedia": null, "reactionVideos": [], @@ -29946,7 +29665,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 8116862, "featuredRunMedia": null, "reactionVideos": [], @@ -29964,7 +29683,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 2, + "teamId": "nef788318", "time": 8124695, "featuredRunMedia": null, "reactionVideos": [], @@ -29982,7 +29701,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 52, + "teamId": "nef790039", "time": 8127803, "featuredRunMedia": null, "reactionVideos": [], @@ -30000,7 +29719,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 205, + "teamId": "nef780572", "time": 8129805, "featuredRunMedia": null, "reactionVideos": [], @@ -30018,7 +29737,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "nef788324", "time": 8135018, "featuredRunMedia": null, "reactionVideos": [], @@ -30036,7 +29755,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 8153893, "featuredRunMedia": null, "reactionVideos": [], @@ -30054,7 +29773,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "nef788421", "time": 8161811, "featuredRunMedia": null, "reactionVideos": [], @@ -30072,7 +29791,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 178, + "teamId": "nef790137", "time": 8176806, "featuredRunMedia": null, "reactionVideos": [], @@ -30090,7 +29809,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 8180711, "featuredRunMedia": null, "reactionVideos": [], @@ -30108,7 +29827,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 8188697, "featuredRunMedia": null, "reactionVideos": [], @@ -30126,7 +29845,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 70, + "teamId": "nef788056", "time": 8193188, "featuredRunMedia": null, "reactionVideos": [], @@ -30144,7 +29863,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 52, + "teamId": "nef790039", "time": 8193549, "featuredRunMedia": null, "reactionVideos": [], @@ -30162,7 +29881,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 128, + "teamId": "nef789939", "time": 8193652, "featuredRunMedia": null, "reactionVideos": [], @@ -30180,7 +29899,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 253, + "teamId": "nef772717", "time": 8202071, "featuredRunMedia": null, "reactionVideos": [], @@ -30198,7 +29917,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 95, + "teamId": "nef788055", "time": 8202433, "featuredRunMedia": null, "reactionVideos": [], @@ -30216,7 +29935,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 140, + "teamId": "nef799346", "time": 8221166, "featuredRunMedia": null, "reactionVideos": [], @@ -30234,7 +29953,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 71, + "teamId": "nef795855", "time": 8226577, "featuredRunMedia": null, "reactionVideos": [], @@ -30252,7 +29971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 8242630, "featuredRunMedia": null, "reactionVideos": [], @@ -30270,7 +29989,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 8255744, "featuredRunMedia": null, "reactionVideos": [], @@ -30288,7 +30007,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 66, + "teamId": "nef780671", "time": 8257245, "featuredRunMedia": null, "reactionVideos": [], @@ -30306,7 +30025,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 8265138, "featuredRunMedia": null, "reactionVideos": [], @@ -30324,7 +30043,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 8266695, "featuredRunMedia": null, "reactionVideos": [], @@ -30342,7 +30061,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 192, + "teamId": "nef780302", "time": 8266936, "featuredRunMedia": null, "reactionVideos": [], @@ -30360,7 +30079,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 8274448, "featuredRunMedia": null, "reactionVideos": [], @@ -30378,7 +30097,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 8276114, "featuredRunMedia": null, "reactionVideos": [], @@ -30396,7 +30115,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 241, + "teamId": "nef790434", "time": 8277992, "featuredRunMedia": null, "reactionVideos": [], @@ -30414,7 +30133,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 233, + "teamId": "nef799368", "time": 8323118, "featuredRunMedia": null, "reactionVideos": [], @@ -30432,7 +30151,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 52, + "teamId": "nef790039", "time": 8329000, "featuredRunMedia": null, "reactionVideos": [], @@ -30450,7 +30169,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 105, + "teamId": "nef790040", "time": 8334464, "featuredRunMedia": null, "reactionVideos": [], @@ -30468,7 +30187,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 8347062, "featuredRunMedia": null, "reactionVideos": [], @@ -30486,7 +30205,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 71, + "teamId": "nef795855", "time": 8349432, "featuredRunMedia": null, "reactionVideos": [], @@ -30504,7 +30223,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 8352405, "featuredRunMedia": null, "reactionVideos": [], @@ -30522,7 +30241,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 219, + "teamId": "nef790439", "time": 8362302, "featuredRunMedia": null, "reactionVideos": [], @@ -30540,7 +30259,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 23, + "teamId": "nef780541", "time": 8366717, "featuredRunMedia": null, "reactionVideos": [], @@ -30558,7 +30277,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 241, + "teamId": "nef790434", "time": 8387201, "featuredRunMedia": null, "reactionVideos": [], @@ -30576,7 +30295,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 8396921, "featuredRunMedia": null, "reactionVideos": [], @@ -30594,7 +30313,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 80, + "teamId": "nef788430", "time": 8397410, "featuredRunMedia": null, "reactionVideos": [], @@ -30612,7 +30331,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 144, + "teamId": "nef780575", "time": 8399100, "featuredRunMedia": null, "reactionVideos": [], @@ -30630,7 +30349,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 8402371, "featuredRunMedia": null, "reactionVideos": [], @@ -30648,7 +30367,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 227, + "teamId": "nef799347", "time": 8408514, "featuredRunMedia": null, "reactionVideos": [], @@ -30666,7 +30385,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 27, + "teamId": "nef788419", "time": 8410818, "featuredRunMedia": null, "reactionVideos": [], @@ -30684,7 +30403,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 103, + "teamId": "nef780682", "time": 8427891, "featuredRunMedia": null, "reactionVideos": [], @@ -30702,7 +30421,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 266, + "teamId": "nef797087", "time": 8434379, "featuredRunMedia": null, "reactionVideos": [], @@ -30720,7 +30439,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 8456949, "featuredRunMedia": null, "reactionVideos": [], @@ -30738,7 +30457,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 8458115, "featuredRunMedia": null, "reactionVideos": [], @@ -30756,7 +30475,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 221, + "teamId": "nef788067", "time": 8471562, "featuredRunMedia": null, "reactionVideos": [], @@ -30774,7 +30493,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 249, + "teamId": "nef795866", "time": 8479766, "featuredRunMedia": null, "reactionVideos": [], @@ -30792,7 +30511,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "nef788332", "time": 8490139, "featuredRunMedia": null, "reactionVideos": [], @@ -30810,7 +30529,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 9, + "teamId": "nef788320", "time": 8492009, "featuredRunMedia": null, "reactionVideos": [], @@ -30828,7 +30547,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 8493358, "featuredRunMedia": null, "reactionVideos": [], @@ -30846,7 +30565,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 128, + "teamId": "nef789939", "time": 8503635, "featuredRunMedia": null, "reactionVideos": [], @@ -30864,7 +30583,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 8503838, "featuredRunMedia": null, "reactionVideos": [], @@ -30882,7 +30601,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 8505837, "featuredRunMedia": null, "reactionVideos": [], @@ -30900,7 +30619,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 98, + "teamId": "nef788330", "time": 8506206, "featuredRunMedia": null, "reactionVideos": [], @@ -30918,7 +30637,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 8509841, "featuredRunMedia": null, "reactionVideos": [], @@ -30936,7 +30655,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 8543182, "featuredRunMedia": null, "reactionVideos": [], @@ -30954,7 +30673,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 97, + "teamId": "nef799345", "time": 8543245, "featuredRunMedia": null, "reactionVideos": [], @@ -30972,7 +30691,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 95, + "teamId": "nef788055", "time": 8559778, "featuredRunMedia": null, "reactionVideos": [], @@ -30990,7 +30709,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "nef788418", "time": 8560536, "featuredRunMedia": null, "reactionVideos": [], @@ -31008,7 +30727,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 271, + "teamId": "nef772719", "time": 8579904, "featuredRunMedia": null, "reactionVideos": [], @@ -31026,7 +30745,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 8582044, "featuredRunMedia": null, "reactionVideos": [], @@ -31044,7 +30763,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 18, + "teamId": "nef788323", "time": 8596034, "featuredRunMedia": null, "reactionVideos": [], @@ -31062,7 +30781,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 8604128, "featuredRunMedia": null, "reactionVideos": [], @@ -31080,7 +30799,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "nef796576", "time": 8611161, "featuredRunMedia": null, "reactionVideos": [], @@ -31098,7 +30817,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 139, + "teamId": "nef790101", "time": 8612835, "featuredRunMedia": null, "reactionVideos": [], @@ -31116,7 +30835,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "nef788418", "time": 8614635, "featuredRunMedia": null, "reactionVideos": [], @@ -31134,7 +30853,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 262, + "teamId": "nef795872", "time": 8619043, "featuredRunMedia": null, "reactionVideos": [], @@ -31152,7 +30871,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 8622531, "featuredRunMedia": null, "reactionVideos": [], @@ -31170,7 +30889,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 88, + "teamId": "nef788065", "time": 8640635, "featuredRunMedia": null, "reactionVideos": [], @@ -31188,7 +30907,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 8641586, "featuredRunMedia": null, "reactionVideos": [], @@ -31206,7 +30925,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 67, + "teamId": "nef790100", "time": 8649057, "featuredRunMedia": null, "reactionVideos": [], @@ -31224,7 +30943,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 241, + "teamId": "nef790434", "time": 8652800, "featuredRunMedia": null, "reactionVideos": [], @@ -31242,7 +30961,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 8658027, "featuredRunMedia": null, "reactionVideos": [], @@ -31260,7 +30979,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 136, + "teamId": "nef790041", "time": 8660696, "featuredRunMedia": null, "reactionVideos": [], @@ -31278,7 +30997,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 80, + "teamId": "nef788430", "time": 8679430, "featuredRunMedia": null, "reactionVideos": [], @@ -31296,7 +31015,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 8682806, "featuredRunMedia": null, "reactionVideos": [], @@ -31314,7 +31033,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "nef796576", "time": 8683856, "featuredRunMedia": null, "reactionVideos": [], @@ -31332,7 +31051,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 226, + "teamId": "nef788429", "time": 8685655, "featuredRunMedia": null, "reactionVideos": [], @@ -31350,7 +31069,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 97, + "teamId": "nef799345", "time": 8686016, "featuredRunMedia": null, "reactionVideos": [], @@ -31368,7 +31087,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "nef788345", "time": 8702213, "featuredRunMedia": null, "reactionVideos": [], @@ -31386,7 +31105,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "nef796437", "time": 8702591, "featuredRunMedia": null, "reactionVideos": [], @@ -31404,7 +31123,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 8710315, "featuredRunMedia": null, "reactionVideos": [], @@ -31422,7 +31141,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 255, + "teamId": "nef797086", "time": 8712641, "featuredRunMedia": null, "reactionVideos": [], @@ -31440,7 +31159,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 8719085, "featuredRunMedia": null, "reactionVideos": [], @@ -31458,7 +31177,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 139, + "teamId": "nef790101", "time": 8723204, "featuredRunMedia": null, "reactionVideos": [], @@ -31476,7 +31195,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 8725727, "featuredRunMedia": null, "reactionVideos": [], @@ -31494,7 +31213,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 219, + "teamId": "nef790439", "time": 8739356, "featuredRunMedia": null, "reactionVideos": [], @@ -31512,7 +31231,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 8739882, "featuredRunMedia": null, "reactionVideos": [], @@ -31530,7 +31249,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 81, + "teamId": "nef788421", "time": 8740847, "featuredRunMedia": null, "reactionVideos": [], @@ -31548,7 +31267,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 127, + "teamId": "nef799360", "time": 8742880, "featuredRunMedia": null, "reactionVideos": [], @@ -31566,7 +31285,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 8761122, "featuredRunMedia": null, "reactionVideos": [], @@ -31584,7 +31303,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 88, + "teamId": "nef788065", "time": 8770555, "featuredRunMedia": null, "reactionVideos": [], @@ -31602,7 +31321,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "nef795852", "time": 8777282, "featuredRunMedia": null, "reactionVideos": [], @@ -31620,7 +31339,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 137, + "teamId": "nef788392", "time": 8777374, "featuredRunMedia": null, "reactionVideos": [], @@ -31638,7 +31357,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 122, + "teamId": "nef790437", "time": 8778799, "featuredRunMedia": null, "reactionVideos": [], @@ -31656,7 +31375,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 8779434, "featuredRunMedia": null, "reactionVideos": [], @@ -31674,7 +31393,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 8785798, "featuredRunMedia": null, "reactionVideos": [], @@ -31692,7 +31411,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 8793934, "featuredRunMedia": null, "reactionVideos": [], @@ -31710,7 +31429,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 28, + "teamId": "nef788329", "time": 8794226, "featuredRunMedia": null, "reactionVideos": [], @@ -31728,7 +31447,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 136, + "teamId": "nef790041", "time": 8811740, "featuredRunMedia": null, "reactionVideos": [], @@ -31746,7 +31465,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 8813256, "featuredRunMedia": null, "reactionVideos": [], @@ -31764,7 +31483,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 8836714, "featuredRunMedia": null, "reactionVideos": [], @@ -31782,7 +31501,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 223, + "teamId": "nef795870", "time": 8842835, "featuredRunMedia": null, "reactionVideos": [], @@ -31800,7 +31519,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 93, + "teamId": "nef799341", "time": 8845796, "featuredRunMedia": null, "reactionVideos": [], @@ -31818,7 +31537,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 128, + "teamId": "nef789939", "time": 8847683, "featuredRunMedia": null, "reactionVideos": [], @@ -31836,7 +31555,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 8859872, "featuredRunMedia": null, "reactionVideos": [], @@ -31854,7 +31573,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 8861619, "featuredRunMedia": null, "reactionVideos": [], @@ -31872,7 +31591,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 171, + "teamId": "nef796439", "time": 8864132, "featuredRunMedia": null, "reactionVideos": [], @@ -31890,7 +31609,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 8875924, "featuredRunMedia": null, "reactionVideos": [], @@ -31908,7 +31627,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 23, + "teamId": "nef780541", "time": 8884257, "featuredRunMedia": null, "reactionVideos": [], @@ -31926,7 +31645,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 8885539, "featuredRunMedia": null, "reactionVideos": [], @@ -31944,7 +31663,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 151, + "teamId": "nef799343", "time": 8894328, "featuredRunMedia": null, "reactionVideos": [], @@ -31962,7 +31681,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 98, + "teamId": "nef788330", "time": 8897467, "featuredRunMedia": null, "reactionVideos": [], @@ -31980,7 +31699,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 8898823, "featuredRunMedia": null, "reactionVideos": [], @@ -31998,7 +31717,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 143, + "teamId": "nef790105", "time": 8900078, "featuredRunMedia": null, "reactionVideos": [], @@ -32016,7 +31735,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 8918086, "featuredRunMedia": null, "reactionVideos": [], @@ -32034,7 +31753,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 8927365, "featuredRunMedia": null, "reactionVideos": [], @@ -32052,7 +31771,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 130, + "teamId": "nef796438", "time": 8928587, "featuredRunMedia": null, "reactionVideos": [], @@ -32070,7 +31789,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 151, + "teamId": "nef799343", "time": 8928962, "featuredRunMedia": null, "reactionVideos": [], @@ -32088,7 +31807,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 8935146, "featuredRunMedia": null, "reactionVideos": [], @@ -32106,7 +31825,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 80, + "teamId": "nef788430", "time": 8943095, "featuredRunMedia": null, "reactionVideos": [], @@ -32124,7 +31843,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 8944658, "featuredRunMedia": null, "reactionVideos": [], @@ -32142,7 +31861,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 8949658, "featuredRunMedia": null, "reactionVideos": [], @@ -32160,7 +31879,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 69, + "teamId": "nef796578", "time": 8950127, "featuredRunMedia": null, "reactionVideos": [], @@ -32178,7 +31897,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 8971053, "featuredRunMedia": null, "reactionVideos": [], @@ -32196,7 +31915,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 8971538, "featuredRunMedia": null, "reactionVideos": [], @@ -32214,7 +31933,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 8978410, "featuredRunMedia": null, "reactionVideos": [], @@ -32232,7 +31951,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "nef788332", "time": 8981167, "featuredRunMedia": null, "reactionVideos": [], @@ -32250,7 +31969,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 152, + "teamId": "nef780683", "time": 8987357, "featuredRunMedia": null, "reactionVideos": [], @@ -32268,7 +31987,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 266, + "teamId": "nef797087", "time": 8997088, "featuredRunMedia": null, "reactionVideos": [], @@ -32286,7 +32005,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "nef788332", "time": 8997904, "featuredRunMedia": null, "reactionVideos": [], @@ -32304,7 +32023,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 50, + "teamId": "nef780568", "time": 9000317, "featuredRunMedia": null, "reactionVideos": [], @@ -32322,7 +32041,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "nef788425", "time": 9002853, "featuredRunMedia": null, "reactionVideos": [], @@ -32340,7 +32059,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 9017211, "featuredRunMedia": null, "reactionVideos": [], @@ -32358,7 +32077,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 9033676, "featuredRunMedia": null, "reactionVideos": [], @@ -32376,7 +32095,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 9035562, "featuredRunMedia": null, "reactionVideos": [], @@ -32394,7 +32113,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 9049793, "featuredRunMedia": null, "reactionVideos": [], @@ -32412,7 +32131,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "nef780570", "time": 9050264, "featuredRunMedia": null, "reactionVideos": [], @@ -32430,7 +32149,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "nef796576", "time": 9054821, "featuredRunMedia": null, "reactionVideos": [], @@ -32448,7 +32167,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 9061898, "featuredRunMedia": null, "reactionVideos": [], @@ -32466,7 +32185,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 33, + "teamId": "nef780544", "time": 9063992, "featuredRunMedia": null, "reactionVideos": [], @@ -32484,7 +32203,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 34, + "teamId": "nef788331", "time": 9068503, "featuredRunMedia": null, "reactionVideos": [], @@ -32502,7 +32221,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 9076245, "featuredRunMedia": null, "reactionVideos": [], @@ -32520,7 +32239,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 50, + "teamId": "nef780568", "time": 9077679, "featuredRunMedia": null, "reactionVideos": [], @@ -32538,7 +32257,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 9082434, "featuredRunMedia": null, "reactionVideos": [], @@ -32556,7 +32275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "nef796576", "time": 9097246, "featuredRunMedia": null, "reactionVideos": [], @@ -32574,7 +32293,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 28, + "teamId": "nef788329", "time": 9108102, "featuredRunMedia": null, "reactionVideos": [], @@ -32592,7 +32311,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 77, + "teamId": "nef788059", "time": 9111533, "featuredRunMedia": null, "reactionVideos": [], @@ -32610,7 +32329,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 9115522, "featuredRunMedia": null, "reactionVideos": [], @@ -32628,7 +32347,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 9120580, "featuredRunMedia": null, "reactionVideos": [], @@ -32646,7 +32365,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 9123230, "featuredRunMedia": null, "reactionVideos": [], @@ -32664,7 +32383,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 217, + "teamId": "nef780309", "time": 9139404, "featuredRunMedia": null, "reactionVideos": [], @@ -32682,7 +32401,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 98, + "teamId": "nef788330", "time": 9162301, "featuredRunMedia": null, "reactionVideos": [], @@ -32700,7 +32419,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 9170675, "featuredRunMedia": null, "reactionVideos": [], @@ -32718,7 +32437,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 9172557, "featuredRunMedia": null, "reactionVideos": [], @@ -32736,7 +32455,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 176, + "teamId": "nef795856", "time": 9174832, "featuredRunMedia": null, "reactionVideos": [], @@ -32754,7 +32473,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 9185478, "featuredRunMedia": null, "reactionVideos": [], @@ -32772,7 +32491,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 9186921, "featuredRunMedia": null, "reactionVideos": [], @@ -32790,7 +32509,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 9193226, "featuredRunMedia": null, "reactionVideos": [], @@ -32808,7 +32527,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 9194608, "featuredRunMedia": null, "reactionVideos": [], @@ -32826,7 +32545,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 9203924, "featuredRunMedia": null, "reactionVideos": [], @@ -32844,7 +32563,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 162, + "teamId": "nef788431", "time": 9204841, "featuredRunMedia": null, "reactionVideos": [], @@ -32862,7 +32581,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 28, + "teamId": "nef788329", "time": 9208492, "featuredRunMedia": null, "reactionVideos": [], @@ -32880,7 +32599,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "nef797079", "time": 9215512, "featuredRunMedia": null, "reactionVideos": [], @@ -32898,7 +32617,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 230, + "teamId": "nef797080", "time": 9217206, "featuredRunMedia": null, "reactionVideos": [], @@ -32916,7 +32635,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 9233407, "featuredRunMedia": null, "reactionVideos": [], @@ -32934,7 +32653,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 142, + "teamId": "nef780578", "time": 9244454, "featuredRunMedia": null, "reactionVideos": [], @@ -32952,7 +32671,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 261, + "teamId": "nef799352", "time": 9253938, "featuredRunMedia": null, "reactionVideos": [], @@ -32970,7 +32689,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 224, + "teamId": "nef772723", "time": 9255283, "featuredRunMedia": null, "reactionVideos": [], @@ -32988,7 +32707,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 15, + "teamId": "nef780675", "time": 9265122, "featuredRunMedia": null, "reactionVideos": [], @@ -33006,7 +32725,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "nef790071", "time": 9266471, "featuredRunMedia": null, "reactionVideos": [], @@ -33024,7 +32743,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 9270991, "featuredRunMedia": null, "reactionVideos": [], @@ -33042,7 +32761,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 3, + "teamId": "nef780668", "time": 9285576, "featuredRunMedia": null, "reactionVideos": [], @@ -33060,7 +32779,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 215, + "teamId": "nef772714", "time": 9292434, "featuredRunMedia": null, "reactionVideos": [], @@ -33078,7 +32797,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 207, + "teamId": "nef790044", "time": 9294467, "featuredRunMedia": null, "reactionVideos": [], @@ -33096,7 +32815,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 9296854, "featuredRunMedia": null, "reactionVideos": [], @@ -33114,7 +32833,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 88, + "teamId": "nef788065", "time": 9301040, "featuredRunMedia": null, "reactionVideos": [], @@ -33132,7 +32851,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 9303658, "featuredRunMedia": null, "reactionVideos": [], @@ -33150,7 +32869,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 176, + "teamId": "nef795856", "time": 9311451, "featuredRunMedia": null, "reactionVideos": [], @@ -33168,7 +32887,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 25, + "teamId": "nef780669", "time": 9312955, "featuredRunMedia": null, "reactionVideos": [], @@ -33186,7 +32905,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 9313927, "featuredRunMedia": null, "reactionVideos": [], @@ -33204,7 +32923,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "nef788332", "time": 9323914, "featuredRunMedia": null, "reactionVideos": [], @@ -33222,7 +32941,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 9325860, "featuredRunMedia": null, "reactionVideos": [], @@ -33240,7 +32959,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 179, + "teamId": "nef790435", "time": 9327695, "featuredRunMedia": null, "reactionVideos": [], @@ -33258,7 +32977,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 80, + "teamId": "nef788430", "time": 9330202, "featuredRunMedia": null, "reactionVideos": [], @@ -33276,7 +32995,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 25, + "teamId": "nef780669", "time": 9336010, "featuredRunMedia": null, "reactionVideos": [], @@ -33294,7 +33013,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 9349102, "featuredRunMedia": null, "reactionVideos": [], @@ -33312,7 +33031,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 9357973, "featuredRunMedia": null, "reactionVideos": [], @@ -33330,7 +33049,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 9361980, "featuredRunMedia": null, "reactionVideos": [], @@ -33348,7 +33067,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 80, + "teamId": "nef788430", "time": 9365301, "featuredRunMedia": null, "reactionVideos": [], @@ -33366,7 +33085,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 68, + "teamId": "nef790103", "time": 9369987, "featuredRunMedia": null, "reactionVideos": [], @@ -33384,7 +33103,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 119, + "teamId": "nef788028", "time": 9376756, "featuredRunMedia": null, "reactionVideos": [], @@ -33402,7 +33121,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 9380157, "featuredRunMedia": null, "reactionVideos": [], @@ -33420,7 +33139,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 9383607, "featuredRunMedia": null, "reactionVideos": [], @@ -33438,7 +33157,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 219, + "teamId": "nef790439", "time": 9390159, "featuredRunMedia": null, "reactionVideos": [], @@ -33456,7 +33175,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 256, + "teamId": "nef795867", "time": 9396075, "featuredRunMedia": null, "reactionVideos": [], @@ -33474,7 +33193,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 133, + "teamId": "nef788340", "time": 9399616, "featuredRunMedia": null, "reactionVideos": [], @@ -33492,7 +33211,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 9399666, "featuredRunMedia": null, "reactionVideos": [], @@ -33510,7 +33229,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 265, + "teamId": "nef780600", "time": 9402128, "featuredRunMedia": null, "reactionVideos": [], @@ -33528,7 +33247,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 9403903, "featuredRunMedia": null, "reactionVideos": [], @@ -33546,7 +33265,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 146, + "teamId": "nef790042", "time": 9417194, "featuredRunMedia": null, "reactionVideos": [], @@ -33564,7 +33283,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 120, + "teamId": "nef788342", "time": 9417868, "featuredRunMedia": null, "reactionVideos": [], @@ -33582,7 +33301,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 9419051, "featuredRunMedia": null, "reactionVideos": [], @@ -33600,7 +33319,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 56, + "teamId": "nef789937", "time": 9421002, "featuredRunMedia": null, "reactionVideos": [], @@ -33618,7 +33337,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 9428716, "featuredRunMedia": null, "reactionVideos": [], @@ -33636,7 +33355,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 81, + "teamId": "nef788421", "time": 9433641, "featuredRunMedia": null, "reactionVideos": [], @@ -33654,7 +33373,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 9440951, "featuredRunMedia": null, "reactionVideos": [], @@ -33672,7 +33391,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 256, + "teamId": "nef795867", "time": 9441685, "featuredRunMedia": null, "reactionVideos": [], @@ -33690,7 +33409,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 9443363, "featuredRunMedia": null, "reactionVideos": [], @@ -33708,7 +33427,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "nef788335", "time": 9445899, "featuredRunMedia": null, "reactionVideos": [], @@ -33726,7 +33445,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 9473727, "featuredRunMedia": null, "reactionVideos": [], @@ -33744,7 +33463,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 9476724, "featuredRunMedia": null, "reactionVideos": [], @@ -33762,7 +33481,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 266, + "teamId": "nef797087", "time": 9478709, "featuredRunMedia": null, "reactionVideos": [], @@ -33780,7 +33499,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 123, + "teamId": "nef788032", "time": 9481996, "featuredRunMedia": null, "reactionVideos": [], @@ -33798,7 +33517,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 21, + "teamId": "nef790436", "time": 9493276, "featuredRunMedia": null, "reactionVideos": [], @@ -33816,7 +33535,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 142, + "teamId": "nef780578", "time": 9495095, "featuredRunMedia": null, "reactionVideos": [], @@ -33834,7 +33553,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 188, + "teamId": "nef788066", "time": 9497178, "featuredRunMedia": null, "reactionVideos": [], @@ -33852,7 +33571,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 9514493, "featuredRunMedia": null, "reactionVideos": [], @@ -33870,7 +33589,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 9525977, "featuredRunMedia": null, "reactionVideos": [], @@ -33888,7 +33607,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 121, + "teamId": "nef788336", "time": 9537487, "featuredRunMedia": null, "reactionVideos": [], @@ -33906,7 +33625,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 9548192, "featuredRunMedia": null, "reactionVideos": [], @@ -33924,7 +33643,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 142, + "teamId": "nef780578", "time": 9549248, "featuredRunMedia": null, "reactionVideos": [], @@ -33942,7 +33661,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 98, + "teamId": "nef788330", "time": 9556358, "featuredRunMedia": null, "reactionVideos": [], @@ -33960,7 +33679,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 135, + "teamId": "nef780679", "time": 9556730, "featuredRunMedia": null, "reactionVideos": [], @@ -33978,7 +33697,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 207, + "teamId": "nef790044", "time": 9557713, "featuredRunMedia": null, "reactionVideos": [], @@ -33996,7 +33715,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 25, + "teamId": "nef780669", "time": 9566821, "featuredRunMedia": null, "reactionVideos": [], @@ -34014,7 +33733,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 63, + "teamId": "nef788029", "time": 9570480, "featuredRunMedia": null, "reactionVideos": [], @@ -34032,7 +33751,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 9580315, "featuredRunMedia": null, "reactionVideos": [], @@ -34050,7 +33769,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 9582042, "featuredRunMedia": null, "reactionVideos": [], @@ -34068,7 +33787,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 9596347, "featuredRunMedia": null, "reactionVideos": [], @@ -34086,7 +33805,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 9601330, "featuredRunMedia": null, "reactionVideos": [], @@ -34104,7 +33823,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 136, + "teamId": "nef790041", "time": 9615231, "featuredRunMedia": null, "reactionVideos": [], @@ -34122,7 +33841,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 9623360, "featuredRunMedia": null, "reactionVideos": [], @@ -34140,7 +33859,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 142, + "teamId": "nef780578", "time": 9647128, "featuredRunMedia": null, "reactionVideos": [], @@ -34158,7 +33877,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 268, + "teamId": "nef795869", "time": 9652497, "featuredRunMedia": null, "reactionVideos": [], @@ -34176,7 +33895,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 9655277, "featuredRunMedia": null, "reactionVideos": [], @@ -34194,7 +33913,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 9656713, "featuredRunMedia": null, "reactionVideos": [], @@ -34212,7 +33931,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 132, + "teamId": "nef780571", "time": 9657252, "featuredRunMedia": null, "reactionVideos": [], @@ -34230,7 +33949,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 9657466, "featuredRunMedia": null, "reactionVideos": [], @@ -34248,7 +33967,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 240, + "teamId": "nef780303", "time": 9663773, "featuredRunMedia": null, "reactionVideos": [], @@ -34266,7 +33985,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 9667837, "featuredRunMedia": null, "reactionVideos": [], @@ -34284,7 +34003,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 104, + "teamId": "nef780563", "time": 9670833, "featuredRunMedia": null, "reactionVideos": [], @@ -34302,7 +34021,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 9672374, "featuredRunMedia": null, "reactionVideos": [], @@ -34320,7 +34039,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "nef788320", "time": 9689856, "featuredRunMedia": null, "reactionVideos": [], @@ -34338,7 +34057,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 9691054, "featuredRunMedia": null, "reactionVideos": [], @@ -34356,7 +34075,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "nef780566", "time": 9703279, "featuredRunMedia": null, "reactionVideos": [], @@ -34374,7 +34093,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "nef796576", "time": 9705012, "featuredRunMedia": null, "reactionVideos": [], @@ -34392,7 +34111,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 162, + "teamId": "nef788431", "time": 9705243, "featuredRunMedia": null, "reactionVideos": [], @@ -34410,7 +34129,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 9712916, "featuredRunMedia": null, "reactionVideos": [], @@ -34428,7 +34147,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 9717376, "featuredRunMedia": null, "reactionVideos": [], @@ -34446,7 +34165,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 9721620, "featuredRunMedia": null, "reactionVideos": [], @@ -34464,7 +34183,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 34, + "teamId": "nef788331", "time": 9723172, "featuredRunMedia": null, "reactionVideos": [], @@ -34482,7 +34201,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 9725688, "featuredRunMedia": null, "reactionVideos": [], @@ -34500,7 +34219,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 140, + "teamId": "nef799346", "time": 9726596, "featuredRunMedia": null, "reactionVideos": [], @@ -34518,7 +34237,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 9729244, "featuredRunMedia": null, "reactionVideos": [], @@ -34536,7 +34255,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "nef780566", "time": 9742100, "featuredRunMedia": null, "reactionVideos": [], @@ -34554,7 +34273,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 9743971, "featuredRunMedia": null, "reactionVideos": [], @@ -34572,7 +34291,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 242, + "teamId": "nef772722", "time": 9744647, "featuredRunMedia": null, "reactionVideos": [], @@ -34590,7 +34309,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "nef780666", "time": 9754401, "featuredRunMedia": null, "reactionVideos": [], @@ -34608,7 +34327,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 230, + "teamId": "nef797080", "time": 9765475, "featuredRunMedia": null, "reactionVideos": [], @@ -34626,7 +34345,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 31, + "teamId": "nef790067", "time": 9795279, "featuredRunMedia": null, "reactionVideos": [], @@ -34644,7 +34363,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 77, + "teamId": "nef788059", "time": 9795644, "featuredRunMedia": null, "reactionVideos": [], @@ -34662,7 +34381,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 70, + "teamId": "nef788056", "time": 9800033, "featuredRunMedia": null, "reactionVideos": [], @@ -34680,7 +34399,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 149, + "teamId": "nef788395", "time": 9807483, "featuredRunMedia": null, "reactionVideos": [], @@ -34698,7 +34417,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 132, + "teamId": "nef780571", "time": 9813778, "featuredRunMedia": null, "reactionVideos": [], @@ -34716,7 +34435,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 33, + "teamId": "nef780544", "time": 9818247, "featuredRunMedia": null, "reactionVideos": [], @@ -34734,7 +34453,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "nef780668", "time": 9823067, "featuredRunMedia": null, "reactionVideos": [], @@ -34752,7 +34471,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "nef788327", "time": 9824110, "featuredRunMedia": null, "reactionVideos": [], @@ -34770,7 +34489,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "nef780666", "time": 9824413, "featuredRunMedia": null, "reactionVideos": [], @@ -34788,7 +34507,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 9824963, "featuredRunMedia": null, "reactionVideos": [], @@ -34806,7 +34525,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 9831388, "featuredRunMedia": null, "reactionVideos": [], @@ -34824,7 +34543,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 58, + "teamId": "nef790432", "time": 9837120, "featuredRunMedia": null, "reactionVideos": [], @@ -34842,7 +34561,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "nef780666", "time": 9842363, "featuredRunMedia": null, "reactionVideos": [], @@ -34860,7 +34579,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 281, + "teamId": "nef799372", "time": 9850192, "featuredRunMedia": null, "reactionVideos": [], @@ -34878,7 +34597,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 9859999, "featuredRunMedia": null, "reactionVideos": [], @@ -34896,7 +34615,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 9860250, "featuredRunMedia": null, "reactionVideos": [], @@ -34914,7 +34633,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 140, + "teamId": "nef799346", "time": 9865543, "featuredRunMedia": null, "reactionVideos": [], @@ -34932,7 +34651,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 35, + "teamId": "nef795852", "time": 9871118, "featuredRunMedia": null, "reactionVideos": [], @@ -34950,7 +34669,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 151, + "teamId": "nef799343", "time": 9871401, "featuredRunMedia": null, "reactionVideos": [], @@ -34968,7 +34687,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "nef780566", "time": 9878935, "featuredRunMedia": null, "reactionVideos": [], @@ -34986,7 +34705,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 9882966, "featuredRunMedia": null, "reactionVideos": [], @@ -35004,7 +34723,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 9893952, "featuredRunMedia": null, "reactionVideos": [], @@ -35022,7 +34741,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 70, + "teamId": "nef788056", "time": 9903377, "featuredRunMedia": null, "reactionVideos": [], @@ -35040,7 +34759,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "nef795855", "time": 9909223, "featuredRunMedia": null, "reactionVideos": [], @@ -35058,7 +34777,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 9909744, "featuredRunMedia": null, "reactionVideos": [], @@ -35076,7 +34795,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 34, + "teamId": "nef788331", "time": 9914606, "featuredRunMedia": null, "reactionVideos": [], @@ -35094,7 +34813,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 207, + "teamId": "nef790044", "time": 9935241, "featuredRunMedia": null, "reactionVideos": [], @@ -35112,7 +34831,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 74, + "teamId": "nef788057", "time": 9947910, "featuredRunMedia": null, "reactionVideos": [], @@ -35130,7 +34849,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 101, + "teamId": "nef780677", "time": 9948108, "featuredRunMedia": null, "reactionVideos": [], @@ -35148,7 +34867,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "nef780671", "time": 9950065, "featuredRunMedia": null, "reactionVideos": [], @@ -35166,7 +34885,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 72, + "teamId": "nef790102", "time": 9950773, "featuredRunMedia": null, "reactionVideos": [], @@ -35184,7 +34903,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 9951811, "featuredRunMedia": null, "reactionVideos": [], @@ -35202,7 +34921,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 137, + "teamId": "nef788392", "time": 9957726, "featuredRunMedia": null, "reactionVideos": [], @@ -35220,7 +34939,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 123, + "teamId": "nef788032", "time": 9966288, "featuredRunMedia": null, "reactionVideos": [], @@ -35238,7 +34957,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "nef788321", "time": 9968623, "featuredRunMedia": null, "reactionVideos": [], @@ -35256,7 +34975,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 9970535, "featuredRunMedia": null, "reactionVideos": [], @@ -35274,7 +34993,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 83, + "teamId": "nef788349", "time": 10000618, "featuredRunMedia": null, "reactionVideos": [], @@ -35292,7 +35011,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 267, + "teamId": "nef795864", "time": 10001332, "featuredRunMedia": null, "reactionVideos": [], @@ -35310,7 +35029,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 10004621, "featuredRunMedia": null, "reactionVideos": [], @@ -35328,7 +35047,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 10012790, "featuredRunMedia": null, "reactionVideos": [], @@ -35346,7 +35065,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 31, + "teamId": "nef790067", "time": 10017736, "featuredRunMedia": null, "reactionVideos": [], @@ -35364,7 +35083,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "nef780564", "time": 10020039, "featuredRunMedia": null, "reactionVideos": [], @@ -35382,7 +35101,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 10032334, "featuredRunMedia": null, "reactionVideos": [], @@ -35400,7 +35119,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 74, + "teamId": "nef788057", "time": 10034190, "featuredRunMedia": null, "reactionVideos": [], @@ -35418,7 +35137,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 35, + "teamId": "nef795852", "time": 10036879, "featuredRunMedia": null, "reactionVideos": [], @@ -35436,7 +35155,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 72, + "teamId": "nef790102", "time": 10045161, "featuredRunMedia": null, "reactionVideos": [], @@ -35454,7 +35173,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 99, + "teamId": "nef790043", "time": 10046120, "featuredRunMedia": null, "reactionVideos": [], @@ -35472,7 +35191,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 10049898, "featuredRunMedia": null, "reactionVideos": [], @@ -35490,7 +35209,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 10064010, "featuredRunMedia": null, "reactionVideos": [], @@ -35508,7 +35227,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 238, + "teamId": "nef772718", "time": 10065797, "featuredRunMedia": null, "reactionVideos": [], @@ -35526,7 +35245,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 10066380, "featuredRunMedia": null, "reactionVideos": [], @@ -35544,7 +35263,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 38, + "teamId": "nef790038", "time": 10089862, "featuredRunMedia": null, "reactionVideos": [], @@ -35562,7 +35281,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 102, + "teamId": "nef780567", "time": 10094159, "featuredRunMedia": null, "reactionVideos": [], @@ -35580,7 +35299,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 211, + "teamId": "nef797083", "time": 10113035, "featuredRunMedia": null, "reactionVideos": [], @@ -35598,7 +35317,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 10115665, "featuredRunMedia": null, "reactionVideos": [], @@ -35616,7 +35335,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "nef788332", "time": 10116220, "featuredRunMedia": null, "reactionVideos": [], @@ -35634,7 +35353,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 267, + "teamId": "nef795864", "time": 10117782, "featuredRunMedia": null, "reactionVideos": [], @@ -35652,7 +35371,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10119145, "featuredRunMedia": null, "reactionVideos": [], @@ -35670,7 +35389,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10141218, "featuredRunMedia": null, "reactionVideos": [], @@ -35688,7 +35407,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 257, + "teamId": "nef797082", "time": 10142886, "featuredRunMedia": null, "reactionVideos": [], @@ -35706,7 +35425,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 49, + "teamId": "nef780673", "time": 10143568, "featuredRunMedia": null, "reactionVideos": [], @@ -35724,7 +35443,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 90, + "teamId": "nef780543", "time": 10144005, "featuredRunMedia": null, "reactionVideos": [], @@ -35742,7 +35461,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 10163263, "featuredRunMedia": null, "reactionVideos": [], @@ -35760,7 +35479,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 10174432, "featuredRunMedia": null, "reactionVideos": [], @@ -35778,7 +35497,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 65, + "teamId": "nef790104", "time": 10176716, "featuredRunMedia": null, "reactionVideos": [], @@ -35796,7 +35515,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "nef780566", "time": 10184898, "featuredRunMedia": null, "reactionVideos": [], @@ -35814,7 +35533,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 10193776, "featuredRunMedia": null, "reactionVideos": [], @@ -35832,7 +35551,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 149, + "teamId": "nef788395", "time": 10202655, "featuredRunMedia": null, "reactionVideos": [], @@ -35850,7 +35569,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 10203303, "featuredRunMedia": null, "reactionVideos": [], @@ -35868,7 +35587,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 10206332, "featuredRunMedia": null, "reactionVideos": [], @@ -35886,7 +35605,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 234, + "teamId": "nef790050", "time": 10214421, "featuredRunMedia": null, "reactionVideos": [], @@ -35904,7 +35623,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 257, + "teamId": "nef797082", "time": 10215110, "featuredRunMedia": null, "reactionVideos": [], @@ -35922,7 +35641,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 248, + "teamId": "nef799355", "time": 10216308, "featuredRunMedia": null, "reactionVideos": [], @@ -35940,7 +35659,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 10219447, "featuredRunMedia": null, "reactionVideos": [], @@ -35958,7 +35677,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 178, + "teamId": "nef790137", "time": 10220633, "featuredRunMedia": null, "reactionVideos": [], @@ -35976,7 +35695,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 242, + "teamId": "nef772722", "time": 10225530, "featuredRunMedia": null, "reactionVideos": [], @@ -35994,7 +35713,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 137, + "teamId": "nef788392", "time": 10226835, "featuredRunMedia": null, "reactionVideos": [], @@ -36012,7 +35731,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 10241310, "featuredRunMedia": null, "reactionVideos": [], @@ -36030,7 +35749,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 77, + "teamId": "nef788059", "time": 10243815, "featuredRunMedia": null, "reactionVideos": [], @@ -36048,7 +35767,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 7, + "teamId": "nef788325", "time": 10248203, "featuredRunMedia": null, "reactionVideos": [], @@ -36066,7 +35785,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 10261326, "featuredRunMedia": null, "reactionVideos": [], @@ -36084,7 +35803,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 10271228, "featuredRunMedia": null, "reactionVideos": [], @@ -36102,7 +35821,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10277768, "featuredRunMedia": null, "reactionVideos": [], @@ -36120,7 +35839,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 238, + "teamId": "nef772718", "time": 10284782, "featuredRunMedia": null, "reactionVideos": [], @@ -36138,7 +35857,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10294632, "featuredRunMedia": null, "reactionVideos": [], @@ -36156,7 +35875,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 83, + "teamId": "nef788349", "time": 10296191, "featuredRunMedia": null, "reactionVideos": [], @@ -36174,7 +35893,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 10297202, "featuredRunMedia": null, "reactionVideos": [], @@ -36192,7 +35911,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 11, + "teamId": "nef788328", "time": 10297712, "featuredRunMedia": null, "reactionVideos": [], @@ -36210,7 +35929,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 49, + "teamId": "nef780673", "time": 10298914, "featuredRunMedia": null, "reactionVideos": [], @@ -36228,7 +35947,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 235, + "teamId": "nef772715", "time": 10313325, "featuredRunMedia": null, "reactionVideos": [], @@ -36246,7 +35965,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 21, + "teamId": "nef790436", "time": 10316097, "featuredRunMedia": null, "reactionVideos": [], @@ -36264,7 +35983,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 82, + "teamId": "nef799340", "time": 10321186, "featuredRunMedia": null, "reactionVideos": [], @@ -36282,7 +36001,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 141, + "teamId": "nef788346", "time": 10323863, "featuredRunMedia": null, "reactionVideos": [], @@ -36300,7 +36019,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 10324862, "featuredRunMedia": null, "reactionVideos": [], @@ -36318,7 +36037,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 236, + "teamId": "nef789838", "time": 10350743, "featuredRunMedia": null, "reactionVideos": [], @@ -36336,7 +36055,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 7, + "teamId": "nef788325", "time": 10352524, "featuredRunMedia": null, "reactionVideos": [], @@ -36354,7 +36073,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 87, + "teamId": "nef797075", "time": 10369715, "featuredRunMedia": null, "reactionVideos": [], @@ -36372,7 +36091,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 10372218, "featuredRunMedia": null, "reactionVideos": [], @@ -36390,7 +36109,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 10377191, "featuredRunMedia": null, "reactionVideos": [], @@ -36408,7 +36127,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 10378076, "featuredRunMedia": null, "reactionVideos": [], @@ -36426,7 +36145,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 153, + "teamId": "nef795858", "time": 10379107, "featuredRunMedia": null, "reactionVideos": [], @@ -36444,7 +36163,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 10387667, "featuredRunMedia": null, "reactionVideos": [], @@ -36462,7 +36181,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 35, + "teamId": "nef795852", "time": 10390722, "featuredRunMedia": null, "reactionVideos": [], @@ -36480,7 +36199,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 10395467, "featuredRunMedia": null, "reactionVideos": [], @@ -36498,7 +36217,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 194, + "teamId": "nef790135", "time": 10403766, "featuredRunMedia": null, "reactionVideos": [], @@ -36516,7 +36235,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 121, + "teamId": "nef788336", "time": 10404863, "featuredRunMedia": null, "reactionVideos": [], @@ -36534,7 +36253,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 10405548, "featuredRunMedia": null, "reactionVideos": [], @@ -36552,7 +36271,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 10409427, "featuredRunMedia": null, "reactionVideos": [], @@ -36570,7 +36289,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 10414764, "featuredRunMedia": null, "reactionVideos": [], @@ -36588,7 +36307,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 82, + "teamId": "nef799340", "time": 10419515, "featuredRunMedia": null, "reactionVideos": [], @@ -36606,7 +36325,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "nef780566", "time": 10422205, "featuredRunMedia": null, "reactionVideos": [], @@ -36624,7 +36343,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 224, + "teamId": "nef772723", "time": 10433750, "featuredRunMedia": null, "reactionVideos": [], @@ -36642,7 +36361,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 10442345, "featuredRunMedia": null, "reactionVideos": [], @@ -36660,7 +36379,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 74, + "teamId": "nef788057", "time": 10445675, "featuredRunMedia": null, "reactionVideos": [], @@ -36678,7 +36397,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 83, + "teamId": "nef788349", "time": 10470922, "featuredRunMedia": null, "reactionVideos": [], @@ -36696,7 +36415,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 153, + "teamId": "nef795858", "time": 10472376, "featuredRunMedia": null, "reactionVideos": [], @@ -36714,7 +36433,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 10480940, "featuredRunMedia": null, "reactionVideos": [], @@ -36732,7 +36451,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 19, + "teamId": "nef780674", "time": 10487813, "featuredRunMedia": null, "reactionVideos": [], @@ -36750,7 +36469,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 216, + "teamId": "nef772721", "time": 10487956, "featuredRunMedia": null, "reactionVideos": [], @@ -36768,7 +36487,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 109, + "teamId": "nef788326", "time": 10509507, "featuredRunMedia": null, "reactionVideos": [], @@ -36786,7 +36505,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 60, + "teamId": "nef797072", "time": 10509650, "featuredRunMedia": null, "reactionVideos": [], @@ -36804,7 +36523,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 194, + "teamId": "nef790135", "time": 10511138, "featuredRunMedia": null, "reactionVideos": [], @@ -36822,7 +36541,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 101, + "teamId": "nef780677", "time": 10517025, "featuredRunMedia": null, "reactionVideos": [], @@ -36840,7 +36559,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 10518939, "featuredRunMedia": null, "reactionVideos": [], @@ -36858,7 +36577,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 10519619, "featuredRunMedia": null, "reactionVideos": [], @@ -36876,7 +36595,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 226, + "teamId": "nef788429", "time": 10520571, "featuredRunMedia": null, "reactionVideos": [], @@ -36894,7 +36613,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 10535354, "featuredRunMedia": null, "reactionVideos": [], @@ -36912,7 +36631,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 10535719, "featuredRunMedia": null, "reactionVideos": [], @@ -36930,7 +36649,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 134, + "teamId": "nef799571", "time": 10538127, "featuredRunMedia": null, "reactionVideos": [], @@ -36948,7 +36667,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 77, + "teamId": "nef788059", "time": 10542843, "featuredRunMedia": null, "reactionVideos": [], @@ -36966,7 +36685,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 107, + "teamId": "nef788428", "time": 10548236, "featuredRunMedia": null, "reactionVideos": [], @@ -36984,7 +36703,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 102, + "teamId": "nef780567", "time": 10553561, "featuredRunMedia": null, "reactionVideos": [], @@ -37002,7 +36721,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 10557244, "featuredRunMedia": null, "reactionVideos": [], @@ -37020,7 +36739,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 93, + "teamId": "nef799341", "time": 10559119, "featuredRunMedia": null, "reactionVideos": [], @@ -37038,7 +36757,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10562914, "featuredRunMedia": null, "reactionVideos": [], @@ -37056,7 +36775,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 10570205, "featuredRunMedia": null, "reactionVideos": [], @@ -37074,7 +36793,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10580491, "featuredRunMedia": null, "reactionVideos": [], @@ -37092,7 +36811,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 10581467, "featuredRunMedia": null, "reactionVideos": [], @@ -37110,7 +36829,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 179, + "teamId": "nef790435", "time": 10589450, "featuredRunMedia": null, "reactionVideos": [], @@ -37128,7 +36847,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 188, + "teamId": "nef788066", "time": 10591727, "featuredRunMedia": null, "reactionVideos": [], @@ -37146,7 +36865,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 60, + "teamId": "nef797072", "time": 10601785, "featuredRunMedia": null, "reactionVideos": [], @@ -37164,7 +36883,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 200, + "teamId": "nef799344", "time": 10605221, "featuredRunMedia": null, "reactionVideos": [], @@ -37182,7 +36901,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "nef780665", "time": 10605222, "featuredRunMedia": null, "reactionVideos": [], @@ -37200,7 +36919,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 153, + "teamId": "nef795858", "time": 10605965, "featuredRunMedia": null, "reactionVideos": [], @@ -37218,7 +36937,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 10606338, "featuredRunMedia": null, "reactionVideos": [], @@ -37236,7 +36955,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 10607258, "featuredRunMedia": null, "reactionVideos": [], @@ -37254,7 +36973,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "nef780668", "time": 10608046, "featuredRunMedia": null, "reactionVideos": [], @@ -37272,7 +36991,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 129, + "teamId": "nef788427", "time": 10618347, "featuredRunMedia": null, "reactionVideos": [], @@ -37290,7 +37009,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 10633241, "featuredRunMedia": null, "reactionVideos": [], @@ -37308,7 +37027,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 138, + "teamId": "nef788338", "time": 10639663, "featuredRunMedia": null, "reactionVideos": [], @@ -37326,7 +37045,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 78, + "teamId": "nef797079", "time": 10650391, "featuredRunMedia": null, "reactionVideos": [], @@ -37344,7 +37063,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 267, + "teamId": "nef795864", "time": 10669025, "featuredRunMedia": null, "reactionVideos": [], @@ -37362,7 +37081,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10673777, "featuredRunMedia": null, "reactionVideos": [], @@ -37380,7 +37099,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 279, + "teamId": "nef799365", "time": 10683423, "featuredRunMedia": null, "reactionVideos": [], @@ -37398,7 +37117,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "nef788324", "time": 10683765, "featuredRunMedia": null, "reactionVideos": [], @@ -37416,7 +37135,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "nef788321", "time": 10688462, "featuredRunMedia": null, "reactionVideos": [], @@ -37434,7 +37153,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 243, + "teamId": "nef797084", "time": 10689171, "featuredRunMedia": null, "reactionVideos": [], @@ -37452,7 +37171,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "nef780538", "time": 10691224, "featuredRunMedia": null, "reactionVideos": [], @@ -37470,7 +37189,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 222, + "teamId": "nef799351", "time": 10692916, "featuredRunMedia": null, "reactionVideos": [], @@ -37488,7 +37207,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 133, + "teamId": "nef788340", "time": 10695715, "featuredRunMedia": null, "reactionVideos": [], @@ -37506,7 +37225,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 10696332, "featuredRunMedia": null, "reactionVideos": [], @@ -37524,7 +37243,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10698247, "featuredRunMedia": null, "reactionVideos": [], @@ -37542,7 +37261,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 226, + "teamId": "nef788429", "time": 10699987, "featuredRunMedia": null, "reactionVideos": [], @@ -37560,7 +37279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 153, + "teamId": "nef795858", "time": 10703963, "featuredRunMedia": null, "reactionVideos": [], @@ -37578,7 +37297,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 264, + "teamId": "nef795865", "time": 10710460, "featuredRunMedia": null, "reactionVideos": [], @@ -37596,7 +37315,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 35, + "teamId": "nef795852", "time": 10725886, "featuredRunMedia": null, "reactionVideos": [], @@ -37614,7 +37333,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 10739108, "featuredRunMedia": null, "reactionVideos": [], @@ -37632,7 +37351,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 59, + "teamId": "nef780307", "time": 10741620, "featuredRunMedia": null, "reactionVideos": [], @@ -37650,7 +37369,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 127, + "teamId": "nef799360", "time": 10746344, "featuredRunMedia": null, "reactionVideos": [], @@ -37668,7 +37387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 54, + "teamId": "nef796577", "time": 10750898, "featuredRunMedia": null, "reactionVideos": [], @@ -37686,7 +37405,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "nef780564", "time": 10784284, "featuredRunMedia": null, "reactionVideos": [], @@ -37704,7 +37423,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 168, + "teamId": "nef780681", "time": 10786585, "featuredRunMedia": null, "reactionVideos": [], @@ -37722,7 +37441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 10790445, "featuredRunMedia": null, "reactionVideos": [], @@ -37740,7 +37459,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 10822041, "featuredRunMedia": null, "reactionVideos": [], @@ -37758,7 +37477,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 10825378, "featuredRunMedia": null, "reactionVideos": [], @@ -37776,7 +37495,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "nef780564", "time": 10844286, "featuredRunMedia": null, "reactionVideos": [], @@ -37794,7 +37513,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 99, + "teamId": "nef790043", "time": 10845618, "featuredRunMedia": null, "reactionVideos": [], @@ -37812,7 +37531,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "nef780538", "time": 10852528, "featuredRunMedia": null, "reactionVideos": [], @@ -37830,7 +37549,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 10853333, "featuredRunMedia": null, "reactionVideos": [], @@ -37848,7 +37567,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 222, + "teamId": "nef799351", "time": 10858025, "featuredRunMedia": null, "reactionVideos": [], @@ -37866,7 +37585,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 194, + "teamId": "nef790135", "time": 10864379, "featuredRunMedia": null, "reactionVideos": [], @@ -37884,7 +37603,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 10869732, "featuredRunMedia": null, "reactionVideos": [], @@ -37902,7 +37621,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 55, + "teamId": "nef788344", "time": 10871469, "featuredRunMedia": null, "reactionVideos": [], @@ -37920,7 +37639,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "nef796437", "time": 10871479, "featuredRunMedia": null, "reactionVideos": [], @@ -37938,7 +37657,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 236, + "teamId": "nef789838", "time": 10878230, "featuredRunMedia": null, "reactionVideos": [], @@ -37956,7 +37675,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 10882225, "featuredRunMedia": null, "reactionVideos": [], @@ -37974,7 +37693,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 10896938, "featuredRunMedia": null, "reactionVideos": [], @@ -37992,7 +37711,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 247, + "teamId": "nef796557", "time": 10911967, "featuredRunMedia": null, "reactionVideos": [], @@ -38010,7 +37729,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 185, + "teamId": "nef790138", "time": 10924059, "featuredRunMedia": null, "reactionVideos": [], @@ -38028,7 +37747,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 10926701, "featuredRunMedia": null, "reactionVideos": [], @@ -38046,7 +37765,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 277, + "teamId": "nef796555", "time": 10929248, "featuredRunMedia": null, "reactionVideos": [], @@ -38064,7 +37783,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 150, + "teamId": "nef797076", "time": 10932689, "featuredRunMedia": null, "reactionVideos": [], @@ -38082,7 +37801,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 10933690, "featuredRunMedia": null, "reactionVideos": [], @@ -38100,7 +37819,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 16, + "teamId": "nef788424", "time": 10935325, "featuredRunMedia": null, "reactionVideos": [], @@ -38118,7 +37837,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 144, + "teamId": "nef780575", "time": 10938779, "featuredRunMedia": null, "reactionVideos": [], @@ -38136,7 +37855,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 10940793, "featuredRunMedia": null, "reactionVideos": [], @@ -38154,7 +37873,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 10940821, "featuredRunMedia": null, "reactionVideos": [], @@ -38172,7 +37891,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 10943326, "featuredRunMedia": null, "reactionVideos": [], @@ -38190,7 +37909,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 10948169, "featuredRunMedia": null, "reactionVideos": [], @@ -38208,7 +37927,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 247, + "teamId": "nef796557", "time": 10954746, "featuredRunMedia": null, "reactionVideos": [], @@ -38226,7 +37945,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 141, + "teamId": "nef788346", "time": 10961383, "featuredRunMedia": null, "reactionVideos": [], @@ -38244,7 +37963,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 10962493, "featuredRunMedia": null, "reactionVideos": [], @@ -38262,7 +37981,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 10983926, "featuredRunMedia": null, "reactionVideos": [], @@ -38280,7 +37999,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "nef790103", "time": 11021880, "featuredRunMedia": null, "reactionVideos": [], @@ -38298,7 +38017,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "nef788320", "time": 11025803, "featuredRunMedia": null, "reactionVideos": [], @@ -38316,7 +38035,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 11026756, "featuredRunMedia": null, "reactionVideos": [], @@ -38334,7 +38053,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 11027790, "featuredRunMedia": null, "reactionVideos": [], @@ -38352,7 +38071,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 79, + "teamId": "nef788347", "time": 11032673, "featuredRunMedia": null, "reactionVideos": [], @@ -38370,7 +38089,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 96, + "teamId": "nef799358", "time": 11034580, "featuredRunMedia": null, "reactionVideos": [], @@ -38388,7 +38107,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 11037749, "featuredRunMedia": null, "reactionVideos": [], @@ -38406,7 +38125,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 11055536, "featuredRunMedia": null, "reactionVideos": [], @@ -38424,7 +38143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 79, + "teamId": "nef788347", "time": 11076408, "featuredRunMedia": null, "reactionVideos": [], @@ -38442,7 +38161,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 197, + "teamId": "nef788351", "time": 11078732, "featuredRunMedia": null, "reactionVideos": [], @@ -38460,7 +38179,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "nef788327", "time": 11081457, "featuredRunMedia": null, "reactionVideos": [], @@ -38478,7 +38197,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "nef788418", "time": 11094353, "featuredRunMedia": null, "reactionVideos": [], @@ -38496,7 +38215,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 49, + "teamId": "nef780673", "time": 11096187, "featuredRunMedia": null, "reactionVideos": [], @@ -38514,7 +38233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 109, + "teamId": "nef788326", "time": 11113518, "featuredRunMedia": null, "reactionVideos": [], @@ -38532,7 +38251,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 11129348, "featuredRunMedia": null, "reactionVideos": [], @@ -38550,7 +38269,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 185, + "teamId": "nef790138", "time": 11135210, "featuredRunMedia": null, "reactionVideos": [], @@ -38568,7 +38287,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "nef788064", "time": 11138765, "featuredRunMedia": null, "reactionVideos": [], @@ -38586,7 +38305,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 265, + "teamId": "nef780600", "time": 11152306, "featuredRunMedia": null, "reactionVideos": [], @@ -38604,7 +38323,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 79, + "teamId": "nef788347", "time": 11155612, "featuredRunMedia": null, "reactionVideos": [], @@ -38622,7 +38341,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 277, + "teamId": "nef796555", "time": 11159019, "featuredRunMedia": null, "reactionVideos": [], @@ -38640,7 +38359,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 109, + "teamId": "nef788326", "time": 11161807, "featuredRunMedia": null, "reactionVideos": [], @@ -38658,7 +38377,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 159, + "teamId": "nef780576", "time": 11165584, "featuredRunMedia": null, "reactionVideos": [], @@ -38676,7 +38395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 72, + "teamId": "nef790102", "time": 11167568, "featuredRunMedia": null, "reactionVideos": [], @@ -38694,7 +38413,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 11174693, "featuredRunMedia": null, "reactionVideos": [], @@ -38712,7 +38431,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "nef788056", "time": 11178618, "featuredRunMedia": null, "reactionVideos": [], @@ -38730,7 +38449,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 153, + "teamId": "nef795858", "time": 11187208, "featuredRunMedia": null, "reactionVideos": [], @@ -38748,7 +38467,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 194, + "teamId": "nef790135", "time": 11194331, "featuredRunMedia": null, "reactionVideos": [], @@ -38766,7 +38485,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 78, + "teamId": "nef797079", "time": 11197612, "featuredRunMedia": null, "reactionVideos": [], @@ -38784,7 +38503,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 185, + "teamId": "nef790138", "time": 11209881, "featuredRunMedia": null, "reactionVideos": [], @@ -38802,7 +38521,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 129, + "teamId": "nef788427", "time": 11224826, "featuredRunMedia": null, "reactionVideos": [], @@ -38820,7 +38539,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 113, + "teamId": "nef780569", "time": 11226153, "featuredRunMedia": null, "reactionVideos": [], @@ -38838,7 +38557,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 11226739, "featuredRunMedia": null, "reactionVideos": [], @@ -38856,7 +38575,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 162, + "teamId": "nef788431", "time": 11234885, "featuredRunMedia": null, "reactionVideos": [], @@ -38874,7 +38593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 209, + "teamId": "nef780577", "time": 11259828, "featuredRunMedia": null, "reactionVideos": [], @@ -38892,7 +38611,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 79, + "teamId": "nef788347", "time": 11264377, "featuredRunMedia": null, "reactionVideos": [], @@ -38910,7 +38629,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 86, + "teamId": "nef780570", "time": 11265207, "featuredRunMedia": null, "reactionVideos": [], @@ -38928,7 +38647,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 256, + "teamId": "nef795867", "time": 11268684, "featuredRunMedia": null, "reactionVideos": [], @@ -38946,7 +38665,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 11282674, "featuredRunMedia": null, "reactionVideos": [], @@ -38964,7 +38683,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 11291708, "featuredRunMedia": null, "reactionVideos": [], @@ -38982,7 +38701,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 11312266, "featuredRunMedia": null, "reactionVideos": [], @@ -39000,7 +38719,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 256, + "teamId": "nef795867", "time": 11315170, "featuredRunMedia": null, "reactionVideos": [], @@ -39018,7 +38737,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 11316841, "featuredRunMedia": null, "reactionVideos": [], @@ -39036,7 +38755,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 255, + "teamId": "nef797086", "time": 11318538, "featuredRunMedia": null, "reactionVideos": [], @@ -39054,7 +38773,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 61, + "teamId": "nef790068", "time": 11318950, "featuredRunMedia": null, "reactionVideos": [], @@ -39072,7 +38791,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 178, + "teamId": "nef790137", "time": 11319858, "featuredRunMedia": null, "reactionVideos": [], @@ -39090,7 +38809,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 11323517, "featuredRunMedia": null, "reactionVideos": [], @@ -39108,7 +38827,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 150, + "teamId": "nef797076", "time": 11327687, "featuredRunMedia": null, "reactionVideos": [], @@ -39126,7 +38845,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 144, + "teamId": "nef780575", "time": 11337362, "featuredRunMedia": null, "reactionVideos": [], @@ -39144,7 +38863,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 69, + "teamId": "nef796578", "time": 11339234, "featuredRunMedia": null, "reactionVideos": [], @@ -39162,7 +38881,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 136, + "teamId": "nef790041", "time": 11341471, "featuredRunMedia": null, "reactionVideos": [], @@ -39180,7 +38899,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 11347717, "featuredRunMedia": null, "reactionVideos": [], @@ -39198,7 +38917,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 36, + "teamId": "nef790069", "time": 11347847, "featuredRunMedia": null, "reactionVideos": [], @@ -39216,7 +38935,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 233, + "teamId": "nef799368", "time": 11349858, "featuredRunMedia": null, "reactionVideos": [], @@ -39234,7 +38953,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 209, + "teamId": "nef780577", "time": 11350349, "featuredRunMedia": null, "reactionVideos": [], @@ -39252,7 +38971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 111, + "teamId": "nef790438", "time": 11352261, "featuredRunMedia": null, "reactionVideos": [], @@ -39270,7 +38989,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 277, + "teamId": "nef796555", "time": 11380900, "featuredRunMedia": null, "reactionVideos": [], @@ -39288,7 +39007,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 93, + "teamId": "nef799341", "time": 11390289, "featuredRunMedia": null, "reactionVideos": [], @@ -39306,7 +39025,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 11393575, "featuredRunMedia": null, "reactionVideos": [], @@ -39324,7 +39043,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 2, + "teamId": "nef788318", "time": 11394341, "featuredRunMedia": null, "reactionVideos": [], @@ -39342,7 +39061,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11395882, "featuredRunMedia": null, "reactionVideos": [], @@ -39360,7 +39079,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 255, + "teamId": "nef797086", "time": 11398032, "featuredRunMedia": null, "reactionVideos": [], @@ -39378,7 +39097,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "nef788056", "time": 11398851, "featuredRunMedia": null, "reactionVideos": [], @@ -39396,7 +39115,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 238, + "teamId": "nef772718", "time": 11400938, "featuredRunMedia": null, "reactionVideos": [], @@ -39414,7 +39133,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 72, + "teamId": "nef790102", "time": 11403056, "featuredRunMedia": null, "reactionVideos": [], @@ -39432,7 +39151,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 131, + "teamId": "nef788432", "time": 11424970, "featuredRunMedia": null, "reactionVideos": [], @@ -39450,7 +39169,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 39, + "teamId": "nef788390", "time": 11425562, "featuredRunMedia": null, "reactionVideos": [], @@ -39468,7 +39187,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 220, + "teamId": "nef780684", "time": 11430378, "featuredRunMedia": null, "reactionVideos": [], @@ -39486,7 +39205,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 11450843, "featuredRunMedia": null, "reactionVideos": [], @@ -39504,7 +39223,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 2, + "teamId": "nef788318", "time": 11451369, "featuredRunMedia": null, "reactionVideos": [], @@ -39522,7 +39241,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11451775, "featuredRunMedia": null, "reactionVideos": [], @@ -39540,7 +39259,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 109, + "teamId": "nef788326", "time": 11458825, "featuredRunMedia": null, "reactionVideos": [], @@ -39558,7 +39277,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 93, + "teamId": "nef799341", "time": 11461183, "featuredRunMedia": null, "reactionVideos": [], @@ -39576,7 +39295,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 11472692, "featuredRunMedia": null, "reactionVideos": [], @@ -39594,7 +39313,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 125, + "teamId": "nef790074", "time": 11475564, "featuredRunMedia": null, "reactionVideos": [], @@ -39612,7 +39331,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 11475567, "featuredRunMedia": null, "reactionVideos": [], @@ -39630,7 +39349,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11480002, "featuredRunMedia": null, "reactionVideos": [], @@ -39648,7 +39367,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 11480029, "featuredRunMedia": null, "reactionVideos": [], @@ -39666,7 +39385,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 11493510, "featuredRunMedia": null, "reactionVideos": [], @@ -39684,7 +39403,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11494867, "featuredRunMedia": null, "reactionVideos": [], @@ -39702,7 +39421,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 176, + "teamId": "nef795856", "time": 11499693, "featuredRunMedia": null, "reactionVideos": [], @@ -39720,7 +39439,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 11500251, "featuredRunMedia": null, "reactionVideos": [], @@ -39738,7 +39457,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 203, + "teamId": "nef790134", "time": 11509103, "featuredRunMedia": null, "reactionVideos": [], @@ -39756,7 +39475,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 140, + "teamId": "nef799346", "time": 11512451, "featuredRunMedia": null, "reactionVideos": [], @@ -39774,7 +39493,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 178, + "teamId": "nef790137", "time": 11512717, "featuredRunMedia": null, "reactionVideos": [], @@ -39792,7 +39511,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 114, + "teamId": "nef788337", "time": 11512968, "featuredRunMedia": null, "reactionVideos": [], @@ -39810,7 +39529,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11516060, "featuredRunMedia": null, "reactionVideos": [], @@ -39828,7 +39547,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 11516638, "featuredRunMedia": null, "reactionVideos": [], @@ -39846,7 +39565,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 11524971, "featuredRunMedia": null, "reactionVideos": [], @@ -39864,7 +39583,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 11527044, "featuredRunMedia": null, "reactionVideos": [], @@ -39882,7 +39601,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 176, + "teamId": "nef795856", "time": 11533868, "featuredRunMedia": null, "reactionVideos": [], @@ -39900,7 +39619,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 11534935, "featuredRunMedia": null, "reactionVideos": [], @@ -39918,7 +39637,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 93, + "teamId": "nef799341", "time": 11535208, "featuredRunMedia": null, "reactionVideos": [], @@ -39936,7 +39655,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11535941, "featuredRunMedia": null, "reactionVideos": [], @@ -39954,7 +39673,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "nef788029", "time": 11548103, "featuredRunMedia": null, "reactionVideos": [], @@ -39972,7 +39691,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 113, + "teamId": "nef780569", "time": 11550688, "featuredRunMedia": null, "reactionVideos": [], @@ -39990,7 +39709,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 11551529, "featuredRunMedia": null, "reactionVideos": [], @@ -40008,7 +39727,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11556808, "featuredRunMedia": null, "reactionVideos": [], @@ -40026,7 +39745,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 11572482, "featuredRunMedia": null, "reactionVideos": [], @@ -40044,7 +39763,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 108, + "teamId": "nef772710", "time": 11574525, "featuredRunMedia": null, "reactionVideos": [], @@ -40062,7 +39781,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 11576325, "featuredRunMedia": null, "reactionVideos": [], @@ -40080,7 +39799,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 154, + "teamId": "nef791357", "time": 11578455, "featuredRunMedia": null, "reactionVideos": [], @@ -40098,7 +39817,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 160, + "teamId": "nef799357", "time": 11582324, "featuredRunMedia": null, "reactionVideos": [], @@ -40116,7 +39835,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 87, + "teamId": "nef797075", "time": 11614195, "featuredRunMedia": null, "reactionVideos": [], @@ -40134,7 +39853,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 11622504, "featuredRunMedia": null, "reactionVideos": [], @@ -40152,7 +39871,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 176, + "teamId": "nef795856", "time": 11624438, "featuredRunMedia": null, "reactionVideos": [], @@ -40170,7 +39889,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 107, + "teamId": "nef788428", "time": 11631033, "featuredRunMedia": null, "reactionVideos": [], @@ -40188,7 +39907,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 183, + "teamId": "nef788062", "time": 11645232, "featuredRunMedia": null, "reactionVideos": [], @@ -40206,7 +39925,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 31, + "teamId": "nef790067", "time": 11659561, "featuredRunMedia": null, "reactionVideos": [], @@ -40224,7 +39943,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 11660559, "featuredRunMedia": null, "reactionVideos": [], @@ -40242,7 +39961,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 11668475, "featuredRunMedia": null, "reactionVideos": [], @@ -40260,7 +39979,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 11669140, "featuredRunMedia": null, "reactionVideos": [], @@ -40278,7 +39997,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 145, + "teamId": "nef780680", "time": 11673737, "featuredRunMedia": null, "reactionVideos": [], @@ -40296,7 +40015,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 11674754, "featuredRunMedia": null, "reactionVideos": [], @@ -40314,7 +40033,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 148, + "teamId": "nef797077", "time": 11690232, "featuredRunMedia": null, "reactionVideos": [], @@ -40332,7 +40051,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "nef788425", "time": 11691995, "featuredRunMedia": null, "reactionVideos": [], @@ -40350,7 +40069,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 11697904, "featuredRunMedia": null, "reactionVideos": [], @@ -40368,7 +40087,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 173, + "teamId": "nef799349", "time": 11699888, "featuredRunMedia": null, "reactionVideos": [], @@ -40386,7 +40105,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 176, + "teamId": "nef795856", "time": 11705493, "featuredRunMedia": null, "reactionVideos": [], @@ -40404,7 +40123,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 238, + "teamId": "nef772718", "time": 11714987, "featuredRunMedia": null, "reactionVideos": [], @@ -40422,7 +40141,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 27, + "teamId": "nef788419", "time": 11744908, "featuredRunMedia": null, "reactionVideos": [], @@ -40440,7 +40159,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 11749838, "featuredRunMedia": null, "reactionVideos": [], @@ -40458,7 +40177,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 11762401, "featuredRunMedia": null, "reactionVideos": [], @@ -40476,7 +40195,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 11772509, "featuredRunMedia": null, "reactionVideos": [], @@ -40494,7 +40213,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 11794539, "featuredRunMedia": null, "reactionVideos": [], @@ -40512,7 +40231,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "nef780564", "time": 11821477, "featuredRunMedia": null, "reactionVideos": [], @@ -40530,7 +40249,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 87, + "teamId": "nef797075", "time": 11837612, "featuredRunMedia": null, "reactionVideos": [], @@ -40548,7 +40267,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 11848070, "featuredRunMedia": null, "reactionVideos": [], @@ -40566,7 +40285,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 202, + "teamId": "nef790142", "time": 11856242, "featuredRunMedia": null, "reactionVideos": [], @@ -40584,7 +40303,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 11858445, "featuredRunMedia": null, "reactionVideos": [], @@ -40602,7 +40321,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 103, + "teamId": "nef780682", "time": 11861504, "featuredRunMedia": null, "reactionVideos": [], @@ -40620,7 +40339,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 51, + "teamId": "nef780565", "time": 11865347, "featuredRunMedia": null, "reactionVideos": [], @@ -40638,7 +40357,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 11869099, "featuredRunMedia": null, "reactionVideos": [], @@ -40656,7 +40375,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 11874787, "featuredRunMedia": null, "reactionVideos": [], @@ -40674,7 +40393,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 11877695, "featuredRunMedia": null, "reactionVideos": [], @@ -40692,7 +40411,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 11881651, "featuredRunMedia": null, "reactionVideos": [], @@ -40710,7 +40429,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 11897621, "featuredRunMedia": null, "reactionVideos": [], @@ -40728,7 +40447,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 182, + "teamId": "nef790133", "time": 11900081, "featuredRunMedia": null, "reactionVideos": [], @@ -40746,7 +40465,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 174, + "teamId": "nef772711", "time": 11908175, "featuredRunMedia": null, "reactionVideos": [], @@ -40764,7 +40483,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 139, + "teamId": "nef790101", "time": 11909991, "featuredRunMedia": null, "reactionVideos": [], @@ -40782,7 +40501,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 11911781, "featuredRunMedia": null, "reactionVideos": [], @@ -40800,7 +40519,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 114, + "teamId": "nef788337", "time": 11913159, "featuredRunMedia": null, "reactionVideos": [], @@ -40818,7 +40537,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 61, + "teamId": "nef790068", "time": 11920425, "featuredRunMedia": null, "reactionVideos": [], @@ -40836,7 +40555,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 123, + "teamId": "nef788032", "time": 11925746, "featuredRunMedia": null, "reactionVideos": [], @@ -40854,7 +40573,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 141, + "teamId": "nef788346", "time": 11932395, "featuredRunMedia": null, "reactionVideos": [], @@ -40872,7 +40591,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 11936001, "featuredRunMedia": null, "reactionVideos": [], @@ -40890,7 +40609,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 11939968, "featuredRunMedia": null, "reactionVideos": [], @@ -40908,7 +40627,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 11941202, "featuredRunMedia": null, "reactionVideos": [], @@ -40926,7 +40645,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 11954439, "featuredRunMedia": null, "reactionVideos": [], @@ -40944,7 +40663,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 265, + "teamId": "nef780600", "time": 11962296, "featuredRunMedia": null, "reactionVideos": [], @@ -40962,7 +40681,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 185, + "teamId": "nef790138", "time": 11970539, "featuredRunMedia": null, "reactionVideos": [], @@ -40980,7 +40699,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 11976199, "featuredRunMedia": null, "reactionVideos": [], @@ -40998,7 +40717,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 87, + "teamId": "nef797075", "time": 11981386, "featuredRunMedia": null, "reactionVideos": [], @@ -41016,7 +40735,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 11987202, "featuredRunMedia": null, "reactionVideos": [], @@ -41034,7 +40753,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 185, + "teamId": "nef790138", "time": 11988954, "featuredRunMedia": null, "reactionVideos": [], @@ -41052,7 +40771,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 157, + "teamId": "nef790139", "time": 11992063, "featuredRunMedia": null, "reactionVideos": [], @@ -41070,7 +40789,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 11999955, "featuredRunMedia": null, "reactionVideos": [], @@ -41088,7 +40807,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 2, + "teamId": "nef788318", "time": 12000996, "featuredRunMedia": null, "reactionVideos": [], @@ -41106,7 +40825,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 12003331, "featuredRunMedia": null, "reactionVideos": [], @@ -41124,7 +40843,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 19, + "teamId": "nef780674", "time": 12014872, "featuredRunMedia": null, "reactionVideos": [], @@ -41142,7 +40861,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 109, + "teamId": "nef788326", "time": 12016571, "featuredRunMedia": null, "reactionVideos": [], @@ -41160,7 +40879,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 12021770, "featuredRunMedia": null, "reactionVideos": [], @@ -41178,7 +40897,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 150, + "teamId": "nef797076", "time": 12040812, "featuredRunMedia": null, "reactionVideos": [], @@ -41196,7 +40915,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 12041426, "featuredRunMedia": null, "reactionVideos": [], @@ -41214,7 +40933,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 12053364, "featuredRunMedia": null, "reactionVideos": [], @@ -41232,7 +40951,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 12066399, "featuredRunMedia": null, "reactionVideos": [], @@ -41250,7 +40969,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 12087865, "featuredRunMedia": null, "reactionVideos": [], @@ -41268,7 +40987,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 154, + "teamId": "nef791357", "time": 12093225, "featuredRunMedia": null, "reactionVideos": [], @@ -41286,7 +41005,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 139, + "teamId": "nef790101", "time": 12095872, "featuredRunMedia": null, "reactionVideos": [], @@ -41304,7 +41023,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 218, + "teamId": "nef788945", "time": 12098457, "featuredRunMedia": null, "reactionVideos": [], @@ -41322,7 +41041,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 12102761, "featuredRunMedia": null, "reactionVideos": [], @@ -41340,7 +41059,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 160, + "teamId": "nef799357", "time": 12105657, "featuredRunMedia": null, "reactionVideos": [], @@ -41358,7 +41077,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 12108040, "featuredRunMedia": null, "reactionVideos": [], @@ -41376,7 +41095,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 12114396, "featuredRunMedia": null, "reactionVideos": [], @@ -41394,7 +41113,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 279, + "teamId": "nef799365", "time": 12119254, "featuredRunMedia": null, "reactionVideos": [], @@ -41412,7 +41131,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "nef788328", "time": 12124025, "featuredRunMedia": null, "reactionVideos": [], @@ -41430,7 +41149,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 12129556, "featuredRunMedia": null, "reactionVideos": [], @@ -41448,7 +41167,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 203, + "teamId": "nef790134", "time": 12133235, "featuredRunMedia": null, "reactionVideos": [], @@ -41466,7 +41185,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 12135173, "featuredRunMedia": null, "reactionVideos": [], @@ -41484,7 +41203,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 12137202, "featuredRunMedia": null, "reactionVideos": [], @@ -41502,7 +41221,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 157, + "teamId": "nef790139", "time": 12145012, "featuredRunMedia": null, "reactionVideos": [], @@ -41520,7 +41239,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 121, + "teamId": "nef788336", "time": 12145252, "featuredRunMedia": null, "reactionVideos": [], @@ -41538,7 +41257,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 12145641, "featuredRunMedia": null, "reactionVideos": [], @@ -41556,7 +41275,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 51, + "teamId": "nef780565", "time": 12173898, "featuredRunMedia": null, "reactionVideos": [], @@ -41574,7 +41293,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 247, + "teamId": "nef796557", "time": 12176037, "featuredRunMedia": null, "reactionVideos": [], @@ -41592,7 +41311,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 18, + "teamId": "nef788323", "time": 12190283, "featuredRunMedia": null, "reactionVideos": [], @@ -41610,7 +41329,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 174, + "teamId": "nef772711", "time": 12200347, "featuredRunMedia": null, "reactionVideos": [], @@ -41628,7 +41347,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 123, + "teamId": "nef788032", "time": 12201460, "featuredRunMedia": null, "reactionVideos": [], @@ -41646,7 +41365,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 12223312, "featuredRunMedia": null, "reactionVideos": [], @@ -41664,7 +41383,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 12223386, "featuredRunMedia": null, "reactionVideos": [], @@ -41682,7 +41401,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "nef788327", "time": 12227747, "featuredRunMedia": null, "reactionVideos": [], @@ -41700,7 +41419,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 237, + "teamId": "nef796546", "time": 12230091, "featuredRunMedia": null, "reactionVideos": [], @@ -41718,7 +41437,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 161, + "teamId": "nef780678", "time": 12242070, "featuredRunMedia": null, "reactionVideos": [], @@ -41736,7 +41455,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 12242227, "featuredRunMedia": null, "reactionVideos": [], @@ -41754,7 +41473,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 12245315, "featuredRunMedia": null, "reactionVideos": [], @@ -41772,7 +41491,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 240, + "teamId": "nef780303", "time": 12247253, "featuredRunMedia": null, "reactionVideos": [], @@ -41790,7 +41509,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 12251144, "featuredRunMedia": null, "reactionVideos": [], @@ -41808,7 +41527,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 12256771, "featuredRunMedia": null, "reactionVideos": [], @@ -41826,7 +41545,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 12263986, "featuredRunMedia": null, "reactionVideos": [], @@ -41844,7 +41563,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 12264010, "featuredRunMedia": null, "reactionVideos": [], @@ -41862,7 +41581,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 74, + "teamId": "nef788057", "time": 12280092, "featuredRunMedia": null, "reactionVideos": [], @@ -41880,7 +41599,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 109, + "teamId": "nef788326", "time": 12281141, "featuredRunMedia": null, "reactionVideos": [], @@ -41898,7 +41617,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 12282271, "featuredRunMedia": null, "reactionVideos": [], @@ -41916,7 +41635,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 145, + "teamId": "nef780680", "time": 12297034, "featuredRunMedia": null, "reactionVideos": [], @@ -41934,7 +41653,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 83, + "teamId": "nef788349", "time": 12303047, "featuredRunMedia": null, "reactionVideos": [], @@ -41952,7 +41671,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 21, + "teamId": "nef790436", "time": 12330182, "featuredRunMedia": null, "reactionVideos": [], @@ -41970,7 +41689,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 12333670, "featuredRunMedia": null, "reactionVideos": [], @@ -41988,7 +41707,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 12344598, "featuredRunMedia": null, "reactionVideos": [], @@ -42006,7 +41725,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 174, + "teamId": "nef772711", "time": 12345391, "featuredRunMedia": null, "reactionVideos": [], @@ -42024,7 +41743,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 111, + "teamId": "nef790438", "time": 12348284, "featuredRunMedia": null, "reactionVideos": [], @@ -42042,7 +41761,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 12362411, "featuredRunMedia": null, "reactionVideos": [], @@ -42060,7 +41779,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 12364628, "featuredRunMedia": null, "reactionVideos": [], @@ -42078,7 +41797,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 145, + "teamId": "nef780680", "time": 12369047, "featuredRunMedia": null, "reactionVideos": [], @@ -42096,7 +41815,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 275, + "teamId": "nef790048", "time": 12381540, "featuredRunMedia": null, "reactionVideos": [], @@ -42114,7 +41833,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 12394998, "featuredRunMedia": null, "reactionVideos": [], @@ -42132,7 +41851,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 274, + "teamId": "nef790046", "time": 12400266, "featuredRunMedia": null, "reactionVideos": [], @@ -42150,7 +41869,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 2, + "teamId": "nef788318", "time": 12430201, "featuredRunMedia": null, "reactionVideos": [], @@ -42168,7 +41887,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "nef780668", "time": 12449883, "featuredRunMedia": null, "reactionVideos": [], @@ -42186,7 +41905,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 225, + "teamId": "nef797094", "time": 12458964, "featuredRunMedia": null, "reactionVideos": [], @@ -42204,7 +41923,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 33, + "teamId": "nef780544", "time": 12460682, "featuredRunMedia": null, "reactionVideos": [], @@ -42222,7 +41941,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 145, + "teamId": "nef780680", "time": 12466790, "featuredRunMedia": null, "reactionVideos": [], @@ -42240,7 +41959,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 12467397, "featuredRunMedia": null, "reactionVideos": [], @@ -42258,7 +41977,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 12484674, "featuredRunMedia": null, "reactionVideos": [], @@ -42276,7 +41995,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 12485052, "featuredRunMedia": null, "reactionVideos": [], @@ -42294,7 +42013,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 40, + "teamId": "nef796437", "time": 12493442, "featuredRunMedia": null, "reactionVideos": [], @@ -42312,7 +42031,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 12, + "teamId": "nef790061", "time": 12493586, "featuredRunMedia": null, "reactionVideos": [], @@ -42330,7 +42049,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 12503373, "featuredRunMedia": null, "reactionVideos": [], @@ -42348,7 +42067,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 12511706, "featuredRunMedia": null, "reactionVideos": [], @@ -42366,7 +42085,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 76, + "teamId": "nef780566", "time": 12545145, "featuredRunMedia": null, "reactionVideos": [], @@ -42384,7 +42103,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 145, + "teamId": "nef780680", "time": 12556571, "featuredRunMedia": null, "reactionVideos": [], @@ -42402,7 +42121,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 73, + "teamId": "nef788345", "time": 12558662, "featuredRunMedia": null, "reactionVideos": [], @@ -42420,7 +42139,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 21, + "teamId": "nef790436", "time": 12563277, "featuredRunMedia": null, "reactionVideos": [], @@ -42438,7 +42157,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 12578547, "featuredRunMedia": null, "reactionVideos": [], @@ -42456,7 +42175,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 1, + "teamId": "nef788321", "time": 12580454, "featuredRunMedia": null, "reactionVideos": [], @@ -42474,7 +42193,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 139, + "teamId": "nef790101", "time": 12588949, "featuredRunMedia": null, "reactionVideos": [], @@ -42492,7 +42211,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 76, + "teamId": "nef780566", "time": 12590813, "featuredRunMedia": null, "reactionVideos": [], @@ -42510,7 +42229,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 55, + "teamId": "nef788344", "time": 12613980, "featuredRunMedia": null, "reactionVideos": [], @@ -42528,7 +42247,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 12621400, "featuredRunMedia": null, "reactionVideos": [], @@ -42546,7 +42265,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 194, + "teamId": "nef790135", "time": 12630453, "featuredRunMedia": null, "reactionVideos": [], @@ -42564,7 +42283,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 155, + "teamId": "nef796442", "time": 12636302, "featuredRunMedia": null, "reactionVideos": [], @@ -42582,7 +42301,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 133, + "teamId": "nef788340", "time": 12647007, "featuredRunMedia": null, "reactionVideos": [], @@ -42600,7 +42319,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 12666962, "featuredRunMedia": null, "reactionVideos": [], @@ -42618,7 +42337,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 98, + "teamId": "nef788330", "time": 12669143, "featuredRunMedia": null, "reactionVideos": [], @@ -42636,7 +42355,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 101, + "teamId": "nef780677", "time": 12680334, "featuredRunMedia": null, "reactionVideos": [], @@ -42654,7 +42373,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 12, + "teamId": "nef790061", "time": 12685148, "featuredRunMedia": null, "reactionVideos": [], @@ -42672,7 +42391,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 1, + "teamId": "nef788321", "time": 12688159, "featuredRunMedia": null, "reactionVideos": [], @@ -42690,7 +42409,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 30, + "teamId": "nef780676", "time": 12689423, "featuredRunMedia": null, "reactionVideos": [], @@ -42708,7 +42427,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 222, + "teamId": "nef799351", "time": 12689712, "featuredRunMedia": null, "reactionVideos": [], @@ -42726,7 +42445,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 12701181, "featuredRunMedia": null, "reactionVideos": [], @@ -42744,7 +42463,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 134, + "teamId": "nef799571", "time": 12708619, "featuredRunMedia": null, "reactionVideos": [], @@ -42762,7 +42481,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 210, + "teamId": "nef795863", "time": 12720312, "featuredRunMedia": null, "reactionVideos": [], @@ -42780,7 +42499,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 12734130, "featuredRunMedia": null, "reactionVideos": [], @@ -42798,7 +42517,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 197, + "teamId": "nef788351", "time": 12737402, "featuredRunMedia": null, "reactionVideos": [], @@ -42816,7 +42535,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "nef790038", "time": 12738932, "featuredRunMedia": null, "reactionVideos": [], @@ -42834,7 +42553,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 222, + "teamId": "nef799351", "time": 12739168, "featuredRunMedia": null, "reactionVideos": [], @@ -42852,7 +42571,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 163, + "teamId": "nef797089", "time": 12752138, "featuredRunMedia": null, "reactionVideos": [], @@ -42870,7 +42589,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 12754826, "featuredRunMedia": null, "reactionVideos": [], @@ -42888,7 +42607,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 12772833, "featuredRunMedia": null, "reactionVideos": [], @@ -42906,7 +42625,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "nef788422", "time": 12776954, "featuredRunMedia": null, "reactionVideos": [], @@ -42924,7 +42643,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "nef790038", "time": 12779216, "featuredRunMedia": null, "reactionVideos": [], @@ -42942,7 +42661,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 12783931, "featuredRunMedia": null, "reactionVideos": [], @@ -42960,7 +42679,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 103, + "teamId": "nef780682", "time": 12789864, "featuredRunMedia": null, "reactionVideos": [], @@ -42978,7 +42697,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 12795076, "featuredRunMedia": null, "reactionVideos": [], @@ -42996,7 +42715,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 12798069, "featuredRunMedia": null, "reactionVideos": [], @@ -43014,7 +42733,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 12800876, "featuredRunMedia": null, "reactionVideos": [], @@ -43032,7 +42751,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 222, + "teamId": "nef799351", "time": 12800906, "featuredRunMedia": null, "reactionVideos": [], @@ -43050,7 +42769,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 12802772, "featuredRunMedia": null, "reactionVideos": [], @@ -43068,7 +42787,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 264, + "teamId": "nef795865", "time": 12811954, "featuredRunMedia": null, "reactionVideos": [], @@ -43086,7 +42805,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 204, + "teamId": "nef790433", "time": 12824883, "featuredRunMedia": null, "reactionVideos": [], @@ -43104,7 +42823,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 155, + "teamId": "nef796442", "time": 12832744, "featuredRunMedia": null, "reactionVideos": [], @@ -43122,7 +42841,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 12840342, "featuredRunMedia": null, "reactionVideos": [], @@ -43140,7 +42859,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 12847634, "featuredRunMedia": null, "reactionVideos": [], @@ -43158,7 +42877,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 12865888, "featuredRunMedia": null, "reactionVideos": [], @@ -43176,7 +42895,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 12881801, "featuredRunMedia": null, "reactionVideos": [], @@ -43194,7 +42913,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 107, + "teamId": "nef788428", "time": 12889485, "featuredRunMedia": null, "reactionVideos": [], @@ -43212,7 +42931,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "nef780564", "time": 12898270, "featuredRunMedia": null, "reactionVideos": [], @@ -43230,7 +42949,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 12919075, "featuredRunMedia": null, "reactionVideos": [], @@ -43248,7 +42967,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 12, + "teamId": "nef790061", "time": 12947359, "featuredRunMedia": null, "reactionVideos": [], @@ -43266,7 +42985,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 12951615, "featuredRunMedia": null, "reactionVideos": [], @@ -43284,7 +43003,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 48, + "teamId": "nef780538", "time": 12968997, "featuredRunMedia": null, "reactionVideos": [], @@ -43302,7 +43021,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 82, + "teamId": "nef799340", "time": 12976235, "featuredRunMedia": null, "reactionVideos": [], @@ -43320,7 +43039,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 130, + "teamId": "nef796438", "time": 12981745, "featuredRunMedia": null, "reactionVideos": [], @@ -43338,7 +43057,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 12985228, "featuredRunMedia": null, "reactionVideos": [], @@ -43356,7 +43075,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 13017655, "featuredRunMedia": null, "reactionVideos": [], @@ -43374,7 +43093,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 13022179, "featuredRunMedia": null, "reactionVideos": [], @@ -43392,7 +43111,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 170, + "teamId": "nef790136", "time": 13023774, "featuredRunMedia": null, "reactionVideos": [], @@ -43410,7 +43129,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 107, + "teamId": "nef788428", "time": 13026786, "featuredRunMedia": null, "reactionVideos": [], @@ -43428,7 +43147,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 143, + "teamId": "nef790105", "time": 13032700, "featuredRunMedia": null, "reactionVideos": [], @@ -43446,7 +43165,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 13032764, "featuredRunMedia": null, "reactionVideos": [], @@ -43464,7 +43183,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 13048652, "featuredRunMedia": null, "reactionVideos": [], @@ -43482,7 +43201,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13051057, "featuredRunMedia": null, "reactionVideos": [], @@ -43500,7 +43219,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 13057364, "featuredRunMedia": null, "reactionVideos": [], @@ -43518,7 +43237,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "nef788425", "time": 13063057, "featuredRunMedia": null, "reactionVideos": [], @@ -43536,7 +43255,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 13063401, "featuredRunMedia": null, "reactionVideos": [], @@ -43554,7 +43273,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 256, + "teamId": "nef795867", "time": 13064261, "featuredRunMedia": null, "reactionVideos": [], @@ -43572,7 +43291,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 120, + "teamId": "nef788342", "time": 13064816, "featuredRunMedia": null, "reactionVideos": [], @@ -43590,7 +43309,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "nef788347", "time": 13073663, "featuredRunMedia": null, "reactionVideos": [], @@ -43608,7 +43327,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 13078319, "featuredRunMedia": null, "reactionVideos": [], @@ -43626,7 +43345,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 5, + "teamId": "nef780665", "time": 13084877, "featuredRunMedia": null, "reactionVideos": [], @@ -43644,7 +43363,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 13093779, "featuredRunMedia": null, "reactionVideos": [], @@ -43662,7 +43381,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 158, + "teamId": "nef788068", "time": 13100677, "featuredRunMedia": null, "reactionVideos": [], @@ -43680,7 +43399,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "nef788335", "time": 13125162, "featuredRunMedia": null, "reactionVideos": [], @@ -43698,7 +43417,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 13129788, "featuredRunMedia": null, "reactionVideos": [], @@ -43716,7 +43435,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "nef790038", "time": 13130794, "featuredRunMedia": null, "reactionVideos": [], @@ -43734,7 +43453,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 266, + "teamId": "nef797087", "time": 13132017, "featuredRunMedia": null, "reactionVideos": [], @@ -43752,7 +43471,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 13134507, "featuredRunMedia": null, "reactionVideos": [], @@ -43770,7 +43489,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 13140027, "featuredRunMedia": null, "reactionVideos": [], @@ -43788,7 +43507,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 13154326, "featuredRunMedia": null, "reactionVideos": [], @@ -43806,7 +43525,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 13161925, "featuredRunMedia": null, "reactionVideos": [], @@ -43824,7 +43543,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 157, + "teamId": "nef790139", "time": 13166996, "featuredRunMedia": null, "reactionVideos": [], @@ -43842,7 +43561,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 13185152, "featuredRunMedia": null, "reactionVideos": [], @@ -43860,7 +43579,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 13185536, "featuredRunMedia": null, "reactionVideos": [], @@ -43878,7 +43597,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 13198433, "featuredRunMedia": null, "reactionVideos": [], @@ -43896,7 +43615,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 247, + "teamId": "nef796557", "time": 13204808, "featuredRunMedia": null, "reactionVideos": [], @@ -43914,7 +43633,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13212796, "featuredRunMedia": null, "reactionVideos": [], @@ -43932,7 +43651,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 13213206, "featuredRunMedia": null, "reactionVideos": [], @@ -43950,7 +43669,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 13226634, "featuredRunMedia": null, "reactionVideos": [], @@ -43968,7 +43687,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 175, + "teamId": "nef795853", "time": 13234195, "featuredRunMedia": null, "reactionVideos": [], @@ -43986,7 +43705,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 13236536, "featuredRunMedia": null, "reactionVideos": [], @@ -44004,7 +43723,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "nef788347", "time": 13243209, "featuredRunMedia": null, "reactionVideos": [], @@ -44022,7 +43741,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 82, + "teamId": "nef799340", "time": 13244281, "featuredRunMedia": null, "reactionVideos": [], @@ -44040,7 +43759,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13247658, "featuredRunMedia": null, "reactionVideos": [], @@ -44058,7 +43777,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 135, + "teamId": "nef780679", "time": 13263592, "featuredRunMedia": null, "reactionVideos": [], @@ -44076,7 +43795,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "nef788347", "time": 13264585, "featuredRunMedia": null, "reactionVideos": [], @@ -44094,7 +43813,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 23, + "teamId": "nef780541", "time": 13270882, "featuredRunMedia": null, "reactionVideos": [], @@ -44112,7 +43831,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 253, + "teamId": "nef772717", "time": 13270993, "featuredRunMedia": null, "reactionVideos": [], @@ -44130,7 +43849,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 13273740, "featuredRunMedia": null, "reactionVideos": [], @@ -44148,7 +43867,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 13274076, "featuredRunMedia": null, "reactionVideos": [], @@ -44166,7 +43885,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 236, + "teamId": "nef789838", "time": 13288472, "featuredRunMedia": null, "reactionVideos": [], @@ -44184,7 +43903,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 123, + "teamId": "nef788032", "time": 13293278, "featuredRunMedia": null, "reactionVideos": [], @@ -44202,7 +43921,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 13293824, "featuredRunMedia": null, "reactionVideos": [], @@ -44220,7 +43939,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "nef788347", "time": 13298049, "featuredRunMedia": null, "reactionVideos": [], @@ -44238,7 +43957,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 13316472, "featuredRunMedia": null, "reactionVideos": [], @@ -44256,7 +43975,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 204, + "teamId": "nef790433", "time": 13339416, "featuredRunMedia": null, "reactionVideos": [], @@ -44274,7 +43993,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 13342301, "featuredRunMedia": null, "reactionVideos": [], @@ -44292,7 +44011,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 96, + "teamId": "nef799358", "time": 13351952, "featuredRunMedia": null, "reactionVideos": [], @@ -44310,7 +44029,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 222, + "teamId": "nef799351", "time": 13352224, "featuredRunMedia": null, "reactionVideos": [], @@ -44328,7 +44047,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13363194, "featuredRunMedia": null, "reactionVideos": [], @@ -44346,7 +44065,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 13373876, "featuredRunMedia": null, "reactionVideos": [], @@ -44364,7 +44083,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 13376187, "featuredRunMedia": null, "reactionVideos": [], @@ -44382,7 +44101,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 73, + "teamId": "nef788345", "time": 13379486, "featuredRunMedia": null, "reactionVideos": [], @@ -44400,7 +44119,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "nef788323", "time": 13393558, "featuredRunMedia": null, "reactionVideos": [], @@ -44418,7 +44137,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 96, + "teamId": "nef799358", "time": 13396984, "featuredRunMedia": null, "reactionVideos": [], @@ -44436,7 +44155,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13406330, "featuredRunMedia": null, "reactionVideos": [], @@ -44454,7 +44173,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 155, + "teamId": "nef796442", "time": 13413751, "featuredRunMedia": null, "reactionVideos": [], @@ -44472,7 +44191,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 13423083, "featuredRunMedia": null, "reactionVideos": [], @@ -44490,7 +44209,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "nef788321", "time": 13426930, "featuredRunMedia": null, "reactionVideos": [], @@ -44508,7 +44227,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 13427772, "featuredRunMedia": null, "reactionVideos": [], @@ -44526,7 +44245,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 13428048, "featuredRunMedia": null, "reactionVideos": [], @@ -44544,7 +44263,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13454485, "featuredRunMedia": null, "reactionVideos": [], @@ -44562,7 +44281,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 112, + "teamId": "nef780304", "time": 13457777, "featuredRunMedia": null, "reactionVideos": [], @@ -44580,7 +44299,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 13462185, "featuredRunMedia": null, "reactionVideos": [], @@ -44598,7 +44317,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 13462957, "featuredRunMedia": null, "reactionVideos": [], @@ -44616,7 +44335,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 77, + "teamId": "nef788059", "time": 13468037, "featuredRunMedia": null, "reactionVideos": [], @@ -44634,7 +44353,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "nef788029", "time": 13478610, "featuredRunMedia": null, "reactionVideos": [], @@ -44652,7 +44371,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "nef788418", "time": 13480959, "featuredRunMedia": null, "reactionVideos": [], @@ -44670,7 +44389,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 13486314, "featuredRunMedia": null, "reactionVideos": [], @@ -44688,7 +44407,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 87, + "teamId": "nef797075", "time": 13491693, "featuredRunMedia": null, "reactionVideos": [], @@ -44706,7 +44425,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 184, + "teamId": "nef772712", "time": 13504729, "featuredRunMedia": null, "reactionVideos": [], @@ -44724,7 +44443,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "nef788418", "time": 13507097, "featuredRunMedia": null, "reactionVideos": [], @@ -44742,7 +44461,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 104, + "teamId": "nef780563", "time": 13510756, "featuredRunMedia": null, "reactionVideos": [], @@ -44760,7 +44479,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 228, + "teamId": "nef796547", "time": 13516642, "featuredRunMedia": null, "reactionVideos": [], @@ -44778,7 +44497,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 13516907, "featuredRunMedia": null, "reactionVideos": [], @@ -44796,7 +44515,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 12, + "teamId": "nef790061", "time": 13524181, "featuredRunMedia": null, "reactionVideos": [], @@ -44814,7 +44533,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 15, + "teamId": "nef780675", "time": 13524386, "featuredRunMedia": null, "reactionVideos": [], @@ -44832,7 +44551,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "nef788390", "time": 13538199, "featuredRunMedia": null, "reactionVideos": [], @@ -44850,7 +44569,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "nef780537", "time": 13538743, "featuredRunMedia": null, "reactionVideos": [], @@ -44868,7 +44587,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 184, + "teamId": "nef772712", "time": 13543071, "featuredRunMedia": null, "reactionVideos": [], @@ -44886,7 +44605,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 159, + "teamId": "nef780576", "time": 13549951, "featuredRunMedia": null, "reactionVideos": [], @@ -44904,7 +44623,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 13559873, "featuredRunMedia": null, "reactionVideos": [], @@ -44922,7 +44641,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "nef790103", "time": 13563859, "featuredRunMedia": null, "reactionVideos": [], @@ -44940,7 +44659,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 13564939, "featuredRunMedia": null, "reactionVideos": [], @@ -44958,7 +44677,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 215, + "teamId": "nef772714", "time": 13569144, "featuredRunMedia": null, "reactionVideos": [], @@ -44976,7 +44695,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 13573932, "featuredRunMedia": null, "reactionVideos": [], @@ -44994,7 +44713,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 13575819, "featuredRunMedia": null, "reactionVideos": [], @@ -45012,7 +44731,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 13582452, "featuredRunMedia": null, "reactionVideos": [], @@ -45030,7 +44749,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 256, + "teamId": "nef795867", "time": 13584122, "featuredRunMedia": null, "reactionVideos": [], @@ -45048,7 +44767,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "nef788425", "time": 13587976, "featuredRunMedia": null, "reactionVideos": [], @@ -45066,7 +44785,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 154, + "teamId": "nef791357", "time": 13593016, "featuredRunMedia": null, "reactionVideos": [], @@ -45084,7 +44803,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 13598422, "featuredRunMedia": null, "reactionVideos": [], @@ -45102,7 +44821,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 166, + "teamId": "nef788353", "time": 13599509, "featuredRunMedia": null, "reactionVideos": [], @@ -45120,7 +44839,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 13600284, "featuredRunMedia": null, "reactionVideos": [], @@ -45138,7 +44857,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 13600498, "featuredRunMedia": null, "reactionVideos": [], @@ -45156,7 +44875,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 96, + "teamId": "nef799358", "time": 13606701, "featuredRunMedia": null, "reactionVideos": [], @@ -45174,7 +44893,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 69, + "teamId": "nef796578", "time": 13612484, "featuredRunMedia": null, "reactionVideos": [], @@ -45192,7 +44911,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 13614864, "featuredRunMedia": null, "reactionVideos": [], @@ -45210,7 +44929,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 103, + "teamId": "nef780682", "time": 13631248, "featuredRunMedia": null, "reactionVideos": [], @@ -45228,7 +44947,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 13632691, "featuredRunMedia": null, "reactionVideos": [], @@ -45246,7 +44965,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 13635722, "featuredRunMedia": null, "reactionVideos": [], @@ -45264,7 +44983,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 13636244, "featuredRunMedia": null, "reactionVideos": [], @@ -45282,7 +45001,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 13650705, "featuredRunMedia": null, "reactionVideos": [], @@ -45300,7 +45019,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 13679770, "featuredRunMedia": null, "reactionVideos": [], @@ -45318,7 +45037,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 215, + "teamId": "nef772714", "time": 13680985, "featuredRunMedia": null, "reactionVideos": [], @@ -45336,7 +45055,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 193, + "teamId": "nef799348", "time": 13684229, "featuredRunMedia": null, "reactionVideos": [], @@ -45354,7 +45073,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 96, + "teamId": "nef799358", "time": 13686881, "featuredRunMedia": null, "reactionVideos": [], @@ -45372,7 +45091,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 137, + "teamId": "nef788392", "time": 13687642, "featuredRunMedia": null, "reactionVideos": [], @@ -45390,7 +45109,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 13698358, "featuredRunMedia": null, "reactionVideos": [], @@ -45408,7 +45127,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 13699023, "featuredRunMedia": null, "reactionVideos": [], @@ -45426,7 +45145,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 103, + "teamId": "nef780682", "time": 13716726, "featuredRunMedia": null, "reactionVideos": [], @@ -45444,7 +45163,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 23, + "teamId": "nef780541", "time": 13718956, "featuredRunMedia": null, "reactionVideos": [], @@ -45462,7 +45181,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13727798, "featuredRunMedia": null, "reactionVideos": [], @@ -45480,7 +45199,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 13728860, "featuredRunMedia": null, "reactionVideos": [], @@ -45498,7 +45217,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 13749336, "featuredRunMedia": null, "reactionVideos": [], @@ -45516,7 +45235,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 184, + "teamId": "nef772712", "time": 13759695, "featuredRunMedia": null, "reactionVideos": [], @@ -45534,7 +45253,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 13761426, "featuredRunMedia": null, "reactionVideos": [], @@ -45552,7 +45271,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 15, + "teamId": "nef780675", "time": 13775826, "featuredRunMedia": null, "reactionVideos": [], @@ -45570,7 +45289,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 13778633, "featuredRunMedia": null, "reactionVideos": [], @@ -45588,7 +45307,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 101, + "teamId": "nef780677", "time": 13779923, "featuredRunMedia": null, "reactionVideos": [], @@ -45606,7 +45325,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 13780534, "featuredRunMedia": null, "reactionVideos": [], @@ -45624,7 +45343,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 174, + "teamId": "nef772711", "time": 13784171, "featuredRunMedia": null, "reactionVideos": [], @@ -45642,7 +45361,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 253, + "teamId": "nef772717", "time": 13784715, "featuredRunMedia": null, "reactionVideos": [], @@ -45660,7 +45379,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 13785872, "featuredRunMedia": null, "reactionVideos": [], @@ -45678,7 +45397,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 200, + "teamId": "nef799344", "time": 13790971, "featuredRunMedia": null, "reactionVideos": [], @@ -45696,7 +45415,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 13796599, "featuredRunMedia": null, "reactionVideos": [], @@ -45714,7 +45433,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13798749, "featuredRunMedia": null, "reactionVideos": [], @@ -45732,7 +45451,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 235, + "teamId": "nef772715", "time": 13812053, "featuredRunMedia": null, "reactionVideos": [], @@ -45750,7 +45469,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 13816046, "featuredRunMedia": null, "reactionVideos": [], @@ -45768,7 +45487,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 13830181, "featuredRunMedia": null, "reactionVideos": [], @@ -45786,7 +45505,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 236, + "teamId": "nef789838", "time": 13831612, "featuredRunMedia": null, "reactionVideos": [], @@ -45804,7 +45523,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13831639, "featuredRunMedia": null, "reactionVideos": [], @@ -45822,7 +45541,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 23, + "teamId": "nef780541", "time": 13833652, "featuredRunMedia": null, "reactionVideos": [], @@ -45840,7 +45559,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 22, + "teamId": "nef788420", "time": 13836231, "featuredRunMedia": null, "reactionVideos": [], @@ -45858,7 +45577,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "nef790103", "time": 13843765, "featuredRunMedia": null, "reactionVideos": [], @@ -45876,7 +45595,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 164, + "teamId": "nef797070", "time": 13852712, "featuredRunMedia": null, "reactionVideos": [], @@ -45894,7 +45613,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 13855593, "featuredRunMedia": null, "reactionVideos": [], @@ -45912,7 +45631,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 113, + "teamId": "nef780569", "time": 13858164, "featuredRunMedia": null, "reactionVideos": [], @@ -45930,7 +45649,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13859705, "featuredRunMedia": null, "reactionVideos": [], @@ -45948,7 +45667,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 13863977, "featuredRunMedia": null, "reactionVideos": [], @@ -45966,7 +45685,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 28, + "teamId": "nef788329", "time": 13864193, "featuredRunMedia": null, "reactionVideos": [], @@ -45984,7 +45703,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 236, + "teamId": "nef789838", "time": 13871605, "featuredRunMedia": null, "reactionVideos": [], @@ -46002,7 +45721,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 272, + "teamId": "nef780601", "time": 13873137, "featuredRunMedia": null, "reactionVideos": [], @@ -46020,7 +45739,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 13874461, "featuredRunMedia": null, "reactionVideos": [], @@ -46038,7 +45757,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13878482, "featuredRunMedia": null, "reactionVideos": [], @@ -46056,7 +45775,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 13884448, "featuredRunMedia": null, "reactionVideos": [], @@ -46074,7 +45793,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 13886794, "featuredRunMedia": null, "reactionVideos": [], @@ -46092,7 +45811,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13893353, "featuredRunMedia": null, "reactionVideos": [], @@ -46110,7 +45829,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 184, + "teamId": "nef772712", "time": 13900581, "featuredRunMedia": null, "reactionVideos": [], @@ -46128,7 +45847,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 13906211, "featuredRunMedia": null, "reactionVideos": [], @@ -46146,7 +45865,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 103, + "teamId": "nef780682", "time": 13912256, "featuredRunMedia": null, "reactionVideos": [], @@ -46164,7 +45883,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 23, + "teamId": "nef780541", "time": 13920398, "featuredRunMedia": null, "reactionVideos": [], @@ -46182,7 +45901,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 13923164, "featuredRunMedia": null, "reactionVideos": [], @@ -46200,7 +45919,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13926559, "featuredRunMedia": null, "reactionVideos": [], @@ -46218,7 +45937,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 73, + "teamId": "nef788345", "time": 13931416, "featuredRunMedia": null, "reactionVideos": [], @@ -46236,7 +45955,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 13935433, "featuredRunMedia": null, "reactionVideos": [], @@ -46254,7 +45973,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 174, + "teamId": "nef772711", "time": 13941198, "featuredRunMedia": null, "reactionVideos": [], @@ -46272,7 +45991,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 13945043, "featuredRunMedia": null, "reactionVideos": [], @@ -46290,7 +46009,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 17, + "teamId": "nef788324", "time": 13945917, "featuredRunMedia": null, "reactionVideos": [], @@ -46308,7 +46027,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 13946076, "featuredRunMedia": null, "reactionVideos": [], @@ -46326,7 +46045,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 13953342, "featuredRunMedia": null, "reactionVideos": [], @@ -46344,7 +46063,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 13961058, "featuredRunMedia": null, "reactionVideos": [], @@ -46362,7 +46081,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 163, + "teamId": "nef797089", "time": 13964026, "featuredRunMedia": null, "reactionVideos": [], @@ -46380,7 +46099,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 224, + "teamId": "nef772723", "time": 13965425, "featuredRunMedia": null, "reactionVideos": [], @@ -46398,7 +46117,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 13966294, "featuredRunMedia": null, "reactionVideos": [], @@ -46416,7 +46135,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "nef788319", "time": 13971379, "featuredRunMedia": null, "reactionVideos": [], @@ -46434,7 +46153,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 144, + "teamId": "nef780575", "time": 13971630, "featuredRunMedia": null, "reactionVideos": [], @@ -46452,7 +46171,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 13973415, "featuredRunMedia": null, "reactionVideos": [], @@ -46470,7 +46189,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 13975433, "featuredRunMedia": null, "reactionVideos": [], @@ -46488,7 +46207,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 13975622, "featuredRunMedia": null, "reactionVideos": [], @@ -46506,7 +46225,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 155, + "teamId": "nef796442", "time": 13979097, "featuredRunMedia": null, "reactionVideos": [], @@ -46524,7 +46243,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 13979610, "featuredRunMedia": null, "reactionVideos": [], @@ -46542,7 +46261,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 13980454, "featuredRunMedia": null, "reactionVideos": [], @@ -46560,7 +46279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 134, + "teamId": "nef799571", "time": 13982422, "featuredRunMedia": null, "reactionVideos": [], @@ -46578,7 +46297,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 13983722, "featuredRunMedia": null, "reactionVideos": [], @@ -46596,7 +46315,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 204, + "teamId": "nef790433", "time": 13986189, "featuredRunMedia": null, "reactionVideos": [], @@ -46614,7 +46333,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 13997893, "featuredRunMedia": null, "reactionVideos": [], @@ -46632,7 +46351,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 163, + "teamId": "nef797089", "time": 14006902, "featuredRunMedia": null, "reactionVideos": [], @@ -46650,7 +46369,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "nef788027", "time": 14014584, "featuredRunMedia": null, "reactionVideos": [], @@ -46668,7 +46387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14020744, "featuredRunMedia": null, "reactionVideos": [], @@ -46686,7 +46405,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 14037438, "featuredRunMedia": null, "reactionVideos": [], @@ -46704,7 +46423,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14045057, "featuredRunMedia": null, "reactionVideos": [], @@ -46722,7 +46441,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 267, + "teamId": "nef795864", "time": 14050117, "featuredRunMedia": null, "reactionVideos": [], @@ -46740,7 +46459,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 14063052, "featuredRunMedia": null, "reactionVideos": [], @@ -46758,7 +46477,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 14063198, "featuredRunMedia": null, "reactionVideos": [], @@ -46776,7 +46495,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "nef788425", "time": 14066395, "featuredRunMedia": null, "reactionVideos": [], @@ -46794,7 +46513,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14072276, "featuredRunMedia": null, "reactionVideos": [], @@ -46812,7 +46531,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 159, + "teamId": "nef780576", "time": 14086708, "featuredRunMedia": null, "reactionVideos": [], @@ -46830,7 +46549,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 14089127, "featuredRunMedia": null, "reactionVideos": [], @@ -46848,7 +46567,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14091410, "featuredRunMedia": null, "reactionVideos": [], @@ -46866,7 +46585,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 144, + "teamId": "nef780575", "time": 14101956, "featuredRunMedia": null, "reactionVideos": [], @@ -46884,7 +46603,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 14110333, "featuredRunMedia": null, "reactionVideos": [], @@ -46902,7 +46621,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14133623, "featuredRunMedia": null, "reactionVideos": [], @@ -46920,7 +46639,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 14143331, "featuredRunMedia": null, "reactionVideos": [], @@ -46938,7 +46657,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "nef780543", "time": 14146181, "featuredRunMedia": null, "reactionVideos": [], @@ -46956,7 +46675,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 14170178, "featuredRunMedia": null, "reactionVideos": [], @@ -46974,7 +46693,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 250, + "teamId": "nef789941", "time": 14184378, "featuredRunMedia": null, "reactionVideos": [], @@ -46992,7 +46711,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 14187295, "featuredRunMedia": null, "reactionVideos": [], @@ -47010,7 +46729,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 14195806, "featuredRunMedia": null, "reactionVideos": [], @@ -47028,7 +46747,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 235, + "teamId": "nef772715", "time": 14197457, "featuredRunMedia": null, "reactionVideos": [], @@ -47046,7 +46765,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "nef788418", "time": 14199606, "featuredRunMedia": null, "reactionVideos": [], @@ -47064,7 +46783,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "nef788390", "time": 14216019, "featuredRunMedia": null, "reactionVideos": [], @@ -47082,7 +46801,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 247, + "teamId": "nef796557", "time": 14225791, "featuredRunMedia": null, "reactionVideos": [], @@ -47100,7 +46819,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14232394, "featuredRunMedia": null, "reactionVideos": [], @@ -47118,7 +46837,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14233541, "featuredRunMedia": null, "reactionVideos": [], @@ -47136,7 +46855,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 14234774, "featuredRunMedia": null, "reactionVideos": [], @@ -47154,7 +46873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 14239994, "featuredRunMedia": null, "reactionVideos": [], @@ -47172,7 +46891,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14240767, "featuredRunMedia": null, "reactionVideos": [], @@ -47190,7 +46909,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 160, + "teamId": "nef799357", "time": 14246589, "featuredRunMedia": null, "reactionVideos": [], @@ -47208,7 +46927,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 243, + "teamId": "nef797084", "time": 14248263, "featuredRunMedia": null, "reactionVideos": [], @@ -47226,7 +46945,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 14254710, "featuredRunMedia": null, "reactionVideos": [], @@ -47244,7 +46963,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14257013, "featuredRunMedia": null, "reactionVideos": [], @@ -47262,7 +46981,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 235, + "teamId": "nef772715", "time": 14257866, "featuredRunMedia": null, "reactionVideos": [], @@ -47280,7 +46999,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14260481, "featuredRunMedia": null, "reactionVideos": [], @@ -47298,7 +47017,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 14261332, "featuredRunMedia": null, "reactionVideos": [], @@ -47316,7 +47035,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 14264344, "featuredRunMedia": null, "reactionVideos": [], @@ -47334,7 +47053,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 232, + "teamId": "nef780596", "time": 14267580, "featuredRunMedia": null, "reactionVideos": [], @@ -47352,7 +47071,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14270207, "featuredRunMedia": null, "reactionVideos": [], @@ -47370,7 +47089,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14270611, "featuredRunMedia": null, "reactionVideos": [], @@ -47388,7 +47107,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 14275235, "featuredRunMedia": null, "reactionVideos": [], @@ -47406,7 +47125,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 69, + "teamId": "nef796578", "time": 14282277, "featuredRunMedia": null, "reactionVideos": [], @@ -47424,7 +47143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 144, + "teamId": "nef780575", "time": 14289466, "featuredRunMedia": null, "reactionVideos": [], @@ -47442,7 +47161,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 227, + "teamId": "nef799347", "time": 14293191, "featuredRunMedia": null, "reactionVideos": [], @@ -47460,7 +47179,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 14299729, "featuredRunMedia": null, "reactionVideos": [], @@ -47478,7 +47197,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 14302162, "featuredRunMedia": null, "reactionVideos": [], @@ -47496,7 +47215,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14304002, "featuredRunMedia": null, "reactionVideos": [], @@ -47514,7 +47233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 14307481, "featuredRunMedia": null, "reactionVideos": [], @@ -47532,7 +47251,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14314391, "featuredRunMedia": null, "reactionVideos": [], @@ -47550,7 +47269,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 14322458, "featuredRunMedia": null, "reactionVideos": [], @@ -47568,7 +47287,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 149, + "teamId": "nef788395", "time": 14323178, "featuredRunMedia": null, "reactionVideos": [], @@ -47586,7 +47305,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 14326002, "featuredRunMedia": null, "reactionVideos": [], @@ -47604,7 +47323,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 150, + "teamId": "nef797076", "time": 14326005, "featuredRunMedia": null, "reactionVideos": [], @@ -47622,7 +47341,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14332228, "featuredRunMedia": null, "reactionVideos": [], @@ -47640,7 +47359,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 14333432, "featuredRunMedia": null, "reactionVideos": [], @@ -47658,7 +47377,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 14337032, "featuredRunMedia": null, "reactionVideos": [], @@ -47676,7 +47395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14341235, "featuredRunMedia": null, "reactionVideos": [], @@ -47694,7 +47413,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 267, + "teamId": "nef795864", "time": 14341562, "featuredRunMedia": null, "reactionVideos": [], @@ -47712,7 +47431,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 106, + "teamId": "nef780539", "time": 14348762, "featuredRunMedia": null, "reactionVideos": [], @@ -47730,7 +47449,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 10, + "teamId": "nef780666", "time": 14361677, "featuredRunMedia": null, "reactionVideos": [], @@ -47748,7 +47467,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14375222, "featuredRunMedia": null, "reactionVideos": [], @@ -47766,7 +47485,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14379049, "featuredRunMedia": null, "reactionVideos": [], @@ -47784,7 +47503,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 14379674, "featuredRunMedia": null, "reactionVideos": [], @@ -47802,7 +47521,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 95, + "teamId": "nef788055", "time": 14380660, "featuredRunMedia": null, "reactionVideos": [], @@ -47820,7 +47539,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 14381976, "featuredRunMedia": null, "reactionVideos": [], @@ -47838,7 +47557,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 134, + "teamId": "nef799571", "time": 14390998, "featuredRunMedia": null, "reactionVideos": [], @@ -47856,7 +47575,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 149, + "teamId": "nef788395", "time": 14402701, "featuredRunMedia": null, "reactionVideos": [], @@ -47874,7 +47593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 14405278, "featuredRunMedia": null, "reactionVideos": [], @@ -47892,7 +47611,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 184, + "teamId": "nef772712", "time": 14411771, "featuredRunMedia": null, "reactionVideos": [], @@ -47910,7 +47629,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 14411937, "featuredRunMedia": null, "reactionVideos": [], @@ -47928,7 +47647,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 215, + "teamId": "nef772714", "time": 14413756, "featuredRunMedia": null, "reactionVideos": [], @@ -47946,7 +47665,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 14414708, "featuredRunMedia": null, "reactionVideos": [], @@ -47964,7 +47683,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "nef788029", "time": 14415465, "featuredRunMedia": null, "reactionVideos": [], @@ -47982,7 +47701,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 14419579, "featuredRunMedia": null, "reactionVideos": [], @@ -48000,7 +47719,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 13, + "teamId": "nef780667", "time": 14421859, "featuredRunMedia": null, "reactionVideos": [], @@ -48018,7 +47737,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 281, + "teamId": "nef799372", "time": 14429948, "featuredRunMedia": null, "reactionVideos": [], @@ -48036,7 +47755,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "nef780667", "time": 14430368, "featuredRunMedia": null, "reactionVideos": [], @@ -48054,7 +47773,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 106, + "teamId": "nef780539", "time": 14431931, "featuredRunMedia": null, "reactionVideos": [], @@ -48072,7 +47791,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 180, + "teamId": "nef795862", "time": 14433287, "featuredRunMedia": null, "reactionVideos": [], @@ -48090,7 +47809,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 204, + "teamId": "nef790433", "time": 14434760, "featuredRunMedia": null, "reactionVideos": [], @@ -48108,7 +47827,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "nef780667", "time": 14441701, "featuredRunMedia": null, "reactionVideos": [], @@ -48126,7 +47845,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 14444141, "featuredRunMedia": null, "reactionVideos": [], @@ -48144,7 +47863,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 180, + "teamId": "nef795862", "time": 14446595, "featuredRunMedia": null, "reactionVideos": [], @@ -48162,7 +47881,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 14449477, "featuredRunMedia": null, "reactionVideos": [], @@ -48180,7 +47899,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14450030, "featuredRunMedia": null, "reactionVideos": [], @@ -48198,7 +47917,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 13, + "teamId": "nef780667", "time": 14452200, "featuredRunMedia": null, "reactionVideos": [], @@ -48216,7 +47935,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 147, + "teamId": "nef799361", "time": 14455120, "featuredRunMedia": null, "reactionVideos": [], @@ -48234,7 +47953,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 215, + "teamId": "nef772714", "time": 14458978, "featuredRunMedia": null, "reactionVideos": [], @@ -48252,7 +47971,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "nef780667", "time": 14460997, "featuredRunMedia": null, "reactionVideos": [], @@ -48270,7 +47989,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14462637, "featuredRunMedia": null, "reactionVideos": [], @@ -48288,7 +48007,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 120, + "teamId": "nef788342", "time": 14474665, "featuredRunMedia": null, "reactionVideos": [], @@ -48306,7 +48025,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 180, + "teamId": "nef795862", "time": 14475528, "featuredRunMedia": null, "reactionVideos": [], @@ -48324,7 +48043,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14480588, "featuredRunMedia": null, "reactionVideos": [], @@ -48342,7 +48061,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 14482736, "featuredRunMedia": null, "reactionVideos": [], @@ -48360,7 +48079,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 13, + "teamId": "nef780667", "time": 14483265, "featuredRunMedia": null, "reactionVideos": [], @@ -48378,7 +48097,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14489399, "featuredRunMedia": null, "reactionVideos": [], @@ -48396,7 +48115,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 14493122, "featuredRunMedia": null, "reactionVideos": [], @@ -48414,7 +48133,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 14495673, "featuredRunMedia": null, "reactionVideos": [], @@ -48432,7 +48151,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 14496897, "featuredRunMedia": null, "reactionVideos": [], @@ -48450,7 +48169,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 94, + "teamId": "nef772709", "time": 14499668, "featuredRunMedia": null, "reactionVideos": [], @@ -48468,7 +48187,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "nef780667", "time": 14500946, "featuredRunMedia": null, "reactionVideos": [], @@ -48486,7 +48205,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 157, + "teamId": "nef790139", "time": 14502672, "featuredRunMedia": null, "reactionVideos": [], @@ -48504,7 +48223,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "nef780667", "time": 14535186, "featuredRunMedia": null, "reactionVideos": [], @@ -48522,7 +48241,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14539401, "featuredRunMedia": null, "reactionVideos": [], @@ -48540,7 +48259,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 14542037, "featuredRunMedia": null, "reactionVideos": [], @@ -48558,7 +48277,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14542377, "featuredRunMedia": null, "reactionVideos": [], @@ -48576,7 +48295,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 14554239, "featuredRunMedia": null, "reactionVideos": [], @@ -48594,7 +48313,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 14554521, "featuredRunMedia": null, "reactionVideos": [], @@ -48612,7 +48331,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 14566432, "featuredRunMedia": null, "reactionVideos": [], @@ -48630,7 +48349,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 13, + "teamId": "nef780667", "time": 14576233, "featuredRunMedia": null, "reactionVideos": [], @@ -48648,7 +48367,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 14577955, "featuredRunMedia": null, "reactionVideos": [], @@ -48666,7 +48385,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 14578813, "featuredRunMedia": null, "reactionVideos": [], @@ -48684,7 +48403,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 14581561, "featuredRunMedia": null, "reactionVideos": [], @@ -48702,7 +48421,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 14593006, "featuredRunMedia": null, "reactionVideos": [], @@ -48720,7 +48439,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 14593534, "featuredRunMedia": null, "reactionVideos": [], @@ -48738,7 +48457,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 14596363, "featuredRunMedia": null, "reactionVideos": [], @@ -48756,7 +48475,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 120, + "teamId": "nef788342", "time": 14600583, "featuredRunMedia": null, "reactionVideos": [], @@ -48774,7 +48493,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 14602866, "featuredRunMedia": null, "reactionVideos": [], @@ -48792,7 +48511,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "nef788321", "time": 14604549, "featuredRunMedia": null, "reactionVideos": [], @@ -48810,7 +48529,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 160, + "teamId": "nef799357", "time": 14604860, "featuredRunMedia": null, "reactionVideos": [], @@ -48828,7 +48547,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 247, + "teamId": "nef796557", "time": 14609448, "featuredRunMedia": null, "reactionVideos": [], @@ -48846,7 +48565,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 14610683, "featuredRunMedia": null, "reactionVideos": [], @@ -48864,7 +48583,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 121, + "teamId": "nef788336", "time": 14613313, "featuredRunMedia": null, "reactionVideos": [], @@ -48882,7 +48601,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 159, + "teamId": "nef780576", "time": 14614638, "featuredRunMedia": null, "reactionVideos": [], @@ -48900,7 +48619,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 53, + "teamId": "nef788341", "time": 14618869, "featuredRunMedia": null, "reactionVideos": [], @@ -48918,7 +48637,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 14619402, "featuredRunMedia": null, "reactionVideos": [], @@ -48936,7 +48655,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 14632798, "featuredRunMedia": null, "reactionVideos": [], @@ -48954,7 +48673,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 28, + "teamId": "nef788329", "time": 14648078, "featuredRunMedia": null, "reactionVideos": [], @@ -48972,7 +48691,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 14651502, "featuredRunMedia": null, "reactionVideos": [], @@ -48990,7 +48709,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 14681188, "featuredRunMedia": null, "reactionVideos": [], @@ -49008,7 +48727,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "nef780667", "time": 14718123, "featuredRunMedia": null, "reactionVideos": [], @@ -49026,7 +48745,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 224, + "teamId": "nef772723", "time": 14722809, "featuredRunMedia": null, "reactionVideos": [], @@ -49044,7 +48763,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 14725852, "featuredRunMedia": null, "reactionVideos": [], @@ -49062,7 +48781,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "nef797079", "time": 14726540, "featuredRunMedia": null, "reactionVideos": [], @@ -49080,7 +48799,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 227, + "teamId": "nef799347", "time": 14736478, "featuredRunMedia": null, "reactionVideos": [], @@ -49098,7 +48817,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "nef790071", "time": 14738765, "featuredRunMedia": null, "reactionVideos": [], @@ -49116,7 +48835,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14743660, "featuredRunMedia": null, "reactionVideos": [], @@ -49134,7 +48853,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 246, + "teamId": "nef799354", "time": 14746418, "featuredRunMedia": null, "reactionVideos": [], @@ -49152,7 +48871,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 269, + "teamId": "nef780598", "time": 14748840, "featuredRunMedia": null, "reactionVideos": [], @@ -49170,7 +48889,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 103, + "teamId": "nef780682", "time": 14749133, "featuredRunMedia": null, "reactionVideos": [], @@ -49188,7 +48907,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14759901, "featuredRunMedia": null, "reactionVideos": [], @@ -49206,7 +48925,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 14767302, "featuredRunMedia": null, "reactionVideos": [], @@ -49224,7 +48943,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 14769629, "featuredRunMedia": null, "reactionVideos": [], @@ -49242,7 +48961,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 198, + "teamId": "nef790141", "time": 14780539, "featuredRunMedia": null, "reactionVideos": [], @@ -49260,7 +48979,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 10, + "teamId": "nef780666", "time": 14781763, "featuredRunMedia": null, "reactionVideos": [], @@ -49278,7 +48997,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 14782276, "featuredRunMedia": null, "reactionVideos": [], @@ -49296,7 +49015,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14782990, "featuredRunMedia": null, "reactionVideos": [], @@ -49314,7 +49033,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14786826, "featuredRunMedia": null, "reactionVideos": [], @@ -49332,7 +49051,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 95, + "teamId": "nef788055", "time": 14787552, "featuredRunMedia": null, "reactionVideos": [], @@ -49350,7 +49069,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "nef780667", "time": 14791343, "featuredRunMedia": null, "reactionVideos": [], @@ -49368,7 +49087,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 14795827, "featuredRunMedia": null, "reactionVideos": [], @@ -49386,7 +49105,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 86, + "teamId": "nef780570", "time": 14798372, "featuredRunMedia": null, "reactionVideos": [], @@ -49404,7 +49123,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 14804149, "featuredRunMedia": null, "reactionVideos": [], @@ -49422,7 +49141,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14826721, "featuredRunMedia": null, "reactionVideos": [], @@ -49440,7 +49159,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 134, + "teamId": "nef799571", "time": 14831697, "featuredRunMedia": null, "reactionVideos": [], @@ -49458,7 +49177,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 14834757, "featuredRunMedia": null, "reactionVideos": [], @@ -49476,7 +49195,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 14838422, "featuredRunMedia": null, "reactionVideos": [], @@ -49494,7 +49213,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "nef780667", "time": 14842768, "featuredRunMedia": null, "reactionVideos": [], @@ -49512,7 +49231,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 10, + "teamId": "nef780666", "time": 14853262, "featuredRunMedia": null, "reactionVideos": [], @@ -49530,7 +49249,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 184, + "teamId": "nef772712", "time": 14859270, "featuredRunMedia": null, "reactionVideos": [], @@ -49548,7 +49267,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 101, + "teamId": "nef780677", "time": 14861696, "featuredRunMedia": null, "reactionVideos": [], @@ -49566,7 +49285,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 240, + "teamId": "nef780303", "time": 14862555, "featuredRunMedia": null, "reactionVideos": [], @@ -49584,7 +49303,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 147, + "teamId": "nef799361", "time": 14865718, "featuredRunMedia": null, "reactionVideos": [], @@ -49602,7 +49321,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 256, + "teamId": "nef795867", "time": 14870936, "featuredRunMedia": null, "reactionVideos": [], @@ -49620,7 +49339,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14877793, "featuredRunMedia": null, "reactionVideos": [], @@ -49638,7 +49357,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 120, + "teamId": "nef788342", "time": 14881116, "featuredRunMedia": null, "reactionVideos": [], @@ -49656,7 +49375,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 156, + "teamId": "nef789943", "time": 14885860, "featuredRunMedia": null, "reactionVideos": [], @@ -49674,7 +49393,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 274, + "teamId": "nef790046", "time": 14897201, "featuredRunMedia": null, "reactionVideos": [], @@ -49692,7 +49411,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14905115, "featuredRunMedia": null, "reactionVideos": [], @@ -49710,7 +49429,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 206, + "teamId": "nef799353", "time": 14908781, "featuredRunMedia": null, "reactionVideos": [], @@ -49728,7 +49447,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 202, + "teamId": "nef790142", "time": 14913147, "featuredRunMedia": null, "reactionVideos": [], @@ -49746,7 +49465,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 227, + "teamId": "nef799347", "time": 14919175, "featuredRunMedia": null, "reactionVideos": [], @@ -49764,7 +49483,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 156, + "teamId": "nef789943", "time": 14920918, "featuredRunMedia": null, "reactionVideos": [], @@ -49782,7 +49501,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 263, + "teamId": "nef772713", "time": 14922956, "featuredRunMedia": null, "reactionVideos": [], @@ -49800,7 +49519,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 14923313, "featuredRunMedia": null, "reactionVideos": [], @@ -49818,7 +49537,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 14924137, "featuredRunMedia": null, "reactionVideos": [], @@ -49836,7 +49555,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14924948, "featuredRunMedia": null, "reactionVideos": [], @@ -49854,7 +49573,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 14926053, "featuredRunMedia": null, "reactionVideos": [], @@ -49872,7 +49591,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 6, + "teamId": "nef788319", "time": 14930969, "featuredRunMedia": null, "reactionVideos": [], @@ -49890,7 +49609,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 241, + "teamId": "nef790434", "time": 14942656, "featuredRunMedia": null, "reactionVideos": [], @@ -49908,7 +49627,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 107, + "teamId": "nef788428", "time": 14956694, "featuredRunMedia": null, "reactionVideos": [], @@ -49926,7 +49645,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 14959823, "featuredRunMedia": null, "reactionVideos": [], @@ -49944,7 +49663,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 83, + "teamId": "nef788349", "time": 14963118, "featuredRunMedia": null, "reactionVideos": [], @@ -49962,7 +49681,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 14972268, "featuredRunMedia": null, "reactionVideos": [], @@ -49980,7 +49699,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 177, + "teamId": "nef799366", "time": 14972863, "featuredRunMedia": null, "reactionVideos": [], @@ -49998,7 +49717,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 121, + "teamId": "nef788336", "time": 14979944, "featuredRunMedia": null, "reactionVideos": [], @@ -50016,7 +49735,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 14985427, "featuredRunMedia": null, "reactionVideos": [], @@ -50034,7 +49753,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 113, + "teamId": "nef780569", "time": 14987425, "featuredRunMedia": null, "reactionVideos": [], @@ -50052,7 +49771,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 14988423, "featuredRunMedia": null, "reactionVideos": [], @@ -50070,7 +49789,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "nef788065", "time": 14995143, "featuredRunMedia": null, "reactionVideos": [], @@ -50088,7 +49807,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 15003930, "featuredRunMedia": null, "reactionVideos": [], @@ -50106,7 +49825,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 38, + "teamId": "nef790038", "time": 15011664, "featuredRunMedia": null, "reactionVideos": [], @@ -50124,7 +49843,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 15017459, "featuredRunMedia": null, "reactionVideos": [], @@ -50142,7 +49861,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 198, + "teamId": "nef790141", "time": 15020631, "featuredRunMedia": null, "reactionVideos": [], @@ -50160,7 +49879,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 48, + "teamId": "nef780538", "time": 15023102, "featuredRunMedia": null, "reactionVideos": [], @@ -50178,7 +49897,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 15024616, "featuredRunMedia": null, "reactionVideos": [], @@ -50196,7 +49915,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 15029254, "featuredRunMedia": null, "reactionVideos": [], @@ -50214,7 +49933,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 64, + "teamId": "nef788352", "time": 15041114, "featuredRunMedia": null, "reactionVideos": [], @@ -50232,7 +49951,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 15046546, "featuredRunMedia": null, "reactionVideos": [], @@ -50250,7 +49969,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 115, + "teamId": "nef788026", "time": 15065431, "featuredRunMedia": null, "reactionVideos": [], @@ -50268,7 +49987,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 15066113, "featuredRunMedia": null, "reactionVideos": [], @@ -50286,7 +50005,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 156, + "teamId": "nef789943", "time": 15066339, "featuredRunMedia": null, "reactionVideos": [], @@ -50304,7 +50023,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "nef780667", "time": 15067879, "featuredRunMedia": null, "reactionVideos": [], @@ -50322,7 +50041,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 143, + "teamId": "nef790105", "time": 15086280, "featuredRunMedia": null, "reactionVideos": [], @@ -50340,7 +50059,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 241, + "teamId": "nef790434", "time": 15088898, "featuredRunMedia": null, "reactionVideos": [], @@ -50358,7 +50077,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 15095607, "featuredRunMedia": null, "reactionVideos": [], @@ -50376,7 +50095,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 15118425, "featuredRunMedia": null, "reactionVideos": [], @@ -50394,7 +50113,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 241, + "teamId": "nef790434", "time": 15120337, "featuredRunMedia": null, "reactionVideos": [], @@ -50412,7 +50131,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 181, + "teamId": "nef789942", "time": 15123843, "featuredRunMedia": null, "reactionVideos": [], @@ -50430,7 +50149,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 206, + "teamId": "nef799353", "time": 15130843, "featuredRunMedia": null, "reactionVideos": [], @@ -50448,7 +50167,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "nef788318", "time": 15134181, "featuredRunMedia": null, "reactionVideos": [], @@ -50466,7 +50185,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 7, + "teamId": "nef788325", "time": 15134425, "featuredRunMedia": null, "reactionVideos": [], @@ -50484,7 +50203,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 15141841, "featuredRunMedia": null, "reactionVideos": [], @@ -50502,7 +50221,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 15152190, "featuredRunMedia": null, "reactionVideos": [], @@ -50520,7 +50239,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "nef788332", "time": 15155455, "featuredRunMedia": null, "reactionVideos": [], @@ -50538,7 +50257,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 15167680, "featuredRunMedia": null, "reactionVideos": [], @@ -50556,7 +50275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 15167948, "featuredRunMedia": null, "reactionVideos": [], @@ -50574,7 +50293,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 15171451, "featuredRunMedia": null, "reactionVideos": [], @@ -50592,7 +50311,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15176702, "featuredRunMedia": null, "reactionVideos": [], @@ -50610,7 +50329,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 184, + "teamId": "nef772712", "time": 15177840, "featuredRunMedia": null, "reactionVideos": [], @@ -50628,7 +50347,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "nef788390", "time": 15183824, "featuredRunMedia": null, "reactionVideos": [], @@ -50646,7 +50365,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 15183827, "featuredRunMedia": null, "reactionVideos": [], @@ -50664,7 +50383,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 263, + "teamId": "nef772713", "time": 15184006, "featuredRunMedia": null, "reactionVideos": [], @@ -50682,7 +50401,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 15196440, "featuredRunMedia": null, "reactionVideos": [], @@ -50700,7 +50419,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 105, + "teamId": "nef790040", "time": 15201511, "featuredRunMedia": null, "reactionVideos": [], @@ -50718,7 +50437,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 115, + "teamId": "nef788026", "time": 15206145, "featuredRunMedia": null, "reactionVideos": [], @@ -50736,7 +50455,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 241, + "teamId": "nef790434", "time": 15207498, "featuredRunMedia": null, "reactionVideos": [], @@ -50754,7 +50473,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 7, + "teamId": "nef788325", "time": 15210820, "featuredRunMedia": null, "reactionVideos": [], @@ -50772,7 +50491,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 15214683, "featuredRunMedia": null, "reactionVideos": [], @@ -50790,7 +50509,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 105, + "teamId": "nef790040", "time": 15232930, "featuredRunMedia": null, "reactionVideos": [], @@ -50808,7 +50527,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15235172, "featuredRunMedia": null, "reactionVideos": [], @@ -50826,7 +50545,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 15238304, "featuredRunMedia": null, "reactionVideos": [], @@ -50844,7 +50563,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 15246074, "featuredRunMedia": null, "reactionVideos": [], @@ -50862,7 +50581,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 15255449, "featuredRunMedia": null, "reactionVideos": [], @@ -50880,7 +50599,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 154, + "teamId": "nef791357", "time": 15259256, "featuredRunMedia": null, "reactionVideos": [], @@ -50898,7 +50617,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 15259885, "featuredRunMedia": null, "reactionVideos": [], @@ -50916,7 +50635,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 95, + "teamId": "nef788055", "time": 15263983, "featuredRunMedia": null, "reactionVideos": [], @@ -50934,7 +50653,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 158, + "teamId": "nef788068", "time": 15265657, "featuredRunMedia": null, "reactionVideos": [], @@ -50952,7 +50671,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 263, + "teamId": "nef772713", "time": 15266861, "featuredRunMedia": null, "reactionVideos": [], @@ -50970,7 +50689,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 15267993, "featuredRunMedia": null, "reactionVideos": [], @@ -50988,7 +50707,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 15280320, "featuredRunMedia": null, "reactionVideos": [], @@ -51006,7 +50725,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 15281255, "featuredRunMedia": null, "reactionVideos": [], @@ -51024,7 +50743,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 44, + "teamId": "nef790073", "time": 15293391, "featuredRunMedia": null, "reactionVideos": [], @@ -51042,7 +50761,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 74, + "teamId": "nef788057", "time": 15300825, "featuredRunMedia": null, "reactionVideos": [], @@ -51060,7 +50779,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 15301177, "featuredRunMedia": null, "reactionVideos": [], @@ -51078,7 +50797,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 15303189, "featuredRunMedia": null, "reactionVideos": [], @@ -51096,7 +50815,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 15306081, "featuredRunMedia": null, "reactionVideos": [], @@ -51114,7 +50833,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 15316887, "featuredRunMedia": null, "reactionVideos": [], @@ -51132,7 +50851,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 15318748, "featuredRunMedia": null, "reactionVideos": [], @@ -51150,7 +50869,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 190, + "teamId": "nef795860", "time": 15333324, "featuredRunMedia": null, "reactionVideos": [], @@ -51168,7 +50887,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 240, + "teamId": "nef780303", "time": 15335844, "featuredRunMedia": null, "reactionVideos": [], @@ -51186,7 +50905,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 39, + "teamId": "nef788390", "time": 15339134, "featuredRunMedia": null, "reactionVideos": [], @@ -51204,7 +50923,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 15344716, "featuredRunMedia": null, "reactionVideos": [], @@ -51222,7 +50941,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 133, + "teamId": "nef788340", "time": 15347651, "featuredRunMedia": null, "reactionVideos": [], @@ -51240,7 +50959,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 15350287, "featuredRunMedia": null, "reactionVideos": [], @@ -51258,7 +50977,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 15351493, "featuredRunMedia": null, "reactionVideos": [], @@ -51276,7 +50995,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 15352349, "featuredRunMedia": null, "reactionVideos": [], @@ -51294,7 +51013,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 106, + "teamId": "nef780539", "time": 15354452, "featuredRunMedia": null, "reactionVideos": [], @@ -51312,7 +51031,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 15363142, "featuredRunMedia": null, "reactionVideos": [], @@ -51330,7 +51049,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 15363452, "featuredRunMedia": null, "reactionVideos": [], @@ -51348,7 +51067,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 15372020, "featuredRunMedia": null, "reactionVideos": [], @@ -51366,7 +51085,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 189, + "teamId": "nef790072", "time": 15372114, "featuredRunMedia": null, "reactionVideos": [], @@ -51384,7 +51103,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 15379331, "featuredRunMedia": null, "reactionVideos": [], @@ -51402,7 +51121,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 15380827, "featuredRunMedia": null, "reactionVideos": [], @@ -51420,7 +51139,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 158, + "teamId": "nef788068", "time": 15397335, "featuredRunMedia": null, "reactionVideos": [], @@ -51438,7 +51157,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 15400415, "featuredRunMedia": null, "reactionVideos": [], @@ -51456,7 +51175,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 15402969, "featuredRunMedia": null, "reactionVideos": [], @@ -51474,7 +51193,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 15405559, "featuredRunMedia": null, "reactionVideos": [], @@ -51492,7 +51211,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 15407366, "featuredRunMedia": null, "reactionVideos": [], @@ -51510,7 +51229,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 15409606, "featuredRunMedia": null, "reactionVideos": [], @@ -51528,7 +51247,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15410707, "featuredRunMedia": null, "reactionVideos": [], @@ -51546,7 +51265,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 15413448, "featuredRunMedia": null, "reactionVideos": [], @@ -51564,7 +51283,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 158, + "teamId": "nef788068", "time": 15417644, "featuredRunMedia": null, "reactionVideos": [], @@ -51582,7 +51301,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 15420544, "featuredRunMedia": null, "reactionVideos": [], @@ -51600,7 +51319,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 15428289, "featuredRunMedia": null, "reactionVideos": [], @@ -51618,7 +51337,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "nef788390", "time": 15428352, "featuredRunMedia": null, "reactionVideos": [], @@ -51636,7 +51355,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 181, + "teamId": "nef789942", "time": 15428522, "featuredRunMedia": null, "reactionVideos": [], @@ -51654,7 +51373,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 15429383, "featuredRunMedia": null, "reactionVideos": [], @@ -51672,7 +51391,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 15440706, "featuredRunMedia": null, "reactionVideos": [], @@ -51690,7 +51409,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 169, + "teamId": "nef788423", "time": 15443661, "featuredRunMedia": null, "reactionVideos": [], @@ -51708,7 +51427,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 15453015, "featuredRunMedia": null, "reactionVideos": [], @@ -51726,7 +51445,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 33, + "teamId": "nef780544", "time": 15458054, "featuredRunMedia": null, "reactionVideos": [], @@ -51744,7 +51463,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 15466235, "featuredRunMedia": null, "reactionVideos": [], @@ -51762,7 +51481,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 156, + "teamId": "nef789943", "time": 15474518, "featuredRunMedia": null, "reactionVideos": [], @@ -51780,7 +51499,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "nef780668", "time": 15479685, "featuredRunMedia": null, "reactionVideos": [], @@ -51798,7 +51517,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 115, + "teamId": "nef788026", "time": 15479870, "featuredRunMedia": null, "reactionVideos": [], @@ -51816,7 +51535,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 213, + "teamId": "nef796544", "time": 15483994, "featuredRunMedia": null, "reactionVideos": [], @@ -51834,7 +51553,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 15490110, "featuredRunMedia": null, "reactionVideos": [], @@ -51852,7 +51571,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 15491465, "featuredRunMedia": null, "reactionVideos": [], @@ -51870,7 +51589,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 15498123, "featuredRunMedia": null, "reactionVideos": [], @@ -51888,7 +51607,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15501299, "featuredRunMedia": null, "reactionVideos": [], @@ -51906,7 +51625,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 98, + "teamId": "nef788330", "time": 15509103, "featuredRunMedia": null, "reactionVideos": [], @@ -51924,7 +51643,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 11, + "teamId": "nef788328", "time": 15510396, "featuredRunMedia": null, "reactionVideos": [], @@ -51942,7 +51661,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 15519885, "featuredRunMedia": null, "reactionVideos": [], @@ -51960,7 +51679,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 15525963, "featuredRunMedia": null, "reactionVideos": [], @@ -51978,7 +51697,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 15526261, "featuredRunMedia": null, "reactionVideos": [], @@ -51996,7 +51715,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 15526863, "featuredRunMedia": null, "reactionVideos": [], @@ -52014,7 +51733,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 15533189, "featuredRunMedia": null, "reactionVideos": [], @@ -52032,7 +51751,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 15535011, "featuredRunMedia": null, "reactionVideos": [], @@ -52050,7 +51769,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 178, + "teamId": "nef790137", "time": 15535706, "featuredRunMedia": null, "reactionVideos": [], @@ -52068,7 +51787,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 196, + "teamId": "nef789968", "time": 15535885, "featuredRunMedia": null, "reactionVideos": [], @@ -52086,7 +51805,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 235, + "teamId": "nef772715", "time": 15536198, "featuredRunMedia": null, "reactionVideos": [], @@ -52104,7 +51823,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 15537923, "featuredRunMedia": null, "reactionVideos": [], @@ -52122,7 +51841,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 15538413, "featuredRunMedia": null, "reactionVideos": [], @@ -52140,7 +51859,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 15541072, "featuredRunMedia": null, "reactionVideos": [], @@ -52158,7 +51877,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 15543911, "featuredRunMedia": null, "reactionVideos": [], @@ -52176,7 +51895,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 15546602, "featuredRunMedia": null, "reactionVideos": [], @@ -52194,7 +51913,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 15552787, "featuredRunMedia": null, "reactionVideos": [], @@ -52212,7 +51931,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 200, + "teamId": "nef799344", "time": 15555288, "featuredRunMedia": null, "reactionVideos": [], @@ -52230,7 +51949,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 39, + "teamId": "nef788390", "time": 15555941, "featuredRunMedia": null, "reactionVideos": [], @@ -52248,7 +51967,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 11, + "teamId": "nef788328", "time": 15560396, "featuredRunMedia": null, "reactionVideos": [], @@ -52266,7 +51985,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 15561743, "featuredRunMedia": null, "reactionVideos": [], @@ -52284,7 +52003,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 213, + "teamId": "nef796544", "time": 15564368, "featuredRunMedia": null, "reactionVideos": [], @@ -52302,7 +52021,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 15565256, "featuredRunMedia": null, "reactionVideos": [], @@ -52320,7 +52039,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 15569671, "featuredRunMedia": null, "reactionVideos": [], @@ -52338,7 +52057,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "nef780668", "time": 15575157, "featuredRunMedia": null, "reactionVideos": [], @@ -52356,7 +52075,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 210, + "teamId": "nef795863", "time": 15576745, "featuredRunMedia": null, "reactionVideos": [], @@ -52374,7 +52093,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 15579309, "featuredRunMedia": null, "reactionVideos": [], @@ -52392,7 +52111,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 15588667, "featuredRunMedia": null, "reactionVideos": [], @@ -52410,7 +52129,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "nef797079", "time": 15589900, "featuredRunMedia": null, "reactionVideos": [], @@ -52428,7 +52147,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 15591162, "featuredRunMedia": null, "reactionVideos": [], @@ -52446,7 +52165,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 63, + "teamId": "nef788029", "time": 15592724, "featuredRunMedia": null, "reactionVideos": [], @@ -52464,7 +52183,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 17, + "teamId": "nef788324", "time": 15600723, "featuredRunMedia": null, "reactionVideos": [], @@ -52482,7 +52201,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 15605109, "featuredRunMedia": null, "reactionVideos": [], @@ -52500,7 +52219,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 15608719, "featuredRunMedia": null, "reactionVideos": [], @@ -52518,7 +52237,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 120, + "teamId": "nef788342", "time": 15611202, "featuredRunMedia": null, "reactionVideos": [], @@ -52536,7 +52255,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 133, + "teamId": "nef788340", "time": 15618778, "featuredRunMedia": null, "reactionVideos": [], @@ -52554,7 +52273,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 167, + "teamId": "nef788058", "time": 15620692, "featuredRunMedia": null, "reactionVideos": [], @@ -52572,7 +52291,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 15626781, "featuredRunMedia": null, "reactionVideos": [], @@ -52590,7 +52309,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 15631541, "featuredRunMedia": null, "reactionVideos": [], @@ -52608,7 +52327,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 221, + "teamId": "nef788067", "time": 15631979, "featuredRunMedia": null, "reactionVideos": [], @@ -52626,7 +52345,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 15638717, "featuredRunMedia": null, "reactionVideos": [], @@ -52644,7 +52363,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 15644663, "featuredRunMedia": null, "reactionVideos": [], @@ -52662,7 +52381,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 15645215, "featuredRunMedia": null, "reactionVideos": [], @@ -52680,7 +52399,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "nef788321", "time": 15646195, "featuredRunMedia": null, "reactionVideos": [], @@ -52698,7 +52417,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 15655934, "featuredRunMedia": null, "reactionVideos": [], @@ -52716,7 +52435,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 15658490, "featuredRunMedia": null, "reactionVideos": [], @@ -52734,7 +52453,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 15659530, "featuredRunMedia": null, "reactionVideos": [], @@ -52752,7 +52471,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 15667928, "featuredRunMedia": null, "reactionVideos": [], @@ -52770,7 +52489,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 157, + "teamId": "nef790139", "time": 15672723, "featuredRunMedia": null, "reactionVideos": [], @@ -52788,7 +52507,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "nef796575", "time": 15679275, "featuredRunMedia": null, "reactionVideos": [], @@ -52806,7 +52525,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 101, + "teamId": "nef780677", "time": 15687829, "featuredRunMedia": null, "reactionVideos": [], @@ -52824,7 +52543,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 105, + "teamId": "nef790040", "time": 15692992, "featuredRunMedia": null, "reactionVideos": [], @@ -52842,7 +52561,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "nef788331", "time": 15697360, "featuredRunMedia": null, "reactionVideos": [], @@ -52860,7 +52579,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 146, + "teamId": "nef790042", "time": 15698984, "featuredRunMedia": null, "reactionVideos": [], @@ -52878,7 +52597,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 108, + "teamId": "nef772710", "time": 15706276, "featuredRunMedia": null, "reactionVideos": [], @@ -52896,7 +52615,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 256, + "teamId": "nef795867", "time": 15707800, "featuredRunMedia": null, "reactionVideos": [], @@ -52914,7 +52633,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 165, + "teamId": "nef788060", "time": 15712054, "featuredRunMedia": null, "reactionVideos": [], @@ -52932,7 +52651,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 15712246, "featuredRunMedia": null, "reactionVideos": [], @@ -52950,7 +52669,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "nef780672", "time": 15712414, "featuredRunMedia": null, "reactionVideos": [], @@ -52968,7 +52687,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 156, + "teamId": "nef789943", "time": 15726825, "featuredRunMedia": null, "reactionVideos": [], @@ -52986,7 +52705,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 15737327, "featuredRunMedia": null, "reactionVideos": [], @@ -53004,7 +52723,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 15741902, "featuredRunMedia": null, "reactionVideos": [], @@ -53022,7 +52741,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 15744227, "featuredRunMedia": null, "reactionVideos": [], @@ -53040,7 +52759,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 157, + "teamId": "nef790139", "time": 15752006, "featuredRunMedia": null, "reactionVideos": [], @@ -53058,7 +52777,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 15755644, "featuredRunMedia": null, "reactionVideos": [], @@ -53076,7 +52795,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 15771635, "featuredRunMedia": null, "reactionVideos": [], @@ -53094,7 +52813,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 15779386, "featuredRunMedia": null, "reactionVideos": [], @@ -53112,7 +52831,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 15784399, "featuredRunMedia": null, "reactionVideos": [], @@ -53130,7 +52849,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15784941, "featuredRunMedia": null, "reactionVideos": [], @@ -53148,7 +52867,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 16, + "teamId": "nef788424", "time": 15786433, "featuredRunMedia": null, "reactionVideos": [], @@ -53166,7 +52885,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 15789154, "featuredRunMedia": null, "reactionVideos": [], @@ -53184,7 +52903,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 15799776, "featuredRunMedia": null, "reactionVideos": [], @@ -53202,7 +52921,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 74, + "teamId": "nef788057", "time": 15801119, "featuredRunMedia": null, "reactionVideos": [], @@ -53220,7 +52939,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 15802169, "featuredRunMedia": null, "reactionVideos": [], @@ -53238,7 +52957,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 202, + "teamId": "nef790142", "time": 15803834, "featuredRunMedia": null, "reactionVideos": [], @@ -53256,7 +52975,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15804658, "featuredRunMedia": null, "reactionVideos": [], @@ -53274,7 +52993,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 15823575, "featuredRunMedia": null, "reactionVideos": [], @@ -53292,7 +53011,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 15824698, "featuredRunMedia": null, "reactionVideos": [], @@ -53310,7 +53029,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 15825658, "featuredRunMedia": null, "reactionVideos": [], @@ -53328,7 +53047,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 15827835, "featuredRunMedia": null, "reactionVideos": [], @@ -53346,7 +53065,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 101, + "teamId": "nef780677", "time": 15827944, "featuredRunMedia": null, "reactionVideos": [], @@ -53364,7 +53083,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 15829934, "featuredRunMedia": null, "reactionVideos": [], @@ -53382,7 +53101,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 40, + "teamId": "nef796437", "time": 15832375, "featuredRunMedia": null, "reactionVideos": [], @@ -53400,7 +53119,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 257, + "teamId": "nef797082", "time": 15839365, "featuredRunMedia": null, "reactionVideos": [], @@ -53418,7 +53137,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 134, + "teamId": "nef799571", "time": 15843976, "featuredRunMedia": null, "reactionVideos": [], @@ -53436,7 +53155,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 15847530, "featuredRunMedia": null, "reactionVideos": [], @@ -53454,7 +53173,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 236, + "teamId": "nef789838", "time": 15849680, "featuredRunMedia": null, "reactionVideos": [], @@ -53472,7 +53191,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 73, + "teamId": "nef788345", "time": 15851504, "featuredRunMedia": null, "reactionVideos": [], @@ -53490,7 +53209,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 15855779, "featuredRunMedia": null, "reactionVideos": [], @@ -53508,7 +53227,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 15855998, "featuredRunMedia": null, "reactionVideos": [], @@ -53526,7 +53245,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 13, + "teamId": "nef780667", "time": 15862666, "featuredRunMedia": null, "reactionVideos": [], @@ -53544,7 +53263,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 15863938, "featuredRunMedia": null, "reactionVideos": [], @@ -53562,7 +53281,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 172, + "teamId": "nef788054", "time": 15866724, "featuredRunMedia": null, "reactionVideos": [], @@ -53580,7 +53299,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 190, + "teamId": "nef795860", "time": 15881660, "featuredRunMedia": null, "reactionVideos": [], @@ -53598,7 +53317,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 105, + "teamId": "nef790040", "time": 15889868, "featuredRunMedia": null, "reactionVideos": [], @@ -53616,7 +53335,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "nef780565", "time": 15891849, "featuredRunMedia": null, "reactionVideos": [], @@ -53634,7 +53353,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 71, + "teamId": "nef795855", "time": 15893711, "featuredRunMedia": null, "reactionVideos": [], @@ -53652,7 +53371,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 15894270, "featuredRunMedia": null, "reactionVideos": [], @@ -53670,7 +53389,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 149, + "teamId": "nef788395", "time": 15898913, "featuredRunMedia": null, "reactionVideos": [], @@ -53688,7 +53407,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 256, + "teamId": "nef795867", "time": 15902690, "featuredRunMedia": null, "reactionVideos": [], @@ -53706,7 +53425,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 106, + "teamId": "nef780539", "time": 15907861, "featuredRunMedia": null, "reactionVideos": [], @@ -53724,7 +53443,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 35, + "teamId": "nef795852", "time": 15908891, "featuredRunMedia": null, "reactionVideos": [], @@ -53742,7 +53461,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 20, + "teamId": "nef780540", "time": 15909219, "featuredRunMedia": null, "reactionVideos": [], @@ -53760,7 +53479,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 28, + "teamId": "nef788329", "time": 15915797, "featuredRunMedia": null, "reactionVideos": [], @@ -53778,7 +53497,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 190, + "teamId": "nef795860", "time": 15920935, "featuredRunMedia": null, "reactionVideos": [], @@ -53796,7 +53515,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 15927315, "featuredRunMedia": null, "reactionVideos": [], @@ -53814,7 +53533,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 15928786, "featuredRunMedia": null, "reactionVideos": [], @@ -53832,7 +53551,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 200, + "teamId": "nef799344", "time": 15929364, "featuredRunMedia": null, "reactionVideos": [], @@ -53850,7 +53569,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 15940776, "featuredRunMedia": null, "reactionVideos": [], @@ -53868,7 +53587,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 15946548, "featuredRunMedia": null, "reactionVideos": [], @@ -53886,7 +53605,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 257, + "teamId": "nef797082", "time": 15949550, "featuredRunMedia": null, "reactionVideos": [], @@ -53904,7 +53623,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 15952596, "featuredRunMedia": null, "reactionVideos": [], @@ -53922,7 +53641,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 106, + "teamId": "nef780539", "time": 15953397, "featuredRunMedia": null, "reactionVideos": [], @@ -53940,7 +53659,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 15956144, "featuredRunMedia": null, "reactionVideos": [], @@ -53958,7 +53677,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "nef788420", "time": 15960924, "featuredRunMedia": null, "reactionVideos": [], @@ -53976,7 +53695,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 195, + "teamId": "nef799363", "time": 15988414, "featuredRunMedia": null, "reactionVideos": [], @@ -53994,7 +53713,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 168, + "teamId": "nef780681", "time": 15988737, "featuredRunMedia": null, "reactionVideos": [], @@ -54012,7 +53731,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 15993591, "featuredRunMedia": null, "reactionVideos": [], @@ -54030,7 +53749,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 15994460, "featuredRunMedia": null, "reactionVideos": [], @@ -54048,7 +53767,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 16007381, "featuredRunMedia": null, "reactionVideos": [], @@ -54066,7 +53785,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 16010065, "featuredRunMedia": null, "reactionVideos": [], @@ -54084,7 +53803,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 35, + "teamId": "nef795852", "time": 16019047, "featuredRunMedia": null, "reactionVideos": [], @@ -54102,7 +53821,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 124, + "teamId": "nef795857", "time": 16026101, "featuredRunMedia": null, "reactionVideos": [], @@ -54120,7 +53839,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 187, + "teamId": "nef795854", "time": 16029653, "featuredRunMedia": null, "reactionVideos": [], @@ -54138,7 +53857,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 16032505, "featuredRunMedia": null, "reactionVideos": [], @@ -54156,7 +53875,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 36, + "teamId": "nef790069", "time": 16036610, "featuredRunMedia": null, "reactionVideos": [], @@ -54174,7 +53893,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 16038092, "featuredRunMedia": null, "reactionVideos": [], @@ -54192,7 +53911,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 125, + "teamId": "nef790074", "time": 16044432, "featuredRunMedia": null, "reactionVideos": [], @@ -54210,7 +53929,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 16046855, "featuredRunMedia": null, "reactionVideos": [], @@ -54228,7 +53947,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 235, + "teamId": "nef772715", "time": 16065466, "featuredRunMedia": null, "reactionVideos": [], @@ -54246,7 +53965,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 16065582, "featuredRunMedia": null, "reactionVideos": [], @@ -54264,7 +53983,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "nef780667", "time": 16066798, "featuredRunMedia": null, "reactionVideos": [], @@ -54282,7 +54001,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 107, + "teamId": "nef788428", "time": 16077546, "featuredRunMedia": null, "reactionVideos": [], @@ -54300,7 +54019,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 234, + "teamId": "nef790050", "time": 16078410, "featuredRunMedia": null, "reactionVideos": [], @@ -54318,7 +54037,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "nef797079", "time": 16081590, "featuredRunMedia": null, "reactionVideos": [], @@ -54336,7 +54055,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 28, + "teamId": "nef788329", "time": 16085417, "featuredRunMedia": null, "reactionVideos": [], @@ -54354,7 +54073,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 125, + "teamId": "nef790074", "time": 16096743, "featuredRunMedia": null, "reactionVideos": [], @@ -54372,7 +54091,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "nef788320", "time": 16097103, "featuredRunMedia": null, "reactionVideos": [], @@ -54390,7 +54109,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 16103313, "featuredRunMedia": null, "reactionVideos": [], @@ -54408,7 +54127,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16104761, "featuredRunMedia": null, "reactionVideos": [], @@ -54426,7 +54145,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 16111595, "featuredRunMedia": null, "reactionVideos": [], @@ -54444,7 +54163,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 16117729, "featuredRunMedia": null, "reactionVideos": [], @@ -54462,7 +54181,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 275, + "teamId": "nef790048", "time": 16121561, "featuredRunMedia": null, "reactionVideos": [], @@ -54480,7 +54199,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 16126901, "featuredRunMedia": null, "reactionVideos": [], @@ -54498,7 +54217,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "nef788320", "time": 16131978, "featuredRunMedia": null, "reactionVideos": [], @@ -54516,7 +54235,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 16132160, "featuredRunMedia": null, "reactionVideos": [], @@ -54534,7 +54253,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 16133457, "featuredRunMedia": null, "reactionVideos": [], @@ -54552,7 +54271,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 188, + "teamId": "nef788066", "time": 16138187, "featuredRunMedia": null, "reactionVideos": [], @@ -54570,7 +54289,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 16140908, "featuredRunMedia": null, "reactionVideos": [], @@ -54588,7 +54307,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 16144066, "featuredRunMedia": null, "reactionVideos": [], @@ -54606,7 +54325,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "nef780565", "time": 16144217, "featuredRunMedia": null, "reactionVideos": [], @@ -54624,7 +54343,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 16144623, "featuredRunMedia": null, "reactionVideos": [], @@ -54642,7 +54361,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "nef797071", "time": 16154812, "featuredRunMedia": null, "reactionVideos": [], @@ -54660,7 +54379,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16157534, "featuredRunMedia": null, "reactionVideos": [], @@ -54678,7 +54397,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 12, + "teamId": "nef790061", "time": 16163908, "featuredRunMedia": null, "reactionVideos": [], @@ -54696,7 +54415,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 16171002, "featuredRunMedia": null, "reactionVideos": [], @@ -54714,7 +54433,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 16188790, "featuredRunMedia": null, "reactionVideos": [], @@ -54732,7 +54451,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 180, + "teamId": "nef795862", "time": 16195056, "featuredRunMedia": null, "reactionVideos": [], @@ -54750,7 +54469,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 16206486, "featuredRunMedia": null, "reactionVideos": [], @@ -54768,7 +54487,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 272, + "teamId": "nef780601", "time": 16209590, "featuredRunMedia": null, "reactionVideos": [], @@ -54786,7 +54505,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 35, + "teamId": "nef795852", "time": 16209932, "featuredRunMedia": null, "reactionVideos": [], @@ -54804,7 +54523,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 16210246, "featuredRunMedia": null, "reactionVideos": [], @@ -54822,7 +54541,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "nef780565", "time": 16211048, "featuredRunMedia": null, "reactionVideos": [], @@ -54840,7 +54559,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "nef788390", "time": 16219322, "featuredRunMedia": null, "reactionVideos": [], @@ -54858,7 +54577,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 158, + "teamId": "nef788068", "time": 16222049, "featuredRunMedia": null, "reactionVideos": [], @@ -54876,7 +54595,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 210, + "teamId": "nef795863", "time": 16227583, "featuredRunMedia": null, "reactionVideos": [], @@ -54894,7 +54613,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 111, + "teamId": "nef790438", "time": 16232843, "featuredRunMedia": null, "reactionVideos": [], @@ -54912,7 +54631,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16234250, "featuredRunMedia": null, "reactionVideos": [], @@ -54930,7 +54649,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 145, + "teamId": "nef780680", "time": 16237996, "featuredRunMedia": null, "reactionVideos": [], @@ -54948,7 +54667,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "nef780574", "time": 16245362, "featuredRunMedia": null, "reactionVideos": [], @@ -54966,7 +54685,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 20, + "teamId": "nef780540", "time": 16249691, "featuredRunMedia": null, "reactionVideos": [], @@ -54984,7 +54703,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 16256071, "featuredRunMedia": null, "reactionVideos": [], @@ -55002,7 +54721,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 121, + "teamId": "nef788336", "time": 16256221, "featuredRunMedia": null, "reactionVideos": [], @@ -55020,7 +54739,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 16264348, "featuredRunMedia": null, "reactionVideos": [], @@ -55038,7 +54757,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 16272470, "featuredRunMedia": null, "reactionVideos": [], @@ -55056,7 +54775,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 16273678, "featuredRunMedia": null, "reactionVideos": [], @@ -55074,7 +54793,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16281193, "featuredRunMedia": null, "reactionVideos": [], @@ -55092,7 +54811,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16284363, "featuredRunMedia": null, "reactionVideos": [], @@ -55110,7 +54829,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 16288470, "featuredRunMedia": null, "reactionVideos": [], @@ -55128,7 +54847,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16290481, "featuredRunMedia": null, "reactionVideos": [], @@ -55146,7 +54865,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16300775, "featuredRunMedia": null, "reactionVideos": [], @@ -55164,7 +54883,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 161, + "teamId": "nef780678", "time": 16301825, "featuredRunMedia": null, "reactionVideos": [], @@ -55182,7 +54901,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 16313930, "featuredRunMedia": null, "reactionVideos": [], @@ -55200,7 +54919,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 16317774, "featuredRunMedia": null, "reactionVideos": [], @@ -55218,7 +54937,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 16317877, "featuredRunMedia": null, "reactionVideos": [], @@ -55236,7 +54955,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 16318264, "featuredRunMedia": null, "reactionVideos": [], @@ -55254,7 +54973,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 127, + "teamId": "nef799360", "time": 16325439, "featuredRunMedia": null, "reactionVideos": [], @@ -55272,7 +54991,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 16327862, "featuredRunMedia": null, "reactionVideos": [], @@ -55290,7 +55009,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16332732, "featuredRunMedia": null, "reactionVideos": [], @@ -55308,7 +55027,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16335988, "featuredRunMedia": null, "reactionVideos": [], @@ -55326,7 +55045,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16336156, "featuredRunMedia": null, "reactionVideos": [], @@ -55344,7 +55063,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 16341410, "featuredRunMedia": null, "reactionVideos": [], @@ -55362,7 +55081,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 49, + "teamId": "nef780673", "time": 16344659, "featuredRunMedia": null, "reactionVideos": [], @@ -55380,7 +55099,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 16348822, "featuredRunMedia": null, "reactionVideos": [], @@ -55398,7 +55117,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 16348890, "featuredRunMedia": null, "reactionVideos": [], @@ -55416,7 +55135,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 258, + "teamId": "nef796543", "time": 16359921, "featuredRunMedia": null, "reactionVideos": [], @@ -55434,7 +55153,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 16365903, "featuredRunMedia": null, "reactionVideos": [], @@ -55452,7 +55171,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 19, + "teamId": "nef780674", "time": 16379423, "featuredRunMedia": null, "reactionVideos": [], @@ -55470,7 +55189,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 16384413, "featuredRunMedia": null, "reactionVideos": [], @@ -55488,7 +55207,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 128, + "teamId": "nef789939", "time": 16386213, "featuredRunMedia": null, "reactionVideos": [], @@ -55506,7 +55225,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 16390864, "featuredRunMedia": null, "reactionVideos": [], @@ -55524,7 +55243,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 261, + "teamId": "nef799352", "time": 16392657, "featuredRunMedia": null, "reactionVideos": [], @@ -55542,7 +55261,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 16396274, "featuredRunMedia": null, "reactionVideos": [], @@ -55560,7 +55279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 16400590, "featuredRunMedia": null, "reactionVideos": [], @@ -55578,7 +55297,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 16401665, "featuredRunMedia": null, "reactionVideos": [], @@ -55596,7 +55315,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 33, + "teamId": "nef780544", "time": 16404611, "featuredRunMedia": null, "reactionVideos": [], @@ -55614,7 +55333,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 264, + "teamId": "nef795865", "time": 16415359, "featuredRunMedia": null, "reactionVideos": [], @@ -55632,7 +55351,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 95, + "teamId": "nef788055", "time": 16419830, "featuredRunMedia": null, "reactionVideos": [], @@ -55650,7 +55369,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16427793, "featuredRunMedia": null, "reactionVideos": [], @@ -55668,7 +55387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 132, + "teamId": "nef780571", "time": 16443038, "featuredRunMedia": null, "reactionVideos": [], @@ -55686,7 +55405,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 16446158, "featuredRunMedia": null, "reactionVideos": [], @@ -55704,7 +55423,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 237, + "teamId": "nef796546", "time": 16446439, "featuredRunMedia": null, "reactionVideos": [], @@ -55722,7 +55441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 16447249, "featuredRunMedia": null, "reactionVideos": [], @@ -55740,7 +55459,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 16454228, "featuredRunMedia": null, "reactionVideos": [], @@ -55758,7 +55477,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 16458722, "featuredRunMedia": null, "reactionVideos": [], @@ -55776,7 +55495,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 33, + "teamId": "nef780544", "time": 16462507, "featuredRunMedia": null, "reactionVideos": [], @@ -55794,7 +55513,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 16464325, "featuredRunMedia": null, "reactionVideos": [], @@ -55812,7 +55531,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 16465418, "featuredRunMedia": null, "reactionVideos": [], @@ -55830,7 +55549,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16470986, "featuredRunMedia": null, "reactionVideos": [], @@ -55848,7 +55567,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 223, + "teamId": "nef795870", "time": 16473809, "featuredRunMedia": null, "reactionVideos": [], @@ -55866,7 +55585,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 16476028, "featuredRunMedia": null, "reactionVideos": [], @@ -55884,7 +55603,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 146, + "teamId": "nef790042", "time": 16476861, "featuredRunMedia": null, "reactionVideos": [], @@ -55902,7 +55621,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 16483106, "featuredRunMedia": null, "reactionVideos": [], @@ -55920,7 +55639,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 142, + "teamId": "nef780578", "time": 16489515, "featuredRunMedia": null, "reactionVideos": [], @@ -55938,7 +55657,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16492637, "featuredRunMedia": null, "reactionVideos": [], @@ -55956,7 +55675,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 16493226, "featuredRunMedia": null, "reactionVideos": [], @@ -55974,7 +55693,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 168, + "teamId": "nef780681", "time": 16498905, "featuredRunMedia": null, "reactionVideos": [], @@ -55992,7 +55711,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 16499939, "featuredRunMedia": null, "reactionVideos": [], @@ -56010,7 +55729,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 113, + "teamId": "nef780569", "time": 16503990, "featuredRunMedia": null, "reactionVideos": [], @@ -56028,7 +55747,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 36, + "teamId": "nef790069", "time": 16508675, "featuredRunMedia": null, "reactionVideos": [], @@ -56046,7 +55765,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16510073, "featuredRunMedia": null, "reactionVideos": [], @@ -56064,7 +55783,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 280, + "teamId": "nef799369", "time": 16513502, "featuredRunMedia": null, "reactionVideos": [], @@ -56082,7 +55801,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 16513736, "featuredRunMedia": null, "reactionVideos": [], @@ -56100,7 +55819,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16514818, "featuredRunMedia": null, "reactionVideos": [], @@ -56118,7 +55837,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 223, + "teamId": "nef795870", "time": 16515487, "featuredRunMedia": null, "reactionVideos": [], @@ -56136,7 +55855,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 16516743, "featuredRunMedia": null, "reactionVideos": [], @@ -56154,7 +55873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 16520105, "featuredRunMedia": null, "reactionVideos": [], @@ -56172,7 +55891,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 166, + "teamId": "nef788353", "time": 16520712, "featuredRunMedia": null, "reactionVideos": [], @@ -56190,7 +55909,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16530545, "featuredRunMedia": null, "reactionVideos": [], @@ -56208,7 +55927,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 36, + "teamId": "nef790069", "time": 16540513, "featuredRunMedia": null, "reactionVideos": [], @@ -56226,7 +55945,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 16541134, "featuredRunMedia": null, "reactionVideos": [], @@ -56244,7 +55963,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "nef788328", "time": 16544367, "featuredRunMedia": null, "reactionVideos": [], @@ -56262,7 +55981,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16548030, "featuredRunMedia": null, "reactionVideos": [], @@ -56280,7 +55999,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 158, + "teamId": "nef788068", "time": 16551675, "featuredRunMedia": null, "reactionVideos": [], @@ -56298,7 +56017,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 16552638, "featuredRunMedia": null, "reactionVideos": [], @@ -56316,7 +56035,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 223, + "teamId": "nef795870", "time": 16554009, "featuredRunMedia": null, "reactionVideos": [], @@ -56334,7 +56053,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16564198, "featuredRunMedia": null, "reactionVideos": [], @@ -56352,7 +56071,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 16564268, "featuredRunMedia": null, "reactionVideos": [], @@ -56370,7 +56089,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16565527, "featuredRunMedia": null, "reactionVideos": [], @@ -56388,7 +56107,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16577223, "featuredRunMedia": null, "reactionVideos": [], @@ -56406,7 +56125,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 16590474, "featuredRunMedia": null, "reactionVideos": [], @@ -56424,7 +56143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 16592846, "featuredRunMedia": null, "reactionVideos": [], @@ -56442,7 +56161,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16593460, "featuredRunMedia": null, "reactionVideos": [], @@ -56460,7 +56179,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 16601977, "featuredRunMedia": null, "reactionVideos": [], @@ -56478,7 +56197,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 16605731, "featuredRunMedia": null, "reactionVideos": [], @@ -56496,7 +56215,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "nef797075", "time": 16606290, "featuredRunMedia": null, "reactionVideos": [], @@ -56514,7 +56233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 16607865, "featuredRunMedia": null, "reactionVideos": [], @@ -56532,7 +56251,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 16608778, "featuredRunMedia": null, "reactionVideos": [], @@ -56550,7 +56269,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 132, + "teamId": "nef780571", "time": 16612225, "featuredRunMedia": null, "reactionVideos": [], @@ -56568,7 +56287,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "nef788318", "time": 16616075, "featuredRunMedia": null, "reactionVideos": [], @@ -56586,7 +56305,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16616286, "featuredRunMedia": null, "reactionVideos": [], @@ -56604,7 +56323,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 16618213, "featuredRunMedia": null, "reactionVideos": [], @@ -56622,7 +56341,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 16618740, "featuredRunMedia": null, "reactionVideos": [], @@ -56640,7 +56359,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "nef780675", "time": 16622010, "featuredRunMedia": null, "reactionVideos": [], @@ -56658,7 +56377,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 118, + "teamId": "nef790070", "time": 16624546, "featuredRunMedia": null, "reactionVideos": [], @@ -56676,7 +56395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 166, + "teamId": "nef788353", "time": 16627042, "featuredRunMedia": null, "reactionVideos": [], @@ -56694,7 +56413,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16627339, "featuredRunMedia": null, "reactionVideos": [], @@ -56712,7 +56431,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 16632581, "featuredRunMedia": null, "reactionVideos": [], @@ -56730,7 +56449,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16633981, "featuredRunMedia": null, "reactionVideos": [], @@ -56748,7 +56467,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 95, + "teamId": "nef788055", "time": 16634054, "featuredRunMedia": null, "reactionVideos": [], @@ -56766,7 +56485,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 139, + "teamId": "nef790101", "time": 16635846, "featuredRunMedia": null, "reactionVideos": [], @@ -56784,7 +56503,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 16638160, "featuredRunMedia": null, "reactionVideos": [], @@ -56802,7 +56521,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 16651982, "featuredRunMedia": null, "reactionVideos": [], @@ -56820,7 +56539,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 16656395, "featuredRunMedia": null, "reactionVideos": [], @@ -56838,7 +56557,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 134, + "teamId": "nef799571", "time": 16658728, "featuredRunMedia": null, "reactionVideos": [], @@ -56856,7 +56575,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16660284, "featuredRunMedia": null, "reactionVideos": [], @@ -56874,7 +56593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 16663401, "featuredRunMedia": null, "reactionVideos": [], @@ -56892,7 +56611,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 52, + "teamId": "nef790039", "time": 16665453, "featuredRunMedia": null, "reactionVideos": [], @@ -56910,7 +56629,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 221, + "teamId": "nef788067", "time": 16670686, "featuredRunMedia": null, "reactionVideos": [], @@ -56928,7 +56647,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 242, + "teamId": "nef772722", "time": 16672299, "featuredRunMedia": null, "reactionVideos": [], @@ -56946,7 +56665,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 102, + "teamId": "nef780567", "time": 16672867, "featuredRunMedia": null, "reactionVideos": [], @@ -56964,7 +56683,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 16681916, "featuredRunMedia": null, "reactionVideos": [], @@ -56982,7 +56701,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "nef788318", "time": 16683621, "featuredRunMedia": null, "reactionVideos": [], @@ -57000,7 +56719,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 125, + "teamId": "nef790074", "time": 16686747, "featuredRunMedia": null, "reactionVideos": [], @@ -57018,7 +56737,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 16690102, "featuredRunMedia": null, "reactionVideos": [], @@ -57036,7 +56755,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 122, + "teamId": "nef790437", "time": 16691139, "featuredRunMedia": null, "reactionVideos": [], @@ -57054,7 +56773,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 16692232, "featuredRunMedia": null, "reactionVideos": [], @@ -57072,7 +56791,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 16695830, "featuredRunMedia": null, "reactionVideos": [], @@ -57090,7 +56809,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 16702885, "featuredRunMedia": null, "reactionVideos": [], @@ -57108,7 +56827,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16705691, "featuredRunMedia": null, "reactionVideos": [], @@ -57126,7 +56845,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 210, + "teamId": "nef795863", "time": 16726833, "featuredRunMedia": null, "reactionVideos": [], @@ -57144,7 +56863,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 16727245, "featuredRunMedia": null, "reactionVideos": [], @@ -57162,7 +56881,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16729626, "featuredRunMedia": null, "reactionVideos": [], @@ -57180,7 +56899,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 16733066, "featuredRunMedia": null, "reactionVideos": [], @@ -57198,7 +56917,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 16735163, "featuredRunMedia": null, "reactionVideos": [], @@ -57216,7 +56935,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 115, + "teamId": "nef788026", "time": 16738592, "featuredRunMedia": null, "reactionVideos": [], @@ -57234,7 +56953,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 16743988, "featuredRunMedia": null, "reactionVideos": [], @@ -57252,7 +56971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 16746051, "featuredRunMedia": null, "reactionVideos": [], @@ -57270,7 +56989,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "nef788424", "time": 16746420, "featuredRunMedia": null, "reactionVideos": [], @@ -57288,7 +57007,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 160, + "teamId": "nef799357", "time": 16747405, "featuredRunMedia": null, "reactionVideos": [], @@ -57306,7 +57025,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 16754112, "featuredRunMedia": null, "reactionVideos": [], @@ -57324,7 +57043,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 16761040, "featuredRunMedia": null, "reactionVideos": [], @@ -57342,7 +57061,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 169, + "teamId": "nef788423", "time": 16762066, "featuredRunMedia": null, "reactionVideos": [], @@ -57360,7 +57079,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 129, + "teamId": "nef788427", "time": 16774180, "featuredRunMedia": null, "reactionVideos": [], @@ -57378,7 +57097,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 115, + "teamId": "nef788026", "time": 16784379, "featuredRunMedia": null, "reactionVideos": [], @@ -57396,7 +57115,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 67, + "teamId": "nef790100", "time": 16788927, "featuredRunMedia": null, "reactionVideos": [], @@ -57414,7 +57133,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 146, + "teamId": "nef790042", "time": 16798488, "featuredRunMedia": null, "reactionVideos": [], @@ -57432,7 +57151,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16803643, "featuredRunMedia": null, "reactionVideos": [], @@ -57450,7 +57169,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 16809944, "featuredRunMedia": null, "reactionVideos": [], @@ -57468,7 +57187,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 16811143, "featuredRunMedia": null, "reactionVideos": [], @@ -57486,7 +57205,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 177, + "teamId": "nef799366", "time": 16816870, "featuredRunMedia": null, "reactionVideos": [], @@ -57504,7 +57223,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16819146, "featuredRunMedia": null, "reactionVideos": [], @@ -57522,7 +57241,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 16827222, "featuredRunMedia": null, "reactionVideos": [], @@ -57540,7 +57259,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 16838310, "featuredRunMedia": null, "reactionVideos": [], @@ -57558,7 +57277,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 122, + "teamId": "nef790437", "time": 16839976, "featuredRunMedia": null, "reactionVideos": [], @@ -57576,7 +57295,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 16841342, "featuredRunMedia": null, "reactionVideos": [], @@ -57594,7 +57313,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16847243, "featuredRunMedia": null, "reactionVideos": [], @@ -57612,7 +57331,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 12, + "teamId": "nef790061", "time": 16848978, "featuredRunMedia": null, "reactionVideos": [], @@ -57630,7 +57349,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 16850659, "featuredRunMedia": null, "reactionVideos": [], @@ -57648,7 +57367,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 158, + "teamId": "nef788068", "time": 16855251, "featuredRunMedia": null, "reactionVideos": [], @@ -57666,7 +57385,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 16856155, "featuredRunMedia": null, "reactionVideos": [], @@ -57684,7 +57403,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 16856734, "featuredRunMedia": null, "reactionVideos": [], @@ -57702,7 +57421,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 26, + "teamId": "nef788425", "time": 16858528, "featuredRunMedia": null, "reactionVideos": [], @@ -57720,7 +57439,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16864875, "featuredRunMedia": null, "reactionVideos": [], @@ -57738,7 +57457,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16877396, "featuredRunMedia": null, "reactionVideos": [], @@ -57756,7 +57475,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 183, + "teamId": "nef788062", "time": 16877546, "featuredRunMedia": null, "reactionVideos": [], @@ -57774,7 +57493,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 254, + "teamId": "nef772720", "time": 16885980, "featuredRunMedia": null, "reactionVideos": [], @@ -57792,7 +57511,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 161, + "teamId": "nef780678", "time": 16897689, "featuredRunMedia": null, "reactionVideos": [], @@ -57810,7 +57529,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 130, + "teamId": "nef796438", "time": 16898268, "featuredRunMedia": null, "reactionVideos": [], @@ -57828,7 +57547,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 100, + "teamId": "nef788063", "time": 16899323, "featuredRunMedia": null, "reactionVideos": [], @@ -57846,7 +57565,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 269, + "teamId": "nef780598", "time": 16899578, "featuredRunMedia": null, "reactionVideos": [], @@ -57864,7 +57583,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 16900674, "featuredRunMedia": null, "reactionVideos": [], @@ -57882,7 +57601,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 128, + "teamId": "nef789939", "time": 16901337, "featuredRunMedia": null, "reactionVideos": [], @@ -57900,7 +57619,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 16901391, "featuredRunMedia": null, "reactionVideos": [], @@ -57918,7 +57637,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 71, + "teamId": "nef795855", "time": 16909521, "featuredRunMedia": null, "reactionVideos": [], @@ -57936,7 +57655,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16912207, "featuredRunMedia": null, "reactionVideos": [], @@ -57954,7 +57673,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 16921770, "featuredRunMedia": null, "reactionVideos": [], @@ -57972,7 +57691,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 248, + "teamId": "nef799355", "time": 16925874, "featuredRunMedia": null, "reactionVideos": [], @@ -57990,7 +57709,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16926650, "featuredRunMedia": null, "reactionVideos": [], @@ -58008,7 +57727,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 16927578, "featuredRunMedia": null, "reactionVideos": [], @@ -58026,7 +57745,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 16929467, "featuredRunMedia": null, "reactionVideos": [], @@ -58044,7 +57763,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 119, + "teamId": "nef788028", "time": 16931832, "featuredRunMedia": null, "reactionVideos": [], @@ -58062,7 +57781,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 16933053, "featuredRunMedia": null, "reactionVideos": [], @@ -58080,7 +57799,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 125, + "teamId": "nef790074", "time": 16933688, "featuredRunMedia": null, "reactionVideos": [], @@ -58098,7 +57817,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 223, + "teamId": "nef795870", "time": 16937483, "featuredRunMedia": null, "reactionVideos": [], @@ -58116,7 +57835,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 128, + "teamId": "nef789939", "time": 16947041, "featuredRunMedia": null, "reactionVideos": [], @@ -58134,7 +57853,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 196, + "teamId": "nef789968", "time": 16949255, "featuredRunMedia": null, "reactionVideos": [], @@ -58152,7 +57871,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 106, + "teamId": "nef780539", "time": 16950073, "featuredRunMedia": null, "reactionVideos": [], @@ -58170,7 +57889,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 16955013, "featuredRunMedia": null, "reactionVideos": [], @@ -58188,7 +57907,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 132, + "teamId": "nef780571", "time": 16969056, "featuredRunMedia": null, "reactionVideos": [], @@ -58206,7 +57925,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 248, + "teamId": "nef799355", "time": 16971020, "featuredRunMedia": null, "reactionVideos": [], @@ -58224,7 +57943,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 185, + "teamId": "nef790138", "time": 16976152, "featuredRunMedia": null, "reactionVideos": [], @@ -58242,7 +57961,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 154, + "teamId": "nef791357", "time": 16978221, "featuredRunMedia": null, "reactionVideos": [], @@ -58260,7 +57979,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 16979505, "featuredRunMedia": null, "reactionVideos": [], @@ -58278,7 +57997,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 24, + "teamId": "nef788332", "time": 16979707, "featuredRunMedia": null, "reactionVideos": [], @@ -58296,7 +58015,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 16984662, "featuredRunMedia": null, "reactionVideos": [], @@ -58314,7 +58033,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 16987066, "featuredRunMedia": null, "reactionVideos": [], @@ -58332,7 +58051,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 16994715, "featuredRunMedia": null, "reactionVideos": [], @@ -58350,7 +58069,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 195, + "teamId": "nef799363", "time": 16995277, "featuredRunMedia": null, "reactionVideos": [], @@ -58368,7 +58087,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 96, + "teamId": "nef799358", "time": 16996730, "featuredRunMedia": null, "reactionVideos": [], @@ -58386,7 +58105,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 17003593, "featuredRunMedia": null, "reactionVideos": [], @@ -58404,7 +58123,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 17004011, "featuredRunMedia": null, "reactionVideos": [], @@ -58422,7 +58141,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 129, + "teamId": "nef788427", "time": 17006849, "featuredRunMedia": null, "reactionVideos": [], @@ -58440,7 +58159,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 179, + "teamId": "nef790435", "time": 17011541, "featuredRunMedia": null, "reactionVideos": [], @@ -58458,7 +58177,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 250, + "teamId": "nef789941", "time": 17012376, "featuredRunMedia": null, "reactionVideos": [], @@ -58476,7 +58195,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 125, + "teamId": "nef790074", "time": 17013244, "featuredRunMedia": null, "reactionVideos": [], @@ -58494,7 +58213,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 17015360, "featuredRunMedia": null, "reactionVideos": [], @@ -58512,7 +58231,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17016242, "featuredRunMedia": null, "reactionVideos": [], @@ -58530,7 +58249,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 107, + "teamId": "nef788428", "time": 17016706, "featuredRunMedia": null, "reactionVideos": [], @@ -58548,7 +58267,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 210, + "teamId": "nef795863", "time": 17020585, "featuredRunMedia": null, "reactionVideos": [], @@ -58566,7 +58285,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 17020585, "featuredRunMedia": null, "reactionVideos": [], @@ -58584,7 +58303,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 17021789, "featuredRunMedia": null, "reactionVideos": [], @@ -58602,7 +58321,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 151, + "teamId": "nef799343", "time": 17029037, "featuredRunMedia": null, "reactionVideos": [], @@ -58620,7 +58339,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17039883, "featuredRunMedia": null, "reactionVideos": [], @@ -58638,7 +58357,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 254, + "teamId": "nef772720", "time": 17043619, "featuredRunMedia": null, "reactionVideos": [], @@ -58656,7 +58375,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 105, + "teamId": "nef790040", "time": 17047981, "featuredRunMedia": null, "reactionVideos": [], @@ -58674,7 +58393,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 172, + "teamId": "nef788054", "time": 17051763, "featuredRunMedia": null, "reactionVideos": [], @@ -58692,7 +58411,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 26, + "teamId": "nef788425", "time": 17054341, "featuredRunMedia": null, "reactionVideos": [], @@ -58710,7 +58429,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17064435, "featuredRunMedia": null, "reactionVideos": [], @@ -58728,7 +58447,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 179, + "teamId": "nef790435", "time": 17066368, "featuredRunMedia": null, "reactionVideos": [], @@ -58746,7 +58465,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 17066614, "featuredRunMedia": null, "reactionVideos": [], @@ -58764,7 +58483,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17073341, "featuredRunMedia": null, "reactionVideos": [], @@ -58782,7 +58501,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 17074916, "featuredRunMedia": null, "reactionVideos": [], @@ -58800,7 +58519,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 107, + "teamId": "nef788428", "time": 17077020, "featuredRunMedia": null, "reactionVideos": [], @@ -58818,7 +58537,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 246, + "teamId": "nef799354", "time": 17078943, "featuredRunMedia": null, "reactionVideos": [], @@ -58836,7 +58555,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 17079112, "featuredRunMedia": null, "reactionVideos": [], @@ -58854,7 +58573,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17084277, "featuredRunMedia": null, "reactionVideos": [], @@ -58872,7 +58591,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 255, + "teamId": "nef797086", "time": 17084839, "featuredRunMedia": null, "reactionVideos": [], @@ -58890,7 +58609,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17093987, "featuredRunMedia": null, "reactionVideos": [], @@ -58908,7 +58627,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 17101155, "featuredRunMedia": null, "reactionVideos": [], @@ -58926,7 +58645,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 95, + "teamId": "nef788055", "time": 17108206, "featuredRunMedia": null, "reactionVideos": [], @@ -58944,7 +58663,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17111172, "featuredRunMedia": null, "reactionVideos": [], @@ -58962,7 +58681,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 17112612, "featuredRunMedia": null, "reactionVideos": [], @@ -58980,7 +58699,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 183, + "teamId": "nef788062", "time": 17114919, "featuredRunMedia": null, "reactionVideos": [], @@ -58998,7 +58717,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17118085, "featuredRunMedia": null, "reactionVideos": [], @@ -59016,7 +58735,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 105, + "teamId": "nef790040", "time": 17119822, "featuredRunMedia": null, "reactionVideos": [], @@ -59034,7 +58753,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 17120279, "featuredRunMedia": null, "reactionVideos": [], @@ -59052,7 +58771,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 17122383, "featuredRunMedia": null, "reactionVideos": [], @@ -59070,7 +58789,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 17123275, "featuredRunMedia": null, "reactionVideos": [], @@ -59088,7 +58807,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17127729, "featuredRunMedia": null, "reactionVideos": [], @@ -59106,7 +58825,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 96, + "teamId": "nef799358", "time": 17132658, "featuredRunMedia": null, "reactionVideos": [], @@ -59124,7 +58843,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 17137977, "featuredRunMedia": null, "reactionVideos": [], @@ -59142,7 +58861,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 252, + "teamId": "nef799373", "time": 17138863, "featuredRunMedia": null, "reactionVideos": [], @@ -59160,7 +58879,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 265, + "teamId": "nef780600", "time": 17139746, "featuredRunMedia": null, "reactionVideos": [], @@ -59178,7 +58897,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "nef796574", "time": 17140063, "featuredRunMedia": null, "reactionVideos": [], @@ -59196,7 +58915,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17140774, "featuredRunMedia": null, "reactionVideos": [], @@ -59214,7 +58933,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 143, + "teamId": "nef790105", "time": 17145003, "featuredRunMedia": null, "reactionVideos": [], @@ -59232,7 +58951,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 23, + "teamId": "nef780541", "time": 17147992, "featuredRunMedia": null, "reactionVideos": [], @@ -59250,7 +58969,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 17149580, "featuredRunMedia": null, "reactionVideos": [], @@ -59268,7 +58987,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 229, + "teamId": "nef799350", "time": 17159380, "featuredRunMedia": null, "reactionVideos": [], @@ -59286,7 +59005,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17159855, "featuredRunMedia": null, "reactionVideos": [], @@ -59304,7 +59023,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17160031, "featuredRunMedia": null, "reactionVideos": [], @@ -59322,7 +59041,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17161907, "featuredRunMedia": null, "reactionVideos": [], @@ -59340,7 +59059,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17162267, "featuredRunMedia": null, "reactionVideos": [], @@ -59358,7 +59077,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17166581, "featuredRunMedia": null, "reactionVideos": [], @@ -59376,7 +59095,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 272, + "teamId": "nef780601", "time": 17170075, "featuredRunMedia": null, "reactionVideos": [], @@ -59394,7 +59113,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 17172905, "featuredRunMedia": null, "reactionVideos": [], @@ -59412,7 +59131,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 17176193, "featuredRunMedia": null, "reactionVideos": [], @@ -59430,7 +59149,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 17180114, "featuredRunMedia": null, "reactionVideos": [], @@ -59448,7 +59167,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17180480, "featuredRunMedia": null, "reactionVideos": [], @@ -59466,7 +59185,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "nef788344", "time": 17185752, "featuredRunMedia": null, "reactionVideos": [], @@ -59484,7 +59203,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17185759, "featuredRunMedia": null, "reactionVideos": [], @@ -59502,7 +59221,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 254, + "teamId": "nef772720", "time": 17191075, "featuredRunMedia": null, "reactionVideos": [], @@ -59520,7 +59239,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 17191351, "featuredRunMedia": null, "reactionVideos": [], @@ -59538,7 +59257,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 81, + "teamId": "nef788421", "time": 17191779, "featuredRunMedia": null, "reactionVideos": [], @@ -59556,7 +59275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 17193722, "featuredRunMedia": null, "reactionVideos": [], @@ -59574,7 +59293,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 253, + "teamId": "nef772717", "time": 17197492, "featuredRunMedia": null, "reactionVideos": [], @@ -59592,7 +59311,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 231, + "teamId": "nef789946", "time": 17204248, "featuredRunMedia": null, "reactionVideos": [], @@ -59610,7 +59329,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17204689, "featuredRunMedia": null, "reactionVideos": [], @@ -59628,7 +59347,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17208004, "featuredRunMedia": null, "reactionVideos": [], @@ -59646,7 +59365,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17210219, "featuredRunMedia": null, "reactionVideos": [], @@ -59664,7 +59383,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 20, + "teamId": "nef780540", "time": 17211014, "featuredRunMedia": null, "reactionVideos": [], @@ -59682,7 +59401,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17215018, "featuredRunMedia": null, "reactionVideos": [], @@ -59700,7 +59419,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 17216122, "featuredRunMedia": null, "reactionVideos": [], @@ -59718,7 +59437,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 166, + "teamId": "nef788353", "time": 17216218, "featuredRunMedia": null, "reactionVideos": [], @@ -59736,7 +59455,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17217305, "featuredRunMedia": null, "reactionVideos": [], @@ -59754,7 +59473,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 17222159, "featuredRunMedia": null, "reactionVideos": [], @@ -59772,7 +59491,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 265, + "teamId": "nef780600", "time": 17225844, "featuredRunMedia": null, "reactionVideos": [], @@ -59790,7 +59509,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 105, + "teamId": "nef790040", "time": 17230638, "featuredRunMedia": null, "reactionVideos": [], @@ -59808,7 +59527,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 194, + "teamId": "nef790135", "time": 17232693, "featuredRunMedia": null, "reactionVideos": [], @@ -59826,7 +59545,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 69, + "teamId": "nef796578", "time": 17235443, "featuredRunMedia": null, "reactionVideos": [], @@ -59844,7 +59563,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17242976, "featuredRunMedia": null, "reactionVideos": [], @@ -59862,7 +59581,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 17243648, "featuredRunMedia": null, "reactionVideos": [], @@ -59880,7 +59599,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 18, + "teamId": "nef788323", "time": 17246987, "featuredRunMedia": null, "reactionVideos": [], @@ -59898,7 +59617,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 246, + "teamId": "nef799354", "time": 17256092, "featuredRunMedia": null, "reactionVideos": [], @@ -59916,7 +59635,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 105, + "teamId": "nef790040", "time": 17258731, "featuredRunMedia": null, "reactionVideos": [], @@ -59934,7 +59653,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "nef790061", "time": 17260747, "featuredRunMedia": null, "reactionVideos": [], @@ -59952,7 +59671,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 17261308, "featuredRunMedia": null, "reactionVideos": [], @@ -59970,7 +59689,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 95, + "teamId": "nef788055", "time": 17264391, "featuredRunMedia": null, "reactionVideos": [], @@ -59988,7 +59707,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 17268727, "featuredRunMedia": null, "reactionVideos": [], @@ -60006,7 +59725,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17274768, "featuredRunMedia": null, "reactionVideos": [], @@ -60024,7 +59743,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 97, + "teamId": "nef799345", "time": 17275016, "featuredRunMedia": null, "reactionVideos": [], @@ -60042,7 +59761,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 127, + "teamId": "nef799360", "time": 17276713, "featuredRunMedia": null, "reactionVideos": [], @@ -60060,7 +59779,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 166, + "teamId": "nef788353", "time": 17276820, "featuredRunMedia": null, "reactionVideos": [], @@ -60078,7 +59797,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17276897, "featuredRunMedia": null, "reactionVideos": [], @@ -60096,7 +59815,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 250, + "teamId": "nef789941", "time": 17278346, "featuredRunMedia": null, "reactionVideos": [], @@ -60114,7 +59833,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 193, + "teamId": "nef799348", "time": 17278736, "featuredRunMedia": null, "reactionVideos": [], @@ -60132,7 +59851,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17287520, "featuredRunMedia": null, "reactionVideos": [], @@ -60150,7 +59869,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 196, + "teamId": "nef789968", "time": 17290061, "featuredRunMedia": null, "reactionVideos": [], @@ -60168,7 +59887,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 205, + "teamId": "nef780572", "time": 17290965, "featuredRunMedia": null, "reactionVideos": [], @@ -60186,7 +59905,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "nef790067", "time": 17293249, "featuredRunMedia": null, "reactionVideos": [], @@ -60204,7 +59923,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17296833, "featuredRunMedia": null, "reactionVideos": [], @@ -60222,7 +59941,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 17297029, "featuredRunMedia": null, "reactionVideos": [], @@ -60240,7 +59959,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 17297649, "featuredRunMedia": null, "reactionVideos": [], @@ -60258,7 +59977,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17297676, "featuredRunMedia": null, "reactionVideos": [], @@ -60276,7 +59995,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 17297734, "featuredRunMedia": null, "reactionVideos": [], @@ -60294,7 +60013,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17298779, "featuredRunMedia": null, "reactionVideos": [], @@ -60312,7 +60031,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17299012, "featuredRunMedia": null, "reactionVideos": [], @@ -60330,7 +60049,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "nef790436", "time": 17299979, "featuredRunMedia": null, "reactionVideos": [], @@ -60348,7 +60067,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17301058, "featuredRunMedia": null, "reactionVideos": [], @@ -60366,7 +60085,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 68, + "teamId": "nef790103", "time": 17303667, "featuredRunMedia": null, "reactionVideos": [], @@ -60384,7 +60103,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 145, + "teamId": "nef780680", "time": 17309588, "featuredRunMedia": null, "reactionVideos": [], @@ -60402,7 +60121,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 68, + "teamId": "nef790103", "time": 17311705, "featuredRunMedia": null, "reactionVideos": [], @@ -60420,7 +60139,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17317029, "featuredRunMedia": null, "reactionVideos": [], @@ -60438,7 +60157,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17323105, "featuredRunMedia": null, "reactionVideos": [], @@ -60456,7 +60175,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "nef788061", "time": 17327756, "featuredRunMedia": null, "reactionVideos": [], @@ -60474,7 +60193,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17327986, "featuredRunMedia": null, "reactionVideos": [], @@ -60492,7 +60211,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 82, + "teamId": "nef799340", "time": 17329429, "featuredRunMedia": null, "reactionVideos": [], @@ -60510,7 +60229,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17329903, "featuredRunMedia": null, "reactionVideos": [], @@ -60528,7 +60247,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 191, + "teamId": "nef790140", "time": 17330896, "featuredRunMedia": null, "reactionVideos": [], @@ -60546,7 +60265,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17336536, "featuredRunMedia": null, "reactionVideos": [], @@ -60564,7 +60283,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17336705, "featuredRunMedia": null, "reactionVideos": [], @@ -60582,7 +60301,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 17342186, "featuredRunMedia": null, "reactionVideos": [], @@ -60600,7 +60319,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17342822, "featuredRunMedia": null, "reactionVideos": [], @@ -60618,7 +60337,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 263, + "teamId": "nef772713", "time": 17343091, "featuredRunMedia": null, "reactionVideos": [], @@ -60636,7 +60355,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 17343552, "featuredRunMedia": null, "reactionVideos": [], @@ -60654,7 +60373,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 166, + "teamId": "nef788353", "time": 17344640, "featuredRunMedia": null, "reactionVideos": [], @@ -60672,7 +60391,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 10, + "teamId": "nef780666", "time": 17346295, "featuredRunMedia": null, "reactionVideos": [], @@ -60690,7 +60409,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "nef788319", "time": 17348531, "featuredRunMedia": null, "reactionVideos": [], @@ -60708,7 +60427,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17349610, "featuredRunMedia": null, "reactionVideos": [], @@ -60726,7 +60445,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17357009, "featuredRunMedia": null, "reactionVideos": [], @@ -60744,7 +60463,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 113, + "teamId": "nef780569", "time": 17357541, "featuredRunMedia": null, "reactionVideos": [], @@ -60762,7 +60481,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 177, + "teamId": "nef799366", "time": 17358104, "featuredRunMedia": null, "reactionVideos": [], @@ -60780,7 +60499,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 218, + "teamId": "nef788945", "time": 17358131, "featuredRunMedia": null, "reactionVideos": [], @@ -60798,7 +60517,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17370781, "featuredRunMedia": null, "reactionVideos": [], @@ -60816,7 +60535,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17371092, "featuredRunMedia": null, "reactionVideos": [], @@ -60834,7 +60553,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 161, + "teamId": "nef780678", "time": 17372536, "featuredRunMedia": null, "reactionVideos": [], @@ -60852,7 +60571,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17378538, "featuredRunMedia": null, "reactionVideos": [], @@ -60870,7 +60589,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17380092, "featuredRunMedia": null, "reactionVideos": [], @@ -60888,7 +60607,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 202, + "teamId": "nef790142", "time": 17380399, "featuredRunMedia": null, "reactionVideos": [], @@ -60906,7 +60625,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17384959, "featuredRunMedia": null, "reactionVideos": [], @@ -60924,7 +60643,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17390072, "featuredRunMedia": null, "reactionVideos": [], @@ -60942,7 +60661,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 10, + "teamId": "nef780666", "time": 17391188, "featuredRunMedia": null, "reactionVideos": [], @@ -60960,7 +60679,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17392773, "featuredRunMedia": null, "reactionVideos": [], @@ -60978,7 +60697,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 41, + "teamId": "nef796574", "time": 17395236, "featuredRunMedia": null, "reactionVideos": [], @@ -60996,7 +60715,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 30, + "teamId": "nef780676", "time": 17396683, "featuredRunMedia": null, "reactionVideos": [], @@ -61014,7 +60733,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17398579, "featuredRunMedia": null, "reactionVideos": [], @@ -61032,7 +60751,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "nef790436", "time": 17399045, "featuredRunMedia": null, "reactionVideos": [], @@ -61050,7 +60769,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "nef788344", "time": 17400039, "featuredRunMedia": null, "reactionVideos": [], @@ -61068,7 +60787,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 194, + "teamId": "nef790135", "time": 17401127, "featuredRunMedia": null, "reactionVideos": [], @@ -61086,7 +60805,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17409625, "featuredRunMedia": null, "reactionVideos": [], @@ -61104,7 +60823,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 5, + "teamId": "nef780665", "time": 17410191, "featuredRunMedia": null, "reactionVideos": [], @@ -61122,7 +60841,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17417372, "featuredRunMedia": null, "reactionVideos": [], @@ -61140,7 +60859,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17418869, "featuredRunMedia": null, "reactionVideos": [], @@ -61158,7 +60877,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 238, + "teamId": "nef772718", "time": 17419437, "featuredRunMedia": null, "reactionVideos": [], @@ -61176,7 +60895,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17424458, "featuredRunMedia": null, "reactionVideos": [], @@ -61194,7 +60913,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17425313, "featuredRunMedia": null, "reactionVideos": [], @@ -61212,7 +60931,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17428237, "featuredRunMedia": null, "reactionVideos": [], @@ -61230,7 +60949,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 218, + "teamId": "nef788945", "time": 17428286, "featuredRunMedia": null, "reactionVideos": [], @@ -61248,7 +60967,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 197, + "teamId": "nef788351", "time": 17430790, "featuredRunMedia": null, "reactionVideos": [], @@ -61266,7 +60985,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 81, + "teamId": "nef788421", "time": 17436148, "featuredRunMedia": null, "reactionVideos": [], @@ -61284,7 +61003,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 194, + "teamId": "nef790135", "time": 17436806, "featuredRunMedia": null, "reactionVideos": [], @@ -61302,7 +61021,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17448984, "featuredRunMedia": null, "reactionVideos": [], @@ -61320,7 +61039,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17451260, "featuredRunMedia": null, "reactionVideos": [], @@ -61338,7 +61057,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 17453694, "featuredRunMedia": null, "reactionVideos": [], @@ -61356,7 +61075,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 95, + "teamId": "nef788055", "time": 17459311, "featuredRunMedia": null, "reactionVideos": [], @@ -61374,7 +61093,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 144, + "teamId": "nef780575", "time": 17460654, "featuredRunMedia": null, "reactionVideos": [], @@ -61392,7 +61111,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 253, + "teamId": "nef772717", "time": 17461036, "featuredRunMedia": null, "reactionVideos": [], @@ -61410,7 +61129,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17464701, "featuredRunMedia": null, "reactionVideos": [], @@ -61428,7 +61147,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 248, + "teamId": "nef799355", "time": 17465645, "featuredRunMedia": null, "reactionVideos": [], @@ -61446,7 +61165,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 17470724, "featuredRunMedia": null, "reactionVideos": [], @@ -61464,7 +61183,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 63, + "teamId": "nef788029", "time": 17470840, "featuredRunMedia": null, "reactionVideos": [], @@ -61482,7 +61201,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 17472592, "featuredRunMedia": null, "reactionVideos": [], @@ -61500,7 +61219,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 103, + "teamId": "nef780682", "time": 17473193, "featuredRunMedia": null, "reactionVideos": [], @@ -61518,7 +61237,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 158, + "teamId": "nef788068", "time": 17477043, "featuredRunMedia": null, "reactionVideos": [], @@ -61536,7 +61255,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17477479, "featuredRunMedia": null, "reactionVideos": [], @@ -61554,7 +61273,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 230, + "teamId": "nef797080", "time": 17477479, "featuredRunMedia": null, "reactionVideos": [], @@ -61572,7 +61291,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "nef790436", "time": 17477588, "featuredRunMedia": null, "reactionVideos": [], @@ -61590,7 +61309,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 122, + "teamId": "nef790437", "time": 17479821, "featuredRunMedia": null, "reactionVideos": [], @@ -61608,7 +61327,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17480634, "featuredRunMedia": null, "reactionVideos": [], @@ -61626,7 +61345,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 278, + "teamId": "nef797090", "time": 17481753, "featuredRunMedia": null, "reactionVideos": [], @@ -61644,7 +61363,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 153, + "teamId": "nef795858", "time": 17483240, "featuredRunMedia": null, "reactionVideos": [], @@ -61662,7 +61381,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 17486015, "featuredRunMedia": null, "reactionVideos": [], @@ -61680,7 +61399,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 7, + "teamId": "nef788325", "time": 17486107, "featuredRunMedia": null, "reactionVideos": [], @@ -61698,7 +61417,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 248, + "teamId": "nef799355", "time": 17493863, "featuredRunMedia": null, "reactionVideos": [], @@ -61716,7 +61435,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17496809, "featuredRunMedia": null, "reactionVideos": [], @@ -61734,7 +61453,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "nef788329", "time": 17504162, "featuredRunMedia": null, "reactionVideos": [], @@ -61752,7 +61471,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17504832, "featuredRunMedia": null, "reactionVideos": [], @@ -61770,7 +61489,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17506453, "featuredRunMedia": null, "reactionVideos": [], @@ -61788,7 +61507,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 278, + "teamId": "nef797090", "time": 17507058, "featuredRunMedia": null, "reactionVideos": [], @@ -61806,7 +61525,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 17509376, "featuredRunMedia": null, "reactionVideos": [], @@ -61824,7 +61543,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 126, + "teamId": "nef791356", "time": 17510298, "featuredRunMedia": null, "reactionVideos": [], @@ -61842,7 +61561,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 50, + "teamId": "nef780568", "time": 17511374, "featuredRunMedia": null, "reactionVideos": [], @@ -61860,7 +61579,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 197, + "teamId": "nef788351", "time": 17516736, "featuredRunMedia": null, "reactionVideos": [], @@ -61878,7 +61597,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 194, + "teamId": "nef790135", "time": 17519999, "featuredRunMedia": null, "reactionVideos": [], @@ -61896,7 +61615,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 96, + "teamId": "nef799358", "time": 17524235, "featuredRunMedia": null, "reactionVideos": [], @@ -61914,7 +61633,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 17525288, "featuredRunMedia": null, "reactionVideos": [], @@ -61932,7 +61651,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 265, + "teamId": "nef780600", "time": 17525518, "featuredRunMedia": null, "reactionVideos": [], @@ -61950,7 +61669,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17527531, "featuredRunMedia": null, "reactionVideos": [], @@ -61968,7 +61687,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17528665, "featuredRunMedia": null, "reactionVideos": [], @@ -61986,7 +61705,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17530634, "featuredRunMedia": null, "reactionVideos": [], @@ -62004,7 +61723,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17532120, "featuredRunMedia": null, "reactionVideos": [], @@ -62022,7 +61741,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 241, + "teamId": "nef790434", "time": 17535343, "featuredRunMedia": null, "reactionVideos": [], @@ -62040,7 +61759,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "nef788320", "time": 17535897, "featuredRunMedia": null, "reactionVideos": [], @@ -62058,7 +61777,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17537641, "featuredRunMedia": null, "reactionVideos": [], @@ -62076,7 +61795,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 27, + "teamId": "nef788419", "time": 17539764, "featuredRunMedia": null, "reactionVideos": [], @@ -62094,7 +61813,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17540681, "featuredRunMedia": null, "reactionVideos": [], @@ -62112,7 +61831,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 81, + "teamId": "nef788421", "time": 17545141, "featuredRunMedia": null, "reactionVideos": [], @@ -62130,7 +61849,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17545853, "featuredRunMedia": null, "reactionVideos": [], @@ -62148,7 +61867,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17550694, "featuredRunMedia": null, "reactionVideos": [], @@ -62166,7 +61885,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 17553636, "featuredRunMedia": null, "reactionVideos": [], @@ -62184,7 +61903,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17555020, "featuredRunMedia": null, "reactionVideos": [], @@ -62202,7 +61921,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 24, + "teamId": "nef788332", "time": 17555099, "featuredRunMedia": null, "reactionVideos": [], @@ -62220,7 +61939,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 145, + "teamId": "nef780680", "time": 17558375, "featuredRunMedia": null, "reactionVideos": [], @@ -62238,7 +61957,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 176, + "teamId": "nef795856", "time": 17558442, "featuredRunMedia": null, "reactionVideos": [], @@ -62256,7 +61975,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17560988, "featuredRunMedia": null, "reactionVideos": [], @@ -62274,7 +61993,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 109, + "teamId": "nef788326", "time": 17562815, "featuredRunMedia": null, "reactionVideos": [], @@ -62292,7 +62011,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17563999, "featuredRunMedia": null, "reactionVideos": [], @@ -62310,7 +62029,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17569223, "featuredRunMedia": null, "reactionVideos": [], @@ -62328,7 +62047,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 17569780, "featuredRunMedia": null, "reactionVideos": [], @@ -62346,7 +62065,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 82, + "teamId": "nef799340", "time": 17570287, "featuredRunMedia": null, "reactionVideos": [], @@ -62364,7 +62083,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 191, + "teamId": "nef790140", "time": 17571033, "featuredRunMedia": null, "reactionVideos": [], @@ -62382,7 +62101,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 169, + "teamId": "nef788423", "time": 17577120, "featuredRunMedia": null, "reactionVideos": [], @@ -62400,7 +62119,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 17581565, "featuredRunMedia": null, "reactionVideos": [], @@ -62418,7 +62137,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 132, + "teamId": "nef780571", "time": 17585806, "featuredRunMedia": null, "reactionVideos": [], @@ -62436,7 +62155,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17586510, "featuredRunMedia": null, "reactionVideos": [], @@ -62454,7 +62173,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 82, + "teamId": "nef799340", "time": 17589882, "featuredRunMedia": null, "reactionVideos": [], @@ -62472,7 +62191,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 218, + "teamId": "nef788945", "time": 17591636, "featuredRunMedia": null, "reactionVideos": [], @@ -62490,7 +62209,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 142, + "teamId": "nef780578", "time": 17592426, "featuredRunMedia": null, "reactionVideos": [], @@ -62508,7 +62227,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17594195, "featuredRunMedia": null, "reactionVideos": [], @@ -62526,7 +62245,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 279, + "teamId": "nef799365", "time": 17595558, "featuredRunMedia": null, "reactionVideos": [], @@ -62544,7 +62263,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 171, + "teamId": "nef796439", "time": 17598438, "featuredRunMedia": null, "reactionVideos": [], @@ -62562,7 +62281,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 236, + "teamId": "nef789838", "time": 17598609, "featuredRunMedia": null, "reactionVideos": [], @@ -62580,7 +62299,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17599374, "featuredRunMedia": null, "reactionVideos": [], @@ -62598,7 +62317,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17600071, "featuredRunMedia": null, "reactionVideos": [], @@ -62616,7 +62335,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 177, + "teamId": "nef799366", "time": 17600283, "featuredRunMedia": null, "reactionVideos": [], @@ -62634,7 +62353,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 95, + "teamId": "nef788055", "time": 17602374, "featuredRunMedia": null, "reactionVideos": [], @@ -62652,7 +62371,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 20, + "teamId": "nef780540", "time": 17603127, "featuredRunMedia": null, "reactionVideos": [], @@ -62670,7 +62389,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 17605729, "featuredRunMedia": null, "reactionVideos": [], @@ -62688,7 +62407,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 235, + "teamId": "nef772715", "time": 17608774, "featuredRunMedia": null, "reactionVideos": [], @@ -62706,7 +62425,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17610291, "featuredRunMedia": null, "reactionVideos": [], @@ -62724,7 +62443,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17610437, "featuredRunMedia": null, "reactionVideos": [], @@ -62742,7 +62461,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 241, + "teamId": "nef790434", "time": 17610596, "featuredRunMedia": null, "reactionVideos": [], @@ -62760,7 +62479,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17612220, "featuredRunMedia": null, "reactionVideos": [], @@ -62778,7 +62497,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 204, + "teamId": "nef790433", "time": 17612345, "featuredRunMedia": null, "reactionVideos": [], @@ -62796,7 +62515,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 17612895, "featuredRunMedia": null, "reactionVideos": [], @@ -62814,7 +62533,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17614114, "featuredRunMedia": null, "reactionVideos": [], @@ -62832,7 +62551,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17615396, "featuredRunMedia": null, "reactionVideos": [], @@ -62850,7 +62569,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 255, + "teamId": "nef797086", "time": 17617376, "featuredRunMedia": null, "reactionVideos": [], @@ -62868,7 +62587,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 171, + "teamId": "nef796439", "time": 17617758, "featuredRunMedia": null, "reactionVideos": [], @@ -62886,7 +62605,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17619169, "featuredRunMedia": null, "reactionVideos": [], @@ -62904,7 +62623,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 17620819, "featuredRunMedia": null, "reactionVideos": [], @@ -62922,7 +62641,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17622986, "featuredRunMedia": null, "reactionVideos": [], @@ -62940,7 +62659,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 194, + "teamId": "nef790135", "time": 17624726, "featuredRunMedia": null, "reactionVideos": [], @@ -62958,7 +62677,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 140, + "teamId": "nef799346", "time": 17626420, "featuredRunMedia": null, "reactionVideos": [], @@ -62976,7 +62695,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 136, + "teamId": "nef790041", "time": 17627466, "featuredRunMedia": null, "reactionVideos": [], @@ -62994,7 +62713,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 28, + "teamId": "nef788329", "time": 17628318, "featuredRunMedia": null, "reactionVideos": [], @@ -63012,7 +62731,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17632886, "featuredRunMedia": null, "reactionVideos": [], @@ -63030,7 +62749,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17634431, "featuredRunMedia": null, "reactionVideos": [], @@ -63048,7 +62767,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 179, + "teamId": "nef790435", "time": 17636145, "featuredRunMedia": null, "reactionVideos": [], @@ -63066,7 +62785,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 236, + "teamId": "nef789838", "time": 17638433, "featuredRunMedia": null, "reactionVideos": [], @@ -63084,7 +62803,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17638979, "featuredRunMedia": null, "reactionVideos": [], @@ -63102,7 +62821,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 95, + "teamId": "nef788055", "time": 17641438, "featuredRunMedia": null, "reactionVideos": [], @@ -63120,7 +62839,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 129, + "teamId": "nef788427", "time": 17641794, "featuredRunMedia": null, "reactionVideos": [], @@ -63138,7 +62857,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 17643856, "featuredRunMedia": null, "reactionVideos": [], @@ -63156,7 +62875,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 240, + "teamId": "nef780303", "time": 17650529, "featuredRunMedia": null, "reactionVideos": [], @@ -63174,7 +62893,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17650613, "featuredRunMedia": null, "reactionVideos": [], @@ -63192,7 +62911,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17650920, "featuredRunMedia": null, "reactionVideos": [], @@ -63210,7 +62929,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17651512, "featuredRunMedia": null, "reactionVideos": [], @@ -63228,7 +62947,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 17652878, "featuredRunMedia": null, "reactionVideos": [], @@ -63246,7 +62965,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 197, + "teamId": "nef788351", "time": 17653528, "featuredRunMedia": null, "reactionVideos": [], @@ -63264,7 +62983,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 12, + "teamId": "nef790061", "time": 17656346, "featuredRunMedia": null, "reactionVideos": [], @@ -63282,7 +63001,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17656406, "featuredRunMedia": null, "reactionVideos": [], @@ -63300,7 +63019,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 17657632, "featuredRunMedia": null, "reactionVideos": [], @@ -63318,7 +63037,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 196, + "teamId": "nef789968", "time": 17658146, "featuredRunMedia": null, "reactionVideos": [], @@ -63336,7 +63055,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 17660262, "featuredRunMedia": null, "reactionVideos": [], @@ -63354,7 +63073,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "nef788344", "time": 17662368, "featuredRunMedia": null, "reactionVideos": [], @@ -63372,7 +63091,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17663265, "featuredRunMedia": null, "reactionVideos": [], @@ -63390,7 +63109,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 17663929, "featuredRunMedia": null, "reactionVideos": [], @@ -63408,7 +63127,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17663950, "featuredRunMedia": null, "reactionVideos": [], @@ -63426,7 +63145,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 24, + "teamId": "nef788332", "time": 17664776, "featuredRunMedia": null, "reactionVideos": [], @@ -63444,7 +63163,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 277, + "teamId": "nef796555", "time": 17666556, "featuredRunMedia": null, "reactionVideos": [], @@ -63462,7 +63181,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 259, + "teamId": "nef799356", "time": 17668175, "featuredRunMedia": null, "reactionVideos": [], @@ -63480,7 +63199,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17671730, "featuredRunMedia": null, "reactionVideos": [], @@ -63498,7 +63217,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "nef788329", "time": 17672638, "featuredRunMedia": null, "reactionVideos": [], @@ -63516,7 +63235,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17673167, "featuredRunMedia": null, "reactionVideos": [], @@ -63534,7 +63253,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17673582, "featuredRunMedia": null, "reactionVideos": [], @@ -63552,7 +63271,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17673722, "featuredRunMedia": null, "reactionVideos": [], @@ -63570,7 +63289,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17674431, "featuredRunMedia": null, "reactionVideos": [], @@ -63588,7 +63307,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17674433, "featuredRunMedia": null, "reactionVideos": [], @@ -63606,7 +63325,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17677018, "featuredRunMedia": null, "reactionVideos": [], @@ -63624,7 +63343,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 183, + "teamId": "nef788062", "time": 17677582, "featuredRunMedia": null, "reactionVideos": [], @@ -63642,7 +63361,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 109, + "teamId": "nef788326", "time": 17678196, "featuredRunMedia": null, "reactionVideos": [], @@ -63660,7 +63379,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 191, + "teamId": "nef790140", "time": 17680297, "featuredRunMedia": null, "reactionVideos": [], @@ -63678,7 +63397,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 140, + "teamId": "nef799346", "time": 17683263, "featuredRunMedia": null, "reactionVideos": [], @@ -63696,7 +63415,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "nef790436", "time": 17685853, "featuredRunMedia": null, "reactionVideos": [], @@ -63714,7 +63433,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 129, + "teamId": "nef788427", "time": 17686513, "featuredRunMedia": null, "reactionVideos": [], @@ -63732,7 +63451,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 130, + "teamId": "nef796438", "time": 17686939, "featuredRunMedia": null, "reactionVideos": [], @@ -63750,7 +63469,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17687465, "featuredRunMedia": null, "reactionVideos": [], @@ -63768,7 +63487,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17689676, "featuredRunMedia": null, "reactionVideos": [], @@ -63786,7 +63505,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 119, + "teamId": "nef788028", "time": 17690123, "featuredRunMedia": null, "reactionVideos": [], @@ -63804,7 +63523,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 18, + "teamId": "nef788323", "time": 17691600, "featuredRunMedia": null, "reactionVideos": [], @@ -63822,7 +63541,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 163, + "teamId": "nef797089", "time": 17691707, "featuredRunMedia": null, "reactionVideos": [], @@ -63840,7 +63559,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17691991, "featuredRunMedia": null, "reactionVideos": [], @@ -63858,7 +63577,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 216, + "teamId": "nef772721", "time": 17695650, "featuredRunMedia": null, "reactionVideos": [], @@ -63876,7 +63595,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17696073, "featuredRunMedia": null, "reactionVideos": [], @@ -63894,7 +63613,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17697693, "featuredRunMedia": null, "reactionVideos": [], @@ -63912,7 +63631,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 17701100, "featuredRunMedia": null, "reactionVideos": [], @@ -63930,7 +63649,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 196, + "teamId": "nef789968", "time": 17705576, "featuredRunMedia": null, "reactionVideos": [], @@ -63948,7 +63667,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17706942, "featuredRunMedia": null, "reactionVideos": [], @@ -63966,7 +63685,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 74, + "teamId": "nef788057", "time": 17709664, "featuredRunMedia": null, "reactionVideos": [], @@ -63984,7 +63703,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17712985, "featuredRunMedia": null, "reactionVideos": [], @@ -64002,7 +63721,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17713305, "featuredRunMedia": null, "reactionVideos": [], @@ -64020,7 +63739,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17717106, "featuredRunMedia": null, "reactionVideos": [], @@ -64038,7 +63757,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17719619, "featuredRunMedia": null, "reactionVideos": [], @@ -64056,7 +63775,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 17722655, "featuredRunMedia": null, "reactionVideos": [], @@ -64074,7 +63793,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 249, + "teamId": "nef795866", "time": 17722753, "featuredRunMedia": null, "reactionVideos": [], @@ -64092,7 +63811,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 81, + "teamId": "nef788421", "time": 17723972, "featuredRunMedia": null, "reactionVideos": [], @@ -64110,7 +63829,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 181, + "teamId": "nef789942", "time": 17724102, "featuredRunMedia": null, "reactionVideos": [], @@ -64128,7 +63847,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 17725541, "featuredRunMedia": null, "reactionVideos": [], @@ -64146,7 +63865,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 103, + "teamId": "nef780682", "time": 17726299, "featuredRunMedia": null, "reactionVideos": [], @@ -64164,7 +63883,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "nef790436", "time": 17728873, "featuredRunMedia": null, "reactionVideos": [], @@ -64182,7 +63901,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 17731647, "featuredRunMedia": null, "reactionVideos": [], @@ -64200,7 +63919,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "nef780668", "time": 17732086, "featuredRunMedia": null, "reactionVideos": [], @@ -64218,7 +63937,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 41, + "teamId": "nef796574", "time": 17732525, "featuredRunMedia": null, "reactionVideos": [], @@ -64236,7 +63955,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 28, + "teamId": "nef788329", "time": 17733321, "featuredRunMedia": null, "reactionVideos": [], @@ -64254,7 +63973,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17733522, "featuredRunMedia": null, "reactionVideos": [], @@ -64272,7 +63991,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17737540, "featuredRunMedia": null, "reactionVideos": [], @@ -64290,7 +64009,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 245, + "teamId": "nef799364", "time": 17740108, "featuredRunMedia": null, "reactionVideos": [], @@ -64308,7 +64027,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 17740775, "featuredRunMedia": null, "reactionVideos": [], @@ -64326,7 +64045,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 129, + "teamId": "nef788427", "time": 17742354, "featuredRunMedia": null, "reactionVideos": [], @@ -64344,7 +64063,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 122, + "teamId": "nef790437", "time": 17743302, "featuredRunMedia": null, "reactionVideos": [], @@ -64362,7 +64081,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17744599, "featuredRunMedia": null, "reactionVideos": [], @@ -64380,7 +64099,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17744840, "featuredRunMedia": null, "reactionVideos": [], @@ -64398,7 +64117,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 154, + "teamId": "nef791357", "time": 17746693, "featuredRunMedia": null, "reactionVideos": [], @@ -64416,7 +64135,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 17747206, "featuredRunMedia": null, "reactionVideos": [], @@ -64434,7 +64153,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 48, + "teamId": "nef780538", "time": 17747977, "featuredRunMedia": null, "reactionVideos": [], @@ -64452,7 +64171,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 130, + "teamId": "nef796438", "time": 17748035, "featuredRunMedia": null, "reactionVideos": [], @@ -64470,7 +64189,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 183, + "teamId": "nef788062", "time": 17748206, "featuredRunMedia": null, "reactionVideos": [], @@ -64488,7 +64207,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 210, + "teamId": "nef795863", "time": 17753222, "featuredRunMedia": null, "reactionVideos": [], @@ -64506,7 +64225,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17761379, "featuredRunMedia": null, "reactionVideos": [], @@ -64524,7 +64243,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17761534, "featuredRunMedia": null, "reactionVideos": [], @@ -64542,7 +64261,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17761547, "featuredRunMedia": null, "reactionVideos": [], @@ -64560,7 +64279,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 27, + "teamId": "nef788419", "time": 17761672, "featuredRunMedia": null, "reactionVideos": [], @@ -64578,7 +64297,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 140, + "teamId": "nef799346", "time": 17762193, "featuredRunMedia": null, "reactionVideos": [], @@ -64596,7 +64315,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 280, + "teamId": "nef799369", "time": 17764613, "featuredRunMedia": null, "reactionVideos": [], @@ -64614,7 +64333,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17764769, "featuredRunMedia": null, "reactionVideos": [], @@ -64632,7 +64351,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 122, + "teamId": "nef790437", "time": 17767553, "featuredRunMedia": null, "reactionVideos": [], @@ -64650,7 +64369,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17767806, "featuredRunMedia": null, "reactionVideos": [], @@ -64668,7 +64387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 17767999, "featuredRunMedia": null, "reactionVideos": [], @@ -64686,7 +64405,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 17768402, "featuredRunMedia": null, "reactionVideos": [], @@ -64704,7 +64423,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "nef788318", "time": 17769148, "featuredRunMedia": null, "reactionVideos": [], @@ -64722,7 +64441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 177, + "teamId": "nef799366", "time": 17771169, "featuredRunMedia": null, "reactionVideos": [], @@ -64740,7 +64459,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "nef780565", "time": 17772267, "featuredRunMedia": null, "reactionVideos": [], @@ -64758,7 +64477,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 22, + "teamId": "nef788420", "time": 17773047, "featuredRunMedia": null, "reactionVideos": [], @@ -64776,7 +64495,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17773732, "featuredRunMedia": null, "reactionVideos": [], @@ -64794,7 +64513,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17775195, "featuredRunMedia": null, "reactionVideos": [], @@ -64812,7 +64531,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 50, + "teamId": "nef780568", "time": 17775928, "featuredRunMedia": null, "reactionVideos": [], @@ -64830,7 +64549,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17777035, "featuredRunMedia": null, "reactionVideos": [], @@ -64848,7 +64567,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 19, + "teamId": "nef780674", "time": 17778966, "featuredRunMedia": null, "reactionVideos": [], @@ -64866,7 +64585,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 14, + "teamId": "nef780537", "time": 17779598, "featuredRunMedia": null, "reactionVideos": [], @@ -64884,7 +64603,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 107, + "teamId": "nef788428", "time": 17779649, "featuredRunMedia": null, "reactionVideos": [], @@ -64902,7 +64621,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17783181, "featuredRunMedia": null, "reactionVideos": [], @@ -64920,7 +64639,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17784955, "featuredRunMedia": null, "reactionVideos": [], @@ -64938,7 +64657,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17792689, "featuredRunMedia": null, "reactionVideos": [], @@ -64956,7 +64675,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "nef788329", "time": 17793528, "featuredRunMedia": null, "reactionVideos": [], @@ -64974,7 +64693,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 30, + "teamId": "nef780676", "time": 17795755, "featuredRunMedia": null, "reactionVideos": [], @@ -64992,7 +64711,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17799154, "featuredRunMedia": null, "reactionVideos": [], @@ -65010,7 +64729,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 17800214, "featuredRunMedia": null, "reactionVideos": [], @@ -65028,7 +64747,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "nef788345", "time": 17801145, "featuredRunMedia": null, "reactionVideos": [], @@ -65046,7 +64765,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17801429, "featuredRunMedia": null, "reactionVideos": [], @@ -65064,7 +64783,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17806825, "featuredRunMedia": null, "reactionVideos": [], @@ -65082,7 +64801,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 17807129, "featuredRunMedia": null, "reactionVideos": [], @@ -65100,7 +64819,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 74, + "teamId": "nef788057", "time": 17807234, "featuredRunMedia": null, "reactionVideos": [], @@ -65118,7 +64837,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17807427, "featuredRunMedia": null, "reactionVideos": [], @@ -65136,7 +64855,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 180, + "teamId": "nef795862", "time": 17807808, "featuredRunMedia": null, "reactionVideos": [], @@ -65154,7 +64873,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 17807809, "featuredRunMedia": null, "reactionVideos": [], @@ -65172,7 +64891,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17808107, "featuredRunMedia": null, "reactionVideos": [], @@ -65190,7 +64909,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 265, + "teamId": "nef780600", "time": 17808224, "featuredRunMedia": null, "reactionVideos": [], @@ -65208,7 +64927,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 220, + "teamId": "nef780684", "time": 17808582, "featuredRunMedia": null, "reactionVideos": [], @@ -65226,7 +64945,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 17808746, "featuredRunMedia": null, "reactionVideos": [], @@ -65244,7 +64963,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 81, + "teamId": "nef788421", "time": 17810801, "featuredRunMedia": null, "reactionVideos": [], @@ -65262,7 +64981,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17812024, "featuredRunMedia": null, "reactionVideos": [], @@ -65280,7 +64999,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 171, + "teamId": "nef796439", "time": 17813959, "featuredRunMedia": null, "reactionVideos": [], @@ -65298,7 +65017,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 179, + "teamId": "nef790435", "time": 17815883, "featuredRunMedia": null, "reactionVideos": [], @@ -65316,7 +65035,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 14, + "teamId": "nef780537", "time": 17816819, "featuredRunMedia": null, "reactionVideos": [], @@ -65334,7 +65053,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 191, + "teamId": "nef790140", "time": 17819580, "featuredRunMedia": null, "reactionVideos": [], @@ -65352,7 +65071,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17820581, "featuredRunMedia": null, "reactionVideos": [], @@ -65370,7 +65089,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 103, + "teamId": "nef780682", "time": 17821324, "featuredRunMedia": null, "reactionVideos": [], @@ -65388,7 +65107,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 202, + "teamId": "nef790142", "time": 17823532, "featuredRunMedia": null, "reactionVideos": [], @@ -65406,7 +65125,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17823747, "featuredRunMedia": null, "reactionVideos": [], @@ -65424,7 +65143,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17823960, "featuredRunMedia": null, "reactionVideos": [], @@ -65442,7 +65161,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 17825905, "featuredRunMedia": null, "reactionVideos": [], @@ -65460,7 +65179,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17826884, "featuredRunMedia": null, "reactionVideos": [], @@ -65478,7 +65197,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 17827279, "featuredRunMedia": null, "reactionVideos": [], @@ -65496,7 +65215,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 162, + "teamId": "nef788431", "time": 17827492, "featuredRunMedia": null, "reactionVideos": [], @@ -65514,7 +65233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 17827771, "featuredRunMedia": null, "reactionVideos": [], @@ -65532,7 +65251,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 163, + "teamId": "nef797089", "time": 17830297, "featuredRunMedia": null, "reactionVideos": [], @@ -65550,7 +65269,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 260, + "teamId": "nef797081", "time": 17831801, "featuredRunMedia": null, "reactionVideos": [], @@ -65568,7 +65287,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17833283, "featuredRunMedia": null, "reactionVideos": [], @@ -65586,7 +65305,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 62, + "teamId": "nef788064", "time": 17833629, "featuredRunMedia": null, "reactionVideos": [], @@ -65604,7 +65323,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17835133, "featuredRunMedia": null, "reactionVideos": [], @@ -65622,7 +65341,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 14, + "teamId": "nef780537", "time": 17835592, "featuredRunMedia": null, "reactionVideos": [], @@ -65640,7 +65359,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17836122, "featuredRunMedia": null, "reactionVideos": [], @@ -65658,7 +65377,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "nef780565", "time": 17836286, "featuredRunMedia": null, "reactionVideos": [], @@ -65676,7 +65395,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17836995, "featuredRunMedia": null, "reactionVideos": [], @@ -65694,7 +65413,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 200, + "teamId": "nef799344", "time": 17837631, "featuredRunMedia": null, "reactionVideos": [], @@ -65712,7 +65431,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17838755, "featuredRunMedia": null, "reactionVideos": [], @@ -65730,7 +65449,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17838997, "featuredRunMedia": null, "reactionVideos": [], @@ -65748,7 +65467,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17840455, "featuredRunMedia": null, "reactionVideos": [], @@ -65766,7 +65485,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17841835, "featuredRunMedia": null, "reactionVideos": [], @@ -65784,7 +65503,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 233, + "teamId": "nef799368", "time": 17842107, "featuredRunMedia": null, "reactionVideos": [], @@ -65802,7 +65521,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17843493, "featuredRunMedia": null, "reactionVideos": [], @@ -65820,7 +65539,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17843686, "featuredRunMedia": null, "reactionVideos": [], @@ -65838,7 +65557,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17845285, "featuredRunMedia": null, "reactionVideos": [], @@ -65856,7 +65575,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 193, + "teamId": "nef799348", "time": 17845318, "featuredRunMedia": null, "reactionVideos": [], @@ -65874,7 +65593,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 94, + "teamId": "nef772709", "time": 17845949, "featuredRunMedia": null, "reactionVideos": [], @@ -65892,7 +65611,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 189, + "teamId": "nef790072", "time": 17845951, "featuredRunMedia": null, "reactionVideos": [], @@ -65910,7 +65629,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17846117, "featuredRunMedia": null, "reactionVideos": [], @@ -65928,7 +65647,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 25, + "teamId": "nef780669", "time": 17847461, "featuredRunMedia": null, "reactionVideos": [], @@ -65946,7 +65665,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17849582, "featuredRunMedia": null, "reactionVideos": [], @@ -65964,7 +65683,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 197, + "teamId": "nef788351", "time": 17850750, "featuredRunMedia": null, "reactionVideos": [], @@ -65982,7 +65701,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 182, + "teamId": "nef790133", "time": 17852768, "featuredRunMedia": null, "reactionVideos": [], @@ -66000,7 +65719,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17854549, "featuredRunMedia": null, "reactionVideos": [], @@ -66018,7 +65737,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 49, + "teamId": "nef780673", "time": 17856429, "featuredRunMedia": null, "reactionVideos": [], @@ -66036,7 +65755,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17859151, "featuredRunMedia": null, "reactionVideos": [], @@ -66054,7 +65773,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17860069, "featuredRunMedia": null, "reactionVideos": [], @@ -66072,7 +65791,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 193, + "teamId": "nef799348", "time": 17861734, "featuredRunMedia": null, "reactionVideos": [], @@ -66090,7 +65809,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17862455, "featuredRunMedia": null, "reactionVideos": [], @@ -66108,7 +65827,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17862528, "featuredRunMedia": null, "reactionVideos": [], @@ -66126,7 +65845,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 198, + "teamId": "nef790141", "time": 17862907, "featuredRunMedia": null, "reactionVideos": [], @@ -66144,7 +65863,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 17864878, "featuredRunMedia": null, "reactionVideos": [], @@ -66162,7 +65881,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 201, + "teamId": "nef796545", "time": 17865420, "featuredRunMedia": null, "reactionVideos": [], @@ -66180,7 +65899,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 62, + "teamId": "nef788064", "time": 17866522, "featuredRunMedia": null, "reactionVideos": [], @@ -66198,7 +65917,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "nef788345", "time": 17867016, "featuredRunMedia": null, "reactionVideos": [], @@ -66216,7 +65935,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "nef788319", "time": 17870927, "featuredRunMedia": null, "reactionVideos": [], @@ -66234,7 +65953,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "nef788318", "time": 17871308, "featuredRunMedia": null, "reactionVideos": [], @@ -66252,7 +65971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 145, + "teamId": "nef780680", "time": 17871379, "featuredRunMedia": null, "reactionVideos": [], @@ -66270,7 +65989,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 161, + "teamId": "nef780678", "time": 17875475, "featuredRunMedia": null, "reactionVideos": [], @@ -66288,7 +66007,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 111, + "teamId": "nef790438", "time": 17877001, "featuredRunMedia": null, "reactionVideos": [], @@ -66306,7 +66025,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 172, + "teamId": "nef788054", "time": 17878684, "featuredRunMedia": null, "reactionVideos": [], @@ -66324,7 +66043,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 173, + "teamId": "nef799349", "time": 17878805, "featuredRunMedia": null, "reactionVideos": [], @@ -66342,7 +66061,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 17879189, "featuredRunMedia": null, "reactionVideos": [], @@ -66360,7 +66079,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 165, + "teamId": "nef788060", "time": 17879683, "featuredRunMedia": null, "reactionVideos": [], @@ -66378,7 +66097,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17881381, "featuredRunMedia": null, "reactionVideos": [], @@ -66396,7 +66115,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17881569, "featuredRunMedia": null, "reactionVideos": [], @@ -66414,7 +66133,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "nef788344", "time": 17881698, "featuredRunMedia": null, "reactionVideos": [], @@ -66432,7 +66151,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 132, + "teamId": "nef780571", "time": 17882873, "featuredRunMedia": null, "reactionVideos": [], @@ -66450,7 +66169,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 198, + "teamId": "nef790141", "time": 17886664, "featuredRunMedia": null, "reactionVideos": [], @@ -66468,7 +66187,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 203, + "teamId": "nef790134", "time": 17886998, "featuredRunMedia": null, "reactionVideos": [], @@ -66486,7 +66205,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 218, + "teamId": "nef788945", "time": 17887151, "featuredRunMedia": null, "reactionVideos": [], @@ -66504,7 +66223,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 210, + "teamId": "nef795863", "time": 17887478, "featuredRunMedia": null, "reactionVideos": [], @@ -66522,7 +66241,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17888193, "featuredRunMedia": null, "reactionVideos": [], @@ -66540,7 +66259,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 206, + "teamId": "nef799353", "time": 17888567, "featuredRunMedia": null, "reactionVideos": [], @@ -66558,7 +66277,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 17888743, "featuredRunMedia": null, "reactionVideos": [], @@ -66576,7 +66295,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 171, + "teamId": "nef796439", "time": 17888911, "featuredRunMedia": null, "reactionVideos": [], @@ -66594,7 +66313,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 202, + "teamId": "nef790142", "time": 17890811, "featuredRunMedia": null, "reactionVideos": [], @@ -66612,7 +66331,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 49, + "teamId": "nef780673", "time": 17894013, "featuredRunMedia": null, "reactionVideos": [], @@ -66630,7 +66349,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 216, + "teamId": "nef772721", "time": 17895310, "featuredRunMedia": null, "reactionVideos": [], @@ -66648,7 +66367,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 18, + "teamId": "nef788323", "time": 17895877, "featuredRunMedia": null, "reactionVideos": [], @@ -66666,7 +66385,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 17896216, "featuredRunMedia": null, "reactionVideos": [], @@ -66684,7 +66403,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17896480, "featuredRunMedia": null, "reactionVideos": [], @@ -66702,7 +66421,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17896942, "featuredRunMedia": null, "reactionVideos": [], @@ -66720,7 +66439,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 17897423, "featuredRunMedia": null, "reactionVideos": [], @@ -66738,7 +66457,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 50, + "teamId": "nef780568", "time": 17899403, "featuredRunMedia": null, "reactionVideos": [], @@ -66756,7 +66475,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 179, + "teamId": "nef790435", "time": 17899466, "featuredRunMedia": null, "reactionVideos": [], @@ -66774,7 +66493,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 193, + "teamId": "nef799348", "time": 17899675, "featuredRunMedia": null, "reactionVideos": [], @@ -66792,7 +66511,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 195, + "teamId": "nef799363", "time": 17904173, "featuredRunMedia": null, "reactionVideos": [], @@ -66810,7 +66529,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 12, + "teamId": "nef790061", "time": 17906002, "featuredRunMedia": null, "reactionVideos": [], @@ -66828,7 +66547,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 224, + "teamId": "nef772723", "time": 17907928, "featuredRunMedia": null, "reactionVideos": [], @@ -66846,7 +66565,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 253, + "teamId": "nef772717", "time": 17910530, "featuredRunMedia": null, "reactionVideos": [], @@ -66864,7 +66583,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17911016, "featuredRunMedia": null, "reactionVideos": [], @@ -66882,7 +66601,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 164, + "teamId": "nef797070", "time": 17911192, "featuredRunMedia": null, "reactionVideos": [], @@ -66900,7 +66619,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 121, + "teamId": "nef788336", "time": 17912698, "featuredRunMedia": null, "reactionVideos": [], @@ -66918,7 +66637,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 233, + "teamId": "nef799368", "time": 17913291, "featuredRunMedia": null, "reactionVideos": [], @@ -66936,7 +66655,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17913703, "featuredRunMedia": null, "reactionVideos": [], @@ -66954,7 +66673,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 49, + "teamId": "nef780673", "time": 17914099, "featuredRunMedia": null, "reactionVideos": [], @@ -66972,7 +66691,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 96, + "teamId": "nef799358", "time": 17914986, "featuredRunMedia": null, "reactionVideos": [], @@ -66990,7 +66709,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 111, + "teamId": "nef790438", "time": 17916503, "featuredRunMedia": null, "reactionVideos": [], @@ -67008,7 +66727,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 198, + "teamId": "nef790141", "time": 17917381, "featuredRunMedia": null, "reactionVideos": [], @@ -67026,7 +66745,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17917866, "featuredRunMedia": null, "reactionVideos": [], @@ -67044,7 +66763,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "nef796576", "time": 17918912, "featuredRunMedia": null, "reactionVideos": [], @@ -67062,7 +66781,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "nef788344", "time": 17919800, "featuredRunMedia": null, "reactionVideos": [], @@ -67080,7 +66799,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 52, + "teamId": "nef790039", "time": 17919844, "featuredRunMedia": null, "reactionVideos": [], @@ -67098,7 +66817,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17920157, "featuredRunMedia": null, "reactionVideos": [], @@ -67116,7 +66835,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 235, + "teamId": "nef772715", "time": 17921436, "featuredRunMedia": null, "reactionVideos": [], @@ -67134,7 +66853,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "nef788335", "time": 17921472, "featuredRunMedia": null, "reactionVideos": [], @@ -67152,7 +66871,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 113, + "teamId": "nef780569", "time": 17921474, "featuredRunMedia": null, "reactionVideos": [], @@ -67170,7 +66889,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 273, + "teamId": "nef789945", "time": 17923838, "featuredRunMedia": null, "reactionVideos": [], @@ -67188,7 +66907,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17925214, "featuredRunMedia": null, "reactionVideos": [], @@ -67206,7 +66925,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 62, + "teamId": "nef788064", "time": 17925656, "featuredRunMedia": null, "reactionVideos": [], @@ -67224,7 +66943,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17926048, "featuredRunMedia": null, "reactionVideos": [], @@ -67242,7 +66961,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17926147, "featuredRunMedia": null, "reactionVideos": [], @@ -67260,7 +66979,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 116, + "teamId": "nef799342", "time": 17926150, "featuredRunMedia": null, "reactionVideos": [], @@ -67278,7 +66997,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 229, + "teamId": "nef799350", "time": 17927460, "featuredRunMedia": null, "reactionVideos": [], @@ -67296,7 +67015,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 90, + "teamId": "nef780543", "time": 17927800, "featuredRunMedia": null, "reactionVideos": [], @@ -67314,7 +67033,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 22, + "teamId": "nef788420", "time": 17927833, "featuredRunMedia": null, "reactionVideos": [], @@ -67332,7 +67051,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 18, + "teamId": "nef788323", "time": 17928404, "featuredRunMedia": null, "reactionVideos": [], @@ -67350,7 +67069,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 17929209, "featuredRunMedia": null, "reactionVideos": [], @@ -67368,7 +67087,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 50, + "teamId": "nef780568", "time": 17930005, "featuredRunMedia": null, "reactionVideos": [], @@ -67386,7 +67105,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 64, + "teamId": "nef788352", "time": 17930196, "featuredRunMedia": null, "reactionVideos": [], @@ -67404,7 +67123,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 85, + "teamId": "nef797071", "time": 17930981, "featuredRunMedia": null, "reactionVideos": [], @@ -67422,7 +67141,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 142, + "teamId": "nef780578", "time": 17931383, "featuredRunMedia": null, "reactionVideos": [], @@ -67440,7 +67159,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 206, + "teamId": "nef799353", "time": 17931757, "featuredRunMedia": null, "reactionVideos": [], @@ -67458,7 +67177,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 99, + "teamId": "nef790043", "time": 17932802, "featuredRunMedia": null, "reactionVideos": [], @@ -67476,7 +67195,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17934263, "featuredRunMedia": null, "reactionVideos": [], @@ -67494,7 +67213,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17934298, "featuredRunMedia": null, "reactionVideos": [], @@ -67512,7 +67231,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 154, + "teamId": "nef791357", "time": 17934782, "featuredRunMedia": null, "reactionVideos": [], @@ -67530,7 +67249,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 81, + "teamId": "nef788421", "time": 17934868, "featuredRunMedia": null, "reactionVideos": [], @@ -67548,7 +67267,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 171, + "teamId": "nef796439", "time": 17935432, "featuredRunMedia": null, "reactionVideos": [], @@ -67566,7 +67285,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 270, + "teamId": "nef772716", "time": 17936327, "featuredRunMedia": null, "reactionVideos": [], @@ -67584,7 +67303,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 17936514, "featuredRunMedia": null, "reactionVideos": [], @@ -67602,7 +67321,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 117, + "teamId": "nef788350", "time": 17936729, "featuredRunMedia": null, "reactionVideos": [], @@ -67620,7 +67339,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17938259, "featuredRunMedia": null, "reactionVideos": [], @@ -67638,7 +67357,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 197, + "teamId": "nef788351", "time": 17939185, "featuredRunMedia": null, "reactionVideos": [], @@ -67656,7 +67375,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 161, + "teamId": "nef780678", "time": 17940693, "featuredRunMedia": null, "reactionVideos": [], @@ -67674,7 +67393,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 58, + "teamId": "nef790432", "time": 17941138, "featuredRunMedia": null, "reactionVideos": [], @@ -67692,7 +67411,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 49, + "teamId": "nef780673", "time": 17941340, "featuredRunMedia": null, "reactionVideos": [], @@ -67710,7 +67429,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 167, + "teamId": "nef788058", "time": 17941564, "featuredRunMedia": null, "reactionVideos": [], @@ -67728,7 +67447,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 115, + "teamId": "nef788026", "time": 17942557, "featuredRunMedia": null, "reactionVideos": [], @@ -67746,7 +67465,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17942558, "featuredRunMedia": null, "reactionVideos": [], @@ -67764,7 +67483,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 18, + "teamId": "nef788323", "time": 17946263, "featuredRunMedia": null, "reactionVideos": [], @@ -67782,7 +67501,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 109, + "teamId": "nef788326", "time": 17948647, "featuredRunMedia": null, "reactionVideos": [], @@ -67800,7 +67519,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 214, + "teamId": "nef780573", "time": 17948989, "featuredRunMedia": null, "reactionVideos": [], @@ -67818,7 +67537,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17949890, "featuredRunMedia": null, "reactionVideos": [], @@ -67836,7 +67555,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 275, + "teamId": "nef790048", "time": 17949891, "featuredRunMedia": null, "reactionVideos": [], @@ -67854,7 +67573,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17950206, "featuredRunMedia": null, "reactionVideos": [], @@ -67872,7 +67591,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 121, + "teamId": "nef788336", "time": 17950645, "featuredRunMedia": null, "reactionVideos": [], @@ -67890,7 +67609,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 244, + "teamId": "nef797093", "time": 17951040, "featuredRunMedia": null, "reactionVideos": [], @@ -67908,7 +67627,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 19, + "teamId": "nef780674", "time": 17953068, "featuredRunMedia": null, "reactionVideos": [], @@ -67926,7 +67645,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 166, + "teamId": "nef788353", "time": 17955063, "featuredRunMedia": null, "reactionVideos": [], @@ -67944,7 +67663,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 235, + "teamId": "nef772715", "time": 17955837, "featuredRunMedia": null, "reactionVideos": [], @@ -67962,7 +67681,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 62, + "teamId": "nef788064", "time": 17957664, "featuredRunMedia": null, "reactionVideos": [], @@ -67980,7 +67699,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 281, + "teamId": "nef799372", "time": 17957751, "featuredRunMedia": null, "reactionVideos": [], @@ -67998,7 +67717,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "nef780307", "time": 17959545, "featuredRunMedia": null, "reactionVideos": [], @@ -68016,7 +67735,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17960206, "featuredRunMedia": null, "reactionVideos": [], @@ -68034,7 +67753,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 166, + "teamId": "nef788353", "time": 17961904, "featuredRunMedia": null, "reactionVideos": [], @@ -68052,7 +67771,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 160, + "teamId": "nef799357", "time": 17962255, "featuredRunMedia": null, "reactionVideos": [], @@ -68070,7 +67789,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 66, + "teamId": "nef780671", "time": 17963123, "featuredRunMedia": null, "reactionVideos": [], @@ -68088,7 +67807,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 117, + "teamId": "nef788350", "time": 17963226, "featuredRunMedia": null, "reactionVideos": [], @@ -68106,7 +67825,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17963453, "featuredRunMedia": null, "reactionVideos": [], @@ -68124,7 +67843,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 76, + "teamId": "nef780566", "time": 17964020, "featuredRunMedia": null, "reactionVideos": [], @@ -68142,7 +67861,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 81, + "teamId": "nef788421", "time": 17964639, "featuredRunMedia": null, "reactionVideos": [], @@ -68160,7 +67879,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 177, + "teamId": "nef799366", "time": 17965084, "featuredRunMedia": null, "reactionVideos": [], @@ -68178,7 +67897,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 65, + "teamId": "nef790104", "time": 17965647, "featuredRunMedia": null, "reactionVideos": [], @@ -68196,7 +67915,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17966764, "featuredRunMedia": null, "reactionVideos": [], @@ -68214,7 +67933,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "nef788318", "time": 17967261, "featuredRunMedia": null, "reactionVideos": [], @@ -68232,7 +67951,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 154, + "teamId": "nef791357", "time": 17967776, "featuredRunMedia": null, "reactionVideos": [], @@ -68250,7 +67969,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 133, + "teamId": "nef788340", "time": 17968734, "featuredRunMedia": null, "reactionVideos": [], @@ -68268,7 +67987,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 7, + "teamId": "nef788325", "time": 17969568, "featuredRunMedia": null, "reactionVideos": [], @@ -68286,7 +68005,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 145, + "teamId": "nef780680", "time": 17969595, "featuredRunMedia": null, "reactionVideos": [], @@ -68304,7 +68023,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17969955, "featuredRunMedia": null, "reactionVideos": [], @@ -68322,7 +68041,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "nef780665", "time": 17970217, "featuredRunMedia": null, "reactionVideos": [], @@ -68340,7 +68059,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 200, + "teamId": "nef799344", "time": 17970506, "featuredRunMedia": null, "reactionVideos": [], @@ -68358,7 +68077,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17970671, "featuredRunMedia": null, "reactionVideos": [], @@ -68376,7 +68095,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 219, + "teamId": "nef790439", "time": 17971945, "featuredRunMedia": null, "reactionVideos": [], @@ -68394,7 +68113,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 195, + "teamId": "nef799363", "time": 17972031, "featuredRunMedia": null, "reactionVideos": [], @@ -68412,7 +68131,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17972396, "featuredRunMedia": null, "reactionVideos": [], @@ -68430,7 +68149,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 62, + "teamId": "nef788064", "time": 17972569, "featuredRunMedia": null, "reactionVideos": [], @@ -68448,7 +68167,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 135, + "teamId": "nef780679", "time": 17972609, "featuredRunMedia": null, "reactionVideos": [], @@ -68466,7 +68185,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 21, + "teamId": "nef790436", "time": 17975963, "featuredRunMedia": null, "reactionVideos": [], @@ -68484,7 +68203,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 143, + "teamId": "nef790105", "time": 17976637, "featuredRunMedia": null, "reactionVideos": [], @@ -68502,7 +68221,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 17976846, "featuredRunMedia": null, "reactionVideos": [], @@ -68520,7 +68239,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 81, + "teamId": "nef788421", "time": 17977132, "featuredRunMedia": null, "reactionVideos": [], @@ -68538,7 +68257,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17978179, "featuredRunMedia": null, "reactionVideos": [], @@ -68556,7 +68275,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 117, + "teamId": "nef788350", "time": 17978340, "featuredRunMedia": null, "reactionVideos": [], @@ -68574,7 +68293,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "nef788418", "time": 17978686, "featuredRunMedia": null, "reactionVideos": [], @@ -68592,7 +68311,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 186, + "teamId": "nef780306", "time": 17979904, "featuredRunMedia": null, "reactionVideos": [], @@ -68610,7 +68329,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 79, + "teamId": "nef788347", "time": 17980342, "featuredRunMedia": null, "reactionVideos": [], @@ -68628,7 +68347,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 182, + "teamId": "nef790133", "time": 17980418, "featuredRunMedia": null, "reactionVideos": [], @@ -68646,7 +68365,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "nef788329", "time": 17981335, "featuredRunMedia": null, "reactionVideos": [], @@ -68664,7 +68383,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 276, + "teamId": "nef795871", "time": 17981574, "featuredRunMedia": null, "reactionVideos": [], @@ -68682,7 +68401,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 140, + "teamId": "nef799346", "time": 17982064, "featuredRunMedia": null, "reactionVideos": [], @@ -68700,7 +68419,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 93, + "teamId": "nef799341", "time": 17982093, "featuredRunMedia": null, "reactionVideos": [], @@ -68718,7 +68437,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 133, + "teamId": "nef788340", "time": 17983092, "featuredRunMedia": null, "reactionVideos": [], @@ -68736,7 +68455,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "nef788345", "time": 17983480, "featuredRunMedia": null, "reactionVideos": [], @@ -68754,7 +68473,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17984282, "featuredRunMedia": null, "reactionVideos": [], @@ -68772,7 +68491,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 112, + "teamId": "nef780304", "time": 17984989, "featuredRunMedia": null, "reactionVideos": [], @@ -68790,7 +68509,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 208, + "teamId": "nef796440", "time": 17985317, "featuredRunMedia": null, "reactionVideos": [], @@ -68808,7 +68527,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 60, + "teamId": "nef797072", "time": 17985478, "featuredRunMedia": null, "reactionVideos": [], @@ -68826,7 +68545,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 264, + "teamId": "nef795865", "time": 17985870, "featuredRunMedia": null, "reactionVideos": [], @@ -68844,7 +68563,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 11, + "teamId": "nef788328", "time": 17986310, "featuredRunMedia": null, "reactionVideos": [], @@ -68862,7 +68581,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 124, + "teamId": "nef795857", "time": 17986314, "featuredRunMedia": null, "reactionVideos": [], @@ -68880,7 +68599,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17986387, "featuredRunMedia": null, "reactionVideos": [], @@ -68898,7 +68617,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 52, + "teamId": "nef790039", "time": 17986808, "featuredRunMedia": null, "reactionVideos": [], @@ -68916,7 +68635,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 152, + "teamId": "nef780683", "time": 17987723, "featuredRunMedia": null, "reactionVideos": [], @@ -68934,7 +68653,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 17988359, "featuredRunMedia": null, "reactionVideos": [], @@ -68952,7 +68671,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "nef788324", "time": 17988634, "featuredRunMedia": null, "reactionVideos": [], @@ -68970,7 +68689,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 142, + "teamId": "nef780578", "time": 17990063, "featuredRunMedia": null, "reactionVideos": [], @@ -68988,7 +68707,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 108, + "teamId": "nef772710", "time": 17990198, "featuredRunMedia": null, "reactionVideos": [], @@ -69006,7 +68725,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 4, + "teamId": "nef788418", "time": 17990520, "featuredRunMedia": null, "reactionVideos": [], @@ -69024,7 +68743,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 145, + "teamId": "nef780680", "time": 17991166, "featuredRunMedia": null, "reactionVideos": [], @@ -69042,7 +68761,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 138, + "teamId": "nef788338", "time": 17991673, "featuredRunMedia": null, "reactionVideos": [], @@ -69060,7 +68779,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "nef780541", "time": 17991897, "featuredRunMedia": null, "reactionVideos": [], @@ -69078,7 +68797,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 90, + "teamId": "nef780543", "time": 17992607, "featuredRunMedia": null, "reactionVideos": [], @@ -69096,7 +68815,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 85, + "teamId": "nef797071", "time": 17992608, "featuredRunMedia": null, "reactionVideos": [], @@ -69114,7 +68833,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 110, + "teamId": "nef780305", "time": 17992678, "featuredRunMedia": null, "reactionVideos": [], @@ -69132,7 +68851,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 140, + "teamId": "nef799346", "time": 17993742, "featuredRunMedia": null, "reactionVideos": [], @@ -69150,7 +68869,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 114, + "teamId": "nef788337", "time": 17995067, "featuredRunMedia": null, "reactionVideos": [], @@ -69168,7 +68887,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 168, + "teamId": "nef780681", "time": 17995230, "featuredRunMedia": null, "reactionVideos": [], @@ -69186,7 +68905,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 83, + "teamId": "nef788349", "time": 17995351, "featuredRunMedia": null, "reactionVideos": [], @@ -69204,7 +68923,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "nef790100", "time": 17995611, "featuredRunMedia": null, "reactionVideos": [], @@ -69222,7 +68941,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "nef788341", "time": 17995742, "featuredRunMedia": null, "reactionVideos": [], @@ -69240,7 +68959,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "nef780667", "time": 17995743, "featuredRunMedia": null, "reactionVideos": [], @@ -69258,7 +68977,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 71, + "teamId": "nef795855", "time": 17996292, "featuredRunMedia": null, "reactionVideos": [], @@ -69276,7 +68995,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 148, + "teamId": "nef797077", "time": 17998597, "featuredRunMedia": null, "reactionVideos": [], @@ -69294,7 +69013,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 194, + "teamId": "nef790135", "time": 17998614, "featuredRunMedia": null, "reactionVideos": [], @@ -69312,7 +69031,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 141, + "teamId": "nef788346", "time": 17999261, "featuredRunMedia": null, "reactionVideos": [], @@ -69330,7 +69049,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 233, + "teamId": "nef799368", "time": 17999268, "featuredRunMedia": null, "reactionVideos": [], @@ -69348,7 +69067,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 166, + "teamId": "nef788353", "time": 17999372, "featuredRunMedia": null, "reactionVideos": [], @@ -69366,7 +69085,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 150, + "teamId": "nef797076", "time": 17999721, "featuredRunMedia": null, "reactionVideos": [], @@ -69384,7 +69103,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "nef788327", "time": 17999800, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/pcmsIOI.txt b/src/cds/tests/testData/loaders/goldenData/pcmsIOI.txt index f846463ce..d8f9201f4 100644 --- a/src/cds/tests/testData/loaders/goldenData/pcmsIOI.txt +++ b/src/cds/tests/testData/loaders/goldenData/pcmsIOI.txt @@ -106,10 +106,9 @@ ], "teams": [ { - "id": 1, - "name": "Часовских Иван Михайлович (Московская область, 9 класс)", - "shortName": "Часовских Иван Михайлович (Московская область, 9 класс)", - "contestSystemId": "2847", + "id": "1141", + "name": "Иголкин Прохор Александрович (Челябинская область, 10 класс)", + "shortName": "Иголкин Прохор Александрович (Челябинская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -119,10 +118,9 @@ "customFields": {} }, { - "id": 2, - "name": "Абдуллин Гимран Маратович (Республика Татарстан, 9 класс)", - "shortName": "Абдуллин Гимран Маратович (Республика Татарстан, 9 класс)", - "contestSystemId": "2241", + "id": "1142", + "name": "Кононов Олег Михайлович (Москва, 10 класс)", + "shortName": "Кононов Олег Михайлович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -132,10 +130,9 @@ "customFields": {} }, { - "id": 3, - "name": "Степанов Антон Александрович (Москва, 11 класс)", - "shortName": "Степанов Антон Александрович (Москва, 11 класс)", - "contestSystemId": "1341", + "id": "1143", + "name": "Жучков Павел Александрович (Калужская область, 10 класс)", + "shortName": "Жучков Павел Александрович (Калужская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -145,10 +142,9 @@ "customFields": {} }, { - "id": 4, - "name": "Родионов Валерий Витальевич (Республика Татарстан, 11 класс)", - "shortName": "Родионов Валерий Витальевич (Республика Татарстан, 11 класс)", - "contestSystemId": "1350", + "id": "1144", + "name": "Горохов Дмитрий Александрович (Москва, 11 класс)", + "shortName": "Горохов Дмитрий Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -158,10 +154,9 @@ "customFields": {} }, { - "id": 5, - "name": "Грекова Дарья Сергеевна (Москва, 9 класс)", - "shortName": "Грекова Дарья Сергеевна (Москва, 9 класс)", - "contestSystemId": "1351", + "id": "1145", + "name": "Жиганов Владислав Александрович (Свердловская область, 8 класс)", + "shortName": "Жиганов Владислав Александрович (Свердловская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -171,10 +166,9 @@ "customFields": {} }, { - "id": 6, - "name": "Пискарев Иван Викторович (Москва, 10 класс)", - "shortName": "Пискарев Иван Викторович (Москва, 10 класс)", - "contestSystemId": "2453", + "id": "1146", + "name": "Трусов Дмитрий Сергеевич (Москва, 10 класс)", + "shortName": "Трусов Дмитрий Сергеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -184,10 +178,9 @@ "customFields": {} }, { - "id": 7, - "name": "Васильев Алексей Леонидович (Москва, 11 класс)", - "shortName": "Васильев Алексей Леонидович (Москва, 11 класс)", - "contestSystemId": "1156", + "id": "1147", + "name": "Блинов Артемий Евгеньевич (Красноярский край, 10 класс)", + "shortName": "Блинов Артемий Евгеньевич (Красноярский край, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -197,10 +190,9 @@ "customFields": {} }, { - "id": 8, - "name": "Костылев Глеб Олегович (Челябинская область, 11 класс)", - "shortName": "Костылев Глеб Олегович (Челябинская область, 11 класс)", - "contestSystemId": "1654", + "id": "1148", + "name": "Шатохин Фёдор Вадимович (Москва, 10 класс)", + "shortName": "Шатохин Фёдор Вадимович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -210,10 +202,9 @@ "customFields": {} }, { - "id": 9, - "name": "Бурков Илья Андреевич (Москва, 11 класс)", - "shortName": "Бурков Илья Андреевич (Москва, 11 класс)", - "contestSystemId": "1846", + "id": "1149", + "name": "Бибиков Александр Петрович (Санкт-Петербург, 10 класс)", + "shortName": "Бибиков Александр Петрович (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -223,10 +214,9 @@ "customFields": {} }, { - "id": 10, - "name": "Цой Андрей Дмитриевич (Новосибирская область, 10 класс)", - "shortName": "Цой Андрей Дмитриевич (Новосибирская область, 10 класс)", - "contestSystemId": "2048", + "id": "1150", + "name": "Резниченко Александр Дмитриевич (Москва, 11 класс)", + "shortName": "Резниченко Александр Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -236,10 +226,9 @@ "customFields": {} }, { - "id": 11, - "name": "Резниченко Александр Дмитриевич (Москва, 11 класс)", - "shortName": "Резниченко Александр Дмитриевич (Москва, 11 класс)", - "contestSystemId": "1150", + "id": "1151", + "name": "Сулейманов Карим Рамилевич (Республика Татарстан, 9 класс)", + "shortName": "Сулейманов Карим Рамилевич (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -249,10 +238,9 @@ "customFields": {} }, { - "id": 12, - "name": "Кутузов Артем Викторович (Свердловская область, 11 класс)", - "shortName": "Кутузов Артем Викторович (Свердловская область, 11 класс)", - "contestSystemId": "2349", + "id": "1152", + "name": "Губарев Александр Дмитриевич (Москва, 11 класс)", + "shortName": "Губарев Александр Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -262,10 +250,9 @@ "customFields": {} }, { - "id": 13, - "name": "Чистяков Александр Вадимович (Москва, 11 класс)", - "shortName": "Чистяков Александр Вадимович (Москва, 11 класс)", - "contestSystemId": "3245", + "id": "1153", + "name": "Зеленский Данил Олегович (Республика Саха (Якутия), 11 класс)", + "shortName": "Зеленский Данил Олегович (Республика Саха (Якутия), 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -275,10 +262,9 @@ "customFields": {} }, { - "id": 14, - "name": "Мартынов Антон Максимович (Санкт-Петербург, 8 класс)", - "shortName": "Мартынов Антон Максимович (Санкт-Петербург, 8 класс)", - "contestSystemId": "1955", + "id": "1154", + "name": "Вараксин Арсений Сергеевич (Москва, 11 класс)", + "shortName": "Вараксин Арсений Сергеевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -288,10 +274,9 @@ "customFields": {} }, { - "id": 15, - "name": "Агафонов Артём Александрович (Томская область, 11 класс)", - "shortName": "Агафонов Артём Александрович (Томская область, 11 класс)", - "contestSystemId": "2942", + "id": "1155", + "name": "Зарубин Егор Дмитриевич (Челябинская область, 10 класс)", + "shortName": "Зарубин Егор Дмитриевич (Челябинская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -301,10 +286,9 @@ "customFields": {} }, { - "id": 16, - "name": "Степанов Артём Сергеевич (Свердловская область, 11 класс)", - "shortName": "Степанов Артём Сергеевич (Свердловская область, 11 класс)", - "contestSystemId": "3151", + "id": "1156", + "name": "Васильев Алексей Леонидович (Москва, 11 класс)", + "shortName": "Васильев Алексей Леонидович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -314,10 +298,9 @@ "customFields": {} }, { - "id": 17, - "name": "Ремпель Дмитрий Алексеевич (Санкт-Петербург, 11 класс)", - "shortName": "Ремпель Дмитрий Алексеевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "1953", + "id": "1241", + "name": "Евстигнеев Георгий Дмитриевич (Москва, 11 класс)", + "shortName": "Евстигнеев Георгий Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -327,10 +310,9 @@ "customFields": {} }, { - "id": 18, - "name": "Трусов Дмитрий Сергеевич (Москва, 10 класс)", - "shortName": "Трусов Дмитрий Сергеевич (Москва, 10 класс)", - "contestSystemId": "1146", + "id": "1242", + "name": "Скороходов Андрей Ильич (Тверская область, 11 класс)", + "shortName": "Скороходов Андрей Ильич (Тверская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -340,10 +322,9 @@ "customFields": {} }, { - "id": 19, - "name": "Чернов Тимофей Ильич (Москва, 11 класс)", - "shortName": "Чернов Тимофей Ильич (Москва, 11 класс)", - "contestSystemId": "2656", + "id": "1243", + "name": "Меленцов Дмитрий Михайлович (Москва, 11 класс)", + "shortName": "Меленцов Дмитрий Михайлович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -353,10 +334,9 @@ "customFields": {} }, { - "id": 20, - "name": "Сафиуллин Азат Булатович (Республика Татарстан, 11 класс)", - "shortName": "Сафиуллин Азат Булатович (Республика Татарстан, 11 класс)", - "contestSystemId": "1342", + "id": "1244", + "name": "Зедгенизова Маргарита Дмитриевна (Новосибирская область, 9 класс)", + "shortName": "Зедгенизова Маргарита Дмитриевна (Новосибирская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -366,10 +346,9 @@ "customFields": {} }, { - "id": 21, - "name": "Жиганов Владислав Александрович (Свердловская область, 8 класс)", - "shortName": "Жиганов Владислав Александрович (Свердловская область, 8 класс)", - "contestSystemId": "1145", + "id": "1245", + "name": "Ковырзин Павел Максимович (Москва, 11 класс)", + "shortName": "Ковырзин Павел Максимович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -379,10 +358,9 @@ "customFields": {} }, { - "id": 22, - "name": "Канухин Александр Евгеньевич (Москва, 11 класс)", - "shortName": "Канухин Александр Евгеньевич (Москва, 11 класс)", - "contestSystemId": "2254", + "id": "1246", + "name": "Соболев Олег Вячеславович (Новосибирская область, 10 класс)", + "shortName": "Соболев Олег Вячеславович (Новосибирская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -392,10 +370,9 @@ "customFields": {} }, { - "id": 23, - "name": "Климчук Александр Александрович (Москва, 11 класс)", - "shortName": "Климчук Александр Александрович (Москва, 11 класс)", - "contestSystemId": "2953", + "id": "1247", + "name": "Чубий Савва Андреевич (Москва, 11 класс)", + "shortName": "Чубий Савва Андреевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -405,10 +382,9 @@ "customFields": {} }, { - "id": 24, - "name": "Яшкин Роберт Алексеевич (Ямало-Ненецкий АО, 10 класс)", - "shortName": "Яшкин Роберт Алексеевич (Ямало-Ненецкий АО, 10 класс)", - "contestSystemId": "2050", + "id": "1248", + "name": "Усманов Тимур Ринатович (Республика Татарстан, 11 класс)", + "shortName": "Усманов Тимур Ринатович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -418,10 +394,9 @@ "customFields": {} }, { - "id": 25, - "name": "Салыгин Егор Алексеевич (Москва, 10 класс)", - "shortName": "Салыгин Егор Алексеевич (Москва, 10 класс)", - "contestSystemId": "2843", + "id": "1249", + "name": "Иванов Семëн Маркович (Москва, 9 класс)", + "shortName": "Иванов Семëн Маркович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -431,10 +406,9 @@ "customFields": {} }, { - "id": 26, - "name": "Кузнецов Никифор Никитич (Москва, 11 класс)", - "shortName": "Кузнецов Никифор Никитич (Москва, 11 класс)", - "contestSystemId": "2752", + "id": "1250", + "name": "Рипенко Макар Андреевич (Республика Татарстан, 10 класс)", + "shortName": "Рипенко Макар Андреевич (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -444,10 +418,9 @@ "customFields": {} }, { - "id": 27, - "name": "Белоусько Константин Александрович (Москва, 10 класс)", - "shortName": "Белоусько Константин Александрович (Москва, 10 класс)", - "contestSystemId": "1653", + "id": "1251", + "name": "Прыгунов Ярослав Александрович (Москва, 10 класс)", + "shortName": "Прыгунов Ярослав Александрович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -457,10 +430,9 @@ "customFields": {} }, { - "id": 28, - "name": "Вильданов Руслан Юрьвич (Республика Татарстан, 11 класс)", - "shortName": "Вильданов Руслан Юрьвич (Республика Татарстан, 11 класс)", - "contestSystemId": "1650", + "id": "1252", + "name": "Тузов Михаил Олегович (Архангельская область, 10 класс)", + "shortName": "Тузов Михаил Олегович (Архангельская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -470,10 +442,9 @@ "customFields": {} }, { - "id": 29, - "name": "Кривощеков Виктор Антонович (Свердловская область, 11 класс)", - "shortName": "Кривощеков Виктор Антонович (Свердловская область, 11 класс)", - "contestSystemId": "2448", + "id": "1253", + "name": "Дрожецкий Ян Алексеевич (Москва, 10 класс)", + "shortName": "Дрожецкий Ян Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -483,10 +454,9 @@ "customFields": {} }, { - "id": 30, - "name": "Матюпатенко Максим Кириллович (Москва, 10 класс)", - "shortName": "Матюпатенко Максим Кириллович (Москва, 10 класс)", - "contestSystemId": "2654", + "id": "1254", + "name": "Степанян Георгий Арсенович (Санкт-Петербург, 10 класс)", + "shortName": "Степанян Георгий Арсенович (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -496,10 +466,9 @@ "customFields": {} }, { - "id": 31, - "name": "Пугачев Дмитрий Витальевич (Москва, 11 класс)", - "shortName": "Пугачев Дмитрий Витальевич (Москва, 11 класс)", - "contestSystemId": "2955", + "id": "1255", + "name": "Ефимов Павел Дмитриевич (Москва, 10 класс)", + "shortName": "Ефимов Павел Дмитриевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -509,10 +478,9 @@ "customFields": {} }, { - "id": 32, - "name": "Лосев Пётр Валерьевич (Москва, 9 класс)", - "shortName": "Лосев Пётр Валерьевич (Москва, 9 класс)", - "contestSystemId": "3249", + "id": "1256", + "name": "Ноздрин Ярослав Антонович (Оренбургская область, 10 класс)", + "shortName": "Ноздрин Ярослав Антонович (Оренбургская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -522,10 +490,9 @@ "customFields": {} }, { - "id": 33, - "name": "Чернышов Игнат Максимович (Москва, 10 класс)", - "shortName": "Чернышов Игнат Максимович (Москва, 10 класс)", - "contestSystemId": "2849", + "id": "1341", + "name": "Степанов Антон Александрович (Москва, 11 класс)", + "shortName": "Степанов Антон Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -535,10 +502,9 @@ "customFields": {} }, { - "id": 34, - "name": "Павлов Андрей Максимович (Оренбургская область, 10 класс)", - "shortName": "Павлов Андрей Максимович (Оренбургская область, 10 класс)", - "contestSystemId": "3043", + "id": "1342", + "name": "Сафиуллин Азат Булатович (Республика Татарстан, 11 класс)", + "shortName": "Сафиуллин Азат Булатович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -548,10 +514,9 @@ "customFields": {} }, { - "id": 35, - "name": "Морев Георгий Андреевич (Москва, 11 класс)", - "shortName": "Морев Георгий Андреевич (Москва, 11 класс)", - "contestSystemId": "1554", + "id": "1343", + "name": "Макнил Александр Дональдович (Москва, 9 класс)", + "shortName": "Макнил Александр Дональдович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -561,10 +526,9 @@ "customFields": {} }, { - "id": 36, - "name": "Пахомов Евгений Евгеньевич (Москва, 11 класс)", - "shortName": "Пахомов Евгений Евгеньевич (Москва, 11 класс)", - "contestSystemId": "2242", + "id": "1345", + "name": "Скрипник Максим Алексеевич (Москва, 10 класс)", + "shortName": "Скрипник Максим Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -574,10 +538,9 @@ "customFields": {} }, { - "id": 37, - "name": "Губарев Александр Дмитриевич (Москва, 11 класс)", - "shortName": "Губарев Александр Дмитриевич (Москва, 11 класс)", - "contestSystemId": "1152", + "id": "1346", + "name": "Солдатов Максим Игоревич (Республика Татарстан, 10 класс)", + "shortName": "Солдатов Максим Игоревич (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -587,10 +550,9 @@ "customFields": {} }, { - "id": 38, - "name": "Первутинский Роман Игоревич (Москва, 11 класс)", - "shortName": "Первутинский Роман Игоревич (Москва, 11 класс)", - "contestSystemId": "2053", + "id": "1347", + "name": "Попов Кирилл Александрович (Донецкая Народная Республика, 10 класс)", + "shortName": "Попов Кирилл Александрович (Донецкая Народная Республика, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -600,10 +562,9 @@ "customFields": {} }, { - "id": 39, - "name": "Подворный Иван Владимирович (Москва, 11 класс)", - "shortName": "Подворный Иван Владимирович (Москва, 11 класс)", - "contestSystemId": "3042", + "id": "1348", + "name": "Жерневский Михаил Константинович (Ростовская область, 10 класс)", + "shortName": "Жерневский Михаил Константинович (Ростовская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -613,10 +574,9 @@ "customFields": {} }, { - "id": 40, - "name": "Приводнов Марк Сергеевич (Новосибирская область, 7 класс)", - "shortName": "Приводнов Марк Сергеевич (Новосибирская область, 7 класс)", - "contestSystemId": "1748", + "id": "1349", + "name": "Мордакин Антон Олегович (Москва, 10 класс)", + "shortName": "Мордакин Антон Олегович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -626,10 +586,9 @@ "customFields": {} }, { - "id": 41, - "name": "Синицын Максим Кириллович (Москва, 11 класс)", - "shortName": "Синицын Максим Кириллович (Москва, 11 класс)", - "contestSystemId": "2642", + "id": "1350", + "name": "Родионов Валерий Витальевич (Республика Татарстан, 11 класс)", + "shortName": "Родионов Валерий Витальевич (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -639,10 +598,9 @@ "customFields": {} }, { - "id": 42, - "name": "Рагулин Владимир Владиславович (Москва, 11 класс)", - "shortName": "Рагулин Владимир Владиславович (Москва, 11 класс)", - "contestSystemId": "1645", + "id": "1351", + "name": "Грекова Дарья Сергеевна (Москва, 9 класс)", + "shortName": "Грекова Дарья Сергеевна (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -652,10 +610,9 @@ "customFields": {} }, { - "id": 43, - "name": "Абатуров Артём Сергеевич (Свердловская область, 11 класс)", - "shortName": "Абатуров Артём Сергеевич (Свердловская область, 11 класс)", - "contestSystemId": "2749", + "id": "1352", + "name": "Цыбань Лев Евгеньевич (Свердловская область, 8 класс)", + "shortName": "Цыбань Лев Евгеньевич (Свердловская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -665,10 +622,9 @@ "customFields": {} }, { - "id": 44, - "name": "Громак Дмитрий Алексеевич (Москва, 11 класс)", - "shortName": "Громак Дмитрий Алексеевич (Москва, 11 класс)", - "contestSystemId": "3154", + "id": "1353", + "name": "Антонова Анна Михайловна (Московская область, 10 класс)", + "shortName": "Антонова Анна Михайловна (Московская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -678,10 +634,9 @@ "customFields": {} }, { - "id": 45, - "name": "Шумов Андрей Константинович (Москва, 11 класс)", - "shortName": "Шумов Андрей Константинович (Москва, 11 класс)", - "contestSystemId": "1755", + "id": "1354", + "name": "Поливин Никита Евгеньевич (Республика Татарстан, 11 класс)", + "shortName": "Поливин Никита Евгеньевич (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -691,10 +646,9 @@ "customFields": {} }, { - "id": 46, - "name": "Душенков Сергей Сергеевич (Москва, 10 класс)", - "shortName": "Душенков Сергей Сергеевич (Москва, 10 класс)", - "contestSystemId": "2252", + "id": "1355", + "name": "Смирнов Сергей Юрьевич (Республика Марий Эл, 11 класс)", + "shortName": "Смирнов Сергей Юрьевич (Республика Марий Эл, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -704,10 +658,9 @@ "customFields": {} }, { - "id": 47, - "name": "Глушенкова Таисия Николаевна (Москва, 11 класс)", - "shortName": "Глушенкова Таисия Николаевна (Москва, 11 класс)", - "contestSystemId": "2943", + "id": "1356", + "name": "Альжанов Леонид Булатович (Санкт-Петербург, 10 класс)", + "shortName": "Альжанов Леонид Булатович (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -717,10 +670,9 @@ "customFields": {} }, { - "id": 48, - "name": "Бацын Тимофей Михайлович (Нижегородская область, 8 класс)", - "shortName": "Бацын Тимофей Михайлович (Нижегородская область, 8 класс)", - "contestSystemId": "2952", + "id": "1442", + "name": "Меликов Марат Иманович (Московская область, 11 класс)", + "shortName": "Меликов Марат Иманович (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -730,10 +682,9 @@ "customFields": {} }, { - "id": 49, - "name": "Солунов Данила Ильич (Москва, 11 класс)", - "shortName": "Солунов Данила Ильич (Москва, 11 класс)", - "contestSystemId": "3050", + "id": "1443", + "name": "Голиков Егор Георгиевич (Свердловская область, 10 класс)", + "shortName": "Голиков Егор Георгиевич (Свердловская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -743,10 +694,9 @@ "customFields": {} }, { - "id": 50, - "name": "Махлин Мирон Юрьевич (Москва, 11 класс)", - "shortName": "Махлин Мирон Юрьевич (Москва, 11 класс)", - "contestSystemId": "1450", + "id": "1444", + "name": "Ким Артём Сенгванович (Москва, 10 класс)", + "shortName": "Ким Артём Сенгванович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -756,10 +706,9 @@ "customFields": {} }, { - "id": 51, - "name": "Коптилин Ратибор Ильич (Новосибирская область, 9 класс)", - "shortName": "Коптилин Ратибор Ильич (Новосибирская область, 9 класс)", - "contestSystemId": "1547", + "id": "1445", + "name": "Витюк Антон Юрьевич (Липецкая область, 11 класс)", + "shortName": "Витюк Антон Юрьевич (Липецкая область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -769,10 +718,9 @@ "customFields": {} }, { - "id": 52, - "name": "Ижицкий Тимофей Михайлович (Севастополь, 10 класс)", - "shortName": "Ижицкий Тимофей Михайлович (Севастополь, 10 класс)", - "contestSystemId": "2346", + "id": "1446", + "name": "Беляев Даниил Александрович (Москва, 10 класс)", + "shortName": "Беляев Даниил Александрович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -782,10 +730,9 @@ "customFields": {} }, { - "id": 53, - "name": "Коптев Дмитрий Павлович (Москва, 11 класс)", - "shortName": "Коптев Дмитрий Павлович (Москва, 11 класс)", - "contestSystemId": "1643", + "id": "1447", + "name": "Сиразеев Ильяс Ильфатович (Республика Татарстан, 8 класс)", + "shortName": "Сиразеев Ильяс Ильфатович (Республика Татарстан, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -795,10 +742,9 @@ "customFields": {} }, { - "id": 54, - "name": "Важенин Юрий Алексеевич (Москва, 11 класс)", - "shortName": "Важенин Юрий Алексеевич (Москва, 11 класс)", - "contestSystemId": "2155", + "id": "1448", + "name": "Понкратов Александр Антонович (Москва, 11 класс)", + "shortName": "Понкратов Александр Антонович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -808,10 +754,9 @@ "customFields": {} }, { - "id": 55, - "name": "Насретдинов Амир Алмазович (Москва, 10 класс)", - "shortName": "Насретдинов Амир Алмазович (Москва, 10 класс)", - "contestSystemId": "2350", + "id": "1449", + "name": "Хуснуллин Асгат Халитович (Республика Татарстан, 11 класс)", + "shortName": "Хуснуллин Асгат Халитович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -821,10 +766,9 @@ "customFields": {} }, { - "id": 56, - "name": "Кожевников Антон Андреевич (Ростовская область, 11 класс)", - "shortName": "Кожевников Антон Андреевич (Ростовская область, 11 класс)", - "contestSystemId": "2956", + "id": "1450", + "name": "Махлин Мирон Юрьевич (Москва, 11 класс)", + "shortName": "Махлин Мирон Юрьевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -834,10 +778,9 @@ "customFields": {} }, { - "id": 57, - "name": "Герасиков Владимир Евгеньевич (Челябинская область, 10 класс)", - "shortName": "Герасиков Владимир Евгеньевич (Челябинская область, 10 класс)", - "contestSystemId": "2450", + "id": "1451", + "name": "Бычков Илья Игоревич (Липецкая область, 10 класс)", + "shortName": "Бычков Илья Игоревич (Липецкая область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -847,10 +790,9 @@ "customFields": {} }, { - "id": 58, - "name": "Пакканен Мария Александровна (Республика Татарстан, 11 класс)", - "shortName": "Пакканен Мария Александровна (Республика Татарстан, 11 класс)", - "contestSystemId": "3145", + "id": "1452", + "name": "Зырянова Ольга Олеговна (Москва, 9 класс)", + "shortName": "Зырянова Ольга Олеговна (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -860,10 +802,9 @@ "customFields": {} }, { - "id": 59, - "name": "Желтовский Владислав Николаевич (Республика Татарстан, 9 класс)", - "shortName": "Желтовский Владислав Николаевич (Республика Татарстан, 9 класс)", - "contestSystemId": "2446", + "id": "1453", + "name": "Саитов Дамир Рустемович (Республика Татарстан, 11 класс)", + "shortName": "Саитов Дамир Рустемович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -873,10 +814,9 @@ "customFields": {} }, { - "id": 60, - "name": "Евстигнеев Георгий Дмитриевич (Москва, 11 класс)", - "shortName": "Евстигнеев Георгий Дмитриевич (Москва, 11 класс)", - "contestSystemId": "1241", + "id": "1454", + "name": "Кудашев Фёдор Алексеевич (Москва, 9 класс)", + "shortName": "Кудашев Фёдор Алексеевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -886,10 +826,9 @@ "customFields": {} }, { - "id": 61, - "name": "Сосунов Дмитрий Анатольевич (Москва, 11 класс)", - "shortName": "Сосунов Дмитрий Анатольевич (Москва, 11 класс)", - "contestSystemId": "2045", + "id": "1455", + "name": "Ходыкин Тимофей Владимирович (Санкт-Петербург, 9 класс)", + "shortName": "Ходыкин Тимофей Владимирович (Санкт-Петербург, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -899,10 +838,9 @@ "customFields": {} }, { - "id": 62, - "name": "Козырев Константин Владимирович (Алтайский край, 11 класс)", - "shortName": "Козырев Константин Владимирович (Алтайский край, 11 класс)", - "contestSystemId": "2049", + "id": "1456", + "name": "Гусев Григорий Андреевич (Московская область, 11 класс)", + "shortName": "Гусев Григорий Андреевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -912,10 +850,9 @@ "customFields": {} }, { - "id": 63, - "name": "Дубко Максим Денисович (Москва, 10 класс)", - "shortName": "Дубко Максим Денисович (Москва, 10 класс)", - "contestSystemId": "3243", + "id": "1541", + "name": "Коновалов Ярослав Дмитриевич (Свердловская область, 9 класс)", + "shortName": "Коновалов Ярослав Дмитриевич (Свердловская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -925,10 +862,9 @@ "customFields": {} }, { - "id": 64, - "name": "Даминов Камиль Рамзилевич (Москва, 10 класс)", - "shortName": "Даминов Камиль Рамзилевич (Москва, 10 класс)", - "contestSystemId": "1647", + "id": "1542", + "name": "Колеров Роман Антонович (Москва, 8 класс)", + "shortName": "Колеров Роман Антонович (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -938,10 +874,9 @@ "customFields": {} }, { - "id": 65, - "name": "Казенин Владимир Юрьевич (Новгородская область, 11 класс)", - "shortName": "Казенин Владимир Юрьевич (Новгородская область, 11 класс)", - "contestSystemId": "2746", + "id": "1543", + "name": "Ермолов Егор Владимирович (Липецкая область, 11 класс)", + "shortName": "Ермолов Егор Владимирович (Липецкая область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -951,10 +886,9 @@ "customFields": {} }, { - "id": 66, - "name": "Чекардов Михаил Романович (Республика Татарстан, 11 класс)", - "shortName": "Чекардов Михаил Романович (Республика Татарстан, 11 класс)", - "contestSystemId": "2550", + "id": "1544", + "name": "Сарапкин Артём Александрович (Москва, 9 класс)", + "shortName": "Сарапкин Артём Александрович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -964,10 +898,9 @@ "customFields": {} }, { - "id": 67, - "name": "Вараксин Арсений Сергеевич (Москва, 11 класс)", - "shortName": "Вараксин Арсений Сергеевич (Москва, 11 класс)", - "contestSystemId": "1154", + "id": "1545", + "name": "Скобелев Никита Романович (Камчатский край, 11 класс)", + "shortName": "Скобелев Никита Романович (Камчатский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -977,10 +910,9 @@ "customFields": {} }, { - "id": 68, - "name": "Устименко Глеб Витальевич (Москва, 10 класс)", - "shortName": "Устименко Глеб Витальевич (Москва, 10 класс)", - "contestSystemId": "2644", + "id": "1546", + "name": "Алексеев Станислав Михайлович (Москва, 11 класс)", + "shortName": "Алексеев Станислав Михайлович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -990,10 +922,9 @@ "customFields": {} }, { - "id": 69, - "name": "Черепанов Георгий Дмитриевич (Вологодская область, 10 класс)", - "shortName": "Черепанов Георгий Дмитриевич (Вологодская область, 10 класс)", - "contestSystemId": "1951", + "id": "1547", + "name": "Коптилин Ратибор Ильич (Новосибирская область, 9 класс)", + "shortName": "Коптилин Ратибор Ильич (Новосибирская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1003,10 +934,9 @@ "customFields": {} }, { - "id": 70, - "name": "Хо Данг Зунг - (Москва, 10 класс)", - "shortName": "Хо Данг Зунг - (Москва, 10 класс)", - "contestSystemId": "3253", + "id": "1548", + "name": "Иванов Нил Алексеевич (Москва, 9 класс)", + "shortName": "Иванов Нил Алексеевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1016,10 +946,9 @@ "customFields": {} }, { - "id": 71, - "name": "Звездин Владимир Сергеевич (Челябинская область, 8 класс)", - "shortName": "Звездин Владимир Сергеевич (Челябинская область, 8 класс)", - "contestSystemId": "1751", + "id": "1549", + "name": "Скобелин Павел Константинович (Свердловская область, 11 класс)", + "shortName": "Скобелин Павел Константинович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1029,10 +958,9 @@ "customFields": {} }, { - "id": 72, - "name": "Альмиев Карим Фанурович (Республика Татарстан, 8 класс)", - "shortName": "Альмиев Карим Фанурович (Республика Татарстан, 8 класс)", - "contestSystemId": "2542", + "id": "1550", + "name": "Малышев Игорь Вадимович (Москва, 9 класс)", + "shortName": "Малышев Игорь Вадимович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1042,10 +970,9 @@ "customFields": {} }, { - "id": 73, - "name": "Клигунов Кирилл Дмитриевич (Москва, 11 класс)", - "shortName": "Клигунов Кирилл Дмитриевич (Москва, 11 класс)", - "contestSystemId": "3144", + "id": "1551", + "name": "Казанцев Владислав Игоревич (Тюменская область, 11 класс)", + "shortName": "Казанцев Владислав Игоревич (Тюменская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1055,10 +982,9 @@ "customFields": {} }, { - "id": 74, - "name": "Жукова Елизавета Владиславовна (Москва, 10 класс)", - "shortName": "Жукова Елизавета Владиславовна (Москва, 10 класс)", - "contestSystemId": "2047", + "id": "1552", + "name": "Дмитриев Максим Вячеславович (Москва, 11 класс)", + "shortName": "Дмитриев Максим Вячеславович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1068,10 +994,9 @@ "customFields": {} }, { - "id": 75, - "name": "Ныйкин Антон Игоревич (Москва, 10 класс)", - "shortName": "Ныйкин Антон Игоревич (Москва, 10 класс)", - "contestSystemId": "2443", + "id": "1553", + "name": "Пашков Дмитрий Денисович (Ханты-Мансийский АО, 10 класс)", + "shortName": "Пашков Дмитрий Денисович (Ханты-Мансийский АО, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1081,10 +1006,9 @@ "customFields": {} }, { - "id": 76, - "name": "Данилов Никита Игоревич (Москва, 8 класс)", - "shortName": "Данилов Никита Игоревич (Москва, 8 класс)", - "contestSystemId": "2549", + "id": "1554", + "name": "Морев Георгий Андреевич (Москва, 11 класс)", + "shortName": "Морев Георгий Андреевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1094,10 +1018,9 @@ "customFields": {} }, { - "id": 77, - "name": "Солдатов Максим Игоревич (Республика Татарстан, 10 класс)", - "shortName": "Солдатов Максим Игоревич (Республика Татарстан, 10 класс)", - "contestSystemId": "1346", + "id": "1555", + "name": "Юлин Егор Романович (Нижегородская область, 11 класс)", + "shortName": "Юлин Егор Романович (Нижегородская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1107,10 +1030,9 @@ "customFields": {} }, { - "id": 78, - "name": "Сапрунов Егор Сергеевич (Санкт-Петербург, 10 класс)", - "shortName": "Сапрунов Егор Сергеевич (Санкт-Петербург, 10 класс)", - "contestSystemId": "2442", + "id": "1556", + "name": "Маевский Матвей Максимович (Москва, 9 класс)", + "shortName": "Маевский Матвей Максимович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1120,10 +1042,9 @@ "customFields": {} }, { - "id": 79, - "name": "Иванов Нил Алексеевич (Москва, 9 класс)", - "shortName": "Иванов Нил Алексеевич (Москва, 9 класс)", - "contestSystemId": "1548", + "id": "1641", + "name": "Григорьева Ирина Александровна (Челябинская область, 8 класс)", + "shortName": "Григорьева Ирина Александровна (Челябинская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1133,10 +1054,9 @@ "customFields": {} }, { - "id": 80, - "name": "Никифоров Антон Владимирович (Москва, 10 класс)", - "shortName": "Никифоров Антон Владимирович (Москва, 10 класс)", - "contestSystemId": "1848", + "id": "1642", + "name": "Макаров Михаил Игоревич (Удмуртская республика, 8 класс)", + "shortName": "Макаров Михаил Игоревич (Удмуртская республика, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1146,10 +1066,9 @@ "customFields": {} }, { - "id": 81, - "name": "Любин Михаил Владимиррович (Москва, 10 класс)", - "shortName": "Любин Михаил Владимиррович (Москва, 10 класс)", - "contestSystemId": "2447", + "id": "1643", + "name": "Коптев Дмитрий Павлович (Москва, 11 класс)", + "shortName": "Коптев Дмитрий Павлович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1159,10 +1078,9 @@ "customFields": {} }, { - "id": 82, - "name": "Черников Владислав Александрович (Москва, 9 класс)", - "shortName": "Черников Владислав Александрович (Москва, 9 класс)", - "contestSystemId": "2553", + "id": "1644", + "name": "Антропов Александр Павлович (Челябинская область, 11 класс)", + "shortName": "Антропов Александр Павлович (Челябинская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1172,10 +1090,9 @@ "customFields": {} }, { - "id": 83, - "name": "Алексеев Артём Сергеевич (Москва, 10 класс)", - "shortName": "Алексеев Артём Сергеевич (Москва, 10 класс)", - "contestSystemId": "2555", + "id": "1645", + "name": "Рагулин Владимир Владиславович (Москва, 11 класс)", + "shortName": "Рагулин Владимир Владиславович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1185,10 +1102,9 @@ "customFields": {} }, { - "id": 84, - "name": "Малышев Игорь Вадимович (Москва, 9 класс)", - "shortName": "Малышев Игорь Вадимович (Москва, 9 класс)", - "contestSystemId": "1550", + "id": "1646", + "name": "Кузнецов Иван Александрович (Санкт-Петербург, 8 класс)", + "shortName": "Кузнецов Иван Александрович (Санкт-Петербург, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1198,10 +1114,9 @@ "customFields": {} }, { - "id": 85, - "name": "Смирнов Илья Владимирович (Ярославская область, 10 класс)", - "shortName": "Смирнов Илья Владимирович (Ярославская область, 10 класс)", - "contestSystemId": "2150", + "id": "1647", + "name": "Даминов Камиль Рамзилевич (Москва, 10 класс)", + "shortName": "Даминов Камиль Рамзилевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1211,10 +1126,9 @@ "customFields": {} }, { - "id": 86, - "name": "Семенюк Ярослав Алексеевич (Москва, 9 класс)", - "shortName": "Семенюк Ярослав Алексеевич (Москва, 9 класс)", - "contestSystemId": "3251", + "id": "1648", + "name": "Макаров Дмитрий Сергеевич (Нижегородская область, 10 класс)", + "shortName": "Макаров Дмитрий Сергеевич (Нижегородская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1224,10 +1138,9 @@ "customFields": {} }, { - "id": 87, - "name": "Черный Антон Леонидович (Москва, 11 класс)", - "shortName": "Черный Антон Леонидович (Москва, 11 класс)", - "contestSystemId": "2551", + "id": "1649", + "name": "Сиомаш Иван Дмитриевич (Москва, 11 класс)", + "shortName": "Сиомаш Иван Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1237,10 +1150,9 @@ "customFields": {} }, { - "id": 88, - "name": "Кузнецов Иван Александрович (Санкт-Петербург, 8 класс)", - "shortName": "Кузнецов Иван Александрович (Санкт-Петербург, 8 класс)", - "contestSystemId": "1646", + "id": "1650", + "name": "Вильданов Руслан Юрьвич (Республика Татарстан, 11 класс)", + "shortName": "Вильданов Руслан Юрьвич (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1250,10 +1162,9 @@ "customFields": {} }, { - "id": 89, - "name": "Орехов Савва Дмитриевич (Москва, 11 класс)", - "shortName": "Орехов Савва Дмитриевич (Москва, 11 класс)", - "contestSystemId": "2652", + "id": "1651", + "name": "Загоровский Владимир Витальевич (Московская область, 9 класс)", + "shortName": "Загоровский Владимир Витальевич (Московская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1263,10 +1174,9 @@ "customFields": {} }, { - "id": 90, - "name": "Каримов Ренат Айратович (Республика Татарстан, 10 класс)", - "shortName": "Каримов Ренат Айратович (Республика Татарстан, 10 класс)", - "contestSystemId": "2850", + "id": "1652", + "name": "Суслов Максим Кириллович (Санкт-Петербург, 11 класс)", + "shortName": "Суслов Максим Кириллович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1276,10 +1186,9 @@ "customFields": {} }, { - "id": 91, - "name": "Макнил Александр Дональдович (Москва, 9 класс)", - "shortName": "Макнил Александр Дональдович (Москва, 9 класс)", - "contestSystemId": "1343", + "id": "1653", + "name": "Белоусько Константин Александрович (Москва, 10 класс)", + "shortName": "Белоусько Константин Александрович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1289,10 +1198,9 @@ "customFields": {} }, { - "id": 92, - "name": "Иголкин Прохор Александрович (Челябинская область, 10 класс)", - "shortName": "Иголкин Прохор Александрович (Челябинская область, 10 класс)", - "contestSystemId": "1141", + "id": "1654", + "name": "Костылев Глеб Олегович (Челябинская область, 11 класс)", + "shortName": "Костылев Глеб Олегович (Челябинская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1302,10 +1210,9 @@ "customFields": {} }, { - "id": 93, - "name": "Кривов Георгий Алексеевич (Удмуртская республика, 9 класс)", - "shortName": "Кривов Георгий Алексеевич (Удмуртская республика, 9 класс)", - "contestSystemId": "2454", + "id": "1655", + "name": "Авдеев Дмитрий Евгеньевич (Москва, 10 класс)", + "shortName": "Авдеев Дмитрий Евгеньевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1315,10 +1222,9 @@ "customFields": {} }, { - "id": 94, - "name": "Голубов Никита Михайлович (Москва, 8 класс)", - "shortName": "Голубов Никита Михайлович (Москва, 8 класс)", - "contestSystemId": "2744", + "id": "1656", + "name": "Цыганов Пётр Игоревич (Республика Крым, 11 класс)", + "shortName": "Цыганов Пётр Игоревич (Республика Крым, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1328,10 +1234,9 @@ "customFields": {} }, { - "id": 95, - "name": "Саляхов Марк Олегович (Москва, 8 класс)", - "shortName": "Саляхов Марк Олегович (Москва, 8 класс)", - "contestSystemId": "3255", + "id": "1741", + "name": "Вежновец Александр Игоревич (Москва, 9 класс)", + "shortName": "Вежновец Александр Игоревич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1341,10 +1246,9 @@ "customFields": {} }, { - "id": 96, - "name": "Заварин Александр Сергеевич (Москва, 11 класс)", - "shortName": "Заварин Александр Сергеевич (Москва, 11 класс)", - "contestSystemId": "2742", + "id": "1742", + "name": "Лесник Георгий Алексеевич (Санкт-Петербург, 11 класс)", + "shortName": "Лесник Георгий Алексеевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1354,10 +1258,9 @@ "customFields": {} }, { - "id": 97, - "name": "Тузов Михаил Олегович (Архангельская область, 10 класс)", - "shortName": "Тузов Михаил Олегович (Архангельская область, 10 класс)", - "contestSystemId": "1252", + "id": "1743", + "name": "Сушин Александр Сергеевич (Московская область, 11 класс)", + "shortName": "Сушин Александр Сергеевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1367,10 +1270,9 @@ "customFields": {} }, { - "id": 98, - "name": "Цой Пётр Павлович (Санкт-Петербург, 10 класс)", - "shortName": "Цой Пётр Павлович (Санкт-Петербург, 10 класс)", - "contestSystemId": "2251", + "id": "1744", + "name": "Гринев Тихон Игоревич (Санкт-Петербург, 10 класс)", + "shortName": "Гринев Тихон Игоревич (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1380,10 +1282,9 @@ "customFields": {} }, { - "id": 99, - "name": "Сергиенко Дмитрий Александрович (Москва, 11 класс)", - "shortName": "Сергиенко Дмитрий Александрович (Москва, 11 класс)", - "contestSystemId": "2248", + "id": "1745", + "name": "Товстыга Дарья Сергеевна (Курганская область, 11 класс)", + "shortName": "Товстыга Дарья Сергеевна (Курганская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1393,10 +1294,9 @@ "customFields": {} }, { - "id": 100, - "name": "Порхунов Арсений Вячеславович (Москва, 10 класс)", - "shortName": "Порхунов Арсений Вячеславович (Москва, 10 класс)", - "contestSystemId": "2947", + "id": "1746", + "name": "Титов Никита Денисович (Санкт-Петербург, 11 класс)", + "shortName": "Титов Никита Денисович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1406,10 +1306,9 @@ "customFields": {} }, { - "id": 101, - "name": "Шевнин Даниил Михайлович (Ставропольский край, 11 класс)", - "shortName": "Шевнин Даниил Михайлович (Ставропольский край, 11 класс)", - "contestSystemId": "2343", + "id": "1747", + "name": "Бугрышев Михаил Андреевич (Москва, 10 класс)", + "shortName": "Бугрышев Михаил Андреевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1419,10 +1318,9 @@ "customFields": {} }, { - "id": 102, - "name": "Ноздрин Ярослав Антонович (Оренбургская область, 10 класс)", - "shortName": "Ноздрин Ярослав Антонович (Оренбургская область, 10 класс)", - "contestSystemId": "1256", + "id": "1748", + "name": "Приводнов Марк Сергеевич (Новосибирская область, 7 класс)", + "shortName": "Приводнов Марк Сергеевич (Новосибирская область, 7 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1432,10 +1330,9 @@ "customFields": {} }, { - "id": 103, - "name": "Сильвестров Василий Алексеевич (Москва, 11 класс)", - "shortName": "Сильвестров Василий Алексеевич (Москва, 11 класс)", - "contestSystemId": "1948", + "id": "1749", + "name": "Фешин Дмитрий Витальевич (Московская область, 11 класс)", + "shortName": "Фешин Дмитрий Витальевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1445,10 +1342,9 @@ "customFields": {} }, { - "id": 104, - "name": "Шкулева Ксения Романовна (Москва, 10 класс)", - "shortName": "Шкулева Ксения Романовна (Москва, 10 класс)", - "contestSystemId": "2754", + "id": "1750", + "name": "Давыденко Тарас Николаевич (Калиниградская область, 9 класс)", + "shortName": "Давыденко Тарас Николаевич (Калиниградская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1458,10 +1354,9 @@ "customFields": {} }, { - "id": 105, - "name": "Зуев Николай Константинович (Москва, 11 класс)", - "shortName": "Зуев Николай Константинович (Москва, 11 класс)", - "contestSystemId": "1942", + "id": "1751", + "name": "Звездин Владимир Сергеевич (Челябинская область, 8 класс)", + "shortName": "Звездин Владимир Сергеевич (Челябинская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1471,10 +1366,9 @@ "customFields": {} }, { - "id": 106, - "name": "Мизев Андрей Алексеевич (Пермский край, 9 класс)", - "shortName": "Мизев Андрей Алексеевич (Пермский край, 9 класс)", - "contestSystemId": "2753", + "id": "1752", + "name": "Малин Яков Андреевич (Свердловская область, 11 класс)", + "shortName": "Малин Яков Андреевич (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1484,10 +1378,9 @@ "customFields": {} }, { - "id": 107, - "name": "Серебренников Дан Никитич (Московская область, 11 класс)", - "shortName": "Серебренников Дан Никитич (Московская область, 11 класс)", - "contestSystemId": "1952", + "id": "1753", + "name": "Пономарев Иван Вячеславович (Свердловская область, 10 класс)", + "shortName": "Пономарев Иван Вячеславович (Свердловская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1497,10 +1390,9 @@ "customFields": {} }, { - "id": 108, - "name": "Титов Никита Денисович (Санкт-Петербург, 11 класс)", - "shortName": "Титов Никита Денисович (Санкт-Петербург, 11 класс)", - "contestSystemId": "1746", + "id": "1754", + "name": "Шевкопляс Максим Евгеньевич (Санкт-Петербург, 10 класс)", + "shortName": "Шевкопляс Максим Евгеньевич (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1510,10 +1402,9 @@ "customFields": {} }, { - "id": 109, - "name": "Трапезников Роман Дмитриевич (Республика Татарстан, 11 класс)", - "shortName": "Трапезников Роман Дмитриевич (Республика Татарстан, 11 класс)", - "contestSystemId": "2649", + "id": "1755", + "name": "Шумов Андрей Константинович (Москва, 11 класс)", + "shortName": "Шумов Андрей Константинович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1523,10 +1414,9 @@ "customFields": {} }, { - "id": 110, - "name": "Широковских Александр Сергеевич (Московская область, 11 класс)", - "shortName": "Широковских Александр Сергеевич (Московская область, 11 класс)", - "contestSystemId": "2750", + "id": "1756", + "name": "Кандрашкин Андрей Юрьевич (Республика Татарстан, 9 класс)", + "shortName": "Кандрашкин Андрей Юрьевич (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1536,10 +1426,9 @@ "customFields": {} }, { - "id": 111, - "name": "Плюснин Антон Алексеевич (Новосибирская область, 11 класс)", - "shortName": "Плюснин Антон Алексеевич (Новосибирская область, 11 класс)", - "contestSystemId": "2355", + "id": "1841", + "name": "Антонюк Вадим Юрьевич (Волгоградская область, 9 класс)", + "shortName": "Антонюк Вадим Юрьевич (Волгоградская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1549,10 +1438,9 @@ "customFields": {} }, { - "id": 112, - "name": "Ефимов Павел Дмитриевич (Москва, 10 класс)", - "shortName": "Ефимов Павел Дмитриевич (Москва, 10 класс)", - "contestSystemId": "1255", + "id": "1842", + "name": "Шубин Матвей Юрьевич (Москва, 8 класс)", + "shortName": "Шубин Матвей Юрьевич (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1562,10 +1450,9 @@ "customFields": {} }, { - "id": 113, - "name": "Скрипник Максим Алексеевич (Москва, 10 класс)", - "shortName": "Скрипник Максим Алексеевич (Москва, 10 класс)", - "contestSystemId": "1345", + "id": "1843", + "name": "Рогачков Антон Олегович (Ивановская область, 11 класс)", + "shortName": "Рогачков Антон Олегович (Ивановская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1575,10 +1462,9 @@ "customFields": {} }, { - "id": 114, - "name": "Григорьянц Даниль Денисович (Республика Татарстан, 11 класс)", - "shortName": "Григорьянц Даниль Денисович (Республика Татарстан, 11 класс)", - "contestSystemId": "2243", + "id": "1844", + "name": "Первунецких Еремей Дмитриевич (Москва, 9 класс)", + "shortName": "Первунецких Еремей Дмитриевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1588,10 +1474,9 @@ "customFields": {} }, { - "id": 115, - "name": "Ятчений Арсений Андреевич (Челябинская область, 10 класс)", - "shortName": "Ятчений Арсений Андреевич (Челябинская область, 10 класс)", - "contestSystemId": "2745", + "id": "1845", + "name": "Килин Андрей Александрович (Удмуртская республика, 11 класс)", + "shortName": "Килин Андрей Александрович (Удмуртская республика, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1601,10 +1486,9 @@ "customFields": {} }, { - "id": 116, - "name": "Лобанов Максим Павлович (Московская область, 11 класс)", - "shortName": "Лобанов Максим Павлович (Московская область, 11 класс)", - "contestSystemId": "1956", + "id": "1846", + "name": "Бурков Илья Андреевич (Москва, 11 класс)", + "shortName": "Бурков Илья Андреевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1614,10 +1498,9 @@ "customFields": {} }, { - "id": 117, - "name": "Рассказкин Александр Дмитриевич (Саратовская область, 11 класс)", - "shortName": "Рассказкин Александр Дмитриевич (Саратовская область, 11 класс)", - "contestSystemId": "3047", + "id": "1847", + "name": "Конык Егор Анатольевич (Ямало-Ненецкий АО, 11 класс)", + "shortName": "Конык Егор Анатольевич (Ямало-Ненецкий АО, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1627,10 +1510,9 @@ "customFields": {} }, { - "id": 118, - "name": "Лупильцев Георгий Андреевич (Москва, 11 класс)", - "shortName": "Лупильцев Георгий Андреевич (Москва, 11 класс)", - "contestSystemId": "2756", + "id": "1848", + "name": "Никифоров Антон Владимирович (Москва, 10 класс)", + "shortName": "Никифоров Антон Владимирович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1640,10 +1522,9 @@ "customFields": {} }, { - "id": 119, - "name": "Глазков Владислав Викторович (Москва, 11 класс)", - "shortName": "Глазков Владислав Викторович (Москва, 11 класс)", - "contestSystemId": "2041", + "id": "1849", + "name": "Гжибовский Арсений Сергеевич (Республика Карелия, 10 класс)", + "shortName": "Гжибовский Арсений Сергеевич (Республика Карелия, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1653,10 +1534,9 @@ "customFields": {} }, { - "id": 120, - "name": "Килин Андрей Александрович (Удмуртская республика, 11 класс)", - "shortName": "Килин Андрей Александрович (Удмуртская республика, 11 класс)", - "contestSystemId": "1845", + "id": "1850", + "name": "Клигунов Илья Дмитриевич (Москва, 11 класс)", + "shortName": "Клигунов Илья Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1666,10 +1546,9 @@ "customFields": {} }, { - "id": 121, - "name": "Конык Егор Анатольевич (Ямало-Ненецкий АО, 11 класс)", - "shortName": "Конык Егор Анатольевич (Ямало-Ненецкий АО, 11 класс)", - "contestSystemId": "1847", + "id": "1851", + "name": "Виноградов Илья Сергеевич (Вологодская область, 11 класс)", + "shortName": "Виноградов Илья Сергеевич (Вологодская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1679,10 +1558,9 @@ "customFields": {} }, { - "id": 122, - "name": "Ларин Иван Олегович (Москва, 11 класс)", - "shortName": "Ларин Иван Олегович (Москва, 11 класс)", - "contestSystemId": "2145", + "id": "1852", + "name": "Голов Андрей Евгеньевич (Москва, 11 класс)", + "shortName": "Голов Андрей Евгеньевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1692,10 +1570,9 @@ "customFields": {} }, { - "id": 123, - "name": "Кузнецов Степан Андреевич (Москва, 11 класс)", - "shortName": "Кузнецов Степан Андреевич (Москва, 11 класс)", - "contestSystemId": "2648", + "id": "1853", + "name": "Балабекян Андрей Александрович (Самарская область, 11 класс)", + "shortName": "Балабекян Андрей Александрович (Самарская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1705,10 +1582,9 @@ "customFields": {} }, { - "id": 124, - "name": "Степаненко Александр Олегович (Челябинская область, 11 класс)", - "shortName": "Степаненко Александр Олегович (Челябинская область, 11 класс)", - "contestSystemId": "2856", + "id": "1854", + "name": "Лежнев Владимир Владимирович (Москва, 11 класс)", + "shortName": "Лежнев Владимир Владимирович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1718,10 +1594,9 @@ "customFields": {} }, { - "id": 125, - "name": "Елисеев Владислав Антонович (Хабаровский край, 11 класс)", - "shortName": "Елисеев Владислав Антонович (Хабаровский край, 11 класс)", - "contestSystemId": "2341", + "id": "1855", + "name": "Замешаев Михаил Алексеевич (Красноярский край, 11 класс)", + "shortName": "Замешаев Михаил Алексеевич (Красноярский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1731,10 +1606,9 @@ "customFields": {} }, { - "id": 126, - "name": "Вежновец Александр Игоревич (Москва, 9 класс)", - "shortName": "Вежновец Александр Игоревич (Москва, 9 класс)", - "contestSystemId": "1741", + "id": "1856", + "name": "Сергеев Родион Владимирович (Москва, 10 класс)", + "shortName": "Сергеев Родион Владимирович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1744,10 +1618,9 @@ "customFields": {} }, { - "id": 127, - "name": "Бугрышев Михаил Андреевич (Москва, 10 класс)", - "shortName": "Бугрышев Михаил Андреевич (Москва, 10 класс)", - "contestSystemId": "1747", + "id": "1941", + "name": "Алиев Глеб Маратович (Республика Адыгея, 11 класс)", + "shortName": "Алиев Глеб Маратович (Республика Адыгея, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1757,10 +1630,9 @@ "customFields": {} }, { - "id": 128, - "name": "Ситдиков Дамир Владимирович (Республика Татарстан, 10 класс)", - "shortName": "Ситдиков Дамир Владимирович (Республика Татарстан, 10 класс)", - "contestSystemId": "2842", + "id": "1942", + "name": "Зуев Николай Константинович (Москва, 11 класс)", + "shortName": "Зуев Николай Константинович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1770,10 +1642,9 @@ "customFields": {} }, { - "id": 129, - "name": "Большаков Максим Сергеевич (Республика Татарстан, 8 класс)", - "shortName": "Большаков Максим Сергеевич (Республика Татарстан, 8 класс)", - "contestSystemId": "3143", + "id": "1943", + "name": "Егоров Тимофей Николаевич (Краснодаркий край, 9 класс)", + "shortName": "Егоров Тимофей Николаевич (Краснодаркий край, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1783,10 +1654,9 @@ "customFields": {} }, { - "id": 130, - "name": "Волков Алексей Вадимович (Москва, 10 класс)", - "shortName": "Волков Алексей Вадимович (Москва, 10 класс)", - "contestSystemId": "2043", + "id": "1944", + "name": "Кравченко Максим Юрьевич (Москва, 7 класс)", + "shortName": "Кравченко Максим Юрьевич (Москва, 7 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1796,10 +1666,9 @@ "customFields": {} }, { - "id": 131, - "name": "Шестаков Вячеслав Григорьевич (Красноярский край, 11 класс)", - "shortName": "Шестаков Вячеслав Григорьевич (Красноярский край, 11 класс)", - "contestSystemId": "2144", + "id": "1945", + "name": "Периков Михаил Александрович (Санкт-Петербург, 11 класс)", + "shortName": "Периков Михаил Александрович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1809,10 +1678,9 @@ "customFields": {} }, { - "id": 132, - "name": "Аверин Вадим Витальевич (Москва, 11 класс)", - "shortName": "Аверин Вадим Витальевич (Москва, 11 класс)", - "contestSystemId": "2256", + "id": "1946", + "name": "Баданов Чингис Юрьевич (Москва, 11 класс)", + "shortName": "Баданов Чингис Юрьевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1822,10 +1690,9 @@ "customFields": {} }, { - "id": 133, - "name": "Логинов Илья Константинович (Москва, 11 класс)", - "shortName": "Логинов Илья Константинович (Москва, 11 класс)", - "contestSystemId": "2951", + "id": "1947", + "name": "Шамсемухаметов Радмир Ранасович (Республика Татарстан, 11 класс)", + "shortName": "Шамсемухаметов Радмир Ранасович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1835,10 +1702,9 @@ "customFields": {} }, { - "id": 134, - "name": "Белецкий Иван Александрович (Московская область, 11 класс)", - "shortName": "Белецкий Иван Александрович (Московская область, 11 класс)", - "contestSystemId": "2455", + "id": "1948", + "name": "Сильвестров Василий Алексеевич (Москва, 11 класс)", + "shortName": "Сильвестров Василий Алексеевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1848,10 +1714,9 @@ "customFields": {} }, { - "id": 135, - "name": "Возмилов Георгий Павлович (Москва, 10 класс)", - "shortName": "Возмилов Георгий Павлович (Москва, 10 класс)", - "contestSystemId": "2143", + "id": "1949", + "name": "Лазо Арсений Дмитриевич (Санкт-Петербург, 11 класс)", + "shortName": "Лазо Арсений Дмитриевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1861,10 +1726,9 @@ "customFields": {} }, { - "id": 136, - "name": "Лямзин Александр Сергеевич (Москва, 9 класс)", - "shortName": "Лямзин Александр Сергеевич (Москва, 9 класс)", - "contestSystemId": "3146", + "id": "1950", + "name": "Бельских Александр Иванович (Москва, 7 класс)", + "shortName": "Бельских Александр Иванович (Москва, 7 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1874,10 +1738,9 @@ "customFields": {} }, { - "id": 137, - "name": "Бицюк Андрей Александрович (Тверская область, 11 класс)", - "shortName": "Бицюк Андрей Александрович (Тверская область, 11 класс)", - "contestSystemId": "3252", + "id": "1951", + "name": "Черепанов Георгий Дмитриевич (Вологодская область, 10 класс)", + "shortName": "Черепанов Георгий Дмитриевич (Вологодская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1887,10 +1750,9 @@ "customFields": {} }, { - "id": 138, - "name": "Рипенко Макар Андреевич (Республика Татарстан, 10 класс)", - "shortName": "Рипенко Макар Андреевич (Республика Татарстан, 10 класс)", - "contestSystemId": "1250", + "id": "1952", + "name": "Серебренников Дан Никитич (Московская область, 11 класс)", + "shortName": "Серебренников Дан Никитич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1900,10 +1762,9 @@ "customFields": {} }, { - "id": 139, - "name": "Мансурова Алина Айратовна (Московская область, 11 класс)", - "shortName": "Мансурова Алина Айратовна (Московская область, 11 класс)", - "contestSystemId": "2441", + "id": "1953", + "name": "Ремпель Дмитрий Алексеевич (Санкт-Петербург, 11 класс)", + "shortName": "Ремпель Дмитрий Алексеевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1913,10 +1774,9 @@ "customFields": {} }, { - "id": 140, - "name": "Бибиков Александр Петрович (Санкт-Петербург, 10 класс)", - "shortName": "Бибиков Александр Петрович (Санкт-Петербург, 10 класс)", - "contestSystemId": "1149", + "id": "1954", + "name": "Лузгов Тимур Сергеевич (Москва, 10 класс)", + "shortName": "Лузгов Тимур Сергеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1926,10 +1786,9 @@ "customFields": {} }, { - "id": 141, - "name": "Гришко Дмитрий Олегович (Москва, 8 класс)", - "shortName": "Гришко Дмитрий Олегович (Москва, 8 класс)", - "contestSystemId": "3241", + "id": "1955", + "name": "Мартынов Антон Максимович (Санкт-Петербург, 8 класс)", + "shortName": "Мартынов Антон Максимович (Санкт-Петербург, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1939,10 +1798,9 @@ "customFields": {} }, { - "id": 142, - "name": "Горохов Дмитрий Александрович (Москва, 11 класс)", - "shortName": "Горохов Дмитрий Александрович (Москва, 11 класс)", - "contestSystemId": "1144", + "id": "1956", + "name": "Лобанов Максим Павлович (Московская область, 11 класс)", + "shortName": "Лобанов Максим Павлович (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1952,10 +1810,9 @@ "customFields": {} }, { - "id": 143, - "name": "Прыгунов Ярослав Александрович (Москва, 10 класс)", - "shortName": "Прыгунов Ярослав Александрович (Москва, 10 класс)", - "contestSystemId": "1251", + "id": "2041", + "name": "Глазков Владислав Викторович (Москва, 11 класс)", + "shortName": "Глазков Владислав Викторович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1965,10 +1822,9 @@ "customFields": {} }, { - "id": 144, - "name": "Сергеев Родион Владимирович (Москва, 10 класс)", - "shortName": "Сергеев Родион Владимирович (Москва, 10 класс)", - "contestSystemId": "1856", + "id": "2042", + "name": "Лахтин Антон Алексеевич (Свердловская область, 11 класс)", + "shortName": "Лахтин Антон Алексеевич (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1978,10 +1834,9 @@ "customFields": {} }, { - "id": 145, - "name": "Кузьмин Клим Константинович (Республика Башкортостан, 10 класс)", - "shortName": "Кузьмин Клим Константинович (Республика Башкортостан, 10 класс)", - "contestSystemId": "2345", + "id": "2043", + "name": "Волков Алексей Вадимович (Москва, 10 класс)", + "shortName": "Волков Алексей Вадимович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -1991,10 +1846,9 @@ "customFields": {} }, { - "id": 146, - "name": "Гусев Григорий Андреевич (Московская область, 11 класс)", - "shortName": "Гусев Григорий Андреевич (Московская область, 11 класс)", - "contestSystemId": "1456", + "id": "2044", + "name": "Жилина Дарья Михайловна (Республика Бурятия, 9 класс)", + "shortName": "Жилина Дарья Михайловна (Республика Бурятия, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2004,10 +1858,9 @@ "customFields": {} }, { - "id": 147, - "name": "Лахтин Антон Алексеевич (Свердловская область, 11 класс)", - "shortName": "Лахтин Антон Алексеевич (Свердловская область, 11 класс)", - "contestSystemId": "2042", + "id": "2045", + "name": "Сосунов Дмитрий Анатольевич (Москва, 11 класс)", + "shortName": "Сосунов Дмитрий Анатольевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2017,10 +1870,9 @@ "customFields": {} }, { - "id": 148, - "name": "Сулейманов Карим Рамилевич (Республика Татарстан, 9 класс)", - "shortName": "Сулейманов Карим Рамилевич (Республика Татарстан, 9 класс)", - "contestSystemId": "1151", + "id": "2046", + "name": "Айтбаев Эркин Жакыпбекович (Сахалинская область, 9 класс)", + "shortName": "Айтбаев Эркин Жакыпбекович (Сахалинская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2030,10 +1882,9 @@ "customFields": {} }, { - "id": 149, - "name": "Поярков Андрей Алексеевич (Москва, 10 класс)", - "shortName": "Поярков Андрей Алексеевич (Москва, 10 класс)", - "contestSystemId": "2748", + "id": "2047", + "name": "Жукова Елизавета Владиславовна (Москва, 10 класс)", + "shortName": "Жукова Елизавета Владиславовна (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2043,10 +1894,9 @@ "customFields": {} }, { - "id": 150, - "name": "Егоров Антон Юрьевич (Москва, 10 класс)", - "shortName": "Егоров Антон Юрьевич (Москва, 10 класс)", - "contestSystemId": "3247", + "id": "2048", + "name": "Цой Андрей Дмитриевич (Новосибирская область, 10 класс)", + "shortName": "Цой Андрей Дмитриевич (Новосибирская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2056,10 +1906,9 @@ "customFields": {} }, { - "id": 151, - "name": "Блинов Артемий Евгеньевич (Красноярский край, 10 класс)", - "shortName": "Блинов Артемий Евгеньевич (Красноярский край, 10 класс)", - "contestSystemId": "1147", + "id": "2049", + "name": "Козырев Константин Владимирович (Алтайский край, 11 класс)", + "shortName": "Козырев Константин Владимирович (Алтайский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2069,10 +1918,9 @@ "customFields": {} }, { - "id": 152, - "name": "Дрожецкий Ян Алексеевич (Москва, 10 класс)", - "shortName": "Дрожецкий Ян Алексеевич (Москва, 10 класс)", - "contestSystemId": "1253", + "id": "2050", + "name": "Яшкин Роберт Алексеевич (Ямало-Ненецкий АО, 10 класс)", + "shortName": "Яшкин Роберт Алексеевич (Ямало-Ненецкий АО, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2082,10 +1930,9 @@ "customFields": {} }, { - "id": 153, - "name": "Фешин Дмитрий Витальевич (Московская область, 11 класс)", - "shortName": "Фешин Дмитрий Витальевич (Московская область, 11 класс)", - "contestSystemId": "1749", + "id": "2051", + "name": "Новгородцев Григорий Алексеевич (Москва, 10 класс)", + "shortName": "Новгородцев Григорий Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2095,10 +1942,9 @@ "customFields": {} }, { - "id": 154, - "name": "Шатохин Фёдор Вадимович (Москва, 10 класс)", - "shortName": "Шатохин Фёдор Вадимович (Москва, 10 класс)", - "contestSystemId": "1148", + "id": "2052", + "name": "Попов Александр Андреевич (Республика Коми, 11 класс)", + "shortName": "Попов Александр Андреевич (Республика Коми, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2108,10 +1954,9 @@ "customFields": {} }, { - "id": 155, - "name": "Соболев Олег Вячеславович (Новосибирская область, 10 класс)", - "shortName": "Соболев Олег Вячеславович (Новосибирская область, 10 класс)", - "contestSystemId": "1246", + "id": "2053", + "name": "Первутинский Роман Игоревич (Москва, 11 класс)", + "shortName": "Первутинский Роман Игоревич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2121,10 +1966,9 @@ "customFields": {} }, { - "id": 156, - "name": "Сиразеев Ильяс Ильфатович (Республика Татарстан, 8 класс)", - "shortName": "Сиразеев Ильяс Ильфатович (Республика Татарстан, 8 класс)", - "contestSystemId": "1447", + "id": "2054", + "name": "Кудряшов Алексей Андреевич (Санкт-Петербург, 10 класс)", + "shortName": "Кудряшов Алексей Андреевич (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2134,10 +1978,9 @@ "customFields": {} }, { - "id": 157, - "name": "Голиков Егор Георгиевич (Свердловская область, 10 класс)", - "shortName": "Голиков Егор Георгиевич (Свердловская область, 10 класс)", - "contestSystemId": "1443", + "id": "2055", + "name": "Голубев Владимир Александрович (Москва, 11 класс)", + "shortName": "Голубев Владимир Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2147,10 +1990,9 @@ "customFields": {} }, { - "id": 158, - "name": "Телелюхин Артем Анатольевич (Тамбовская область, 11 класс)", - "shortName": "Телелюхин Артем Анатольевич (Тамбовская область, 11 класс)", - "contestSystemId": "2154", + "id": "2056", + "name": "Кильметов Данил Булатович (Пермский край, 9 класс)", + "shortName": "Кильметов Данил Булатович (Пермский край, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2160,10 +2002,9 @@ "customFields": {} }, { - "id": 159, - "name": "Маланьин Антон Олегович (Москва, 11 класс)", - "shortName": "Маланьин Антон Олегович (Москва, 11 класс)", - "contestSystemId": "2348", + "id": "2141", + "name": "Балакин Владимир Александрович (Москва, 8 класс)", + "shortName": "Балакин Владимир Александрович (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2173,10 +2014,9 @@ "customFields": {} }, { - "id": 160, - "name": "Сиомаш Иван Дмитриевич (Москва, 11 класс)", - "shortName": "Сиомаш Иван Дмитриевич (Москва, 11 класс)", - "contestSystemId": "1649", + "id": "2142", + "name": "Балакирев Максим Витальевич (Белгородская область, 9 класс)", + "shortName": "Балакирев Максим Витальевич (Белгородская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2186,10 +2026,9 @@ "customFields": {} }, { - "id": 161, - "name": "Кравченко Максим Юрьевич (Москва, 7 класс)", - "shortName": "Кравченко Максим Юрьевич (Москва, 7 класс)", - "contestSystemId": "1944", + "id": "2143", + "name": "Возмилов Георгий Павлович (Москва, 10 класс)", + "shortName": "Возмилов Георгий Павлович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2199,10 +2038,9 @@ "customFields": {} }, { - "id": 162, - "name": "Ожегов Леонид Александрович (Пермский край, 10 класс)", - "shortName": "Ожегов Леонид Александрович (Пермский край, 10 класс)", - "contestSystemId": "2156", + "id": "2144", + "name": "Шестаков Вячеслав Григорьевич (Красноярский край, 11 класс)", + "shortName": "Шестаков Вячеслав Григорьевич (Красноярский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2212,10 +2050,9 @@ "customFields": {} }, { - "id": 163, - "name": "Кононов Олег Михайлович (Москва, 10 класс)", - "shortName": "Кононов Олег Михайлович (Москва, 10 класс)", - "contestSystemId": "1142", + "id": "2145", + "name": "Ларин Иван Олегович (Москва, 11 класс)", + "shortName": "Ларин Иван Олегович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2225,10 +2062,9 @@ "customFields": {} }, { - "id": 164, - "name": "Саитов Дамир Рустемович (Республика Татарстан, 11 класс)", - "shortName": "Саитов Дамир Рустемович (Республика Татарстан, 11 класс)", - "contestSystemId": "1453", + "id": "2146", + "name": "Разухин Александр Сергеевич (Чувашская республика, 11 класс)", + "shortName": "Разухин Александр Сергеевич (Чувашская республика, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2238,10 +2074,9 @@ "customFields": {} }, { - "id": 165, - "name": "Рогачков Антон Олегович (Ивановская область, 11 класс)", - "shortName": "Рогачков Антон Олегович (Ивановская область, 11 класс)", - "contestSystemId": "1843", + "id": "2147", + "name": "Бенца Даниил Игоревич (Москва, 11 класс)", + "shortName": "Бенца Даниил Игоревич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2251,10 +2086,9 @@ "customFields": {} }, { - "id": 166, - "name": "Девятьяров Иван Андреевич (Кировская область, 10 класс)", - "shortName": "Девятьяров Иван Андреевич (Кировская область, 10 класс)", - "contestSystemId": "2751", + "id": "2148", + "name": "Колесников Денис Олегович (Рязанская область, 11 класс)", + "shortName": "Колесников Денис Олегович (Рязанская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2264,10 +2098,9 @@ "customFields": {} }, { - "id": 167, - "name": "Антонова Анна Михайловна (Московская область, 10 класс)", - "shortName": "Антонова Анна Михайловна (Московская область, 10 класс)", - "contestSystemId": "1353", + "id": "2149", + "name": "Вертипрахов Денис Викторович (Свердловская область, 11 класс)", + "shortName": "Вертипрахов Денис Викторович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2277,10 +2110,9 @@ "customFields": {} }, { - "id": 168, - "name": "Коломиец Игорь Витальевич (Курская область, 10 класс)", - "shortName": "Коломиец Игорь Витальевич (Курская область, 10 класс)", - "contestSystemId": "2152", + "id": "2150", + "name": "Смирнов Илья Владимирович (Ярославская область, 10 класс)", + "shortName": "Смирнов Илья Владимирович (Ярославская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2290,10 +2122,9 @@ "customFields": {} }, { - "id": 169, - "name": "Ржевин Андрей Евгеньевич (Липецкая область, 10 класс)", - "shortName": "Ржевин Андрей Евгеньевич (Липецкая область, 10 класс)", - "contestSystemId": "2255", + "id": "2151", + "name": "Кунакбаев Родион Айнурович (Москва, 10 класс)", + "shortName": "Кунакбаев Родион Айнурович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2303,10 +2134,9 @@ "customFields": {} }, { - "id": 170, - "name": "Сокольников Алексей Сергеевич (Омская область, 9 класс)", - "shortName": "Сокольников Алексей Сергеевич (Омская область, 9 класс)", - "contestSystemId": "2844", + "id": "2152", + "name": "Коломиец Игорь Витальевич (Курская область, 10 класс)", + "shortName": "Коломиец Игорь Витальевич (Курская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2316,10 +2146,9 @@ "customFields": {} }, { - "id": 171, - "name": "Ермолов Егор Владимирович (Липецкая область, 11 класс)", - "shortName": "Ермолов Егор Владимирович (Липецкая область, 11 класс)", - "contestSystemId": "1543", + "id": "2153", + "name": "Паркина Ульяна Романовна (Московская область, 11 класс)", + "shortName": "Паркина Ульяна Романовна (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2329,10 +2158,9 @@ "customFields": {} }, { - "id": 172, - "name": "Антонюк Вадим Юрьевич (Волгоградская область, 9 класс)", - "shortName": "Антонюк Вадим Юрьевич (Волгоградская область, 9 класс)", - "contestSystemId": "1841", + "id": "2154", + "name": "Телелюхин Артем Анатольевич (Тамбовская область, 11 класс)", + "shortName": "Телелюхин Артем Анатольевич (Тамбовская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2342,10 +2170,9 @@ "customFields": {} }, { - "id": 173, - "name": "Ларичев Прохор Олегович (Москва, 11 класс)", - "shortName": "Ларичев Прохор Олегович (Москва, 11 класс)", - "contestSystemId": "2342", + "id": "2155", + "name": "Важенин Юрий Алексеевич (Москва, 11 класс)", + "shortName": "Важенин Юрий Алексеевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2355,10 +2182,9 @@ "customFields": {} }, { - "id": 174, - "name": "Витюк Антон Юрьевич (Липецкая область, 11 класс)", - "shortName": "Витюк Антон Юрьевич (Липецкая область, 11 класс)", - "contestSystemId": "1445", + "id": "2156", + "name": "Ожегов Леонид Александрович (Пермский край, 10 класс)", + "shortName": "Ожегов Леонид Александрович (Пермский край, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2368,10 +2194,9 @@ "customFields": {} }, { - "id": 175, - "name": "Жилина Дарья Михайловна (Республика Бурятия, 9 класс)", - "shortName": "Жилина Дарья Михайловна (Республика Бурятия, 9 класс)", - "contestSystemId": "2044", + "id": "2241", + "name": "Абдуллин Гимран Маратович (Республика Татарстан, 9 класс)", + "shortName": "Абдуллин Гимран Маратович (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2381,10 +2206,9 @@ "customFields": {} }, { - "id": 176, - "name": "Габитов Булат Радикович (Республика Татарстан, 11 класс)", - "shortName": "Габитов Булат Радикович (Республика Татарстан, 11 класс)", - "contestSystemId": "3045", + "id": "2242", + "name": "Пахомов Евгений Евгеньевич (Москва, 11 класс)", + "shortName": "Пахомов Евгений Евгеньевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2394,10 +2218,9 @@ "customFields": {} }, { - "id": 177, - "name": "Беляев Даниил Александрович (Москва, 10 класс)", - "shortName": "Беляев Даниил Александрович (Москва, 10 класс)", - "contestSystemId": "1446", + "id": "2243", + "name": "Григорьянц Даниль Денисович (Республика Татарстан, 11 класс)", + "shortName": "Григорьянц Даниль Денисович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2407,10 +2230,9 @@ "customFields": {} }, { - "id": 178, - "name": "Голубев Владимир Александрович (Москва, 11 класс)", - "shortName": "Голубев Владимир Александрович (Москва, 11 класс)", - "contestSystemId": "2055", + "id": "2244", + "name": "Степнов Кирилл Евгеньевич (Владимирская область, 11 класс)", + "shortName": "Степнов Кирилл Евгеньевич (Владимирская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2420,10 +2242,9 @@ "customFields": {} }, { - "id": 179, - "name": "Борцов Евгений Олегович (Удмуртская республика, 11 класс)", - "shortName": "Борцов Евгений Олегович (Удмуртская республика, 11 класс)", - "contestSystemId": "2643", + "id": "2245", + "name": "Кахниашвили Иоанн Зурабиевич (Федеральная территория \"Сириус\", 10 класс)", + "shortName": "Кахниашвили Иоанн Зурабиевич (Федеральная территория \"Сириус\", 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2433,10 +2254,9 @@ "customFields": {} }, { - "id": 180, - "name": "Щемеров Игорь Сергеевич (Республика Мордовия, 9 класс)", - "shortName": "Щемеров Игорь Сергеевич (Республика Мордовия, 9 класс)", - "contestSystemId": "3155", + "id": "2246", + "name": "Волков Михаил Алексеевич (Москва, 10 класс)", + "shortName": "Волков Михаил Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2446,10 +2266,9 @@ "customFields": {} }, { - "id": 181, - "name": "Карлов Николай Александрович (Московская область, 11 класс)", - "shortName": "Карлов Николай Александрович (Московская область, 11 класс)", - "contestSystemId": "2344", + "id": "2247", + "name": "Никурадзе Дмитрий Андреевич (Тульская область, 10 класс)", + "shortName": "Никурадзе Дмитрий Андреевич (Тульская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2459,10 +2278,9 @@ "customFields": {} }, { - "id": 182, - "name": "Баданов Чингис Юрьевич (Москва, 11 класс)", - "shortName": "Баданов Чингис Юрьевич (Москва, 11 класс)", - "contestSystemId": "1946", + "id": "2248", + "name": "Сергиенко Дмитрий Александрович (Москва, 11 класс)", + "shortName": "Сергиенко Дмитрий Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2472,10 +2290,9 @@ "customFields": {} }, { - "id": 183, - "name": "Шакиров Идрис Ильясович (Республика Татарстан, 9 класс)", - "shortName": "Шакиров Идрис Ильясович (Республика Татарстан, 9 класс)", - "contestSystemId": "2452", + "id": "2249", + "name": "Ставкин Матвей Александрович (Ямало-Ненецкий АО, 10 класс)", + "shortName": "Ставкин Матвей Александрович (Ямало-Ненецкий АО, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2485,10 +2302,9 @@ "customFields": {} }, { - "id": 184, - "name": "Понкратов Александр Антонович (Москва, 11 класс)", - "shortName": "Понкратов Александр Антонович (Москва, 11 класс)", - "contestSystemId": "1448", + "id": "2250", + "name": "Сомкин Артем Олегович (Москва, 11 класс)", + "shortName": "Сомкин Артем Олегович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2498,10 +2314,9 @@ "customFields": {} }, { - "id": 185, - "name": "Свирид Егор Павлович (Москва, 9 класс)", - "shortName": "Свирид Егор Павлович (Москва, 9 класс)", - "contestSystemId": "2547", + "id": "2251", + "name": "Цой Пётр Павлович (Санкт-Петербург, 10 класс)", + "shortName": "Цой Пётр Павлович (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2511,10 +2326,9 @@ "customFields": {} }, { - "id": 186, - "name": "Овчаров Иван Евгеньевич (Московская область, 10 класс)", - "shortName": "Овчаров Иван Евгеньевич (Московская область, 10 класс)", - "contestSystemId": "2646", + "id": "2252", + "name": "Душенков Сергей Сергеевич (Москва, 10 класс)", + "shortName": "Душенков Сергей Сергеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2524,10 +2338,9 @@ "customFields": {} }, { - "id": 187, - "name": "Туисов Егор Михайлович (Свердловская область, 11 класс)", - "shortName": "Туисов Егор Михайлович (Свердловская область, 11 класс)", - "contestSystemId": "2444", + "id": "2253", + "name": "Золотарев Дмитрий Алексеевич (Тюменская область, 11 класс)", + "shortName": "Золотарев Дмитрий Алексеевич (Тюменская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2537,10 +2350,9 @@ "customFields": {} }, { - "id": 188, - "name": "Титов Фёдор Александрович (Московская область, 11 класс)", - "shortName": "Титов Фёдор Александрович (Московская область, 11 класс)", - "contestSystemId": "2451", + "id": "2254", + "name": "Канухин Александр Евгеньевич (Москва, 11 класс)", + "shortName": "Канухин Александр Евгеньевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2550,10 +2362,9 @@ "customFields": {} }, { - "id": 189, - "name": "Дьяконов Сергей Андреевич (Республика Татарстан, 8 класс)", - "shortName": "Дьяконов Сергей Андреевич (Республика Татарстан, 8 класс)", - "contestSystemId": "3049", + "id": "2255", + "name": "Ржевин Андрей Евгеньевич (Липецкая область, 10 класс)", + "shortName": "Ржевин Андрей Евгеньевич (Липецкая область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2563,10 +2374,9 @@ "customFields": {} }, { - "id": 190, - "name": "Жеглов Александр Сергеевич (Воронежская область, 10 класс)", - "shortName": "Жеглов Александр Сергеевич (Воронежская область, 10 класс)", - "contestSystemId": "3053", + "id": "2256", + "name": "Аверин Вадим Витальевич (Москва, 11 класс)", + "shortName": "Аверин Вадим Витальевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2576,10 +2386,9 @@ "customFields": {} }, { - "id": 191, - "name": "Цыбань Лев Евгеньевич (Свердловская область, 8 класс)", - "shortName": "Цыбань Лев Евгеньевич (Свердловская область, 8 класс)", - "contestSystemId": "1352", + "id": "2341", + "name": "Елисеев Владислав Антонович (Хабаровский край, 11 класс)", + "shortName": "Елисеев Владислав Антонович (Хабаровский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2589,10 +2398,9 @@ "customFields": {} }, { - "id": 192, - "name": "Гжибовский Арсений Сергеевич (Республика Карелия, 10 класс)", - "shortName": "Гжибовский Арсений Сергеевич (Республика Карелия, 10 класс)", - "contestSystemId": "1849", + "id": "2342", + "name": "Ларичев Прохор Олегович (Москва, 11 класс)", + "shortName": "Ларичев Прохор Олегович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2602,10 +2410,9 @@ "customFields": {} }, { - "id": 193, - "name": "Бельских Александр Иванович (Москва, 7 класс)", - "shortName": "Бельских Александр Иванович (Москва, 7 класс)", - "contestSystemId": "1950", + "id": "2343", + "name": "Шевнин Даниил Михайлович (Ставропольский край, 11 класс)", + "shortName": "Шевнин Даниил Михайлович (Ставропольский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2615,10 +2422,9 @@ "customFields": {} }, { - "id": 194, - "name": "Лузгов Тимур Сергеевич (Москва, 10 класс)", - "shortName": "Лузгов Тимур Сергеевич (Москва, 10 класс)", - "contestSystemId": "1954", + "id": "2344", + "name": "Карлов Николай Александрович (Московская область, 11 класс)", + "shortName": "Карлов Николай Александрович (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2628,10 +2434,9 @@ "customFields": {} }, { - "id": 195, - "name": "Беляев Марк Алексеевич (Москва, 9 класс)", - "shortName": "Беляев Марк Алексеевич (Москва, 9 класс)", - "contestSystemId": "2543", + "id": "2345", + "name": "Кузьмин Клим Константинович (Республика Башкортостан, 10 класс)", + "shortName": "Кузьмин Клим Константинович (Республика Башкортостан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2641,10 +2446,9 @@ "customFields": {} }, { - "id": 196, - "name": "Маляровский Степан Александрович (Москва, 11 класс)", - "shortName": "Маляровский Степан Александрович (Москва, 11 класс)", - "contestSystemId": "3048", + "id": "2346", + "name": "Ижицкий Тимофей Михайлович (Севастополь, 10 класс)", + "shortName": "Ижицкий Тимофей Михайлович (Севастополь, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2654,10 +2458,9 @@ "customFields": {} }, { - "id": 197, - "name": "Некрасов Станислав Игоревич (Воронежская область, 11 класс)", - "shortName": "Некрасов Станислав Игоревич (Воронежская область, 11 класс)", - "contestSystemId": "3254", + "id": "2347", + "name": "Ларин Сергей Романович (Свердловская область, 11 класс)", + "shortName": "Ларин Сергей Романович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2667,10 +2470,9 @@ "customFields": {} }, { - "id": 198, - "name": "Усманов Тимур Ринатович (Республика Татарстан, 11 класс)", - "shortName": "Усманов Тимур Ринатович (Республика Татарстан, 11 класс)", - "contestSystemId": "1248", + "id": "2348", + "name": "Маланьин Антон Олегович (Москва, 11 класс)", + "shortName": "Маланьин Антон Олегович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2680,10 +2482,9 @@ "customFields": {} }, { - "id": 199, - "name": "Сарапкин Артём Александрович (Москва, 9 класс)", - "shortName": "Сарапкин Артём Александрович (Москва, 9 класс)", - "contestSystemId": "1544", + "id": "2349", + "name": "Кутузов Артем Викторович (Свердловская область, 11 класс)", + "shortName": "Кутузов Артем Викторович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2693,10 +2494,9 @@ "customFields": {} }, { - "id": 200, - "name": "Казанцев Владислав Игоревич (Тюменская область, 11 класс)", - "shortName": "Казанцев Владислав Игоревич (Тюменская область, 11 класс)", - "contestSystemId": "1551", + "id": "2350", + "name": "Насретдинов Амир Алмазович (Москва, 10 класс)", + "shortName": "Насретдинов Амир Алмазович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2706,10 +2506,9 @@ "customFields": {} }, { - "id": 201, - "name": "Виноградов Илья Сергеевич (Вологодская область, 11 класс)", - "shortName": "Виноградов Илья Сергеевич (Вологодская область, 11 класс)", - "contestSystemId": "1851", + "id": "2351", + "name": "Шварц Антон Владимирович (Санкт-Петербург, 11 класс)", + "shortName": "Шварц Антон Владимирович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2719,10 +2518,9 @@ "customFields": {} }, { - "id": 202, - "name": "Еремина Ксения Дмитриевна (Москва, 11 класс)", - "shortName": "Еремина Ксения Дмитриевна (Москва, 11 класс)", - "contestSystemId": "2541", + "id": "2352", + "name": "Юнусов Булат Наилевич (Московская область, 11 класс)", + "shortName": "Юнусов Булат Наилевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2732,10 +2530,9 @@ "customFields": {} }, { - "id": 203, - "name": "Краснов Илья Витальевич (Москва, 10 класс)", - "shortName": "Краснов Илья Витальевич (Москва, 10 класс)", - "contestSystemId": "3142", + "id": "2353", + "name": "Парнюков Даниил Дмитриевич (Санкт-Петербург, 11 класс)", + "shortName": "Парнюков Даниил Дмитриевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2745,10 +2542,9 @@ "customFields": {} }, { - "id": 204, - "name": "Равнушкин Тимофей Евгеньевич (Москва, 9 класс)", - "shortName": "Равнушкин Тимофей Евгеньевич (Москва, 9 класс)", - "contestSystemId": "2356", + "id": "2354", + "name": "Сыздыков Константин Асылханович (Москва, 10 класс)", + "shortName": "Сыздыков Константин Асылханович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2758,10 +2554,9 @@ "customFields": {} }, { - "id": 205, - "name": "Ходыкин Тимофей Владимирович (Санкт-Петербург, 9 класс)", - "shortName": "Ходыкин Тимофей Владимирович (Санкт-Петербург, 9 класс)", - "contestSystemId": "1455", + "id": "2355", + "name": "Плюснин Антон Алексеевич (Новосибирская область, 11 класс)", + "shortName": "Плюснин Антон Алексеевич (Новосибирская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2771,10 +2566,9 @@ "customFields": {} }, { - "id": 206, - "name": "Балакирев Максим Витальевич (Белгородская область, 9 класс)", - "shortName": "Балакирев Максим Витальевич (Белгородская область, 9 класс)", - "contestSystemId": "2142", + "id": "2356", + "name": "Равнушкин Тимофей Евгеньевич (Москва, 9 класс)", + "shortName": "Равнушкин Тимофей Евгеньевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2784,10 +2578,9 @@ "customFields": {} }, { - "id": 207, - "name": "Акимов Артём Михайлович (Москва, 11 класс)", - "shortName": "Акимов Артём Михайлович (Москва, 11 класс)", - "contestSystemId": "2855", + "id": "2441", + "name": "Мансурова Алина Айратовна (Московская область, 11 класс)", + "shortName": "Мансурова Алина Айратовна (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2797,10 +2590,9 @@ "customFields": {} }, { - "id": 208, - "name": "Чертан Вячеслав Александрович (Кемеровская область, 10 класс)", - "shortName": "Чертан Вячеслав Александрович (Кемеровская область, 10 класс)", - "contestSystemId": "3141", + "id": "2442", + "name": "Сапрунов Егор Сергеевич (Санкт-Петербург, 10 класс)", + "shortName": "Сапрунов Егор Сергеевич (Санкт-Петербург, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2810,10 +2602,9 @@ "customFields": {} }, { - "id": 209, - "name": "Михайлов Леонид Максимович (Санкт-Петербург, 11 класс)", - "shortName": "Михайлов Леонид Максимович (Санкт-Петербург, 11 класс)", - "contestSystemId": "2755", + "id": "2443", + "name": "Ныйкин Антон Игоревич (Москва, 10 класс)", + "shortName": "Ныйкин Антон Игоревич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2823,10 +2614,9 @@ "customFields": {} }, { - "id": 210, - "name": "Голов Андрей Евгеньевич (Москва, 11 класс)", - "shortName": "Голов Андрей Евгеньевич (Москва, 11 класс)", - "contestSystemId": "1852", + "id": "2444", + "name": "Туисов Егор Михайлович (Свердловская область, 11 класс)", + "shortName": "Туисов Егор Михайлович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2836,10 +2626,9 @@ "customFields": {} }, { - "id": 211, - "name": "Новоходский Герман Юрьевич (Приморский край, 11 класс)", - "shortName": "Новоходский Герман Юрьевич (Приморский край, 11 класс)", - "contestSystemId": "2846", + "id": "2445", + "name": "Файзуллин Андрей Рустемович (Москва, 9 класс)", + "shortName": "Файзуллин Андрей Рустемович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2849,10 +2638,9 @@ "customFields": {} }, { - "id": 212, - "name": "Парнюков Даниил Дмитриевич (Санкт-Петербург, 11 класс)", - "shortName": "Парнюков Даниил Дмитриевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "2353", + "id": "2446", + "name": "Желтовский Владислав Николаевич (Республика Татарстан, 9 класс)", + "shortName": "Желтовский Владислав Николаевич (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2862,10 +2650,9 @@ "customFields": {} }, { - "id": 213, - "name": "Мотыгуллин Карим Радикович (Республика Татарстан, 10 класс)", - "shortName": "Мотыгуллин Карим Радикович (Республика Татарстан, 10 класс)", - "contestSystemId": "2456", + "id": "2447", + "name": "Любин Михаил Владимиррович (Москва, 10 класс)", + "shortName": "Любин Михаил Владимиррович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2875,10 +2662,9 @@ "customFields": {} }, { - "id": 214, - "name": "Кудашев Фёдор Алексеевич (Москва, 9 класс)", - "shortName": "Кудашев Фёдор Алексеевич (Москва, 9 класс)", - "contestSystemId": "1454", + "id": "2448", + "name": "Кривощеков Виктор Антонович (Свердловская область, 11 класс)", + "shortName": "Кривощеков Виктор Антонович (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2888,10 +2674,9 @@ "customFields": {} }, { - "id": 215, - "name": "Воронин Григорий Алексеевич (Московская область, 11 класс)", - "shortName": "Воронин Григорий Алексеевич (Московская область, 11 класс)", - "contestSystemId": "2841", + "id": "2449", + "name": "Устименко Артём Витальевич (Москва, 8 класс)", + "shortName": "Устименко Артём Витальевич (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2901,10 +2686,9 @@ "customFields": {} }, { - "id": 216, - "name": "Пономарев Иван Вячеславович (Свердловская область, 10 класс)", - "shortName": "Пономарев Иван Вячеславович (Свердловская область, 10 класс)", - "contestSystemId": "1753", + "id": "2450", + "name": "Герасиков Владимир Евгеньевич (Челябинская область, 10 класс)", + "shortName": "Герасиков Владимир Евгеньевич (Челябинская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2914,10 +2698,9 @@ "customFields": {} }, { - "id": 217, - "name": "Куликовский Дмитрий Романович (Москва, 11 класс)", - "shortName": "Куликовский Дмитрий Романович (Москва, 11 класс)", - "contestSystemId": "3150", + "id": "2451", + "name": "Титов Фёдор Александрович (Московская область, 11 класс)", + "shortName": "Титов Фёдор Александрович (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2927,10 +2710,9 @@ "customFields": {} }, { - "id": 218, - "name": "Коновалов Ярослав Дмитриевич (Свердловская область, 9 класс)", - "shortName": "Коновалов Ярослав Дмитриевич (Свердловская область, 9 класс)", - "contestSystemId": "1541", + "id": "2452", + "name": "Шакиров Идрис Ильясович (Республика Татарстан, 9 класс)", + "shortName": "Шакиров Идрис Ильясович (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2940,10 +2722,9 @@ "customFields": {} }, { - "id": 219, - "name": "Файзуллин Андрей Рустемович (Москва, 9 класс)", - "shortName": "Файзуллин Андрей Рустемович (Москва, 9 класс)", - "contestSystemId": "2445", + "id": "2453", + "name": "Пискарев Иван Викторович (Москва, 10 класс)", + "shortName": "Пискарев Иван Викторович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2953,10 +2734,9 @@ "customFields": {} }, { - "id": 220, - "name": "Лесник Георгий Алексеевич (Санкт-Петербург, 11 класс)", - "shortName": "Лесник Георгий Алексеевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "1742", + "id": "2454", + "name": "Кривов Георгий Алексеевич (Удмуртская республика, 9 класс)", + "shortName": "Кривов Георгий Алексеевич (Удмуртская республика, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2966,10 +2746,9 @@ "customFields": {} }, { - "id": 221, - "name": "Сомкин Артем Олегович (Москва, 11 класс)", - "shortName": "Сомкин Артем Олегович (Москва, 11 класс)", - "contestSystemId": "2250", + "id": "2455", + "name": "Белецкий Иван Александрович (Московская область, 11 класс)", + "shortName": "Белецкий Иван Александрович (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2979,10 +2758,9 @@ "customFields": {} }, { - "id": 222, - "name": "Зедгенизова Маргарита Дмитриевна (Новосибирская область, 9 класс)", - "shortName": "Зедгенизова Маргарита Дмитриевна (Новосибирская область, 9 класс)", - "contestSystemId": "1244", + "id": "2456", + "name": "Мотыгуллин Карим Радикович (Республика Татарстан, 10 класс)", + "shortName": "Мотыгуллин Карим Радикович (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -2992,10 +2770,9 @@ "customFields": {} }, { - "id": 223, - "name": "Дмитриев Максим Вячеславович (Москва, 11 класс)", - "shortName": "Дмитриев Максим Вячеславович (Москва, 11 класс)", - "contestSystemId": "1552", + "id": "2541", + "name": "Еремина Ксения Дмитриевна (Москва, 11 класс)", + "shortName": "Еремина Ксения Дмитриевна (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3005,10 +2782,9 @@ "customFields": {} }, { - "id": 224, - "name": "Гринев Тихон Игоревич (Санкт-Петербург, 10 класс)", - "shortName": "Гринев Тихон Игоревич (Санкт-Петербург, 10 класс)", - "contestSystemId": "1744", + "id": "2542", + "name": "Альмиев Карим Фанурович (Республика Татарстан, 8 класс)", + "shortName": "Альмиев Карим Фанурович (Республика Татарстан, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3018,10 +2794,9 @@ "customFields": {} }, { - "id": 225, - "name": "Бессолицын Максим Андреевич (Свердловская область, 9 класс)", - "shortName": "Бессолицын Максим Андреевич (Свердловская область, 9 класс)", - "contestSystemId": "2544", + "id": "2543", + "name": "Беляев Марк Алексеевич (Москва, 9 класс)", + "shortName": "Беляев Марк Алексеевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3031,10 +2806,9 @@ "customFields": {} }, { - "id": 226, - "name": "Бурмистров Владислав Леонидович (Москва, 10 класс)", - "shortName": "Бурмистров Владислав Леонидович (Москва, 10 класс)", - "contestSystemId": "2945", + "id": "2544", + "name": "Бессолицын Максим Андреевич (Свердловская область, 9 класс)", + "shortName": "Бессолицын Максим Андреевич (Свердловская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3044,10 +2818,9 @@ "customFields": {} }, { - "id": 227, - "name": "Лежнев Владимир Владимирович (Москва, 11 класс)", - "shortName": "Лежнев Владимир Владимирович (Москва, 11 класс)", - "contestSystemId": "1854", + "id": "2545", + "name": "Чичерин Тимофей Алексеевич (Московская область, 8 класс)", + "shortName": "Чичерин Тимофей Алексеевич (Московская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3057,10 +2830,9 @@ "customFields": {} }, { - "id": 228, - "name": "Замешаев Михаил Алексеевич (Красноярский край, 11 класс)", - "shortName": "Замешаев Михаил Алексеевич (Красноярский край, 11 класс)", - "contestSystemId": "1855", + "id": "2546", + "name": "Гаврилов Максим Сергеевич (Челябинская область, 8 класс)", + "shortName": "Гаврилов Максим Сергеевич (Челябинская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3070,10 +2842,9 @@ "customFields": {} }, { - "id": 229, - "name": "Балабекян Андрей Александрович (Самарская область, 11 класс)", - "shortName": "Балабекян Андрей Александрович (Самарская область, 11 класс)", - "contestSystemId": "1853", + "id": "2547", + "name": "Свирид Егор Павлович (Москва, 9 класс)", + "shortName": "Свирид Егор Павлович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3083,10 +2854,9 @@ "customFields": {} }, { - "id": 230, - "name": "Лазо Арсений Дмитриевич (Санкт-Петербург, 11 класс)", - "shortName": "Лазо Арсений Дмитриевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "1949", + "id": "2548", + "name": "Полуэктов Никита Игоревич (Орловская область, 11 класс)", + "shortName": "Полуэктов Никита Игоревич (Орловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3096,10 +2866,9 @@ "customFields": {} }, { - "id": 231, - "name": "Юлин Егор Романович (Нижегородская область, 11 класс)", - "shortName": "Юлин Егор Романович (Нижегородская область, 11 класс)", - "contestSystemId": "1555", + "id": "2549", + "name": "Данилов Никита Игоревич (Москва, 8 класс)", + "shortName": "Данилов Никита Игоревич (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3109,10 +2878,9 @@ "customFields": {} }, { - "id": 232, - "name": "Сушин Александр Сергеевич (Московская область, 11 класс)", - "shortName": "Сушин Александр Сергеевич (Московская область, 11 класс)", - "contestSystemId": "1743", + "id": "2550", + "name": "Чекардов Михаил Романович (Республика Татарстан, 11 класс)", + "shortName": "Чекардов Михаил Романович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3122,10 +2890,9 @@ "customFields": {} }, { - "id": 233, - "name": "Шварц Антон Владимирович (Санкт-Петербург, 11 класс)", - "shortName": "Шварц Антон Владимирович (Санкт-Петербург, 11 класс)", - "contestSystemId": "2351", + "id": "2551", + "name": "Черный Антон Леонидович (Москва, 11 класс)", + "shortName": "Черный Антон Леонидович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3135,10 +2902,9 @@ "customFields": {} }, { - "id": 234, - "name": "Степанян Георгий Арсенович (Санкт-Петербург, 10 класс)", - "shortName": "Степанян Георгий Арсенович (Санкт-Петербург, 10 класс)", - "contestSystemId": "1254", + "id": "2552", + "name": "Глазков Илья Игоревич (Республика Башкортостан, 10 класс)", + "shortName": "Глазков Илья Игоревич (Республика Башкортостан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3148,10 +2914,9 @@ "customFields": {} }, { - "id": 235, - "name": "Хаев Булат Илдарович (Республика Татарстан, 10 класс)", - "shortName": "Хаев Булат Илдарович (Республика Татарстан, 10 класс)", - "contestSystemId": "3147", + "id": "2553", + "name": "Черников Владислав Александрович (Москва, 9 класс)", + "shortName": "Черников Владислав Александрович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3161,10 +2926,9 @@ "customFields": {} }, { - "id": 236, - "name": "Меленцов Дмитрий Михайлович (Москва, 11 класс)", - "shortName": "Меленцов Дмитрий Михайлович (Москва, 11 класс)", - "contestSystemId": "1243", + "id": "2554", + "name": "Сизов Артем Андреевич (Костромская область, 11 класс)", + "shortName": "Сизов Артем Андреевич (Костромская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3174,10 +2938,9 @@ "customFields": {} }, { - "id": 237, - "name": "Волков Михаил Алексеевич (Москва, 10 класс)", - "shortName": "Волков Михаил Алексеевич (Москва, 10 класс)", - "contestSystemId": "2246", + "id": "2555", + "name": "Алексеев Артём Сергеевич (Москва, 10 класс)", + "shortName": "Алексеев Артём Сергеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3187,10 +2950,9 @@ "customFields": {} }, { - "id": 238, - "name": "Кунакбаев Родион Айнурович (Москва, 10 класс)", - "shortName": "Кунакбаев Родион Айнурович (Москва, 10 класс)", - "contestSystemId": "2151", + "id": "2641", + "name": "Рысков Максим Игоревич (Санкт-Петербург, 11 класс)", + "shortName": "Рысков Максим Игоревич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3200,10 +2962,9 @@ "customFields": {} }, { - "id": 239, - "name": "Авдеев Дмитрий Евгеньевич (Москва, 10 класс)", - "shortName": "Авдеев Дмитрий Евгеньевич (Москва, 10 класс)", - "contestSystemId": "1655", + "id": "2642", + "name": "Синицын Максим Кириллович (Москва, 11 класс)", + "shortName": "Синицын Максим Кириллович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3213,10 +2974,9 @@ "customFields": {} }, { - "id": 240, - "name": "Глазков Илья Игоревич (Республика Башкортостан, 10 класс)", - "shortName": "Глазков Илья Игоревич (Республика Башкортостан, 10 класс)", - "contestSystemId": "2552", + "id": "2643", + "name": "Борцов Евгений Олегович (Удмуртская республика, 11 класс)", + "shortName": "Борцов Евгений Олегович (Удмуртская республика, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3226,10 +2986,9 @@ "customFields": {} }, { - "id": 241, - "name": "Маевский Матвей Максимович (Москва, 9 класс)", - "shortName": "Маевский Матвей Максимович (Москва, 9 класс)", - "contestSystemId": "1556", + "id": "2644", + "name": "Устименко Глеб Витальевич (Москва, 10 класс)", + "shortName": "Устименко Глеб Витальевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3239,10 +2998,9 @@ "customFields": {} }, { - "id": 242, - "name": "Шумилов Роман Григорьевич (Москва, 10 класс)", - "shortName": "Шумилов Роман Григорьевич (Москва, 10 класс)", - "contestSystemId": "3056", + "id": "2645", + "name": "Бакин Александр Александрович (Амурская область, 11 класс)", + "shortName": "Бакин Александр Александрович (Амурская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3252,10 +3010,9 @@ "customFields": {} }, { - "id": 243, - "name": "Козлов Максим Дмитриевич (Москва, 11 класс)", - "shortName": "Козлов Максим Дмитриевич (Москва, 11 класс)", - "contestSystemId": "3046", + "id": "2646", + "name": "Овчаров Иван Евгеньевич (Московская область, 10 класс)", + "shortName": "Овчаров Иван Евгеньевич (Московская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3265,10 +3022,9 @@ "customFields": {} }, { - "id": 244, - "name": "Бакин Александр Александрович (Амурская область, 11 класс)", - "shortName": "Бакин Александр Александрович (Амурская область, 11 класс)", - "contestSystemId": "2645", + "id": "2647", + "name": "Шебанин Фёдор Александрович (Свердловская область, 10 класс)", + "shortName": "Шебанин Фёдор Александрович (Свердловская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3278,10 +3034,9 @@ "customFields": {} }, { - "id": 245, - "name": "Редько Григорий Алексеевич (Москва, 10 класс)", - "shortName": "Редько Григорий Алексеевич (Москва, 10 класс)", - "contestSystemId": "3148", + "id": "2648", + "name": "Кузнецов Степан Андреевич (Москва, 11 класс)", + "shortName": "Кузнецов Степан Андреевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3291,10 +3046,9 @@ "customFields": {} }, { - "id": 246, - "name": "Зибницкий Никита Владимирович (Челябинская область, 11 класс)", - "shortName": "Зибницкий Никита Владимирович (Челябинская область, 11 класс)", - "contestSystemId": "3244", + "id": "2649", + "name": "Трапезников Роман Дмитриевич (Республика Татарстан, 11 класс)", + "shortName": "Трапезников Роман Дмитриевич (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3304,10 +3058,9 @@ "customFields": {} }, { - "id": 247, - "name": "Попов Александр Андреевич (Республика Коми, 11 класс)", - "shortName": "Попов Александр Андреевич (Республика Коми, 11 класс)", - "contestSystemId": "2052", + "id": "2650", + "name": "Шейкис Марк Витальевич (Москва, 9 класс)", + "shortName": "Шейкис Марк Витальевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3317,10 +3070,9 @@ "customFields": {} }, { - "id": 248, - "name": "Тунёв Андрей Витальевич (Пермский край, 10 класс)", - "shortName": "Тунёв Андрей Витальевич (Пермский край, 10 класс)", - "contestSystemId": "3250", + "id": "2651", + "name": "Хромов Адам Евгеньевич (Липецкая область, 11 класс)", + "shortName": "Хромов Адам Евгеньевич (Липецкая область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3330,10 +3082,9 @@ "customFields": {} }, { - "id": 249, - "name": "Сыздыков Константин Асылханович (Москва, 10 класс)", - "shortName": "Сыздыков Константин Асылханович (Москва, 10 класс)", - "contestSystemId": "2354", + "id": "2652", + "name": "Орехов Савва Дмитриевич (Москва, 11 класс)", + "shortName": "Орехов Савва Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3343,10 +3094,9 @@ "customFields": {} }, { - "id": 250, - "name": "Шебанин Фёдор Александрович (Свердловская область, 10 класс)", - "shortName": "Шебанин Фёдор Александрович (Свердловская область, 10 класс)", - "contestSystemId": "2647", + "id": "2653", + "name": "Федосеев Егор Дмитриевич (Иркутская область, 11 класс)", + "shortName": "Федосеев Егор Дмитриевич (Иркутская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3356,10 +3106,9 @@ "customFields": {} }, { - "id": 251, - "name": "Писарев Егор Дмитриевич (Москва, 10 класс)", - "shortName": "Писарев Егор Дмитриевич (Москва, 10 класс)", - "contestSystemId": "3152", + "id": "2654", + "name": "Матюпатенко Максим Кириллович (Москва, 10 класс)", + "shortName": "Матюпатенко Максим Кириллович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3369,10 +3118,9 @@ "customFields": {} }, { - "id": 252, - "name": "Поливин Никита Евгеньевич (Республика Татарстан, 11 класс)", - "shortName": "Поливин Никита Евгеньевич (Республика Татарстан, 11 класс)", - "contestSystemId": "1354", + "id": "2655", + "name": "Левина Мария Олеговна (Челябинская область, 9 класс)", + "shortName": "Левина Мария Олеговна (Челябинская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3382,10 +3130,9 @@ "customFields": {} }, { - "id": 253, - "name": "Паркина Ульяна Романовна (Московская область, 11 класс)", - "shortName": "Паркина Ульяна Романовна (Московская область, 11 класс)", - "contestSystemId": "2153", + "id": "2656", + "name": "Чернов Тимофей Ильич (Москва, 11 класс)", + "shortName": "Чернов Тимофей Ильич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3395,10 +3142,9 @@ "customFields": {} }, { - "id": 254, - "name": "Меликов Марат Иманович (Московская область, 11 класс)", - "shortName": "Меликов Марат Иманович (Московская область, 11 класс)", - "contestSystemId": "1442", + "id": "2741", + "name": "Минасян Никита Лерментович (Липецкая область, 10 класс)", + "shortName": "Минасян Никита Лерментович (Липецкая область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3408,10 +3154,9 @@ "customFields": {} }, { - "id": 255, - "name": "Антропов Александр Павлович (Челябинская область, 11 класс)", - "shortName": "Антропов Александр Павлович (Челябинская область, 11 класс)", - "contestSystemId": "1644", + "id": "2742", + "name": "Заварин Александр Сергеевич (Москва, 11 класс)", + "shortName": "Заварин Александр Сергеевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3421,10 +3166,9 @@ "customFields": {} }, { - "id": 256, - "name": "Акритов Андрей Ильич (Ставропольский край, 10 класс)", - "shortName": "Акритов Андрей Ильич (Ставропольский край, 10 класс)", - "contestSystemId": "2852", + "id": "2743", + "name": "Яшин Никита Николаевич (Ульяновская область, 10 класс)", + "shortName": "Яшин Никита Николаевич (Ульяновская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3434,10 +3178,9 @@ "customFields": {} }, { - "id": 257, - "name": "Загоровский Владимир Витальевич (Московская область, 9 класс)", - "shortName": "Загоровский Владимир Витальевич (Московская область, 9 класс)", - "contestSystemId": "1651", + "id": "2744", + "name": "Голубов Никита Михайлович (Москва, 8 класс)", + "shortName": "Голубов Никита Михайлович (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3447,10 +3190,9 @@ "customFields": {} }, { - "id": 258, - "name": "Клигунов Илья Дмитриевич (Москва, 11 класс)", - "shortName": "Клигунов Илья Дмитриевич (Москва, 11 класс)", - "contestSystemId": "1850", + "id": "2745", + "name": "Ятчений Арсений Андреевич (Челябинская область, 10 класс)", + "shortName": "Ятчений Арсений Андреевич (Челябинская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3460,10 +3202,9 @@ "customFields": {} }, { - "id": 259, - "name": "Федоров Никита Александрович (Тверская область, 11 класс)", - "shortName": "Федоров Никита Александрович (Тверская область, 11 класс)", - "contestSystemId": "2946", + "id": "2746", + "name": "Казенин Владимир Юрьевич (Новгородская область, 11 класс)", + "shortName": "Казенин Владимир Юрьевич (Новгородская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3473,10 +3214,9 @@ "customFields": {} }, { - "id": 260, - "name": "Скобелин Павел Константинович (Свердловская область, 11 класс)", - "shortName": "Скобелин Павел Константинович (Свердловская область, 11 класс)", - "contestSystemId": "1549", + "id": "2747", + "name": "Сурикова Анастасия Михайловна (Магаданская область, 11 класс)", + "shortName": "Сурикова Анастасия Михайловна (Магаданская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3486,10 +3226,9 @@ "customFields": {} }, { - "id": 261, - "name": "Егоров Тимофей Николаевич (Краснодаркий край, 9 класс)", - "shortName": "Егоров Тимофей Николаевич (Краснодаркий край, 9 класс)", - "contestSystemId": "1943", + "id": "2748", + "name": "Поярков Андрей Алексеевич (Москва, 10 класс)", + "shortName": "Поярков Андрей Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3499,10 +3238,9 @@ "customFields": {} }, { - "id": 262, - "name": "Юнусов Булат Наилевич (Московская область, 11 класс)", - "shortName": "Юнусов Булат Наилевич (Московская область, 11 класс)", - "contestSystemId": "2352", + "id": "2749", + "name": "Абатуров Артём Сергеевич (Свердловская область, 11 класс)", + "shortName": "Абатуров Артём Сергеевич (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3512,10 +3250,9 @@ "customFields": {} }, { - "id": 263, - "name": "Чичерин Тимофей Алексеевич (Московская область, 8 класс)", - "shortName": "Чичерин Тимофей Алексеевич (Московская область, 8 класс)", - "contestSystemId": "2545", + "id": "2750", + "name": "Широковских Александр Сергеевич (Московская область, 11 класс)", + "shortName": "Широковских Александр Сергеевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3525,10 +3262,9 @@ "customFields": {} }, { - "id": 264, - "name": "Хромов Адам Евгеньевич (Липецкая область, 11 класс)", - "shortName": "Хромов Адам Евгеньевич (Липецкая область, 11 класс)", - "contestSystemId": "2651", + "id": "2751", + "name": "Девятьяров Иван Андреевич (Кировская область, 10 класс)", + "shortName": "Девятьяров Иван Андреевич (Кировская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3538,10 +3274,9 @@ "customFields": {} }, { - "id": 265, - "name": "Шубин Матвей Юрьевич (Москва, 8 класс)", - "shortName": "Шубин Матвей Юрьевич (Москва, 8 класс)", - "contestSystemId": "1842", + "id": "2752", + "name": "Кузнецов Никифор Никитич (Москва, 11 класс)", + "shortName": "Кузнецов Никифор Никитич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3551,10 +3286,9 @@ "customFields": {} }, { - "id": 266, - "name": "Рысков Максим Игоревич (Санкт-Петербург, 11 класс)", - "shortName": "Рысков Максим Игоревич (Санкт-Петербург, 11 класс)", - "contestSystemId": "2641", + "id": "2753", + "name": "Мизев Андрей Алексеевич (Пермский край, 9 класс)", + "shortName": "Мизев Андрей Алексеевич (Пермский край, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3564,10 +3298,9 @@ "customFields": {} }, { - "id": 267, - "name": "Ковырзин Павел Максимович (Москва, 11 класс)", - "shortName": "Ковырзин Павел Максимович (Москва, 11 класс)", - "contestSystemId": "1245", + "id": "2754", + "name": "Шкулева Ксения Романовна (Москва, 10 класс)", + "shortName": "Шкулева Ксения Романовна (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3577,10 +3310,9 @@ "customFields": {} }, { - "id": 268, - "name": "Шейкис Марк Витальевич (Москва, 9 класс)", - "shortName": "Шейкис Марк Витальевич (Москва, 9 класс)", - "contestSystemId": "2650", + "id": "2755", + "name": "Михайлов Леонид Максимович (Санкт-Петербург, 11 класс)", + "shortName": "Михайлов Леонид Максимович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3590,10 +3322,9 @@ "customFields": {} }, { - "id": 269, - "name": "Степнов Кирилл Евгеньевич (Владимирская область, 11 класс)", - "shortName": "Степнов Кирилл Евгеньевич (Владимирская область, 11 класс)", - "contestSystemId": "2244", + "id": "2756", + "name": "Лупильцев Георгий Андреевич (Москва, 11 класс)", + "shortName": "Лупильцев Георгий Андреевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3603,10 +3334,9 @@ "customFields": {} }, { - "id": 270, - "name": "Ларин Сергей Романович (Свердловская область, 11 класс)", - "shortName": "Ларин Сергей Романович (Свердловская область, 11 класс)", - "contestSystemId": "2347", + "id": "2841", + "name": "Воронин Григорий Алексеевич (Московская область, 11 класс)", + "shortName": "Воронин Григорий Алексеевич (Московская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3616,10 +3346,9 @@ "customFields": {} }, { - "id": 271, - "name": "Вертипрахов Денис Викторович (Свердловская область, 11 класс)", - "shortName": "Вертипрахов Денис Викторович (Свердловская область, 11 класс)", - "contestSystemId": "2149", + "id": "2842", + "name": "Ситдиков Дамир Владимирович (Республика Татарстан, 10 класс)", + "shortName": "Ситдиков Дамир Владимирович (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3629,10 +3358,9 @@ "customFields": {} }, { - "id": 272, - "name": "Новгородцев Григорий Алексеевич (Москва, 10 класс)", - "shortName": "Новгородцев Григорий Алексеевич (Москва, 10 класс)", - "contestSystemId": "2051", + "id": "2843", + "name": "Салыгин Егор Алексеевич (Москва, 10 класс)", + "shortName": "Салыгин Егор Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3642,10 +3370,9 @@ "customFields": {} }, { - "id": 273, - "name": "Никурадзе Дмитрий Андреевич (Тульская область, 10 класс)", - "shortName": "Никурадзе Дмитрий Андреевич (Тульская область, 10 класс)", - "contestSystemId": "2247", + "id": "2844", + "name": "Сокольников Алексей Сергеевич (Омская область, 9 класс)", + "shortName": "Сокольников Алексей Сергеевич (Омская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3655,10 +3382,9 @@ "customFields": {} }, { - "id": 274, - "name": "Хамитов Галим Ильгамович (Республика Татарстан, 9 класс)", - "shortName": "Хамитов Галим Ильгамович (Республика Татарстан, 9 класс)", - "contestSystemId": "3051", + "id": "2845", + "name": "Ермачков Ярослав Олегович (Москва, 11 класс)", + "shortName": "Ермачков Ярослав Олегович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3668,10 +3394,9 @@ "customFields": {} }, { - "id": 275, - "name": "Ставкин Матвей Александрович (Ямало-Ненецкий АО, 10 класс)", - "shortName": "Ставкин Матвей Александрович (Ямало-Ненецкий АО, 10 класс)", - "contestSystemId": "2249", + "id": "2846", + "name": "Новоходский Герман Юрьевич (Приморский край, 11 класс)", + "shortName": "Новоходский Герман Юрьевич (Приморский край, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3681,10 +3406,9 @@ "customFields": {} }, { - "id": 276, - "name": "Балакин Владимир Александрович (Москва, 8 класс)", - "shortName": "Балакин Владимир Александрович (Москва, 8 класс)", - "contestSystemId": "2141", + "id": "2847", + "name": "Часовских Иван Михайлович (Московская область, 9 класс)", + "shortName": "Часовских Иван Михайлович (Московская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3694,10 +3418,9 @@ "customFields": {} }, { - "id": 277, - "name": "Валиуллин Данис Динарович (Москва, 9 класс)", - "shortName": "Валиуллин Данис Динарович (Москва, 9 класс)", - "contestSystemId": "2853", + "id": "2848", + "name": "Доросев Антон Николаевич (Санкт-Петербург, 11 класс)", + "shortName": "Доросев Антон Николаевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3707,10 +3430,9 @@ "customFields": {} }, { - "id": 278, - "name": "Лещинский Артём Владиславович (Московская область, 10 класс)", - "shortName": "Лещинский Артём Владиславович (Московская область, 10 класс)", - "contestSystemId": "2941", + "id": "2849", + "name": "Чернышов Игнат Максимович (Москва, 10 класс)", + "shortName": "Чернышов Игнат Максимович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3720,10 +3442,9 @@ "customFields": {} }, { - "id": 279, - "name": "Хуснуллин Асгат Халитович (Республика Татарстан, 11 класс)", - "shortName": "Хуснуллин Асгат Халитович (Республика Татарстан, 11 класс)", - "contestSystemId": "1449", + "id": "2850", + "name": "Каримов Ренат Айратович (Республика Татарстан, 10 класс)", + "shortName": "Каримов Ренат Айратович (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3733,10 +3454,9 @@ "customFields": {} }, { - "id": 280, - "name": "Кобзев Андрей Михайлович (Московская область, 10 класс)", - "shortName": "Кобзев Андрей Михайлович (Московская область, 10 класс)", - "contestSystemId": "3052", + "id": "2851", + "name": "Туревич Артём Александрович (Москва, 10 класс)", + "shortName": "Туревич Артём Александрович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3746,10 +3466,9 @@ "customFields": {} }, { - "id": 281, - "name": "Комаров Дмитрий Арчилович (Санкт-Петербург, 11 класс)", - "shortName": "Комаров Дмитрий Арчилович (Санкт-Петербург, 11 класс)", - "contestSystemId": "2950", + "id": "2852", + "name": "Акритов Андрей Ильич (Ставропольский край, 10 класс)", + "shortName": "Акритов Андрей Ильич (Ставропольский край, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3759,10 +3478,9 @@ "customFields": {} }, { - "id": 282, - "name": "Шамсемухаметов Радмир Ранасович (Республика Татарстан, 11 класс)", - "shortName": "Шамсемухаметов Радмир Ранасович (Республика Татарстан, 11 класс)", - "contestSystemId": "1947", + "id": "2853", + "name": "Валиуллин Данис Динарович (Москва, 9 класс)", + "shortName": "Валиуллин Данис Динарович (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3772,10 +3490,9 @@ "customFields": {} }, { - "id": 283, - "name": "Скороходов Андрей Ильич (Тверская область, 11 класс)", - "shortName": "Скороходов Андрей Ильич (Тверская область, 11 класс)", - "contestSystemId": "1242", + "id": "2854", + "name": "Агузаров Руслан Асланович (Республика Северная Осетия - Алания, 11 класс)", + "shortName": "Агузаров Руслан Асланович (Республика Северная Осетия - Алания, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3785,10 +3502,9 @@ "customFields": {} }, { - "id": 284, - "name": "Мордакин Антон Олегович (Москва, 10 класс)", - "shortName": "Мордакин Антон Олегович (Москва, 10 класс)", - "contestSystemId": "1349", + "id": "2855", + "name": "Акимов Артём Михайлович (Москва, 11 класс)", + "shortName": "Акимов Артём Михайлович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3798,10 +3514,9 @@ "customFields": {} }, { - "id": 285, - "name": "Периков Михаил Александрович (Санкт-Петербург, 11 класс)", - "shortName": "Периков Михаил Александрович (Санкт-Петербург, 11 класс)", - "contestSystemId": "1945", + "id": "2856", + "name": "Степаненко Александр Олегович (Челябинская область, 11 класс)", + "shortName": "Степаненко Александр Олегович (Челябинская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3811,10 +3526,9 @@ "customFields": {} }, { - "id": 286, - "name": "Гаврилов Максим Сергеевич (Челябинская область, 8 класс)", - "shortName": "Гаврилов Максим Сергеевич (Челябинская область, 8 класс)", - "contestSystemId": "2546", + "id": "2941", + "name": "Лещинский Артём Владиславович (Московская область, 10 класс)", + "shortName": "Лещинский Артём Владиславович (Московская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3824,10 +3538,9 @@ "customFields": {} }, { - "id": 287, - "name": "Бычков Илья Игоревич (Липецкая область, 10 класс)", - "shortName": "Бычков Илья Игоревич (Липецкая область, 10 класс)", - "contestSystemId": "1451", + "id": "2942", + "name": "Агафонов Артём Александрович (Томская область, 11 класс)", + "shortName": "Агафонов Артём Александрович (Томская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3837,10 +3550,9 @@ "customFields": {} }, { - "id": 288, - "name": "Разухин Александр Сергеевич (Чувашская республика, 11 класс)", - "shortName": "Разухин Александр Сергеевич (Чувашская республика, 11 класс)", - "contestSystemId": "2146", + "id": "2943", + "name": "Глушенкова Таисия Николаевна (Москва, 11 класс)", + "shortName": "Глушенкова Таисия Николаевна (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3850,10 +3562,9 @@ "customFields": {} }, { - "id": 289, - "name": "Туревич Артём Александрович (Москва, 10 класс)", - "shortName": "Туревич Артём Александрович (Москва, 10 класс)", - "contestSystemId": "2851", + "id": "2944", + "name": "Рябов Владимир Дмитриевич (Удмуртская республика, 11 класс)", + "shortName": "Рябов Владимир Дмитриевич (Удмуртская республика, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3863,10 +3574,9 @@ "customFields": {} }, { - "id": 290, - "name": "Ермачков Ярослав Олегович (Москва, 11 класс)", - "shortName": "Ермачков Ярослав Олегович (Москва, 11 класс)", - "contestSystemId": "2845", + "id": "2945", + "name": "Бурмистров Владислав Леонидович (Москва, 10 класс)", + "shortName": "Бурмистров Владислав Леонидович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3876,10 +3586,9 @@ "customFields": {} }, { - "id": 291, - "name": "Борко Дарья Сергеевна (Удмуртская республика, 10 класс)", - "shortName": "Борко Дарья Сергеевна (Удмуртская республика, 10 класс)", - "contestSystemId": "3242", + "id": "2946", + "name": "Федоров Никита Александрович (Тверская область, 11 класс)", + "shortName": "Федоров Никита Александрович (Тверская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3889,10 +3598,9 @@ "customFields": {} }, { - "id": 292, - "name": "Жерневский Михаил Константинович (Ростовская область, 10 класс)", - "shortName": "Жерневский Михаил Константинович (Ростовская область, 10 класс)", - "contestSystemId": "1348", + "id": "2947", + "name": "Порхунов Арсений Вячеславович (Москва, 10 класс)", + "shortName": "Порхунов Арсений Вячеславович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3902,10 +3610,9 @@ "customFields": {} }, { - "id": 293, - "name": "Янко Анастасия Дмитриевна (Липецкая область, 9 класс)", - "shortName": "Янко Анастасия Дмитриевна (Липецкая область, 9 класс)", - "contestSystemId": "3153", + "id": "2948", + "name": "Шабаров Игорь Николаевич (Ленинградская область, 9 класс)", + "shortName": "Шабаров Игорь Николаевич (Ленинградская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3915,10 +3622,9 @@ "customFields": {} }, { - "id": 294, - "name": "Левина Мария Олеговна (Челябинская область, 9 класс)", - "shortName": "Левина Мария Олеговна (Челябинская область, 9 класс)", - "contestSystemId": "2655", + "id": "2949", + "name": "Илаев Алексей Михайлович (Москва, 10 класс)", + "shortName": "Илаев Алексей Михайлович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3928,10 +3634,9 @@ "customFields": {} }, { - "id": 295, - "name": "Кулаков Андрей Олегович (Свердловская область, 9 класс)", - "shortName": "Кулаков Андрей Олегович (Свердловская область, 9 класс)", - "contestSystemId": "3149", + "id": "2950", + "name": "Комаров Дмитрий Арчилович (Санкт-Петербург, 11 класс)", + "shortName": "Комаров Дмитрий Арчилович (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3941,10 +3646,9 @@ "customFields": {} }, { - "id": 296, - "name": "Зырянова Ольга Олеговна (Москва, 9 класс)", - "shortName": "Зырянова Ольга Олеговна (Москва, 9 класс)", - "contestSystemId": "1452", + "id": "2951", + "name": "Логинов Илья Константинович (Москва, 11 класс)", + "shortName": "Логинов Илья Константинович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3954,10 +3658,9 @@ "customFields": {} }, { - "id": 297, - "name": "Алексеев Станислав Михайлович (Москва, 11 класс)", - "shortName": "Алексеев Станислав Михайлович (Москва, 11 класс)", - "contestSystemId": "1546", + "id": "2952", + "name": "Бацын Тимофей Михайлович (Нижегородская область, 8 класс)", + "shortName": "Бацын Тимофей Михайлович (Нижегородская область, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3967,10 +3670,9 @@ "customFields": {} }, { - "id": 298, - "name": "Макаров Михаил Игоревич (Удмуртская республика, 8 класс)", - "shortName": "Макаров Михаил Игоревич (Удмуртская республика, 8 класс)", - "contestSystemId": "1642", + "id": "2953", + "name": "Климчук Александр Александрович (Москва, 11 класс)", + "shortName": "Климчук Александр Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3980,10 +3682,9 @@ "customFields": {} }, { - "id": 299, - "name": "Малин Яков Андреевич (Свердловская область, 11 класс)", - "shortName": "Малин Яков Андреевич (Свердловская область, 11 класс)", - "contestSystemId": "1752", + "id": "2954", + "name": "Гаджиев Низам Русланович (Республика Дагестан, 9 класс)", + "shortName": "Гаджиев Низам Русланович (Республика Дагестан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -3993,10 +3694,9 @@ "customFields": {} }, { - "id": 300, - "name": "Товстыга Дарья Сергеевна (Курганская область, 11 класс)", - "shortName": "Товстыга Дарья Сергеевна (Курганская область, 11 класс)", - "contestSystemId": "1745", + "id": "2955", + "name": "Пугачев Дмитрий Витальевич (Москва, 11 класс)", + "shortName": "Пугачев Дмитрий Витальевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4006,10 +3706,9 @@ "customFields": {} }, { - "id": 301, - "name": "Шабаров Игорь Николаевич (Ленинградская область, 9 класс)", - "shortName": "Шабаров Игорь Николаевич (Ленинградская область, 9 класс)", - "contestSystemId": "2948", + "id": "2956", + "name": "Кожевников Антон Андреевич (Ростовская область, 11 класс)", + "shortName": "Кожевников Антон Андреевич (Ростовская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4019,10 +3718,9 @@ "customFields": {} }, { - "id": 302, - "name": "Бенца Даниил Игоревич (Москва, 11 класс)", - "shortName": "Бенца Даниил Игоревич (Москва, 11 класс)", - "contestSystemId": "2147", + "id": "3041", + "name": "Рулев Максим Юрьевич (Брянская область, 10 класс)", + "shortName": "Рулев Максим Юрьевич (Брянская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4032,10 +3730,9 @@ "customFields": {} }, { - "id": 303, - "name": "Илаев Алексей Михайлович (Москва, 10 класс)", - "shortName": "Илаев Алексей Михайлович (Москва, 10 класс)", - "contestSystemId": "2949", + "id": "3042", + "name": "Подворный Иван Владимирович (Москва, 11 класс)", + "shortName": "Подворный Иван Владимирович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4045,10 +3742,9 @@ "customFields": {} }, { - "id": 304, - "name": "Ильин Михаил Георгиевич (Москва, 10 класс)", - "shortName": "Ильин Михаил Георгиевич (Москва, 10 класс)", - "contestSystemId": "3044", + "id": "3043", + "name": "Павлов Андрей Максимович (Оренбургская область, 10 класс)", + "shortName": "Павлов Андрей Максимович (Оренбургская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4058,10 +3754,9 @@ "customFields": {} }, { - "id": 305, - "name": "Яшин Никита Николаевич (Ульяновская область, 10 класс)", - "shortName": "Яшин Никита Николаевич (Ульяновская область, 10 класс)", - "contestSystemId": "2743", + "id": "3044", + "name": "Ильин Михаил Георгиевич (Москва, 10 класс)", + "shortName": "Ильин Михаил Георгиевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4071,10 +3766,9 @@ "customFields": {} }, { - "id": 306, - "name": "Кильметов Данил Булатович (Пермский край, 9 класс)", - "shortName": "Кильметов Данил Булатович (Пермский край, 9 класс)", - "contestSystemId": "2056", + "id": "3045", + "name": "Габитов Булат Радикович (Республика Татарстан, 11 класс)", + "shortName": "Габитов Булат Радикович (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4084,10 +3778,9 @@ "customFields": {} }, { - "id": 307, - "name": "Полуэктов Никита Игоревич (Орловская область, 11 класс)", - "shortName": "Полуэктов Никита Игоревич (Орловская область, 11 класс)", - "contestSystemId": "2548", + "id": "3046", + "name": "Козлов Максим Дмитриевич (Москва, 11 класс)", + "shortName": "Козлов Максим Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4097,10 +3790,9 @@ "customFields": {} }, { - "id": 308, - "name": "Макаров Дмитрий Сергеевич (Нижегородская область, 10 класс)", - "shortName": "Макаров Дмитрий Сергеевич (Нижегородская область, 10 класс)", - "contestSystemId": "1648", + "id": "3047", + "name": "Рассказкин Александр Дмитриевич (Саратовская область, 11 класс)", + "shortName": "Рассказкин Александр Дмитриевич (Саратовская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4110,10 +3802,9 @@ "customFields": {} }, { - "id": 309, - "name": "Алиев Глеб Маратович (Республика Адыгея, 11 класс)", - "shortName": "Алиев Глеб Маратович (Республика Адыгея, 11 класс)", - "contestSystemId": "1941", + "id": "3048", + "name": "Маляровский Степан Александрович (Москва, 11 класс)", + "shortName": "Маляровский Степан Александрович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4123,10 +3814,9 @@ "customFields": {} }, { - "id": 310, - "name": "Зарубин Егор Дмитриевич (Челябинская область, 10 класс)", - "shortName": "Зарубин Егор Дмитриевич (Челябинская область, 10 класс)", - "contestSystemId": "1155", + "id": "3049", + "name": "Дьяконов Сергей Андреевич (Республика Татарстан, 8 класс)", + "shortName": "Дьяконов Сергей Андреевич (Республика Татарстан, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4136,10 +3826,9 @@ "customFields": {} }, { - "id": 311, - "name": "Хамитов Хаким Ильгамович (Республика Татарстан, 9 класс)", - "shortName": "Хамитов Хаким Ильгамович (Республика Татарстан, 9 класс)", - "contestSystemId": "3055", + "id": "3050", + "name": "Солунов Данила Ильич (Москва, 11 класс)", + "shortName": "Солунов Данила Ильич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4149,10 +3838,9 @@ "customFields": {} }, { - "id": 312, - "name": "Шевкопляс Максим Евгеньевич (Санкт-Петербург, 10 класс)", - "shortName": "Шевкопляс Максим Евгеньевич (Санкт-Петербург, 10 класс)", - "contestSystemId": "1754", + "id": "3051", + "name": "Хамитов Галим Ильгамович (Республика Татарстан, 9 класс)", + "shortName": "Хамитов Галим Ильгамович (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4162,10 +3850,9 @@ "customFields": {} }, { - "id": 313, - "name": "Кудряшов Алексей Андреевич (Санкт-Петербург, 10 класс)", - "shortName": "Кудряшов Алексей Андреевич (Санкт-Петербург, 10 класс)", - "contestSystemId": "2054", + "id": "3052", + "name": "Кобзев Андрей Михайлович (Московская область, 10 класс)", + "shortName": "Кобзев Андрей Михайлович (Московская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4175,10 +3862,9 @@ "customFields": {} }, { - "id": 314, - "name": "Рябов Владимир Дмитриевич (Удмуртская республика, 11 класс)", - "shortName": "Рябов Владимир Дмитриевич (Удмуртская республика, 11 класс)", - "contestSystemId": "2944", + "id": "3053", + "name": "Жеглов Александр Сергеевич (Воронежская область, 10 класс)", + "shortName": "Жеглов Александр Сергеевич (Воронежская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4188,10 +3874,9 @@ "customFields": {} }, { - "id": 315, - "name": "Колеров Роман Антонович (Москва, 8 класс)", - "shortName": "Колеров Роман Антонович (Москва, 8 класс)", - "contestSystemId": "1542", + "id": "3054", + "name": "Строков Арсений Вячеславович (Республика Хакасия, 11 класс)", + "shortName": "Строков Арсений Вячеславович (Республика Хакасия, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4201,10 +3886,9 @@ "customFields": {} }, { - "id": 316, - "name": "Григорьева Ирина Александровна (Челябинская область, 8 класс)", - "shortName": "Григорьева Ирина Александровна (Челябинская область, 8 класс)", - "contestSystemId": "1641", + "id": "3055", + "name": "Хамитов Хаким Ильгамович (Республика Татарстан, 9 класс)", + "shortName": "Хамитов Хаким Ильгамович (Республика Татарстан, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4214,10 +3898,9 @@ "customFields": {} }, { - "id": 317, - "name": "Минасян Никита Лерментович (Липецкая область, 10 класс)", - "shortName": "Минасян Никита Лерментович (Липецкая область, 10 класс)", - "contestSystemId": "2741", + "id": "3056", + "name": "Шумилов Роман Григорьевич (Москва, 10 класс)", + "shortName": "Шумилов Роман Григорьевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4227,10 +3910,9 @@ "customFields": {} }, { - "id": 318, - "name": "Доросев Антон Николаевич (Санкт-Петербург, 11 класс)", - "shortName": "Доросев Антон Николаевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "2848", + "id": "3141", + "name": "Чертан Вячеслав Александрович (Кемеровская область, 10 класс)", + "shortName": "Чертан Вячеслав Александрович (Кемеровская область, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4240,10 +3922,9 @@ "customFields": {} }, { - "id": 319, - "name": "Скобелев Никита Романович (Камчатский край, 11 класс)", - "shortName": "Скобелев Никита Романович (Камчатский край, 11 класс)", - "contestSystemId": "1545", + "id": "3142", + "name": "Краснов Илья Витальевич (Москва, 10 класс)", + "shortName": "Краснов Илья Витальевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4253,10 +3934,9 @@ "customFields": {} }, { - "id": 320, - "name": "Устименко Артём Витальевич (Москва, 8 класс)", - "shortName": "Устименко Артём Витальевич (Москва, 8 класс)", - "contestSystemId": "2449", + "id": "3143", + "name": "Большаков Максим Сергеевич (Республика Татарстан, 8 класс)", + "shortName": "Большаков Максим Сергеевич (Республика Татарстан, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4266,10 +3946,9 @@ "customFields": {} }, { - "id": 321, - "name": "Строков Арсений Вячеславович (Республика Хакасия, 11 класс)", - "shortName": "Строков Арсений Вячеславович (Республика Хакасия, 11 класс)", - "contestSystemId": "3054", + "id": "3144", + "name": "Клигунов Кирилл Дмитриевич (Москва, 11 класс)", + "shortName": "Клигунов Кирилл Дмитриевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4279,10 +3958,9 @@ "customFields": {} }, { - "id": 322, - "name": "Золотарев Дмитрий Алексеевич (Тюменская область, 11 класс)", - "shortName": "Золотарев Дмитрий Алексеевич (Тюменская область, 11 класс)", - "contestSystemId": "2253", + "id": "3145", + "name": "Пакканен Мария Александровна (Республика Татарстан, 11 класс)", + "shortName": "Пакканен Мария Александровна (Республика Татарстан, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4292,10 +3970,9 @@ "customFields": {} }, { - "id": 323, - "name": "Суслов Максим Кириллович (Санкт-Петербург, 11 класс)", - "shortName": "Суслов Максим Кириллович (Санкт-Петербург, 11 класс)", - "contestSystemId": "1652", + "id": "3146", + "name": "Лямзин Александр Сергеевич (Москва, 9 класс)", + "shortName": "Лямзин Александр Сергеевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4305,10 +3982,9 @@ "customFields": {} }, { - "id": 324, - "name": "Федосеев Егор Дмитриевич (Иркутская область, 11 класс)", - "shortName": "Федосеев Егор Дмитриевич (Иркутская область, 11 класс)", - "contestSystemId": "2653", + "id": "3147", + "name": "Хаев Булат Илдарович (Республика Татарстан, 10 класс)", + "shortName": "Хаев Булат Илдарович (Республика Татарстан, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4318,10 +3994,9 @@ "customFields": {} }, { - "id": 325, - "name": "Ким Артём Сенгванович (Москва, 10 класс)", - "shortName": "Ким Артём Сенгванович (Москва, 10 класс)", - "contestSystemId": "1444", + "id": "3148", + "name": "Редько Григорий Алексеевич (Москва, 10 класс)", + "shortName": "Редько Григорий Алексеевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4331,10 +4006,9 @@ "customFields": {} }, { - "id": 326, - "name": "Жучков Павел Александрович (Калужская область, 10 класс)", - "shortName": "Жучков Павел Александрович (Калужская область, 10 класс)", - "contestSystemId": "1143", + "id": "3149", + "name": "Кулаков Андрей Олегович (Свердловская область, 9 класс)", + "shortName": "Кулаков Андрей Олегович (Свердловская область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4344,10 +4018,9 @@ "customFields": {} }, { - "id": 327, - "name": "Чубий Савва Андреевич (Москва, 11 класс)", - "shortName": "Чубий Савва Андреевич (Москва, 11 класс)", - "contestSystemId": "1247", + "id": "3150", + "name": "Куликовский Дмитрий Романович (Москва, 11 класс)", + "shortName": "Куликовский Дмитрий Романович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4357,10 +4030,9 @@ "customFields": {} }, { - "id": 328, - "name": "Горюнов Григорий Юрьевич (Москва, 11 класс)", - "shortName": "Горюнов Григорий Юрьевич (Москва, 11 класс)", - "contestSystemId": "3156", + "id": "3151", + "name": "Степанов Артём Сергеевич (Свердловская область, 11 класс)", + "shortName": "Степанов Артём Сергеевич (Свердловская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4370,10 +4042,9 @@ "customFields": {} }, { - "id": 329, - "name": "Кахниашвили Иоанн Зурабиевич (Федеральная территория \"Сириус\", 10 класс)", - "shortName": "Кахниашвили Иоанн Зурабиевич (Федеральная территория \"Сириус\", 10 класс)", - "contestSystemId": "2245", + "id": "3152", + "name": "Писарев Егор Дмитриевич (Москва, 10 класс)", + "shortName": "Писарев Егор Дмитриевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4383,10 +4054,9 @@ "customFields": {} }, { - "id": 330, - "name": "Пашкин Андрей Владимирович (Смоленская область, 11 класс)", - "shortName": "Пашкин Андрей Владимирович (Смоленская область, 11 класс)", - "contestSystemId": "3246", + "id": "3153", + "name": "Янко Анастасия Дмитриевна (Липецкая область, 9 класс)", + "shortName": "Янко Анастасия Дмитриевна (Липецкая область, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4396,10 +4066,9 @@ "customFields": {} }, { - "id": 331, - "name": "Альжанов Леонид Булатович (Санкт-Петербург, 10 класс)", - "shortName": "Альжанов Леонид Булатович (Санкт-Петербург, 10 класс)", - "contestSystemId": "1356", + "id": "3154", + "name": "Громак Дмитрий Алексеевич (Москва, 11 класс)", + "shortName": "Громак Дмитрий Алексеевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4409,10 +4078,9 @@ "customFields": {} }, { - "id": 332, - "name": "Зеленский Данил Олегович (Республика Саха (Якутия), 11 класс)", - "shortName": "Зеленский Данил Олегович (Республика Саха (Якутия), 11 класс)", - "contestSystemId": "1153", + "id": "3155", + "name": "Щемеров Игорь Сергеевич (Республика Мордовия, 9 класс)", + "shortName": "Щемеров Игорь Сергеевич (Республика Мордовия, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4422,10 +4090,9 @@ "customFields": {} }, { - "id": 333, - "name": "Иванов Семëн Маркович (Москва, 9 класс)", - "shortName": "Иванов Семëн Маркович (Москва, 9 класс)", - "contestSystemId": "1249", + "id": "3156", + "name": "Горюнов Григорий Юрьевич (Москва, 11 класс)", + "shortName": "Горюнов Григорий Юрьевич (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4435,10 +4102,9 @@ "customFields": {} }, { - "id": 334, - "name": "Кандрашкин Андрей Юрьевич (Республика Татарстан, 9 класс)", - "shortName": "Кандрашкин Андрей Юрьевич (Республика Татарстан, 9 класс)", - "contestSystemId": "1756", + "id": "3241", + "name": "Гришко Дмитрий Олегович (Москва, 8 класс)", + "shortName": "Гришко Дмитрий Олегович (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4448,10 +4114,9 @@ "customFields": {} }, { - "id": 335, - "name": "Колесников Денис Олегович (Рязанская область, 11 класс)", - "shortName": "Колесников Денис Олегович (Рязанская область, 11 класс)", - "contestSystemId": "2148", + "id": "3242", + "name": "Борко Дарья Сергеевна (Удмуртская республика, 10 класс)", + "shortName": "Борко Дарья Сергеевна (Удмуртская республика, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4461,10 +4126,9 @@ "customFields": {} }, { - "id": 336, - "name": "Волков Константин Вячеславович (Астраханская область, 11 класс)", - "shortName": "Волков Константин Вячеславович (Астраханская область, 11 класс)", - "contestSystemId": "3256", + "id": "3243", + "name": "Дубко Максим Денисович (Москва, 10 класс)", + "shortName": "Дубко Максим Денисович (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4474,10 +4138,9 @@ "customFields": {} }, { - "id": 337, - "name": "Цыганов Пётр Игоревич (Республика Крым, 11 класс)", - "shortName": "Цыганов Пётр Игоревич (Республика Крым, 11 класс)", - "contestSystemId": "1656", + "id": "3244", + "name": "Зибницкий Никита Владимирович (Челябинская область, 11 класс)", + "shortName": "Зибницкий Никита Владимирович (Челябинская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4487,10 +4150,9 @@ "customFields": {} }, { - "id": 338, - "name": "Симаков Михаил Алексеевич (Санкт-Петербург, 11 класс)", - "shortName": "Симаков Михаил Алексеевич (Санкт-Петербург, 11 класс)", - "contestSystemId": "3248", + "id": "3245", + "name": "Чистяков Александр Вадимович (Москва, 11 класс)", + "shortName": "Чистяков Александр Вадимович (Москва, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4500,10 +4162,9 @@ "customFields": {} }, { - "id": 339, - "name": "Сурикова Анастасия Михайловна (Магаданская область, 11 класс)", - "shortName": "Сурикова Анастасия Михайловна (Магаданская область, 11 класс)", - "contestSystemId": "2747", + "id": "3246", + "name": "Пашкин Андрей Владимирович (Смоленская область, 11 класс)", + "shortName": "Пашкин Андрей Владимирович (Смоленская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4513,10 +4174,9 @@ "customFields": {} }, { - "id": 340, - "name": "Рулев Максим Юрьевич (Брянская область, 10 класс)", - "shortName": "Рулев Максим Юрьевич (Брянская область, 10 класс)", - "contestSystemId": "3041", + "id": "3247", + "name": "Егоров Антон Юрьевич (Москва, 10 класс)", + "shortName": "Егоров Антон Юрьевич (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4526,10 +4186,9 @@ "customFields": {} }, { - "id": 341, - "name": "Айтбаев Эркин Жакыпбекович (Сахалинская область, 9 класс)", - "shortName": "Айтбаев Эркин Жакыпбекович (Сахалинская область, 9 класс)", - "contestSystemId": "2046", + "id": "3248", + "name": "Симаков Михаил Алексеевич (Санкт-Петербург, 11 класс)", + "shortName": "Симаков Михаил Алексеевич (Санкт-Петербург, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4539,10 +4198,9 @@ "customFields": {} }, { - "id": 342, - "name": "Попов Кирилл Александрович (Донецкая Народная Республика, 10 класс)", - "shortName": "Попов Кирилл Александрович (Донецкая Народная Республика, 10 класс)", - "contestSystemId": "1347", + "id": "3249", + "name": "Лосев Пётр Валерьевич (Москва, 9 класс)", + "shortName": "Лосев Пётр Валерьевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4552,10 +4210,9 @@ "customFields": {} }, { - "id": 343, - "name": "Первунецких Еремей Дмитриевич (Москва, 9 класс)", - "shortName": "Первунецких Еремей Дмитриевич (Москва, 9 класс)", - "contestSystemId": "1844", + "id": "3250", + "name": "Тунёв Андрей Витальевич (Пермский край, 10 класс)", + "shortName": "Тунёв Андрей Витальевич (Пермский край, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4565,10 +4222,9 @@ "customFields": {} }, { - "id": 344, - "name": "Пашков Дмитрий Денисович (Ханты-Мансийский АО, 10 класс)", - "shortName": "Пашков Дмитрий Денисович (Ханты-Мансийский АО, 10 класс)", - "contestSystemId": "1553", + "id": "3251", + "name": "Семенюк Ярослав Алексеевич (Москва, 9 класс)", + "shortName": "Семенюк Ярослав Алексеевич (Москва, 9 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4578,10 +4234,9 @@ "customFields": {} }, { - "id": 345, - "name": "Агузаров Руслан Асланович (Республика Северная Осетия - Алания, 11 класс)", - "shortName": "Агузаров Руслан Асланович (Республика Северная Осетия - Алания, 11 класс)", - "contestSystemId": "2854", + "id": "3252", + "name": "Бицюк Андрей Александрович (Тверская область, 11 класс)", + "shortName": "Бицюк Андрей Александрович (Тверская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4591,10 +4246,9 @@ "customFields": {} }, { - "id": 346, - "name": "Давыденко Тарас Николаевич (Калиниградская область, 9 класс)", - "shortName": "Давыденко Тарас Николаевич (Калиниградская область, 9 класс)", - "contestSystemId": "1750", + "id": "3253", + "name": "Хо Данг Зунг - (Москва, 10 класс)", + "shortName": "Хо Данг Зунг - (Москва, 10 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4604,10 +4258,9 @@ "customFields": {} }, { - "id": 347, - "name": "Гаджиев Низам Русланович (Республика Дагестан, 9 класс)", - "shortName": "Гаджиев Низам Русланович (Республика Дагестан, 9 класс)", - "contestSystemId": "2954", + "id": "3254", + "name": "Некрасов Станислав Игоревич (Воронежская область, 11 класс)", + "shortName": "Некрасов Станислав Игоревич (Воронежская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4617,10 +4270,9 @@ "customFields": {} }, { - "id": 348, - "name": "Смирнов Сергей Юрьевич (Республика Марий Эл, 11 класс)", - "shortName": "Смирнов Сергей Юрьевич (Республика Марий Эл, 11 класс)", - "contestSystemId": "1355", + "id": "3255", + "name": "Саляхов Марк Олегович (Москва, 8 класс)", + "shortName": "Саляхов Марк Олегович (Москва, 8 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4630,10 +4282,9 @@ "customFields": {} }, { - "id": 349, - "name": "Сизов Артем Андреевич (Костромская область, 11 класс)", - "shortName": "Сизов Артем Андреевич (Костромская область, 11 класс)", - "contestSystemId": "2554", + "id": "3256", + "name": "Волков Константин Вячеславович (Астраханская область, 11 класс)", + "shortName": "Волков Константин Вячеславович (Астраханская область, 11 класс)", "groups": [], "hashTag": null, "medias": {}, @@ -4666,7 +4317,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4686,7 +4337,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4706,7 +4357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4726,7 +4377,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4746,7 +4397,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4766,7 +4417,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4786,7 +4437,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4806,7 +4457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4826,7 +4477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4846,7 +4497,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 1, + "teamId": "2847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4866,7 +4517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4886,7 +4537,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4906,7 +4557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4926,7 +4577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4946,7 +4597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4966,7 +4617,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -4986,7 +4637,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5006,7 +4657,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5026,7 +4677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5046,7 +4697,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5066,7 +4717,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5086,7 +4737,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5106,7 +4757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5126,7 +4777,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 2, + "teamId": "2241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5146,7 +4797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5166,7 +4817,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5188,7 +4839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5208,7 +4859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5228,7 +4879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5248,7 +4899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5268,7 +4919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5288,7 +4939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5308,7 +4959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5328,7 +4979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5348,7 +4999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5368,7 +5019,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5388,7 +5039,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5408,7 +5059,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5428,7 +5079,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5448,7 +5099,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5468,7 +5119,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5488,7 +5139,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5508,7 +5159,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5528,7 +5179,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5548,7 +5199,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5568,7 +5219,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5588,7 +5239,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5610,7 +5261,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5630,7 +5281,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5650,7 +5301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5670,7 +5321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5690,7 +5341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5710,7 +5361,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5730,7 +5381,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5750,7 +5401,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5770,7 +5421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5790,7 +5441,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5810,7 +5461,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5830,7 +5481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5850,7 +5501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 3, + "teamId": "1341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5870,7 +5521,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5890,7 +5541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5910,7 +5561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5930,7 +5581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5950,7 +5601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5970,7 +5621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -5990,7 +5641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6010,7 +5661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6030,7 +5681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6050,7 +5701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6070,7 +5721,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6090,7 +5741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6110,7 +5761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6130,7 +5781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6150,7 +5801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6170,7 +5821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 4, + "teamId": "1350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6190,7 +5841,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6210,7 +5861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6230,7 +5881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6250,7 +5901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6270,7 +5921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6290,7 +5941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6310,7 +5961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6330,7 +5981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6350,7 +6001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6370,7 +6021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6390,7 +6041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6410,7 +6061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6430,7 +6081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6450,7 +6101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6470,7 +6121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6490,7 +6141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6510,7 +6161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6530,7 +6181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6550,7 +6201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6570,7 +6221,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6590,7 +6241,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6610,7 +6261,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6630,7 +6281,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6650,7 +6301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6670,7 +6321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6690,7 +6341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 5, + "teamId": "1351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6710,7 +6361,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6730,7 +6381,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6750,7 +6401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6770,7 +6421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6790,7 +6441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6810,7 +6461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6830,7 +6481,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6850,7 +6501,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6870,7 +6521,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6890,7 +6541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6910,7 +6561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6930,7 +6581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6950,7 +6601,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6970,7 +6621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -6990,7 +6641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7010,7 +6661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7030,7 +6681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7050,7 +6701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7070,7 +6721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7090,7 +6741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7110,7 +6761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7130,7 +6781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7150,7 +6801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7170,7 +6821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7190,7 +6841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7210,7 +6861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7230,7 +6881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7250,7 +6901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7270,7 +6921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7290,7 +6941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7310,7 +6961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7330,7 +6981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7350,7 +7001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7370,7 +7021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7390,7 +7041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7410,7 +7061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7430,7 +7081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7450,7 +7101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7470,7 +7121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7490,7 +7141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7510,7 +7161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7530,7 +7181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7550,7 +7201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7570,7 +7221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7590,7 +7241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7610,7 +7261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7630,7 +7281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7650,7 +7301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7670,7 +7321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7690,7 +7341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7710,7 +7361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7730,7 +7381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7750,7 +7401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7770,7 +7421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7790,7 +7441,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7812,7 +7463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7832,7 +7483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7852,7 +7503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7872,7 +7523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7892,7 +7543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7912,7 +7563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7932,7 +7583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7952,7 +7603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7972,7 +7623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -7992,7 +7643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8012,7 +7663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8032,7 +7683,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8052,7 +7703,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8072,7 +7723,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8092,7 +7743,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8112,7 +7763,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8132,7 +7783,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 6, + "teamId": "2453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8152,7 +7803,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8172,7 +7823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8192,7 +7843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8212,7 +7863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8232,7 +7883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8252,7 +7903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8272,7 +7923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8292,7 +7943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8312,7 +7963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8332,7 +7983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8352,7 +8003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8372,7 +8023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8392,7 +8043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8412,7 +8063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8432,7 +8083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8452,7 +8103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8472,7 +8123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8492,7 +8143,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 7, + "teamId": "1156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8512,7 +8163,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8532,7 +8183,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8552,7 +8203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8572,7 +8223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8592,7 +8243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8612,7 +8263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8632,7 +8283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8652,7 +8303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8672,7 +8323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8692,7 +8343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8712,7 +8363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8732,7 +8383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8752,7 +8403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8772,7 +8423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8792,7 +8443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8812,7 +8463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8834,7 +8485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8854,7 +8505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8874,7 +8525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8894,7 +8545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8914,7 +8565,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8934,7 +8585,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8954,7 +8605,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8974,7 +8625,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -8994,7 +8645,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9014,7 +8665,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9034,7 +8685,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9054,7 +8705,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9074,7 +8725,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9094,7 +8745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 8, + "teamId": "1654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9114,7 +8765,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9134,7 +8785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9154,7 +8805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9174,7 +8825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9194,7 +8845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9214,7 +8865,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9234,7 +8885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9254,7 +8905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9274,7 +8925,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9294,7 +8945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9314,7 +8965,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9334,7 +8985,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9354,7 +9005,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9374,7 +9025,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9394,7 +9045,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9414,7 +9065,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9434,7 +9085,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9454,7 +9105,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9474,7 +9125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9494,7 +9145,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9514,7 +9165,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9534,7 +9185,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9554,7 +9205,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9574,7 +9225,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 9, + "teamId": "1846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9594,7 +9245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9614,7 +9265,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9634,7 +9285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9654,7 +9305,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9674,7 +9325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9694,7 +9345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9714,7 +9365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9734,7 +9385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9754,7 +9405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9774,7 +9425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9794,7 +9445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9814,7 +9465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9834,7 +9485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9854,7 +9505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9874,7 +9525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9894,7 +9545,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9914,7 +9565,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9934,7 +9585,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9954,7 +9605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9974,7 +9625,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -9994,7 +9645,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10014,7 +9665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10034,7 +9685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10054,7 +9705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10074,7 +9725,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10094,7 +9745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10114,7 +9765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10134,7 +9785,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10154,7 +9805,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10174,7 +9825,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10194,7 +9845,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10214,7 +9865,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10234,7 +9885,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10254,7 +9905,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 10, + "teamId": "2048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10274,7 +9925,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10294,7 +9945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10314,7 +9965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10334,7 +9985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10354,7 +10005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10374,7 +10025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10394,7 +10045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10414,7 +10065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10434,7 +10085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10454,7 +10105,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10474,7 +10125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10494,7 +10145,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10514,7 +10165,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10534,7 +10185,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10554,7 +10205,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10574,7 +10225,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10594,7 +10245,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10614,7 +10265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10634,7 +10285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10654,7 +10305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10674,7 +10325,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10694,7 +10345,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10714,7 +10365,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10734,7 +10385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 11, + "teamId": "1150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10754,7 +10405,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10774,7 +10425,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10794,7 +10445,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10814,7 +10465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10834,7 +10485,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10854,7 +10505,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10874,7 +10525,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10894,7 +10545,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10914,7 +10565,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10934,7 +10585,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10954,7 +10605,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10974,7 +10625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -10994,7 +10645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11014,7 +10665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11034,7 +10685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11054,7 +10705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11074,7 +10725,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11094,7 +10745,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11114,7 +10765,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 12, + "teamId": "2349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11134,7 +10785,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11154,7 +10805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11174,7 +10825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11194,7 +10845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11214,7 +10865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11234,7 +10885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11254,7 +10905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11274,7 +10925,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11294,7 +10945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11314,7 +10965,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11334,7 +10985,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11354,7 +11005,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11374,7 +11025,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11394,7 +11045,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11414,7 +11065,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11436,7 +11087,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11456,7 +11107,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11476,7 +11127,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11496,7 +11147,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11516,7 +11167,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11536,7 +11187,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11556,7 +11207,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11576,7 +11227,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11596,7 +11247,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11616,7 +11267,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11636,7 +11287,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11656,7 +11307,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11676,7 +11327,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11696,7 +11347,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11716,7 +11367,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11736,7 +11387,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11758,7 +11409,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11778,7 +11429,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11798,7 +11449,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11818,7 +11469,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11838,7 +11489,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11858,7 +11509,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11878,7 +11529,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11898,7 +11549,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11918,7 +11569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11938,7 +11589,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11958,7 +11609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11978,7 +11629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -11998,7 +11649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12018,7 +11669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12038,7 +11689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12058,7 +11709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12078,7 +11729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12098,7 +11749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12118,7 +11769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12138,7 +11789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12158,7 +11809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12178,7 +11829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12198,7 +11849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12218,7 +11869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12238,7 +11889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12258,7 +11909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12278,7 +11929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12298,7 +11949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12318,7 +11969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12338,7 +11989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12358,7 +12009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12378,7 +12029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12398,7 +12049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12418,7 +12069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12438,7 +12089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12458,7 +12109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12478,7 +12129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12498,7 +12149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12518,7 +12169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12540,7 +12191,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12560,7 +12211,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12580,7 +12231,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12600,7 +12251,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12620,7 +12271,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12640,7 +12291,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12660,7 +12311,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12680,7 +12331,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12700,7 +12351,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12720,7 +12371,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12740,7 +12391,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12760,7 +12411,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 13, + "teamId": "3245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12780,7 +12431,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12800,7 +12451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12820,7 +12471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12840,7 +12491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12860,7 +12511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12880,7 +12531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12900,7 +12551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12920,7 +12571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12940,7 +12591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12960,7 +12611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -12980,7 +12631,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13000,7 +12651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13020,7 +12671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13040,7 +12691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13060,7 +12711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13080,7 +12731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13100,7 +12751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13120,7 +12771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13140,7 +12791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13160,7 +12811,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13180,7 +12831,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 14, + "teamId": "1955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13200,7 +12851,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13220,7 +12871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13240,7 +12891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13260,7 +12911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13280,7 +12931,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13300,7 +12951,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13320,7 +12971,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13340,7 +12991,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13360,7 +13011,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13380,7 +13031,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13400,7 +13051,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13420,7 +13071,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13440,7 +13091,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13460,7 +13111,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13480,7 +13131,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 15, + "teamId": "2942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13500,7 +13151,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13520,7 +13171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13540,7 +13191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13560,7 +13211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13582,7 +13233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13602,7 +13253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13622,7 +13273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13642,7 +13293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13662,7 +13313,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13682,7 +13333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13702,7 +13353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13722,7 +13373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13742,7 +13393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13762,7 +13413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13782,7 +13433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13802,7 +13453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13822,7 +13473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13842,7 +13493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13862,7 +13513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13882,7 +13533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13902,7 +13553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13922,7 +13573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13942,7 +13593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13962,7 +13613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -13984,7 +13635,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14006,7 +13657,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14026,7 +13677,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14046,7 +13697,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14066,7 +13717,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14086,7 +13737,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14106,7 +13757,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14126,7 +13777,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14146,7 +13797,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14166,7 +13817,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14186,7 +13837,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14206,7 +13857,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14226,7 +13877,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14246,7 +13897,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14266,7 +13917,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14286,7 +13937,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14306,7 +13957,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14326,7 +13977,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14346,7 +13997,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 16, + "teamId": "3151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14366,7 +14017,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14386,7 +14037,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14406,7 +14057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14426,7 +14077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14446,7 +14097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14466,7 +14117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14486,7 +14137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14506,7 +14157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14526,7 +14177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14546,7 +14197,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14566,7 +14217,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14586,7 +14237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14606,7 +14257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14626,7 +14277,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14646,7 +14297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14666,7 +14317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14688,7 +14339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14708,7 +14359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14728,7 +14379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14748,7 +14399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14768,7 +14419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14788,7 +14439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14808,7 +14459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14828,7 +14479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14848,7 +14499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14868,7 +14519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14888,7 +14539,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14908,7 +14559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14928,7 +14579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14948,7 +14599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14968,7 +14619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -14988,7 +14639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15008,7 +14659,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15028,7 +14679,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15048,7 +14699,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15068,7 +14719,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15088,7 +14739,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15108,7 +14759,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15128,7 +14779,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15148,7 +14799,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15168,7 +14819,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15188,7 +14839,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15208,7 +14859,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15228,7 +14879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15248,7 +14899,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15268,7 +14919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15288,7 +14939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15308,7 +14959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15328,7 +14979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15348,7 +14999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15368,7 +15019,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15388,7 +15039,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15408,7 +15059,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15428,7 +15079,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15448,7 +15099,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15468,7 +15119,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15488,7 +15139,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15508,7 +15159,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15528,7 +15179,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15548,7 +15199,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15568,7 +15219,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15588,7 +15239,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15608,7 +15259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15628,7 +15279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15648,7 +15299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15668,7 +15319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15688,7 +15339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15708,7 +15359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15728,7 +15379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15748,7 +15399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15768,7 +15419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15788,7 +15439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15808,7 +15459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15828,7 +15479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15848,7 +15499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15868,7 +15519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15888,7 +15539,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15908,7 +15559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15928,7 +15579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15948,7 +15599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15968,7 +15619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -15990,7 +15641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16010,7 +15661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16030,7 +15681,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16050,7 +15701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16070,7 +15721,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16090,7 +15741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16110,7 +15761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16130,7 +15781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16150,7 +15801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16170,7 +15821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16190,7 +15841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16210,7 +15861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16230,7 +15881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16250,7 +15901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16270,7 +15921,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16290,7 +15941,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16310,7 +15961,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16330,7 +15981,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16350,7 +16001,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16370,7 +16021,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 17, + "teamId": "1953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16390,7 +16041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16410,7 +16061,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16430,7 +16081,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16450,7 +16101,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16470,7 +16121,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16490,7 +16141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16510,7 +16161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16530,7 +16181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16550,7 +16201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16572,7 +16223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16592,7 +16243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16612,7 +16263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16632,7 +16283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16652,7 +16303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16672,7 +16323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16692,7 +16343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16712,7 +16363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16734,7 +16385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16756,7 +16407,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16776,7 +16427,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16796,7 +16447,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16816,7 +16467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16836,7 +16487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16856,7 +16507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16876,7 +16527,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16896,7 +16547,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16916,7 +16567,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16936,7 +16587,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16956,7 +16607,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16976,7 +16627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -16996,7 +16647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17016,7 +16667,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17036,7 +16687,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17056,7 +16707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17078,7 +16729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17098,7 +16749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17118,7 +16769,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17138,7 +16789,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17158,7 +16809,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17178,7 +16829,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17198,7 +16849,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17218,7 +16869,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17238,7 +16889,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17258,7 +16909,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17278,7 +16929,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17298,7 +16949,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17318,7 +16969,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17338,7 +16989,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17358,7 +17009,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17378,7 +17029,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17398,7 +17049,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17418,7 +17069,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17438,7 +17089,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17458,7 +17109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 18, + "teamId": "1146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17478,7 +17129,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17498,7 +17149,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17518,7 +17169,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17538,7 +17189,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17558,7 +17209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17578,7 +17229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17598,7 +17249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17618,7 +17269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17638,7 +17289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17658,7 +17309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17678,7 +17329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17698,7 +17349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17720,7 +17371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17740,7 +17391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17760,7 +17411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17780,7 +17431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17800,7 +17451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17822,7 +17473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17842,7 +17493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17862,7 +17513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17882,7 +17533,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17902,7 +17553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17922,7 +17573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17942,7 +17593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17962,7 +17613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -17982,7 +17633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18004,7 +17655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18026,7 +17677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18048,7 +17699,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18070,7 +17721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18090,7 +17741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18110,7 +17761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18130,7 +17781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18150,7 +17801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18170,7 +17821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18190,7 +17841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18210,7 +17861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18230,7 +17881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18250,7 +17901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18270,7 +17921,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18290,7 +17941,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 19, + "teamId": "2656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18310,7 +17961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18330,7 +17981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18350,7 +18001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18370,7 +18021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18390,7 +18041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18410,7 +18061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18430,7 +18081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18450,7 +18101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18470,7 +18121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18490,7 +18141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18510,7 +18161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18530,7 +18181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18550,7 +18201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18570,7 +18221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18590,7 +18241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18610,7 +18261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18630,7 +18281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18650,7 +18301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18670,7 +18321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18690,7 +18341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18710,7 +18361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18730,7 +18381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18750,7 +18401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18770,7 +18421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18790,7 +18441,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18810,7 +18461,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18830,7 +18481,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18850,7 +18501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18870,7 +18521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18890,7 +18541,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18910,7 +18561,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18930,7 +18581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18950,7 +18601,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18970,7 +18621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -18990,7 +18641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19010,7 +18661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19030,7 +18681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19050,7 +18701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19070,7 +18721,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19090,7 +18741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19110,7 +18761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 20, + "teamId": "1342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19130,7 +18781,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19150,7 +18801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19170,7 +18821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19190,7 +18841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19210,7 +18861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19230,7 +18881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19250,7 +18901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19270,7 +18921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19290,7 +18941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19310,7 +18961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19330,7 +18981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19350,7 +19001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19370,7 +19021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19390,7 +19041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19410,7 +19061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19430,7 +19081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19450,7 +19101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19470,7 +19121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19490,7 +19141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19510,7 +19161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19530,7 +19181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19550,7 +19201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19570,7 +19221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19590,7 +19241,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 21, + "teamId": "1145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19610,7 +19261,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19630,7 +19281,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19650,7 +19301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19670,7 +19321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19690,7 +19341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19710,7 +19361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19730,7 +19381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19750,7 +19401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19770,7 +19421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19790,7 +19441,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 22, + "teamId": "2254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19810,7 +19461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19832,7 +19483,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19852,7 +19503,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19872,7 +19523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19892,7 +19543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19912,7 +19563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19932,7 +19583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19952,7 +19603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19972,7 +19623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -19992,7 +19643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20014,7 +19665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20034,7 +19685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20054,7 +19705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20074,7 +19725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20094,7 +19745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20114,7 +19765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20134,7 +19785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20154,7 +19805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20174,7 +19825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20194,7 +19845,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20214,7 +19865,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20234,7 +19885,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20254,7 +19905,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20274,7 +19925,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 23, + "teamId": "2953", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20294,7 +19945,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20314,7 +19965,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20334,7 +19985,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20354,7 +20005,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20374,7 +20025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20394,7 +20045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20414,7 +20065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20434,7 +20085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20456,7 +20107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20476,7 +20127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20496,7 +20147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20516,7 +20167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20536,7 +20187,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20556,7 +20207,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20576,7 +20227,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20596,7 +20247,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20616,7 +20267,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20636,7 +20287,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20656,7 +20307,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 24, + "teamId": "2050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20676,7 +20327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20696,7 +20347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20716,7 +20367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20736,7 +20387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20756,7 +20407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20776,7 +20427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20796,7 +20447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20816,7 +20467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20836,7 +20487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20858,7 +20509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20878,7 +20529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20898,7 +20549,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20918,7 +20569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20938,7 +20589,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20958,7 +20609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20978,7 +20629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -20998,7 +20649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21018,7 +20669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21038,7 +20689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21058,7 +20709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21078,7 +20729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21098,7 +20749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21118,7 +20769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21138,7 +20789,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21158,7 +20809,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21178,7 +20829,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21198,7 +20849,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21218,7 +20869,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21238,7 +20889,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 25, + "teamId": "2843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21258,7 +20909,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21278,7 +20929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21298,7 +20949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21318,7 +20969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21338,7 +20989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21358,7 +21009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21380,7 +21031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21400,7 +21051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21420,7 +21071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21440,7 +21091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21460,7 +21111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21480,7 +21131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21500,7 +21151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21520,7 +21171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21540,7 +21191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21560,7 +21211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21580,7 +21231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21600,7 +21251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21620,7 +21271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21640,7 +21291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21660,7 +21311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21680,7 +21331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21700,7 +21351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21720,7 +21371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21740,7 +21391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21760,7 +21411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21780,7 +21431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21800,7 +21451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21820,7 +21471,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21840,7 +21491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21860,7 +21511,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21880,7 +21531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21900,7 +21551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21920,7 +21571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21942,7 +21593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21964,7 +21615,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -21984,7 +21635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22004,7 +21655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22024,7 +21675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22044,7 +21695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22064,7 +21715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22084,7 +21735,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 26, + "teamId": "2752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22104,7 +21755,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22124,7 +21775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22144,7 +21795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22164,7 +21815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22184,7 +21835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22204,7 +21855,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22224,7 +21875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22244,7 +21895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22264,7 +21915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22284,7 +21935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22304,7 +21955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22324,7 +21975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22344,7 +21995,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 27, + "teamId": "1653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22364,7 +22015,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22384,7 +22035,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22404,7 +22055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22424,7 +22075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22444,7 +22095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22464,7 +22115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22484,7 +22135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22504,7 +22155,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22524,7 +22175,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22544,7 +22195,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22564,7 +22215,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22584,7 +22235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22604,7 +22255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22624,7 +22275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22644,7 +22295,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22664,7 +22315,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22686,7 +22337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22706,7 +22357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22726,7 +22377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22746,7 +22397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22766,7 +22417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22786,7 +22437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22806,7 +22457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22826,7 +22477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22846,7 +22497,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22866,7 +22517,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22886,7 +22537,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22906,7 +22557,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22926,7 +22577,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22948,7 +22599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22968,7 +22619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -22988,7 +22639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23008,7 +22659,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23028,7 +22679,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23048,7 +22699,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23068,7 +22719,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23088,7 +22739,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 28, + "teamId": "1650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23108,7 +22759,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23128,7 +22779,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23148,7 +22799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23168,7 +22819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23188,7 +22839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23208,7 +22859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23228,7 +22879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23248,7 +22899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23268,7 +22919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23288,7 +22939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23308,7 +22959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23328,7 +22979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23348,7 +22999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23368,7 +23019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23388,7 +23039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23408,7 +23059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23428,7 +23079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23448,7 +23099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23468,7 +23119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23488,7 +23139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23508,7 +23159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23528,7 +23179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23548,7 +23199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23568,7 +23219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23588,7 +23239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23608,7 +23259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23628,7 +23279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23648,7 +23299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23668,7 +23319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23688,7 +23339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23708,7 +23359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23728,7 +23379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23748,7 +23399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23768,7 +23419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23788,7 +23439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23808,7 +23459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23828,7 +23479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23848,7 +23499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23868,7 +23519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23888,7 +23539,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23908,7 +23559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23928,7 +23579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23948,7 +23599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23968,7 +23619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -23988,7 +23639,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24008,7 +23659,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24028,7 +23679,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24048,7 +23699,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24068,7 +23719,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24090,7 +23741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24110,7 +23761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24130,7 +23781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24150,7 +23801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24170,7 +23821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24190,7 +23841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24210,7 +23861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24230,7 +23881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 29, + "teamId": "2448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24250,7 +23901,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24272,7 +23923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24292,7 +23943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24312,7 +23963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24332,7 +23983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24352,7 +24003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24372,7 +24023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24392,7 +24043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24412,7 +24063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24432,7 +24083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24452,7 +24103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24472,7 +24123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24492,7 +24143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24512,7 +24163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24532,7 +24183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24552,7 +24203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24572,7 +24223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24592,7 +24243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24612,7 +24263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24632,7 +24283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24652,7 +24303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24672,7 +24323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24692,7 +24343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24712,7 +24363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24732,7 +24383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24752,7 +24403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24772,7 +24423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24792,7 +24443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24812,7 +24463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24832,7 +24483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24852,7 +24503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24872,7 +24523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24892,7 +24543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24912,7 +24563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24932,7 +24583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24952,7 +24603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24972,7 +24623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -24992,7 +24643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25012,7 +24663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25032,7 +24683,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25052,7 +24703,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25072,7 +24723,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25092,7 +24743,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25112,7 +24763,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25132,7 +24783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25152,7 +24803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25172,7 +24823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25192,7 +24843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25212,7 +24863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25232,7 +24883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25252,7 +24903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25272,7 +24923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25292,7 +24943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25312,7 +24963,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25332,7 +24983,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25352,7 +25003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25372,7 +25023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25392,7 +25043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25412,7 +25063,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 30, + "teamId": "2654", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25432,7 +25083,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25452,7 +25103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25472,7 +25123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25492,7 +25143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25512,7 +25163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25532,7 +25183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25552,7 +25203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25572,7 +25223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25592,7 +25243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25612,7 +25263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25632,7 +25283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25652,7 +25303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25672,7 +25323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25692,7 +25343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25712,7 +25363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25732,7 +25383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25752,7 +25403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25772,7 +25423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25792,7 +25443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25812,7 +25463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25832,7 +25483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25852,7 +25503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25872,7 +25523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25892,7 +25543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25912,7 +25563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25932,7 +25583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 31, + "teamId": "2955", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25952,7 +25603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25972,7 +25623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -25992,7 +25643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26012,7 +25663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26032,7 +25683,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26052,7 +25703,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26072,7 +25723,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26092,7 +25743,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26112,7 +25763,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26132,7 +25783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26152,7 +25803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26172,7 +25823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26192,7 +25843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26212,7 +25863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26232,7 +25883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26252,7 +25903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26272,7 +25923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26292,7 +25943,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26312,7 +25963,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26332,7 +25983,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26352,7 +26003,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26372,7 +26023,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26392,7 +26043,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26412,7 +26063,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 32, + "teamId": "3249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26432,7 +26083,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26452,7 +26103,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26472,7 +26123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26492,7 +26143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26512,7 +26163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26532,7 +26183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26552,7 +26203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26572,7 +26223,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 33, + "teamId": "2849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26592,7 +26243,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26612,7 +26263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26632,7 +26283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26652,7 +26303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26672,7 +26323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26692,7 +26343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26712,7 +26363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26732,7 +26383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26752,7 +26403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26772,7 +26423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26792,7 +26443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26812,7 +26463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26832,7 +26483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26852,7 +26503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26872,7 +26523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26892,7 +26543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26912,7 +26563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26932,7 +26583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26952,7 +26603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26972,7 +26623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 34, + "teamId": "3043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -26992,7 +26643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27012,7 +26663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27032,7 +26683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27052,7 +26703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27072,7 +26723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27092,7 +26743,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27112,7 +26763,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27132,7 +26783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27152,7 +26803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27172,7 +26823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27192,7 +26843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27212,7 +26863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27232,7 +26883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27252,7 +26903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27272,7 +26923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27292,7 +26943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27312,7 +26963,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 35, + "teamId": "1554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27332,7 +26983,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27352,7 +27003,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27372,7 +27023,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27392,7 +27043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27412,7 +27063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27432,7 +27083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27452,7 +27103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27472,7 +27123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27492,7 +27143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27512,7 +27163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27532,7 +27183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27552,7 +27203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27572,7 +27223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27592,7 +27243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27612,7 +27263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27632,7 +27283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27652,7 +27303,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27672,7 +27323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27692,7 +27343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27712,7 +27363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27732,7 +27383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27752,7 +27403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27772,7 +27423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27794,7 +27445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27816,7 +27467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27836,7 +27487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27856,7 +27507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27876,7 +27527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27896,7 +27547,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27916,7 +27567,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27936,7 +27587,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27958,7 +27609,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -27980,7 +27631,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28000,7 +27651,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 36, + "teamId": "2242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28020,7 +27671,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28040,7 +27691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28060,7 +27711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28080,7 +27731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28100,7 +27751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28120,7 +27771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28140,7 +27791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28160,7 +27811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28180,7 +27831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28200,7 +27851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28220,7 +27871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28240,7 +27891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28260,7 +27911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28280,7 +27931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28300,7 +27951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28320,7 +27971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28340,7 +27991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28360,7 +28011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28380,7 +28031,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28400,7 +28051,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28420,7 +28071,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28440,7 +28091,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28460,7 +28111,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28480,7 +28131,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 37, + "teamId": "1152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28500,7 +28151,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28520,7 +28171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28540,7 +28191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28560,7 +28211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28580,7 +28231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28600,7 +28251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28620,7 +28271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28640,7 +28291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28660,7 +28311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28680,7 +28331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28700,7 +28351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28720,7 +28371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28740,7 +28391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28760,7 +28411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28780,7 +28431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28800,7 +28451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28820,7 +28471,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28840,7 +28491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28860,7 +28511,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28880,7 +28531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28900,7 +28551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28920,7 +28571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28940,7 +28591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28960,7 +28611,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -28980,7 +28631,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 38, + "teamId": "2053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29000,7 +28651,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29020,7 +28671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29040,7 +28691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29060,7 +28711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29080,7 +28731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29100,7 +28751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29120,7 +28771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29140,7 +28791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29160,7 +28811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29180,7 +28831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29200,7 +28851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29220,7 +28871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29240,7 +28891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29260,7 +28911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29280,7 +28931,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29300,7 +28951,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29320,7 +28971,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29340,7 +28991,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29360,7 +29011,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29380,7 +29031,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29400,7 +29051,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 39, + "teamId": "3042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29422,7 +29073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29442,7 +29093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29462,7 +29113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29482,7 +29133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29502,7 +29153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29522,7 +29173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29542,7 +29193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29562,7 +29213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29582,7 +29233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29602,7 +29253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29622,7 +29273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29642,7 +29293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29662,7 +29313,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29682,7 +29333,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29702,7 +29353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29722,7 +29373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29742,7 +29393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29762,7 +29413,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 40, + "teamId": "1748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29782,7 +29433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29802,7 +29453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29822,7 +29473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29842,7 +29493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29862,7 +29513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29882,7 +29533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29902,7 +29553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29922,7 +29573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29942,7 +29593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29962,7 +29613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -29982,7 +29633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30002,7 +29653,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30022,7 +29673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30042,7 +29693,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30062,7 +29713,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30082,7 +29733,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30102,7 +29753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30122,7 +29773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30142,7 +29793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30162,7 +29813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30182,7 +29833,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30202,7 +29853,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30222,7 +29873,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30242,7 +29893,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30262,7 +29913,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30282,7 +29933,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30302,7 +29953,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30322,7 +29973,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 41, + "teamId": "2642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30342,7 +29993,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30362,7 +30013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30382,7 +30033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30402,7 +30053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30422,7 +30073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30442,7 +30093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30462,7 +30113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30482,7 +30133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30502,7 +30153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30522,7 +30173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30544,7 +30195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30564,7 +30215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30584,7 +30235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30604,7 +30255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30624,7 +30275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30644,7 +30295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30664,7 +30315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30684,7 +30335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30704,7 +30355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30724,7 +30375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30744,7 +30395,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30764,7 +30415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30784,7 +30435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30804,7 +30455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30824,7 +30475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30844,7 +30495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30864,7 +30515,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30886,7 +30537,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30906,7 +30557,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30926,7 +30577,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30946,7 +30597,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30966,7 +30617,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -30986,7 +30637,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31006,7 +30657,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31026,7 +30677,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 42, + "teamId": "1645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31046,7 +30697,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31066,7 +30717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31086,7 +30737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31106,7 +30757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31126,7 +30777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31146,7 +30797,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31166,7 +30817,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31186,7 +30837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31206,7 +30857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31226,7 +30877,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31246,7 +30897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31266,7 +30917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31286,7 +30937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31306,7 +30957,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31326,7 +30977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31346,7 +30997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31366,7 +31017,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31386,7 +31037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31406,7 +31057,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31426,7 +31077,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31446,7 +31097,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31466,7 +31117,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31486,7 +31137,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31506,7 +31157,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31526,7 +31177,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31546,7 +31197,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31566,7 +31217,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31586,7 +31237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31606,7 +31257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31626,7 +31277,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31646,7 +31297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31666,7 +31317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31688,7 +31339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31708,7 +31359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31728,7 +31379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31748,7 +31399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31768,7 +31419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31788,7 +31439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31808,7 +31459,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31828,7 +31479,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31848,7 +31499,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31868,7 +31519,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31888,7 +31539,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 43, + "teamId": "2749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31908,7 +31559,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31928,7 +31579,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31948,7 +31599,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31968,7 +31619,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -31988,7 +31639,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32008,7 +31659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32028,7 +31679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32048,7 +31699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32068,7 +31719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32088,7 +31739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32108,7 +31759,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32128,7 +31779,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32148,7 +31799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32168,7 +31819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32188,7 +31839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32208,7 +31859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32228,7 +31879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32248,7 +31899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32268,7 +31919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32288,7 +31939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32308,7 +31959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32328,7 +31979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32348,7 +31999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32368,7 +32019,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32388,7 +32039,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32408,7 +32059,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32428,7 +32079,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32448,7 +32099,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32468,7 +32119,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 44, + "teamId": "3154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32488,7 +32139,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32508,7 +32159,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32528,7 +32179,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32548,7 +32199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32568,7 +32219,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32588,7 +32239,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32608,7 +32259,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32628,7 +32279,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32648,7 +32299,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32668,7 +32319,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32688,7 +32339,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32708,7 +32359,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32728,7 +32379,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32748,7 +32399,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32768,7 +32419,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32788,7 +32439,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32808,7 +32459,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32828,7 +32479,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32848,7 +32499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32868,7 +32519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32888,7 +32539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32908,7 +32559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32928,7 +32579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32948,7 +32599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32968,7 +32619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -32988,7 +32639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33008,7 +32659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33028,7 +32679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33048,7 +32699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33068,7 +32719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33088,7 +32739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33108,7 +32759,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33128,7 +32779,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33148,7 +32799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33168,7 +32819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33188,7 +32839,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33208,7 +32859,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33228,7 +32879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33248,7 +32899,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33268,7 +32919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33288,7 +32939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33308,7 +32959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33328,7 +32979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33348,7 +32999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33368,7 +33019,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33388,7 +33039,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33408,7 +33059,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33428,7 +33079,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33448,7 +33099,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33468,7 +33119,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33488,7 +33139,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33508,7 +33159,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33528,7 +33179,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33548,7 +33199,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33568,7 +33219,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33588,7 +33239,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33608,7 +33259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33628,7 +33279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33650,7 +33301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33670,7 +33321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33690,7 +33341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33710,7 +33361,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33730,7 +33381,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 45, + "teamId": "1755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33750,7 +33401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33770,7 +33421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33790,7 +33441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33810,7 +33461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33830,7 +33481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33850,7 +33501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33870,7 +33521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33890,7 +33541,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33910,7 +33561,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33930,7 +33581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33950,7 +33601,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33970,7 +33621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -33990,7 +33641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34010,7 +33661,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 46, + "teamId": "2252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34030,7 +33681,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34050,7 +33701,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34070,7 +33721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34090,7 +33741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34110,7 +33761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34130,7 +33781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34150,7 +33801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34170,7 +33821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34190,7 +33841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34210,7 +33861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34230,7 +33881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34250,7 +33901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34270,7 +33921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34290,7 +33941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34310,7 +33961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34330,7 +33981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34350,7 +34001,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34370,7 +34021,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34390,7 +34041,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34410,7 +34061,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34430,7 +34081,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 47, + "teamId": "2943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34450,7 +34101,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34470,7 +34121,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34490,7 +34141,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34510,7 +34161,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34530,7 +34181,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34550,7 +34201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34570,7 +34221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34590,7 +34241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34610,7 +34261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34630,7 +34281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 48, + "teamId": "2952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34650,7 +34301,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34670,7 +34321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34690,7 +34341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34710,7 +34361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34730,7 +34381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34750,7 +34401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34770,7 +34421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34790,7 +34441,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34810,7 +34461,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34830,7 +34481,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34850,7 +34501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34870,7 +34521,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34890,7 +34541,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34910,7 +34561,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34930,7 +34581,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34950,7 +34601,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 49, + "teamId": "3050", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34970,7 +34621,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -34990,7 +34641,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35010,7 +34661,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35030,7 +34681,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35050,7 +34701,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35070,7 +34721,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35090,7 +34741,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35110,7 +34761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35130,7 +34781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35150,7 +34801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35170,7 +34821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35190,7 +34841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35210,7 +34861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35230,7 +34881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35250,7 +34901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35270,7 +34921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35290,7 +34941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35310,7 +34961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35330,7 +34981,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35350,7 +35001,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35370,7 +35021,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 50, + "teamId": "1450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35390,7 +35041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35410,7 +35061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35430,7 +35081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35450,7 +35101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35470,7 +35121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35490,7 +35141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35510,7 +35161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35530,7 +35181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35550,7 +35201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35570,7 +35221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 51, + "teamId": "1547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35590,7 +35241,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35610,7 +35261,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35630,7 +35281,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35650,7 +35301,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35670,7 +35321,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35690,7 +35341,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35710,7 +35361,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35730,7 +35381,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35750,7 +35401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35770,7 +35421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35790,7 +35441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35810,7 +35461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35830,7 +35481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35850,7 +35501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35870,7 +35521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35890,7 +35541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35910,7 +35561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35930,7 +35581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35950,7 +35601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35970,7 +35621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -35990,7 +35641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36010,7 +35661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36030,7 +35681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36050,7 +35701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36070,7 +35721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36090,7 +35741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 52, + "teamId": "2346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36110,7 +35761,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36130,7 +35781,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36150,7 +35801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36170,7 +35821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36190,7 +35841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36210,7 +35861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36230,7 +35881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36250,7 +35901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36270,7 +35921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36290,7 +35941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36310,7 +35961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36330,7 +35981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36350,7 +36001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36370,7 +36021,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36390,7 +36041,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36410,7 +36061,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36430,7 +36081,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36450,7 +36101,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36470,7 +36121,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36490,7 +36141,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36510,7 +36161,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36530,7 +36181,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 53, + "teamId": "1643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36550,7 +36201,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36570,7 +36221,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36590,7 +36241,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36610,7 +36261,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36630,7 +36281,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36650,7 +36301,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36670,7 +36321,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36690,7 +36341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36710,7 +36361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36730,7 +36381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36750,7 +36401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36770,7 +36421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36790,7 +36441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36810,7 +36461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36830,7 +36481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36850,7 +36501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36870,7 +36521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36890,7 +36541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36910,7 +36561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36930,7 +36581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36950,7 +36601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36970,7 +36621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -36990,7 +36641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37010,7 +36661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37030,7 +36681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37050,7 +36701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37070,7 +36721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37090,7 +36741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37110,7 +36761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37130,7 +36781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37150,7 +36801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37170,7 +36821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37190,7 +36841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37210,7 +36861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37230,7 +36881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37250,7 +36901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37270,7 +36921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37290,7 +36941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37310,7 +36961,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 54, + "teamId": "2155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37330,7 +36981,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37350,7 +37001,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37370,7 +37021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37390,7 +37041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37410,7 +37061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37430,7 +37081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37450,7 +37101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37470,7 +37121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37490,7 +37141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37510,7 +37161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37530,7 +37181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37550,7 +37201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37570,7 +37221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37590,7 +37241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37610,7 +37261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37630,7 +37281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37650,7 +37301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 55, + "teamId": "2350", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37670,7 +37321,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37690,7 +37341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37710,7 +37361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37730,7 +37381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37750,7 +37401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37770,7 +37421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37790,7 +37441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37810,7 +37461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37830,7 +37481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37850,7 +37501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37870,7 +37521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37890,7 +37541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37910,7 +37561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37930,7 +37581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37950,7 +37601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37970,7 +37621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -37990,7 +37641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38010,7 +37661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38030,7 +37681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38050,7 +37701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38070,7 +37721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38090,7 +37741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38110,7 +37761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38130,7 +37781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38150,7 +37801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38170,7 +37821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38190,7 +37841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38212,7 +37863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38232,7 +37883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38252,7 +37903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38272,7 +37923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38292,7 +37943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38312,7 +37963,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38332,7 +37983,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 56, + "teamId": "2956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38352,7 +38003,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38372,7 +38023,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38394,7 +38045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38414,7 +38065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38434,7 +38085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38454,7 +38105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38474,7 +38125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38494,7 +38145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38514,7 +38165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38534,7 +38185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38554,7 +38205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38574,7 +38225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38594,7 +38245,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38614,7 +38265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38634,7 +38285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38654,7 +38305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38676,7 +38327,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38696,7 +38347,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38716,7 +38367,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38736,7 +38387,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38756,7 +38407,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38776,7 +38427,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38796,7 +38447,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38816,7 +38467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38836,7 +38487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38856,7 +38507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38876,7 +38527,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38896,7 +38547,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38916,7 +38567,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38936,7 +38587,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38956,7 +38607,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38976,7 +38627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -38996,7 +38647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39016,7 +38667,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39036,7 +38687,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39056,7 +38707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39076,7 +38727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39096,7 +38747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39116,7 +38767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39136,7 +38787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39156,7 +38807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39176,7 +38827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39196,7 +38847,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39216,7 +38867,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39236,7 +38887,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39256,7 +38907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39276,7 +38927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39296,7 +38947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 57, + "teamId": "2450", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39316,7 +38967,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39336,7 +38987,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39356,7 +39007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39376,7 +39027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39396,7 +39047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39416,7 +39067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39436,7 +39087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39456,7 +39107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39476,7 +39127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39496,7 +39147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39516,7 +39167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39536,7 +39187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39556,7 +39207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39576,7 +39227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39596,7 +39247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39616,7 +39267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39636,7 +39287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39656,7 +39307,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39676,7 +39327,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39696,7 +39347,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39716,7 +39367,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39736,7 +39387,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39756,7 +39407,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 58, + "teamId": "3145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39776,7 +39427,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39796,7 +39447,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39816,7 +39467,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39836,7 +39487,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39856,7 +39507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39876,7 +39527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39896,7 +39547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39916,7 +39567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39936,7 +39587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39956,7 +39607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39976,7 +39627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -39996,7 +39647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40016,7 +39667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40036,7 +39687,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40056,7 +39707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40076,7 +39727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40096,7 +39747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40116,7 +39767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40136,7 +39787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40156,7 +39807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40176,7 +39827,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40196,7 +39847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40216,7 +39867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40236,7 +39887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40256,7 +39907,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40276,7 +39927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40296,7 +39947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40316,7 +39967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40336,7 +39987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 59, + "teamId": "2446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40356,7 +40007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40376,7 +40027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40396,7 +40047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40416,7 +40067,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40436,7 +40087,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40456,7 +40107,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40476,7 +40127,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40496,7 +40147,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40516,7 +40167,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 60, + "teamId": "1241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40536,7 +40187,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40556,7 +40207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40576,7 +40227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40596,7 +40247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40616,7 +40267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40636,7 +40287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40656,7 +40307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40676,7 +40327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40696,7 +40347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40716,7 +40367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40736,7 +40387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40756,7 +40407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40776,7 +40427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40796,7 +40447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40816,7 +40467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40836,7 +40487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40856,7 +40507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40876,7 +40527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 61, + "teamId": "2045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40896,7 +40547,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40916,7 +40567,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40936,7 +40587,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40956,7 +40607,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40976,7 +40627,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -40996,7 +40647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41016,7 +40667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41036,7 +40687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41056,7 +40707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41076,7 +40727,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41096,7 +40747,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41116,7 +40767,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41136,7 +40787,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41156,7 +40807,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41176,7 +40827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41196,7 +40847,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 62, + "teamId": "2049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41216,7 +40867,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41236,7 +40887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41256,7 +40907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41276,7 +40927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41296,7 +40947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41316,7 +40967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41336,7 +40987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41356,7 +41007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41376,7 +41027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41396,7 +41047,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41416,7 +41067,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41436,7 +41087,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41456,7 +41107,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41476,7 +41127,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41496,7 +41147,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41516,7 +41167,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 63, + "teamId": "3243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41536,7 +41187,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41556,7 +41207,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41576,7 +41227,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41596,7 +41247,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41616,7 +41267,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41636,7 +41287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41656,7 +41307,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41676,7 +41327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41696,7 +41347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41716,7 +41367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41736,7 +41387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41756,7 +41407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41776,7 +41427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41796,7 +41447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41816,7 +41467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41836,7 +41487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41856,7 +41507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41876,7 +41527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41896,7 +41547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41918,7 +41569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41940,7 +41591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41960,7 +41611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -41980,7 +41631,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42000,7 +41651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42020,7 +41671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42040,7 +41691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42060,7 +41711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42080,7 +41731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42100,7 +41751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42120,7 +41771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42140,7 +41791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42160,7 +41811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42180,7 +41831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42200,7 +41851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42220,7 +41871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42240,7 +41891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42260,7 +41911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42280,7 +41931,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42300,7 +41951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42320,7 +41971,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42340,7 +41991,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42360,7 +42011,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 64, + "teamId": "1647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42380,7 +42031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42400,7 +42051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42420,7 +42071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42440,7 +42091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42460,7 +42111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42480,7 +42131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42500,7 +42151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42520,7 +42171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42540,7 +42191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42560,7 +42211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42580,7 +42231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42600,7 +42251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42620,7 +42271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42640,7 +42291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42660,7 +42311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42680,7 +42331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42700,7 +42351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42722,7 +42373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42742,7 +42393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42762,7 +42413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42782,7 +42433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42802,7 +42453,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42822,7 +42473,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42842,7 +42493,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42862,7 +42513,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42882,7 +42533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42902,7 +42553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42922,7 +42573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42942,7 +42593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 65, + "teamId": "2746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42962,7 +42613,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -42984,7 +42635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43004,7 +42655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43024,7 +42675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43044,7 +42695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43064,7 +42715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43084,7 +42735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43104,7 +42755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43124,7 +42775,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43144,7 +42795,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43164,7 +42815,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43184,7 +42835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43204,7 +42855,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43224,7 +42875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43244,7 +42895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43264,7 +42915,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 66, + "teamId": "2550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43284,7 +42935,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43304,7 +42955,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43324,7 +42975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43344,7 +42995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43364,7 +43015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43384,7 +43035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43404,7 +43055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43424,7 +43075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43444,7 +43095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43464,7 +43115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43484,7 +43135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 67, + "teamId": "1154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43504,7 +43155,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43524,7 +43175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43544,7 +43195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43564,7 +43215,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43584,7 +43235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43604,7 +43255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 68, + "teamId": "2644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43624,7 +43275,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43644,7 +43295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43664,7 +43315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43684,7 +43335,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43704,7 +43355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43724,7 +43375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 69, + "teamId": "1951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43744,7 +43395,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43764,7 +43415,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43784,7 +43435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43804,7 +43455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43824,7 +43475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43844,7 +43495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43864,7 +43515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43884,7 +43535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43904,7 +43555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43924,7 +43575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43944,7 +43595,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43964,7 +43615,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -43984,7 +43635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44004,7 +43655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44024,7 +43675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44044,7 +43695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44064,7 +43715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44084,7 +43735,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44104,7 +43755,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44124,7 +43775,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44144,7 +43795,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44164,7 +43815,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44184,7 +43835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44204,7 +43855,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44224,7 +43875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44244,7 +43895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44264,7 +43915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44284,7 +43935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44304,7 +43955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44324,7 +43975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44344,7 +43995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 70, + "teamId": "3253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44364,7 +44015,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44384,7 +44035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44404,7 +44055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44424,7 +44075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44444,7 +44095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44464,7 +44115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44484,7 +44135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44504,7 +44155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44524,7 +44175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44544,7 +44195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44564,7 +44215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44584,7 +44235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44604,7 +44255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44624,7 +44275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44644,7 +44295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44664,7 +44315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44684,7 +44335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44704,7 +44355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44724,7 +44375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44744,7 +44395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44764,7 +44415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44784,7 +44435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44804,7 +44455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44824,7 +44475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44844,7 +44495,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 71, + "teamId": "1751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44864,7 +44515,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44884,7 +44535,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44904,7 +44555,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44924,7 +44575,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44944,7 +44595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44964,7 +44615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -44984,7 +44635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45004,7 +44655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45024,7 +44675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45044,7 +44695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45064,7 +44715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45084,7 +44735,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45104,7 +44755,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45126,7 +44777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45146,7 +44797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45166,7 +44817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45186,7 +44837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45206,7 +44857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45226,7 +44877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45246,7 +44897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45266,7 +44917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45286,7 +44937,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45306,7 +44957,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45326,7 +44977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45346,7 +44997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45366,7 +45017,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45386,7 +45037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45406,7 +45057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45426,7 +45077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45446,7 +45097,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45466,7 +45117,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45486,7 +45137,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45506,7 +45157,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45526,7 +45177,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45546,7 +45197,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45566,7 +45217,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45586,7 +45237,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45606,7 +45257,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45626,7 +45277,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45646,7 +45297,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45666,7 +45317,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 72, + "teamId": "2542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45686,7 +45337,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45706,7 +45357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45726,7 +45377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45746,7 +45397,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45766,7 +45417,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45786,7 +45437,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45806,7 +45457,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45826,7 +45477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45846,7 +45497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45866,7 +45517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45886,7 +45537,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45906,7 +45557,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45926,7 +45577,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45946,7 +45597,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45966,7 +45617,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -45986,7 +45637,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46006,7 +45657,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46026,7 +45677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46046,7 +45697,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46066,7 +45717,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46086,7 +45737,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46106,7 +45757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46126,7 +45777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46146,7 +45797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46166,7 +45817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46186,7 +45837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46206,7 +45857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46226,7 +45877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46246,7 +45897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46266,7 +45917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 73, + "teamId": "3144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46286,7 +45937,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46306,7 +45957,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46326,7 +45977,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46346,7 +45997,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46366,7 +46017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46386,7 +46037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46406,7 +46057,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46426,7 +46077,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46446,7 +46097,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46466,7 +46117,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46486,7 +46137,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46506,7 +46157,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46526,7 +46177,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46546,7 +46197,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 74, + "teamId": "2047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46566,7 +46217,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46586,7 +46237,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46606,7 +46257,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46626,7 +46277,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46646,7 +46297,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46666,7 +46317,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46686,7 +46337,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46706,7 +46357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46726,7 +46377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46746,7 +46397,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46766,7 +46417,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46786,7 +46437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46806,7 +46457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46826,7 +46477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46846,7 +46497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46866,7 +46517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46886,7 +46537,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46906,7 +46557,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46926,7 +46577,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46946,7 +46597,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46966,7 +46617,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -46986,7 +46637,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47006,7 +46657,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47026,7 +46677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47046,7 +46697,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47066,7 +46717,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47086,7 +46737,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47106,7 +46757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47126,7 +46777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47146,7 +46797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47166,7 +46817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47186,7 +46837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47206,7 +46857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47226,7 +46877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47246,7 +46897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47266,7 +46917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47286,7 +46937,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47306,7 +46957,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47326,7 +46977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47346,7 +46997,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47366,7 +47017,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47386,7 +47037,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47406,7 +47057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47426,7 +47077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47446,7 +47097,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47468,7 +47119,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47488,7 +47139,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47508,7 +47159,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47528,7 +47179,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47548,7 +47199,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47568,7 +47219,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47588,7 +47239,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47608,7 +47259,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47628,7 +47279,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47648,7 +47299,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47668,7 +47319,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47688,7 +47339,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47708,7 +47359,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47728,7 +47379,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47748,7 +47399,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47768,7 +47419,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47788,7 +47439,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47808,7 +47459,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47828,7 +47479,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 75, + "teamId": "2443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47848,7 +47499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47868,7 +47519,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47888,7 +47539,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47908,7 +47559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47928,7 +47579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47948,7 +47599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47968,7 +47619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -47988,7 +47639,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48008,7 +47659,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48028,7 +47679,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48048,7 +47699,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48068,7 +47719,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48088,7 +47739,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48108,7 +47759,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48128,7 +47779,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48148,7 +47799,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 76, + "teamId": "2549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48168,7 +47819,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48188,7 +47839,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48208,7 +47859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48228,7 +47879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48248,7 +47899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48268,7 +47919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48288,7 +47939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48308,7 +47959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48328,7 +47979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48348,7 +47999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48368,7 +48019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48388,7 +48039,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48408,7 +48059,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48428,7 +48079,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48448,7 +48099,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48468,7 +48119,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48488,7 +48139,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48508,7 +48159,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48528,7 +48179,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48548,7 +48199,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48568,7 +48219,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48588,7 +48239,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48608,7 +48259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48628,7 +48279,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 77, + "teamId": "1346", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48648,7 +48299,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48668,7 +48319,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48688,7 +48339,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48708,7 +48359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48728,7 +48379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48748,7 +48399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48768,7 +48419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48788,7 +48439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48808,7 +48459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48828,7 +48479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48848,7 +48499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48868,7 +48519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48888,7 +48539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48908,7 +48559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48928,7 +48579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48948,7 +48599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48968,7 +48619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -48988,7 +48639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49008,7 +48659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49028,7 +48679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49048,7 +48699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49068,7 +48719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49088,7 +48739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49108,7 +48759,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49128,7 +48779,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49148,7 +48799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49168,7 +48819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49188,7 +48839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49208,7 +48859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49228,7 +48879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49248,7 +48899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49268,7 +48919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49288,7 +48939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49308,7 +48959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49328,7 +48979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49348,7 +48999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49368,7 +49019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49388,7 +49039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49408,7 +49059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49430,7 +49081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49450,7 +49101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49470,7 +49121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49490,7 +49141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49510,7 +49161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49530,7 +49181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49550,7 +49201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49570,7 +49221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49590,7 +49241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49610,7 +49261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49630,7 +49281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49650,7 +49301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49670,7 +49321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49692,7 +49343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49712,7 +49363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49732,7 +49383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49752,7 +49403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49772,7 +49423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49792,7 +49443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49812,7 +49463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49832,7 +49483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49852,7 +49503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49872,7 +49523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49892,7 +49543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49912,7 +49563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49932,7 +49583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 78, + "teamId": "2442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49952,7 +49603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49972,7 +49623,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -49992,7 +49643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50012,7 +49663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50032,7 +49683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50052,7 +49703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50072,7 +49723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50092,7 +49743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50112,7 +49763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50132,7 +49783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50152,7 +49803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50172,7 +49823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50192,7 +49843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50212,7 +49863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50232,7 +49883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50252,7 +49903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50272,7 +49923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50292,7 +49943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50312,7 +49963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50332,7 +49983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50352,7 +50003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50372,7 +50023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50392,7 +50043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50412,7 +50063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50432,7 +50083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50452,7 +50103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50472,7 +50123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50492,7 +50143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50512,7 +50163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50532,7 +50183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50552,7 +50203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50572,7 +50223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50592,7 +50243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50612,7 +50263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50632,7 +50283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50652,7 +50303,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50672,7 +50323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50692,7 +50343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50712,7 +50363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50732,7 +50383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50752,7 +50403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50772,7 +50423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50792,7 +50443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50812,7 +50463,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50832,7 +50483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50852,7 +50503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50872,7 +50523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50892,7 +50543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50912,7 +50563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50932,7 +50583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50952,7 +50603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50972,7 +50623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 79, + "teamId": "1548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -50992,7 +50643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51012,7 +50663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51032,7 +50683,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51052,7 +50703,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51072,7 +50723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51092,7 +50743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51112,7 +50763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51132,7 +50783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51152,7 +50803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51172,7 +50823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51192,7 +50843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51212,7 +50863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51232,7 +50883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51252,7 +50903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51272,7 +50923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51292,7 +50943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51312,7 +50963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51332,7 +50983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51352,7 +51003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51372,7 +51023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51392,7 +51043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51412,7 +51063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51432,7 +51083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51454,7 +51105,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51474,7 +51125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51494,7 +51145,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51514,7 +51165,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51534,7 +51185,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51554,7 +51205,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51574,7 +51225,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 80, + "teamId": "1848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51594,7 +51245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51614,7 +51265,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51634,7 +51285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51654,7 +51305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51676,7 +51327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51696,7 +51347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51716,7 +51367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51736,7 +51387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51756,7 +51407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51776,7 +51427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51796,7 +51447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51816,7 +51467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51836,7 +51487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51856,7 +51507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51876,7 +51527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51896,7 +51547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51918,7 +51569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51938,7 +51589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51958,7 +51609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51978,7 +51629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -51998,7 +51649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52018,7 +51669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52038,7 +51689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52058,7 +51709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52078,7 +51729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52098,7 +51749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52118,7 +51769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52138,7 +51789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52158,7 +51809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52178,7 +51829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52198,7 +51849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52218,7 +51869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52238,7 +51889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52258,7 +51909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52278,7 +51929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52298,7 +51949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52318,7 +51969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52338,7 +51989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52358,7 +52009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52378,7 +52029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52398,7 +52049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52418,7 +52069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52438,7 +52089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52458,7 +52109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52478,7 +52129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52498,7 +52149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52518,7 +52169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52538,7 +52189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52558,7 +52209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52578,7 +52229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52598,7 +52249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52618,7 +52269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52638,7 +52289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52658,7 +52309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52678,7 +52329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52698,7 +52349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52718,7 +52369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52738,7 +52389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52758,7 +52409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52778,7 +52429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52798,7 +52449,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52818,7 +52469,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52838,7 +52489,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 81, + "teamId": "2447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52858,7 +52509,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52878,7 +52529,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52898,7 +52549,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52918,7 +52569,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52938,7 +52589,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52958,7 +52609,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52978,7 +52629,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -52998,7 +52649,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53018,7 +52669,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53038,7 +52689,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53058,7 +52709,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53078,7 +52729,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53098,7 +52749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53118,7 +52769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53138,7 +52789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53158,7 +52809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53178,7 +52829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53198,7 +52849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53218,7 +52869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53238,7 +52889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53258,7 +52909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53278,7 +52929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53298,7 +52949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53318,7 +52969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53338,7 +52989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53358,7 +53009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53378,7 +53029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53398,7 +53049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53418,7 +53069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53438,7 +53089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53458,7 +53109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53478,7 +53129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53498,7 +53149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53518,7 +53169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53538,7 +53189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53558,7 +53209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53578,7 +53229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53598,7 +53249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53618,7 +53269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53638,7 +53289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53658,7 +53309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53678,7 +53329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53698,7 +53349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53718,7 +53369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53738,7 +53389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53758,7 +53409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53778,7 +53429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53798,7 +53449,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53820,7 +53471,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53840,7 +53491,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53860,7 +53511,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 82, + "teamId": "2553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53880,7 +53531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53900,7 +53551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53920,7 +53571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53940,7 +53591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53960,7 +53611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -53980,7 +53631,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54000,7 +53651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54020,7 +53671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54040,7 +53691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54060,7 +53711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54080,7 +53731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54100,7 +53751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54120,7 +53771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54140,7 +53791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54160,7 +53811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54180,7 +53831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54200,7 +53851,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54220,7 +53871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54240,7 +53891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54260,7 +53911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54280,7 +53931,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54300,7 +53951,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54320,7 +53971,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54340,7 +53991,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54360,7 +54011,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54380,7 +54031,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54400,7 +54051,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54420,7 +54071,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54440,7 +54091,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54460,7 +54111,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54480,7 +54131,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54500,7 +54151,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54520,7 +54171,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54540,7 +54191,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54560,7 +54211,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54580,7 +54231,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54600,7 +54251,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54620,7 +54271,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54640,7 +54291,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 83, + "teamId": "2555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54660,7 +54311,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54680,7 +54331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54700,7 +54351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54720,7 +54371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54740,7 +54391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54760,7 +54411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54780,7 +54431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54800,7 +54451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54820,7 +54471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54840,7 +54491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54860,7 +54511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54880,7 +54531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54900,7 +54551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54920,7 +54571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54940,7 +54591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54960,7 +54611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -54980,7 +54631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55000,7 +54651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55020,7 +54671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55040,7 +54691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55060,7 +54711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55080,7 +54731,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55100,7 +54751,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55120,7 +54771,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 84, + "teamId": "1550", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55140,7 +54791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55160,7 +54811,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55180,7 +54831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55200,7 +54851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55220,7 +54871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55240,7 +54891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55262,7 +54913,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55284,7 +54935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55304,7 +54955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55326,7 +54977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55346,7 +54997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55366,7 +55017,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55386,7 +55037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55406,7 +55057,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 85, + "teamId": "2150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55426,7 +55077,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55448,7 +55099,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55468,7 +55119,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55488,7 +55139,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55508,7 +55159,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55528,7 +55179,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55548,7 +55199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55568,7 +55219,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55588,7 +55239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55608,7 +55259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55628,7 +55279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55648,7 +55299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55668,7 +55319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55688,7 +55339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55708,7 +55359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55728,7 +55379,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55748,7 +55399,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55768,7 +55419,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55788,7 +55439,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55808,7 +55459,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 86, + "teamId": "3251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55828,7 +55479,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55848,7 +55499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55868,7 +55519,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55888,7 +55539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55908,7 +55559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55928,7 +55579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55948,7 +55599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55968,7 +55619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -55988,7 +55639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 87, + "teamId": "2551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56008,7 +55659,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56028,7 +55679,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56048,7 +55699,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56068,7 +55719,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56088,7 +55739,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56108,7 +55759,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56128,7 +55779,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56148,7 +55799,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56168,7 +55819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56188,7 +55839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56208,7 +55859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56228,7 +55879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56248,7 +55899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56268,7 +55919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56288,7 +55939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56308,7 +55959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56328,7 +55979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56348,7 +55999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56368,7 +56019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56388,7 +56039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56408,7 +56059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56428,7 +56079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56448,7 +56099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56468,7 +56119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56488,7 +56139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56508,7 +56159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56528,7 +56179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56548,7 +56199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56568,7 +56219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56588,7 +56239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56608,7 +56259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56628,7 +56279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56648,7 +56299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56668,7 +56319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56688,7 +56339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56708,7 +56359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56728,7 +56379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56748,7 +56399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56768,7 +56419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56788,7 +56439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56808,7 +56459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56828,7 +56479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56848,7 +56499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56868,7 +56519,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56888,7 +56539,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56908,7 +56559,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56928,7 +56579,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 88, + "teamId": "1646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56948,7 +56599,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56968,7 +56619,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -56988,7 +56639,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57008,7 +56659,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57028,7 +56679,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57048,7 +56699,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57068,7 +56719,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57088,7 +56739,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57108,7 +56759,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57128,7 +56779,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57148,7 +56799,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57168,7 +56819,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57188,7 +56839,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57208,7 +56859,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57228,7 +56879,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57248,7 +56899,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57268,7 +56919,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57288,7 +56939,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57308,7 +56959,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57328,7 +56979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57348,7 +56999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57368,7 +57019,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57388,7 +57039,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57408,7 +57059,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57428,7 +57079,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57448,7 +57099,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57468,7 +57119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57488,7 +57139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57508,7 +57159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57528,7 +57179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57548,7 +57199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57568,7 +57219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57588,7 +57239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57608,7 +57259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57628,7 +57279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57648,7 +57299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57668,7 +57319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57688,7 +57339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57708,7 +57359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57728,7 +57379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57748,7 +57399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57768,7 +57419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57788,7 +57439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57808,7 +57459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57828,7 +57479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57848,7 +57499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57868,7 +57519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57888,7 +57539,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57908,7 +57559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57928,7 +57579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57948,7 +57599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57968,7 +57619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -57988,7 +57639,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58008,7 +57659,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58028,7 +57679,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58048,7 +57699,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58068,7 +57719,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58088,7 +57739,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58108,7 +57759,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58128,7 +57779,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58148,7 +57799,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 89, + "teamId": "2652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58168,7 +57819,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58188,7 +57839,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58208,7 +57859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58228,7 +57879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58248,7 +57899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58268,7 +57919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58288,7 +57939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58308,7 +57959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58328,7 +57979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58348,7 +57999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58368,7 +58019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58388,7 +58039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58408,7 +58059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58428,7 +58079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58448,7 +58099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58470,7 +58121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58490,7 +58141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58510,7 +58161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58530,7 +58181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58550,7 +58201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58570,7 +58221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58590,7 +58241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58610,7 +58261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58630,7 +58281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58650,7 +58301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58670,7 +58321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58690,7 +58341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58710,7 +58361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58732,7 +58383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58752,7 +58403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58772,7 +58423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58792,7 +58443,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58812,7 +58463,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58832,7 +58483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58852,7 +58503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58872,7 +58523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58894,7 +58545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58916,7 +58567,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 90, + "teamId": "2850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58936,7 +58587,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58956,7 +58607,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58976,7 +58627,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -58996,7 +58647,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59016,7 +58667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59036,7 +58687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59056,7 +58707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59076,7 +58727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59096,7 +58747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59116,7 +58767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59136,7 +58787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59156,7 +58807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59176,7 +58827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59196,7 +58847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59216,7 +58867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59236,7 +58887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59256,7 +58907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59276,7 +58927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59296,7 +58947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59316,7 +58967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59336,7 +58987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59356,7 +59007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59376,7 +59027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59396,7 +59047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59418,7 +59069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59438,7 +59089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59458,7 +59109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59478,7 +59129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59498,7 +59149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59518,7 +59169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59538,7 +59189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59558,7 +59209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59578,7 +59229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59598,7 +59249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59618,7 +59269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59638,7 +59289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59658,7 +59309,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59678,7 +59329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59698,7 +59349,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59718,7 +59369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59738,7 +59389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59758,7 +59409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59778,7 +59429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59798,7 +59449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59818,7 +59469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59838,7 +59489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59858,7 +59509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59878,7 +59529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59898,7 +59549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59918,7 +59569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59938,7 +59589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59958,7 +59609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59978,7 +59629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -59998,7 +59649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60018,7 +59669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60038,7 +59689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60058,7 +59709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60078,7 +59729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60098,7 +59749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60118,7 +59769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60138,7 +59789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60158,7 +59809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60178,7 +59829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60198,7 +59849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60218,7 +59869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60238,7 +59889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60258,7 +59909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60278,7 +59929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60298,7 +59949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60318,7 +59969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60338,7 +59989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60358,7 +60009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60378,7 +60029,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60398,7 +60049,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60418,7 +60069,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60438,7 +60089,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60458,7 +60109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60478,7 +60129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60498,7 +60149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60518,7 +60169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60538,7 +60189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60558,7 +60209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60578,7 +60229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60598,7 +60249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60618,7 +60269,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60638,7 +60289,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60658,7 +60309,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60678,7 +60329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60698,7 +60349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60718,7 +60369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 91, + "teamId": "1343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60738,7 +60389,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60758,7 +60409,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60778,7 +60429,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60798,7 +60449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60818,7 +60469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60838,7 +60489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60858,7 +60509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60878,7 +60529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60898,7 +60549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60918,7 +60569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60938,7 +60589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60958,7 +60609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60978,7 +60629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -60998,7 +60649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61018,7 +60669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61038,7 +60689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61058,7 +60709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61078,7 +60729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61098,7 +60749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61118,7 +60769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61138,7 +60789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61158,7 +60809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61178,7 +60829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61198,7 +60849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61218,7 +60869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61238,7 +60889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61258,7 +60909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61278,7 +60929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61298,7 +60949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61318,7 +60969,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61338,7 +60989,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61358,7 +61009,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61378,7 +61029,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61398,7 +61049,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61418,7 +61069,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61438,7 +61089,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61458,7 +61109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61478,7 +61129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61498,7 +61149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61518,7 +61169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61538,7 +61189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61558,7 +61209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61578,7 +61229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61598,7 +61249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61618,7 +61269,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61638,7 +61289,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61658,7 +61309,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61678,7 +61329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61698,7 +61349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61718,7 +61369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61738,7 +61389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61758,7 +61409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61778,7 +61429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61798,7 +61449,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61818,7 +61469,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 92, + "teamId": "1141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61838,7 +61489,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61858,7 +61509,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61878,7 +61529,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61898,7 +61549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61918,7 +61569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61938,7 +61589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61958,7 +61609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61978,7 +61629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -61998,7 +61649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62018,7 +61669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62038,7 +61689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62058,7 +61709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62078,7 +61729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62098,7 +61749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62118,7 +61769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62138,7 +61789,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62158,7 +61809,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62178,7 +61829,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62198,7 +61849,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62218,7 +61869,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62238,7 +61889,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62258,7 +61909,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62278,7 +61929,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62298,7 +61949,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62318,7 +61969,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62338,7 +61989,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62358,7 +62009,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 93, + "teamId": "2454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62378,7 +62029,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62398,7 +62049,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62418,7 +62069,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62438,7 +62089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62458,7 +62109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62478,7 +62129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62498,7 +62149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62518,7 +62169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62538,7 +62189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62558,7 +62209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62578,7 +62229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62598,7 +62249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62618,7 +62269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62638,7 +62289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62658,7 +62309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62678,7 +62329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62698,7 +62349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62718,7 +62369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62738,7 +62389,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62758,7 +62409,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62778,7 +62429,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62798,7 +62449,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62818,7 +62469,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62838,7 +62489,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62858,7 +62509,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 94, + "teamId": "2744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62878,7 +62529,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62898,7 +62549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62918,7 +62569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62938,7 +62589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62958,7 +62609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62978,7 +62629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -62998,7 +62649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63018,7 +62669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63038,7 +62689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63058,7 +62709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63078,7 +62729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63098,7 +62749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63118,7 +62769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63138,7 +62789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63158,7 +62809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63178,7 +62829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63198,7 +62849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63218,7 +62869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63238,7 +62889,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63258,7 +62909,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 95, + "teamId": "3255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63278,7 +62929,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63298,7 +62949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63318,7 +62969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63338,7 +62989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63358,7 +63009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63378,7 +63029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63398,7 +63049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63418,7 +63069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63438,7 +63089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63458,7 +63109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63478,7 +63129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63498,7 +63149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63520,7 +63171,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63540,7 +63191,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63560,7 +63211,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63580,7 +63231,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 96, + "teamId": "2742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63600,7 +63251,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63620,7 +63271,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63640,7 +63291,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63660,7 +63311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63680,7 +63331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63700,7 +63351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63720,7 +63371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63740,7 +63391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63760,7 +63411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63780,7 +63431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63800,7 +63451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63820,7 +63471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63840,7 +63491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63860,7 +63511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63880,7 +63531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63900,7 +63551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63920,7 +63571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63940,7 +63591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63960,7 +63611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -63980,7 +63631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64000,7 +63651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64020,7 +63671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64040,7 +63691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64060,7 +63711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64080,7 +63731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64100,7 +63751,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64120,7 +63771,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64140,7 +63791,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64160,7 +63811,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 97, + "teamId": "1252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64180,7 +63831,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 98, + "teamId": "2251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64200,7 +63851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 98, + "teamId": "2251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64220,7 +63871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 98, + "teamId": "2251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64240,7 +63891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 98, + "teamId": "2251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64260,7 +63911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 98, + "teamId": "2251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64280,7 +63931,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64300,7 +63951,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64320,7 +63971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64340,7 +63991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64360,7 +64011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64380,7 +64031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64400,7 +64051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64420,7 +64071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64440,7 +64091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64460,7 +64111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64480,7 +64131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64500,7 +64151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64520,7 +64171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64540,7 +64191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64560,7 +64211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64580,7 +64231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64600,7 +64251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64620,7 +64271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64640,7 +64291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64660,7 +64311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64680,7 +64331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64700,7 +64351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64720,7 +64371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64740,7 +64391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64760,7 +64411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64780,7 +64431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64800,7 +64451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64820,7 +64471,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64840,7 +64491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64860,7 +64511,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64880,7 +64531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64900,7 +64551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64920,7 +64571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64940,7 +64591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64960,7 +64611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -64980,7 +64631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65000,7 +64651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65020,7 +64671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65040,7 +64691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65060,7 +64711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65080,7 +64731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65100,7 +64751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65120,7 +64771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65142,7 +64793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65162,7 +64813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65182,7 +64833,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65202,7 +64853,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65222,7 +64873,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65242,7 +64893,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65262,7 +64913,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65282,7 +64933,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65302,7 +64953,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65322,7 +64973,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 99, + "teamId": "2248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65342,7 +64993,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65362,7 +65013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65382,7 +65033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65402,7 +65053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65422,7 +65073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65442,7 +65093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65462,7 +65113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65482,7 +65133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65502,7 +65153,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65522,7 +65173,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65542,7 +65193,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65562,7 +65213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65582,7 +65233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65602,7 +65253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65622,7 +65273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65642,7 +65293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65662,7 +65313,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65682,7 +65333,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65702,7 +65353,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65722,7 +65373,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65742,7 +65393,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65762,7 +65413,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 100, + "teamId": "2947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65782,7 +65433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65802,7 +65453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65822,7 +65473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65842,7 +65493,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65862,7 +65513,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65882,7 +65533,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65902,7 +65553,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65922,7 +65573,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65942,7 +65593,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65962,7 +65613,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -65982,7 +65633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66002,7 +65653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66022,7 +65673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66042,7 +65693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66062,7 +65713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66082,7 +65733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66102,7 +65753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66122,7 +65773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66142,7 +65793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66162,7 +65813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66182,7 +65833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66202,7 +65853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66222,7 +65873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66242,7 +65893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66262,7 +65913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66282,7 +65933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66302,7 +65953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66322,7 +65973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66342,7 +65993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66362,7 +66013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66382,7 +66033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66402,7 +66053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66422,7 +66073,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66442,7 +66093,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66462,7 +66113,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66482,7 +66133,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66502,7 +66153,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 101, + "teamId": "2343", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66522,7 +66173,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66542,7 +66193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66562,7 +66213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66582,7 +66233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66602,7 +66253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66622,7 +66273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66642,7 +66293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66662,7 +66313,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66682,7 +66333,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66702,7 +66353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66722,7 +66373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66742,7 +66393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66762,7 +66413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66782,7 +66433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66802,7 +66453,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66822,7 +66473,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66842,7 +66493,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66862,7 +66513,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66882,7 +66533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66902,7 +66553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66922,7 +66573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66942,7 +66593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66962,7 +66613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -66982,7 +66633,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 102, + "teamId": "1256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67002,7 +66653,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67022,7 +66673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67042,7 +66693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67062,7 +66713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67082,7 +66733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67102,7 +66753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67122,7 +66773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67142,7 +66793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67162,7 +66813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67182,7 +66833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67202,7 +66853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67222,7 +66873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67242,7 +66893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67262,7 +66913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67282,7 +66933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67302,7 +66953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67322,7 +66973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67342,7 +66993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67362,7 +67013,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67382,7 +67033,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67402,7 +67053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67422,7 +67073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67442,7 +67093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67462,7 +67113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67482,7 +67133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67504,7 +67155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67524,7 +67175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67544,7 +67195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67564,7 +67215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67584,7 +67235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67604,7 +67255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67624,7 +67275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67644,7 +67295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67664,7 +67315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67684,7 +67335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67704,7 +67355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67724,7 +67375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67746,7 +67397,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67768,7 +67419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67788,7 +67439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67808,7 +67459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67828,7 +67479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67848,7 +67499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67868,7 +67519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67888,7 +67539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67908,7 +67559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67928,7 +67579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67950,7 +67601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67972,7 +67623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -67992,7 +67643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68012,7 +67663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68032,7 +67683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68052,7 +67703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68072,7 +67723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68092,7 +67743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68112,7 +67763,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68132,7 +67783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68152,7 +67803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68172,7 +67823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68192,7 +67843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68212,7 +67863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68232,7 +67883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68252,7 +67903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68272,7 +67923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68294,7 +67945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68314,7 +67965,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68334,7 +67985,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68354,7 +68005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 103, + "teamId": "1948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68374,7 +68025,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68394,7 +68045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68414,7 +68065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68434,7 +68085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68454,7 +68105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68474,7 +68125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68494,7 +68145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68514,7 +68165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68534,7 +68185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68554,7 +68205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68574,7 +68225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68594,7 +68245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68614,7 +68265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68634,7 +68285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68654,7 +68305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68674,7 +68325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68694,7 +68345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68714,7 +68365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68734,7 +68385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68754,7 +68405,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68774,7 +68425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68794,7 +68445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68814,7 +68465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68834,7 +68485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68854,7 +68505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68874,7 +68525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68894,7 +68545,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68914,7 +68565,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68934,7 +68585,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68954,7 +68605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68976,7 +68627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -68996,7 +68647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69016,7 +68667,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69036,7 +68687,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 104, + "teamId": "2754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69056,7 +68707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69076,7 +68727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69096,7 +68747,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69116,7 +68767,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69136,7 +68787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69156,7 +68807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69176,7 +68827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69196,7 +68847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69216,7 +68867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69236,7 +68887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69256,7 +68907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69276,7 +68927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69296,7 +68947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69316,7 +68967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69336,7 +68987,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69356,7 +69007,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69376,7 +69027,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69396,7 +69047,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69416,7 +69067,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69436,7 +69087,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69456,7 +69107,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 105, + "teamId": "1942", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69476,7 +69127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69496,7 +69147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69516,7 +69167,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69536,7 +69187,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69556,7 +69207,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69576,7 +69227,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69596,7 +69247,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69616,7 +69267,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 106, + "teamId": "2753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69636,7 +69287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69656,7 +69307,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69676,7 +69327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69696,7 +69347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69716,7 +69367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69736,7 +69387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69756,7 +69407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69776,7 +69427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69796,7 +69447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69816,7 +69467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69836,7 +69487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69856,7 +69507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69876,7 +69527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69896,7 +69547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69916,7 +69567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69936,7 +69587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69956,7 +69607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69976,7 +69627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -69996,7 +69647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70016,7 +69667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70036,7 +69687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70056,7 +69707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70076,7 +69727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70096,7 +69747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70116,7 +69767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70136,7 +69787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70156,7 +69807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70176,7 +69827,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70196,7 +69847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70216,7 +69867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70236,7 +69887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70256,7 +69907,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70276,7 +69927,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70296,7 +69947,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70316,7 +69967,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70336,7 +69987,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70356,7 +70007,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70376,7 +70027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70396,7 +70047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70416,7 +70067,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70436,7 +70087,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70456,7 +70107,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70476,7 +70127,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70496,7 +70147,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70516,7 +70167,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70536,7 +70187,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70556,7 +70207,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70576,7 +70227,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70596,7 +70247,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70616,7 +70267,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70636,7 +70287,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70656,7 +70307,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70676,7 +70327,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70696,7 +70347,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70716,7 +70367,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70736,7 +70387,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70756,7 +70407,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70776,7 +70427,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70796,7 +70447,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70816,7 +70467,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70836,7 +70487,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70856,7 +70507,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70876,7 +70527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70896,7 +70547,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70916,7 +70567,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70936,7 +70587,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70956,7 +70607,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70976,7 +70627,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -70996,7 +70647,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 107, + "teamId": "1952", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71016,7 +70667,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71036,7 +70687,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71056,7 +70707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71076,7 +70727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71096,7 +70747,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71116,7 +70767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71136,7 +70787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71156,7 +70807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71176,7 +70827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71196,7 +70847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71216,7 +70867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71236,7 +70887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71256,7 +70907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71276,7 +70927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71296,7 +70947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71316,7 +70967,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71336,7 +70987,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71356,7 +71007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71376,7 +71027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71396,7 +71047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 108, + "teamId": "1746", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71416,7 +71067,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71436,7 +71087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71456,7 +71107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71476,7 +71127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71496,7 +71147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71516,7 +71167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71536,7 +71187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71556,7 +71207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71576,7 +71227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71596,7 +71247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71616,7 +71267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71636,7 +71287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71656,7 +71307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71676,7 +71327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71696,7 +71347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71716,7 +71367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71736,7 +71387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71756,7 +71407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71778,7 +71429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71800,7 +71451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71820,7 +71471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71842,7 +71493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71862,7 +71513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71882,7 +71533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71902,7 +71553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71922,7 +71573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71942,7 +71593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71962,7 +71613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -71982,7 +71633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72002,7 +71653,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72022,7 +71673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72042,7 +71693,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72062,7 +71713,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72082,7 +71733,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72102,7 +71753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72122,7 +71773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72142,7 +71793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72162,7 +71813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72182,7 +71833,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72202,7 +71853,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72222,7 +71873,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72242,7 +71893,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72262,7 +71913,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72282,7 +71933,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72302,7 +71953,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72322,7 +71973,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72342,7 +71993,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72362,7 +72013,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72382,7 +72033,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72402,7 +72053,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72422,7 +72073,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72442,7 +72093,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72462,7 +72113,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72482,7 +72133,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72502,7 +72153,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 109, + "teamId": "2649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72522,7 +72173,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72542,7 +72193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72562,7 +72213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72582,7 +72233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72602,7 +72253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72622,7 +72273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72642,7 +72293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72662,7 +72313,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72682,7 +72333,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72702,7 +72353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72722,7 +72373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72742,7 +72393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72762,7 +72413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72782,7 +72433,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72802,7 +72453,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72824,7 +72475,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72844,7 +72495,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 110, + "teamId": "2750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72864,7 +72515,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72884,7 +72535,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72906,7 +72557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72926,7 +72577,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72946,7 +72597,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72966,7 +72617,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -72986,7 +72637,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73006,7 +72657,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73026,7 +72677,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73046,7 +72697,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73066,7 +72717,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73086,7 +72737,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73106,7 +72757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73126,7 +72777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73146,7 +72797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73166,7 +72817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73186,7 +72837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73206,7 +72857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73226,7 +72877,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73246,7 +72897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73266,7 +72917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73286,7 +72937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73306,7 +72957,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73326,7 +72977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73346,7 +72997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73366,7 +73017,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73386,7 +73037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73406,7 +73057,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73426,7 +73077,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73446,7 +73097,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73466,7 +73117,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73486,7 +73137,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73506,7 +73157,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73526,7 +73177,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73546,7 +73197,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73566,7 +73217,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73586,7 +73237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73606,7 +73257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73626,7 +73277,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73646,7 +73297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73666,7 +73317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73686,7 +73337,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73706,7 +73357,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73726,7 +73377,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73746,7 +73397,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73766,7 +73417,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 111, + "teamId": "2355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73786,7 +73437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73806,7 +73457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73826,7 +73477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73846,7 +73497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73866,7 +73517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73886,7 +73537,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73906,7 +73557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73926,7 +73577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73946,7 +73597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73966,7 +73617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -73986,7 +73637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74006,7 +73657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74026,7 +73677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74046,7 +73697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74066,7 +73717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74086,7 +73737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74106,7 +73757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74126,7 +73777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74146,7 +73797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74166,7 +73817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74186,7 +73837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74206,7 +73857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74226,7 +73877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74246,7 +73897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74266,7 +73917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74286,7 +73937,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74306,7 +73957,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74326,7 +73977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74346,7 +73997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74366,7 +74017,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74386,7 +74037,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74406,7 +74057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74426,7 +74077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74446,7 +74097,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74466,7 +74117,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 112, + "teamId": "1255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74486,7 +74137,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74506,7 +74157,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74526,7 +74177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74546,7 +74197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74566,7 +74217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74586,7 +74237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74606,7 +74257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74626,7 +74277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74646,7 +74297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74666,7 +74317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74686,7 +74337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74706,7 +74357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74726,7 +74377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74746,7 +74397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74766,7 +74417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74786,7 +74437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74806,7 +74457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74826,7 +74477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74846,7 +74497,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74866,7 +74517,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74886,7 +74537,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 113, + "teamId": "1345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74906,7 +74557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74926,7 +74577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74946,7 +74597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74966,7 +74617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -74986,7 +74637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75006,7 +74657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75026,7 +74677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75046,7 +74697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75066,7 +74717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75086,7 +74737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75106,7 +74757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75126,7 +74777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75148,7 +74799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75168,7 +74819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75188,7 +74839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75208,7 +74859,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75228,7 +74879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75248,7 +74899,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75268,7 +74919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75288,7 +74939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75308,7 +74959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75328,7 +74979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75348,7 +74999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75368,7 +75019,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75388,7 +75039,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75408,7 +75059,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75428,7 +75079,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75448,7 +75099,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75468,7 +75119,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75488,7 +75139,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75508,7 +75159,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75528,7 +75179,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 114, + "teamId": "2243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75548,7 +75199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75568,7 +75219,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75588,7 +75239,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75608,7 +75259,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75628,7 +75279,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75648,7 +75299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75668,7 +75319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75688,7 +75339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75708,7 +75359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75728,7 +75379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75748,7 +75399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75768,7 +75419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75788,7 +75439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75808,7 +75459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75828,7 +75479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75848,7 +75499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75868,7 +75519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75888,7 +75539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75908,7 +75559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75928,7 +75579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75948,7 +75599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75968,7 +75619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -75990,7 +75641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76010,7 +75661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76032,7 +75683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76052,7 +75703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76072,7 +75723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76092,7 +75743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76112,7 +75763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76134,7 +75785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76154,7 +75805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76174,7 +75825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76194,7 +75845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76214,7 +75865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76234,7 +75885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76254,7 +75905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76274,7 +75925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76294,7 +75945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76314,7 +75965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76334,7 +75985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76354,7 +76005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76374,7 +76025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76394,7 +76045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76414,7 +76065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76434,7 +76085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76454,7 +76105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76474,7 +76125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76494,7 +76145,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76514,7 +76165,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76534,7 +76185,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76554,7 +76205,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76574,7 +76225,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76594,7 +76245,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76614,7 +76265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76634,7 +76285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76654,7 +76305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76674,7 +76325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76694,7 +76345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76714,7 +76365,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76734,7 +76385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76754,7 +76405,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76774,7 +76425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76794,7 +76445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76814,7 +76465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76834,7 +76485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76854,7 +76505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76874,7 +76525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76894,7 +76545,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76914,7 +76565,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76934,7 +76585,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76954,7 +76605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76974,7 +76625,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -76994,7 +76645,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77014,7 +76665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77034,7 +76685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77054,7 +76705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77074,7 +76725,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77094,7 +76745,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77114,7 +76765,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77134,7 +76785,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77154,7 +76805,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77174,7 +76825,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77194,7 +76845,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77214,7 +76865,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77234,7 +76885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77254,7 +76905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77274,7 +76925,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77294,7 +76945,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77314,7 +76965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77334,7 +76985,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77354,7 +77005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77374,7 +77025,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 115, + "teamId": "2745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77394,7 +77045,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77414,7 +77065,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77434,7 +77085,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77454,7 +77105,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77474,7 +77125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77494,7 +77145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77514,7 +77165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77534,7 +77185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77554,7 +77205,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77574,7 +77225,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77594,7 +77245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77614,7 +77265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77634,7 +77285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77654,7 +77305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77674,7 +77325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77694,7 +77345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77714,7 +77365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77734,7 +77385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77754,7 +77405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77774,7 +77425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77794,7 +77445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77814,7 +77465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77834,7 +77485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77854,7 +77505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77874,7 +77525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77894,7 +77545,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77914,7 +77565,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77934,7 +77585,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77954,7 +77605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77974,7 +77625,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -77994,7 +77645,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78014,7 +77665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78034,7 +77685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78054,7 +77705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78074,7 +77725,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78094,7 +77745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78114,7 +77765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78134,7 +77785,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78154,7 +77805,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 116, + "teamId": "1956", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78174,7 +77825,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78194,7 +77845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78214,7 +77865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78234,7 +77885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78254,7 +77905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78274,7 +77925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78294,7 +77945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78314,7 +77965,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78334,7 +77985,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78354,7 +78005,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78374,7 +78025,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78394,7 +78045,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78414,7 +78065,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78434,7 +78085,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78454,7 +78105,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78474,7 +78125,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78494,7 +78145,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78514,7 +78165,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78534,7 +78185,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78554,7 +78205,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78574,7 +78225,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78594,7 +78245,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78614,7 +78265,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78634,7 +78285,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78654,7 +78305,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 117, + "teamId": "3047", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78676,7 +78327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78696,7 +78347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78716,7 +78367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78736,7 +78387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78756,7 +78407,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78776,7 +78427,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78796,7 +78447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78816,7 +78467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78836,7 +78487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78856,7 +78507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78876,7 +78527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78896,7 +78547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78916,7 +78567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78936,7 +78587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78956,7 +78607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78976,7 +78627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -78996,7 +78647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79016,7 +78667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79036,7 +78687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79056,7 +78707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79076,7 +78727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79096,7 +78747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79116,7 +78767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79136,7 +78787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79156,7 +78807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79176,7 +78827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79196,7 +78847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79216,7 +78867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79236,7 +78887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79256,7 +78907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79276,7 +78927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79296,7 +78947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79316,7 +78967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79336,7 +78987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79356,7 +79007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79376,7 +79027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79396,7 +79047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79416,7 +79067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79436,7 +79087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79456,7 +79107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79476,7 +79127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79496,7 +79147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79516,7 +79167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79536,7 +79187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79556,7 +79207,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79576,7 +79227,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79596,7 +79247,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79616,7 +79267,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79636,7 +79287,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79656,7 +79307,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79676,7 +79327,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79696,7 +79347,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79716,7 +79367,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79736,7 +79387,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79756,7 +79407,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79776,7 +79427,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79796,7 +79447,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79816,7 +79467,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79836,7 +79487,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79856,7 +79507,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79876,7 +79527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 118, + "teamId": "2756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79896,7 +79547,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79916,7 +79567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79936,7 +79587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79956,7 +79607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79976,7 +79627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -79996,7 +79647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80016,7 +79667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80036,7 +79687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80056,7 +79707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80076,7 +79727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80096,7 +79747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80116,7 +79767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80136,7 +79787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80156,7 +79807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80176,7 +79827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80196,7 +79847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80216,7 +79867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80236,7 +79887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80256,7 +79907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 119, + "teamId": "2041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80276,7 +79927,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80296,7 +79947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80316,7 +79967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80336,7 +79987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80356,7 +80007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80376,7 +80027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80396,7 +80047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80416,7 +80067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80436,7 +80087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80458,7 +80109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80478,7 +80129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80498,7 +80149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80518,7 +80169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80538,7 +80189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80558,7 +80209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80578,7 +80229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80598,7 +80249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80618,7 +80269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80638,7 +80289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80660,7 +80311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80680,7 +80331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80700,7 +80351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80720,7 +80371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80740,7 +80391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80760,7 +80411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80780,7 +80431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80802,7 +80453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80822,7 +80473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80844,7 +80495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80864,7 +80515,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80886,7 +80537,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80906,7 +80557,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80926,7 +80577,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80946,7 +80597,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80966,7 +80617,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 120, + "teamId": "1845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -80986,7 +80637,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81006,7 +80657,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81026,7 +80677,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81046,7 +80697,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81066,7 +80717,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81086,7 +80737,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81106,7 +80757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81126,7 +80777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81146,7 +80797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81166,7 +80817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81186,7 +80837,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81206,7 +80857,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81228,7 +80879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81248,7 +80899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81268,7 +80919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81288,7 +80939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81308,7 +80959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81328,7 +80979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81348,7 +80999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81368,7 +81019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81388,7 +81039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81408,7 +81059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81428,7 +81079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81448,7 +81099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81470,7 +81121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81490,7 +81141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81510,7 +81161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81530,7 +81181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81550,7 +81201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81570,7 +81221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81590,7 +81241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81610,7 +81261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81630,7 +81281,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81650,7 +81301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81670,7 +81321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81690,7 +81341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 121, + "teamId": "1847", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81710,7 +81361,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81730,7 +81381,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81750,7 +81401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81770,7 +81421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81790,7 +81441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81810,7 +81461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81830,7 +81481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81850,7 +81501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81870,7 +81521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81890,7 +81541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81910,7 +81561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81930,7 +81581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81950,7 +81601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81970,7 +81621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -81990,7 +81641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82010,7 +81661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82030,7 +81681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82050,7 +81701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82070,7 +81721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82090,7 +81741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82110,7 +81761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82130,7 +81781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82150,7 +81801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82170,7 +81821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82190,7 +81841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82210,7 +81861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82230,7 +81881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82250,7 +81901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82270,7 +81921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82290,7 +81941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82310,7 +81961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82330,7 +81981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82350,7 +82001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82370,7 +82021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82390,7 +82041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82410,7 +82061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82430,7 +82081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82450,7 +82101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82470,7 +82121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82490,7 +82141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82510,7 +82161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82530,7 +82181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82550,7 +82201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82570,7 +82221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82592,7 +82243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82614,7 +82265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82634,7 +82285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82654,7 +82305,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82674,7 +82325,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82694,7 +82345,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82714,7 +82365,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82734,7 +82385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82754,7 +82405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82774,7 +82425,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82794,7 +82445,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82814,7 +82465,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82834,7 +82485,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82854,7 +82505,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82874,7 +82525,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82894,7 +82545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82914,7 +82565,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 122, + "teamId": "2145", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82934,7 +82585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82954,7 +82605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82974,7 +82625,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -82994,7 +82645,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83014,7 +82665,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83034,7 +82685,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83054,7 +82705,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83074,7 +82725,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83094,7 +82745,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83114,7 +82765,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83134,7 +82785,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83154,7 +82805,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83174,7 +82825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83194,7 +82845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83214,7 +82865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83234,7 +82885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83254,7 +82905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83274,7 +82925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83294,7 +82945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83314,7 +82965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83334,7 +82985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83354,7 +83005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83374,7 +83025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83394,7 +83045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83414,7 +83065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83434,7 +83085,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83454,7 +83105,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83474,7 +83125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83494,7 +83145,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83514,7 +83165,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83534,7 +83185,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83554,7 +83205,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83574,7 +83225,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83594,7 +83245,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83614,7 +83265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83634,7 +83285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83654,7 +83305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83674,7 +83325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83694,7 +83345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83714,7 +83365,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83734,7 +83385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83754,7 +83405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83774,7 +83425,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 123, + "teamId": "2648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83794,7 +83445,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83814,7 +83465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83834,7 +83485,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83854,7 +83505,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83874,7 +83525,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83894,7 +83545,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83914,7 +83565,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83934,7 +83585,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83954,7 +83605,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83974,7 +83625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -83994,7 +83645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84014,7 +83665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84034,7 +83685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84054,7 +83705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84074,7 +83725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84094,7 +83745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84114,7 +83765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84134,7 +83785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84154,7 +83805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84174,7 +83825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84194,7 +83845,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84214,7 +83865,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84234,7 +83885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84254,7 +83905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84274,7 +83925,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84294,7 +83945,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84314,7 +83965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 124, + "teamId": "2856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84334,7 +83985,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84354,7 +84005,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84374,7 +84025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84394,7 +84045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84414,7 +84065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84434,7 +84085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84454,7 +84105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84474,7 +84125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84494,7 +84145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84514,7 +84165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84534,7 +84185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84554,7 +84205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84574,7 +84225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84594,7 +84245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84614,7 +84265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84634,7 +84285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84654,7 +84305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84674,7 +84325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84694,7 +84345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84714,7 +84365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84734,7 +84385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84754,7 +84405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84774,7 +84425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84794,7 +84445,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84814,7 +84465,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84836,7 +84487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84858,7 +84509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84878,7 +84529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84898,7 +84549,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84918,7 +84569,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84938,7 +84589,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84958,7 +84609,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84978,7 +84629,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -84998,7 +84649,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85018,7 +84669,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 125, + "teamId": "2341", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85038,7 +84689,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85058,7 +84709,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85078,7 +84729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85098,7 +84749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85118,7 +84769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85138,7 +84789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85158,7 +84809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85178,7 +84829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85198,7 +84849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85218,7 +84869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85238,7 +84889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85258,7 +84909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85278,7 +84929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85298,7 +84949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85318,7 +84969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85338,7 +84989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85358,7 +85009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85378,7 +85029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85398,7 +85049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85418,7 +85069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85438,7 +85089,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85458,7 +85109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85478,7 +85129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85498,7 +85149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 126, + "teamId": "1741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85518,7 +85169,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85538,7 +85189,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85558,7 +85209,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85578,7 +85229,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85598,7 +85249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85618,7 +85269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85638,7 +85289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85658,7 +85309,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85678,7 +85329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85698,7 +85349,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85718,7 +85369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85738,7 +85389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85758,7 +85409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85778,7 +85429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85798,7 +85449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85818,7 +85469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85840,7 +85491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85860,7 +85511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85880,7 +85531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85900,7 +85551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85920,7 +85571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85940,7 +85591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85960,7 +85611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -85980,7 +85631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86000,7 +85651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86020,7 +85671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86040,7 +85691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86060,7 +85711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86080,7 +85731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86100,7 +85751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86120,7 +85771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86140,7 +85791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86160,7 +85811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86180,7 +85831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86200,7 +85851,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86220,7 +85871,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86240,7 +85891,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86260,7 +85911,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86280,7 +85931,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86300,7 +85951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 127, + "teamId": "1747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86320,7 +85971,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86340,7 +85991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86360,7 +86011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86380,7 +86031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86400,7 +86051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86420,7 +86071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86440,7 +86091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86460,7 +86111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86480,7 +86131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86500,7 +86151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86520,7 +86171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86540,7 +86191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86560,7 +86211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86580,7 +86231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86600,7 +86251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86620,7 +86271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86640,7 +86291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86660,7 +86311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86680,7 +86331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86700,7 +86351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86720,7 +86371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86740,7 +86391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86760,7 +86411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86780,7 +86431,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 128, + "teamId": "2842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86800,7 +86451,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86820,7 +86471,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86840,7 +86491,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86860,7 +86511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86880,7 +86531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86900,7 +86551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86920,7 +86571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86940,7 +86591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86960,7 +86611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -86982,7 +86633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87002,7 +86653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87024,7 +86675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87044,7 +86695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87064,7 +86715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87084,7 +86735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87104,7 +86755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87124,7 +86775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87144,7 +86795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87164,7 +86815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87184,7 +86835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87204,7 +86855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87224,7 +86875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87244,7 +86895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87264,7 +86915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87284,7 +86935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87304,7 +86955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87324,7 +86975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87344,7 +86995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87364,7 +87015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87384,7 +87035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87404,7 +87055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87424,7 +87075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87444,7 +87095,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87464,7 +87115,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87484,7 +87135,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87504,7 +87155,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87526,7 +87177,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87546,7 +87197,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87566,7 +87217,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87586,7 +87237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87608,7 +87259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87628,7 +87279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 129, + "teamId": "3143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87648,7 +87299,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87668,7 +87319,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87688,7 +87339,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87708,7 +87359,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87728,7 +87379,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87748,7 +87399,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87768,7 +87419,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87788,7 +87439,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87808,7 +87459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87828,7 +87479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87848,7 +87499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87868,7 +87519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87888,7 +87539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87908,7 +87559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87928,7 +87579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87948,7 +87599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87968,7 +87619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -87990,7 +87641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88010,7 +87661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88030,7 +87681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88050,7 +87701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88070,7 +87721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88090,7 +87741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88110,7 +87761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88130,7 +87781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88150,7 +87801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88170,7 +87821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88190,7 +87841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88210,7 +87861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88230,7 +87881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88250,7 +87901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88270,7 +87921,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88290,7 +87941,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88310,7 +87961,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88330,7 +87981,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88350,7 +88001,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88370,7 +88021,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88390,7 +88041,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88410,7 +88061,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 130, + "teamId": "2043", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88430,7 +88081,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88450,7 +88101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88470,7 +88121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88490,7 +88141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88510,7 +88161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88530,7 +88181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88550,7 +88201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88570,7 +88221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88590,7 +88241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88610,7 +88261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88630,7 +88281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88650,7 +88301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88670,7 +88321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88690,7 +88341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88710,7 +88361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88730,7 +88381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88750,7 +88401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88770,7 +88421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88790,7 +88441,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88810,7 +88461,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88830,7 +88481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88850,7 +88501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 131, + "teamId": "2144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88870,7 +88521,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88890,7 +88541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88910,7 +88561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88930,7 +88581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88950,7 +88601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88970,7 +88621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -88990,7 +88641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89010,7 +88661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89030,7 +88681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89050,7 +88701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89070,7 +88721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89090,7 +88741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89110,7 +88761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89130,7 +88781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89150,7 +88801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89170,7 +88821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89190,7 +88841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89210,7 +88861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89230,7 +88881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 132, + "teamId": "2256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89250,7 +88901,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89270,7 +88921,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89290,7 +88941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89310,7 +88961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89330,7 +88981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89350,7 +89001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89370,7 +89021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89390,7 +89041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89410,7 +89061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89430,7 +89081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89450,7 +89101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89470,7 +89121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89490,7 +89141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89510,7 +89161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89530,7 +89181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89552,7 +89203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89572,7 +89223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89592,7 +89243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89612,7 +89263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89632,7 +89283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89652,7 +89303,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89672,7 +89323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89692,7 +89343,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89712,7 +89363,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89732,7 +89383,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89752,7 +89403,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89772,7 +89423,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 133, + "teamId": "2951", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89792,7 +89443,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89812,7 +89463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89832,7 +89483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89852,7 +89503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89872,7 +89523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89892,7 +89543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89912,7 +89563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89932,7 +89583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89952,7 +89603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89974,7 +89625,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -89996,7 +89647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90018,7 +89669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90038,7 +89689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90058,7 +89709,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 134, + "teamId": "2455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90078,7 +89729,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90098,7 +89749,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90118,7 +89769,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90138,7 +89789,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90158,7 +89809,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90178,7 +89829,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90198,7 +89849,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90218,7 +89869,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90238,7 +89889,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90258,7 +89909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90278,7 +89929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90298,7 +89949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90318,7 +89969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90338,7 +89989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90358,7 +90009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90378,7 +90029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90398,7 +90049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90418,7 +90069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90438,7 +90089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90458,7 +90109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90478,7 +90129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90498,7 +90149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90518,7 +90169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90538,7 +90189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90558,7 +90209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90578,7 +90229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90598,7 +90249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90618,7 +90269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90638,7 +90289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90658,7 +90309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90678,7 +90329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90698,7 +90349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90718,7 +90369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90738,7 +90389,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90758,7 +90409,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90778,7 +90429,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90798,7 +90449,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90818,7 +90469,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90838,7 +90489,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90858,7 +90509,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90878,7 +90529,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90898,7 +90549,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90918,7 +90569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90938,7 +90589,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90958,7 +90609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90978,7 +90629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -90998,7 +90649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91018,7 +90669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91038,7 +90689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91058,7 +90709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91078,7 +90729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91098,7 +90749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91118,7 +90769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91138,7 +90789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91158,7 +90809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91178,7 +90829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91198,7 +90849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91218,7 +90869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91238,7 +90889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91258,7 +90909,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91278,7 +90929,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91300,7 +90951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 135, + "teamId": "2143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91320,7 +90971,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91340,7 +90991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91360,7 +91011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91380,7 +91031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91400,7 +91051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91420,7 +91071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91440,7 +91091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91460,7 +91111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91480,7 +91131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91500,7 +91151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91520,7 +91171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91540,7 +91191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91560,7 +91211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91580,7 +91231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91600,7 +91251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91620,7 +91271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91640,7 +91291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91660,7 +91311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91680,7 +91331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91700,7 +91351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91720,7 +91371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91740,7 +91391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91762,7 +91413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91782,7 +91433,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91802,7 +91453,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91822,7 +91473,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91842,7 +91493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91862,7 +91513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91882,7 +91533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91902,7 +91553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91922,7 +91573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91942,7 +91593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91962,7 +91613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -91982,7 +91633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92002,7 +91653,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92022,7 +91673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92042,7 +91693,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92062,7 +91713,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92082,7 +91733,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92102,7 +91753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92122,7 +91773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92142,7 +91793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92162,7 +91813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92182,7 +91833,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92202,7 +91853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92222,7 +91873,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 136, + "teamId": "3146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92242,7 +91893,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92262,7 +91913,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92282,7 +91933,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92302,7 +91953,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92322,7 +91973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92342,7 +91993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92362,7 +92013,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92382,7 +92033,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92402,7 +92053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92422,7 +92073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92442,7 +92093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92462,7 +92113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92482,7 +92133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92502,7 +92153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92522,7 +92173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92542,7 +92193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92562,7 +92213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92582,7 +92233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92602,7 +92253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92622,7 +92273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92642,7 +92293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92662,7 +92313,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92682,7 +92333,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92704,7 +92355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92726,7 +92377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92748,7 +92399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92768,7 +92419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92788,7 +92439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92808,7 +92459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92828,7 +92479,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92850,7 +92501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92870,7 +92521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92890,7 +92541,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92910,7 +92561,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92930,7 +92581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92950,7 +92601,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92970,7 +92621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -92990,7 +92641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93010,7 +92661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93030,7 +92681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93050,7 +92701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93070,7 +92721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93090,7 +92741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93110,7 +92761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93130,7 +92781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93150,7 +92801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93170,7 +92821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93190,7 +92841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93210,7 +92861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93230,7 +92881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93250,7 +92901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93270,7 +92921,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 137, + "teamId": "3252", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93290,7 +92941,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93310,7 +92961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93330,7 +92981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93350,7 +93001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93370,7 +93021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93390,7 +93041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93410,7 +93061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93430,7 +93081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93450,7 +93101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93470,7 +93121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93490,7 +93141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93510,7 +93161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93530,7 +93181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93550,7 +93201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93570,7 +93221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93590,7 +93241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93610,7 +93261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93630,7 +93281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93650,7 +93301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93670,7 +93321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93690,7 +93341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93710,7 +93361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93730,7 +93381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93750,7 +93401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93770,7 +93421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93790,7 +93441,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93810,7 +93461,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93830,7 +93481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93850,7 +93501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93870,7 +93521,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93890,7 +93541,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93912,7 +93563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93932,7 +93583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 138, + "teamId": "1250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93952,7 +93603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93972,7 +93623,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -93992,7 +93643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94012,7 +93663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94032,7 +93683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94052,7 +93703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94072,7 +93723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94092,7 +93743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94112,7 +93763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94132,7 +93783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94152,7 +93803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94172,7 +93823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94192,7 +93843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94212,7 +93863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94232,7 +93883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94252,7 +93903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94272,7 +93923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94292,7 +93943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94312,7 +93963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94332,7 +93983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94352,7 +94003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94372,7 +94023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94392,7 +94043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94412,7 +94063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94432,7 +94083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94452,7 +94103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94472,7 +94123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94492,7 +94143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94512,7 +94163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94532,7 +94183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94552,7 +94203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94572,7 +94223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94592,7 +94243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94612,7 +94263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94632,7 +94283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94652,7 +94303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94672,7 +94323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94692,7 +94343,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94712,7 +94363,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94732,7 +94383,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94752,7 +94403,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94772,7 +94423,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94792,7 +94443,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94812,7 +94463,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94832,7 +94483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94852,7 +94503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94872,7 +94523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94892,7 +94543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94912,7 +94563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94932,7 +94583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94952,7 +94603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94972,7 +94623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -94992,7 +94643,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 139, + "teamId": "2441", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95012,7 +94663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95032,7 +94683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95052,7 +94703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95072,7 +94723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95092,7 +94743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95112,7 +94763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95132,7 +94783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95152,7 +94803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95172,7 +94823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95192,7 +94843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95212,7 +94863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95232,7 +94883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95252,7 +94903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95272,7 +94923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95292,7 +94943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95312,7 +94963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95332,7 +94983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95352,7 +95003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95372,7 +95023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95392,7 +95043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95412,7 +95063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95432,7 +95083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95452,7 +95103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95472,7 +95123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95492,7 +95143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95512,7 +95163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95532,7 +95183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95552,7 +95203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95572,7 +95223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95592,7 +95243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95612,7 +95263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95632,7 +95283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95652,7 +95303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95672,7 +95323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95692,7 +95343,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95712,7 +95363,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95732,7 +95383,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95752,7 +95403,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95772,7 +95423,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95792,7 +95443,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95814,7 +95465,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95834,7 +95485,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95854,7 +95505,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95874,7 +95525,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95894,7 +95545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 140, + "teamId": "1149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95914,7 +95565,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95934,7 +95585,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95954,7 +95605,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95974,7 +95625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -95994,7 +95645,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96014,7 +95665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96034,7 +95685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96054,7 +95705,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 141, + "teamId": "3241", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96074,7 +95725,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96094,7 +95745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96114,7 +95765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96134,7 +95785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96154,7 +95805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96174,7 +95825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96194,7 +95845,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96214,7 +95865,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96234,7 +95885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96254,7 +95905,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96274,7 +95925,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96294,7 +95945,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96314,7 +95965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96334,7 +95985,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96354,7 +96005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 142, + "teamId": "1144", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96374,7 +96025,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96394,7 +96045,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96414,7 +96065,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96434,7 +96085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96454,7 +96105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96474,7 +96125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96494,7 +96145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96514,7 +96165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96534,7 +96185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96554,7 +96205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96574,7 +96225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96594,7 +96245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96614,7 +96265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96634,7 +96285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96654,7 +96305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96674,7 +96325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96694,7 +96345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96714,7 +96365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96734,7 +96385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96754,7 +96405,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96774,7 +96425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96794,7 +96445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96814,7 +96465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96834,7 +96485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96854,7 +96505,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96874,7 +96525,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 143, + "teamId": "1251", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96894,7 +96545,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96914,7 +96565,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96934,7 +96585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96954,7 +96605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96974,7 +96625,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -96994,7 +96645,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97014,7 +96665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97034,7 +96685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97056,7 +96707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97076,7 +96727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97096,7 +96747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97116,7 +96767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97136,7 +96787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97156,7 +96807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97176,7 +96827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97196,7 +96847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97218,7 +96869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97238,7 +96889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97258,7 +96909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97278,7 +96929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97298,7 +96949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97318,7 +96969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97338,7 +96989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97358,7 +97009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97378,7 +97029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97398,7 +97049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97418,7 +97069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97438,7 +97089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97458,7 +97109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97478,7 +97129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97498,7 +97149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97518,7 +97169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97538,7 +97189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97558,7 +97209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97578,7 +97229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97598,7 +97249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97618,7 +97269,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97638,7 +97289,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97658,7 +97309,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97678,7 +97329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97698,7 +97349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97718,7 +97369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97738,7 +97389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97758,7 +97409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 144, + "teamId": "1856", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97778,7 +97429,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97798,7 +97449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97818,7 +97469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97838,7 +97489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97858,7 +97509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97878,7 +97529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97898,7 +97549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97918,7 +97569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97938,7 +97589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97958,7 +97609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97978,7 +97629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -97998,7 +97649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98018,7 +97669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98038,7 +97689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98058,7 +97709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98078,7 +97729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98098,7 +97749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98118,7 +97769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98138,7 +97789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98158,7 +97809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98178,7 +97829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98198,7 +97849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98218,7 +97869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98238,7 +97889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98258,7 +97909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98278,7 +97929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98298,7 +97949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98318,7 +97969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98338,7 +97989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98358,7 +98009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98378,7 +98029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98398,7 +98049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98418,7 +98069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98438,7 +98089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98458,7 +98109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98478,7 +98129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98498,7 +98149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98518,7 +98169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98538,7 +98189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98558,7 +98209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98578,7 +98229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98598,7 +98249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98618,7 +98269,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98638,7 +98289,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98658,7 +98309,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98678,7 +98329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98698,7 +98349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98718,7 +98369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98738,7 +98389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98758,7 +98409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98778,7 +98429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98798,7 +98449,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98820,7 +98471,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98842,7 +98493,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98862,7 +98513,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98882,7 +98533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98902,7 +98553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98922,7 +98573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98942,7 +98593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98962,7 +98613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -98982,7 +98633,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 145, + "teamId": "2345", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99002,7 +98653,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99022,7 +98673,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99042,7 +98693,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99062,7 +98713,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99082,7 +98733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99102,7 +98753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99122,7 +98773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99142,7 +98793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99162,7 +98813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99182,7 +98833,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99202,7 +98853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99222,7 +98873,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99242,7 +98893,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99262,7 +98913,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99282,7 +98933,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99302,7 +98953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99322,7 +98973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99342,7 +98993,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 146, + "teamId": "1456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99362,7 +99013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99382,7 +99033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99402,7 +99053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99422,7 +99073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99442,7 +99093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99462,7 +99113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99482,7 +99133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99502,7 +99153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99522,7 +99173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99542,7 +99193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99562,7 +99213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99582,7 +99233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99602,7 +99253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99622,7 +99273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99642,7 +99293,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99662,7 +99313,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 147, + "teamId": "2042", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99682,7 +99333,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99702,7 +99353,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99722,7 +99373,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99742,7 +99393,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99762,7 +99413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99782,7 +99433,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99802,7 +99453,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99822,7 +99473,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99842,7 +99493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99862,7 +99513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99882,7 +99533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99902,7 +99553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99922,7 +99573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99942,7 +99593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99962,7 +99613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -99982,7 +99633,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 148, + "teamId": "1151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100002,7 +99653,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100022,7 +99673,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100042,7 +99693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100062,7 +99713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100082,7 +99733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100102,7 +99753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100122,7 +99773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100144,7 +99795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100164,7 +99815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100184,7 +99835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100204,7 +99855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100224,7 +99875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100244,7 +99895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100264,7 +99915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100284,7 +99935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100304,7 +99955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100324,7 +99975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100344,7 +99995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100364,7 +100015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100384,7 +100035,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100404,7 +100055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100424,7 +100075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100444,7 +100095,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100464,7 +100115,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100484,7 +100135,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100504,7 +100155,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100524,7 +100175,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100544,7 +100195,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100564,7 +100215,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100584,7 +100235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100604,7 +100255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100624,7 +100275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100644,7 +100295,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100664,7 +100315,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100684,7 +100335,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100704,7 +100355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100724,7 +100375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100744,7 +100395,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100764,7 +100415,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100784,7 +100435,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 149, + "teamId": "2748", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100804,7 +100455,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100826,7 +100477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100846,7 +100497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100866,7 +100517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100886,7 +100537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100906,7 +100557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100926,7 +100577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100946,7 +100597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100966,7 +100617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -100986,7 +100637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101006,7 +100657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101026,7 +100677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101046,7 +100697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101066,7 +100717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101086,7 +100737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101106,7 +100757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101126,7 +100777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101146,7 +100797,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101166,7 +100817,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101186,7 +100837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101206,7 +100857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101228,7 +100879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101248,7 +100899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101268,7 +100919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101288,7 +100939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101308,7 +100959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101328,7 +100979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101348,7 +100999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101370,7 +101021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101390,7 +101041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101410,7 +101061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101430,7 +101081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101450,7 +101101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101470,7 +101121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101490,7 +101141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101510,7 +101161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101530,7 +101181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101550,7 +101201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101570,7 +101221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101590,7 +101241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101612,7 +101263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101632,7 +101283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101652,7 +101303,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101672,7 +101323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101692,7 +101343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101712,7 +101363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101732,7 +101383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101752,7 +101403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101772,7 +101423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101792,7 +101443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101814,7 +101465,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101834,7 +101485,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101854,7 +101505,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101874,7 +101525,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101894,7 +101545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101914,7 +101565,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 150, + "teamId": "3247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101934,7 +101585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101956,7 +101607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101976,7 +101627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -101996,7 +101647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102016,7 +101667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102036,7 +101687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102056,7 +101707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102076,7 +101727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102096,7 +101747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102116,7 +101767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102136,7 +101787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102156,7 +101807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102178,7 +101829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102198,7 +101849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102218,7 +101869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102238,7 +101889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102258,7 +101909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102278,7 +101929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102298,7 +101949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102318,7 +101969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102338,7 +101989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102358,7 +102009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102378,7 +102029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102398,7 +102049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102418,7 +102069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102438,7 +102089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102458,7 +102109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102478,7 +102129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102498,7 +102149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102518,7 +102169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102538,7 +102189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102558,7 +102209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102578,7 +102229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102598,7 +102249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 151, + "teamId": "1147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102618,7 +102269,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102638,7 +102289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102658,7 +102309,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102678,7 +102329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102700,7 +102351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102720,7 +102371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102740,7 +102391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102760,7 +102411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102780,7 +102431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102800,7 +102451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102820,7 +102471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102840,7 +102491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102860,7 +102511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 152, + "teamId": "1253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102880,7 +102531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102900,7 +102551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102920,7 +102571,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102940,7 +102591,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102960,7 +102611,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -102980,7 +102631,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103000,7 +102651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103020,7 +102671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103040,7 +102691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103060,7 +102711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103080,7 +102731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103100,7 +102751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103120,7 +102771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103140,7 +102791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103160,7 +102811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103180,7 +102831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103200,7 +102851,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103220,7 +102871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103240,7 +102891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103260,7 +102911,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103280,7 +102931,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103300,7 +102951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103320,7 +102971,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 153, + "teamId": "1749", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103340,7 +102991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103360,7 +103011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103380,7 +103031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103400,7 +103051,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103420,7 +103071,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103440,7 +103091,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103460,7 +103111,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103480,7 +103131,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103500,7 +103151,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103520,7 +103171,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103540,7 +103191,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103560,7 +103211,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103580,7 +103231,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103600,7 +103251,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103620,7 +103271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103640,7 +103291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103660,7 +103311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103680,7 +103331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103700,7 +103351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103720,7 +103371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103740,7 +103391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103760,7 +103411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103780,7 +103431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103800,7 +103451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103820,7 +103471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103840,7 +103491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103860,7 +103511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103880,7 +103531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103900,7 +103551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103920,7 +103571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103940,7 +103591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103960,7 +103611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -103980,7 +103631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104000,7 +103651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104020,7 +103671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104040,7 +103691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104060,7 +103711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104080,7 +103731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104100,7 +103751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104120,7 +103771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104140,7 +103791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104160,7 +103811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104180,7 +103831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104200,7 +103851,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104220,7 +103871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104240,7 +103891,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104260,7 +103911,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104280,7 +103931,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104300,7 +103951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104320,7 +103971,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 154, + "teamId": "1148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104340,7 +103991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104360,7 +104011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104380,7 +104031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104400,7 +104051,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104420,7 +104071,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104440,7 +104091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104460,7 +104111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104480,7 +104131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104500,7 +104151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104520,7 +104171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104540,7 +104191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104560,7 +104211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104580,7 +104231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104600,7 +104251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104620,7 +104271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104640,7 +104291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104660,7 +104311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104680,7 +104331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104700,7 +104351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104720,7 +104371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104740,7 +104391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104760,7 +104411,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 155, + "teamId": "1246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104780,7 +104431,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104800,7 +104451,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104820,7 +104471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104840,7 +104491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104860,7 +104511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104880,7 +104531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104900,7 +104551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104920,7 +104571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104940,7 +104591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104960,7 +104611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -104980,7 +104631,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105000,7 +104651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105020,7 +104671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105040,7 +104691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105060,7 +104711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105080,7 +104731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105100,7 +104751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105120,7 +104771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105140,7 +104791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105160,7 +104811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105180,7 +104831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105200,7 +104851,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105220,7 +104871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105240,7 +104891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105260,7 +104911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105280,7 +104931,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105300,7 +104951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105320,7 +104971,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 156, + "teamId": "1447", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105340,7 +104991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105360,7 +105011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105380,7 +105031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105400,7 +105051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105420,7 +105071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105440,7 +105091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105460,7 +105111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105480,7 +105131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105500,7 +105151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105520,7 +105171,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105540,7 +105191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105560,7 +105211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105580,7 +105231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105600,7 +105251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105620,7 +105271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105640,7 +105291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105660,7 +105311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105680,7 +105331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105700,7 +105351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105720,7 +105371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105740,7 +105391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105760,7 +105411,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105780,7 +105431,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105802,7 +105453,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105822,7 +105473,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105842,7 +105493,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 157, + "teamId": "1443", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105862,7 +105513,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105882,7 +105533,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105902,7 +105553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105922,7 +105573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105942,7 +105593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105962,7 +105613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -105982,7 +105633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106002,7 +105653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106022,7 +105673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106042,7 +105693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106062,7 +105713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106082,7 +105733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106102,7 +105753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106122,7 +105773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106142,7 +105793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106162,7 +105813,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 158, + "teamId": "2154", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106182,7 +105833,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106202,7 +105853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106222,7 +105873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106242,7 +105893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106262,7 +105913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106282,7 +105933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106302,7 +105953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106322,7 +105973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106342,7 +105993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106362,7 +106013,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 159, + "teamId": "2348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106382,7 +106033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106402,7 +106053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106422,7 +106073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106442,7 +106093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106462,7 +106113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106482,7 +106133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106502,7 +106153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106522,7 +106173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106542,7 +106193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106562,7 +106213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106582,7 +106233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106602,7 +106253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106622,7 +106273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106644,7 +106295,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106664,7 +106315,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106684,7 +106335,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106704,7 +106355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106724,7 +106375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106744,7 +106395,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106764,7 +106415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106784,7 +106435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106804,7 +106455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106824,7 +106475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106844,7 +106495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106864,7 +106515,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106884,7 +106535,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106904,7 +106555,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106924,7 +106575,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106944,7 +106595,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106964,7 +106615,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -106984,7 +106635,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 160, + "teamId": "1649", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107004,7 +106655,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107024,7 +106675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107044,7 +106695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107064,7 +106715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107084,7 +106735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107104,7 +106755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107124,7 +106775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107144,7 +106795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107164,7 +106815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107184,7 +106835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107204,7 +106855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107224,7 +106875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107244,7 +106895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107264,7 +106915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107284,7 +106935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107304,7 +106955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107324,7 +106975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107344,7 +106995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107364,7 +107015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107384,7 +107035,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107404,7 +107055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107424,7 +107075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107444,7 +107095,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107464,7 +107115,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 161, + "teamId": "1944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107484,7 +107135,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107504,7 +107155,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107526,7 +107177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107546,7 +107197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107566,7 +107217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107586,7 +107237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107606,7 +107257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107626,7 +107277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107646,7 +107297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107666,7 +107317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107686,7 +107337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107706,7 +107357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107726,7 +107377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107746,7 +107397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107766,7 +107417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107786,7 +107437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107806,7 +107457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107826,7 +107477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107846,7 +107497,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107866,7 +107517,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107886,7 +107537,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107906,7 +107557,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107926,7 +107577,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107946,7 +107597,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107966,7 +107617,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -107986,7 +107637,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108006,7 +107657,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108026,7 +107677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108046,7 +107697,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108066,7 +107717,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108086,7 +107737,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108106,7 +107757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108126,7 +107777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108146,7 +107797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108166,7 +107817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108186,7 +107837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108206,7 +107857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108226,7 +107877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108246,7 +107897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108266,7 +107917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108286,7 +107937,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108306,7 +107957,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108326,7 +107977,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108346,7 +107997,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108366,7 +108017,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108386,7 +108037,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108406,7 +108057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108426,7 +108077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108446,7 +108097,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 162, + "teamId": "2156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108466,7 +108117,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108486,7 +108137,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108506,7 +108157,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108526,7 +108177,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108546,7 +108197,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108566,7 +108217,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108586,7 +108237,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108606,7 +108257,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108626,7 +108277,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108646,7 +108297,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108666,7 +108317,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108686,7 +108337,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108706,7 +108357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108726,7 +108377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108748,7 +108399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108768,7 +108419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108788,7 +108439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108808,7 +108459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108828,7 +108479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108848,7 +108499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108868,7 +108519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108888,7 +108539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108908,7 +108559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108928,7 +108579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108948,7 +108599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108968,7 +108619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -108988,7 +108639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109008,7 +108659,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109028,7 +108679,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109048,7 +108699,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109070,7 +108721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109090,7 +108741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109110,7 +108761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109130,7 +108781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109150,7 +108801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109170,7 +108821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109190,7 +108841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109212,7 +108863,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109232,7 +108883,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109252,7 +108903,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109272,7 +108923,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109292,7 +108943,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109312,7 +108963,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109332,7 +108983,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 163, + "teamId": "1142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109352,7 +109003,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109372,7 +109023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109392,7 +109043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109412,7 +109063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109432,7 +109083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109452,7 +109103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109472,7 +109123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109492,7 +109143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109512,7 +109163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109532,7 +109183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109552,7 +109203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109572,7 +109223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109592,7 +109243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109612,7 +109263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109632,7 +109283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109652,7 +109303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109672,7 +109323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 164, + "teamId": "1453", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109692,7 +109343,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109712,7 +109363,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109732,7 +109383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109752,7 +109403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109772,7 +109423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109792,7 +109443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109812,7 +109463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109832,7 +109483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109852,7 +109503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109872,7 +109523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109892,7 +109543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109912,7 +109563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109932,7 +109583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109954,7 +109605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109974,7 +109625,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -109994,7 +109645,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110014,7 +109665,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110034,7 +109685,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110054,7 +109705,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110074,7 +109725,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110094,7 +109745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110114,7 +109765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 165, + "teamId": "1843", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110134,7 +109785,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110154,7 +109805,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110174,7 +109825,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110194,7 +109845,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110214,7 +109865,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110234,7 +109885,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110254,7 +109905,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110274,7 +109925,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110294,7 +109945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110314,7 +109965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110334,7 +109985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110354,7 +110005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110374,7 +110025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110394,7 +110045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110414,7 +110065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110434,7 +110085,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110454,7 +110105,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110474,7 +110125,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110494,7 +110145,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110514,7 +110165,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110534,7 +110185,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110554,7 +110205,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110574,7 +110225,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110594,7 +110245,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110614,7 +110265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110634,7 +110285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110654,7 +110305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110674,7 +110325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110694,7 +110345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110714,7 +110365,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110734,7 +110385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110754,7 +110405,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110774,7 +110425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110794,7 +110445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110814,7 +110465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110834,7 +110485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110854,7 +110505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110874,7 +110525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110894,7 +110545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110914,7 +110565,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110934,7 +110585,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 166, + "teamId": "2751", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110956,7 +110607,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110976,7 +110627,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -110996,7 +110647,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111016,7 +110667,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111036,7 +110687,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111056,7 +110707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111076,7 +110727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111098,7 +110749,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111118,7 +110769,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111138,7 +110789,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111158,7 +110809,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111178,7 +110829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111198,7 +110849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111218,7 +110869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111238,7 +110889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111258,7 +110909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111278,7 +110929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111298,7 +110949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111318,7 +110969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111338,7 +110989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111358,7 +111009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111378,7 +111029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111398,7 +111049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111418,7 +111069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111438,7 +111089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111458,7 +111109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111478,7 +111129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111498,7 +111149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111518,7 +111169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111538,7 +111189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111558,7 +111209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111578,7 +111229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111598,7 +111249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111618,7 +111269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111638,7 +111289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111658,7 +111309,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111678,7 +111329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111698,7 +111349,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111718,7 +111369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111738,7 +111389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111758,7 +111409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111778,7 +111429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111798,7 +111449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111818,7 +111469,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111838,7 +111489,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111858,7 +111509,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111878,7 +111529,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111898,7 +111549,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111918,7 +111569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111938,7 +111589,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111958,7 +111609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111978,7 +111629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -111998,7 +111649,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112018,7 +111669,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 167, + "teamId": "1353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112038,7 +111689,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112058,7 +111709,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112078,7 +111729,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112098,7 +111749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112118,7 +111769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112138,7 +111789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112158,7 +111809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112178,7 +111829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112198,7 +111849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112218,7 +111869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112238,7 +111889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112258,7 +111909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112278,7 +111929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112298,7 +111949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112318,7 +111969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112338,7 +111989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112358,7 +112009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112378,7 +112029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112398,7 +112049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112418,7 +112069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112438,7 +112089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112458,7 +112109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112478,7 +112129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112498,7 +112149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112518,7 +112169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112538,7 +112189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112558,7 +112209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112578,7 +112229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112598,7 +112249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112618,7 +112269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112638,7 +112289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112658,7 +112309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112678,7 +112329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112698,7 +112349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112718,7 +112369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112738,7 +112389,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112758,7 +112409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 168, + "teamId": "2152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112778,7 +112429,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112798,7 +112449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112818,7 +112469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112838,7 +112489,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112858,7 +112509,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112878,7 +112529,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112898,7 +112549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112918,7 +112569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112938,7 +112589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112958,7 +112609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112978,7 +112629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -112998,7 +112649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113018,7 +112669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113038,7 +112689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113058,7 +112709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113078,7 +112729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113098,7 +112749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113118,7 +112769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113138,7 +112789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113158,7 +112809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113178,7 +112829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113198,7 +112849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113218,7 +112869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113238,7 +112889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113258,7 +112909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113278,7 +112929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113298,7 +112949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113318,7 +112969,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113338,7 +112989,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113358,7 +113009,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113378,7 +113029,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113398,7 +113049,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113418,7 +113069,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113438,7 +113089,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113458,7 +113109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113478,7 +113129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113498,7 +113149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113518,7 +113169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113538,7 +113189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113558,7 +113209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113578,7 +113229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113598,7 +113249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113620,7 +113271,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113640,7 +113291,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 169, + "teamId": "2255", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113660,7 +113311,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113680,7 +113331,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113700,7 +113351,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113720,7 +113371,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113740,7 +113391,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113760,7 +113411,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113780,7 +113431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113800,7 +113451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113820,7 +113471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113840,7 +113491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113860,7 +113511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113880,7 +113531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113900,7 +113551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113920,7 +113571,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113940,7 +113591,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113960,7 +113611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -113980,7 +113631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114000,7 +113651,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114020,7 +113671,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114040,7 +113691,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114060,7 +113711,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 170, + "teamId": "2844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114080,7 +113731,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114100,7 +113751,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114120,7 +113771,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114140,7 +113791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114160,7 +113811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114180,7 +113831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114200,7 +113851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114220,7 +113871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114240,7 +113891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114260,7 +113911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114280,7 +113931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114300,7 +113951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114320,7 +113971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114340,7 +113991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114360,7 +114011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114380,7 +114031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114400,7 +114051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114420,7 +114071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114440,7 +114091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114460,7 +114111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114480,7 +114131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114500,7 +114151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114522,7 +114173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114542,7 +114193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114562,7 +114213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114584,7 +114235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114604,7 +114255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114624,7 +114275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114644,7 +114295,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114664,7 +114315,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114684,7 +114335,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114704,7 +114355,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114724,7 +114375,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114744,7 +114395,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114764,7 +114415,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114784,7 +114435,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114804,7 +114455,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 171, + "teamId": "1543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114824,7 +114475,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114844,7 +114495,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114864,7 +114515,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114884,7 +114535,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114904,7 +114555,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114924,7 +114575,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114944,7 +114595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114964,7 +114615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -114984,7 +114635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115004,7 +114655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115024,7 +114675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115044,7 +114695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115064,7 +114715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115084,7 +114735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115104,7 +114755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115124,7 +114775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115144,7 +114795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115164,7 +114815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115184,7 +114835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115204,7 +114855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115224,7 +114875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115244,7 +114895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115264,7 +114915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115284,7 +114935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115304,7 +114955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115324,7 +114975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115344,7 +114995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115364,7 +115015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115384,7 +115035,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115404,7 +115055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115424,7 +115075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115446,7 +115097,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115468,7 +115119,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115488,7 +115139,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115508,7 +115159,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115528,7 +115179,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115548,7 +115199,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115568,7 +115219,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115588,7 +115239,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115608,7 +115259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115628,7 +115279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115648,7 +115299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115668,7 +115319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115688,7 +115339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115708,7 +115359,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115728,7 +115379,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115748,7 +115399,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115768,7 +115419,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115788,7 +115439,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115808,7 +115459,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115828,7 +115479,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 172, + "teamId": "1841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115848,7 +115499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115868,7 +115519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115888,7 +115539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115908,7 +115559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115928,7 +115579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115948,7 +115599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115968,7 +115619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -115988,7 +115639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116008,7 +115659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116028,7 +115679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116048,7 +115699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116068,7 +115719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116088,7 +115739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116108,7 +115759,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116128,7 +115779,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116148,7 +115799,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116168,7 +115819,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116188,7 +115839,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116208,7 +115859,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116228,7 +115879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116248,7 +115899,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116268,7 +115919,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116288,7 +115939,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116308,7 +115959,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 173, + "teamId": "2342", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116328,7 +115979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116348,7 +115999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116370,7 +116021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116390,7 +116041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116410,7 +116061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116430,7 +116081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116450,7 +116101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116470,7 +116121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116490,7 +116141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116510,7 +116161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116530,7 +116181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116550,7 +116201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116570,7 +116221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116590,7 +116241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116610,7 +116261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116630,7 +116281,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116650,7 +116301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116670,7 +116321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116690,7 +116341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 174, + "teamId": "1445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116710,7 +116361,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116730,7 +116381,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116750,7 +116401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116770,7 +116421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116790,7 +116441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116810,7 +116461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116830,7 +116481,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116850,7 +116501,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116870,7 +116521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116890,7 +116541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116910,7 +116561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116930,7 +116581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116950,7 +116601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116970,7 +116621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -116990,7 +116641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117010,7 +116661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117030,7 +116681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117050,7 +116701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117070,7 +116721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117090,7 +116741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117110,7 +116761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117130,7 +116781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117150,7 +116801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117170,7 +116821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117190,7 +116841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117210,7 +116861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117230,7 +116881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117250,7 +116901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117270,7 +116921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117290,7 +116941,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 175, + "teamId": "2044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117310,7 +116961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117330,7 +116981,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117350,7 +117001,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117370,7 +117021,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117390,7 +117041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117410,7 +117061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117430,7 +117081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117450,7 +117101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117470,7 +117121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117490,7 +117141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117510,7 +117161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117530,7 +117181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117550,7 +117201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117572,7 +117223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117592,7 +117243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117612,7 +117263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117632,7 +117283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117652,7 +117303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117672,7 +117323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117692,7 +117343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117712,7 +117363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117732,7 +117383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117752,7 +117403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117772,7 +117423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117792,7 +117443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117812,7 +117463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117832,7 +117483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 176, + "teamId": "3045", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117852,7 +117503,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117872,7 +117523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117892,7 +117543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117912,7 +117563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117932,7 +117583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117952,7 +117603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117972,7 +117623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 177, + "teamId": "1446", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -117992,7 +117643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118012,7 +117663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118032,7 +117683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118052,7 +117703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118072,7 +117723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118092,7 +117743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118112,7 +117763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118132,7 +117783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118152,7 +117803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118172,7 +117823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118192,7 +117843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118212,7 +117863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118232,7 +117883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118252,7 +117903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118272,7 +117923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118292,7 +117943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118312,7 +117963,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118332,7 +117983,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118352,7 +118003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118372,7 +118023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118392,7 +118043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118412,7 +118063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118432,7 +118083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118452,7 +118103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118472,7 +118123,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118492,7 +118143,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118512,7 +118163,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118532,7 +118183,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118552,7 +118203,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118572,7 +118223,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118592,7 +118243,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118612,7 +118263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 178, + "teamId": "2055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118632,7 +118283,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118652,7 +118303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118672,7 +118323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118692,7 +118343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118712,7 +118363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118732,7 +118383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118752,7 +118403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118772,7 +118423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118792,7 +118443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118812,7 +118463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118832,7 +118483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 179, + "teamId": "2643", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118852,7 +118503,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118872,7 +118523,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118892,7 +118543,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118912,7 +118563,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118932,7 +118583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118952,7 +118603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118972,7 +118623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -118992,7 +118643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119012,7 +118663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119032,7 +118683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119052,7 +118703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119072,7 +118723,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119092,7 +118743,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119112,7 +118763,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119132,7 +118783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119152,7 +118803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119172,7 +118823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119192,7 +118843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119212,7 +118863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119232,7 +118883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 180, + "teamId": "3155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119252,7 +118903,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119272,7 +118923,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119292,7 +118943,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119312,7 +118963,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119332,7 +118983,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119352,7 +119003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119372,7 +119023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119392,7 +119043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119412,7 +119063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119432,7 +119083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119452,7 +119103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119472,7 +119123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119492,7 +119143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119512,7 +119163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119532,7 +119183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119552,7 +119203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119572,7 +119223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119592,7 +119243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119612,7 +119263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119632,7 +119283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119652,7 +119303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119672,7 +119323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119692,7 +119343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119712,7 +119363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119732,7 +119383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119752,7 +119403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119772,7 +119423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119792,7 +119443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119812,7 +119463,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119832,7 +119483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119852,7 +119503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119872,7 +119523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119892,7 +119543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119912,7 +119563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119932,7 +119583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119952,7 +119603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119972,7 +119623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -119992,7 +119643,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120012,7 +119663,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120032,7 +119683,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120052,7 +119703,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120072,7 +119723,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120092,7 +119743,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120112,7 +119763,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 181, + "teamId": "2344", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120132,7 +119783,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120152,7 +119803,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120172,7 +119823,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120192,7 +119843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120212,7 +119863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120232,7 +119883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120252,7 +119903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120272,7 +119923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120292,7 +119943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120312,7 +119963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120332,7 +119983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120354,7 +120005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120374,7 +120025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120394,7 +120045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120414,7 +120065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120434,7 +120085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120454,7 +120105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120474,7 +120125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120494,7 +120145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120514,7 +120165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120534,7 +120185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120554,7 +120205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120574,7 +120225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120594,7 +120245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120614,7 +120265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120634,7 +120285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120654,7 +120305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120674,7 +120325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120694,7 +120345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120714,7 +120365,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120734,7 +120385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120754,7 +120405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120774,7 +120425,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120794,7 +120445,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 182, + "teamId": "1946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120814,7 +120465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120834,7 +120485,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120854,7 +120505,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120874,7 +120525,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120894,7 +120545,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120914,7 +120565,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120934,7 +120585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120954,7 +120605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120974,7 +120625,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -120994,7 +120645,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121014,7 +120665,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121034,7 +120685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121054,7 +120705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121074,7 +120725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121094,7 +120745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121114,7 +120765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121134,7 +120785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121156,7 +120807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121176,7 +120827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121196,7 +120847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121216,7 +120867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121236,7 +120887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121256,7 +120907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121276,7 +120927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121296,7 +120947,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121316,7 +120967,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121336,7 +120987,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121356,7 +121007,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121376,7 +121027,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121396,7 +121047,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121416,7 +121067,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121436,7 +121087,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121456,7 +121107,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121476,7 +121127,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121496,7 +121147,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 183, + "teamId": "2452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121516,7 +121167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121536,7 +121187,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121556,7 +121207,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121576,7 +121227,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121596,7 +121247,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121616,7 +121267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121636,7 +121287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121656,7 +121307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121676,7 +121327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121696,7 +121347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121716,7 +121367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121736,7 +121387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121756,7 +121407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121776,7 +121427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121796,7 +121447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121816,7 +121467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121836,7 +121487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121856,7 +121507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121876,7 +121527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121896,7 +121547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121916,7 +121567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121936,7 +121587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121956,7 +121607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121976,7 +121627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -121996,7 +121647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122016,7 +121667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122036,7 +121687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122056,7 +121707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122076,7 +121727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122096,7 +121747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122116,7 +121767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122136,7 +121787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122156,7 +121807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122176,7 +121827,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122196,7 +121847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122216,7 +121867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122236,7 +121887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122256,7 +121907,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122276,7 +121927,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122296,7 +121947,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122316,7 +121967,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122336,7 +121987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122356,7 +122007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122376,7 +122027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122396,7 +122047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122416,7 +122067,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 184, + "teamId": "1448", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122436,7 +122087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122456,7 +122107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122476,7 +122127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122496,7 +122147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122516,7 +122167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122536,7 +122187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122556,7 +122207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122576,7 +122227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122596,7 +122247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122616,7 +122267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122636,7 +122287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122656,7 +122307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122676,7 +122327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122696,7 +122347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122716,7 +122367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122736,7 +122387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122756,7 +122407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122776,7 +122427,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122796,7 +122447,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122816,7 +122467,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122836,7 +122487,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122856,7 +122507,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122878,7 +122529,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122898,7 +122549,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122918,7 +122569,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122938,7 +122589,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122958,7 +122609,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122978,7 +122629,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -122998,7 +122649,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 185, + "teamId": "2547", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123018,7 +122669,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123038,7 +122689,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123058,7 +122709,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123078,7 +122729,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123098,7 +122749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123118,7 +122769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123138,7 +122789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123158,7 +122809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123178,7 +122829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123198,7 +122849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123218,7 +122869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123238,7 +122889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123258,7 +122909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123278,7 +122929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123298,7 +122949,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123318,7 +122969,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123338,7 +122989,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123358,7 +123009,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 186, + "teamId": "2646", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123378,7 +123029,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123398,7 +123049,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123418,7 +123069,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123438,7 +123089,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123458,7 +123109,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123478,7 +123129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123498,7 +123149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123518,7 +123169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123538,7 +123189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123558,7 +123209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123578,7 +123229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123598,7 +123249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123618,7 +123269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123638,7 +123289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123658,7 +123309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123678,7 +123329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123698,7 +123349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123718,7 +123369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123738,7 +123389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123758,7 +123409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123778,7 +123429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 187, + "teamId": "2444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123798,7 +123449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123818,7 +123469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123838,7 +123489,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123858,7 +123509,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123878,7 +123529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123898,7 +123549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123918,7 +123569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123938,7 +123589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123958,7 +123609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123978,7 +123629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -123998,7 +123649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124018,7 +123669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124038,7 +123689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124058,7 +123709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124078,7 +123729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124098,7 +123749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124118,7 +123769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124138,7 +123789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124158,7 +123809,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124178,7 +123829,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124198,7 +123849,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 188, + "teamId": "2451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124218,7 +123869,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124238,7 +123889,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124258,7 +123909,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124278,7 +123929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124298,7 +123949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124318,7 +123969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124338,7 +123989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124358,7 +124009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124378,7 +124029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124398,7 +124049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124418,7 +124069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124438,7 +124089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124458,7 +124109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124478,7 +124129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124498,7 +124149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124518,7 +124169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124538,7 +124189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124558,7 +124209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124578,7 +124229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124598,7 +124249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124618,7 +124269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124638,7 +124289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124660,7 +124311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124680,7 +124331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124700,7 +124351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124720,7 +124371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124740,7 +124391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124760,7 +124411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124780,7 +124431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124800,7 +124451,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124820,7 +124471,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 189, + "teamId": "3049", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124840,7 +124491,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124860,7 +124511,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124880,7 +124531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124900,7 +124551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124920,7 +124571,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124940,7 +124591,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124960,7 +124611,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -124980,7 +124631,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125000,7 +124651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125020,7 +124671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125040,7 +124691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125060,7 +124711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125080,7 +124731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125100,7 +124751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125122,7 +124773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125142,7 +124793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125162,7 +124813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125182,7 +124833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125202,7 +124853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125222,7 +124873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125242,7 +124893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125262,7 +124913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125282,7 +124933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125302,7 +124953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125322,7 +124973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125342,7 +124993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125362,7 +125013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125382,7 +125033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125402,7 +125053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125422,7 +125073,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125442,7 +125093,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125462,7 +125113,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125482,7 +125133,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125502,7 +125153,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125522,7 +125173,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125542,7 +125193,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125562,7 +125213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125582,7 +125233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125602,7 +125253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125622,7 +125273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125642,7 +125293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125662,7 +125313,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125682,7 +125333,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125702,7 +125353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125722,7 +125373,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125742,7 +125393,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125762,7 +125413,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125782,7 +125433,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125802,7 +125453,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125824,7 +125475,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 190, + "teamId": "3053", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125844,7 +125495,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125864,7 +125515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125884,7 +125535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125904,7 +125555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125924,7 +125575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125944,7 +125595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125964,7 +125615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -125984,7 +125635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126004,7 +125655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126024,7 +125675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126044,7 +125695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126064,7 +125715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126084,7 +125735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126104,7 +125755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126124,7 +125775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126144,7 +125795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126164,7 +125815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126184,7 +125835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126204,7 +125855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126224,7 +125875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126244,7 +125895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126264,7 +125915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126284,7 +125935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126304,7 +125955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126324,7 +125975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126344,7 +125995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126364,7 +126015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126384,7 +126035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126404,7 +126055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126424,7 +126075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126444,7 +126095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126464,7 +126115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126484,7 +126135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126504,7 +126155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126524,7 +126175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126544,7 +126195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126564,7 +126215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126584,7 +126235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126604,7 +126255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126624,7 +126275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126644,7 +126295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126664,7 +126315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126684,7 +126335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126704,7 +126355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126724,7 +126375,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126744,7 +126395,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126764,7 +126415,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126784,7 +126435,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126804,7 +126455,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126824,7 +126475,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126844,7 +126495,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126864,7 +126515,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 191, + "teamId": "1352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126884,7 +126535,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126904,7 +126555,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126924,7 +126575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126944,7 +126595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126964,7 +126615,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -126984,7 +126635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127004,7 +126655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127024,7 +126675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127044,7 +126695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127064,7 +126715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127084,7 +126735,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127104,7 +126755,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127124,7 +126775,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127144,7 +126795,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127164,7 +126815,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127184,7 +126835,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127204,7 +126855,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127224,7 +126875,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127244,7 +126895,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 192, + "teamId": "1849", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127266,7 +126917,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127286,7 +126937,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127308,7 +126959,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127328,7 +126979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127348,7 +126999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127368,7 +127019,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127388,7 +127039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127408,7 +127059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127428,7 +127079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127448,7 +127099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127468,7 +127119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127488,7 +127139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127508,7 +127159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127528,7 +127179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127548,7 +127199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127568,7 +127219,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127588,7 +127239,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127608,7 +127259,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127628,7 +127279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127648,7 +127299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127668,7 +127319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127688,7 +127339,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127708,7 +127359,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 193, + "teamId": "1950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127728,7 +127379,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127748,7 +127399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127768,7 +127419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127788,7 +127439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127808,7 +127459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127828,7 +127479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127848,7 +127499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127868,7 +127519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127888,7 +127539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127908,7 +127559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127928,7 +127579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127948,7 +127599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127968,7 +127619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -127988,7 +127639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128008,7 +127659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128028,7 +127679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128048,7 +127699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128068,7 +127719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128088,7 +127739,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128108,7 +127759,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128128,7 +127779,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128148,7 +127799,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128168,7 +127819,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128188,7 +127839,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128208,7 +127859,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128228,7 +127879,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128248,7 +127899,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128268,7 +127919,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128288,7 +127939,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 194, + "teamId": "1954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128308,7 +127959,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128328,7 +127979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128348,7 +127999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128368,7 +128019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128388,7 +128039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128408,7 +128059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128428,7 +128079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128448,7 +128099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128468,7 +128119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128488,7 +128139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128510,7 +128161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128530,7 +128181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128550,7 +128201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128570,7 +128221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128590,7 +128241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128610,7 +128261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128630,7 +128281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128650,7 +128301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128670,7 +128321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128690,7 +128341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128710,7 +128361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128730,7 +128381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128750,7 +128401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128770,7 +128421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128790,7 +128441,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128810,7 +128461,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128830,7 +128481,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128850,7 +128501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128870,7 +128521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128890,7 +128541,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128910,7 +128561,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128930,7 +128581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128950,7 +128601,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128970,7 +128621,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -128990,7 +128641,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129010,7 +128661,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129030,7 +128681,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129050,7 +128701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 195, + "teamId": "2543", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129072,7 +128723,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129092,7 +128743,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129112,7 +128763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129132,7 +128783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129152,7 +128803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129172,7 +128823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129192,7 +128843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129212,7 +128863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129232,7 +128883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129252,7 +128903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129274,7 +128925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129294,7 +128945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129314,7 +128965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129334,7 +128985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129354,7 +129005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129374,7 +129025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129394,7 +129045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129414,7 +129065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129434,7 +129085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129454,7 +129105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129474,7 +129125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129494,7 +129145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129514,7 +129165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129534,7 +129185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129554,7 +129205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129574,7 +129225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129594,7 +129245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129614,7 +129265,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129634,7 +129285,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129654,7 +129305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129674,7 +129325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129694,7 +129345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129714,7 +129365,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129734,7 +129385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129754,7 +129405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 196, + "teamId": "3048", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129774,7 +129425,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129794,7 +129445,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129814,7 +129465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129834,7 +129485,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129854,7 +129505,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129874,7 +129525,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129894,7 +129545,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129914,7 +129565,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129934,7 +129585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129954,7 +129605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129974,7 +129625,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -129994,7 +129645,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130014,7 +129665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130034,7 +129685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130054,7 +129705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130074,7 +129725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130094,7 +129745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130114,7 +129765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130134,7 +129785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130154,7 +129805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130174,7 +129825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130194,7 +129845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130214,7 +129865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130234,7 +129885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130254,7 +129905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130274,7 +129925,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130294,7 +129945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130314,7 +129965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130334,7 +129985,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130354,7 +130005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130374,7 +130025,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130394,7 +130045,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130414,7 +130065,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 197, + "teamId": "3254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130434,7 +130085,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130454,7 +130105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130474,7 +130125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130494,7 +130145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130514,7 +130165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130534,7 +130185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130554,7 +130205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130574,7 +130225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130594,7 +130245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130614,7 +130265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130634,7 +130285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130654,7 +130305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130674,7 +130325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130696,7 +130347,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130716,7 +130367,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130736,7 +130387,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130756,7 +130407,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130776,7 +130427,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 198, + "teamId": "1248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130796,7 +130447,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130816,7 +130467,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130836,7 +130487,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130856,7 +130507,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130876,7 +130527,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130896,7 +130547,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130916,7 +130567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130936,7 +130587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130956,7 +130607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130976,7 +130627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -130996,7 +130647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131016,7 +130667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131036,7 +130687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131056,7 +130707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131076,7 +130727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131096,7 +130747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131116,7 +130767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131136,7 +130787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131156,7 +130807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131176,7 +130827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131196,7 +130847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131216,7 +130867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131236,7 +130887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131256,7 +130907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131276,7 +130927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131296,7 +130947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131316,7 +130967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131336,7 +130987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131356,7 +131007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131376,7 +131027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131396,7 +131047,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131418,7 +131069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131438,7 +131089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131458,7 +131109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131478,7 +131129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131498,7 +131149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131518,7 +131169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131538,7 +131189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131558,7 +131209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131578,7 +131229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131598,7 +131249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131618,7 +131269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131638,7 +131289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131658,7 +131309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131678,7 +131329,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131698,7 +131349,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131718,7 +131369,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131738,7 +131389,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131758,7 +131409,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131780,7 +131431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131802,7 +131453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131822,7 +131473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131842,7 +131493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131862,7 +131513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131882,7 +131533,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131902,7 +131553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131922,7 +131573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131942,7 +131593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131962,7 +131613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -131982,7 +131633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132002,7 +131653,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132022,7 +131673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132042,7 +131693,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132062,7 +131713,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132082,7 +131733,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132102,7 +131753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132122,7 +131773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132142,7 +131793,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132162,7 +131813,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132182,7 +131833,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132202,7 +131853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132222,7 +131873,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132244,7 +131895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132264,7 +131915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132284,7 +131935,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132304,7 +131955,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132324,7 +131975,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132344,7 +131995,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132364,7 +132015,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132384,7 +132035,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132404,7 +132055,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132424,7 +132075,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132444,7 +132095,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132464,7 +132115,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132484,7 +132135,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132504,7 +132155,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 199, + "teamId": "1544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132524,7 +132175,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132544,7 +132195,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132564,7 +132215,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132584,7 +132235,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132604,7 +132255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132624,7 +132275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132644,7 +132295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132664,7 +132315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132684,7 +132335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132704,7 +132355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132724,7 +132375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132744,7 +132395,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132764,7 +132415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132784,7 +132435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132804,7 +132455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132824,7 +132475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132844,7 +132495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132864,7 +132515,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132884,7 +132535,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132904,7 +132555,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132924,7 +132575,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132944,7 +132595,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132964,7 +132615,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 200, + "teamId": "1551", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -132984,7 +132635,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133004,7 +132655,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133024,7 +132675,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133044,7 +132695,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133064,7 +132715,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133084,7 +132735,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133104,7 +132755,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133124,7 +132775,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133144,7 +132795,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133164,7 +132815,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133184,7 +132835,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133204,7 +132855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133224,7 +132875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133244,7 +132895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133264,7 +132915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133284,7 +132935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133304,7 +132955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133324,7 +132975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133344,7 +132995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133364,7 +133015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133384,7 +133035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133404,7 +133055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133424,7 +133075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133444,7 +133095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133464,7 +133115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133484,7 +133135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133504,7 +133155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133524,7 +133175,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133544,7 +133195,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133564,7 +133215,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133584,7 +133235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133604,7 +133255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133624,7 +133275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133644,7 +133295,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133664,7 +133315,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133684,7 +133335,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133704,7 +133355,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133724,7 +133375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133744,7 +133395,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133764,7 +133415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133784,7 +133435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133804,7 +133455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133824,7 +133475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133844,7 +133495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133864,7 +133515,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133884,7 +133535,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133904,7 +133555,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133924,7 +133575,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133944,7 +133595,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133964,7 +133615,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -133984,7 +133635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134004,7 +133655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134024,7 +133675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134044,7 +133695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134064,7 +133715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134084,7 +133735,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134104,7 +133755,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134124,7 +133775,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134144,7 +133795,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134164,7 +133815,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134184,7 +133835,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134204,7 +133855,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134224,7 +133875,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134244,7 +133895,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134264,7 +133915,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134284,7 +133935,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134304,7 +133955,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134324,7 +133975,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134344,7 +133995,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 201, + "teamId": "1851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134364,7 +134015,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134384,7 +134035,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134404,7 +134055,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134424,7 +134075,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134444,7 +134095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134464,7 +134115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134484,7 +134135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134504,7 +134155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134524,7 +134175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134544,7 +134195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134564,7 +134215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134584,7 +134235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134604,7 +134255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134624,7 +134275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134644,7 +134295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134664,7 +134315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134684,7 +134335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134704,7 +134355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134724,7 +134375,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134744,7 +134395,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134764,7 +134415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134784,7 +134435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134804,7 +134455,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134824,7 +134475,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134844,7 +134495,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134864,7 +134515,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134884,7 +134535,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134904,7 +134555,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134924,7 +134575,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 202, + "teamId": "2541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134944,7 +134595,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134964,7 +134615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -134984,7 +134635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135004,7 +134655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135024,7 +134675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135044,7 +134695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135064,7 +134715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135084,7 +134735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135104,7 +134755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135124,7 +134775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135144,7 +134795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135164,7 +134815,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135184,7 +134835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135204,7 +134855,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135224,7 +134875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135244,7 +134895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135264,7 +134915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135284,7 +134935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135304,7 +134955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135324,7 +134975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135344,7 +134995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135366,7 +135017,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135386,7 +135037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135406,7 +135057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135426,7 +135077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 203, + "teamId": "3142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135446,7 +135097,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135466,7 +135117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135486,7 +135137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135506,7 +135157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135526,7 +135177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135546,7 +135197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135566,7 +135217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135586,7 +135237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135606,7 +135257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135626,7 +135277,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135646,7 +135297,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135666,7 +135317,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135686,7 +135337,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 204, + "teamId": "2356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135706,7 +135357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135726,7 +135377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135746,7 +135397,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135766,7 +135417,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135786,7 +135437,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135808,7 +135459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135828,7 +135479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135848,7 +135499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135868,7 +135519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135888,7 +135539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135908,7 +135559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135928,7 +135579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135948,7 +135599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135968,7 +135619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -135988,7 +135639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136008,7 +135659,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136028,7 +135679,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136048,7 +135699,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136068,7 +135719,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136088,7 +135739,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136108,7 +135759,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136128,7 +135779,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136148,7 +135799,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136168,7 +135819,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136188,7 +135839,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136208,7 +135859,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136228,7 +135879,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136248,7 +135899,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 205, + "teamId": "1455", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136268,7 +135919,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136288,7 +135939,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136308,7 +135959,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136328,7 +135979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136348,7 +135999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136370,7 +136021,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136390,7 +136041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136410,7 +136061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136430,7 +136081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136450,7 +136101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136470,7 +136121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136490,7 +136141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136510,7 +136161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136530,7 +136181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136550,7 +136201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136570,7 +136221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136590,7 +136241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136610,7 +136261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136630,7 +136281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136650,7 +136301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136670,7 +136321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136690,7 +136341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136710,7 +136361,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136730,7 +136381,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136750,7 +136401,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136770,7 +136421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136790,7 +136441,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136810,7 +136461,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136830,7 +136481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136850,7 +136501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136870,7 +136521,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136890,7 +136541,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136910,7 +136561,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136930,7 +136581,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136950,7 +136601,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136970,7 +136621,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -136990,7 +136641,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137010,7 +136661,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137030,7 +136681,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137050,7 +136701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137070,7 +136721,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137090,7 +136741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137110,7 +136761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137130,7 +136781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137150,7 +136801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137170,7 +136821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137190,7 +136841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 206, + "teamId": "2142", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137210,7 +136861,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137230,7 +136881,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137250,7 +136901,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137270,7 +136921,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137290,7 +136941,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137310,7 +136961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137330,7 +136981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137350,7 +137001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137370,7 +137021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137390,7 +137041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137410,7 +137061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137430,7 +137081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137450,7 +137101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137470,7 +137121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137490,7 +137141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137510,7 +137161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137530,7 +137181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137550,7 +137201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137570,7 +137221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137590,7 +137241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137610,7 +137261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137630,7 +137281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137650,7 +137301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137670,7 +137321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137690,7 +137341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137710,7 +137361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137730,7 +137381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137750,7 +137401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137770,7 +137421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 207, + "teamId": "2855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137790,7 +137441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137810,7 +137461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137830,7 +137481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137850,7 +137501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137870,7 +137521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137890,7 +137541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137910,7 +137561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137930,7 +137581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137950,7 +137601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137970,7 +137621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -137990,7 +137641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138010,7 +137661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138030,7 +137681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138050,7 +137701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138070,7 +137721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138090,7 +137741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138110,7 +137761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138130,7 +137781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138150,7 +137801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138170,7 +137821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138190,7 +137841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138210,7 +137861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138230,7 +137881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138250,7 +137901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138270,7 +137921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138290,7 +137941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138310,7 +137961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138330,7 +137981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138350,7 +138001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138370,7 +138021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138390,7 +138041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138410,7 +138061,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138430,7 +138081,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138450,7 +138101,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 208, + "teamId": "3141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138470,7 +138121,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138490,7 +138141,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138510,7 +138161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138532,7 +138183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138552,7 +138203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138572,7 +138223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138592,7 +138243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138612,7 +138263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138632,7 +138283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138652,7 +138303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138674,7 +138325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138694,7 +138345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138714,7 +138365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138734,7 +138385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138754,7 +138405,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138774,7 +138425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138794,7 +138445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138814,7 +138465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138834,7 +138485,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138854,7 +138505,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138874,7 +138525,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138894,7 +138545,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138914,7 +138565,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138934,7 +138585,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138954,7 +138605,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138974,7 +138625,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -138994,7 +138645,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139014,7 +138665,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 209, + "teamId": "2755", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139036,7 +138687,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139056,7 +138707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139076,7 +138727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139096,7 +138747,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139116,7 +138767,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139136,7 +138787,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139156,7 +138807,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139176,7 +138827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139196,7 +138847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139216,7 +138867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139236,7 +138887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139256,7 +138907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139276,7 +138927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139296,7 +138947,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139318,7 +138969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139338,7 +138989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139358,7 +139009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139378,7 +139029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139398,7 +139049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139418,7 +139069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139438,7 +139089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139458,7 +139109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139478,7 +139129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139498,7 +139149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139518,7 +139169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139538,7 +139189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139558,7 +139209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139578,7 +139229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139598,7 +139249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139618,7 +139269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139638,7 +139289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139658,7 +139309,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139678,7 +139329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139698,7 +139349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 210, + "teamId": "1852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139718,7 +139369,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139738,7 +139389,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139758,7 +139409,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139778,7 +139429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139798,7 +139449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139818,7 +139469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139838,7 +139489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139858,7 +139509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139878,7 +139529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139898,7 +139549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139918,7 +139569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139938,7 +139589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139958,7 +139609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139978,7 +139629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -139998,7 +139649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140018,7 +139669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140038,7 +139689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140058,7 +139709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140078,7 +139729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140098,7 +139749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140118,7 +139769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140138,7 +139789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140158,7 +139809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140178,7 +139829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140198,7 +139849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140218,7 +139869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140238,7 +139889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140258,7 +139909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140278,7 +139929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140298,7 +139949,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 211, + "teamId": "2846", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140318,7 +139969,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140338,7 +139989,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140358,7 +140009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140378,7 +140029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140398,7 +140049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140418,7 +140069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140438,7 +140089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140458,7 +140109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140478,7 +140129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140498,7 +140149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140518,7 +140169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140538,7 +140189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140558,7 +140209,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140578,7 +140229,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140598,7 +140249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140618,7 +140269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140638,7 +140289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140660,7 +140311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140680,7 +140331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140700,7 +140351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140720,7 +140371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140740,7 +140391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140760,7 +140411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140780,7 +140431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140800,7 +140451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140820,7 +140471,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140840,7 +140491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140860,7 +140511,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140880,7 +140531,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140900,7 +140551,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140920,7 +140571,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140940,7 +140591,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140960,7 +140611,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -140980,7 +140631,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141000,7 +140651,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141022,7 +140673,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141042,7 +140693,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141062,7 +140713,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141082,7 +140733,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 212, + "teamId": "2353", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141102,7 +140753,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141122,7 +140773,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141142,7 +140793,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141162,7 +140813,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141182,7 +140833,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141202,7 +140853,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141222,7 +140873,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141242,7 +140893,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141262,7 +140913,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141282,7 +140933,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141302,7 +140953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141322,7 +140973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141342,7 +140993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141362,7 +141013,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141382,7 +141033,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141402,7 +141053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141422,7 +141073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141442,7 +141093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141462,7 +141113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141482,7 +141133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141502,7 +141153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141522,7 +141173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141542,7 +141193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141562,7 +141213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141582,7 +141233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141602,7 +141253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141622,7 +141273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141642,7 +141293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141662,7 +141313,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141682,7 +141333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141702,7 +141353,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141722,7 +141373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141742,7 +141393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141762,7 +141413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141782,7 +141433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141802,7 +141453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141822,7 +141473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141842,7 +141493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141862,7 +141513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141882,7 +141533,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141902,7 +141553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141922,7 +141573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141942,7 +141593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141962,7 +141613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -141982,7 +141633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142002,7 +141653,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142022,7 +141673,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142042,7 +141693,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142062,7 +141713,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 213, + "teamId": "2456", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142082,7 +141733,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142102,7 +141753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142122,7 +141773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142142,7 +141793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142162,7 +141813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142182,7 +141833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142202,7 +141853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142222,7 +141873,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142242,7 +141893,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142262,7 +141913,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142282,7 +141933,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142302,7 +141953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142322,7 +141973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142342,7 +141993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142362,7 +142013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142382,7 +142033,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 214, + "teamId": "1454", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142402,7 +142053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142422,7 +142073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142442,7 +142093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142462,7 +142113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142482,7 +142133,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142502,7 +142153,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142522,7 +142173,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142544,7 +142195,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142564,7 +142215,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142584,7 +142235,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142604,7 +142255,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142624,7 +142275,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142644,7 +142295,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142664,7 +142315,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142684,7 +142335,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142704,7 +142355,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142724,7 +142375,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142744,7 +142395,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142764,7 +142415,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142784,7 +142435,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142804,7 +142455,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142824,7 +142475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142844,7 +142495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142864,7 +142515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142884,7 +142535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142904,7 +142555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142924,7 +142575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142944,7 +142595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142964,7 +142615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -142984,7 +142635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143004,7 +142655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143024,7 +142675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143044,7 +142695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143064,7 +142715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143084,7 +142735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143104,7 +142755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143124,7 +142775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143144,7 +142795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143164,7 +142815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143184,7 +142835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143204,7 +142855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143224,7 +142875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143244,7 +142895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143264,7 +142915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143284,7 +142935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143304,7 +142955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143324,7 +142975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143344,7 +142995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143364,7 +143015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143384,7 +143035,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 215, + "teamId": "2841", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143404,7 +143055,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143424,7 +143075,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143446,7 +143097,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143466,7 +143117,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143486,7 +143137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143506,7 +143157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143526,7 +143177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143546,7 +143197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143566,7 +143217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143586,7 +143237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143606,7 +143257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143626,7 +143277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143646,7 +143297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143666,7 +143317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143686,7 +143337,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143706,7 +143357,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143726,7 +143377,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143746,7 +143397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143766,7 +143417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143786,7 +143437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143806,7 +143457,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143826,7 +143477,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143846,7 +143497,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143866,7 +143517,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143886,7 +143537,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 216, + "teamId": "1753", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143906,7 +143557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143926,7 +143577,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143946,7 +143597,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143966,7 +143617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -143986,7 +143637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144006,7 +143657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144026,7 +143677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144046,7 +143697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144066,7 +143717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144086,7 +143737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144106,7 +143757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144126,7 +143777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144146,7 +143797,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144166,7 +143817,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144186,7 +143837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144206,7 +143857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144228,7 +143879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144248,7 +143899,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144268,7 +143919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144288,7 +143939,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144308,7 +143959,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144328,7 +143979,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144348,7 +143999,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144368,7 +144019,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144388,7 +144039,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144408,7 +144059,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144428,7 +144079,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144448,7 +144099,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144468,7 +144119,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 217, + "teamId": "3150", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144488,7 +144139,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144508,7 +144159,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144528,7 +144179,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144548,7 +144199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144568,7 +144219,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144588,7 +144239,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144608,7 +144259,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144628,7 +144279,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144648,7 +144299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144668,7 +144319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144688,7 +144339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144708,7 +144359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144728,7 +144379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144748,7 +144399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144768,7 +144419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144788,7 +144439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144808,7 +144459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144828,7 +144479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144848,7 +144499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144868,7 +144519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144888,7 +144539,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144908,7 +144559,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144928,7 +144579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144948,7 +144599,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144968,7 +144619,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -144988,7 +144639,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145008,7 +144659,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145028,7 +144679,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145048,7 +144699,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145068,7 +144719,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145088,7 +144739,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145108,7 +144759,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145128,7 +144779,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 218, + "teamId": "1541", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145148,7 +144799,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145168,7 +144819,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145188,7 +144839,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145208,7 +144859,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145228,7 +144879,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145248,7 +144899,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145268,7 +144919,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145288,7 +144939,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145308,7 +144959,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145328,7 +144979,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145348,7 +144999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145368,7 +145019,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145388,7 +145039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145408,7 +145059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145428,7 +145079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145448,7 +145099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145468,7 +145119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145488,7 +145139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145508,7 +145159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145528,7 +145179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145548,7 +145199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145568,7 +145219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145588,7 +145239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145608,7 +145259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145628,7 +145279,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145648,7 +145299,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145668,7 +145319,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145688,7 +145339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145708,7 +145359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145728,7 +145379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145748,7 +145399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145768,7 +145419,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145788,7 +145439,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145808,7 +145459,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145828,7 +145479,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 219, + "teamId": "2445", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145848,7 +145499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145868,7 +145519,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145888,7 +145539,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145908,7 +145559,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145928,7 +145579,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145948,7 +145599,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145970,7 +145621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -145990,7 +145641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146010,7 +145661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146030,7 +145681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146050,7 +145701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146070,7 +145721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146090,7 +145741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146110,7 +145761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146130,7 +145781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146150,7 +145801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146170,7 +145821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146190,7 +145841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146210,7 +145861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146230,7 +145881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146250,7 +145901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146270,7 +145921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146290,7 +145941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146310,7 +145961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146330,7 +145981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146350,7 +146001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146370,7 +146021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146390,7 +146041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146410,7 +146061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146430,7 +146081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146450,7 +146101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146470,7 +146121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146490,7 +146141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146510,7 +146161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146530,7 +146181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146550,7 +146201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146570,7 +146221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146590,7 +146241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146610,7 +146261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146630,7 +146281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146650,7 +146301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146670,7 +146321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146690,7 +146341,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146710,7 +146361,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146730,7 +146381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146750,7 +146401,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146770,7 +146421,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 220, + "teamId": "1742", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146790,7 +146441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146810,7 +146461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146830,7 +146481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146850,7 +146501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146870,7 +146521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146890,7 +146541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146910,7 +146561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146930,7 +146581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146950,7 +146601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146970,7 +146621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -146990,7 +146641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147010,7 +146661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147030,7 +146681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147050,7 +146701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147070,7 +146721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147090,7 +146741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147110,7 +146761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147130,7 +146781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147150,7 +146801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147170,7 +146821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147190,7 +146841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147210,7 +146861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147230,7 +146881,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147250,7 +146901,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147270,7 +146921,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147290,7 +146941,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147310,7 +146961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147330,7 +146981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147350,7 +147001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147370,7 +147021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147390,7 +147041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147410,7 +147061,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147430,7 +147081,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147450,7 +147101,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147470,7 +147121,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147490,7 +147141,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147510,7 +147161,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147530,7 +147181,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147550,7 +147201,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 221, + "teamId": "2250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147570,7 +147221,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147590,7 +147241,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147610,7 +147261,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147630,7 +147281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147650,7 +147301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147670,7 +147321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147690,7 +147341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147710,7 +147361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147730,7 +147381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147750,7 +147401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147770,7 +147421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147790,7 +147441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147810,7 +147461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147830,7 +147481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147850,7 +147501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147870,7 +147521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147890,7 +147541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147910,7 +147561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147930,7 +147581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147950,7 +147601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147970,7 +147621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -147990,7 +147641,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148010,7 +147661,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148030,7 +147681,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148050,7 +147701,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148070,7 +147721,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148090,7 +147741,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148110,7 +147761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148130,7 +147781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148150,7 +147801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148170,7 +147821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148190,7 +147841,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148210,7 +147861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148230,7 +147881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148250,7 +147901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148270,7 +147921,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 222, + "teamId": "1244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148290,7 +147941,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148310,7 +147961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148330,7 +147981,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148350,7 +148001,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148370,7 +148021,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148390,7 +148041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148410,7 +148061,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148430,7 +148081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148450,7 +148101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148470,7 +148121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148490,7 +148141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148510,7 +148161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148530,7 +148181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148550,7 +148201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148570,7 +148221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148590,7 +148241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148610,7 +148261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148630,7 +148281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148650,7 +148301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148670,7 +148321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148690,7 +148341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148710,7 +148361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148730,7 +148381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148750,7 +148401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148770,7 +148421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148790,7 +148441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148810,7 +148461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148830,7 +148481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148850,7 +148501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148870,7 +148521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148890,7 +148541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148910,7 +148561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148930,7 +148581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148950,7 +148601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148970,7 +148621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -148990,7 +148641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149010,7 +148661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149030,7 +148681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149050,7 +148701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149070,7 +148721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149090,7 +148741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149110,7 +148761,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149130,7 +148781,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149150,7 +148801,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149170,7 +148821,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 223, + "teamId": "1552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149190,7 +148841,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149210,7 +148861,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149232,7 +148883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149252,7 +148903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149272,7 +148923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149292,7 +148943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149312,7 +148963,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149332,7 +148983,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149352,7 +149003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149372,7 +149023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149392,7 +149043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149412,7 +149063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149432,7 +149083,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149452,7 +149103,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149472,7 +149123,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 224, + "teamId": "1744", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149494,7 +149145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149516,7 +149167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149538,7 +149189,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149558,7 +149209,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149578,7 +149229,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149598,7 +149249,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149618,7 +149269,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149638,7 +149289,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149658,7 +149309,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149678,7 +149329,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149698,7 +149349,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149718,7 +149369,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149738,7 +149389,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149758,7 +149409,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149778,7 +149429,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149798,7 +149449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149818,7 +149469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149838,7 +149489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149858,7 +149509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149878,7 +149529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149898,7 +149549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149918,7 +149569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149938,7 +149589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149958,7 +149609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149978,7 +149629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -149998,7 +149649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150018,7 +149669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150038,7 +149689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150058,7 +149709,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150078,7 +149729,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150098,7 +149749,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150118,7 +149769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150138,7 +149789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150158,7 +149809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150178,7 +149829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150200,7 +149851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150220,7 +149871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150240,7 +149891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150260,7 +149911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150280,7 +149931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150300,7 +149951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150320,7 +149971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150340,7 +149991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150360,7 +150011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150380,7 +150031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150400,7 +150051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150420,7 +150071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150440,7 +150091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150460,7 +150111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150480,7 +150131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150500,7 +150151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150520,7 +150171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150540,7 +150191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150560,7 +150211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150580,7 +150231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150600,7 +150251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150620,7 +150271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150640,7 +150291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150660,7 +150311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150680,7 +150331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150700,7 +150351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150720,7 +150371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150740,7 +150391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150760,7 +150411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150780,7 +150431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150800,7 +150451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150820,7 +150471,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150840,7 +150491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150860,7 +150511,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150880,7 +150531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150900,7 +150551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150920,7 +150571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150940,7 +150591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150960,7 +150611,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -150980,7 +150631,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151000,7 +150651,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151020,7 +150671,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 225, + "teamId": "2544", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151040,7 +150691,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151060,7 +150711,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151080,7 +150731,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151100,7 +150751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151120,7 +150771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151140,7 +150791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151160,7 +150811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151180,7 +150831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151200,7 +150851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151220,7 +150871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151240,7 +150891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151260,7 +150911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151280,7 +150931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151300,7 +150951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151320,7 +150971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151340,7 +150991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151360,7 +151011,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151380,7 +151031,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151400,7 +151051,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151420,7 +151071,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151440,7 +151091,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151460,7 +151111,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151480,7 +151131,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151500,7 +151151,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151520,7 +151171,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151540,7 +151191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151560,7 +151211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151580,7 +151231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151600,7 +151251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151620,7 +151271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151640,7 +151291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151660,7 +151311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151680,7 +151331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151700,7 +151351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151720,7 +151371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151740,7 +151391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151760,7 +151411,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151780,7 +151431,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151800,7 +151451,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151820,7 +151471,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151840,7 +151491,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151862,7 +151513,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151882,7 +151533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 226, + "teamId": "2945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151902,7 +151553,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151922,7 +151573,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151942,7 +151593,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151962,7 +151613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -151982,7 +151633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152002,7 +151653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152022,7 +151673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152042,7 +151693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152062,7 +151713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152082,7 +151733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152102,7 +151753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152122,7 +151773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152142,7 +151793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152162,7 +151813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152182,7 +151833,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152202,7 +151853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152222,7 +151873,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152242,7 +151893,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152262,7 +151913,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152282,7 +151933,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152302,7 +151953,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 227, + "teamId": "1854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152322,7 +151973,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152342,7 +151993,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152362,7 +152013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152382,7 +152033,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152402,7 +152053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152422,7 +152073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152442,7 +152093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152462,7 +152113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152482,7 +152133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152502,7 +152153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152522,7 +152173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152542,7 +152193,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152562,7 +152213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152584,7 +152235,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152604,7 +152255,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152624,7 +152275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152644,7 +152295,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152664,7 +152315,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152684,7 +152335,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 228, + "teamId": "1855", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152704,7 +152355,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152724,7 +152375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152744,7 +152395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152764,7 +152415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152784,7 +152435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152804,7 +152455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152824,7 +152475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152844,7 +152495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152864,7 +152515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152884,7 +152535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152904,7 +152555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152924,7 +152575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152944,7 +152595,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152964,7 +152615,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -152984,7 +152635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153004,7 +152655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153024,7 +152675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153044,7 +152695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153064,7 +152715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153084,7 +152735,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153104,7 +152755,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153124,7 +152775,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 229, + "teamId": "1853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153144,7 +152795,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153164,7 +152815,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153184,7 +152835,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153204,7 +152855,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153224,7 +152875,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153244,7 +152895,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153264,7 +152915,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153284,7 +152935,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153306,7 +152957,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153326,7 +152977,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153346,7 +152997,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153366,7 +153017,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153386,7 +153037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153406,7 +153057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153426,7 +153077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153446,7 +153097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153466,7 +153117,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153486,7 +153137,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153506,7 +153157,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 230, + "teamId": "1949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153528,7 +153179,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153548,7 +153199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153568,7 +153219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153588,7 +153239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153608,7 +153259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153628,7 +153279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153648,7 +153299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153668,7 +153319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153688,7 +153339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153708,7 +153359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153728,7 +153379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153748,7 +153399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153768,7 +153419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153788,7 +153439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153808,7 +153459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153828,7 +153479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153848,7 +153499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153868,7 +153519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153888,7 +153539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153908,7 +153559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153928,7 +153579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153948,7 +153599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153968,7 +153619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -153988,7 +153639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154008,7 +153659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154028,7 +153679,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154048,7 +153699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154068,7 +153719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154088,7 +153739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154108,7 +153759,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154128,7 +153779,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154148,7 +153799,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154168,7 +153819,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154188,7 +153839,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154208,7 +153859,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154228,7 +153879,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154248,7 +153899,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154268,7 +153919,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154288,7 +153939,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154308,7 +153959,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154328,7 +153979,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154348,7 +153999,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154368,7 +154019,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154388,7 +154039,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154408,7 +154059,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 231, + "teamId": "1555", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154428,7 +154079,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154448,7 +154099,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154468,7 +154119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154488,7 +154139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154508,7 +154159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154528,7 +154179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154548,7 +154199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154568,7 +154219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154588,7 +154239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154608,7 +154259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154628,7 +154279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154648,7 +154299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154668,7 +154319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154688,7 +154339,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154708,7 +154359,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154728,7 +154379,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154748,7 +154399,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154768,7 +154419,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154788,7 +154439,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154808,7 +154459,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154830,7 +154481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154850,7 +154501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154870,7 +154521,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 232, + "teamId": "1743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154890,7 +154541,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154910,7 +154561,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154930,7 +154581,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154950,7 +154601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154970,7 +154621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -154990,7 +154641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155010,7 +154661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155030,7 +154681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155050,7 +154701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155070,7 +154721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155090,7 +154741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155110,7 +154761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155130,7 +154781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155150,7 +154801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155170,7 +154821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155190,7 +154841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155210,7 +154861,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155230,7 +154881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155250,7 +154901,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 233, + "teamId": "2351", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155270,7 +154921,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155290,7 +154941,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155310,7 +154961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155330,7 +154981,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155350,7 +155001,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155370,7 +155021,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155390,7 +155041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155410,7 +155061,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155430,7 +155081,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155450,7 +155101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155470,7 +155121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155490,7 +155141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155510,7 +155161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155530,7 +155181,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155550,7 +155201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155570,7 +155221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155590,7 +155241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155610,7 +155261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155630,7 +155281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155650,7 +155301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155670,7 +155321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155690,7 +155341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155710,7 +155361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155730,7 +155381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155750,7 +155401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155770,7 +155421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155790,7 +155441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155810,7 +155461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155830,7 +155481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155850,7 +155501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155870,7 +155521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155890,7 +155541,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155910,7 +155561,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155930,7 +155581,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155950,7 +155601,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155970,7 +155621,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -155990,7 +155641,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156010,7 +155661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156030,7 +155681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156050,7 +155701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156070,7 +155721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156090,7 +155741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156110,7 +155761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156130,7 +155781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156150,7 +155801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156170,7 +155821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156190,7 +155841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156212,7 +155863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156232,7 +155883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156252,7 +155903,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156272,7 +155923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156292,7 +155943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156312,7 +155963,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156332,7 +155983,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156352,7 +156003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156372,7 +156023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156392,7 +156043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156412,7 +156063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156432,7 +156083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156452,7 +156103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156472,7 +156123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156492,7 +156143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156512,7 +156163,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156532,7 +156183,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156552,7 +156203,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156572,7 +156223,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156592,7 +156243,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156612,7 +156263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156632,7 +156283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 234, + "teamId": "1254", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156652,7 +156303,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156672,7 +156323,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156692,7 +156343,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156712,7 +156363,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156732,7 +156383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156752,7 +156403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156772,7 +156423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156792,7 +156443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156812,7 +156463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156832,7 +156483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156852,7 +156503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156872,7 +156523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156892,7 +156543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156912,7 +156563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156932,7 +156583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156952,7 +156603,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156972,7 +156623,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -156992,7 +156643,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157012,7 +156663,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157032,7 +156683,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157052,7 +156703,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157072,7 +156723,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157092,7 +156743,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157112,7 +156763,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157132,7 +156783,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157152,7 +156803,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157172,7 +156823,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157192,7 +156843,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157212,7 +156863,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 235, + "teamId": "3147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157234,7 +156885,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157254,7 +156905,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157274,7 +156925,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157294,7 +156945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157314,7 +156965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157334,7 +156985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157354,7 +157005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157374,7 +157025,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157394,7 +157045,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157414,7 +157065,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157434,7 +157085,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157454,7 +157105,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 236, + "teamId": "1243", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157474,7 +157125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157494,7 +157145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157514,7 +157165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157534,7 +157185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157554,7 +157205,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157574,7 +157225,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157594,7 +157245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157614,7 +157265,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157634,7 +157285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157654,7 +157305,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157674,7 +157325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157694,7 +157345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157714,7 +157365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157734,7 +157385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157754,7 +157405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157774,7 +157425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157794,7 +157445,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157814,7 +157465,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157834,7 +157485,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157854,7 +157505,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157874,7 +157525,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157894,7 +157545,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157914,7 +157565,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157934,7 +157585,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157954,7 +157605,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157974,7 +157625,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -157994,7 +157645,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158014,7 +157665,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158034,7 +157685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158054,7 +157705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158074,7 +157725,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158094,7 +157745,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158114,7 +157765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158134,7 +157785,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 237, + "teamId": "2246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158154,7 +157805,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158174,7 +157825,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158194,7 +157845,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158214,7 +157865,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158234,7 +157885,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158254,7 +157905,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158274,7 +157925,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158294,7 +157945,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158314,7 +157965,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158334,7 +157985,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158354,7 +158005,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158374,7 +158025,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158394,7 +158045,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158414,7 +158065,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158434,7 +158085,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158454,7 +158105,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158474,7 +158125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158494,7 +158145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158514,7 +158165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158534,7 +158185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158554,7 +158205,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158574,7 +158225,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158594,7 +158245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158616,7 +158267,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158636,7 +158287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158656,7 +158307,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158676,7 +158327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158696,7 +158347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158716,7 +158367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158736,7 +158387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158756,7 +158407,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158776,7 +158427,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158796,7 +158447,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158816,7 +158467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158836,7 +158487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158856,7 +158507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158876,7 +158527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158896,7 +158547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158916,7 +158567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158936,7 +158587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158956,7 +158607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158976,7 +158627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -158996,7 +158647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159016,7 +158667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159036,7 +158687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159056,7 +158707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159076,7 +158727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159096,7 +158747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159116,7 +158767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159136,7 +158787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159156,7 +158807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159176,7 +158827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159196,7 +158847,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159216,7 +158867,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159236,7 +158887,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159256,7 +158907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159276,7 +158927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159296,7 +158947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159316,7 +158967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159336,7 +158987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159356,7 +159007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159376,7 +159027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159396,7 +159047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 238, + "teamId": "2151", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159416,7 +159067,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159436,7 +159087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159456,7 +159107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159476,7 +159127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159496,7 +159147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159516,7 +159167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159536,7 +159187,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159556,7 +159207,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159576,7 +159227,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159596,7 +159247,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159616,7 +159267,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159636,7 +159287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159656,7 +159307,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159676,7 +159327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159696,7 +159347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159716,7 +159367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159736,7 +159387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159756,7 +159407,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159776,7 +159427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159796,7 +159447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159816,7 +159467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159836,7 +159487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159856,7 +159507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159876,7 +159527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159896,7 +159547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159916,7 +159567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159936,7 +159587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159956,7 +159607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159976,7 +159627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -159996,7 +159647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160016,7 +159667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160036,7 +159687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160056,7 +159707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160076,7 +159727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160096,7 +159747,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160116,7 +159767,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160136,7 +159787,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160156,7 +159807,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160176,7 +159827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160196,7 +159847,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160216,7 +159867,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160236,7 +159887,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160256,7 +159907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 239, + "teamId": "1655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160276,7 +159927,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160296,7 +159947,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160316,7 +159967,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160336,7 +159987,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160356,7 +160007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160376,7 +160027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160396,7 +160047,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160416,7 +160067,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160436,7 +160087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160456,7 +160107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160476,7 +160127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160496,7 +160147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160516,7 +160167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160536,7 +160187,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160556,7 +160207,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160576,7 +160227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160596,7 +160247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160616,7 +160267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160636,7 +160287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160656,7 +160307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160676,7 +160327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160696,7 +160347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160716,7 +160367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160736,7 +160387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160756,7 +160407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160776,7 +160427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160796,7 +160447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160816,7 +160467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160836,7 +160487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160856,7 +160507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160876,7 +160527,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160896,7 +160547,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160916,7 +160567,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160936,7 +160587,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160956,7 +160607,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160976,7 +160627,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -160996,7 +160647,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161016,7 +160667,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 240, + "teamId": "2552", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161036,7 +160687,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161056,7 +160707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161076,7 +160727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161096,7 +160747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161116,7 +160767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161136,7 +160787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161156,7 +160807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161176,7 +160827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161196,7 +160847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161216,7 +160867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161236,7 +160887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161256,7 +160907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161276,7 +160927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161298,7 +160949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161318,7 +160969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161338,7 +160989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161358,7 +161009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161378,7 +161029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161398,7 +161049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161418,7 +161069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161438,7 +161089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161458,7 +161109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161478,7 +161129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161498,7 +161149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161518,7 +161169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161538,7 +161189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161558,7 +161209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161578,7 +161229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161598,7 +161249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 241, + "teamId": "1556", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161618,7 +161269,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161638,7 +161289,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161658,7 +161309,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161678,7 +161329,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161698,7 +161349,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161718,7 +161369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161738,7 +161389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161758,7 +161409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161778,7 +161429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161798,7 +161449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161818,7 +161469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161838,7 +161489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161858,7 +161509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161878,7 +161529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161898,7 +161549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161918,7 +161569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161938,7 +161589,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161958,7 +161609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161978,7 +161629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -161998,7 +161649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162018,7 +161669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162038,7 +161689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162058,7 +161709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162078,7 +161729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162098,7 +161749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162118,7 +161769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162138,7 +161789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162158,7 +161809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162178,7 +161829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162198,7 +161849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162218,7 +161869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162238,7 +161889,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162258,7 +161909,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162278,7 +161929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162298,7 +161949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162318,7 +161969,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162338,7 +161989,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162358,7 +162009,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162378,7 +162029,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162398,7 +162049,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162418,7 +162069,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162438,7 +162089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162458,7 +162109,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162478,7 +162129,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162498,7 +162149,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162518,7 +162169,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162538,7 +162189,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162558,7 +162209,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162578,7 +162229,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162598,7 +162249,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162618,7 +162269,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162638,7 +162289,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162658,7 +162309,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162678,7 +162329,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162698,7 +162349,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162718,7 +162369,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162738,7 +162389,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162758,7 +162409,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162778,7 +162429,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 242, + "teamId": "3056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162798,7 +162449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162818,7 +162469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162838,7 +162489,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162858,7 +162509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162878,7 +162529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162898,7 +162549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162918,7 +162569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162938,7 +162589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162958,7 +162609,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162978,7 +162629,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -162998,7 +162649,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163018,7 +162669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163038,7 +162689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163058,7 +162709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163078,7 +162729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163098,7 +162749,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163118,7 +162769,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163138,7 +162789,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163158,7 +162809,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163178,7 +162829,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163198,7 +162849,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163218,7 +162869,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163240,7 +162891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163260,7 +162911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163282,7 +162933,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163302,7 +162953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163322,7 +162973,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163342,7 +162993,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163362,7 +163013,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163382,7 +163033,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163402,7 +163053,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 243, + "teamId": "3046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163422,7 +163073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163442,7 +163093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163462,7 +163113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163482,7 +163133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163502,7 +163153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163522,7 +163173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163542,7 +163193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163564,7 +163215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163584,7 +163235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163604,7 +163255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163624,7 +163275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163644,7 +163295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163664,7 +163315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163684,7 +163335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163704,7 +163355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163724,7 +163375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163744,7 +163395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163764,7 +163415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163784,7 +163435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163804,7 +163455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163824,7 +163475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163844,7 +163495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163864,7 +163515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163884,7 +163535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163904,7 +163555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163924,7 +163575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163944,7 +163595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163964,7 +163615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -163984,7 +163635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164004,7 +163655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164024,7 +163675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164044,7 +163695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164064,7 +163715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 244, + "teamId": "2645", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164084,7 +163735,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164104,7 +163755,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164124,7 +163775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164144,7 +163795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164164,7 +163815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164184,7 +163835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164204,7 +163855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164224,7 +163875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164244,7 +163895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164264,7 +163915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164284,7 +163935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164304,7 +163955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 245, + "teamId": "3148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164324,7 +163975,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164344,7 +163995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164364,7 +164015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164384,7 +164035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164404,7 +164055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164424,7 +164075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164444,7 +164095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164464,7 +164115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164484,7 +164135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164504,7 +164155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164524,7 +164175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164544,7 +164195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164564,7 +164215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164584,7 +164235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164604,7 +164255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164624,7 +164275,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164644,7 +164295,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 246, + "teamId": "3244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164664,7 +164315,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164684,7 +164335,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164706,7 +164357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164726,7 +164377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164746,7 +164397,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164766,7 +164417,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164786,7 +164437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164806,7 +164457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164826,7 +164477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164846,7 +164497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164866,7 +164517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164886,7 +164537,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164906,7 +164557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164926,7 +164577,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164946,7 +164597,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164966,7 +164617,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -164986,7 +164637,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165006,7 +164657,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165026,7 +164677,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165046,7 +164697,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165066,7 +164717,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165086,7 +164737,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165106,7 +164757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165126,7 +164777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165146,7 +164797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165168,7 +164819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165188,7 +164839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165208,7 +164859,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165228,7 +164879,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165248,7 +164899,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165268,7 +164919,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165288,7 +164939,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165308,7 +164959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165328,7 +164979,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165348,7 +164999,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165368,7 +165019,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165388,7 +165039,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165408,7 +165059,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165428,7 +165079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165448,7 +165099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165468,7 +165119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165488,7 +165139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165508,7 +165159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165528,7 +165179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165548,7 +165199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165568,7 +165219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165588,7 +165239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165608,7 +165259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165628,7 +165279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165648,7 +165299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165668,7 +165319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165688,7 +165339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165708,7 +165359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165728,7 +165379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165748,7 +165399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165768,7 +165419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165788,7 +165439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165808,7 +165459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165828,7 +165479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165848,7 +165499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165868,7 +165519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165888,7 +165539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165908,7 +165559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165928,7 +165579,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165948,7 +165599,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165968,7 +165619,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -165988,7 +165639,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166008,7 +165659,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166030,7 +165681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166050,7 +165701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166070,7 +165721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166090,7 +165741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166110,7 +165761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166130,7 +165781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166150,7 +165801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166170,7 +165821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166190,7 +165841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166210,7 +165861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166230,7 +165881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166250,7 +165901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166270,7 +165921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166290,7 +165941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166310,7 +165961,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166330,7 +165981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166350,7 +166001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166370,7 +166021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166390,7 +166041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166410,7 +166061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166430,7 +166081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166450,7 +166101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166470,7 +166121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166490,7 +166141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166510,7 +166161,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166530,7 +166181,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166550,7 +166201,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 247, + "teamId": "2052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166570,7 +166221,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166590,7 +166241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166610,7 +166261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166630,7 +166281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166650,7 +166301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166670,7 +166321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166690,7 +166341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166710,7 +166361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166730,7 +166381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166750,7 +166401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166770,7 +166421,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166790,7 +166441,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166810,7 +166461,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166830,7 +166481,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166850,7 +166501,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166870,7 +166521,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 248, + "teamId": "3250", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166890,7 +166541,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166910,7 +166561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166930,7 +166581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166950,7 +166601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166970,7 +166621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -166990,7 +166641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167010,7 +166661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167030,7 +166681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167050,7 +166701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167070,7 +166721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167090,7 +166741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167110,7 +166761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167130,7 +166781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167150,7 +166801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167170,7 +166821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167190,7 +166841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167210,7 +166861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167230,7 +166881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167250,7 +166901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167270,7 +166921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167290,7 +166941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167310,7 +166961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167330,7 +166981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167350,7 +167001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167370,7 +167021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167390,7 +167041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167410,7 +167061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167430,7 +167081,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167450,7 +167101,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167470,7 +167121,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167490,7 +167141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167510,7 +167161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167530,7 +167181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167550,7 +167201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167570,7 +167221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167592,7 +167243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167612,7 +167263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167632,7 +167283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167652,7 +167303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167672,7 +167323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167692,7 +167343,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167712,7 +167363,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167732,7 +167383,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167752,7 +167403,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167772,7 +167423,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167792,7 +167443,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 249, + "teamId": "2354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167812,7 +167463,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167832,7 +167483,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167852,7 +167503,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167872,7 +167523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167892,7 +167543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167912,7 +167563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167932,7 +167583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167952,7 +167603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167972,7 +167623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -167992,7 +167643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168012,7 +167663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168032,7 +167683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168052,7 +167703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168072,7 +167723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168092,7 +167743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168112,7 +167763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168132,7 +167783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168152,7 +167803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168172,7 +167823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168192,7 +167843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168212,7 +167863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168232,7 +167883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168252,7 +167903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168272,7 +167923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168292,7 +167943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168312,7 +167963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168332,7 +167983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168352,7 +168003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168372,7 +168023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168392,7 +168043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168412,7 +168063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168432,7 +168083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168452,7 +168103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168472,7 +168123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168492,7 +168143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168512,7 +168163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168532,7 +168183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168552,7 +168203,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168572,7 +168223,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168592,7 +168243,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168612,7 +168263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168632,7 +168283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 250, + "teamId": "2647", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168652,7 +168303,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168672,7 +168323,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168692,7 +168343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168712,7 +168363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168732,7 +168383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168752,7 +168403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168772,7 +168423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168792,7 +168443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168812,7 +168463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168832,7 +168483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168852,7 +168503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168872,7 +168523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168892,7 +168543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168912,7 +168563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168932,7 +168583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168952,7 +168603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168972,7 +168623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -168992,7 +168643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169012,7 +168663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169032,7 +168683,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169052,7 +168703,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169072,7 +168723,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169092,7 +168743,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169112,7 +168763,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169132,7 +168783,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169152,7 +168803,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169172,7 +168823,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169192,7 +168843,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169212,7 +168863,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169232,7 +168883,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169252,7 +168903,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169272,7 +168923,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169292,7 +168943,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169312,7 +168963,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169332,7 +168983,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169352,7 +169003,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169372,7 +169023,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169392,7 +169043,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169412,7 +169063,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169432,7 +169083,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 251, + "teamId": "3152", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169452,7 +169103,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169472,7 +169123,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169492,7 +169143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169512,7 +169163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169532,7 +169183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169552,7 +169203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169572,7 +169223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169592,7 +169243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169612,7 +169263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169632,7 +169283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169652,7 +169303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169672,7 +169323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169692,7 +169343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169712,7 +169363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169732,7 +169383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169752,7 +169403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169772,7 +169423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169792,7 +169443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169812,7 +169463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169832,7 +169483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169852,7 +169503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169872,7 +169523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169892,7 +169543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169912,7 +169563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169932,7 +169583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169952,7 +169603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 252, + "teamId": "1354", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169972,7 +169623,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -169992,7 +169643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170012,7 +169663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170032,7 +169683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170052,7 +169703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170072,7 +169723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170092,7 +169743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170112,7 +169763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170132,7 +169783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170152,7 +169803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170172,7 +169823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170192,7 +169843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170212,7 +169863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170232,7 +169883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170252,7 +169903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170272,7 +169923,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170292,7 +169943,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170312,7 +169963,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170332,7 +169983,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170352,7 +170003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170372,7 +170023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170392,7 +170043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170412,7 +170063,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170432,7 +170083,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170452,7 +170103,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170472,7 +170123,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 253, + "teamId": "2153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170492,7 +170143,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170512,7 +170163,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170532,7 +170183,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170552,7 +170203,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170572,7 +170223,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170592,7 +170243,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170612,7 +170263,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170632,7 +170283,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170652,7 +170303,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170672,7 +170323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170692,7 +170343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170712,7 +170363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170732,7 +170383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170752,7 +170403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170772,7 +170423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170792,7 +170443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170812,7 +170463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170832,7 +170483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170852,7 +170503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170872,7 +170523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170892,7 +170543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 254, + "teamId": "1442", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170912,7 +170563,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170932,7 +170583,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170952,7 +170603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170972,7 +170623,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -170992,7 +170643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171012,7 +170663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171032,7 +170683,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171052,7 +170703,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171072,7 +170723,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171094,7 +170745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171114,7 +170765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171134,7 +170785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171154,7 +170805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171174,7 +170825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171194,7 +170845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171214,7 +170865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171234,7 +170885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171254,7 +170905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171274,7 +170925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171294,7 +170945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171314,7 +170965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171334,7 +170985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171354,7 +171005,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171374,7 +171025,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171394,7 +171045,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171414,7 +171065,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 255, + "teamId": "1644", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171434,7 +171085,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171454,7 +171105,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171474,7 +171125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171494,7 +171145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171514,7 +171165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171534,7 +171185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171554,7 +171205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171574,7 +171225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171594,7 +171245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171614,7 +171265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171634,7 +171285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171654,7 +171305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171674,7 +171325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171694,7 +171345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171714,7 +171365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171734,7 +171385,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171754,7 +171405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171774,7 +171425,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171794,7 +171445,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 256, + "teamId": "2852", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171814,7 +171465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171834,7 +171485,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171854,7 +171505,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171874,7 +171525,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171894,7 +171545,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171914,7 +171565,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171934,7 +171585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171954,7 +171605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171974,7 +171625,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -171994,7 +171645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172014,7 +171665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172034,7 +171685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172054,7 +171705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172074,7 +171725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172094,7 +171745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172114,7 +171765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172134,7 +171785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172154,7 +171805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172174,7 +171825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172194,7 +171845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172214,7 +171865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172234,7 +171885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172254,7 +171905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172274,7 +171925,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172294,7 +171945,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172314,7 +171965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172334,7 +171985,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172354,7 +172005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172374,7 +172025,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172394,7 +172045,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172414,7 +172065,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172434,7 +172085,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172454,7 +172105,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172474,7 +172125,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172494,7 +172145,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172514,7 +172165,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172534,7 +172185,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172554,7 +172205,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172574,7 +172225,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172594,7 +172245,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172614,7 +172265,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 257, + "teamId": "1651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172634,7 +172285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172654,7 +172305,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172674,7 +172325,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172694,7 +172345,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172714,7 +172365,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172734,7 +172385,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172754,7 +172405,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172774,7 +172425,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172794,7 +172445,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172814,7 +172465,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172834,7 +172485,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172854,7 +172505,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172874,7 +172525,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172894,7 +172545,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172914,7 +172565,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172934,7 +172585,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172954,7 +172605,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172974,7 +172625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -172994,7 +172645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173014,7 +172665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173034,7 +172685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173054,7 +172705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173074,7 +172725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173094,7 +172745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173114,7 +172765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173134,7 +172785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173154,7 +172805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173174,7 +172825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173194,7 +172845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173214,7 +172865,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173234,7 +172885,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173254,7 +172905,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173274,7 +172925,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173294,7 +172945,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173314,7 +172965,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173334,7 +172985,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173354,7 +173005,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173374,7 +173025,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173394,7 +173045,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173414,7 +173065,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 258, + "teamId": "1850", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173434,7 +173085,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173454,7 +173105,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173474,7 +173125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173494,7 +173145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173514,7 +173165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173534,7 +173185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173554,7 +173205,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173574,7 +173225,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173594,7 +173245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173614,7 +173265,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173634,7 +173285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173654,7 +173305,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173674,7 +173325,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173696,7 +173347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173716,7 +173367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173736,7 +173387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173756,7 +173407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173776,7 +173427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173796,7 +173447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173816,7 +173467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173836,7 +173487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173856,7 +173507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173876,7 +173527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173896,7 +173547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173916,7 +173567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173936,7 +173587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173956,7 +173607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173976,7 +173627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -173996,7 +173647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174016,7 +173667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174036,7 +173687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174056,7 +173707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174076,7 +173727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174096,7 +173747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174116,7 +173767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174136,7 +173787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174156,7 +173807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174176,7 +173827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 259, + "teamId": "2946", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174196,7 +173847,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174216,7 +173867,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174236,7 +173887,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174256,7 +173907,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174276,7 +173927,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174296,7 +173947,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174316,7 +173967,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174336,7 +173987,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174356,7 +174007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174376,7 +174027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174396,7 +174047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174416,7 +174067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174436,7 +174087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174456,7 +174107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174476,7 +174127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174496,7 +174147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174516,7 +174167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174536,7 +174187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174556,7 +174207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174576,7 +174227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174596,7 +174247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174616,7 +174267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174636,7 +174287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174656,7 +174307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174676,7 +174327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174696,7 +174347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174716,7 +174367,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174736,7 +174387,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174756,7 +174407,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174776,7 +174427,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174796,7 +174447,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174816,7 +174467,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174836,7 +174487,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174856,7 +174507,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174876,7 +174527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174896,7 +174547,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174916,7 +174567,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 260, + "teamId": "1549", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174936,7 +174587,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174956,7 +174607,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174976,7 +174627,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -174996,7 +174647,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175016,7 +174667,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175036,7 +174687,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175056,7 +174707,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175076,7 +174727,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175096,7 +174747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175116,7 +174767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175136,7 +174787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175156,7 +174807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175176,7 +174827,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175196,7 +174847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175216,7 +174867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175236,7 +174887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175256,7 +174907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175276,7 +174927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175296,7 +174947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175316,7 +174967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175336,7 +174987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175356,7 +175007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 261, + "teamId": "1943", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175376,7 +175027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175396,7 +175047,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175416,7 +175067,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175436,7 +175087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175456,7 +175107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175476,7 +175127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175496,7 +175147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175516,7 +175167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175536,7 +175187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175556,7 +175207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175576,7 +175227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175596,7 +175247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175616,7 +175267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175636,7 +175287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175656,7 +175307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175676,7 +175327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175696,7 +175347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175716,7 +175367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175736,7 +175387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175756,7 +175407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175776,7 +175427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175796,7 +175447,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175816,7 +175467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175836,7 +175487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175856,7 +175507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175876,7 +175527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 262, + "teamId": "2352", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175896,7 +175547,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175916,7 +175567,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175936,7 +175587,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175956,7 +175607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175976,7 +175627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -175996,7 +175647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176016,7 +175667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176036,7 +175687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176056,7 +175707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176076,7 +175727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176096,7 +175747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176116,7 +175767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176136,7 +175787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176156,7 +175807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176176,7 +175827,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176196,7 +175847,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176216,7 +175867,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176236,7 +175887,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176256,7 +175907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176276,7 +175927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176296,7 +175947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176316,7 +175967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176336,7 +175987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176356,7 +176007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176376,7 +176027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176396,7 +176047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176416,7 +176067,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176436,7 +176087,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176456,7 +176107,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 263, + "teamId": "2545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176476,7 +176127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176496,7 +176147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176516,7 +176167,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176536,7 +176187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176556,7 +176207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176576,7 +176227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176596,7 +176247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176616,7 +176267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176636,7 +176287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176656,7 +176307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176676,7 +176327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176696,7 +176347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176716,7 +176367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176736,7 +176387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176756,7 +176407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176776,7 +176427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176796,7 +176447,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176816,7 +176467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176836,7 +176487,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176856,7 +176507,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176876,7 +176527,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176896,7 +176547,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176916,7 +176567,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176936,7 +176587,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176956,7 +176607,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176976,7 +176627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -176996,7 +176647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177016,7 +176667,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177036,7 +176687,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177056,7 +176707,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177076,7 +176727,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177096,7 +176747,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177116,7 +176767,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177136,7 +176787,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177156,7 +176807,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 264, + "teamId": "2651", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177176,7 +176827,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177196,7 +176847,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177216,7 +176867,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177236,7 +176887,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177256,7 +176907,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177276,7 +176927,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177296,7 +176947,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177316,7 +176967,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177336,7 +176987,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177356,7 +177007,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177376,7 +177027,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177396,7 +177047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177416,7 +177067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177436,7 +177087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177456,7 +177107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177476,7 +177127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177496,7 +177147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177516,7 +177167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177536,7 +177187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177556,7 +177207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177576,7 +177227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177596,7 +177247,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177616,7 +177267,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177636,7 +177287,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177656,7 +177307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177676,7 +177327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177696,7 +177347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177716,7 +177367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177736,7 +177387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177756,7 +177407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177776,7 +177427,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177796,7 +177447,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177816,7 +177467,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 265, + "teamId": "1842", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177836,7 +177487,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177856,7 +177507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177876,7 +177527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177896,7 +177547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177916,7 +177567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177936,7 +177587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177956,7 +177607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177976,7 +177627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -177996,7 +177647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178018,7 +177669,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178038,7 +177689,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178060,7 +177711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178080,7 +177731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178102,7 +177753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178124,7 +177775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178144,7 +177795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178164,7 +177815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178184,7 +177835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178204,7 +177855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178224,7 +177875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178244,7 +177895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178264,7 +177915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178284,7 +177935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178304,7 +177955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178324,7 +177975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178344,7 +177995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178364,7 +178015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178386,7 +178037,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178406,7 +178057,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178426,7 +178077,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178446,7 +178097,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178466,7 +178117,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178486,7 +178137,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178506,7 +178157,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178526,7 +178177,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178546,7 +178197,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178566,7 +178217,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178586,7 +178237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178606,7 +178257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178626,7 +178277,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178646,7 +178297,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178666,7 +178317,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178686,7 +178337,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178706,7 +178357,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178726,7 +178377,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178746,7 +178397,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178766,7 +178417,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 266, + "teamId": "2641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178788,7 +178439,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178808,7 +178459,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178828,7 +178479,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178848,7 +178499,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178868,7 +178519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178888,7 +178539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178910,7 +178561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178930,7 +178581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178950,7 +178601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178970,7 +178621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -178990,7 +178641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179010,7 +178661,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179030,7 +178681,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179050,7 +178701,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179070,7 +178721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179090,7 +178741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179110,7 +178761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179130,7 +178781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179150,7 +178801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179170,7 +178821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179190,7 +178841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179210,7 +178861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179230,7 +178881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179250,7 +178901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179272,7 +178923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179292,7 +178943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179312,7 +178963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179332,7 +178983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179352,7 +179003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179372,7 +179023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179392,7 +179043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179412,7 +179063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179432,7 +179083,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179452,7 +179103,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179472,7 +179123,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179492,7 +179143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179512,7 +179163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179532,7 +179183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179552,7 +179203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179572,7 +179223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179592,7 +179243,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179612,7 +179263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179632,7 +179283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179652,7 +179303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179672,7 +179323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 267, + "teamId": "1245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179692,7 +179343,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179712,7 +179363,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179732,7 +179383,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179752,7 +179403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179772,7 +179423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179792,7 +179443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179812,7 +179463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179832,7 +179483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179852,7 +179503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179872,7 +179523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179892,7 +179543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179912,7 +179563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179932,7 +179583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179952,7 +179603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179972,7 +179623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -179992,7 +179643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180012,7 +179663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180032,7 +179683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180052,7 +179703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180072,7 +179723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180092,7 +179743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180112,7 +179763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180132,7 +179783,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180152,7 +179803,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180172,7 +179823,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180192,7 +179843,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180212,7 +179863,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180232,7 +179883,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180252,7 +179903,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 268, + "teamId": "2650", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180272,7 +179923,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180292,7 +179943,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180312,7 +179963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180332,7 +179983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180352,7 +180003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180372,7 +180023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180392,7 +180043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180412,7 +180063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180432,7 +180083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180452,7 +180103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180472,7 +180123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180492,7 +180143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180512,7 +180163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180532,7 +180183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180552,7 +180203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180572,7 +180223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180592,7 +180243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180614,7 +180265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180634,7 +180285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180654,7 +180305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180674,7 +180325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180694,7 +180345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180714,7 +180365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180734,7 +180385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180754,7 +180405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180774,7 +180425,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180794,7 +180445,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180814,7 +180465,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180834,7 +180485,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180854,7 +180505,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180874,7 +180525,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180894,7 +180545,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180914,7 +180565,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 269, + "teamId": "2244", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180934,7 +180585,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180954,7 +180605,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180974,7 +180625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -180994,7 +180645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181014,7 +180665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181034,7 +180685,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181054,7 +180705,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181074,7 +180725,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181094,7 +180745,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181114,7 +180765,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181134,7 +180785,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181154,7 +180805,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181174,7 +180825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181194,7 +180845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181214,7 +180865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181234,7 +180885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181254,7 +180905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181274,7 +180925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181294,7 +180945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181314,7 +180965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181334,7 +180985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181354,7 +181005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181374,7 +181025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181394,7 +181045,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181414,7 +181065,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181434,7 +181085,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181454,7 +181105,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181474,7 +181125,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181494,7 +181145,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181514,7 +181165,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181534,7 +181185,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181554,7 +181205,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181574,7 +181225,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181594,7 +181245,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181614,7 +181265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181634,7 +181285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181654,7 +181305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181674,7 +181325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181694,7 +181345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181714,7 +181365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181734,7 +181385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181754,7 +181405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181774,7 +181425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181794,7 +181445,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181814,7 +181465,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181834,7 +181485,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181854,7 +181505,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181874,7 +181525,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181896,7 +181547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181916,7 +181567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181936,7 +181587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181956,7 +181607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181976,7 +181627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -181996,7 +181647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182016,7 +181667,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182036,7 +181687,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182056,7 +181707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182076,7 +181727,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 270, + "teamId": "2347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182096,7 +181747,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182116,7 +181767,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182136,7 +181787,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182156,7 +181807,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182176,7 +181827,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182196,7 +181847,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182216,7 +181867,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182236,7 +181887,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182256,7 +181907,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182276,7 +181927,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182298,7 +181949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182318,7 +181969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182338,7 +181989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182358,7 +182009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182378,7 +182029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182398,7 +182049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182418,7 +182069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182438,7 +182089,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182458,7 +182109,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182478,7 +182129,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182498,7 +182149,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182518,7 +182169,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182538,7 +182189,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182558,7 +182209,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182578,7 +182229,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182598,7 +182249,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182618,7 +182269,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 271, + "teamId": "2149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182638,7 +182289,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182658,7 +182309,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182678,7 +182329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182698,7 +182349,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182718,7 +182369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182738,7 +182389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182758,7 +182409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182778,7 +182429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182798,7 +182449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182818,7 +182469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182838,7 +182489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182860,7 +182511,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182880,7 +182531,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182900,7 +182551,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182920,7 +182571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182940,7 +182591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182960,7 +182611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -182980,7 +182631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183000,7 +182651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183020,7 +182671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183040,7 +182691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183060,7 +182711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183080,7 +182731,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183100,7 +182751,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 272, + "teamId": "2051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183120,7 +182771,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183140,7 +182791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183160,7 +182811,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183180,7 +182831,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183200,7 +182851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183220,7 +182871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183240,7 +182891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183260,7 +182911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183280,7 +182931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183300,7 +182951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183320,7 +182971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183340,7 +182991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183360,7 +183011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183380,7 +183031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183400,7 +183051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183420,7 +183071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183440,7 +183091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183460,7 +183111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183480,7 +183131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183500,7 +183151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183520,7 +183171,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183540,7 +183191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183560,7 +183211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183580,7 +183231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183600,7 +183251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183620,7 +183271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183640,7 +183291,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183660,7 +183311,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183680,7 +183331,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183700,7 +183351,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183720,7 +183371,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 273, + "teamId": "2247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183740,7 +183391,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183760,7 +183411,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183780,7 +183431,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183800,7 +183451,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183820,7 +183471,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183840,7 +183491,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183860,7 +183511,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183880,7 +183531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183900,7 +183551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183920,7 +183571,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183940,7 +183591,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183960,7 +183611,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -183980,7 +183631,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184000,7 +183651,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184020,7 +183671,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184040,7 +183691,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184060,7 +183711,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184080,7 +183731,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184100,7 +183751,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184120,7 +183771,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184140,7 +183791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184160,7 +183811,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184180,7 +183831,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184200,7 +183851,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184220,7 +183871,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184240,7 +183891,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184260,7 +183911,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184280,7 +183931,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184300,7 +183951,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184320,7 +183971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184340,7 +183991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184360,7 +184011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184380,7 +184031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184400,7 +184051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184420,7 +184071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184440,7 +184091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184460,7 +184111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184480,7 +184131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184500,7 +184151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184520,7 +184171,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184540,7 +184191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184560,7 +184211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184580,7 +184231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184600,7 +184251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184620,7 +184271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184640,7 +184291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184660,7 +184311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184680,7 +184331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184700,7 +184351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184720,7 +184371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184740,7 +184391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184760,7 +184411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184780,7 +184431,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184800,7 +184451,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184820,7 +184471,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184840,7 +184491,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184860,7 +184511,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184880,7 +184531,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184900,7 +184551,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184920,7 +184571,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184940,7 +184591,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 274, + "teamId": "3051", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184960,7 +184611,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -184980,7 +184631,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185000,7 +184651,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185020,7 +184671,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185040,7 +184691,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185060,7 +184711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185080,7 +184731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185100,7 +184751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185120,7 +184771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185140,7 +184791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185160,7 +184811,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185180,7 +184831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185200,7 +184851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185222,7 +184873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185242,7 +184893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185262,7 +184913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185282,7 +184933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185302,7 +184953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185322,7 +184973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185342,7 +184993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185362,7 +185013,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185382,7 +185033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185402,7 +185053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185422,7 +185073,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 275, + "teamId": "2249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185442,7 +185093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185462,7 +185113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185482,7 +185133,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185502,7 +185153,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185522,7 +185173,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185542,7 +185193,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185562,7 +185213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185582,7 +185233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185602,7 +185253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185622,7 +185273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185642,7 +185293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185662,7 +185313,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185682,7 +185333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185702,7 +185353,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185722,7 +185373,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185742,7 +185393,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185762,7 +185413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185782,7 +185433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185802,7 +185453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185822,7 +185473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185842,7 +185493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185862,7 +185513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185882,7 +185533,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185902,7 +185553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185922,7 +185573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185942,7 +185593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185962,7 +185613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -185984,7 +185635,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186004,7 +185655,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186024,7 +185675,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186044,7 +185695,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186064,7 +185715,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186084,7 +185735,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186104,7 +185755,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186124,7 +185775,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186144,7 +185795,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186164,7 +185815,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186184,7 +185835,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186204,7 +185855,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 276, + "teamId": "2141", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186224,7 +185875,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186244,7 +185895,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186264,7 +185915,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186284,7 +185935,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186304,7 +185955,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186324,7 +185975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186344,7 +185995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186364,7 +186015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186384,7 +186035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186404,7 +186055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186424,7 +186075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186444,7 +186095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186464,7 +186115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186484,7 +186135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186504,7 +186155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186524,7 +186175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186544,7 +186195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186564,7 +186215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186584,7 +186235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186604,7 +186255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186624,7 +186275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186644,7 +186295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186664,7 +186315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186684,7 +186335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186704,7 +186355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186724,7 +186375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186744,7 +186395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186764,7 +186415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186784,7 +186435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186804,7 +186455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186824,7 +186475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186844,7 +186495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186864,7 +186515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186884,7 +186535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186904,7 +186555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186924,7 +186575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186944,7 +186595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186964,7 +186615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -186984,7 +186635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187004,7 +186655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187024,7 +186675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187044,7 +186695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187064,7 +186715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187084,7 +186735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187104,7 +186755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187124,7 +186775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187144,7 +186795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187164,7 +186815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187184,7 +186835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187204,7 +186855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187224,7 +186875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187244,7 +186895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187264,7 +186915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187284,7 +186935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187304,7 +186955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187324,7 +186975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187344,7 +186995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187364,7 +187015,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187384,7 +187035,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187404,7 +187055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187424,7 +187075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187444,7 +187095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187464,7 +187115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187484,7 +187135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187504,7 +187155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187524,7 +187175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187546,7 +187197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187566,7 +187217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187586,7 +187237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187606,7 +187257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187626,7 +187277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187646,7 +187297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187666,7 +187317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187686,7 +187337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187706,7 +187357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187726,7 +187377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187746,7 +187397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187766,7 +187417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 277, + "teamId": "2853", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187786,7 +187437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187806,7 +187457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187826,7 +187477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187846,7 +187497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187866,7 +187517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187886,7 +187537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187906,7 +187557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187926,7 +187577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187946,7 +187597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187966,7 +187617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -187986,7 +187637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188006,7 +187657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188026,7 +187677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188046,7 +187697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188066,7 +187717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188086,7 +187737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188106,7 +187757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188126,7 +187777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188146,7 +187797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188166,7 +187817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188186,7 +187837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188206,7 +187857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188226,7 +187877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188246,7 +187897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188266,7 +187917,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188286,7 +187937,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188306,7 +187957,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188326,7 +187977,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188346,7 +187997,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188366,7 +188017,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188386,7 +188037,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188406,7 +188057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188426,7 +188077,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188446,7 +188097,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 278, + "teamId": "2941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188466,7 +188117,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188486,7 +188137,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188506,7 +188157,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188526,7 +188177,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188546,7 +188197,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188566,7 +188217,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188586,7 +188237,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188606,7 +188257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188626,7 +188277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188646,7 +188297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188666,7 +188317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188686,7 +188337,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188706,7 +188357,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188726,7 +188377,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188746,7 +188397,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188766,7 +188417,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188786,7 +188437,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188806,7 +188457,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188826,7 +188477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188846,7 +188497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188866,7 +188517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188886,7 +188537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188906,7 +188557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188926,7 +188577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188946,7 +188597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188966,7 +188617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -188986,7 +188637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189006,7 +188657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189026,7 +188677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189046,7 +188697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189066,7 +188717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189086,7 +188737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189106,7 +188757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189126,7 +188777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189146,7 +188797,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189166,7 +188817,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189186,7 +188837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189206,7 +188857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189226,7 +188877,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189246,7 +188897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189266,7 +188917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189286,7 +188937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189306,7 +188957,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189326,7 +188977,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189346,7 +188997,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189366,7 +189017,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189386,7 +189037,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189406,7 +189057,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 279, + "teamId": "1449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189426,7 +189077,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189446,7 +189097,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189466,7 +189117,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189486,7 +189137,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189506,7 +189157,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189526,7 +189177,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189546,7 +189197,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189566,7 +189217,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189586,7 +189237,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189606,7 +189257,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189626,7 +189277,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189646,7 +189297,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189666,7 +189317,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189686,7 +189337,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189706,7 +189357,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189726,7 +189377,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189746,7 +189397,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189766,7 +189417,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189786,7 +189437,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189806,7 +189457,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189826,7 +189477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189846,7 +189497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189866,7 +189517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189886,7 +189537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189906,7 +189557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189926,7 +189577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189946,7 +189597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189966,7 +189617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -189986,7 +189637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190006,7 +189657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190026,7 +189677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190046,7 +189697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190066,7 +189717,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190086,7 +189737,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190106,7 +189757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190126,7 +189777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190146,7 +189797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190166,7 +189817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 280, + "teamId": "3052", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190186,7 +189837,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190206,7 +189857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190226,7 +189877,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190246,7 +189897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190266,7 +189917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190286,7 +189937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190306,7 +189957,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190326,7 +189977,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190346,7 +189997,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190366,7 +190017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190386,7 +190037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190406,7 +190057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190426,7 +190077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190446,7 +190097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190466,7 +190117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190486,7 +190137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190506,7 +190157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190526,7 +190177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190548,7 +190199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190570,7 +190221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190592,7 +190243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190612,7 +190263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190632,7 +190283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190652,7 +190303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190672,7 +190323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190692,7 +190343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190712,7 +190363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190732,7 +190383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190752,7 +190403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190772,7 +190423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190792,7 +190443,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190812,7 +190463,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190832,7 +190483,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190852,7 +190503,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190872,7 +190523,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190892,7 +190543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190912,7 +190563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190932,7 +190583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190952,7 +190603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190972,7 +190623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -190992,7 +190643,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191012,7 +190663,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 281, + "teamId": "2950", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191032,7 +190683,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191052,7 +190703,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191072,7 +190723,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191092,7 +190743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191112,7 +190763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191132,7 +190783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191152,7 +190803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191172,7 +190823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191192,7 +190843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191212,7 +190863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191232,7 +190883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191252,7 +190903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191272,7 +190923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191292,7 +190943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191312,7 +190963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191332,7 +190983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191352,7 +191003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191372,7 +191023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191392,7 +191043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191412,7 +191063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191432,7 +191083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191452,7 +191103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191472,7 +191123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191492,7 +191143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191512,7 +191163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191532,7 +191183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191552,7 +191203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191572,7 +191223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191592,7 +191243,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191614,7 +191265,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191634,7 +191285,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191654,7 +191305,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191674,7 +191325,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191694,7 +191345,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191714,7 +191365,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191734,7 +191385,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191754,7 +191405,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191774,7 +191425,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191794,7 +191445,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191816,7 +191467,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191836,7 +191487,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191856,7 +191507,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191876,7 +191527,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191896,7 +191547,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191916,7 +191567,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 282, + "teamId": "1947", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191936,7 +191587,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191956,7 +191607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191976,7 +191627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -191996,7 +191647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192016,7 +191667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192036,7 +191687,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192056,7 +191707,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192076,7 +191727,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192096,7 +191747,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192116,7 +191767,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192136,7 +191787,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192156,7 +191807,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192176,7 +191827,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192196,7 +191847,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192216,7 +191867,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192236,7 +191887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192256,7 +191907,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192276,7 +191927,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192296,7 +191947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192316,7 +191967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192336,7 +191987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 283, + "teamId": "1242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192356,7 +192007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192376,7 +192027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192396,7 +192047,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192416,7 +192067,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192436,7 +192087,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192456,7 +192107,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192476,7 +192127,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192496,7 +192147,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192516,7 +192167,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192536,7 +192187,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192556,7 +192207,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192576,7 +192227,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192598,7 +192249,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192618,7 +192269,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192638,7 +192289,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192658,7 +192309,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192678,7 +192329,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192698,7 +192349,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192718,7 +192369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192740,7 +192391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192760,7 +192411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192780,7 +192431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192800,7 +192451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192820,7 +192471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192842,7 +192493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192862,7 +192513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192882,7 +192533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192902,7 +192553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192922,7 +192573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192942,7 +192593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192962,7 +192613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -192982,7 +192633,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193002,7 +192653,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193022,7 +192673,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193042,7 +192693,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193062,7 +192713,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193082,7 +192733,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193102,7 +192753,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193122,7 +192773,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193142,7 +192793,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 284, + "teamId": "1349", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193162,7 +192813,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193182,7 +192833,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193202,7 +192853,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193222,7 +192873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193242,7 +192893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193262,7 +192913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193282,7 +192933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193302,7 +192953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193322,7 +192973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193342,7 +192993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193362,7 +193013,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193382,7 +193033,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193402,7 +193053,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 285, + "teamId": "1945", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193422,7 +193073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193442,7 +193093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193462,7 +193113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193482,7 +193133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193502,7 +193153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193522,7 +193173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193542,7 +193193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193562,7 +193213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193582,7 +193233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193602,7 +193253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193622,7 +193273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193642,7 +193293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193662,7 +193313,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193682,7 +193333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193702,7 +193353,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193722,7 +193373,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193742,7 +193393,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193762,7 +193413,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193782,7 +193433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193802,7 +193453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193822,7 +193473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193842,7 +193493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193862,7 +193513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193882,7 +193533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193902,7 +193553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193922,7 +193573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193942,7 +193593,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193962,7 +193613,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 286, + "teamId": "2546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -193982,7 +193633,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194002,7 +193653,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194022,7 +193673,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194042,7 +193693,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194062,7 +193713,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194082,7 +193733,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194102,7 +193753,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194122,7 +193773,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194142,7 +193793,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194162,7 +193813,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194182,7 +193833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194202,7 +193853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194222,7 +193873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194242,7 +193893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194262,7 +193913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194282,7 +193933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194302,7 +193953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194322,7 +193973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194342,7 +193993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194362,7 +194013,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194382,7 +194033,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194402,7 +194053,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194422,7 +194073,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194442,7 +194093,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194462,7 +194113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194482,7 +194133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194502,7 +194153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194522,7 +194173,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194542,7 +194193,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194562,7 +194213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194582,7 +194233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194602,7 +194253,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194622,7 +194273,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194642,7 +194293,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194662,7 +194313,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194682,7 +194333,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194702,7 +194353,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 287, + "teamId": "1451", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194722,7 +194373,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194742,7 +194393,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194762,7 +194413,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194782,7 +194433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194802,7 +194453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194822,7 +194473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194842,7 +194493,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194862,7 +194513,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194882,7 +194533,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194902,7 +194553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194922,7 +194573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194942,7 +194593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194962,7 +194613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -194982,7 +194633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195002,7 +194653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195022,7 +194673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195042,7 +194693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195062,7 +194713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195082,7 +194733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195102,7 +194753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195122,7 +194773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195142,7 +194793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195162,7 +194813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195182,7 +194833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195202,7 +194853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195222,7 +194873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195242,7 +194893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195262,7 +194913,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195282,7 +194933,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195302,7 +194953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195322,7 +194973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195342,7 +194993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195362,7 +195013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195382,7 +195033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195402,7 +195053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195422,7 +195073,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195442,7 +195093,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195462,7 +195113,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195482,7 +195133,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195502,7 +195153,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195522,7 +195173,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195542,7 +195193,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195562,7 +195213,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195582,7 +195233,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195602,7 +195253,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195622,7 +195273,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195642,7 +195293,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 288, + "teamId": "2146", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195662,7 +195313,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195682,7 +195333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195702,7 +195353,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195722,7 +195373,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195742,7 +195393,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195762,7 +195413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195782,7 +195433,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195802,7 +195453,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195822,7 +195473,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195842,7 +195493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195862,7 +195513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195882,7 +195533,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195902,7 +195553,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195922,7 +195573,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195942,7 +195593,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195962,7 +195613,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -195982,7 +195633,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196002,7 +195653,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196022,7 +195673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196042,7 +195693,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196062,7 +195713,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196082,7 +195733,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196102,7 +195753,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196122,7 +195773,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 289, + "teamId": "2851", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196142,7 +195793,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196162,7 +195813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196182,7 +195833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196202,7 +195853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196222,7 +195873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196242,7 +195893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196262,7 +195913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196282,7 +195933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196302,7 +195953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196322,7 +195973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196342,7 +195993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196362,7 +196013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196382,7 +196033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196402,7 +196053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196422,7 +196073,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196442,7 +196093,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196462,7 +196113,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196482,7 +196133,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196502,7 +196153,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196522,7 +196173,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196542,7 +196193,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196562,7 +196213,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196582,7 +196233,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196602,7 +196253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196622,7 +196273,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196642,7 +196293,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196662,7 +196313,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196682,7 +196333,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 290, + "teamId": "2845", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196702,7 +196353,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196722,7 +196373,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196742,7 +196393,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196762,7 +196413,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196782,7 +196433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196802,7 +196453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196822,7 +196473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196842,7 +196493,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196862,7 +196513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196882,7 +196533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196902,7 +196553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196922,7 +196573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196944,7 +196595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196964,7 +196615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -196984,7 +196635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197004,7 +196655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197024,7 +196675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197044,7 +196695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197064,7 +196715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197084,7 +196735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197104,7 +196755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197124,7 +196775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197144,7 +196795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197164,7 +196815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197184,7 +196835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197204,7 +196855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197224,7 +196875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197244,7 +196895,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197264,7 +196915,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197284,7 +196935,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 291, + "teamId": "3242", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197304,7 +196955,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197326,7 +196977,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197346,7 +196997,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197366,7 +197017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197386,7 +197037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197406,7 +197057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197426,7 +197077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197446,7 +197097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197466,7 +197117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197486,7 +197137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197506,7 +197157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197526,7 +197177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197546,7 +197197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197566,7 +197217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197586,7 +197237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197606,7 +197257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197626,7 +197277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197646,7 +197297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197666,7 +197317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197686,7 +197337,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197706,7 +197357,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197726,7 +197377,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197746,7 +197397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197766,7 +197417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197786,7 +197437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197806,7 +197457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197826,7 +197477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197846,7 +197497,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197866,7 +197517,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197886,7 +197537,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197906,7 +197557,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197926,7 +197577,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197946,7 +197597,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197966,7 +197617,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -197986,7 +197637,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198006,7 +197657,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198026,7 +197677,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198046,7 +197697,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198066,7 +197717,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198086,7 +197737,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 292, + "teamId": "1348", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198106,7 +197757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198126,7 +197777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198146,7 +197797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198166,7 +197817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198186,7 +197837,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198206,7 +197857,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198226,7 +197877,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198246,7 +197897,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198266,7 +197917,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198286,7 +197937,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198306,7 +197957,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198326,7 +197977,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198346,7 +197997,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198368,7 +198019,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198388,7 +198039,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198408,7 +198059,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198428,7 +198079,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198448,7 +198099,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198468,7 +198119,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198488,7 +198139,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198508,7 +198159,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198528,7 +198179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198548,7 +198199,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198568,7 +198219,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198588,7 +198239,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198608,7 +198259,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198628,7 +198279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198650,7 +198301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198670,7 +198321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198690,7 +198341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198710,7 +198361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198730,7 +198381,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198750,7 +198401,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198770,7 +198421,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198790,7 +198441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198810,7 +198461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198830,7 +198481,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198850,7 +198501,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198870,7 +198521,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198890,7 +198541,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198910,7 +198561,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198930,7 +198581,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198950,7 +198601,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198970,7 +198621,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -198990,7 +198641,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199010,7 +198661,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 293, + "teamId": "3153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199030,7 +198681,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199050,7 +198701,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199070,7 +198721,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199090,7 +198741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199110,7 +198761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199130,7 +198781,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199150,7 +198801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199170,7 +198821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199190,7 +198841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199210,7 +198861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199230,7 +198881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199250,7 +198901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199270,7 +198921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199290,7 +198941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199310,7 +198961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199330,7 +198981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199350,7 +199001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199370,7 +199021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199390,7 +199041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199410,7 +199061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199430,7 +199081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199450,7 +199101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199470,7 +199121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199490,7 +199141,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199510,7 +199161,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199530,7 +199181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199550,7 +199201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199570,7 +199221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199590,7 +199241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199610,7 +199261,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199630,7 +199281,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199650,7 +199301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199670,7 +199321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 294, + "teamId": "2655", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199690,7 +199341,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199710,7 +199361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199732,7 +199383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199752,7 +199403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199772,7 +199423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199792,7 +199443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199812,7 +199463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199832,7 +199483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199852,7 +199503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199872,7 +199523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199892,7 +199543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199912,7 +199563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199932,7 +199583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199952,7 +199603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199972,7 +199623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -199992,7 +199643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200012,7 +199663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 295, + "teamId": "3149", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200032,7 +199683,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200052,7 +199703,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200072,7 +199723,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200092,7 +199743,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200112,7 +199763,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200132,7 +199783,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200152,7 +199803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200172,7 +199823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200192,7 +199843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200212,7 +199863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200232,7 +199883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200252,7 +199903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200272,7 +199923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200292,7 +199943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200312,7 +199963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200332,7 +199983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200352,7 +200003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200372,7 +200023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200392,7 +200043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200412,7 +200063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200432,7 +200083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200452,7 +200103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200472,7 +200123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200492,7 +200143,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200512,7 +200163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200532,7 +200183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200552,7 +200203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200572,7 +200223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200592,7 +200243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200612,7 +200263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200632,7 +200283,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200652,7 +200303,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200672,7 +200323,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200692,7 +200343,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200712,7 +200363,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200732,7 +200383,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200752,7 +200403,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200772,7 +200423,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200792,7 +200443,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200812,7 +200463,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200832,7 +200483,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200852,7 +200503,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200872,7 +200523,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200892,7 +200543,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200912,7 +200563,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 296, + "teamId": "1452", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200932,7 +200583,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200952,7 +200603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200972,7 +200623,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -200992,7 +200643,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201012,7 +200663,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201032,7 +200683,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201052,7 +200703,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201072,7 +200723,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201092,7 +200743,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201112,7 +200763,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201132,7 +200783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201152,7 +200803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201172,7 +200823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201192,7 +200843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201212,7 +200863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201232,7 +200883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201252,7 +200903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201272,7 +200923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201292,7 +200943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201312,7 +200963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201332,7 +200983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201352,7 +201003,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201372,7 +201023,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201392,7 +201043,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201412,7 +201063,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 297, + "teamId": "1546", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201432,7 +201083,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201452,7 +201103,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201472,7 +201123,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201492,7 +201143,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201512,7 +201163,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201532,7 +201183,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201552,7 +201203,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201572,7 +201223,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201592,7 +201243,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201612,7 +201263,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201632,7 +201283,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201652,7 +201303,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201672,7 +201323,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201692,7 +201343,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201712,7 +201363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201732,7 +201383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201752,7 +201403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201772,7 +201423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201792,7 +201443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201812,7 +201463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201832,7 +201483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201852,7 +201503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201872,7 +201523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201892,7 +201543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201912,7 +201563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201932,7 +201583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201952,7 +201603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201972,7 +201623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -201992,7 +201643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202012,7 +201663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202032,7 +201683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202052,7 +201703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202072,7 +201723,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 298, + "teamId": "1642", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202092,7 +201743,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202112,7 +201763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202132,7 +201783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202152,7 +201803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202172,7 +201823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202192,7 +201843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202212,7 +201863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202232,7 +201883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202252,7 +201903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202272,7 +201923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202292,7 +201943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202312,7 +201963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202332,7 +201983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202352,7 +202003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202372,7 +202023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202392,7 +202043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202412,7 +202063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202432,7 +202083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202452,7 +202103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202472,7 +202123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202492,7 +202143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202512,7 +202163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202532,7 +202183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202552,7 +202203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202572,7 +202223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202592,7 +202243,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202612,7 +202263,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202632,7 +202283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202652,7 +202303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202672,7 +202323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 299, + "teamId": "1752", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202692,7 +202343,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202712,7 +202363,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202732,7 +202383,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202752,7 +202403,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202772,7 +202423,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202792,7 +202443,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202812,7 +202463,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202832,7 +202483,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202852,7 +202503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202872,7 +202523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202892,7 +202543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202912,7 +202563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202932,7 +202583,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 300, + "teamId": "1745", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202952,7 +202603,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202972,7 +202623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -202992,7 +202643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203012,7 +202663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203032,7 +202683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203052,7 +202703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203072,7 +202723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203092,7 +202743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203112,7 +202763,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203132,7 +202783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203152,7 +202803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203172,7 +202823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203192,7 +202843,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203212,7 +202863,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203232,7 +202883,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203252,7 +202903,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203272,7 +202923,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203292,7 +202943,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203312,7 +202963,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203332,7 +202983,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203352,7 +203003,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203372,7 +203023,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203392,7 +203043,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203412,7 +203063,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203432,7 +203083,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203452,7 +203103,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203472,7 +203123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203492,7 +203143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203512,7 +203163,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203532,7 +203183,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203552,7 +203203,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203572,7 +203223,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203592,7 +203243,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203612,7 +203263,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203632,7 +203283,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203652,7 +203303,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203672,7 +203323,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 301, + "teamId": "2948", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203692,7 +203343,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203712,7 +203363,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203732,7 +203383,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203752,7 +203403,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203772,7 +203423,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203792,7 +203443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203812,7 +203463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203832,7 +203483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203852,7 +203503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203872,7 +203523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203892,7 +203543,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203912,7 +203563,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203932,7 +203583,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203952,7 +203603,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203972,7 +203623,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -203992,7 +203643,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204012,7 +203663,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204032,7 +203683,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204052,7 +203703,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204074,7 +203725,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204094,7 +203745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204114,7 +203765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204134,7 +203785,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204154,7 +203805,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204174,7 +203825,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204194,7 +203845,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 302, + "teamId": "2147", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204214,7 +203865,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204234,7 +203885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204254,7 +203905,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204274,7 +203925,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204294,7 +203945,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204314,7 +203965,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204334,7 +203985,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204354,7 +204005,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204374,7 +204025,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204394,7 +204045,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204414,7 +204065,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204434,7 +204085,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 303, + "teamId": "2949", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204454,7 +204105,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204474,7 +204125,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204494,7 +204145,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204514,7 +204165,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204534,7 +204185,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204554,7 +204205,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204574,7 +204225,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204594,7 +204245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204614,7 +204265,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204634,7 +204285,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204654,7 +204305,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204674,7 +204325,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204694,7 +204345,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204714,7 +204365,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204734,7 +204385,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204754,7 +204405,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204774,7 +204425,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204794,7 +204445,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204814,7 +204465,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204834,7 +204485,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204856,7 +204507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204876,7 +204527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204896,7 +204547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204916,7 +204567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204936,7 +204587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204956,7 +204607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204976,7 +204627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -204996,7 +204647,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205016,7 +204667,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205036,7 +204687,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205056,7 +204707,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205076,7 +204727,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205096,7 +204747,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205116,7 +204767,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205136,7 +204787,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205156,7 +204807,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205176,7 +204827,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205196,7 +204847,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205216,7 +204867,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205236,7 +204887,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205256,7 +204907,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205276,7 +204927,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 304, + "teamId": "3044", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205296,7 +204947,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205316,7 +204967,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205336,7 +204987,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205356,7 +205007,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205376,7 +205027,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205396,7 +205047,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205416,7 +205067,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205436,7 +205087,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205456,7 +205107,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205476,7 +205127,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205496,7 +205147,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205518,7 +205169,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205538,7 +205189,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205558,7 +205209,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205578,7 +205229,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205598,7 +205249,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205618,7 +205269,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205638,7 +205289,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205658,7 +205309,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205678,7 +205329,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205698,7 +205349,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205718,7 +205369,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205738,7 +205389,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205758,7 +205409,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205778,7 +205429,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205798,7 +205449,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205818,7 +205469,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205838,7 +205489,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205858,7 +205509,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205878,7 +205529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205898,7 +205549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205918,7 +205569,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205940,7 +205591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205960,7 +205611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -205980,7 +205631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206000,7 +205651,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206020,7 +205671,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206040,7 +205691,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206060,7 +205711,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206080,7 +205731,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206100,7 +205751,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206120,7 +205771,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206140,7 +205791,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206160,7 +205811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206180,7 +205831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206200,7 +205851,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206220,7 +205871,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206240,7 +205891,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206260,7 +205911,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206280,7 +205931,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206300,7 +205951,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206320,7 +205971,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206340,7 +205991,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206360,7 +206011,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206380,7 +206031,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206400,7 +206051,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206420,7 +206071,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206440,7 +206091,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 305, + "teamId": "2743", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206460,7 +206111,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206480,7 +206131,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206500,7 +206151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206520,7 +206171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206540,7 +206191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206562,7 +206213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206582,7 +206233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206602,7 +206253,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206622,7 +206273,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206642,7 +206293,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206662,7 +206313,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206682,7 +206333,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206702,7 +206353,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206722,7 +206373,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206742,7 +206393,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206762,7 +206413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206782,7 +206433,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206802,7 +206453,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206822,7 +206473,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206842,7 +206493,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206862,7 +206513,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206882,7 +206533,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206902,7 +206553,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206922,7 +206573,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 306, + "teamId": "2056", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206942,7 +206593,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206962,7 +206613,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -206984,7 +206635,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207004,7 +206655,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207024,7 +206675,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207044,7 +206695,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207064,7 +206715,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207084,7 +206735,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207104,7 +206755,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207124,7 +206775,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207144,7 +206795,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207164,7 +206815,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207184,7 +206835,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207204,7 +206855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207224,7 +206875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207244,7 +206895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207264,7 +206915,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207284,7 +206935,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207304,7 +206955,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207324,7 +206975,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207344,7 +206995,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 307, + "teamId": "2548", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207364,7 +207015,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207384,7 +207035,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207404,7 +207055,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207424,7 +207075,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207444,7 +207095,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207464,7 +207115,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207484,7 +207135,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207504,7 +207155,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207524,7 +207175,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207544,7 +207195,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207564,7 +207215,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207586,7 +207237,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207608,7 +207259,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207628,7 +207279,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207648,7 +207299,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207668,7 +207319,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207688,7 +207339,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207710,7 +207361,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207732,7 +207383,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207752,7 +207403,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207772,7 +207423,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207792,7 +207443,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207812,7 +207463,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207832,7 +207483,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207854,7 +207505,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207874,7 +207525,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207894,7 +207545,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207914,7 +207565,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207934,7 +207585,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207954,7 +207605,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207974,7 +207625,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -207994,7 +207645,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208014,7 +207665,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208034,7 +207685,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208054,7 +207705,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208074,7 +207725,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208094,7 +207745,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208114,7 +207765,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208134,7 +207785,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208154,7 +207805,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208174,7 +207825,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208194,7 +207845,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208214,7 +207865,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208234,7 +207885,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208254,7 +207905,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208274,7 +207925,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208294,7 +207945,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208316,7 +207967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 308, + "teamId": "1648", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208336,7 +207987,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208358,7 +208009,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208378,7 +208029,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208398,7 +208049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208418,7 +208069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208438,7 +208089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208458,7 +208109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208478,7 +208129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208498,7 +208149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208518,7 +208169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208540,7 +208191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208560,7 +208211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 309, + "teamId": "1941", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208580,7 +208231,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208600,7 +208251,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208620,7 +208271,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208640,7 +208291,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208660,7 +208311,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208680,7 +208331,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208700,7 +208351,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208720,7 +208371,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208740,7 +208391,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208760,7 +208411,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208780,7 +208431,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208800,7 +208451,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208820,7 +208471,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208840,7 +208491,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208860,7 +208511,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208880,7 +208531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208900,7 +208551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208920,7 +208571,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208940,7 +208591,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208960,7 +208611,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -208980,7 +208631,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209000,7 +208651,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209020,7 +208671,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209040,7 +208691,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209060,7 +208711,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209080,7 +208731,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209100,7 +208751,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209120,7 +208771,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209140,7 +208791,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209160,7 +208811,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209180,7 +208831,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209200,7 +208851,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209220,7 +208871,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 310, + "teamId": "1155", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209240,7 +208891,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209260,7 +208911,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209280,7 +208931,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209300,7 +208951,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209320,7 +208971,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209340,7 +208991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209360,7 +209011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209380,7 +209031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209400,7 +209051,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209420,7 +209071,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209440,7 +209091,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209460,7 +209111,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209480,7 +209131,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209500,7 +209151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209520,7 +209171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209540,7 +209191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209560,7 +209211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209580,7 +209231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209600,7 +209251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209620,7 +209271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209640,7 +209291,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209660,7 +209311,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209680,7 +209331,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209700,7 +209351,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209720,7 +209371,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209740,7 +209391,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209760,7 +209411,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209780,7 +209431,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209800,7 +209451,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 311, + "teamId": "3055", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209820,7 +209471,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209840,7 +209491,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209860,7 +209511,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209880,7 +209531,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209900,7 +209551,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209920,7 +209571,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209940,7 +209591,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209960,7 +209611,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -209980,7 +209631,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210000,7 +209651,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210020,7 +209671,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210040,7 +209691,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210060,7 +209711,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210080,7 +209731,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210100,7 +209751,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210120,7 +209771,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210140,7 +209791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210160,7 +209811,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210180,7 +209831,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210200,7 +209851,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210220,7 +209871,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210240,7 +209891,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210260,7 +209911,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210280,7 +209931,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210300,7 +209951,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210320,7 +209971,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210340,7 +209991,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210360,7 +210011,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210380,7 +210031,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210400,7 +210051,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210420,7 +210071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210440,7 +210091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210460,7 +210111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210480,7 +210131,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210500,7 +210151,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210520,7 +210171,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210540,7 +210191,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210560,7 +210211,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210580,7 +210231,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210600,7 +210251,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210620,7 +210271,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210642,7 +210293,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210662,7 +210313,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210682,7 +210333,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 312, + "teamId": "1754", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210702,7 +210353,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210722,7 +210373,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210742,7 +210393,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210762,7 +210413,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210782,7 +210433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210802,7 +210453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210822,7 +210473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210842,7 +210493,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210862,7 +210513,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210882,7 +210533,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210902,7 +210553,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210922,7 +210573,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210942,7 +210593,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210962,7 +210613,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -210982,7 +210633,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211002,7 +210653,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211022,7 +210673,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211042,7 +210693,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211062,7 +210713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211082,7 +210733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211102,7 +210753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211122,7 +210773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211142,7 +210793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211162,7 +210813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211182,7 +210833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211202,7 +210853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211222,7 +210873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211242,7 +210893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211262,7 +210913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211282,7 +210933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211302,7 +210953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211322,7 +210973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211342,7 +210993,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211362,7 +211013,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211382,7 +211033,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211402,7 +211053,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211422,7 +211073,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211442,7 +211093,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 313, + "teamId": "2054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211462,7 +211113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211482,7 +211133,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211502,7 +211153,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211522,7 +211173,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211542,7 +211193,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211562,7 +211213,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211582,7 +211233,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211602,7 +211253,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211622,7 +211273,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211642,7 +211293,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211662,7 +211313,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211682,7 +211333,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211702,7 +211353,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211722,7 +211373,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211742,7 +211393,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211762,7 +211413,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211782,7 +211433,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211802,7 +211453,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211822,7 +211473,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211842,7 +211493,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211862,7 +211513,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211882,7 +211533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211902,7 +211553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211922,7 +211573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211942,7 +211593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211962,7 +211613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -211982,7 +211633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212002,7 +211653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212022,7 +211673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212042,7 +211693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212062,7 +211713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212082,7 +211733,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212102,7 +211753,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212122,7 +211773,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212142,7 +211793,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212162,7 +211813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212182,7 +211833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212202,7 +211853,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212222,7 +211873,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212242,7 +211893,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212262,7 +211913,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212282,7 +211933,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212302,7 +211953,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212322,7 +211973,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212342,7 +211993,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 314, + "teamId": "2944", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212362,7 +212013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212382,7 +212033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212402,7 +212053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212422,7 +212073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212442,7 +212093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212462,7 +212113,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212482,7 +212133,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212502,7 +212153,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212522,7 +212173,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212542,7 +212193,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212562,7 +212213,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212582,7 +212233,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212602,7 +212253,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 315, + "teamId": "1542", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212622,7 +212273,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212642,7 +212293,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212662,7 +212313,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212682,7 +212333,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212704,7 +212355,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212724,7 +212375,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212744,7 +212395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212764,7 +212415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212784,7 +212435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212804,7 +212455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212824,7 +212475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212844,7 +212495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212864,7 +212515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212884,7 +212535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212904,7 +212555,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212924,7 +212575,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212944,7 +212595,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212964,7 +212615,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -212984,7 +212635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213004,7 +212655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213024,7 +212675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213044,7 +212695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213064,7 +212715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213084,7 +212735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213104,7 +212755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213124,7 +212775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213144,7 +212795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213164,7 +212815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213184,7 +212835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213204,7 +212855,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213224,7 +212875,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213244,7 +212895,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213264,7 +212915,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213284,7 +212935,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 316, + "teamId": "1641", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213304,7 +212955,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213324,7 +212975,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213344,7 +212995,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213364,7 +213015,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213384,7 +213035,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213404,7 +213055,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213424,7 +213075,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213444,7 +213095,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213464,7 +213115,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213484,7 +213135,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213504,7 +213155,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213524,7 +213175,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213544,7 +213195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213564,7 +213215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213584,7 +213235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213604,7 +213255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213624,7 +213275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213644,7 +213295,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213664,7 +213315,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213684,7 +213335,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213704,7 +213355,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213724,7 +213375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213744,7 +213395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213764,7 +213415,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213784,7 +213435,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213804,7 +213455,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213824,7 +213475,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213844,7 +213495,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 317, + "teamId": "2741", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213864,7 +213515,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213884,7 +213535,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213904,7 +213555,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213924,7 +213575,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213944,7 +213595,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213964,7 +213615,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -213984,7 +213635,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214004,7 +213655,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214024,7 +213675,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214044,7 +213695,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214064,7 +213715,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214084,7 +213735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214104,7 +213755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214124,7 +213775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214144,7 +213795,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214164,7 +213815,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214184,7 +213835,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214204,7 +213855,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214224,7 +213875,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214244,7 +213895,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214264,7 +213915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214284,7 +213935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214304,7 +213955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214324,7 +213975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214344,7 +213995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214364,7 +214015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214384,7 +214035,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214404,7 +214055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214424,7 +214075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214444,7 +214095,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214464,7 +214115,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214484,7 +214135,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214504,7 +214155,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214524,7 +214175,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214544,7 +214195,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214564,7 +214215,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214584,7 +214235,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214604,7 +214255,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 318, + "teamId": "2848", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214624,7 +214275,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214644,7 +214295,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214664,7 +214315,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214684,7 +214335,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214704,7 +214355,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214724,7 +214375,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214744,7 +214395,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214764,7 +214415,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214784,7 +214435,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214804,7 +214455,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214824,7 +214475,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214844,7 +214495,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214864,7 +214515,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214884,7 +214535,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214906,7 +214557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214926,7 +214577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214946,7 +214597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214966,7 +214617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -214986,7 +214637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215006,7 +214657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215026,7 +214677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215046,7 +214697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215066,7 +214717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215086,7 +214737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215106,7 +214757,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215126,7 +214777,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215146,7 +214797,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215166,7 +214817,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215186,7 +214837,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215206,7 +214857,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215226,7 +214877,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215246,7 +214897,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215266,7 +214917,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215286,7 +214937,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 319, + "teamId": "1545", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215306,7 +214957,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215326,7 +214977,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215346,7 +214997,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215366,7 +215017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215386,7 +215037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215406,7 +215057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215426,7 +215077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215446,7 +215097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215466,7 +215117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215486,7 +215137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215506,7 +215157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215526,7 +215177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215546,7 +215197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215566,7 +215217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215586,7 +215237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215606,7 +215257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215626,7 +215277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215646,7 +215297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215666,7 +215317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215686,7 +215337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215706,7 +215357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215726,7 +215377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215746,7 +215397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215766,7 +215417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215786,7 +215437,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215806,7 +215457,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215826,7 +215477,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215848,7 +215499,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215868,7 +215519,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215888,7 +215539,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215908,7 +215559,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215928,7 +215579,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215948,7 +215599,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215968,7 +215619,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -215988,7 +215639,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216008,7 +215659,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 320, + "teamId": "2449", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216028,7 +215679,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216048,7 +215699,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216068,7 +215719,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216088,7 +215739,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216108,7 +215759,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216128,7 +215779,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216148,7 +215799,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216168,7 +215819,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216188,7 +215839,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216208,7 +215859,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216228,7 +215879,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216248,7 +215899,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216268,7 +215919,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216288,7 +215939,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216308,7 +215959,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216328,7 +215979,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 321, + "teamId": "3054", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216348,7 +215999,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216368,7 +216019,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216388,7 +216039,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216408,7 +216059,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216428,7 +216079,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216448,7 +216099,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216468,7 +216119,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216488,7 +216139,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216508,7 +216159,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216528,7 +216179,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216550,7 +216201,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216570,7 +216221,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216590,7 +216241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216610,7 +216261,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216630,7 +216281,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216650,7 +216301,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216670,7 +216321,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216690,7 +216341,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216710,7 +216361,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216730,7 +216381,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216750,7 +216401,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 322, + "teamId": "2253", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216770,7 +216421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216790,7 +216441,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216810,7 +216461,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216830,7 +216481,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216850,7 +216501,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216870,7 +216521,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216890,7 +216541,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216910,7 +216561,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216930,7 +216581,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216950,7 +216601,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216970,7 +216621,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -216990,7 +216641,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217010,7 +216661,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217030,7 +216681,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217050,7 +216701,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217070,7 +216721,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217090,7 +216741,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217110,7 +216761,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217132,7 +216783,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217152,7 +216803,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217174,7 +216825,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217194,7 +216845,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217214,7 +216865,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217234,7 +216885,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217256,7 +216907,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217276,7 +216927,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217296,7 +216947,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217316,7 +216967,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217336,7 +216987,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217356,7 +217007,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217376,7 +217027,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217396,7 +217047,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217416,7 +217067,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217436,7 +217087,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217456,7 +217107,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217476,7 +217127,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217496,7 +217147,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217516,7 +217167,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217536,7 +217187,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 323, + "teamId": "1652", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217556,7 +217207,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217576,7 +217227,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217596,7 +217247,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217616,7 +217267,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217636,7 +217287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217656,7 +217307,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217676,7 +217327,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217696,7 +217347,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217716,7 +217367,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217736,7 +217387,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217756,7 +217407,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217776,7 +217427,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217796,7 +217447,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217816,7 +217467,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217836,7 +217487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217856,7 +217507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217876,7 +217527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217896,7 +217547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217916,7 +217567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217936,7 +217587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217956,7 +217607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217976,7 +217627,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -217996,7 +217647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218018,7 +217669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218038,7 +217689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218058,7 +217709,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218078,7 +217729,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218098,7 +217749,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218118,7 +217769,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 324, + "teamId": "2653", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218138,7 +217789,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218158,7 +217809,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218178,7 +217829,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218198,7 +217849,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218218,7 +217869,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218238,7 +217889,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218258,7 +217909,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218278,7 +217929,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218298,7 +217949,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218318,7 +217969,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218338,7 +217989,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218358,7 +218009,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218378,7 +218029,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218398,7 +218049,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218418,7 +218069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218438,7 +218089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218458,7 +218109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218478,7 +218129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218500,7 +218151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218520,7 +218171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218540,7 +218191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218560,7 +218211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218580,7 +218231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218600,7 +218251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218620,7 +218271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218640,7 +218291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218660,7 +218311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218680,7 +218331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218700,7 +218351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218720,7 +218371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218740,7 +218391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218760,7 +218411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218780,7 +218431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218800,7 +218451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218820,7 +218471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218840,7 +218491,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218862,7 +218513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218882,7 +218533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218902,7 +218553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218922,7 +218573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218942,7 +218593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218962,7 +218613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -218982,7 +218633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219002,7 +218653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219022,7 +218673,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219042,7 +218693,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219062,7 +218713,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219084,7 +218735,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219104,7 +218755,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219124,7 +218775,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219144,7 +218795,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219164,7 +218815,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219184,7 +218835,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219204,7 +218855,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219224,7 +218875,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219244,7 +218895,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219264,7 +218915,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219284,7 +218935,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219304,7 +218955,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219324,7 +218975,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219344,7 +218995,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219364,7 +219015,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219384,7 +219035,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219404,7 +219055,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219424,7 +219075,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219444,7 +219095,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219464,7 +219115,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219484,7 +219135,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219504,7 +219155,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219524,7 +219175,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219544,7 +219195,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219564,7 +219215,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219584,7 +219235,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219604,7 +219255,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219624,7 +219275,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219644,7 +219295,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219664,7 +219315,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219684,7 +219335,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219704,7 +219355,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219724,7 +219375,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219744,7 +219395,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219764,7 +219415,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219784,7 +219435,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 325, + "teamId": "1444", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219806,7 +219457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219826,7 +219477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219846,7 +219497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219866,7 +219517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219886,7 +219537,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219906,7 +219557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219926,7 +219577,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219946,7 +219597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219966,7 +219617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -219986,7 +219637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220006,7 +219657,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220026,7 +219677,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220046,7 +219697,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 326, + "teamId": "1143", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220066,7 +219717,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220086,7 +219737,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220106,7 +219757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220126,7 +219777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220146,7 +219797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220166,7 +219817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220186,7 +219837,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220206,7 +219857,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220226,7 +219877,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220246,7 +219897,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220266,7 +219917,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220286,7 +219937,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220306,7 +219957,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220326,7 +219977,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220346,7 +219997,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220366,7 +220017,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220386,7 +220037,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220408,7 +220059,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220428,7 +220079,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220448,7 +220099,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220468,7 +220119,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220488,7 +220139,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220508,7 +220159,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220528,7 +220179,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220548,7 +220199,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220568,7 +220219,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220588,7 +220239,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220608,7 +220259,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220628,7 +220279,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220648,7 +220299,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220668,7 +220319,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220688,7 +220339,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220708,7 +220359,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220728,7 +220379,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220748,7 +220399,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220768,7 +220419,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220788,7 +220439,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220808,7 +220459,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220828,7 +220479,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220848,7 +220499,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220868,7 +220519,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220888,7 +220539,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220908,7 +220559,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220928,7 +220579,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 327, + "teamId": "1247", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220948,7 +220599,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220968,7 +220619,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -220988,7 +220639,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221008,7 +220659,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221028,7 +220679,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221050,7 +220701,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221070,7 +220721,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221090,7 +220741,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221110,7 +220761,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221130,7 +220781,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221150,7 +220801,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221170,7 +220821,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221190,7 +220841,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221210,7 +220861,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221230,7 +220881,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221250,7 +220901,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221270,7 +220921,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221290,7 +220941,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221310,7 +220961,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221330,7 +220981,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221350,7 +221001,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221370,7 +221021,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221390,7 +221041,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221410,7 +221061,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221430,7 +221081,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221450,7 +221101,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221470,7 +221121,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 328, + "teamId": "3156", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221490,7 +221141,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221510,7 +221161,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221530,7 +221181,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221550,7 +221201,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221572,7 +221223,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221594,7 +221245,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221616,7 +221267,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221636,7 +221287,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221656,7 +221307,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221676,7 +221327,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221696,7 +221347,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221716,7 +221367,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221736,7 +221387,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221756,7 +221407,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221776,7 +221427,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221796,7 +221447,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221816,7 +221467,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221836,7 +221487,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221856,7 +221507,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221876,7 +221527,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221896,7 +221547,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221916,7 +221567,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221936,7 +221587,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221956,7 +221607,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221976,7 +221627,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -221996,7 +221647,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222018,7 +221669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222038,7 +221689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 329, + "teamId": "2245", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222058,7 +221709,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222078,7 +221729,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222098,7 +221749,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222118,7 +221769,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222138,7 +221789,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222158,7 +221809,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222178,7 +221829,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222198,7 +221849,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222218,7 +221869,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222238,7 +221889,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222258,7 +221909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222278,7 +221929,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222298,7 +221949,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222318,7 +221969,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222338,7 +221989,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222358,7 +222009,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222378,7 +222029,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222398,7 +222049,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222418,7 +222069,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222438,7 +222089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222458,7 +222109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222478,7 +222129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222498,7 +222149,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222518,7 +222169,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222538,7 +222189,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 330, + "teamId": "3246", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222558,7 +222209,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222578,7 +222229,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222598,7 +222249,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222618,7 +222269,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222638,7 +222289,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222658,7 +222309,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222678,7 +222329,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222698,7 +222349,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222718,7 +222369,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222738,7 +222389,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222758,7 +222409,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222778,7 +222429,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222798,7 +222449,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222818,7 +222469,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222838,7 +222489,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222858,7 +222509,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222878,7 +222529,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222898,7 +222549,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222918,7 +222569,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222938,7 +222589,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222958,7 +222609,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222978,7 +222629,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -222998,7 +222649,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223018,7 +222669,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223038,7 +222689,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223058,7 +222709,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223078,7 +222729,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 331, + "teamId": "1356", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223098,7 +222749,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223118,7 +222769,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223138,7 +222789,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223158,7 +222809,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223178,7 +222829,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223198,7 +222849,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223218,7 +222869,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223238,7 +222889,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223258,7 +222909,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223278,7 +222929,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223298,7 +222949,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 332, + "teamId": "1153", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223318,7 +222969,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223338,7 +222989,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223358,7 +223009,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223378,7 +223029,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223398,7 +223049,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223418,7 +223069,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223438,7 +223089,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223458,7 +223109,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223478,7 +223129,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223500,7 +223151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223520,7 +223171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223540,7 +223191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223560,7 +223211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223580,7 +223231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223600,7 +223251,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223620,7 +223271,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223640,7 +223291,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223660,7 +223311,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223680,7 +223331,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223700,7 +223351,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223720,7 +223371,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223740,7 +223391,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223760,7 +223411,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223780,7 +223431,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223800,7 +223451,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223820,7 +223471,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223840,7 +223491,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223860,7 +223511,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223880,7 +223531,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223900,7 +223551,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223920,7 +223571,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223940,7 +223591,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223960,7 +223611,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -223980,7 +223631,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 333, + "teamId": "1249", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224000,7 +223651,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224020,7 +223671,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224040,7 +223691,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224060,7 +223711,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224080,7 +223731,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224100,7 +223751,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224120,7 +223771,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224140,7 +223791,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224160,7 +223811,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224180,7 +223831,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224200,7 +223851,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224220,7 +223871,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224240,7 +223891,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224260,7 +223911,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224280,7 +223931,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224300,7 +223951,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224320,7 +223971,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224340,7 +223991,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224360,7 +224011,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224380,7 +224031,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224400,7 +224051,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224420,7 +224071,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224440,7 +224091,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224460,7 +224111,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224480,7 +224131,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224500,7 +224151,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224520,7 +224171,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224540,7 +224191,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224560,7 +224211,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224580,7 +224231,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 334, + "teamId": "1756", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224600,7 +224251,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224620,7 +224271,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224640,7 +224291,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224660,7 +224311,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224680,7 +224331,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224702,7 +224353,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224722,7 +224373,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224742,7 +224393,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224762,7 +224413,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224782,7 +224433,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224802,7 +224453,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224822,7 +224473,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224842,7 +224493,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224862,7 +224513,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224882,7 +224533,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224902,7 +224553,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224922,7 +224573,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224942,7 +224593,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224962,7 +224613,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -224982,7 +224633,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225002,7 +224653,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225022,7 +224673,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 335, + "teamId": "2148", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225042,7 +224693,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225062,7 +224713,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225082,7 +224733,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225102,7 +224753,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225122,7 +224773,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225142,7 +224793,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225162,7 +224813,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225182,7 +224833,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225202,7 +224853,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225222,7 +224873,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225242,7 +224893,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225262,7 +224913,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225282,7 +224933,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225302,7 +224953,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225322,7 +224973,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225342,7 +224993,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 336, + "teamId": "3256", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225362,7 +225013,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225382,7 +225033,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225402,7 +225053,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225422,7 +225073,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225442,7 +225093,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225462,7 +225113,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225482,7 +225133,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225504,7 +225155,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225524,7 +225175,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225544,7 +225195,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225564,7 +225215,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225584,7 +225235,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225604,7 +225255,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225624,7 +225275,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225646,7 +225297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225666,7 +225317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225686,7 +225337,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225706,7 +225357,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225726,7 +225377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225746,7 +225397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 337, + "teamId": "1656", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225766,7 +225417,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225786,7 +225437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225806,7 +225457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225826,7 +225477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225846,7 +225497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225866,7 +225517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225886,7 +225537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225906,7 +225557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225926,7 +225577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225946,7 +225597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225966,7 +225617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -225986,7 +225637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226006,7 +225657,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226026,7 +225677,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226046,7 +225697,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226066,7 +225717,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226086,7 +225737,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226106,7 +225757,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226126,7 +225777,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 338, + "teamId": "3248", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226146,7 +225797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226166,7 +225817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226186,7 +225837,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226206,7 +225857,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226226,7 +225877,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226246,7 +225897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226266,7 +225917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226286,7 +225937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226306,7 +225957,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226326,7 +225977,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226346,7 +225997,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226366,7 +226017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226386,7 +226037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226406,7 +226057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226426,7 +226077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226446,7 +226097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226466,7 +226117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226486,7 +226137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226506,7 +226157,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226526,7 +226177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226546,7 +226197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226566,7 +226217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226586,7 +226237,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226606,7 +226257,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226626,7 +226277,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226646,7 +226297,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226666,7 +226317,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226686,7 +226337,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226706,7 +226357,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226726,7 +226377,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226746,7 +226397,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226766,7 +226417,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 339, + "teamId": "2747", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226786,7 +226437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226806,7 +226457,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226826,7 +226477,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226846,7 +226497,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226866,7 +226517,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226886,7 +226537,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226906,7 +226557,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226926,7 +226577,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226946,7 +226597,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226966,7 +226617,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -226986,7 +226637,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 340, + "teamId": "3041", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227006,7 +226657,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227026,7 +226677,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227046,7 +226697,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227066,7 +226717,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227086,7 +226737,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227106,7 +226757,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227126,7 +226777,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227146,7 +226797,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227166,7 +226817,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227186,7 +226837,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227206,7 +226857,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227226,7 +226877,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227246,7 +226897,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227266,7 +226917,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227286,7 +226937,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227306,7 +226957,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227326,7 +226977,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227346,7 +226997,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227366,7 +227017,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227386,7 +227037,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227406,7 +227057,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227426,7 +227077,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227446,7 +227097,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227466,7 +227117,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227486,7 +227137,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 341, + "teamId": "2046", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227506,7 +227157,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227526,7 +227177,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227546,7 +227197,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227566,7 +227217,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227586,7 +227237,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227606,7 +227257,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227626,7 +227277,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227646,7 +227297,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227666,7 +227317,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227686,7 +227337,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227706,7 +227357,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227726,7 +227377,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227746,7 +227397,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227766,7 +227417,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 342, + "teamId": "1347", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227786,7 +227437,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227806,7 +227457,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227826,7 +227477,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227846,7 +227497,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227866,7 +227517,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227886,7 +227537,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227906,7 +227557,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227926,7 +227577,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227946,7 +227597,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227966,7 +227617,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -227986,7 +227637,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228006,7 +227657,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228026,7 +227677,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228048,7 +227699,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228068,7 +227719,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228088,7 +227739,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228108,7 +227759,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228128,7 +227779,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228148,7 +227799,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228168,7 +227819,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228188,7 +227839,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228208,7 +227859,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228228,7 +227879,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228248,7 +227899,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228268,7 +227919,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228288,7 +227939,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228308,7 +227959,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228330,7 +227981,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228350,7 +228001,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228370,7 +228021,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228390,7 +228041,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228410,7 +228061,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228430,7 +228081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228450,7 +228101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228470,7 +228121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228490,7 +228141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228510,7 +228161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228530,7 +228181,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228550,7 +228201,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228570,7 +228221,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228590,7 +228241,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228610,7 +228261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228630,7 +228281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228650,7 +228301,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228670,7 +228321,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228690,7 +228341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228710,7 +228361,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228730,7 +228381,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 343, + "teamId": "1844", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228750,7 +228401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228770,7 +228421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228790,7 +228441,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228810,7 +228461,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228830,7 +228481,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228850,7 +228501,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228870,7 +228521,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228890,7 +228541,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228910,7 +228561,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228930,7 +228581,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228950,7 +228601,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228970,7 +228621,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -228990,7 +228641,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229010,7 +228661,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229030,7 +228681,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229050,7 +228701,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229070,7 +228721,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229090,7 +228741,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229110,7 +228761,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229130,7 +228781,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229150,7 +228801,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229170,7 +228821,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229190,7 +228841,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229210,7 +228861,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229230,7 +228881,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 344, + "teamId": "1553", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229250,7 +228901,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229270,7 +228921,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229290,7 +228941,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229310,7 +228961,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229330,7 +228981,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229350,7 +229001,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229370,7 +229021,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229390,7 +229041,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229410,7 +229061,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229430,7 +229081,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229450,7 +229101,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229470,7 +229121,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229490,7 +229141,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229510,7 +229161,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 345, + "teamId": "2854", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229530,7 +229181,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229550,7 +229201,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229570,7 +229221,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229590,7 +229241,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229610,7 +229261,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229630,7 +229281,7 @@ "isFirstBestTeamRun": false }, "problemId": "3", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229650,7 +229301,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229670,7 +229321,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229690,7 +229341,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229710,7 +229361,7 @@ "isFirstBestTeamRun": false }, "problemId": "4", - "teamId": 346, + "teamId": "1750", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229730,7 +229381,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229750,7 +229401,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229770,7 +229421,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229792,7 +229443,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229812,7 +229463,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229832,7 +229483,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229852,7 +229503,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229872,7 +229523,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229892,7 +229543,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229912,7 +229563,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229932,7 +229583,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229952,7 +229603,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229972,7 +229623,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -229992,7 +229643,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230012,7 +229663,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230032,7 +229683,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230052,7 +229703,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230072,7 +229723,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230092,7 +229743,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 347, + "teamId": "2954", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230112,7 +229763,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 348, + "teamId": "1355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230132,7 +229783,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 348, + "teamId": "1355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230152,7 +229803,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 348, + "teamId": "1355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230172,7 +229823,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 348, + "teamId": "1355", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230192,7 +229843,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230212,7 +229863,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230232,7 +229883,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230252,7 +229903,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230272,7 +229923,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230292,7 +229943,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230312,7 +229963,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230332,7 +229983,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230352,7 +230003,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230372,7 +230023,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230392,7 +230043,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230412,7 +230063,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230432,7 +230083,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230452,7 +230103,7 @@ "isFirstBestTeamRun": false }, "problemId": "1", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230472,7 +230123,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230492,7 +230143,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230512,7 +230163,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230532,7 +230183,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230552,7 +230203,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230572,7 +230223,7 @@ "isFirstBestTeamRun": false }, "problemId": "2", - "teamId": 349, + "teamId": "2554", "time": 0, "featuredRunMedia": null, "reactionVideos": [], @@ -230598,7 +230249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "1154", "time": 378013, "featuredRunMedia": null, "reactionVideos": [], @@ -230624,7 +230275,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 4, + "teamId": "1350", "time": 386847, "featuredRunMedia": null, "reactionVideos": [], @@ -230650,7 +230301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "1254", "time": 392313, "featuredRunMedia": null, "reactionVideos": [], @@ -230676,7 +230327,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "2652", "time": 408993, "featuredRunMedia": null, "reactionVideos": [], @@ -230702,7 +230353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "3146", "time": 443151, "featuredRunMedia": null, "reactionVideos": [], @@ -230728,7 +230379,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 5, + "teamId": "1351", "time": 472003, "featuredRunMedia": null, "reactionVideos": [], @@ -230754,7 +230405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 34, + "teamId": "3043", "time": 486276, "featuredRunMedia": null, "reactionVideos": [], @@ -230780,7 +230431,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "3245", "time": 518243, "featuredRunMedia": null, "reactionVideos": [], @@ -230806,7 +230457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 36, + "teamId": "2242", "time": 519097, "featuredRunMedia": null, "reactionVideos": [], @@ -230832,7 +230483,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "1154", "time": 537279, "featuredRunMedia": null, "reactionVideos": [], @@ -230858,7 +230509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "2942", "time": 539108, "featuredRunMedia": null, "reactionVideos": [], @@ -230884,7 +230535,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 14, + "teamId": "1955", "time": 550913, "featuredRunMedia": null, "reactionVideos": [], @@ -230910,7 +230561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 9, + "teamId": "1846", "time": 552232, "featuredRunMedia": null, "reactionVideos": [], @@ -230936,7 +230587,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 111, + "teamId": "2355", "time": 563242, "featuredRunMedia": null, "reactionVideos": [], @@ -230962,7 +230613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "3245", "time": 565690, "featuredRunMedia": null, "reactionVideos": [], @@ -230988,7 +230639,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 207, + "teamId": "2855", "time": 566987, "featuredRunMedia": null, "reactionVideos": [], @@ -231014,7 +230665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "1154", "time": 584031, "featuredRunMedia": null, "reactionVideos": [], @@ -231040,7 +230691,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 73, + "teamId": "3144", "time": 600200, "featuredRunMedia": null, "reactionVideos": [], @@ -231066,7 +230717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 150, + "teamId": "3247", "time": 608388, "featuredRunMedia": null, "reactionVideos": [], @@ -231092,7 +230743,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 11, + "teamId": "1150", "time": 610050, "featuredRunMedia": null, "reactionVideos": [], @@ -231118,7 +230769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 614028, "featuredRunMedia": null, "reactionVideos": [], @@ -231144,7 +230795,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 13, + "teamId": "3245", "time": 617589, "featuredRunMedia": null, "reactionVideos": [], @@ -231170,7 +230821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 207, + "teamId": "2855", "time": 623769, "featuredRunMedia": null, "reactionVideos": [], @@ -231198,7 +230849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 628155, "featuredRunMedia": null, "reactionVideos": [], @@ -231224,7 +230875,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 182, + "teamId": "1946", "time": 637779, "featuredRunMedia": null, "reactionVideos": [], @@ -231250,7 +230901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 177, + "teamId": "1446", "time": 642494, "featuredRunMedia": null, "reactionVideos": [], @@ -231276,7 +230927,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 233, + "teamId": "2351", "time": 645898, "featuredRunMedia": null, "reactionVideos": [], @@ -231302,7 +230953,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "1154", "time": 648700, "featuredRunMedia": null, "reactionVideos": [], @@ -231328,7 +230979,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 101, + "teamId": "2343", "time": 654050, "featuredRunMedia": null, "reactionVideos": [], @@ -231354,7 +231005,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 45, + "teamId": "1755", "time": 656369, "featuredRunMedia": null, "reactionVideos": [], @@ -231380,7 +231031,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 659544, "featuredRunMedia": null, "reactionVideos": [], @@ -231406,7 +231057,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 52, + "teamId": "2346", "time": 662672, "featuredRunMedia": null, "reactionVideos": [], @@ -231432,7 +231083,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 2, + "teamId": "2241", "time": 668690, "featuredRunMedia": null, "reactionVideos": [], @@ -231458,7 +231109,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 119, + "teamId": "2041", "time": 668916, "featuredRunMedia": null, "reactionVideos": [], @@ -231484,7 +231135,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 70, + "teamId": "3253", "time": 669693, "featuredRunMedia": null, "reactionVideos": [], @@ -231510,7 +231161,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 194, + "teamId": "1954", "time": 673714, "featuredRunMedia": null, "reactionVideos": [], @@ -231536,7 +231187,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 7, + "teamId": "1156", "time": 694894, "featuredRunMedia": null, "reactionVideos": [], @@ -231562,7 +231213,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 12, + "teamId": "2349", "time": 696241, "featuredRunMedia": null, "reactionVideos": [], @@ -231588,7 +231239,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 16, + "teamId": "3151", "time": 700355, "featuredRunMedia": null, "reactionVideos": [], @@ -231614,7 +231265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 702908, "featuredRunMedia": null, "reactionVideos": [], @@ -231640,7 +231291,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 139, + "teamId": "2441", "time": 703779, "featuredRunMedia": null, "reactionVideos": [], @@ -231666,7 +231317,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 63, + "teamId": "3243", "time": 706289, "featuredRunMedia": null, "reactionVideos": [], @@ -231692,7 +231343,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "2846", "time": 709038, "featuredRunMedia": null, "reactionVideos": [], @@ -231718,7 +231369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 715903, "featuredRunMedia": null, "reactionVideos": [], @@ -231740,7 +231391,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "2944", "time": 720620, "featuredRunMedia": null, "reactionVideos": [], @@ -231766,7 +231417,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 207, + "teamId": "2855", "time": 725982, "featuredRunMedia": null, "reactionVideos": [], @@ -231792,7 +231443,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 8, + "teamId": "1654", "time": 727257, "featuredRunMedia": null, "reactionVideos": [], @@ -231818,7 +231469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 314, + "teamId": "2944", "time": 739996, "featuredRunMedia": null, "reactionVideos": [], @@ -231844,7 +231495,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "3047", "time": 742319, "featuredRunMedia": null, "reactionVideos": [], @@ -231870,7 +231521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 108, + "teamId": "1746", "time": 742795, "featuredRunMedia": null, "reactionVideos": [], @@ -231896,7 +231547,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 68, + "teamId": "2644", "time": 749048, "featuredRunMedia": null, "reactionVideos": [], @@ -231922,7 +231573,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 144, + "teamId": "1856", "time": 751662, "featuredRunMedia": null, "reactionVideos": [], @@ -231948,7 +231599,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 28, + "teamId": "1650", "time": 751952, "featuredRunMedia": null, "reactionVideos": [], @@ -231974,7 +231625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 3, + "teamId": "1341", "time": 758075, "featuredRunMedia": null, "reactionVideos": [], @@ -232000,7 +231651,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 205, + "teamId": "1455", "time": 759226, "featuredRunMedia": null, "reactionVideos": [], @@ -232026,7 +231677,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 173, + "teamId": "2342", "time": 761985, "featuredRunMedia": null, "reactionVideos": [], @@ -232052,7 +231703,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 145, + "teamId": "2345", "time": 765483, "featuredRunMedia": null, "reactionVideos": [], @@ -232078,7 +231729,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 11, + "teamId": "1150", "time": 770035, "featuredRunMedia": null, "reactionVideos": [], @@ -232104,7 +231755,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 137, + "teamId": "3252", "time": 781935, "featuredRunMedia": null, "reactionVideos": [], @@ -232130,7 +231781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 22, + "teamId": "2254", "time": 785676, "featuredRunMedia": null, "reactionVideos": [], @@ -232156,7 +231807,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 190, + "teamId": "3053", "time": 799461, "featuredRunMedia": null, "reactionVideos": [], @@ -232182,7 +231833,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 159, + "teamId": "2348", "time": 803614, "featuredRunMedia": null, "reactionVideos": [], @@ -232208,7 +231859,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 250, + "teamId": "2647", "time": 814576, "featuredRunMedia": null, "reactionVideos": [], @@ -232234,7 +231885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 183, + "teamId": "2452", "time": 818606, "featuredRunMedia": null, "reactionVideos": [], @@ -232260,7 +231911,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 233, + "teamId": "2351", "time": 821920, "featuredRunMedia": null, "reactionVideos": [], @@ -232286,7 +231937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "1146", "time": 822763, "featuredRunMedia": null, "reactionVideos": [], @@ -232312,7 +231963,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 54, + "teamId": "2155", "time": 824705, "featuredRunMedia": null, "reactionVideos": [], @@ -232338,7 +231989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 32, + "teamId": "3249", "time": 828712, "featuredRunMedia": null, "reactionVideos": [], @@ -232364,7 +232015,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 59, + "teamId": "2446", "time": 829321, "featuredRunMedia": null, "reactionVideos": [], @@ -232390,7 +232041,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 151, + "teamId": "1147", "time": 832397, "featuredRunMedia": null, "reactionVideos": [], @@ -232416,7 +232067,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "2450", "time": 833243, "featuredRunMedia": null, "reactionVideos": [], @@ -232442,7 +232093,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 23, + "teamId": "2953", "time": 833848, "featuredRunMedia": null, "reactionVideos": [], @@ -232468,7 +232119,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 225, + "teamId": "2544", "time": 841950, "featuredRunMedia": null, "reactionVideos": [], @@ -232494,7 +232145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 291, + "teamId": "3242", "time": 845612, "featuredRunMedia": null, "reactionVideos": [], @@ -232520,7 +232171,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "1246", "time": 849736, "featuredRunMedia": null, "reactionVideos": [], @@ -232546,7 +232197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 200, + "teamId": "1551", "time": 855272, "featuredRunMedia": null, "reactionVideos": [], @@ -232572,7 +232223,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 67, + "teamId": "1154", "time": 864841, "featuredRunMedia": null, "reactionVideos": [], @@ -232598,7 +232249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "1456", "time": 864951, "featuredRunMedia": null, "reactionVideos": [], @@ -232624,7 +232275,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "1549", "time": 867206, "featuredRunMedia": null, "reactionVideos": [], @@ -232650,7 +232301,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 237, + "teamId": "2246", "time": 869675, "featuredRunMedia": null, "reactionVideos": [], @@ -232676,7 +232327,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 249, + "teamId": "2354", "time": 873676, "featuredRunMedia": null, "reactionVideos": [], @@ -232698,7 +232349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "2754", "time": 879865, "featuredRunMedia": null, "reactionVideos": [], @@ -232724,7 +232375,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 149, + "teamId": "2748", "time": 880422, "featuredRunMedia": null, "reactionVideos": [], @@ -232750,7 +232401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 56, + "teamId": "2956", "time": 881936, "featuredRunMedia": null, "reactionVideos": [], @@ -232776,7 +232427,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 881937, "featuredRunMedia": null, "reactionVideos": [], @@ -232802,7 +232453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 217, + "teamId": "3150", "time": 885239, "featuredRunMedia": null, "reactionVideos": [], @@ -232824,7 +232475,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "2754", "time": 886618, "featuredRunMedia": null, "reactionVideos": [], @@ -232850,7 +232501,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 71, + "teamId": "1751", "time": 892614, "featuredRunMedia": null, "reactionVideos": [], @@ -232876,7 +232527,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 95, + "teamId": "3255", "time": 895800, "featuredRunMedia": null, "reactionVideos": [], @@ -232902,7 +232553,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 114, + "teamId": "2243", "time": 898416, "featuredRunMedia": null, "reactionVideos": [], @@ -232928,7 +232579,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 157, + "teamId": "1443", "time": 899344, "featuredRunMedia": null, "reactionVideos": [], @@ -232954,7 +232605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 900787, "featuredRunMedia": null, "reactionVideos": [], @@ -232982,7 +232633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 902321, "featuredRunMedia": null, "reactionVideos": [], @@ -233008,7 +232659,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 83, + "teamId": "2555", "time": 906505, "featuredRunMedia": null, "reactionVideos": [], @@ -233034,7 +232685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 201, + "teamId": "1851", "time": 910348, "featuredRunMedia": null, "reactionVideos": [], @@ -233060,7 +232711,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "1549", "time": 911666, "featuredRunMedia": null, "reactionVideos": [], @@ -233086,7 +232737,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 245, + "teamId": "3148", "time": 912564, "featuredRunMedia": null, "reactionVideos": [], @@ -233112,7 +232763,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 283, + "teamId": "1242", "time": 913530, "featuredRunMedia": null, "reactionVideos": [], @@ -233138,7 +232789,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 53, + "teamId": "1643", "time": 913871, "featuredRunMedia": null, "reactionVideos": [], @@ -233164,7 +232815,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 63, + "teamId": "3243", "time": 914241, "featuredRunMedia": null, "reactionVideos": [], @@ -233190,7 +232841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "2846", "time": 922126, "featuredRunMedia": null, "reactionVideos": [], @@ -233216,7 +232867,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 115, + "teamId": "2745", "time": 925338, "featuredRunMedia": null, "reactionVideos": [], @@ -233242,7 +232893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 26, + "teamId": "2752", "time": 926768, "featuredRunMedia": null, "reactionVideos": [], @@ -233268,7 +232919,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "3154", "time": 929776, "featuredRunMedia": null, "reactionVideos": [], @@ -233294,7 +232945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "2448", "time": 929938, "featuredRunMedia": null, "reactionVideos": [], @@ -233320,7 +232971,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 104, + "teamId": "2754", "time": 929979, "featuredRunMedia": null, "reactionVideos": [], @@ -233346,7 +232997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 170, + "teamId": "2844", "time": 930098, "featuredRunMedia": null, "reactionVideos": [], @@ -233372,7 +233023,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 936675, "featuredRunMedia": null, "reactionVideos": [], @@ -233398,7 +233049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 64, + "teamId": "1647", "time": 940411, "featuredRunMedia": null, "reactionVideos": [], @@ -233424,7 +233075,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 108, + "teamId": "1746", "time": 941027, "featuredRunMedia": null, "reactionVideos": [], @@ -233450,7 +233101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "2447", "time": 944048, "featuredRunMedia": null, "reactionVideos": [], @@ -233476,7 +233127,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 89, + "teamId": "2652", "time": 945597, "featuredRunMedia": null, "reactionVideos": [], @@ -233502,7 +233153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 950134, "featuredRunMedia": null, "reactionVideos": [], @@ -233528,7 +233179,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "1945", "time": 950925, "featuredRunMedia": null, "reactionVideos": [], @@ -233554,7 +233205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 60, + "teamId": "1241", "time": 951204, "featuredRunMedia": null, "reactionVideos": [], @@ -233580,7 +233231,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "1246", "time": 952251, "featuredRunMedia": null, "reactionVideos": [], @@ -233606,7 +233257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "2641", "time": 953320, "featuredRunMedia": null, "reactionVideos": [], @@ -233632,7 +233283,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 959330, "featuredRunMedia": null, "reactionVideos": [], @@ -233658,7 +233309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "2756", "time": 960471, "featuredRunMedia": null, "reactionVideos": [], @@ -233684,7 +233335,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 47, + "teamId": "2943", "time": 960482, "featuredRunMedia": null, "reactionVideos": [], @@ -233710,7 +233361,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "2842", "time": 961039, "featuredRunMedia": null, "reactionVideos": [], @@ -233736,7 +233387,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 971087, "featuredRunMedia": null, "reactionVideos": [], @@ -233762,7 +233413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 166, + "teamId": "2751", "time": 971659, "featuredRunMedia": null, "reactionVideos": [], @@ -233784,7 +233435,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 208, + "teamId": "3141", "time": 973285, "featuredRunMedia": null, "reactionVideos": [], @@ -233810,7 +233461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "2451", "time": 973572, "featuredRunMedia": null, "reactionVideos": [], @@ -233836,7 +233487,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 324, + "teamId": "2653", "time": 978142, "featuredRunMedia": null, "reactionVideos": [], @@ -233862,7 +233513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 18, + "teamId": "1146", "time": 978847, "featuredRunMedia": null, "reactionVideos": [], @@ -233888,7 +233539,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 315, + "teamId": "1542", "time": 981087, "featuredRunMedia": null, "reactionVideos": [], @@ -233914,7 +233565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 141, + "teamId": "3241", "time": 982572, "featuredRunMedia": null, "reactionVideos": [], @@ -233940,7 +233591,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 172, + "teamId": "1841", "time": 984316, "featuredRunMedia": null, "reactionVideos": [], @@ -233962,7 +233613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 985013, "featuredRunMedia": null, "reactionVideos": [], @@ -233988,7 +233639,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "2842", "time": 986033, "featuredRunMedia": null, "reactionVideos": [], @@ -234014,7 +233665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 10, + "teamId": "2048", "time": 986658, "featuredRunMedia": null, "reactionVideos": [], @@ -234040,7 +233691,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 986868, "featuredRunMedia": null, "reactionVideos": [], @@ -234066,7 +233717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 97, + "teamId": "1252", "time": 987494, "featuredRunMedia": null, "reactionVideos": [], @@ -234092,7 +233743,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 91, + "teamId": "1343", "time": 988227, "featuredRunMedia": null, "reactionVideos": [], @@ -234118,7 +233769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 41, + "teamId": "2642", "time": 990391, "featuredRunMedia": null, "reactionVideos": [], @@ -234144,7 +233795,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 290, + "teamId": "2845", "time": 990400, "featuredRunMedia": null, "reactionVideos": [], @@ -234170,7 +233821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 197, + "teamId": "3254", "time": 991196, "featuredRunMedia": null, "reactionVideos": [], @@ -234196,7 +233847,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 120, + "teamId": "1845", "time": 991460, "featuredRunMedia": null, "reactionVideos": [], @@ -234222,7 +233873,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 251, + "teamId": "3152", "time": 995404, "featuredRunMedia": null, "reactionVideos": [], @@ -234248,7 +233899,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 999988, "featuredRunMedia": null, "reactionVideos": [], @@ -234274,7 +233925,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 208, + "teamId": "3141", "time": 1001298, "featuredRunMedia": null, "reactionVideos": [], @@ -234300,7 +233951,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 191, + "teamId": "1352", "time": 1002068, "featuredRunMedia": null, "reactionVideos": [], @@ -234326,7 +233977,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 212, + "teamId": "2353", "time": 1002718, "featuredRunMedia": null, "reactionVideos": [], @@ -234352,7 +234003,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 46, + "teamId": "2252", "time": 1009153, "featuredRunMedia": null, "reactionVideos": [], @@ -234378,7 +234029,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 31, + "teamId": "2955", "time": 1015538, "featuredRunMedia": null, "reactionVideos": [], @@ -234404,7 +234055,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 20, + "teamId": "1342", "time": 1016144, "featuredRunMedia": null, "reactionVideos": [], @@ -234430,7 +234081,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 80, + "teamId": "1848", "time": 1020554, "featuredRunMedia": null, "reactionVideos": [], @@ -234456,7 +234107,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 1021225, "featuredRunMedia": null, "reactionVideos": [], @@ -234482,7 +234133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 44, + "teamId": "3154", "time": 1021732, "featuredRunMedia": null, "reactionVideos": [], @@ -234508,7 +234159,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 165, + "teamId": "1843", "time": 1022752, "featuredRunMedia": null, "reactionVideos": [], @@ -234534,7 +234185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 24, + "teamId": "2050", "time": 1028878, "featuredRunMedia": null, "reactionVideos": [], @@ -234560,7 +234211,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 113, + "teamId": "1345", "time": 1029628, "featuredRunMedia": null, "reactionVideos": [], @@ -234586,7 +234237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 303, + "teamId": "2949", "time": 1036850, "featuredRunMedia": null, "reactionVideos": [], @@ -234612,7 +234263,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 146, + "teamId": "1456", "time": 1037043, "featuredRunMedia": null, "reactionVideos": [], @@ -234638,7 +234289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "1756", "time": 1037873, "featuredRunMedia": null, "reactionVideos": [], @@ -234664,7 +234315,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 158, + "teamId": "2154", "time": 1039356, "featuredRunMedia": null, "reactionVideos": [], @@ -234690,7 +234341,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 339, + "teamId": "2747", "time": 1043455, "featuredRunMedia": null, "reactionVideos": [], @@ -234716,7 +234367,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 164, + "teamId": "1453", "time": 1045398, "featuredRunMedia": null, "reactionVideos": [], @@ -234742,7 +234393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 154, + "teamId": "1148", "time": 1045737, "featuredRunMedia": null, "reactionVideos": [], @@ -234768,7 +234419,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 77, + "teamId": "1346", "time": 1046889, "featuredRunMedia": null, "reactionVideos": [], @@ -234794,7 +234445,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "1953", "time": 1048649, "featuredRunMedia": null, "reactionVideos": [], @@ -234820,7 +234471,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 99, + "teamId": "2248", "time": 1049656, "featuredRunMedia": null, "reactionVideos": [], @@ -234848,7 +234499,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 1053209, "featuredRunMedia": null, "reactionVideos": [], @@ -234874,7 +234525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 1054046, "featuredRunMedia": null, "reactionVideos": [], @@ -234900,7 +234551,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 90, + "teamId": "2850", "time": 1055463, "featuredRunMedia": null, "reactionVideos": [], @@ -234926,7 +234577,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 116, + "teamId": "1956", "time": 1059281, "featuredRunMedia": null, "reactionVideos": [], @@ -234952,7 +234603,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "1450", "time": 1063383, "featuredRunMedia": null, "reactionVideos": [], @@ -234978,7 +234629,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 320, + "teamId": "2449", "time": 1063983, "featuredRunMedia": null, "reactionVideos": [], @@ -235004,7 +234655,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 252, + "teamId": "1354", "time": 1069677, "featuredRunMedia": null, "reactionVideos": [], @@ -235030,7 +234681,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 115, + "teamId": "2745", "time": 1071253, "featuredRunMedia": null, "reactionVideos": [], @@ -235056,7 +234707,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 193, + "teamId": "1950", "time": 1071438, "featuredRunMedia": null, "reactionVideos": [], @@ -235082,7 +234733,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 233, + "teamId": "2351", "time": 1072116, "featuredRunMedia": null, "reactionVideos": [], @@ -235108,7 +234759,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 228, + "teamId": "1855", "time": 1077320, "featuredRunMedia": null, "reactionVideos": [], @@ -235134,7 +234785,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 99, + "teamId": "2248", "time": 1082550, "featuredRunMedia": null, "reactionVideos": [], @@ -235160,7 +234811,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 62, + "teamId": "2049", "time": 1082579, "featuredRunMedia": null, "reactionVideos": [], @@ -235186,7 +234837,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1085033, "featuredRunMedia": null, "reactionVideos": [], @@ -235212,7 +234863,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 184, + "teamId": "1448", "time": 1089231, "featuredRunMedia": null, "reactionVideos": [], @@ -235238,7 +234889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 1096978, "featuredRunMedia": null, "reactionVideos": [], @@ -235264,7 +234915,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "1949", "time": 1097689, "featuredRunMedia": null, "reactionVideos": [], @@ -235290,7 +234941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 248, + "teamId": "3250", "time": 1098676, "featuredRunMedia": null, "reactionVideos": [], @@ -235316,7 +234967,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "1547", "time": 1098914, "featuredRunMedia": null, "reactionVideos": [], @@ -235342,7 +234993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 100, + "teamId": "2947", "time": 1101702, "featuredRunMedia": null, "reactionVideos": [], @@ -235368,7 +235019,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 296, + "teamId": "1452", "time": 1104512, "featuredRunMedia": null, "reactionVideos": [], @@ -235394,7 +235045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 1105624, "featuredRunMedia": null, "reactionVideos": [], @@ -235420,7 +235071,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 338, + "teamId": "3248", "time": 1108689, "featuredRunMedia": null, "reactionVideos": [], @@ -235446,7 +235097,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 107, + "teamId": "1952", "time": 1114197, "featuredRunMedia": null, "reactionVideos": [], @@ -235472,7 +235123,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 235, + "teamId": "3147", "time": 1116339, "featuredRunMedia": null, "reactionVideos": [], @@ -235498,7 +235149,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 174, + "teamId": "1445", "time": 1116569, "featuredRunMedia": null, "reactionVideos": [], @@ -235524,7 +235175,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 35, + "teamId": "1554", "time": 1120672, "featuredRunMedia": null, "reactionVideos": [], @@ -235550,7 +235201,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 72, + "teamId": "2542", "time": 1121142, "featuredRunMedia": null, "reactionVideos": [], @@ -235576,7 +235227,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 285, + "teamId": "1945", "time": 1121913, "featuredRunMedia": null, "reactionVideos": [], @@ -235602,7 +235253,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 82, + "teamId": "2553", "time": 1122225, "featuredRunMedia": null, "reactionVideos": [], @@ -235628,7 +235279,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "2846", "time": 1126429, "featuredRunMedia": null, "reactionVideos": [], @@ -235654,7 +235305,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 259, + "teamId": "2946", "time": 1128335, "featuredRunMedia": null, "reactionVideos": [], @@ -235680,7 +235331,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 210, + "teamId": "1852", "time": 1128396, "featuredRunMedia": null, "reactionVideos": [], @@ -235706,7 +235357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "1256", "time": 1136548, "featuredRunMedia": null, "reactionVideos": [], @@ -235732,7 +235383,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 48, + "teamId": "2952", "time": 1145852, "featuredRunMedia": null, "reactionVideos": [], @@ -235758,7 +235409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "2756", "time": 1147200, "featuredRunMedia": null, "reactionVideos": [], @@ -235784,7 +235435,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 148, + "teamId": "1151", "time": 1149706, "featuredRunMedia": null, "reactionVideos": [], @@ -235810,7 +235461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 38, + "teamId": "2053", "time": 1150520, "featuredRunMedia": null, "reactionVideos": [], @@ -235836,7 +235487,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 271, + "teamId": "2149", "time": 1150881, "featuredRunMedia": null, "reactionVideos": [], @@ -235862,7 +235513,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 152, + "teamId": "1253", "time": 1152833, "featuredRunMedia": null, "reactionVideos": [], @@ -235888,7 +235539,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 163, + "teamId": "1142", "time": 1162397, "featuredRunMedia": null, "reactionVideos": [], @@ -235914,7 +235565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 50, + "teamId": "1450", "time": 1171180, "featuredRunMedia": null, "reactionVideos": [], @@ -235940,7 +235591,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 253, + "teamId": "2153", "time": 1173355, "featuredRunMedia": null, "reactionVideos": [], @@ -235966,7 +235617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 121, + "teamId": "1847", "time": 1177400, "featuredRunMedia": null, "reactionVideos": [], @@ -235992,7 +235643,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "2044", "time": 1187810, "featuredRunMedia": null, "reactionVideos": [], @@ -236018,7 +235669,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 61, + "teamId": "2045", "time": 1188015, "featuredRunMedia": null, "reactionVideos": [], @@ -236044,7 +235695,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 300, + "teamId": "1745", "time": 1190071, "featuredRunMedia": null, "reactionVideos": [], @@ -236070,7 +235721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 129, + "teamId": "3143", "time": 1190369, "featuredRunMedia": null, "reactionVideos": [], @@ -236096,7 +235747,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 204, + "teamId": "2356", "time": 1191429, "featuredRunMedia": null, "reactionVideos": [], @@ -236122,7 +235773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 334, + "teamId": "1756", "time": 1193695, "featuredRunMedia": null, "reactionVideos": [], @@ -236148,7 +235799,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 202, + "teamId": "2541", "time": 1198961, "featuredRunMedia": null, "reactionVideos": [], @@ -236174,7 +235825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 332, + "teamId": "1153", "time": 1199119, "featuredRunMedia": null, "reactionVideos": [], @@ -236200,7 +235851,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 93, + "teamId": "2454", "time": 1199656, "featuredRunMedia": null, "reactionVideos": [], @@ -236226,7 +235877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 196, + "teamId": "3048", "time": 1200989, "featuredRunMedia": null, "reactionVideos": [], @@ -236252,7 +235903,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "2256", "time": 1213530, "featuredRunMedia": null, "reactionVideos": [], @@ -236278,7 +235929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "1152", "time": 1216195, "featuredRunMedia": null, "reactionVideos": [], @@ -236304,7 +235955,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "1953", "time": 1218527, "featuredRunMedia": null, "reactionVideos": [], @@ -236330,7 +235981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 125, + "teamId": "2341", "time": 1219500, "featuredRunMedia": null, "reactionVideos": [], @@ -236356,7 +236007,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 246, + "teamId": "3244", "time": 1219934, "featuredRunMedia": null, "reactionVideos": [], @@ -236382,7 +236033,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1222059, "featuredRunMedia": null, "reactionVideos": [], @@ -236410,7 +236061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 1239992, "featuredRunMedia": null, "reactionVideos": [], @@ -236436,7 +236087,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 1243640, "featuredRunMedia": null, "reactionVideos": [], @@ -236462,7 +236113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 181, + "teamId": "2344", "time": 1247566, "featuredRunMedia": null, "reactionVideos": [], @@ -236488,7 +236139,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 1253065, "featuredRunMedia": null, "reactionVideos": [], @@ -236514,7 +236165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 84, + "teamId": "1550", "time": 1254422, "featuredRunMedia": null, "reactionVideos": [], @@ -236542,7 +236193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 1255853, "featuredRunMedia": null, "reactionVideos": [], @@ -236568,7 +236219,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 242, + "teamId": "3056", "time": 1258534, "featuredRunMedia": null, "reactionVideos": [], @@ -236594,7 +236245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 19, + "teamId": "2656", "time": 1263023, "featuredRunMedia": null, "reactionVideos": [], @@ -236620,7 +236271,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 117, + "teamId": "3047", "time": 1264821, "featuredRunMedia": null, "reactionVideos": [], @@ -236646,7 +236297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1266729, "featuredRunMedia": null, "reactionVideos": [], @@ -236672,7 +236323,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "3155", "time": 1268569, "featuredRunMedia": null, "reactionVideos": [], @@ -236698,7 +236349,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 318, + "teamId": "2848", "time": 1268851, "featuredRunMedia": null, "reactionVideos": [], @@ -236724,7 +236375,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 326, + "teamId": "1143", "time": 1271361, "featuredRunMedia": null, "reactionVideos": [], @@ -236752,7 +236403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 1272727, "featuredRunMedia": null, "reactionVideos": [], @@ -236780,7 +236431,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 1272876, "featuredRunMedia": null, "reactionVideos": [], @@ -236806,7 +236457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "2646", "time": 1282522, "featuredRunMedia": null, "reactionVideos": [], @@ -236832,7 +236483,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "3050", "time": 1285515, "featuredRunMedia": null, "reactionVideos": [], @@ -236858,7 +236509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 1286462, "featuredRunMedia": null, "reactionVideos": [], @@ -236884,7 +236535,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 51, + "teamId": "1547", "time": 1290948, "featuredRunMedia": null, "reactionVideos": [], @@ -236910,7 +236561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 218, + "teamId": "1541", "time": 1291211, "featuredRunMedia": null, "reactionVideos": [], @@ -236936,7 +236587,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 266, + "teamId": "2641", "time": 1295243, "featuredRunMedia": null, "reactionVideos": [], @@ -236962,7 +236613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 25, + "teamId": "2843", "time": 1297311, "featuredRunMedia": null, "reactionVideos": [], @@ -236988,7 +236639,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "2146", "time": 1297386, "featuredRunMedia": null, "reactionVideos": [], @@ -237014,7 +236665,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 298, + "teamId": "1642", "time": 1297758, "featuredRunMedia": null, "reactionVideos": [], @@ -237040,7 +236691,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 160, + "teamId": "1649", "time": 1299738, "featuredRunMedia": null, "reactionVideos": [], @@ -237066,7 +236717,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "1548", "time": 1301636, "featuredRunMedia": null, "reactionVideos": [], @@ -237092,7 +236743,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "1254", "time": 1303097, "featuredRunMedia": null, "reactionVideos": [], @@ -237120,7 +236771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 1307899, "featuredRunMedia": null, "reactionVideos": [], @@ -237148,7 +236799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 1317110, "featuredRunMedia": null, "reactionVideos": [], @@ -237174,7 +236825,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "1747", "time": 1319567, "featuredRunMedia": null, "reactionVideos": [], @@ -237200,7 +236851,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 198, + "teamId": "1248", "time": 1319772, "featuredRunMedia": null, "reactionVideos": [], @@ -237226,7 +236877,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1321094, "featuredRunMedia": null, "reactionVideos": [], @@ -237252,7 +236903,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 1321148, "featuredRunMedia": null, "reactionVideos": [], @@ -237278,7 +236929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 1322146, "featuredRunMedia": null, "reactionVideos": [], @@ -237304,7 +236955,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 102, + "teamId": "1256", "time": 1328680, "featuredRunMedia": null, "reactionVideos": [], @@ -237332,7 +236983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 1336706, "featuredRunMedia": null, "reactionVideos": [], @@ -237358,7 +237009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "1742", "time": 1340832, "featuredRunMedia": null, "reactionVideos": [], @@ -237384,7 +237035,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "2550", "time": 1343510, "featuredRunMedia": null, "reactionVideos": [], @@ -237410,7 +237061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "1742", "time": 1347760, "featuredRunMedia": null, "reactionVideos": [], @@ -237436,7 +237087,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 1349265, "featuredRunMedia": null, "reactionVideos": [], @@ -237462,7 +237113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1349611, "featuredRunMedia": null, "reactionVideos": [], @@ -237488,7 +237139,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 322, + "teamId": "2253", "time": 1350125, "featuredRunMedia": null, "reactionVideos": [], @@ -237514,7 +237165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "2146", "time": 1352849, "featuredRunMedia": null, "reactionVideos": [], @@ -237540,7 +237191,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "3042", "time": 1356024, "featuredRunMedia": null, "reactionVideos": [], @@ -237568,7 +237219,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 1356530, "featuredRunMedia": null, "reactionVideos": [], @@ -237594,7 +237245,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "1953", "time": 1358219, "featuredRunMedia": null, "reactionVideos": [], @@ -237620,7 +237271,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 1358447, "featuredRunMedia": null, "reactionVideos": [], @@ -237648,7 +237299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 1358703, "featuredRunMedia": null, "reactionVideos": [], @@ -237676,7 +237327,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 1368271, "featuredRunMedia": null, "reactionVideos": [], @@ -237702,7 +237353,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 280, + "teamId": "3052", "time": 1372246, "featuredRunMedia": null, "reactionVideos": [], @@ -237728,7 +237379,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 140, + "teamId": "1149", "time": 1377016, "featuredRunMedia": null, "reactionVideos": [], @@ -237754,7 +237405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 136, + "teamId": "3146", "time": 1377856, "featuredRunMedia": null, "reactionVideos": [], @@ -237780,7 +237431,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 313, + "teamId": "2054", "time": 1378727, "featuredRunMedia": null, "reactionVideos": [], @@ -237806,7 +237457,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 171, + "teamId": "1543", "time": 1381221, "featuredRunMedia": null, "reactionVideos": [], @@ -237832,7 +237483,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1381773, "featuredRunMedia": null, "reactionVideos": [], @@ -237858,7 +237509,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 88, + "teamId": "1646", "time": 1382116, "featuredRunMedia": null, "reactionVideos": [], @@ -237884,7 +237535,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 1382995, "featuredRunMedia": null, "reactionVideos": [], @@ -237910,7 +237561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 127, + "teamId": "1747", "time": 1384113, "featuredRunMedia": null, "reactionVideos": [], @@ -237936,7 +237587,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 33, + "teamId": "2849", "time": 1393311, "featuredRunMedia": null, "reactionVideos": [], @@ -237962,7 +237613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "1742", "time": 1393597, "featuredRunMedia": null, "reactionVideos": [], @@ -237990,7 +237641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 1394456, "featuredRunMedia": null, "reactionVideos": [], @@ -238018,7 +237669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "1846", "time": 1394681, "featuredRunMedia": null, "reactionVideos": [], @@ -238044,7 +237695,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "2749", "time": 1399935, "featuredRunMedia": null, "reactionVideos": [], @@ -238070,7 +237721,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 58, + "teamId": "3145", "time": 1401772, "featuredRunMedia": null, "reactionVideos": [], @@ -238096,7 +237747,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 241, + "teamId": "1556", "time": 1403093, "featuredRunMedia": null, "reactionVideos": [], @@ -238122,7 +237773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "1742", "time": 1414058, "featuredRunMedia": null, "reactionVideos": [], @@ -238148,7 +237799,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 27, + "teamId": "1653", "time": 1414896, "featuredRunMedia": null, "reactionVideos": [], @@ -238176,7 +237827,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 1417294, "featuredRunMedia": null, "reactionVideos": [], @@ -238204,7 +237855,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 1419120, "featuredRunMedia": null, "reactionVideos": [], @@ -238230,7 +237881,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 220, + "teamId": "1742", "time": 1419535, "featuredRunMedia": null, "reactionVideos": [], @@ -238256,7 +237907,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 88, + "teamId": "1646", "time": 1420931, "featuredRunMedia": null, "reactionVideos": [], @@ -238278,7 +237929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "1245", "time": 1421215, "featuredRunMedia": null, "reactionVideos": [], @@ -238304,7 +237955,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "2842", "time": 1424428, "featuredRunMedia": null, "reactionVideos": [], @@ -238332,7 +237983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 1426340, "featuredRunMedia": null, "reactionVideos": [], @@ -238358,7 +238009,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 92, + "teamId": "1141", "time": 1429100, "featuredRunMedia": null, "reactionVideos": [], @@ -238384,7 +238035,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 147, + "teamId": "2042", "time": 1432580, "featuredRunMedia": null, "reactionVideos": [], @@ -238410,7 +238061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 329, + "teamId": "2245", "time": 1433908, "featuredRunMedia": null, "reactionVideos": [], @@ -238436,7 +238087,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1434085, "featuredRunMedia": null, "reactionVideos": [], @@ -238462,7 +238113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 211, + "teamId": "2846", "time": 1434556, "featuredRunMedia": null, "reactionVideos": [], @@ -238488,7 +238139,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "1245", "time": 1436403, "featuredRunMedia": null, "reactionVideos": [], @@ -238514,7 +238165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 302, + "teamId": "2147", "time": 1438373, "featuredRunMedia": null, "reactionVideos": [], @@ -238540,7 +238191,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 1438753, "featuredRunMedia": null, "reactionVideos": [], @@ -238566,7 +238217,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "2648", "time": 1445400, "featuredRunMedia": null, "reactionVideos": [], @@ -238592,7 +238243,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1446450, "featuredRunMedia": null, "reactionVideos": [], @@ -238618,7 +238269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1456419, "featuredRunMedia": null, "reactionVideos": [], @@ -238644,7 +238295,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 161, + "teamId": "1944", "time": 1456602, "featuredRunMedia": null, "reactionVideos": [], @@ -238670,7 +238321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 335, + "teamId": "2148", "time": 1456735, "featuredRunMedia": null, "reactionVideos": [], @@ -238698,7 +238349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 1458099, "featuredRunMedia": null, "reactionVideos": [], @@ -238724,7 +238375,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 112, + "teamId": "1255", "time": 1459679, "featuredRunMedia": null, "reactionVideos": [], @@ -238750,7 +238401,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 122, + "teamId": "2145", "time": 1462179, "featuredRunMedia": null, "reactionVideos": [], @@ -238776,7 +238427,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 96, + "teamId": "2742", "time": 1464038, "featuredRunMedia": null, "reactionVideos": [], @@ -238802,7 +238453,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 106, + "teamId": "2753", "time": 1465631, "featuredRunMedia": null, "reactionVideos": [], @@ -238828,7 +238479,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 65, + "teamId": "2746", "time": 1467060, "featuredRunMedia": null, "reactionVideos": [], @@ -238854,7 +238505,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1470850, "featuredRunMedia": null, "reactionVideos": [], @@ -238880,7 +238531,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 280, + "teamId": "3052", "time": 1474348, "featuredRunMedia": null, "reactionVideos": [], @@ -238906,7 +238557,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 206, + "teamId": "2142", "time": 1474542, "featuredRunMedia": null, "reactionVideos": [], @@ -238932,7 +238583,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 225, + "teamId": "2544", "time": 1478770, "featuredRunMedia": null, "reactionVideos": [], @@ -238958,7 +238609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "2445", "time": 1480198, "featuredRunMedia": null, "reactionVideos": [], @@ -238984,7 +238635,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "3042", "time": 1487522, "featuredRunMedia": null, "reactionVideos": [], @@ -239010,7 +238661,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 223, + "teamId": "1552", "time": 1487568, "featuredRunMedia": null, "reactionVideos": [], @@ -239036,7 +238687,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1489829, "featuredRunMedia": null, "reactionVideos": [], @@ -239062,7 +238713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "2445", "time": 1493104, "featuredRunMedia": null, "reactionVideos": [], @@ -239088,7 +238739,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 224, + "teamId": "1744", "time": 1503509, "featuredRunMedia": null, "reactionVideos": [], @@ -239114,7 +238765,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "1842", "time": 1505809, "featuredRunMedia": null, "reactionVideos": [], @@ -239140,7 +238791,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 210, + "teamId": "1852", "time": 1508768, "featuredRunMedia": null, "reactionVideos": [], @@ -239166,7 +238817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 132, + "teamId": "2256", "time": 1509395, "featuredRunMedia": null, "reactionVideos": [], @@ -239188,7 +238839,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "1748", "time": 1518514, "featuredRunMedia": null, "reactionVideos": [], @@ -239214,7 +238865,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 1522282, "featuredRunMedia": null, "reactionVideos": [], @@ -239240,7 +238891,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "3042", "time": 1523657, "featuredRunMedia": null, "reactionVideos": [], @@ -239266,7 +238917,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 261, + "teamId": "1943", "time": 1527824, "featuredRunMedia": null, "reactionVideos": [], @@ -239292,7 +238943,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 219, + "teamId": "2445", "time": 1535661, "featuredRunMedia": null, "reactionVideos": [], @@ -239318,7 +238969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 1535667, "featuredRunMedia": null, "reactionVideos": [], @@ -239344,7 +238995,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 316, + "teamId": "1641", "time": 1536644, "featuredRunMedia": null, "reactionVideos": [], @@ -239370,7 +239021,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 167, + "teamId": "1353", "time": 1539707, "featuredRunMedia": null, "reactionVideos": [], @@ -239396,7 +239047,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "2648", "time": 1539943, "featuredRunMedia": null, "reactionVideos": [], @@ -239424,7 +239075,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 1541798, "featuredRunMedia": null, "reactionVideos": [], @@ -239450,7 +239101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 40, + "teamId": "1748", "time": 1542136, "featuredRunMedia": null, "reactionVideos": [], @@ -239476,7 +239127,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 254, + "teamId": "1442", "time": 1543001, "featuredRunMedia": null, "reactionVideos": [], @@ -239502,7 +239153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 239, + "teamId": "1655", "time": 1551866, "featuredRunMedia": null, "reactionVideos": [], @@ -239528,7 +239179,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "1644", "time": 1551911, "featuredRunMedia": null, "reactionVideos": [], @@ -239554,7 +239205,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1553794, "featuredRunMedia": null, "reactionVideos": [], @@ -239582,7 +239233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 82, + "teamId": "2553", "time": 1553864, "featuredRunMedia": null, "reactionVideos": [], @@ -239604,7 +239255,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 1556295, "featuredRunMedia": null, "reactionVideos": [], @@ -239630,7 +239281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 69, + "teamId": "1951", "time": 1559920, "featuredRunMedia": null, "reactionVideos": [], @@ -239656,7 +239307,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "1254", "time": 1561298, "featuredRunMedia": null, "reactionVideos": [], @@ -239682,7 +239333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 37, + "teamId": "1152", "time": 1561827, "featuredRunMedia": null, "reactionVideos": [], @@ -239708,7 +239359,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 209, + "teamId": "2755", "time": 1562712, "featuredRunMedia": null, "reactionVideos": [], @@ -239736,7 +239387,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "1846", "time": 1563983, "featuredRunMedia": null, "reactionVideos": [], @@ -239762,7 +239413,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 176, + "teamId": "3045", "time": 1566078, "featuredRunMedia": null, "reactionVideos": [], @@ -239790,7 +239441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 1569674, "featuredRunMedia": null, "reactionVideos": [], @@ -239816,7 +239467,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 1571069, "featuredRunMedia": null, "reactionVideos": [], @@ -239842,7 +239493,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "1250", "time": 1573870, "featuredRunMedia": null, "reactionVideos": [], @@ -239868,7 +239519,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 49, + "teamId": "3050", "time": 1575176, "featuredRunMedia": null, "reactionVideos": [], @@ -239894,7 +239545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1578490, "featuredRunMedia": null, "reactionVideos": [], @@ -239920,7 +239571,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "2749", "time": 1579606, "featuredRunMedia": null, "reactionVideos": [], @@ -239946,7 +239597,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "2842", "time": 1581362, "featuredRunMedia": null, "reactionVideos": [], @@ -239972,7 +239623,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 118, + "teamId": "2756", "time": 1581556, "featuredRunMedia": null, "reactionVideos": [], @@ -239998,7 +239649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 86, + "teamId": "3251", "time": 1585178, "featuredRunMedia": null, "reactionVideos": [], @@ -240024,7 +239675,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "1449", "time": 1586104, "featuredRunMedia": null, "reactionVideos": [], @@ -240050,7 +239701,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 289, + "teamId": "2851", "time": 1586465, "featuredRunMedia": null, "reactionVideos": [], @@ -240078,7 +239729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 1589099, "featuredRunMedia": null, "reactionVideos": [], @@ -240106,7 +239757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "1955", "time": 1589611, "featuredRunMedia": null, "reactionVideos": [], @@ -240132,7 +239783,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "2352", "time": 1592541, "featuredRunMedia": null, "reactionVideos": [], @@ -240158,7 +239809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 276, + "teamId": "2141", "time": 1599439, "featuredRunMedia": null, "reactionVideos": [], @@ -240184,7 +239835,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "2447", "time": 1600853, "featuredRunMedia": null, "reactionVideos": [], @@ -240212,7 +239863,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 1602716, "featuredRunMedia": null, "reactionVideos": [], @@ -240238,7 +239889,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "1546", "time": 1603512, "featuredRunMedia": null, "reactionVideos": [], @@ -240264,7 +239915,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1607265, "featuredRunMedia": null, "reactionVideos": [], @@ -240290,7 +239941,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 1607542, "featuredRunMedia": null, "reactionVideos": [], @@ -240316,7 +239967,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1609704, "featuredRunMedia": null, "reactionVideos": [], @@ -240342,7 +239993,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 231, + "teamId": "1555", "time": 1611082, "featuredRunMedia": null, "reactionVideos": [], @@ -240368,7 +240019,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 1613271, "featuredRunMedia": null, "reactionVideos": [], @@ -240394,7 +240045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 1613281, "featuredRunMedia": null, "reactionVideos": [], @@ -240420,7 +240071,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 142, + "teamId": "1144", "time": 1613661, "featuredRunMedia": null, "reactionVideos": [], @@ -240448,7 +240099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1619785, "featuredRunMedia": null, "reactionVideos": [], @@ -240474,7 +240125,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 226, + "teamId": "2945", "time": 1621615, "featuredRunMedia": null, "reactionVideos": [], @@ -240500,7 +240151,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "1246", "time": 1621627, "featuredRunMedia": null, "reactionVideos": [], @@ -240526,7 +240177,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "2951", "time": 1622486, "featuredRunMedia": null, "reactionVideos": [], @@ -240554,7 +240205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 1627126, "featuredRunMedia": null, "reactionVideos": [], @@ -240580,7 +240231,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 78, + "teamId": "2442", "time": 1628569, "featuredRunMedia": null, "reactionVideos": [], @@ -240606,7 +240257,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 1635309, "featuredRunMedia": null, "reactionVideos": [], @@ -240632,7 +240283,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "3049", "time": 1636093, "featuredRunMedia": null, "reactionVideos": [], @@ -240658,7 +240309,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 1636814, "featuredRunMedia": null, "reactionVideos": [], @@ -240684,7 +240335,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 1644441, "featuredRunMedia": null, "reactionVideos": [], @@ -240712,7 +240363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 1649733, "featuredRunMedia": null, "reactionVideos": [], @@ -240740,7 +240391,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1650246, "featuredRunMedia": null, "reactionVideos": [], @@ -240768,7 +240419,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 1651724, "featuredRunMedia": null, "reactionVideos": [], @@ -240790,7 +240441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 1659441, "featuredRunMedia": null, "reactionVideos": [], @@ -240818,7 +240469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 1661597, "featuredRunMedia": null, "reactionVideos": [], @@ -240844,7 +240495,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 1664822, "featuredRunMedia": null, "reactionVideos": [], @@ -240872,7 +240523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 1667974, "featuredRunMedia": null, "reactionVideos": [], @@ -240900,7 +240551,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 1672167, "featuredRunMedia": null, "reactionVideos": [], @@ -240933,7 +240584,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 1675394, "featuredRunMedia": null, "reactionVideos": [], @@ -240961,7 +240612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 1676308, "featuredRunMedia": null, "reactionVideos": [], @@ -240987,7 +240638,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 169, + "teamId": "2255", "time": 1678548, "featuredRunMedia": null, "reactionVideos": [], @@ -241015,7 +240666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 1681319, "featuredRunMedia": null, "reactionVideos": [], @@ -241043,7 +240694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 1681439, "featuredRunMedia": null, "reactionVideos": [], @@ -241069,7 +240720,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 128, + "teamId": "2842", "time": 1683105, "featuredRunMedia": null, "reactionVideos": [], @@ -241095,7 +240746,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 1686384, "featuredRunMedia": null, "reactionVideos": [], @@ -241121,7 +240772,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 192, + "teamId": "1849", "time": 1687159, "featuredRunMedia": null, "reactionVideos": [], @@ -241149,7 +240800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "1955", "time": 1687969, "featuredRunMedia": null, "reactionVideos": [], @@ -241175,7 +240826,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 1692985, "featuredRunMedia": null, "reactionVideos": [], @@ -241208,7 +240859,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 278, + "teamId": "2941", "time": 1694440, "featuredRunMedia": null, "reactionVideos": [], @@ -241234,7 +240885,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1695635, "featuredRunMedia": null, "reactionVideos": [], @@ -241260,7 +240911,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "1953", "time": 1696157, "featuredRunMedia": null, "reactionVideos": [], @@ -241286,7 +240937,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 133, + "teamId": "2951", "time": 1698591, "featuredRunMedia": null, "reactionVideos": [], @@ -241312,7 +240963,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "2056", "time": 1699771, "featuredRunMedia": null, "reactionVideos": [], @@ -241338,7 +240989,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 277, + "teamId": "2853", "time": 1702818, "featuredRunMedia": null, "reactionVideos": [], @@ -241364,7 +241015,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "1949", "time": 1703176, "featuredRunMedia": null, "reactionVideos": [], @@ -241392,7 +241043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 1710218, "featuredRunMedia": null, "reactionVideos": [], @@ -241418,7 +241069,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "2655", "time": 1712162, "featuredRunMedia": null, "reactionVideos": [], @@ -241444,7 +241095,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 123, + "teamId": "2648", "time": 1713423, "featuredRunMedia": null, "reactionVideos": [], @@ -241470,7 +241121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 297, + "teamId": "1546", "time": 1717363, "featuredRunMedia": null, "reactionVideos": [], @@ -241492,7 +241143,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "3155", "time": 1718006, "featuredRunMedia": null, "reactionVideos": [], @@ -241520,7 +241171,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1723195, "featuredRunMedia": null, "reactionVideos": [], @@ -241546,7 +241197,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 1725267, "featuredRunMedia": null, "reactionVideos": [], @@ -241572,7 +241223,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 17, + "teamId": "1953", "time": 1725557, "featuredRunMedia": null, "reactionVideos": [], @@ -241598,7 +241249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 1727836, "featuredRunMedia": null, "reactionVideos": [], @@ -241626,7 +241277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 1731158, "featuredRunMedia": null, "reactionVideos": [], @@ -241654,7 +241305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 1734559, "featuredRunMedia": null, "reactionVideos": [], @@ -241680,7 +241331,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 269, + "teamId": "2244", "time": 1737120, "featuredRunMedia": null, "reactionVideos": [], @@ -241706,7 +241357,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 81, + "teamId": "2447", "time": 1739269, "featuredRunMedia": null, "reactionVideos": [], @@ -241732,7 +241383,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 1739884, "featuredRunMedia": null, "reactionVideos": [], @@ -241758,7 +241409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 199, + "teamId": "1544", "time": 1744197, "featuredRunMedia": null, "reactionVideos": [], @@ -241784,7 +241435,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 1748513, "featuredRunMedia": null, "reactionVideos": [], @@ -241817,7 +241468,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 1751245, "featuredRunMedia": null, "reactionVideos": [], @@ -241843,7 +241494,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "1451", "time": 1751949, "featuredRunMedia": null, "reactionVideos": [], @@ -241869,7 +241520,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 216, + "teamId": "1753", "time": 1755610, "featuredRunMedia": null, "reactionVideos": [], @@ -241895,7 +241546,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "2655", "time": 1757704, "featuredRunMedia": null, "reactionVideos": [], @@ -241923,7 +241574,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 1763220, "featuredRunMedia": null, "reactionVideos": [], @@ -241949,7 +241600,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 1765309, "featuredRunMedia": null, "reactionVideos": [], @@ -241977,7 +241628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 1766973, "featuredRunMedia": null, "reactionVideos": [], @@ -242003,7 +241654,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 138, + "teamId": "1250", "time": 1768690, "featuredRunMedia": null, "reactionVideos": [], @@ -242029,7 +241680,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "3155", "time": 1769215, "featuredRunMedia": null, "reactionVideos": [], @@ -242055,7 +241706,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "1644", "time": 1770994, "featuredRunMedia": null, "reactionVideos": [], @@ -242081,7 +241732,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 66, + "teamId": "2550", "time": 1771671, "featuredRunMedia": null, "reactionVideos": [], @@ -242107,7 +241758,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "3042", "time": 1776609, "featuredRunMedia": null, "reactionVideos": [], @@ -242133,7 +241784,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 1776962, "featuredRunMedia": null, "reactionVideos": [], @@ -242161,7 +241812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 4, + "teamId": "1350", "time": 1778420, "featuredRunMedia": null, "reactionVideos": [], @@ -242189,7 +241840,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 1790757, "featuredRunMedia": null, "reactionVideos": [], @@ -242215,7 +241866,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 272, + "teamId": "2051", "time": 1790991, "featuredRunMedia": null, "reactionVideos": [], @@ -242243,7 +241894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 1791150, "featuredRunMedia": null, "reactionVideos": [], @@ -242271,7 +241922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 9, + "teamId": "1846", "time": 1798171, "featuredRunMedia": null, "reactionVideos": [], @@ -242297,7 +241948,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 187, + "teamId": "2444", "time": 1802570, "featuredRunMedia": null, "reactionVideos": [], @@ -242325,7 +241976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1802643, "featuredRunMedia": null, "reactionVideos": [], @@ -242351,7 +242002,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 1803300, "featuredRunMedia": null, "reactionVideos": [], @@ -242377,7 +242028,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 1806125, "featuredRunMedia": null, "reactionVideos": [], @@ -242403,7 +242054,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 1808498, "featuredRunMedia": null, "reactionVideos": [], @@ -242429,7 +242080,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 288, + "teamId": "2146", "time": 1813813, "featuredRunMedia": null, "reactionVideos": [], @@ -242455,7 +242106,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 306, + "teamId": "2056", "time": 1816640, "featuredRunMedia": null, "reactionVideos": [], @@ -242483,7 +242134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1817826, "featuredRunMedia": null, "reactionVideos": [], @@ -242509,7 +242160,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 337, + "teamId": "1656", "time": 1823225, "featuredRunMedia": null, "reactionVideos": [], @@ -242535,7 +242186,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "1949", "time": 1827457, "featuredRunMedia": null, "reactionVideos": [], @@ -242561,7 +242212,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 1827968, "featuredRunMedia": null, "reactionVideos": [], @@ -242587,7 +242238,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "2643", "time": 1834598, "featuredRunMedia": null, "reactionVideos": [], @@ -242615,7 +242266,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 1838188, "featuredRunMedia": null, "reactionVideos": [], @@ -242643,7 +242294,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 1839439, "featuredRunMedia": null, "reactionVideos": [], @@ -242669,7 +242320,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1844006, "featuredRunMedia": null, "reactionVideos": [], @@ -242695,7 +242346,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 1847123, "featuredRunMedia": null, "reactionVideos": [], @@ -242728,7 +242379,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 1850577, "featuredRunMedia": null, "reactionVideos": [], @@ -242754,7 +242405,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 1852366, "featuredRunMedia": null, "reactionVideos": [], @@ -242780,7 +242431,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 1856079, "featuredRunMedia": null, "reactionVideos": [], @@ -242808,7 +242459,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1857584, "featuredRunMedia": null, "reactionVideos": [], @@ -242834,7 +242485,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 229, + "teamId": "1853", "time": 1869095, "featuredRunMedia": null, "reactionVideos": [], @@ -242862,7 +242513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 1869648, "featuredRunMedia": null, "reactionVideos": [], @@ -242890,7 +242541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 4, + "teamId": "1350", "time": 1870967, "featuredRunMedia": null, "reactionVideos": [], @@ -242918,7 +242569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 1871394, "featuredRunMedia": null, "reactionVideos": [], @@ -242946,7 +242597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1871889, "featuredRunMedia": null, "reactionVideos": [], @@ -242972,7 +242623,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 1873374, "featuredRunMedia": null, "reactionVideos": [], @@ -242998,7 +242649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 1875193, "featuredRunMedia": null, "reactionVideos": [], @@ -243024,7 +242675,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 1877771, "featuredRunMedia": null, "reactionVideos": [], @@ -243052,7 +242703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 1888536, "featuredRunMedia": null, "reactionVideos": [], @@ -243080,7 +242731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 1892537, "featuredRunMedia": null, "reactionVideos": [], @@ -243108,7 +242759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 16, + "teamId": "3151", "time": 1895962, "featuredRunMedia": null, "reactionVideos": [], @@ -243136,7 +242787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 1896528, "featuredRunMedia": null, "reactionVideos": [], @@ -243164,7 +242815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 1897081, "featuredRunMedia": null, "reactionVideos": [], @@ -243190,7 +242841,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 1904675, "featuredRunMedia": null, "reactionVideos": [], @@ -243216,7 +242867,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 282, + "teamId": "1947", "time": 1906819, "featuredRunMedia": null, "reactionVideos": [], @@ -243242,7 +242893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "2144", "time": 1913227, "featuredRunMedia": null, "reactionVideos": [], @@ -243268,7 +242919,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 222, + "teamId": "1244", "time": 1916291, "featuredRunMedia": null, "reactionVideos": [], @@ -243294,7 +242945,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "1451", "time": 1918645, "featuredRunMedia": null, "reactionVideos": [], @@ -243320,7 +242971,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 126, + "teamId": "1741", "time": 1928088, "featuredRunMedia": null, "reactionVideos": [], @@ -243346,7 +242997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "3051", "time": 1934438, "featuredRunMedia": null, "reactionVideos": [], @@ -243372,7 +243023,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 1936511, "featuredRunMedia": null, "reactionVideos": [], @@ -243398,7 +243049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 195, + "teamId": "2543", "time": 1937340, "featuredRunMedia": null, "reactionVideos": [], @@ -243424,7 +243075,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "2948", "time": 1942392, "featuredRunMedia": null, "reactionVideos": [], @@ -243450,7 +243101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 169, + "teamId": "2255", "time": 1945349, "featuredRunMedia": null, "reactionVideos": [], @@ -243476,7 +243127,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "3155", "time": 1958680, "featuredRunMedia": null, "reactionVideos": [], @@ -243514,7 +243165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 1961295, "featuredRunMedia": null, "reactionVideos": [], @@ -243542,7 +243193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 1964482, "featuredRunMedia": null, "reactionVideos": [], @@ -243570,7 +243221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 1972219, "featuredRunMedia": null, "reactionVideos": [], @@ -243598,7 +243249,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 1978985, "featuredRunMedia": null, "reactionVideos": [], @@ -243626,7 +243277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 1979870, "featuredRunMedia": null, "reactionVideos": [], @@ -243652,7 +243303,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "2649", "time": 1980808, "featuredRunMedia": null, "reactionVideos": [], @@ -243678,7 +243329,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 79, + "teamId": "1548", "time": 1982871, "featuredRunMedia": null, "reactionVideos": [], @@ -243704,7 +243355,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 1984187, "featuredRunMedia": null, "reactionVideos": [], @@ -243742,7 +243393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 1986474, "featuredRunMedia": null, "reactionVideos": [], @@ -243768,7 +243419,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 42, + "teamId": "1645", "time": 1995640, "featuredRunMedia": null, "reactionVideos": [], @@ -243796,7 +243447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2000888, "featuredRunMedia": null, "reactionVideos": [], @@ -243822,7 +243473,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 2002047, "featuredRunMedia": null, "reactionVideos": [], @@ -243848,7 +243499,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 2006792, "featuredRunMedia": null, "reactionVideos": [], @@ -243886,7 +243537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 2013540, "featuredRunMedia": null, "reactionVideos": [], @@ -243912,7 +243563,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 294, + "teamId": "2655", "time": 2016250, "featuredRunMedia": null, "reactionVideos": [], @@ -243940,7 +243591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 2019195, "featuredRunMedia": null, "reactionVideos": [], @@ -243968,7 +243619,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "2141", "time": 2024583, "featuredRunMedia": null, "reactionVideos": [], @@ -243994,7 +243645,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "2948", "time": 2028013, "featuredRunMedia": null, "reactionVideos": [], @@ -244032,7 +243683,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 2032049, "featuredRunMedia": null, "reactionVideos": [], @@ -244058,7 +243709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 2034112, "featuredRunMedia": null, "reactionVideos": [], @@ -244086,7 +243737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2035484, "featuredRunMedia": null, "reactionVideos": [], @@ -244124,7 +243775,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 2038074, "featuredRunMedia": null, "reactionVideos": [], @@ -244152,7 +243803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 2041969, "featuredRunMedia": null, "reactionVideos": [], @@ -244178,7 +243829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 2045836, "featuredRunMedia": null, "reactionVideos": [], @@ -244206,7 +243857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 2050106, "featuredRunMedia": null, "reactionVideos": [], @@ -244234,7 +243885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 2050711, "featuredRunMedia": null, "reactionVideos": [], @@ -244262,7 +243913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 16, + "teamId": "3151", "time": 2056664, "featuredRunMedia": null, "reactionVideos": [], @@ -244290,7 +243941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 2059535, "featuredRunMedia": null, "reactionVideos": [], @@ -244318,7 +243969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 2064930, "featuredRunMedia": null, "reactionVideos": [], @@ -244346,7 +243997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 2070385, "featuredRunMedia": null, "reactionVideos": [], @@ -244372,7 +244023,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "1451", "time": 2076031, "featuredRunMedia": null, "reactionVideos": [], @@ -244398,7 +244049,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 134, + "teamId": "2455", "time": 2077341, "featuredRunMedia": null, "reactionVideos": [], @@ -244424,7 +244075,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2077953, "featuredRunMedia": null, "reactionVideos": [], @@ -244450,7 +244101,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 2080636, "featuredRunMedia": null, "reactionVideos": [], @@ -244476,7 +244127,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 321, + "teamId": "3054", "time": 2082912, "featuredRunMedia": null, "reactionVideos": [], @@ -244502,7 +244153,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 2085267, "featuredRunMedia": null, "reactionVideos": [], @@ -244528,7 +244179,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 2086670, "featuredRunMedia": null, "reactionVideos": [], @@ -244566,7 +244217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 2087848, "featuredRunMedia": null, "reactionVideos": [], @@ -244592,7 +244243,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 223, + "teamId": "1552", "time": 2088286, "featuredRunMedia": null, "reactionVideos": [], @@ -244618,7 +244269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 39, + "teamId": "3042", "time": 2098861, "featuredRunMedia": null, "reactionVideos": [], @@ -244646,7 +244297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 2099047, "featuredRunMedia": null, "reactionVideos": [], @@ -244672,7 +244323,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 143, + "teamId": "1251", "time": 2099955, "featuredRunMedia": null, "reactionVideos": [], @@ -244710,7 +244361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 2100139, "featuredRunMedia": null, "reactionVideos": [], @@ -244738,7 +244389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 2102945, "featuredRunMedia": null, "reactionVideos": [], @@ -244766,7 +244417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 2108351, "featuredRunMedia": null, "reactionVideos": [], @@ -244792,7 +244443,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 282, + "teamId": "1947", "time": 2111088, "featuredRunMedia": null, "reactionVideos": [], @@ -244820,7 +244471,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 2111607, "featuredRunMedia": null, "reactionVideos": [], @@ -244848,7 +244499,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 2114436, "featuredRunMedia": null, "reactionVideos": [], @@ -244874,7 +244525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 134, + "teamId": "2455", "time": 2116860, "featuredRunMedia": null, "reactionVideos": [], @@ -244900,7 +244551,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 234, + "teamId": "1254", "time": 2119505, "featuredRunMedia": null, "reactionVideos": [], @@ -244928,7 +244579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 2123293, "featuredRunMedia": null, "reactionVideos": [], @@ -244954,7 +244605,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 2124244, "featuredRunMedia": null, "reactionVideos": [], @@ -244982,7 +244633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 28, + "teamId": "1650", "time": 2124269, "featuredRunMedia": null, "reactionVideos": [], @@ -245008,7 +244659,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "2144", "time": 2125432, "featuredRunMedia": null, "reactionVideos": [], @@ -245036,7 +244687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2127168, "featuredRunMedia": null, "reactionVideos": [], @@ -245062,7 +244713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 280, + "teamId": "3052", "time": 2132274, "featuredRunMedia": null, "reactionVideos": [], @@ -245090,7 +244741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 2137520, "featuredRunMedia": null, "reactionVideos": [], @@ -245118,7 +244769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "1955", "time": 2141486, "featuredRunMedia": null, "reactionVideos": [], @@ -245144,7 +244795,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 179, + "teamId": "2643", "time": 2144943, "featuredRunMedia": null, "reactionVideos": [], @@ -245170,7 +244821,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 21, + "teamId": "1145", "time": 2145379, "featuredRunMedia": null, "reactionVideos": [], @@ -245196,7 +244847,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 85, + "teamId": "2150", "time": 2147193, "featuredRunMedia": null, "reactionVideos": [], @@ -245224,7 +244875,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 2156935, "featuredRunMedia": null, "reactionVideos": [], @@ -245250,7 +244901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "2545", "time": 2158082, "featuredRunMedia": null, "reactionVideos": [], @@ -245278,7 +244929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 2160386, "featuredRunMedia": null, "reactionVideos": [], @@ -245300,7 +244951,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "1854", "time": 2162018, "featuredRunMedia": null, "reactionVideos": [], @@ -245338,7 +244989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 2162136, "featuredRunMedia": null, "reactionVideos": [], @@ -245364,7 +245015,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "1644", "time": 2163885, "featuredRunMedia": null, "reactionVideos": [], @@ -245402,7 +245053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 2164185, "featuredRunMedia": null, "reactionVideos": [], @@ -245430,7 +245081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 2165433, "featuredRunMedia": null, "reactionVideos": [], @@ -245458,7 +245109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2166047, "featuredRunMedia": null, "reactionVideos": [], @@ -245486,7 +245137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 2168801, "featuredRunMedia": null, "reactionVideos": [], @@ -245514,7 +245165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 2176206, "featuredRunMedia": null, "reactionVideos": [], @@ -245542,7 +245193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 2, + "teamId": "2241", "time": 2176557, "featuredRunMedia": null, "reactionVideos": [], @@ -245580,7 +245231,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 2176715, "featuredRunMedia": null, "reactionVideos": [], @@ -245608,7 +245259,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 2176870, "featuredRunMedia": null, "reactionVideos": [], @@ -245634,7 +245285,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 42, + "teamId": "1645", "time": 2177462, "featuredRunMedia": null, "reactionVideos": [], @@ -245662,7 +245313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2177822, "featuredRunMedia": null, "reactionVideos": [], @@ -245690,7 +245341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 2177826, "featuredRunMedia": null, "reactionVideos": [], @@ -245716,7 +245367,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "2250", "time": 2180731, "featuredRunMedia": null, "reactionVideos": [], @@ -245742,7 +245393,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 227, + "teamId": "1854", "time": 2180787, "featuredRunMedia": null, "reactionVideos": [], @@ -245770,7 +245421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 2187340, "featuredRunMedia": null, "reactionVideos": [], @@ -245796,7 +245447,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2190192, "featuredRunMedia": null, "reactionVideos": [], @@ -245824,7 +245475,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 2198357, "featuredRunMedia": null, "reactionVideos": [], @@ -245852,7 +245503,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 2212782, "featuredRunMedia": null, "reactionVideos": [], @@ -245890,7 +245541,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "2754", "time": 2215673, "featuredRunMedia": null, "reactionVideos": [], @@ -245918,7 +245569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2217268, "featuredRunMedia": null, "reactionVideos": [], @@ -245944,7 +245595,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 2219874, "featuredRunMedia": null, "reactionVideos": [], @@ -245972,7 +245623,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2221091, "featuredRunMedia": null, "reactionVideos": [], @@ -246010,7 +245661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 2222096, "featuredRunMedia": null, "reactionVideos": [], @@ -246038,7 +245689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 16, + "teamId": "3151", "time": 2225989, "featuredRunMedia": null, "reactionVideos": [], @@ -246064,7 +245715,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 2227464, "featuredRunMedia": null, "reactionVideos": [], @@ -246097,7 +245748,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 2228255, "featuredRunMedia": null, "reactionVideos": [], @@ -246125,7 +245776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2238312, "featuredRunMedia": null, "reactionVideos": [], @@ -246163,7 +245814,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 2244163, "featuredRunMedia": null, "reactionVideos": [], @@ -246189,7 +245840,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 310, + "teamId": "1155", "time": 2249745, "featuredRunMedia": null, "reactionVideos": [], @@ -246215,7 +245866,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 2251629, "featuredRunMedia": null, "reactionVideos": [], @@ -246243,7 +245894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 2253850, "featuredRunMedia": null, "reactionVideos": [], @@ -246269,7 +245920,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 264, + "teamId": "2651", "time": 2254128, "featuredRunMedia": null, "reactionVideos": [], @@ -246307,7 +245958,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 2255066, "featuredRunMedia": null, "reactionVideos": [], @@ -246329,7 +245980,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 2262092, "featuredRunMedia": null, "reactionVideos": [], @@ -246357,7 +246008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 2265737, "featuredRunMedia": null, "reactionVideos": [], @@ -246383,7 +246034,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 2280117, "featuredRunMedia": null, "reactionVideos": [], @@ -246409,7 +246060,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "2250", "time": 2280305, "featuredRunMedia": null, "reactionVideos": [], @@ -246437,7 +246088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 2282397, "featuredRunMedia": null, "reactionVideos": [], @@ -246463,7 +246114,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 263, + "teamId": "2545", "time": 2283419, "featuredRunMedia": null, "reactionVideos": [], @@ -246489,7 +246140,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 169, + "teamId": "2255", "time": 2283745, "featuredRunMedia": null, "reactionVideos": [], @@ -246517,7 +246168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2286394, "featuredRunMedia": null, "reactionVideos": [], @@ -246543,7 +246194,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 105, + "teamId": "1942", "time": 2294769, "featuredRunMedia": null, "reactionVideos": [], @@ -246581,7 +246232,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 2295252, "featuredRunMedia": null, "reactionVideos": [], @@ -246607,7 +246258,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 2295900, "featuredRunMedia": null, "reactionVideos": [], @@ -246633,7 +246284,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 215, + "teamId": "2841", "time": 2296922, "featuredRunMedia": null, "reactionVideos": [], @@ -246659,7 +246310,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 255, + "teamId": "1644", "time": 2297773, "featuredRunMedia": null, "reactionVideos": [], @@ -246687,7 +246338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 7, + "teamId": "1156", "time": 2299220, "featuredRunMedia": null, "reactionVideos": [], @@ -246713,7 +246364,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 244, + "teamId": "2645", "time": 2300895, "featuredRunMedia": null, "reactionVideos": [], @@ -246739,7 +246390,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "1243", "time": 2301894, "featuredRunMedia": null, "reactionVideos": [], @@ -246767,7 +246418,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2303869, "featuredRunMedia": null, "reactionVideos": [], @@ -246793,7 +246444,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "1249", "time": 2314135, "featuredRunMedia": null, "reactionVideos": [], @@ -246819,7 +246470,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 221, + "teamId": "2250", "time": 2315711, "featuredRunMedia": null, "reactionVideos": [], @@ -246847,7 +246498,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2315779, "featuredRunMedia": null, "reactionVideos": [], @@ -246869,7 +246520,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 2320831, "featuredRunMedia": null, "reactionVideos": [], @@ -246895,7 +246546,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 267, + "teamId": "1245", "time": 2320935, "featuredRunMedia": null, "reactionVideos": [], @@ -246933,7 +246584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 2320948, "featuredRunMedia": null, "reactionVideos": [], @@ -246961,7 +246612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2324468, "featuredRunMedia": null, "reactionVideos": [], @@ -246987,7 +246638,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "2743", "time": 2326072, "featuredRunMedia": null, "reactionVideos": [], @@ -247015,7 +246666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2342667, "featuredRunMedia": null, "reactionVideos": [], @@ -247043,7 +246694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 2342763, "featuredRunMedia": null, "reactionVideos": [], @@ -247069,7 +246720,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "2744", "time": 2343728, "featuredRunMedia": null, "reactionVideos": [], @@ -247095,7 +246746,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 2347017, "featuredRunMedia": null, "reactionVideos": [], @@ -247121,7 +246772,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 268, + "teamId": "2650", "time": 2353619, "featuredRunMedia": null, "reactionVideos": [], @@ -247149,7 +246800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 2355069, "featuredRunMedia": null, "reactionVideos": [], @@ -247177,7 +246828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 2355457, "featuredRunMedia": null, "reactionVideos": [], @@ -247203,7 +246854,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 2356333, "featuredRunMedia": null, "reactionVideos": [], @@ -247229,7 +246880,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 15, + "teamId": "2942", "time": 2356667, "featuredRunMedia": null, "reactionVideos": [], @@ -247257,7 +246908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 2357314, "featuredRunMedia": null, "reactionVideos": [], @@ -247295,7 +246946,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 2357733, "featuredRunMedia": null, "reactionVideos": [], @@ -247323,7 +246974,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2358900, "featuredRunMedia": null, "reactionVideos": [], @@ -247361,7 +247012,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 2361089, "featuredRunMedia": null, "reactionVideos": [], @@ -247399,7 +247050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 2363021, "featuredRunMedia": null, "reactionVideos": [], @@ -247427,7 +247078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 15, + "teamId": "2942", "time": 2363838, "featuredRunMedia": null, "reactionVideos": [], @@ -247453,7 +247104,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 214, + "teamId": "1454", "time": 2368722, "featuredRunMedia": null, "reactionVideos": [], @@ -247481,7 +247132,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 2372090, "featuredRunMedia": null, "reactionVideos": [], @@ -247507,7 +247158,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 2384591, "featuredRunMedia": null, "reactionVideos": [], @@ -247533,7 +247184,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 2387856, "featuredRunMedia": null, "reactionVideos": [], @@ -247571,7 +247222,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 2388163, "featuredRunMedia": null, "reactionVideos": [], @@ -247599,7 +247250,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 2389078, "featuredRunMedia": null, "reactionVideos": [], @@ -247625,7 +247276,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 262, + "teamId": "2352", "time": 2389278, "featuredRunMedia": null, "reactionVideos": [], @@ -247653,7 +247304,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2392741, "featuredRunMedia": null, "reactionVideos": [], @@ -247679,7 +247330,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "1949", "time": 2396320, "featuredRunMedia": null, "reactionVideos": [], @@ -247705,7 +247356,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 153, + "teamId": "1749", "time": 2408254, "featuredRunMedia": null, "reactionVideos": [], @@ -247733,7 +247384,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 170, + "teamId": "2844", "time": 2414204, "featuredRunMedia": null, "reactionVideos": [], @@ -247761,7 +247412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 2417089, "featuredRunMedia": null, "reactionVideos": [], @@ -247794,7 +247445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 2419017, "featuredRunMedia": null, "reactionVideos": [], @@ -247822,7 +247473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2421796, "featuredRunMedia": null, "reactionVideos": [], @@ -247848,7 +247499,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2424824, "featuredRunMedia": null, "reactionVideos": [], @@ -247876,7 +247527,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2436667, "featuredRunMedia": null, "reactionVideos": [], @@ -247904,7 +247555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 2442966, "featuredRunMedia": null, "reactionVideos": [], @@ -247930,7 +247581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 230, + "teamId": "1949", "time": 2447249, "featuredRunMedia": null, "reactionVideos": [], @@ -247958,7 +247609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2450469, "featuredRunMedia": null, "reactionVideos": [], @@ -247984,7 +247635,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 2453318, "featuredRunMedia": null, "reactionVideos": [], @@ -248012,7 +247663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 2453864, "featuredRunMedia": null, "reactionVideos": [], @@ -248038,7 +247689,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 275, + "teamId": "2249", "time": 2461353, "featuredRunMedia": null, "reactionVideos": [], @@ -248066,7 +247717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 2464522, "featuredRunMedia": null, "reactionVideos": [], @@ -248092,7 +247743,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 274, + "teamId": "3051", "time": 2468232, "featuredRunMedia": null, "reactionVideos": [], @@ -248118,7 +247769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "3044", "time": 2473327, "featuredRunMedia": null, "reactionVideos": [], @@ -248156,7 +247807,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 2476725, "featuredRunMedia": null, "reactionVideos": [], @@ -248184,7 +247835,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 2478205, "featuredRunMedia": null, "reactionVideos": [], @@ -248210,7 +247861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2480317, "featuredRunMedia": null, "reactionVideos": [], @@ -248236,7 +247887,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 168, + "teamId": "2152", "time": 2481241, "featuredRunMedia": null, "reactionVideos": [], @@ -248262,7 +247913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 2489390, "featuredRunMedia": null, "reactionVideos": [], @@ -248290,7 +247941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "3248", "time": 2490086, "featuredRunMedia": null, "reactionVideos": [], @@ -248318,7 +247969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2492103, "featuredRunMedia": null, "reactionVideos": [], @@ -248346,7 +247997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "1943", "time": 2496375, "featuredRunMedia": null, "reactionVideos": [], @@ -248372,7 +248023,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "1243", "time": 2504283, "featuredRunMedia": null, "reactionVideos": [], @@ -248400,7 +248051,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2505292, "featuredRunMedia": null, "reactionVideos": [], @@ -248428,7 +248079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 23, + "teamId": "2953", "time": 2508848, "featuredRunMedia": null, "reactionVideos": [], @@ -248456,7 +248107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 7, + "teamId": "1156", "time": 2508981, "featuredRunMedia": null, "reactionVideos": [], @@ -248482,7 +248133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 2510714, "featuredRunMedia": null, "reactionVideos": [], @@ -248510,7 +248161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2516752, "featuredRunMedia": null, "reactionVideos": [], @@ -248538,7 +248189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2518676, "featuredRunMedia": null, "reactionVideos": [], @@ -248576,7 +248227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 2518868, "featuredRunMedia": null, "reactionVideos": [], @@ -248604,7 +248255,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2518978, "featuredRunMedia": null, "reactionVideos": [], @@ -248630,7 +248281,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 188, + "teamId": "2451", "time": 2522132, "featuredRunMedia": null, "reactionVideos": [], @@ -248668,7 +248319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 2526840, "featuredRunMedia": null, "reactionVideos": [], @@ -248694,7 +248345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 213, + "teamId": "2456", "time": 2528074, "featuredRunMedia": null, "reactionVideos": [], @@ -248720,7 +248371,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2529755, "featuredRunMedia": null, "reactionVideos": [], @@ -248746,7 +248397,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 311, + "teamId": "3055", "time": 2532946, "featuredRunMedia": null, "reactionVideos": [], @@ -248774,7 +248425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 2533238, "featuredRunMedia": null, "reactionVideos": [], @@ -248802,7 +248453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2535918, "featuredRunMedia": null, "reactionVideos": [], @@ -248830,7 +248481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 2536410, "featuredRunMedia": null, "reactionVideos": [], @@ -248858,7 +248509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 2536860, "featuredRunMedia": null, "reactionVideos": [], @@ -248884,7 +248535,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 2544026, "featuredRunMedia": null, "reactionVideos": [], @@ -248912,7 +248563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2545101, "featuredRunMedia": null, "reactionVideos": [], @@ -248945,7 +248596,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 2551883, "featuredRunMedia": null, "reactionVideos": [], @@ -248971,7 +248622,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 2552029, "featuredRunMedia": null, "reactionVideos": [], @@ -248999,7 +248650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2552760, "featuredRunMedia": null, "reactionVideos": [], @@ -249027,7 +248678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 2558402, "featuredRunMedia": null, "reactionVideos": [], @@ -249053,7 +248704,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 2560513, "featuredRunMedia": null, "reactionVideos": [], @@ -249081,7 +248732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 2561640, "featuredRunMedia": null, "reactionVideos": [], @@ -249109,7 +248760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 2568363, "featuredRunMedia": null, "reactionVideos": [], @@ -249142,7 +248793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 2575937, "featuredRunMedia": null, "reactionVideos": [], @@ -249170,7 +248821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 2580902, "featuredRunMedia": null, "reactionVideos": [], @@ -249208,7 +248859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 2584816, "featuredRunMedia": null, "reactionVideos": [], @@ -249236,7 +248887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2586766, "featuredRunMedia": null, "reactionVideos": [], @@ -249262,7 +248913,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "2948", "time": 2588972, "featuredRunMedia": null, "reactionVideos": [], @@ -249288,7 +248939,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 327, + "teamId": "1247", "time": 2590889, "featuredRunMedia": null, "reactionVideos": [], @@ -249321,7 +248972,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 2593849, "featuredRunMedia": null, "reactionVideos": [], @@ -249349,7 +249000,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 2601467, "featuredRunMedia": null, "reactionVideos": [], @@ -249375,7 +249026,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 2602126, "featuredRunMedia": null, "reactionVideos": [], @@ -249403,7 +249054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2602529, "featuredRunMedia": null, "reactionVideos": [], @@ -249429,7 +249080,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 287, + "teamId": "1451", "time": 2603095, "featuredRunMedia": null, "reactionVideos": [], @@ -249455,7 +249106,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "2055", "time": 2605895, "featuredRunMedia": null, "reactionVideos": [], @@ -249483,7 +249134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 2605968, "featuredRunMedia": null, "reactionVideos": [], @@ -249509,7 +249160,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2608932, "featuredRunMedia": null, "reactionVideos": [], @@ -249537,7 +249188,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 25, + "teamId": "2843", "time": 2610301, "featuredRunMedia": null, "reactionVideos": [], @@ -249565,7 +249216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 2610812, "featuredRunMedia": null, "reactionVideos": [], @@ -249593,7 +249244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 2616657, "featuredRunMedia": null, "reactionVideos": [], @@ -249621,7 +249272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 2617800, "featuredRunMedia": null, "reactionVideos": [], @@ -249647,7 +249298,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 2623969, "featuredRunMedia": null, "reactionVideos": [], @@ -249673,7 +249324,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 2625256, "featuredRunMedia": null, "reactionVideos": [], @@ -249699,7 +249350,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 2625451, "featuredRunMedia": null, "reactionVideos": [], @@ -249727,7 +249378,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 2630564, "featuredRunMedia": null, "reactionVideos": [], @@ -249760,7 +249411,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 2630847, "featuredRunMedia": null, "reactionVideos": [], @@ -249786,7 +249437,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 232, + "teamId": "1743", "time": 2637036, "featuredRunMedia": null, "reactionVideos": [], @@ -249814,7 +249465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 2637106, "featuredRunMedia": null, "reactionVideos": [], @@ -249842,7 +249493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 2641603, "featuredRunMedia": null, "reactionVideos": [], @@ -249870,7 +249521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 2645994, "featuredRunMedia": null, "reactionVideos": [], @@ -249898,7 +249549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 2653956, "featuredRunMedia": null, "reactionVideos": [], @@ -249924,7 +249575,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2654360, "featuredRunMedia": null, "reactionVideos": [], @@ -249952,7 +249603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 2655735, "featuredRunMedia": null, "reactionVideos": [], @@ -249980,7 +249631,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2665435, "featuredRunMedia": null, "reactionVideos": [], @@ -250008,7 +249659,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2667396, "featuredRunMedia": null, "reactionVideos": [], @@ -250036,7 +249687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 2669950, "featuredRunMedia": null, "reactionVideos": [], @@ -250064,7 +249715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 2670114, "featuredRunMedia": null, "reactionVideos": [], @@ -250090,7 +249741,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 331, + "teamId": "1356", "time": 2671120, "featuredRunMedia": null, "reactionVideos": [], @@ -250116,7 +249767,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "2749", "time": 2672981, "featuredRunMedia": null, "reactionVideos": [], @@ -250144,7 +249795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 2673497, "featuredRunMedia": null, "reactionVideos": [], @@ -250172,7 +249823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "2446", "time": 2674034, "featuredRunMedia": null, "reactionVideos": [], @@ -250210,7 +249861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "2754", "time": 2674164, "featuredRunMedia": null, "reactionVideos": [], @@ -250238,7 +249889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 2674355, "featuredRunMedia": null, "reactionVideos": [], @@ -250266,7 +249917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2676200, "featuredRunMedia": null, "reactionVideos": [], @@ -250292,7 +249943,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 2676823, "featuredRunMedia": null, "reactionVideos": [], @@ -250318,7 +249969,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 2680474, "featuredRunMedia": null, "reactionVideos": [], @@ -250346,7 +249997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 2682585, "featuredRunMedia": null, "reactionVideos": [], @@ -250374,7 +250025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2687312, "featuredRunMedia": null, "reactionVideos": [], @@ -250400,7 +250051,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "1243", "time": 2691160, "featuredRunMedia": null, "reactionVideos": [], @@ -250428,7 +250079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2691987, "featuredRunMedia": null, "reactionVideos": [], @@ -250456,7 +250107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 2693636, "featuredRunMedia": null, "reactionVideos": [], @@ -250482,7 +250133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2701106, "featuredRunMedia": null, "reactionVideos": [], @@ -250510,7 +250161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2701608, "featuredRunMedia": null, "reactionVideos": [], @@ -250538,7 +250189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2703172, "featuredRunMedia": null, "reactionVideos": [], @@ -250566,7 +250217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 2703669, "featuredRunMedia": null, "reactionVideos": [], @@ -250592,7 +250243,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "2144", "time": 2707684, "featuredRunMedia": null, "reactionVideos": [], @@ -250625,7 +250276,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 2710140, "featuredRunMedia": null, "reactionVideos": [], @@ -250653,7 +250304,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 2711360, "featuredRunMedia": null, "reactionVideos": [], @@ -250681,7 +250332,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2715035, "featuredRunMedia": null, "reactionVideos": [], @@ -250707,7 +250358,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 281, + "teamId": "2950", "time": 2716905, "featuredRunMedia": null, "reactionVideos": [], @@ -250733,7 +250384,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 2717755, "featuredRunMedia": null, "reactionVideos": [], @@ -250761,7 +250412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2718879, "featuredRunMedia": null, "reactionVideos": [], @@ -250787,7 +250438,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 2718990, "featuredRunMedia": null, "reactionVideos": [], @@ -250820,7 +250471,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 2720870, "featuredRunMedia": null, "reactionVideos": [], @@ -250848,7 +250499,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 2725242, "featuredRunMedia": null, "reactionVideos": [], @@ -250876,7 +250527,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 2726916, "featuredRunMedia": null, "reactionVideos": [], @@ -250904,7 +250555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 2736321, "featuredRunMedia": null, "reactionVideos": [], @@ -250930,7 +250581,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 156, + "teamId": "1447", "time": 2737025, "featuredRunMedia": null, "reactionVideos": [], @@ -250968,7 +250619,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "2754", "time": 2737052, "featuredRunMedia": null, "reactionVideos": [], @@ -250996,7 +250647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2738019, "featuredRunMedia": null, "reactionVideos": [], @@ -251024,7 +250675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 2739460, "featuredRunMedia": null, "reactionVideos": [], @@ -251052,7 +250703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 2740924, "featuredRunMedia": null, "reactionVideos": [], @@ -251080,7 +250731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2745323, "featuredRunMedia": null, "reactionVideos": [], @@ -251108,7 +250759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 2746985, "featuredRunMedia": null, "reactionVideos": [], @@ -251141,7 +250792,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 2751012, "featuredRunMedia": null, "reactionVideos": [], @@ -251167,7 +250818,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 2751097, "featuredRunMedia": null, "reactionVideos": [], @@ -251193,7 +250844,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 213, + "teamId": "2456", "time": 2755507, "featuredRunMedia": null, "reactionVideos": [], @@ -251221,7 +250872,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 2768377, "featuredRunMedia": null, "reactionVideos": [], @@ -251247,7 +250898,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 330, + "teamId": "3246", "time": 2774400, "featuredRunMedia": null, "reactionVideos": [], @@ -251275,7 +250926,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 2774708, "featuredRunMedia": null, "reactionVideos": [], @@ -251301,7 +250952,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 301, + "teamId": "2948", "time": 2778849, "featuredRunMedia": null, "reactionVideos": [], @@ -251339,7 +250990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 2781322, "featuredRunMedia": null, "reactionVideos": [], @@ -251367,7 +251018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "1955", "time": 2784972, "featuredRunMedia": null, "reactionVideos": [], @@ -251395,7 +251046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2786499, "featuredRunMedia": null, "reactionVideos": [], @@ -251428,7 +251079,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "3142", "time": 2788542, "featuredRunMedia": null, "reactionVideos": [], @@ -251454,7 +251105,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 131, + "teamId": "2144", "time": 2801475, "featuredRunMedia": null, "reactionVideos": [], @@ -251482,7 +251133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 2805600, "featuredRunMedia": null, "reactionVideos": [], @@ -251510,7 +251161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2808728, "featuredRunMedia": null, "reactionVideos": [], @@ -251536,7 +251187,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 2809932, "featuredRunMedia": null, "reactionVideos": [], @@ -251564,7 +251215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "3045", "time": 2809972, "featuredRunMedia": null, "reactionVideos": [], @@ -251592,7 +251243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 2, + "teamId": "2241", "time": 2815526, "featuredRunMedia": null, "reactionVideos": [], @@ -251620,7 +251271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 2821228, "featuredRunMedia": null, "reactionVideos": [], @@ -251648,7 +251299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 2825116, "featuredRunMedia": null, "reactionVideos": [], @@ -251686,7 +251337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 2825458, "featuredRunMedia": null, "reactionVideos": [], @@ -251714,7 +251365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 2826650, "featuredRunMedia": null, "reactionVideos": [], @@ -251742,7 +251393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2830368, "featuredRunMedia": null, "reactionVideos": [], @@ -251780,7 +251431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 2830637, "featuredRunMedia": null, "reactionVideos": [], @@ -251808,7 +251459,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 2831219, "featuredRunMedia": null, "reactionVideos": [], @@ -251830,7 +251481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2833842, "featuredRunMedia": null, "reactionVideos": [], @@ -251856,7 +251507,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 2843079, "featuredRunMedia": null, "reactionVideos": [], @@ -251884,7 +251535,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 233, + "teamId": "2351", "time": 2843517, "featuredRunMedia": null, "reactionVideos": [], @@ -251910,7 +251561,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 175, + "teamId": "2044", "time": 2852344, "featuredRunMedia": null, "reactionVideos": [], @@ -251938,7 +251589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 2853743, "featuredRunMedia": null, "reactionVideos": [], @@ -251966,7 +251617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 2854224, "featuredRunMedia": null, "reactionVideos": [], @@ -251994,7 +251645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2854255, "featuredRunMedia": null, "reactionVideos": [], @@ -252022,7 +251673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 2861310, "featuredRunMedia": null, "reactionVideos": [], @@ -252050,7 +251701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 2862631, "featuredRunMedia": null, "reactionVideos": [], @@ -252078,7 +251729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 2867248, "featuredRunMedia": null, "reactionVideos": [], @@ -252106,7 +251757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 2867283, "featuredRunMedia": null, "reactionVideos": [], @@ -252132,7 +251783,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 2869644, "featuredRunMedia": null, "reactionVideos": [], @@ -252158,7 +251809,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 256, + "teamId": "2852", "time": 2880444, "featuredRunMedia": null, "reactionVideos": [], @@ -252186,7 +251837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 2881577, "featuredRunMedia": null, "reactionVideos": [], @@ -252224,7 +251875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 2881724, "featuredRunMedia": null, "reactionVideos": [], @@ -252250,7 +251901,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 312, + "teamId": "1754", "time": 2884011, "featuredRunMedia": null, "reactionVideos": [], @@ -252276,7 +251927,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 94, + "teamId": "2744", "time": 2884550, "featuredRunMedia": null, "reactionVideos": [], @@ -252304,7 +251955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "2446", "time": 2891678, "featuredRunMedia": null, "reactionVideos": [], @@ -252332,7 +251983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 2894015, "featuredRunMedia": null, "reactionVideos": [], @@ -252360,7 +252011,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "1646", "time": 2898094, "featuredRunMedia": null, "reactionVideos": [], @@ -252386,7 +252037,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 185, + "teamId": "2547", "time": 2900545, "featuredRunMedia": null, "reactionVideos": [], @@ -252424,7 +252075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 2903132, "featuredRunMedia": null, "reactionVideos": [], @@ -252452,7 +252103,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 2903346, "featuredRunMedia": null, "reactionVideos": [], @@ -252480,7 +252131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 2909031, "featuredRunMedia": null, "reactionVideos": [], @@ -252506,7 +252157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 74, + "teamId": "2047", "time": 2911675, "featuredRunMedia": null, "reactionVideos": [], @@ -252534,7 +252185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2912607, "featuredRunMedia": null, "reactionVideos": [], @@ -252560,7 +252211,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "2749", "time": 2914722, "featuredRunMedia": null, "reactionVideos": [], @@ -252586,7 +252237,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 331, + "teamId": "1356", "time": 2916477, "featuredRunMedia": null, "reactionVideos": [], @@ -252612,7 +252263,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "1449", "time": 2916967, "featuredRunMedia": null, "reactionVideos": [], @@ -252638,7 +252289,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 308, + "teamId": "1648", "time": 2918390, "featuredRunMedia": null, "reactionVideos": [], @@ -252676,7 +252327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 2927552, "featuredRunMedia": null, "reactionVideos": [], @@ -252704,7 +252355,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 2927751, "featuredRunMedia": null, "reactionVideos": [], @@ -252732,7 +252383,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 2936814, "featuredRunMedia": null, "reactionVideos": [], @@ -252760,7 +252411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 2944849, "featuredRunMedia": null, "reactionVideos": [], @@ -252788,7 +252439,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 2946600, "featuredRunMedia": null, "reactionVideos": [], @@ -252816,7 +252467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 2947387, "featuredRunMedia": null, "reactionVideos": [], @@ -252844,7 +252495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "2446", "time": 2948853, "featuredRunMedia": null, "reactionVideos": [], @@ -252872,7 +252523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 2955287, "featuredRunMedia": null, "reactionVideos": [], @@ -252900,7 +252551,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 2958092, "featuredRunMedia": null, "reactionVideos": [], @@ -252938,7 +252589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 2963563, "featuredRunMedia": null, "reactionVideos": [], @@ -252966,7 +252617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 2966205, "featuredRunMedia": null, "reactionVideos": [], @@ -252999,7 +252650,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 2972769, "featuredRunMedia": null, "reactionVideos": [], @@ -253027,7 +252678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 2984920, "featuredRunMedia": null, "reactionVideos": [], @@ -253055,7 +252706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 59, + "teamId": "2446", "time": 2987158, "featuredRunMedia": null, "reactionVideos": [], @@ -253088,7 +252739,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 2988146, "featuredRunMedia": null, "reactionVideos": [], @@ -253126,7 +252777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 2988583, "featuredRunMedia": null, "reactionVideos": [], @@ -253152,7 +252803,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 2989627, "featuredRunMedia": null, "reactionVideos": [], @@ -253180,7 +252831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 2990534, "featuredRunMedia": null, "reactionVideos": [], @@ -253208,7 +252859,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 14, + "teamId": "1955", "time": 2991990, "featuredRunMedia": null, "reactionVideos": [], @@ -253241,7 +252892,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 2993726, "featuredRunMedia": null, "reactionVideos": [], @@ -253269,7 +252920,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 2998079, "featuredRunMedia": null, "reactionVideos": [], @@ -253297,7 +252948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 2998219, "featuredRunMedia": null, "reactionVideos": [], @@ -253323,7 +252974,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 43, + "teamId": "2749", "time": 2998616, "featuredRunMedia": null, "reactionVideos": [], @@ -253361,7 +253012,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 3000097, "featuredRunMedia": null, "reactionVideos": [], @@ -253389,7 +253040,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 3001297, "featuredRunMedia": null, "reactionVideos": [], @@ -253417,7 +253068,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3004076, "featuredRunMedia": null, "reactionVideos": [], @@ -253455,7 +253106,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3004115, "featuredRunMedia": null, "reactionVideos": [], @@ -253481,7 +253132,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 270, + "teamId": "2347", "time": 3008377, "featuredRunMedia": null, "reactionVideos": [], @@ -253509,7 +253160,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 3010962, "featuredRunMedia": null, "reactionVideos": [], @@ -253535,7 +253186,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 331, + "teamId": "1356", "time": 3012160, "featuredRunMedia": null, "reactionVideos": [], @@ -253563,7 +253214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 3015143, "featuredRunMedia": null, "reactionVideos": [], @@ -253591,7 +253242,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 3017963, "featuredRunMedia": null, "reactionVideos": [], @@ -253629,7 +253280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "1945", "time": 3018032, "featuredRunMedia": null, "reactionVideos": [], @@ -253667,7 +253318,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 3023934, "featuredRunMedia": null, "reactionVideos": [], @@ -253693,7 +253344,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "3156", "time": 3031428, "featuredRunMedia": null, "reactionVideos": [], @@ -253721,7 +253372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "1646", "time": 3032527, "featuredRunMedia": null, "reactionVideos": [], @@ -253749,7 +253400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 3033048, "featuredRunMedia": null, "reactionVideos": [], @@ -253782,7 +253433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 3035379, "featuredRunMedia": null, "reactionVideos": [], @@ -253810,7 +253461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 45, + "teamId": "1755", "time": 3035977, "featuredRunMedia": null, "reactionVideos": [], @@ -253848,7 +253499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 3036551, "featuredRunMedia": null, "reactionVideos": [], @@ -253876,7 +253527,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 3037549, "featuredRunMedia": null, "reactionVideos": [], @@ -253904,7 +253555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 3037916, "featuredRunMedia": null, "reactionVideos": [], @@ -253932,7 +253583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 3040017, "featuredRunMedia": null, "reactionVideos": [], @@ -253960,7 +253611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "3145", "time": 3048349, "featuredRunMedia": null, "reactionVideos": [], @@ -253998,7 +253649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 3049210, "featuredRunMedia": null, "reactionVideos": [], @@ -254036,7 +253687,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3052679, "featuredRunMedia": null, "reactionVideos": [], @@ -254064,7 +253715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 3053520, "featuredRunMedia": null, "reactionVideos": [], @@ -254092,7 +253743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3062077, "featuredRunMedia": null, "reactionVideos": [], @@ -254118,7 +253769,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "1243", "time": 3063106, "featuredRunMedia": null, "reactionVideos": [], @@ -254146,7 +253797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3069226, "featuredRunMedia": null, "reactionVideos": [], @@ -254174,7 +253825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3070586, "featuredRunMedia": null, "reactionVideos": [], @@ -254212,7 +253863,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 3071436, "featuredRunMedia": null, "reactionVideos": [], @@ -254240,7 +253891,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "2350", "time": 3073217, "featuredRunMedia": null, "reactionVideos": [], @@ -254268,7 +253919,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3074557, "featuredRunMedia": null, "reactionVideos": [], @@ -254296,7 +253947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 3075221, "featuredRunMedia": null, "reactionVideos": [], @@ -254329,7 +253980,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 3078886, "featuredRunMedia": null, "reactionVideos": [], @@ -254351,7 +254002,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 3079287, "featuredRunMedia": null, "reactionVideos": [], @@ -254379,7 +254030,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 3080283, "featuredRunMedia": null, "reactionVideos": [], @@ -254405,7 +254056,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 331, + "teamId": "1356", "time": 3082008, "featuredRunMedia": null, "reactionVideos": [], @@ -254433,7 +254084,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 3082093, "featuredRunMedia": null, "reactionVideos": [], @@ -254459,7 +254110,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 155, + "teamId": "1246", "time": 3085443, "featuredRunMedia": null, "reactionVideos": [], @@ -254492,7 +254143,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "3142", "time": 3086001, "featuredRunMedia": null, "reactionVideos": [], @@ -254520,7 +254171,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 3086515, "featuredRunMedia": null, "reactionVideos": [], @@ -254548,7 +254199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "2148", "time": 3089483, "featuredRunMedia": null, "reactionVideos": [], @@ -254576,7 +254227,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 3089720, "featuredRunMedia": null, "reactionVideos": [], @@ -254614,7 +254265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3093921, "featuredRunMedia": null, "reactionVideos": [], @@ -254642,7 +254293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 3095303, "featuredRunMedia": null, "reactionVideos": [], @@ -254670,7 +254321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 3096914, "featuredRunMedia": null, "reactionVideos": [], @@ -254698,7 +254349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3099081, "featuredRunMedia": null, "reactionVideos": [], @@ -254726,7 +254377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 3103390, "featuredRunMedia": null, "reactionVideos": [], @@ -254754,7 +254405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3107776, "featuredRunMedia": null, "reactionVideos": [], @@ -254780,7 +254431,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 260, + "teamId": "1549", "time": 3108078, "featuredRunMedia": null, "reactionVideos": [], @@ -254818,7 +254469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3108869, "featuredRunMedia": null, "reactionVideos": [], @@ -254846,7 +254497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3109441, "featuredRunMedia": null, "reactionVideos": [], @@ -254874,7 +254525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 3111506, "featuredRunMedia": null, "reactionVideos": [], @@ -254907,7 +254558,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 3111549, "featuredRunMedia": null, "reactionVideos": [], @@ -254935,7 +254586,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 55, + "teamId": "2350", "time": 3112240, "featuredRunMedia": null, "reactionVideos": [], @@ -254963,7 +254614,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 3115484, "featuredRunMedia": null, "reactionVideos": [], @@ -254991,7 +254642,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3116896, "featuredRunMedia": null, "reactionVideos": [], @@ -255019,7 +254670,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3117729, "featuredRunMedia": null, "reactionVideos": [], @@ -255057,7 +254708,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 3118195, "featuredRunMedia": null, "reactionVideos": [], @@ -255085,7 +254736,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3119681, "featuredRunMedia": null, "reactionVideos": [], @@ -255113,7 +254764,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 3125108, "featuredRunMedia": null, "reactionVideos": [], @@ -255141,7 +254792,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 3125434, "featuredRunMedia": null, "reactionVideos": [], @@ -255169,7 +254820,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 3127373, "featuredRunMedia": null, "reactionVideos": [], @@ -255197,7 +254848,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 3131364, "featuredRunMedia": null, "reactionVideos": [], @@ -255223,7 +254874,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "1449", "time": 3131509, "featuredRunMedia": null, "reactionVideos": [], @@ -255251,7 +254902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "3145", "time": 3133634, "featuredRunMedia": null, "reactionVideos": [], @@ -255279,7 +254930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 3134021, "featuredRunMedia": null, "reactionVideos": [], @@ -255307,7 +254958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 3134190, "featuredRunMedia": null, "reactionVideos": [], @@ -255333,7 +254984,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3134462, "featuredRunMedia": null, "reactionVideos": [], @@ -255361,7 +255012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 3139363, "featuredRunMedia": null, "reactionVideos": [], @@ -255387,7 +255038,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 3140201, "featuredRunMedia": null, "reactionVideos": [], @@ -255415,7 +255066,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3140364, "featuredRunMedia": null, "reactionVideos": [], @@ -255437,7 +255088,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "3142", "time": 3143585, "featuredRunMedia": null, "reactionVideos": [], @@ -255465,7 +255116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "1456", "time": 3144636, "featuredRunMedia": null, "reactionVideos": [], @@ -255493,7 +255144,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 3145099, "featuredRunMedia": null, "reactionVideos": [], @@ -255521,7 +255172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 3153916, "featuredRunMedia": null, "reactionVideos": [], @@ -255549,7 +255200,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3156043, "featuredRunMedia": null, "reactionVideos": [], @@ -255577,7 +255228,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3156972, "featuredRunMedia": null, "reactionVideos": [], @@ -255605,7 +255256,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 12, + "teamId": "2349", "time": 3157054, "featuredRunMedia": null, "reactionVideos": [], @@ -255633,7 +255284,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3157295, "featuredRunMedia": null, "reactionVideos": [], @@ -255661,7 +255312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 3161531, "featuredRunMedia": null, "reactionVideos": [], @@ -255694,7 +255345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 3163484, "featuredRunMedia": null, "reactionVideos": [], @@ -255722,7 +255373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 3163872, "featuredRunMedia": null, "reactionVideos": [], @@ -255750,7 +255401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 33, + "teamId": "2849", "time": 3165725, "featuredRunMedia": null, "reactionVideos": [], @@ -255778,7 +255429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 3168180, "featuredRunMedia": null, "reactionVideos": [], @@ -255806,7 +255457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 3170616, "featuredRunMedia": null, "reactionVideos": [], @@ -255834,7 +255485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3172569, "featuredRunMedia": null, "reactionVideos": [], @@ -255860,7 +255511,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 299, + "teamId": "1752", "time": 3173567, "featuredRunMedia": null, "reactionVideos": [], @@ -255888,7 +255539,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 3178350, "featuredRunMedia": null, "reactionVideos": [], @@ -255926,7 +255577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 3180528, "featuredRunMedia": null, "reactionVideos": [], @@ -255964,7 +255615,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3182960, "featuredRunMedia": null, "reactionVideos": [], @@ -255992,7 +255643,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 3183444, "featuredRunMedia": null, "reactionVideos": [], @@ -256020,7 +255671,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 3184928, "featuredRunMedia": null, "reactionVideos": [], @@ -256048,7 +255699,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 3186670, "featuredRunMedia": null, "reactionVideos": [], @@ -256076,7 +255727,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3188759, "featuredRunMedia": null, "reactionVideos": [], @@ -256104,7 +255755,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 3190036, "featuredRunMedia": null, "reactionVideos": [], @@ -256130,7 +255781,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 3190721, "featuredRunMedia": null, "reactionVideos": [], @@ -256163,7 +255814,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 3192101, "featuredRunMedia": null, "reactionVideos": [], @@ -256191,7 +255842,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3201634, "featuredRunMedia": null, "reactionVideos": [], @@ -256219,7 +255870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3202429, "featuredRunMedia": null, "reactionVideos": [], @@ -256245,7 +255896,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3203314, "featuredRunMedia": null, "reactionVideos": [], @@ -256271,7 +255922,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 3208875, "featuredRunMedia": null, "reactionVideos": [], @@ -256299,7 +255950,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 3209009, "featuredRunMedia": null, "reactionVideos": [], @@ -256327,7 +255978,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3209446, "featuredRunMedia": null, "reactionVideos": [], @@ -256355,7 +256006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3209684, "featuredRunMedia": null, "reactionVideos": [], @@ -256383,7 +256034,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3213114, "featuredRunMedia": null, "reactionVideos": [], @@ -256411,7 +256062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 3217161, "featuredRunMedia": null, "reactionVideos": [], @@ -256439,7 +256090,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3225687, "featuredRunMedia": null, "reactionVideos": [], @@ -256467,7 +256118,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3225941, "featuredRunMedia": null, "reactionVideos": [], @@ -256505,7 +256156,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 3226844, "featuredRunMedia": null, "reactionVideos": [], @@ -256531,7 +256182,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 328, + "teamId": "3156", "time": 3226959, "featuredRunMedia": null, "reactionVideos": [], @@ -256559,7 +256210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 3228428, "featuredRunMedia": null, "reactionVideos": [], @@ -256585,7 +256236,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 169, + "teamId": "2255", "time": 3233814, "featuredRunMedia": null, "reactionVideos": [], @@ -256613,7 +256264,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 3233911, "featuredRunMedia": null, "reactionVideos": [], @@ -256641,7 +256292,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3235208, "featuredRunMedia": null, "reactionVideos": [], @@ -256679,7 +256330,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3236687, "featuredRunMedia": null, "reactionVideos": [], @@ -256707,7 +256358,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3238136, "featuredRunMedia": null, "reactionVideos": [], @@ -256735,7 +256386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 3240151, "featuredRunMedia": null, "reactionVideos": [], @@ -256763,7 +256414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3241504, "featuredRunMedia": null, "reactionVideos": [], @@ -256791,7 +256442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 3245705, "featuredRunMedia": null, "reactionVideos": [], @@ -256824,7 +256475,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 3247509, "featuredRunMedia": null, "reactionVideos": [], @@ -256852,7 +256503,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3250467, "featuredRunMedia": null, "reactionVideos": [], @@ -256880,7 +256531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 3252481, "featuredRunMedia": null, "reactionVideos": [], @@ -256908,7 +256559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 3253639, "featuredRunMedia": null, "reactionVideos": [], @@ -256946,7 +256597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3254484, "featuredRunMedia": null, "reactionVideos": [], @@ -256974,7 +256625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 70, + "teamId": "3253", "time": 3257090, "featuredRunMedia": null, "reactionVideos": [], @@ -256996,7 +256647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 3258944, "featuredRunMedia": null, "reactionVideos": [], @@ -257029,7 +256680,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 3265400, "featuredRunMedia": null, "reactionVideos": [], @@ -257057,7 +256708,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 3271751, "featuredRunMedia": null, "reactionVideos": [], @@ -257095,7 +256746,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3281728, "featuredRunMedia": null, "reactionVideos": [], @@ -257123,7 +256774,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3282584, "featuredRunMedia": null, "reactionVideos": [], @@ -257149,7 +256800,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 3283144, "featuredRunMedia": null, "reactionVideos": [], @@ -257175,7 +256826,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3283606, "featuredRunMedia": null, "reactionVideos": [], @@ -257203,7 +256854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3284312, "featuredRunMedia": null, "reactionVideos": [], @@ -257231,7 +256882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3290214, "featuredRunMedia": null, "reactionVideos": [], @@ -257257,7 +256908,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 257, + "teamId": "1651", "time": 3290695, "featuredRunMedia": null, "reactionVideos": [], @@ -257283,7 +256934,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 3295635, "featuredRunMedia": null, "reactionVideos": [], @@ -257311,7 +256962,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3298034, "featuredRunMedia": null, "reactionVideos": [], @@ -257339,7 +256990,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 3299623, "featuredRunMedia": null, "reactionVideos": [], @@ -257367,7 +257018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3299780, "featuredRunMedia": null, "reactionVideos": [], @@ -257393,7 +257044,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3301277, "featuredRunMedia": null, "reactionVideos": [], @@ -257421,7 +257072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3308945, "featuredRunMedia": null, "reactionVideos": [], @@ -257449,7 +257100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 3312480, "featuredRunMedia": null, "reactionVideos": [], @@ -257477,7 +257128,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3314771, "featuredRunMedia": null, "reactionVideos": [], @@ -257505,7 +257156,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3315501, "featuredRunMedia": null, "reactionVideos": [], @@ -257533,7 +257184,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 3315649, "featuredRunMedia": null, "reactionVideos": [], @@ -257561,7 +257212,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3317188, "featuredRunMedia": null, "reactionVideos": [], @@ -257583,7 +257234,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 3321384, "featuredRunMedia": null, "reactionVideos": [], @@ -257611,7 +257262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 3322971, "featuredRunMedia": null, "reactionVideos": [], @@ -257637,7 +257288,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 3328991, "featuredRunMedia": null, "reactionVideos": [], @@ -257675,7 +257326,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 3329872, "featuredRunMedia": null, "reactionVideos": [], @@ -257703,7 +257354,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 3331835, "featuredRunMedia": null, "reactionVideos": [], @@ -257731,7 +257382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3333503, "featuredRunMedia": null, "reactionVideos": [], @@ -257769,7 +257420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3333786, "featuredRunMedia": null, "reactionVideos": [], @@ -257797,7 +257448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3334337, "featuredRunMedia": null, "reactionVideos": [], @@ -257830,7 +257481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 3337150, "featuredRunMedia": null, "reactionVideos": [], @@ -257858,7 +257509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3340341, "featuredRunMedia": null, "reactionVideos": [], @@ -257886,7 +257537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 3342741, "featuredRunMedia": null, "reactionVideos": [], @@ -257914,7 +257565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3348307, "featuredRunMedia": null, "reactionVideos": [], @@ -257942,7 +257593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 3348875, "featuredRunMedia": null, "reactionVideos": [], @@ -257970,7 +257621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 3349145, "featuredRunMedia": null, "reactionVideos": [], @@ -258008,7 +257659,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3352473, "featuredRunMedia": null, "reactionVideos": [], @@ -258036,7 +257687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 70, + "teamId": "3253", "time": 3354458, "featuredRunMedia": null, "reactionVideos": [], @@ -258062,7 +257713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3355950, "featuredRunMedia": null, "reactionVideos": [], @@ -258090,7 +257741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3359503, "featuredRunMedia": null, "reactionVideos": [], @@ -258118,7 +257769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3363335, "featuredRunMedia": null, "reactionVideos": [], @@ -258146,7 +257797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3366397, "featuredRunMedia": null, "reactionVideos": [], @@ -258174,7 +257825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 3367271, "featuredRunMedia": null, "reactionVideos": [], @@ -258202,7 +257853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 3369235, "featuredRunMedia": null, "reactionVideos": [], @@ -258230,7 +257881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 3369432, "featuredRunMedia": null, "reactionVideos": [], @@ -258258,7 +257909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3371043, "featuredRunMedia": null, "reactionVideos": [], @@ -258286,7 +257937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 3374006, "featuredRunMedia": null, "reactionVideos": [], @@ -258312,7 +257963,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3374742, "featuredRunMedia": null, "reactionVideos": [], @@ -258350,7 +258001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 3376969, "featuredRunMedia": null, "reactionVideos": [], @@ -258388,7 +258039,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 3377726, "featuredRunMedia": null, "reactionVideos": [], @@ -258416,7 +258067,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3378146, "featuredRunMedia": null, "reactionVideos": [], @@ -258444,7 +258095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 3378829, "featuredRunMedia": null, "reactionVideos": [], @@ -258472,7 +258123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 3383558, "featuredRunMedia": null, "reactionVideos": [], @@ -258510,7 +258161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3384119, "featuredRunMedia": null, "reactionVideos": [], @@ -258538,7 +258189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 3385457, "featuredRunMedia": null, "reactionVideos": [], @@ -258564,7 +258215,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 3387447, "featuredRunMedia": null, "reactionVideos": [], @@ -258590,7 +258241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 323, + "teamId": "1652", "time": 3389108, "featuredRunMedia": null, "reactionVideos": [], @@ -258628,7 +258279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 3389292, "featuredRunMedia": null, "reactionVideos": [], @@ -258656,7 +258307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 3394196, "featuredRunMedia": null, "reactionVideos": [], @@ -258682,7 +258333,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3395077, "featuredRunMedia": null, "reactionVideos": [], @@ -258710,7 +258361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3396711, "featuredRunMedia": null, "reactionVideos": [], @@ -258736,7 +258387,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 3397409, "featuredRunMedia": null, "reactionVideos": [], @@ -258764,7 +258415,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 3397911, "featuredRunMedia": null, "reactionVideos": [], @@ -258790,7 +258441,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3398708, "featuredRunMedia": null, "reactionVideos": [], @@ -258818,7 +258469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 70, + "teamId": "3253", "time": 3399741, "featuredRunMedia": null, "reactionVideos": [], @@ -258856,7 +258507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3399951, "featuredRunMedia": null, "reactionVideos": [], @@ -258884,7 +258535,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 3401419, "featuredRunMedia": null, "reactionVideos": [], @@ -258912,7 +258563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3403059, "featuredRunMedia": null, "reactionVideos": [], @@ -258945,7 +258596,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "2741", "time": 3406313, "featuredRunMedia": null, "reactionVideos": [], @@ -258978,7 +258629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 203, + "teamId": "3142", "time": 3409653, "featuredRunMedia": null, "reactionVideos": [], @@ -259006,7 +258657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 11, + "teamId": "1150", "time": 3410128, "featuredRunMedia": null, "reactionVideos": [], @@ -259028,7 +258679,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3411859, "featuredRunMedia": null, "reactionVideos": [], @@ -259066,7 +258717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 3412457, "featuredRunMedia": null, "reactionVideos": [], @@ -259094,7 +258745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3414214, "featuredRunMedia": null, "reactionVideos": [], @@ -259122,7 +258773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3416804, "featuredRunMedia": null, "reactionVideos": [], @@ -259150,7 +258801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 93, + "teamId": "2454", "time": 3421886, "featuredRunMedia": null, "reactionVideos": [], @@ -259178,7 +258829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 3422425, "featuredRunMedia": null, "reactionVideos": [], @@ -259206,7 +258857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 3430137, "featuredRunMedia": null, "reactionVideos": [], @@ -259234,7 +258885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3430373, "featuredRunMedia": null, "reactionVideos": [], @@ -259262,7 +258913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 3431895, "featuredRunMedia": null, "reactionVideos": [], @@ -259290,7 +258941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 3432214, "featuredRunMedia": null, "reactionVideos": [], @@ -259328,7 +258979,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 3434898, "featuredRunMedia": null, "reactionVideos": [], @@ -259356,7 +259007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3435793, "featuredRunMedia": null, "reactionVideos": [], @@ -259384,7 +259035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 3436957, "featuredRunMedia": null, "reactionVideos": [], @@ -259422,7 +259073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3440775, "featuredRunMedia": null, "reactionVideos": [], @@ -259448,7 +259099,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 3444294, "featuredRunMedia": null, "reactionVideos": [], @@ -259476,7 +259127,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3448649, "featuredRunMedia": null, "reactionVideos": [], @@ -259504,7 +259155,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 3449629, "featuredRunMedia": null, "reactionVideos": [], @@ -259532,7 +259183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 3450204, "featuredRunMedia": null, "reactionVideos": [], @@ -259558,7 +259209,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3451531, "featuredRunMedia": null, "reactionVideos": [], @@ -259586,7 +259237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3452049, "featuredRunMedia": null, "reactionVideos": [], @@ -259614,7 +259265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 70, + "teamId": "3253", "time": 3454106, "featuredRunMedia": null, "reactionVideos": [], @@ -259642,7 +259293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 88, + "teamId": "1646", "time": 3456632, "featuredRunMedia": null, "reactionVideos": [], @@ -259670,7 +259321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 3456849, "featuredRunMedia": null, "reactionVideos": [], @@ -259708,7 +259359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3457269, "featuredRunMedia": null, "reactionVideos": [], @@ -259741,7 +259392,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 3462516, "featuredRunMedia": null, "reactionVideos": [], @@ -259769,7 +259420,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3462712, "featuredRunMedia": null, "reactionVideos": [], @@ -259797,7 +259448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 3463460, "featuredRunMedia": null, "reactionVideos": [], @@ -259835,7 +259486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3463588, "featuredRunMedia": null, "reactionVideos": [], @@ -259861,7 +259512,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 3465763, "featuredRunMedia": null, "reactionVideos": [], @@ -259899,7 +259550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 3469793, "featuredRunMedia": null, "reactionVideos": [], @@ -259927,7 +259578,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 3471835, "featuredRunMedia": null, "reactionVideos": [], @@ -259949,7 +259600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 3473745, "featuredRunMedia": null, "reactionVideos": [], @@ -259977,7 +259628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3474043, "featuredRunMedia": null, "reactionVideos": [], @@ -260005,7 +259656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3475671, "featuredRunMedia": null, "reactionVideos": [], @@ -260033,7 +259684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 3479735, "featuredRunMedia": null, "reactionVideos": [], @@ -260071,7 +259722,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 3481214, "featuredRunMedia": null, "reactionVideos": [], @@ -260097,7 +259748,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "2055", "time": 3482987, "featuredRunMedia": null, "reactionVideos": [], @@ -260125,7 +259776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 3489243, "featuredRunMedia": null, "reactionVideos": [], @@ -260153,7 +259804,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3491434, "featuredRunMedia": null, "reactionVideos": [], @@ -260181,7 +259832,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 3492174, "featuredRunMedia": null, "reactionVideos": [], @@ -260209,7 +259860,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 3493499, "featuredRunMedia": null, "reactionVideos": [], @@ -260247,7 +259898,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3494696, "featuredRunMedia": null, "reactionVideos": [], @@ -260285,7 +259936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 3496649, "featuredRunMedia": null, "reactionVideos": [], @@ -260313,7 +259964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 3501827, "featuredRunMedia": null, "reactionVideos": [], @@ -260341,7 +259992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3507846, "featuredRunMedia": null, "reactionVideos": [], @@ -260367,7 +260018,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3509876, "featuredRunMedia": null, "reactionVideos": [], @@ -260395,7 +260046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 3512314, "featuredRunMedia": null, "reactionVideos": [], @@ -260423,7 +260074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3514719, "featuredRunMedia": null, "reactionVideos": [], @@ -260451,7 +260102,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 233, + "teamId": "2351", "time": 3514989, "featuredRunMedia": null, "reactionVideos": [], @@ -260484,7 +260135,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "2741", "time": 3520039, "featuredRunMedia": null, "reactionVideos": [], @@ -260512,7 +260163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3522524, "featuredRunMedia": null, "reactionVideos": [], @@ -260540,7 +260191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "3049", "time": 3526101, "featuredRunMedia": null, "reactionVideos": [], @@ -260578,7 +260229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3527899, "featuredRunMedia": null, "reactionVideos": [], @@ -260604,7 +260255,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3530254, "featuredRunMedia": null, "reactionVideos": [], @@ -260642,7 +260293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 3537051, "featuredRunMedia": null, "reactionVideos": [], @@ -260670,7 +260321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 3537951, "featuredRunMedia": null, "reactionVideos": [], @@ -260698,7 +260349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "2656", "time": 3541078, "featuredRunMedia": null, "reactionVideos": [], @@ -260726,7 +260377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 3541198, "featuredRunMedia": null, "reactionVideos": [], @@ -260754,7 +260405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3541693, "featuredRunMedia": null, "reactionVideos": [], @@ -260782,7 +260433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 3545780, "featuredRunMedia": null, "reactionVideos": [], @@ -260820,7 +260471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 3547437, "featuredRunMedia": null, "reactionVideos": [], @@ -260858,7 +260509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3553211, "featuredRunMedia": null, "reactionVideos": [], @@ -260886,7 +260537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 3555810, "featuredRunMedia": null, "reactionVideos": [], @@ -260914,7 +260565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 3556721, "featuredRunMedia": null, "reactionVideos": [], @@ -260942,7 +260593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 3556941, "featuredRunMedia": null, "reactionVideos": [], @@ -260980,7 +260631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 3561676, "featuredRunMedia": null, "reactionVideos": [], @@ -261008,7 +260659,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 327, + "teamId": "1247", "time": 3562325, "featuredRunMedia": null, "reactionVideos": [], @@ -261034,7 +260685,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 76, + "teamId": "2549", "time": 3565106, "featuredRunMedia": null, "reactionVideos": [], @@ -261062,7 +260713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 3565374, "featuredRunMedia": null, "reactionVideos": [], @@ -261090,7 +260741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 3565767, "featuredRunMedia": null, "reactionVideos": [], @@ -261116,7 +260767,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3575076, "featuredRunMedia": null, "reactionVideos": [], @@ -261138,7 +260789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 3575148, "featuredRunMedia": null, "reactionVideos": [], @@ -261164,7 +260815,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "2055", "time": 3575268, "featuredRunMedia": null, "reactionVideos": [], @@ -261202,7 +260853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 3579307, "featuredRunMedia": null, "reactionVideos": [], @@ -261228,7 +260879,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3580292, "featuredRunMedia": null, "reactionVideos": [], @@ -261256,7 +260907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3581227, "featuredRunMedia": null, "reactionVideos": [], @@ -261284,7 +260935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3583986, "featuredRunMedia": null, "reactionVideos": [], @@ -261322,7 +260973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3585576, "featuredRunMedia": null, "reactionVideos": [], @@ -261350,7 +261001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 3586927, "featuredRunMedia": null, "reactionVideos": [], @@ -261378,7 +261029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 3588824, "featuredRunMedia": null, "reactionVideos": [], @@ -261406,7 +261057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 3590788, "featuredRunMedia": null, "reactionVideos": [], @@ -261444,7 +261095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3592703, "featuredRunMedia": null, "reactionVideos": [], @@ -261470,7 +261121,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3599123, "featuredRunMedia": null, "reactionVideos": [], @@ -261498,7 +261149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 3602092, "featuredRunMedia": null, "reactionVideos": [], @@ -261536,7 +261187,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "2754", "time": 3604527, "featuredRunMedia": null, "reactionVideos": [], @@ -261564,7 +261215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 3605318, "featuredRunMedia": null, "reactionVideos": [], @@ -261592,7 +261243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 3607878, "featuredRunMedia": null, "reactionVideos": [], @@ -261630,7 +261281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 3609900, "featuredRunMedia": null, "reactionVideos": [], @@ -261668,7 +261319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3612140, "featuredRunMedia": null, "reactionVideos": [], @@ -261694,7 +261345,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 323, + "teamId": "1652", "time": 3612364, "featuredRunMedia": null, "reactionVideos": [], @@ -261720,7 +261371,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3615588, "featuredRunMedia": null, "reactionVideos": [], @@ -261748,7 +261399,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 3617533, "featuredRunMedia": null, "reactionVideos": [], @@ -261774,7 +261425,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 178, + "teamId": "2055", "time": 3618700, "featuredRunMedia": null, "reactionVideos": [], @@ -261812,7 +261463,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 3621776, "featuredRunMedia": null, "reactionVideos": [], @@ -261840,7 +261491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "1942", "time": 3626213, "featuredRunMedia": null, "reactionVideos": [], @@ -261878,7 +261529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 3631096, "featuredRunMedia": null, "reactionVideos": [], @@ -261906,7 +261557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3631739, "featuredRunMedia": null, "reactionVideos": [], @@ -261934,7 +261585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 3632244, "featuredRunMedia": null, "reactionVideos": [], @@ -261962,7 +261613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 3632606, "featuredRunMedia": null, "reactionVideos": [], @@ -261990,7 +261641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 3636476, "featuredRunMedia": null, "reactionVideos": [], @@ -262018,7 +261669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3637801, "featuredRunMedia": null, "reactionVideos": [], @@ -262040,7 +261691,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3639849, "featuredRunMedia": null, "reactionVideos": [], @@ -262068,7 +261719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 3640629, "featuredRunMedia": null, "reactionVideos": [], @@ -262096,7 +261747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 3645449, "featuredRunMedia": null, "reactionVideos": [], @@ -262124,7 +261775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 3645527, "featuredRunMedia": null, "reactionVideos": [], @@ -262152,7 +261803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3648888, "featuredRunMedia": null, "reactionVideos": [], @@ -262180,7 +261831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3649029, "featuredRunMedia": null, "reactionVideos": [], @@ -262206,7 +261857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 3652650, "featuredRunMedia": null, "reactionVideos": [], @@ -262234,7 +261885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3655955, "featuredRunMedia": null, "reactionVideos": [], @@ -262262,7 +261913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 3657417, "featuredRunMedia": null, "reactionVideos": [], @@ -262290,7 +261941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 3664626, "featuredRunMedia": null, "reactionVideos": [], @@ -262312,7 +261963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3668248, "featuredRunMedia": null, "reactionVideos": [], @@ -262340,7 +261991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3668496, "featuredRunMedia": null, "reactionVideos": [], @@ -262368,7 +262019,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 3672906, "featuredRunMedia": null, "reactionVideos": [], @@ -262396,7 +262047,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3674845, "featuredRunMedia": null, "reactionVideos": [], @@ -262424,7 +262075,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 3675647, "featuredRunMedia": null, "reactionVideos": [], @@ -262452,7 +262103,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 3675789, "featuredRunMedia": null, "reactionVideos": [], @@ -262480,7 +262131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3677882, "featuredRunMedia": null, "reactionVideos": [], @@ -262508,7 +262159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3679356, "featuredRunMedia": null, "reactionVideos": [], @@ -262534,7 +262185,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 258, + "teamId": "1850", "time": 3679388, "featuredRunMedia": null, "reactionVideos": [], @@ -262560,7 +262211,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 3681508, "featuredRunMedia": null, "reactionVideos": [], @@ -262593,7 +262244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 3686592, "featuredRunMedia": null, "reactionVideos": [], @@ -262619,7 +262270,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 279, + "teamId": "1449", "time": 3687554, "featuredRunMedia": null, "reactionVideos": [], @@ -262657,7 +262308,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 3688239, "featuredRunMedia": null, "reactionVideos": [], @@ -262683,7 +262334,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 3692088, "featuredRunMedia": null, "reactionVideos": [], @@ -262711,7 +262362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3693107, "featuredRunMedia": null, "reactionVideos": [], @@ -262739,7 +262390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3694559, "featuredRunMedia": null, "reactionVideos": [], @@ -262765,7 +262416,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 42, + "teamId": "1645", "time": 3694724, "featuredRunMedia": null, "reactionVideos": [], @@ -262793,7 +262444,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 3698260, "featuredRunMedia": null, "reactionVideos": [], @@ -262821,7 +262472,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 42, + "teamId": "1645", "time": 3700216, "featuredRunMedia": null, "reactionVideos": [], @@ -262859,7 +262510,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 3700875, "featuredRunMedia": null, "reactionVideos": [], @@ -262897,7 +262548,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3704498, "featuredRunMedia": null, "reactionVideos": [], @@ -262925,7 +262576,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 3711050, "featuredRunMedia": null, "reactionVideos": [], @@ -262951,7 +262602,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 55, + "teamId": "2350", "time": 3718274, "featuredRunMedia": null, "reactionVideos": [], @@ -262979,7 +262630,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3718378, "featuredRunMedia": null, "reactionVideos": [], @@ -263017,7 +262668,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 3718514, "featuredRunMedia": null, "reactionVideos": [], @@ -263045,7 +262696,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 3718605, "featuredRunMedia": null, "reactionVideos": [], @@ -263073,7 +262724,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 3720028, "featuredRunMedia": null, "reactionVideos": [], @@ -263111,7 +262762,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 3726191, "featuredRunMedia": null, "reactionVideos": [], @@ -263149,7 +262800,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3727570, "featuredRunMedia": null, "reactionVideos": [], @@ -263177,7 +262828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 3727850, "featuredRunMedia": null, "reactionVideos": [], @@ -263215,7 +262866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3734455, "featuredRunMedia": null, "reactionVideos": [], @@ -263243,7 +262894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3737770, "featuredRunMedia": null, "reactionVideos": [], @@ -263269,7 +262920,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 345, + "teamId": "2854", "time": 3738439, "featuredRunMedia": null, "reactionVideos": [], @@ -263297,7 +262948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3740297, "featuredRunMedia": null, "reactionVideos": [], @@ -263325,7 +262976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 7, + "teamId": "1156", "time": 3744892, "featuredRunMedia": null, "reactionVideos": [], @@ -263351,7 +263002,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 244, + "teamId": "2645", "time": 3751677, "featuredRunMedia": null, "reactionVideos": [], @@ -263379,7 +263030,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3754888, "featuredRunMedia": null, "reactionVideos": [], @@ -263407,7 +263058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3757109, "featuredRunMedia": null, "reactionVideos": [], @@ -263440,7 +263091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 3765158, "featuredRunMedia": null, "reactionVideos": [], @@ -263478,7 +263129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 3768074, "featuredRunMedia": null, "reactionVideos": [], @@ -263506,7 +263157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 3769298, "featuredRunMedia": null, "reactionVideos": [], @@ -263539,7 +263190,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 3775953, "featuredRunMedia": null, "reactionVideos": [], @@ -263567,7 +263218,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 3782089, "featuredRunMedia": null, "reactionVideos": [], @@ -263595,7 +263246,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 7, + "teamId": "1156", "time": 3782484, "featuredRunMedia": null, "reactionVideos": [], @@ -263623,7 +263274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3783225, "featuredRunMedia": null, "reactionVideos": [], @@ -263651,7 +263302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 3787301, "featuredRunMedia": null, "reactionVideos": [], @@ -263679,7 +263330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 3798097, "featuredRunMedia": null, "reactionVideos": [], @@ -263705,7 +263356,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3800079, "featuredRunMedia": null, "reactionVideos": [], @@ -263731,7 +263382,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3804751, "featuredRunMedia": null, "reactionVideos": [], @@ -263757,7 +263408,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 87, + "teamId": "2551", "time": 3806609, "featuredRunMedia": null, "reactionVideos": [], @@ -263795,7 +263446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 3806683, "featuredRunMedia": null, "reactionVideos": [], @@ -263828,7 +263479,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 3808721, "featuredRunMedia": null, "reactionVideos": [], @@ -263856,7 +263507,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3811356, "featuredRunMedia": null, "reactionVideos": [], @@ -263894,7 +263545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 3811585, "featuredRunMedia": null, "reactionVideos": [], @@ -263922,7 +263573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "2656", "time": 3814736, "featuredRunMedia": null, "reactionVideos": [], @@ -263960,7 +263611,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 3814896, "featuredRunMedia": null, "reactionVideos": [], @@ -263988,7 +263639,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 3815691, "featuredRunMedia": null, "reactionVideos": [], @@ -264016,7 +263667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 3816738, "featuredRunMedia": null, "reactionVideos": [], @@ -264042,7 +263693,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 3818011, "featuredRunMedia": null, "reactionVideos": [], @@ -264070,7 +263721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 3821130, "featuredRunMedia": null, "reactionVideos": [], @@ -264108,7 +263759,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 3822365, "featuredRunMedia": null, "reactionVideos": [], @@ -264136,7 +263787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 3822822, "featuredRunMedia": null, "reactionVideos": [], @@ -264164,7 +263815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 77, + "teamId": "1346", "time": 3831167, "featuredRunMedia": null, "reactionVideos": [], @@ -264192,7 +263843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3831357, "featuredRunMedia": null, "reactionVideos": [], @@ -264220,7 +263871,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 61, + "teamId": "2045", "time": 3832930, "featuredRunMedia": null, "reactionVideos": [], @@ -264248,7 +263899,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 3840882, "featuredRunMedia": null, "reactionVideos": [], @@ -264286,7 +263937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 3847450, "featuredRunMedia": null, "reactionVideos": [], @@ -264314,7 +263965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 3848574, "featuredRunMedia": null, "reactionVideos": [], @@ -264342,7 +263993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3850797, "featuredRunMedia": null, "reactionVideos": [], @@ -264370,7 +264021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3852130, "featuredRunMedia": null, "reactionVideos": [], @@ -264398,7 +264049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 3852676, "featuredRunMedia": null, "reactionVideos": [], @@ -264426,7 +264077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3853419, "featuredRunMedia": null, "reactionVideos": [], @@ -264454,7 +264105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 3859062, "featuredRunMedia": null, "reactionVideos": [], @@ -264480,7 +264131,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 3861954, "featuredRunMedia": null, "reactionVideos": [], @@ -264508,7 +264159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3862197, "featuredRunMedia": null, "reactionVideos": [], @@ -264536,7 +264187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 3866528, "featuredRunMedia": null, "reactionVideos": [], @@ -264564,7 +264215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3868758, "featuredRunMedia": null, "reactionVideos": [], @@ -264590,7 +264241,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 3869182, "featuredRunMedia": null, "reactionVideos": [], @@ -264618,7 +264269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 3872240, "featuredRunMedia": null, "reactionVideos": [], @@ -264656,7 +264307,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 3875827, "featuredRunMedia": null, "reactionVideos": [], @@ -264684,7 +264335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 3876444, "featuredRunMedia": null, "reactionVideos": [], @@ -264712,7 +264363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 3876666, "featuredRunMedia": null, "reactionVideos": [], @@ -264738,7 +264389,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3876684, "featuredRunMedia": null, "reactionVideos": [], @@ -264766,7 +264417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 3876806, "featuredRunMedia": null, "reactionVideos": [], @@ -264804,7 +264455,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3878414, "featuredRunMedia": null, "reactionVideos": [], @@ -264832,7 +264483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 3881097, "featuredRunMedia": null, "reactionVideos": [], @@ -264870,7 +264521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 278, + "teamId": "2941", "time": 3881360, "featuredRunMedia": null, "reactionVideos": [], @@ -264898,7 +264549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 3884511, "featuredRunMedia": null, "reactionVideos": [], @@ -264931,7 +264582,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 3888211, "featuredRunMedia": null, "reactionVideos": [], @@ -264959,7 +264610,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 3888432, "featuredRunMedia": null, "reactionVideos": [], @@ -264987,7 +264638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 170, + "teamId": "2844", "time": 3889530, "featuredRunMedia": null, "reactionVideos": [], @@ -265025,7 +264676,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 3889537, "featuredRunMedia": null, "reactionVideos": [], @@ -265063,7 +264714,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 104, + "teamId": "2754", "time": 3889853, "featuredRunMedia": null, "reactionVideos": [], @@ -265089,7 +264740,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 3890076, "featuredRunMedia": null, "reactionVideos": [], @@ -265117,7 +264768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3890211, "featuredRunMedia": null, "reactionVideos": [], @@ -265143,7 +264794,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 3892051, "featuredRunMedia": null, "reactionVideos": [], @@ -265181,7 +264832,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 3895445, "featuredRunMedia": null, "reactionVideos": [], @@ -265203,7 +264854,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 3895675, "featuredRunMedia": null, "reactionVideos": [], @@ -265231,7 +264882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 3895908, "featuredRunMedia": null, "reactionVideos": [], @@ -265259,7 +264910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 3904808, "featuredRunMedia": null, "reactionVideos": [], @@ -265297,7 +264948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 3905878, "featuredRunMedia": null, "reactionVideos": [], @@ -265330,7 +264981,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 142, + "teamId": "1144", "time": 3908048, "featuredRunMedia": null, "reactionVideos": [], @@ -265358,7 +265009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 3908489, "featuredRunMedia": null, "reactionVideos": [], @@ -265386,7 +265037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3909930, "featuredRunMedia": null, "reactionVideos": [], @@ -265424,7 +265075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3911190, "featuredRunMedia": null, "reactionVideos": [], @@ -265452,7 +265103,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 3914130, "featuredRunMedia": null, "reactionVideos": [], @@ -265480,7 +265131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 3916095, "featuredRunMedia": null, "reactionVideos": [], @@ -265506,7 +265157,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 3918863, "featuredRunMedia": null, "reactionVideos": [], @@ -265534,7 +265185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 3919807, "featuredRunMedia": null, "reactionVideos": [], @@ -265560,7 +265211,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 3923271, "featuredRunMedia": null, "reactionVideos": [], @@ -265588,7 +265239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3927313, "featuredRunMedia": null, "reactionVideos": [], @@ -265616,7 +265267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 3928651, "featuredRunMedia": null, "reactionVideos": [], @@ -265644,7 +265295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 3934982, "featuredRunMedia": null, "reactionVideos": [], @@ -265677,7 +265328,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "3056", "time": 3937832, "featuredRunMedia": null, "reactionVideos": [], @@ -265715,7 +265366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3938123, "featuredRunMedia": null, "reactionVideos": [], @@ -265743,7 +265394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 3942185, "featuredRunMedia": null, "reactionVideos": [], @@ -265769,7 +265420,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 3942261, "featuredRunMedia": null, "reactionVideos": [], @@ -265797,7 +265448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3946181, "featuredRunMedia": null, "reactionVideos": [], @@ -265825,7 +265476,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 3948696, "featuredRunMedia": null, "reactionVideos": [], @@ -265851,7 +265502,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 3949211, "featuredRunMedia": null, "reactionVideos": [], @@ -265879,7 +265530,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 3954501, "featuredRunMedia": null, "reactionVideos": [], @@ -265917,7 +265568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 3955209, "featuredRunMedia": null, "reactionVideos": [], @@ -265955,7 +265606,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 3957602, "featuredRunMedia": null, "reactionVideos": [], @@ -265981,7 +265632,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 3958258, "featuredRunMedia": null, "reactionVideos": [], @@ -266009,7 +265660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 3962069, "featuredRunMedia": null, "reactionVideos": [], @@ -266037,7 +265688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 3968891, "featuredRunMedia": null, "reactionVideos": [], @@ -266075,7 +265726,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 3968944, "featuredRunMedia": null, "reactionVideos": [], @@ -266113,7 +265764,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 3973052, "featuredRunMedia": null, "reactionVideos": [], @@ -266146,7 +265797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "3056", "time": 3973478, "featuredRunMedia": null, "reactionVideos": [], @@ -266174,7 +265825,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "1942", "time": 3973904, "featuredRunMedia": null, "reactionVideos": [], @@ -266202,7 +265853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 3980667, "featuredRunMedia": null, "reactionVideos": [], @@ -266230,7 +265881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "3145", "time": 3987258, "featuredRunMedia": null, "reactionVideos": [], @@ -266258,7 +265909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 3987382, "featuredRunMedia": null, "reactionVideos": [], @@ -266286,7 +265937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 3987550, "featuredRunMedia": null, "reactionVideos": [], @@ -266324,7 +265975,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 3990787, "featuredRunMedia": null, "reactionVideos": [], @@ -266352,7 +266003,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 3993466, "featuredRunMedia": null, "reactionVideos": [], @@ -266380,7 +266031,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 3995101, "featuredRunMedia": null, "reactionVideos": [], @@ -266408,7 +266059,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 3997351, "featuredRunMedia": null, "reactionVideos": [], @@ -266436,7 +266087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 3998148, "featuredRunMedia": null, "reactionVideos": [], @@ -266462,7 +266113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 109, + "teamId": "2649", "time": 4001286, "featuredRunMedia": null, "reactionVideos": [], @@ -266500,7 +266151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 4004871, "featuredRunMedia": null, "reactionVideos": [], @@ -266528,7 +266179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4004977, "featuredRunMedia": null, "reactionVideos": [], @@ -266566,7 +266217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 4007041, "featuredRunMedia": null, "reactionVideos": [], @@ -266594,7 +266245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4007056, "featuredRunMedia": null, "reactionVideos": [], @@ -266632,7 +266283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 4008627, "featuredRunMedia": null, "reactionVideos": [], @@ -266660,7 +266311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 4011232, "featuredRunMedia": null, "reactionVideos": [], @@ -266688,7 +266339,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 4012209, "featuredRunMedia": null, "reactionVideos": [], @@ -266726,7 +266377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 4014108, "featuredRunMedia": null, "reactionVideos": [], @@ -266754,7 +266405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 300, + "teamId": "1745", "time": 4015161, "featuredRunMedia": null, "reactionVideos": [], @@ -266776,7 +266427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 4018571, "featuredRunMedia": null, "reactionVideos": [], @@ -266804,7 +266455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 4019054, "featuredRunMedia": null, "reactionVideos": [], @@ -266842,7 +266493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 4023517, "featuredRunMedia": null, "reactionVideos": [], @@ -266870,7 +266521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4029332, "featuredRunMedia": null, "reactionVideos": [], @@ -266898,7 +266549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4030646, "featuredRunMedia": null, "reactionVideos": [], @@ -266926,7 +266577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 4031563, "featuredRunMedia": null, "reactionVideos": [], @@ -266954,7 +266605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 4033179, "featuredRunMedia": null, "reactionVideos": [], @@ -266982,7 +266633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 4034984, "featuredRunMedia": null, "reactionVideos": [], @@ -267004,7 +266655,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 4036513, "featuredRunMedia": null, "reactionVideos": [], @@ -267032,7 +266683,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 4037605, "featuredRunMedia": null, "reactionVideos": [], @@ -267058,7 +266709,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 4042192, "featuredRunMedia": null, "reactionVideos": [], @@ -267086,7 +266737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4043748, "featuredRunMedia": null, "reactionVideos": [], @@ -267112,7 +266763,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 309, + "teamId": "1941", "time": 4045595, "featuredRunMedia": null, "reactionVideos": [], @@ -267140,7 +266791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4049101, "featuredRunMedia": null, "reactionVideos": [], @@ -267178,7 +266829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 4050910, "featuredRunMedia": null, "reactionVideos": [], @@ -267206,7 +266857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 4056236, "featuredRunMedia": null, "reactionVideos": [], @@ -267234,7 +266885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 4056684, "featuredRunMedia": null, "reactionVideos": [], @@ -267262,7 +266913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 4057596, "featuredRunMedia": null, "reactionVideos": [], @@ -267300,7 +266951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4057770, "featuredRunMedia": null, "reactionVideos": [], @@ -267328,7 +266979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 4058866, "featuredRunMedia": null, "reactionVideos": [], @@ -267356,7 +267007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 4059191, "featuredRunMedia": null, "reactionVideos": [], @@ -267384,7 +267035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 4061429, "featuredRunMedia": null, "reactionVideos": [], @@ -267422,7 +267073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 4062395, "featuredRunMedia": null, "reactionVideos": [], @@ -267450,7 +267101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4067383, "featuredRunMedia": null, "reactionVideos": [], @@ -267472,7 +267123,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4074821, "featuredRunMedia": null, "reactionVideos": [], @@ -267510,7 +267161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 4076535, "featuredRunMedia": null, "reactionVideos": [], @@ -267538,7 +267189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 4080291, "featuredRunMedia": null, "reactionVideos": [], @@ -267566,7 +267217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 4084832, "featuredRunMedia": null, "reactionVideos": [], @@ -267604,7 +267255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 4091283, "featuredRunMedia": null, "reactionVideos": [], @@ -267637,7 +267288,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4091717, "featuredRunMedia": null, "reactionVideos": [], @@ -267665,7 +267316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 4092644, "featuredRunMedia": null, "reactionVideos": [], @@ -267693,7 +267344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 4095632, "featuredRunMedia": null, "reactionVideos": [], @@ -267721,7 +267372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 4097602, "featuredRunMedia": null, "reactionVideos": [], @@ -267749,7 +267400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4098997, "featuredRunMedia": null, "reactionVideos": [], @@ -267777,7 +267428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 4101729, "featuredRunMedia": null, "reactionVideos": [], @@ -267805,7 +267456,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 4102493, "featuredRunMedia": null, "reactionVideos": [], @@ -267831,7 +267482,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4107569, "featuredRunMedia": null, "reactionVideos": [], @@ -267869,7 +267520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 4112516, "featuredRunMedia": null, "reactionVideos": [], @@ -267897,7 +267548,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 4112601, "featuredRunMedia": null, "reactionVideos": [], @@ -267919,7 +267570,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 4113251, "featuredRunMedia": null, "reactionVideos": [], @@ -267957,7 +267608,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 4114272, "featuredRunMedia": null, "reactionVideos": [], @@ -267995,7 +267646,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 4120504, "featuredRunMedia": null, "reactionVideos": [], @@ -268033,7 +267684,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 4120538, "featuredRunMedia": null, "reactionVideos": [], @@ -268071,7 +267722,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 188, + "teamId": "2451", "time": 4121826, "featuredRunMedia": null, "reactionVideos": [], @@ -268109,7 +267760,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 4121957, "featuredRunMedia": null, "reactionVideos": [], @@ -268137,7 +267788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 4127331, "featuredRunMedia": null, "reactionVideos": [], @@ -268175,7 +267826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 4129631, "featuredRunMedia": null, "reactionVideos": [], @@ -268203,7 +267854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 4129806, "featuredRunMedia": null, "reactionVideos": [], @@ -268231,7 +267882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 4132895, "featuredRunMedia": null, "reactionVideos": [], @@ -268259,7 +267910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4133902, "featuredRunMedia": null, "reactionVideos": [], @@ -268287,7 +267938,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 4138928, "featuredRunMedia": null, "reactionVideos": [], @@ -268315,7 +267966,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 4139004, "featuredRunMedia": null, "reactionVideos": [], @@ -268343,7 +267994,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 4142493, "featuredRunMedia": null, "reactionVideos": [], @@ -268371,7 +268022,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4144961, "featuredRunMedia": null, "reactionVideos": [], @@ -268397,7 +268048,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 4145482, "featuredRunMedia": null, "reactionVideos": [], @@ -268423,7 +268074,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 98, + "teamId": "2251", "time": 4146745, "featuredRunMedia": null, "reactionVideos": [], @@ -268461,7 +268112,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4148101, "featuredRunMedia": null, "reactionVideos": [], @@ -268494,7 +268145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 4150401, "featuredRunMedia": null, "reactionVideos": [], @@ -268522,7 +268173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 4152124, "featuredRunMedia": null, "reactionVideos": [], @@ -268550,7 +268201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4152993, "featuredRunMedia": null, "reactionVideos": [], @@ -268578,7 +268229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 4158029, "featuredRunMedia": null, "reactionVideos": [], @@ -268616,7 +268267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 4162088, "featuredRunMedia": null, "reactionVideos": [], @@ -268644,7 +268295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4166645, "featuredRunMedia": null, "reactionVideos": [], @@ -268672,7 +268323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4166825, "featuredRunMedia": null, "reactionVideos": [], @@ -268710,7 +268361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4174243, "featuredRunMedia": null, "reactionVideos": [], @@ -268738,7 +268389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 4178969, "featuredRunMedia": null, "reactionVideos": [], @@ -268766,7 +268417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4179288, "featuredRunMedia": null, "reactionVideos": [], @@ -268794,7 +268445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 4181719, "featuredRunMedia": null, "reactionVideos": [], @@ -268822,7 +268473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 4182914, "featuredRunMedia": null, "reactionVideos": [], @@ -268850,7 +268501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 4183983, "featuredRunMedia": null, "reactionVideos": [], @@ -268878,7 +268529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4184894, "featuredRunMedia": null, "reactionVideos": [], @@ -268904,7 +268555,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 4190404, "featuredRunMedia": null, "reactionVideos": [], @@ -268932,7 +268583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 4190672, "featuredRunMedia": null, "reactionVideos": [], @@ -268958,7 +268609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 4190925, "featuredRunMedia": null, "reactionVideos": [], @@ -268996,7 +268647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4193807, "featuredRunMedia": null, "reactionVideos": [], @@ -269024,7 +268675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 4193860, "featuredRunMedia": null, "reactionVideos": [], @@ -269052,7 +268703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 4195347, "featuredRunMedia": null, "reactionVideos": [], @@ -269080,7 +268731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 4201761, "featuredRunMedia": null, "reactionVideos": [], @@ -269113,7 +268764,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4205381, "featuredRunMedia": null, "reactionVideos": [], @@ -269141,7 +268792,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4208454, "featuredRunMedia": null, "reactionVideos": [], @@ -269169,7 +268820,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 4213375, "featuredRunMedia": null, "reactionVideos": [], @@ -269202,7 +268853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 4216645, "featuredRunMedia": null, "reactionVideos": [], @@ -269230,7 +268881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4217972, "featuredRunMedia": null, "reactionVideos": [], @@ -269258,7 +268909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 4221444, "featuredRunMedia": null, "reactionVideos": [], @@ -269286,7 +268937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 35, + "teamId": "1554", "time": 4222584, "featuredRunMedia": null, "reactionVideos": [], @@ -269314,7 +268965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4223323, "featuredRunMedia": null, "reactionVideos": [], @@ -269342,7 +268993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4223339, "featuredRunMedia": null, "reactionVideos": [], @@ -269368,7 +269019,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4223921, "featuredRunMedia": null, "reactionVideos": [], @@ -269396,7 +269047,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4225115, "featuredRunMedia": null, "reactionVideos": [], @@ -269424,7 +269075,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 4225592, "featuredRunMedia": null, "reactionVideos": [], @@ -269462,7 +269113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4226510, "featuredRunMedia": null, "reactionVideos": [], @@ -269488,7 +269139,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 4227398, "featuredRunMedia": null, "reactionVideos": [], @@ -269516,7 +269167,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "3045", "time": 4230937, "featuredRunMedia": null, "reactionVideos": [], @@ -269542,7 +269193,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 4232864, "featuredRunMedia": null, "reactionVideos": [], @@ -269568,7 +269219,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "2156", "time": 4238860, "featuredRunMedia": null, "reactionVideos": [], @@ -269596,7 +269247,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4243649, "featuredRunMedia": null, "reactionVideos": [], @@ -269624,7 +269275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 4243852, "featuredRunMedia": null, "reactionVideos": [], @@ -269662,7 +269313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 4244418, "featuredRunMedia": null, "reactionVideos": [], @@ -269690,7 +269341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4244531, "featuredRunMedia": null, "reactionVideos": [], @@ -269716,7 +269367,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 292, + "teamId": "1348", "time": 4244689, "featuredRunMedia": null, "reactionVideos": [], @@ -269754,7 +269405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 4245224, "featuredRunMedia": null, "reactionVideos": [], @@ -269787,7 +269438,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4251602, "featuredRunMedia": null, "reactionVideos": [], @@ -269815,7 +269466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4255967, "featuredRunMedia": null, "reactionVideos": [], @@ -269843,7 +269494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 4260138, "featuredRunMedia": null, "reactionVideos": [], @@ -269881,7 +269532,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 4262139, "featuredRunMedia": null, "reactionVideos": [], @@ -269909,7 +269560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4264152, "featuredRunMedia": null, "reactionVideos": [], @@ -269937,7 +269588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 4268979, "featuredRunMedia": null, "reactionVideos": [], @@ -269970,7 +269621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 4273798, "featuredRunMedia": null, "reactionVideos": [], @@ -270008,7 +269659,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 4276337, "featuredRunMedia": null, "reactionVideos": [], @@ -270036,7 +269687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 4276725, "featuredRunMedia": null, "reactionVideos": [], @@ -270074,7 +269725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4276777, "featuredRunMedia": null, "reactionVideos": [], @@ -270102,7 +269753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4279446, "featuredRunMedia": null, "reactionVideos": [], @@ -270130,7 +269781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 4280867, "featuredRunMedia": null, "reactionVideos": [], @@ -270163,7 +269814,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "3056", "time": 4283190, "featuredRunMedia": null, "reactionVideos": [], @@ -270191,7 +269842,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 4284511, "featuredRunMedia": null, "reactionVideos": [], @@ -270219,7 +269870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4284579, "featuredRunMedia": null, "reactionVideos": [], @@ -270257,7 +269908,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 4285358, "featuredRunMedia": null, "reactionVideos": [], @@ -270285,7 +269936,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4287410, "featuredRunMedia": null, "reactionVideos": [], @@ -270313,7 +269964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 4289468, "featuredRunMedia": null, "reactionVideos": [], @@ -270346,7 +269997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4293272, "featuredRunMedia": null, "reactionVideos": [], @@ -270374,7 +270025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4294590, "featuredRunMedia": null, "reactionVideos": [], @@ -270402,7 +270053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 4298682, "featuredRunMedia": null, "reactionVideos": [], @@ -270428,7 +270079,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 4304613, "featuredRunMedia": null, "reactionVideos": [], @@ -270456,7 +270107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4305494, "featuredRunMedia": null, "reactionVideos": [], @@ -270484,7 +270135,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 4311717, "featuredRunMedia": null, "reactionVideos": [], @@ -270512,7 +270163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4312124, "featuredRunMedia": null, "reactionVideos": [], @@ -270550,7 +270201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 4312966, "featuredRunMedia": null, "reactionVideos": [], @@ -270588,7 +270239,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "2654", "time": 4316272, "featuredRunMedia": null, "reactionVideos": [], @@ -270614,7 +270265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 284, + "teamId": "1349", "time": 4316903, "featuredRunMedia": null, "reactionVideos": [], @@ -270642,7 +270293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 4317098, "featuredRunMedia": null, "reactionVideos": [], @@ -270668,7 +270319,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 236, + "teamId": "1243", "time": 4320474, "featuredRunMedia": null, "reactionVideos": [], @@ -270696,7 +270347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 4320573, "featuredRunMedia": null, "reactionVideos": [], @@ -270724,7 +270375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4324362, "featuredRunMedia": null, "reactionVideos": [], @@ -270752,7 +270403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 4325195, "featuredRunMedia": null, "reactionVideos": [], @@ -270780,7 +270431,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "3145", "time": 4326101, "featuredRunMedia": null, "reactionVideos": [], @@ -270818,7 +270469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 4327823, "featuredRunMedia": null, "reactionVideos": [], @@ -270846,7 +270497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 13, + "teamId": "3245", "time": 4331736, "featuredRunMedia": null, "reactionVideos": [], @@ -270874,7 +270525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 4332006, "featuredRunMedia": null, "reactionVideos": [], @@ -270902,7 +270553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 4354298, "featuredRunMedia": null, "reactionVideos": [], @@ -270930,7 +270581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 4357606, "featuredRunMedia": null, "reactionVideos": [], @@ -270956,7 +270607,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4360738, "featuredRunMedia": null, "reactionVideos": [], @@ -270994,7 +270645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 4361573, "featuredRunMedia": null, "reactionVideos": [], @@ -271032,7 +270683,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 4361690, "featuredRunMedia": null, "reactionVideos": [], @@ -271070,7 +270721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 4362822, "featuredRunMedia": null, "reactionVideos": [], @@ -271103,7 +270754,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 4363544, "featuredRunMedia": null, "reactionVideos": [], @@ -271131,7 +270782,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4367472, "featuredRunMedia": null, "reactionVideos": [], @@ -271159,7 +270810,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4368086, "featuredRunMedia": null, "reactionVideos": [], @@ -271187,7 +270838,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 4377772, "featuredRunMedia": null, "reactionVideos": [], @@ -271213,7 +270864,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 180, + "teamId": "3155", "time": 4379373, "featuredRunMedia": null, "reactionVideos": [], @@ -271241,7 +270892,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4383510, "featuredRunMedia": null, "reactionVideos": [], @@ -271269,7 +270920,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "3155", "time": 4386949, "featuredRunMedia": null, "reactionVideos": [], @@ -271297,7 +270948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 4387591, "featuredRunMedia": null, "reactionVideos": [], @@ -271325,7 +270976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4387753, "featuredRunMedia": null, "reactionVideos": [], @@ -271351,7 +271002,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 333, + "teamId": "1249", "time": 4390187, "featuredRunMedia": null, "reactionVideos": [], @@ -271389,7 +271040,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 4393421, "featuredRunMedia": null, "reactionVideos": [], @@ -271417,7 +271068,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 4393482, "featuredRunMedia": null, "reactionVideos": [], @@ -271455,7 +271106,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 333, + "teamId": "1249", "time": 4399244, "featuredRunMedia": null, "reactionVideos": [], @@ -271483,7 +271134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "2154", "time": 4403635, "featuredRunMedia": null, "reactionVideos": [], @@ -271511,7 +271162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 4405547, "featuredRunMedia": null, "reactionVideos": [], @@ -271539,7 +271190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 4410261, "featuredRunMedia": null, "reactionVideos": [], @@ -271565,7 +271216,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 4411714, "featuredRunMedia": null, "reactionVideos": [], @@ -271593,7 +271244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4411757, "featuredRunMedia": null, "reactionVideos": [], @@ -271621,7 +271272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4412157, "featuredRunMedia": null, "reactionVideos": [], @@ -271649,7 +271300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4414280, "featuredRunMedia": null, "reactionVideos": [], @@ -271677,7 +271328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4417420, "featuredRunMedia": null, "reactionVideos": [], @@ -271705,7 +271356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4420405, "featuredRunMedia": null, "reactionVideos": [], @@ -271733,7 +271384,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 4420599, "featuredRunMedia": null, "reactionVideos": [], @@ -271761,7 +271412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 4424362, "featuredRunMedia": null, "reactionVideos": [], @@ -271789,7 +271440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 4425884, "featuredRunMedia": null, "reactionVideos": [], @@ -271827,7 +271478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 4426180, "featuredRunMedia": null, "reactionVideos": [], @@ -271855,7 +271506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4428706, "featuredRunMedia": null, "reactionVideos": [], @@ -271893,7 +271544,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4434767, "featuredRunMedia": null, "reactionVideos": [], @@ -271921,7 +271572,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 4436405, "featuredRunMedia": null, "reactionVideos": [], @@ -271949,7 +271600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 4439186, "featuredRunMedia": null, "reactionVideos": [], @@ -271977,7 +271628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 4446373, "featuredRunMedia": null, "reactionVideos": [], @@ -272005,7 +271656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 97, + "teamId": "1252", "time": 4450211, "featuredRunMedia": null, "reactionVideos": [], @@ -272033,7 +271684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 4455941, "featuredRunMedia": null, "reactionVideos": [], @@ -272055,7 +271706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 4456406, "featuredRunMedia": null, "reactionVideos": [], @@ -272083,7 +271734,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "1949", "time": 4459502, "featuredRunMedia": null, "reactionVideos": [], @@ -272111,7 +271762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4461722, "featuredRunMedia": null, "reactionVideos": [], @@ -272139,7 +271790,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 4472335, "featuredRunMedia": null, "reactionVideos": [], @@ -272167,7 +271818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4476803, "featuredRunMedia": null, "reactionVideos": [], @@ -272195,7 +271846,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4480477, "featuredRunMedia": null, "reactionVideos": [], @@ -272223,7 +271874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 4481344, "featuredRunMedia": null, "reactionVideos": [], @@ -272251,7 +271902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 4482064, "featuredRunMedia": null, "reactionVideos": [], @@ -272279,7 +271930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 58, + "teamId": "3145", "time": 4483558, "featuredRunMedia": null, "reactionVideos": [], @@ -272317,7 +271968,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 4487889, "featuredRunMedia": null, "reactionVideos": [], @@ -272345,7 +271996,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4490839, "featuredRunMedia": null, "reactionVideos": [], @@ -272371,7 +272022,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 4491557, "featuredRunMedia": null, "reactionVideos": [], @@ -272399,7 +272050,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4496329, "featuredRunMedia": null, "reactionVideos": [], @@ -272437,7 +272088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 4496690, "featuredRunMedia": null, "reactionVideos": [], @@ -272465,7 +272116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4501610, "featuredRunMedia": null, "reactionVideos": [], @@ -272493,7 +272144,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 4503102, "featuredRunMedia": null, "reactionVideos": [], @@ -272521,7 +272172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4509091, "featuredRunMedia": null, "reactionVideos": [], @@ -272549,7 +272200,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4510173, "featuredRunMedia": null, "reactionVideos": [], @@ -272575,7 +272226,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4510679, "featuredRunMedia": null, "reactionVideos": [], @@ -272603,7 +272254,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 4511560, "featuredRunMedia": null, "reactionVideos": [], @@ -272631,7 +272282,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 3, + "teamId": "1341", "time": 4515203, "featuredRunMedia": null, "reactionVideos": [], @@ -272669,7 +272320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 4516215, "featuredRunMedia": null, "reactionVideos": [], @@ -272697,7 +272348,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 4516387, "featuredRunMedia": null, "reactionVideos": [], @@ -272725,7 +272376,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 4519984, "featuredRunMedia": null, "reactionVideos": [], @@ -272753,7 +272404,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 4521744, "featuredRunMedia": null, "reactionVideos": [], @@ -272781,7 +272432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 4522277, "featuredRunMedia": null, "reactionVideos": [], @@ -272809,7 +272460,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 4525652, "featuredRunMedia": null, "reactionVideos": [], @@ -272837,7 +272488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4526048, "featuredRunMedia": null, "reactionVideos": [], @@ -272865,7 +272516,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4526212, "featuredRunMedia": null, "reactionVideos": [], @@ -272893,7 +272544,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4528870, "featuredRunMedia": null, "reactionVideos": [], @@ -272921,7 +272572,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 4530292, "featuredRunMedia": null, "reactionVideos": [], @@ -272949,7 +272600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 4531046, "featuredRunMedia": null, "reactionVideos": [], @@ -272977,7 +272628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 42, + "teamId": "1645", "time": 4535709, "featuredRunMedia": null, "reactionVideos": [], @@ -273005,7 +272656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4542164, "featuredRunMedia": null, "reactionVideos": [], @@ -273033,7 +272684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 4543097, "featuredRunMedia": null, "reactionVideos": [], @@ -273059,7 +272710,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 4544058, "featuredRunMedia": null, "reactionVideos": [], @@ -273097,7 +272748,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "2943", "time": 4547307, "featuredRunMedia": null, "reactionVideos": [], @@ -273125,7 +272776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 4547665, "featuredRunMedia": null, "reactionVideos": [], @@ -273153,7 +272804,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4547738, "featuredRunMedia": null, "reactionVideos": [], @@ -273191,7 +272842,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 4547800, "featuredRunMedia": null, "reactionVideos": [], @@ -273219,7 +272870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 4550707, "featuredRunMedia": null, "reactionVideos": [], @@ -273247,7 +272898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4551644, "featuredRunMedia": null, "reactionVideos": [], @@ -273285,7 +272936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 4553971, "featuredRunMedia": null, "reactionVideos": [], @@ -273313,7 +272964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4557179, "featuredRunMedia": null, "reactionVideos": [], @@ -273341,7 +272992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 4557551, "featuredRunMedia": null, "reactionVideos": [], @@ -273369,7 +273020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4558270, "featuredRunMedia": null, "reactionVideos": [], @@ -273397,7 +273048,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 4558499, "featuredRunMedia": null, "reactionVideos": [], @@ -273425,7 +273076,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 4561557, "featuredRunMedia": null, "reactionVideos": [], @@ -273453,7 +273104,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 4569540, "featuredRunMedia": null, "reactionVideos": [], @@ -273481,7 +273132,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 4576140, "featuredRunMedia": null, "reactionVideos": [], @@ -273519,7 +273170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4576157, "featuredRunMedia": null, "reactionVideos": [], @@ -273547,7 +273198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4577950, "featuredRunMedia": null, "reactionVideos": [], @@ -273575,7 +273226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4581008, "featuredRunMedia": null, "reactionVideos": [], @@ -273603,7 +273254,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4581592, "featuredRunMedia": null, "reactionVideos": [], @@ -273629,7 +273280,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 4589534, "featuredRunMedia": null, "reactionVideos": [], @@ -273657,7 +273308,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 311, + "teamId": "3055", "time": 4591984, "featuredRunMedia": null, "reactionVideos": [], @@ -273695,7 +273346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "2943", "time": 4597282, "featuredRunMedia": null, "reactionVideos": [], @@ -273733,7 +273384,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4601447, "featuredRunMedia": null, "reactionVideos": [], @@ -273761,7 +273412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 4603530, "featuredRunMedia": null, "reactionVideos": [], @@ -273787,7 +273438,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "2156", "time": 4604814, "featuredRunMedia": null, "reactionVideos": [], @@ -273815,7 +273466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4608314, "featuredRunMedia": null, "reactionVideos": [], @@ -273843,7 +273494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 4608395, "featuredRunMedia": null, "reactionVideos": [], @@ -273871,7 +273522,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "3242", "time": 4612489, "featuredRunMedia": null, "reactionVideos": [], @@ -273904,7 +273555,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 4615329, "featuredRunMedia": null, "reactionVideos": [], @@ -273932,7 +273583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4620552, "featuredRunMedia": null, "reactionVideos": [], @@ -273958,7 +273609,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 110, + "teamId": "2750", "time": 4620729, "featuredRunMedia": null, "reactionVideos": [], @@ -273996,7 +273647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 4622421, "featuredRunMedia": null, "reactionVideos": [], @@ -274034,7 +273685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 4626643, "featuredRunMedia": null, "reactionVideos": [], @@ -274072,7 +273723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 4627702, "featuredRunMedia": null, "reactionVideos": [], @@ -274110,7 +273761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4635262, "featuredRunMedia": null, "reactionVideos": [], @@ -274148,7 +273799,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 4635735, "featuredRunMedia": null, "reactionVideos": [], @@ -274176,7 +273827,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4639131, "featuredRunMedia": null, "reactionVideos": [], @@ -274204,7 +273855,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 4647761, "featuredRunMedia": null, "reactionVideos": [], @@ -274242,7 +273893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 4649294, "featuredRunMedia": null, "reactionVideos": [], @@ -274270,7 +273921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 4649339, "featuredRunMedia": null, "reactionVideos": [], @@ -274303,7 +273954,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 4650821, "featuredRunMedia": null, "reactionVideos": [], @@ -274331,7 +273982,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4655109, "featuredRunMedia": null, "reactionVideos": [], @@ -274359,7 +274010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 4656373, "featuredRunMedia": null, "reactionVideos": [], @@ -274387,7 +274038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4656719, "featuredRunMedia": null, "reactionVideos": [], @@ -274425,7 +274076,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 4659223, "featuredRunMedia": null, "reactionVideos": [], @@ -274453,7 +274104,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 4661168, "featuredRunMedia": null, "reactionVideos": [], @@ -274481,7 +274132,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 302, + "teamId": "2147", "time": 4665246, "featuredRunMedia": null, "reactionVideos": [], @@ -274519,7 +274170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 4666166, "featuredRunMedia": null, "reactionVideos": [], @@ -274547,7 +274198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 4669643, "featuredRunMedia": null, "reactionVideos": [], @@ -274575,7 +274226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4673601, "featuredRunMedia": null, "reactionVideos": [], @@ -274613,7 +274264,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 4675386, "featuredRunMedia": null, "reactionVideos": [], @@ -274646,7 +274297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 4677711, "featuredRunMedia": null, "reactionVideos": [], @@ -274684,7 +274335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "2849", "time": 4679782, "featuredRunMedia": null, "reactionVideos": [], @@ -274722,7 +274373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 4680841, "featuredRunMedia": null, "reactionVideos": [], @@ -274760,7 +274411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 4684101, "featuredRunMedia": null, "reactionVideos": [], @@ -274798,7 +274449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4688431, "featuredRunMedia": null, "reactionVideos": [], @@ -274826,7 +274477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4688686, "featuredRunMedia": null, "reactionVideos": [], @@ -274854,7 +274505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 4692300, "featuredRunMedia": null, "reactionVideos": [], @@ -274882,7 +274533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4693352, "featuredRunMedia": null, "reactionVideos": [], @@ -274910,7 +274561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 4693371, "featuredRunMedia": null, "reactionVideos": [], @@ -274938,7 +274589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 4694177, "featuredRunMedia": null, "reactionVideos": [], @@ -274966,7 +274617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4695167, "featuredRunMedia": null, "reactionVideos": [], @@ -274992,7 +274643,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 4695407, "featuredRunMedia": null, "reactionVideos": [], @@ -275020,7 +274671,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4696426, "featuredRunMedia": null, "reactionVideos": [], @@ -275048,7 +274699,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4700177, "featuredRunMedia": null, "reactionVideos": [], @@ -275076,7 +274727,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4701291, "featuredRunMedia": null, "reactionVideos": [], @@ -275114,7 +274765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 4705143, "featuredRunMedia": null, "reactionVideos": [], @@ -275152,7 +274803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 4705792, "featuredRunMedia": null, "reactionVideos": [], @@ -275180,7 +274831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 4705922, "featuredRunMedia": null, "reactionVideos": [], @@ -275213,7 +274864,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4710406, "featuredRunMedia": null, "reactionVideos": [], @@ -275239,7 +274890,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 4711260, "featuredRunMedia": null, "reactionVideos": [], @@ -275272,7 +274923,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 4712918, "featuredRunMedia": null, "reactionVideos": [], @@ -275300,7 +274951,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4714216, "featuredRunMedia": null, "reactionVideos": [], @@ -275338,7 +274989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "1442", "time": 4717353, "featuredRunMedia": null, "reactionVideos": [], @@ -275366,7 +275017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 10, + "teamId": "2048", "time": 4717772, "featuredRunMedia": null, "reactionVideos": [], @@ -275394,7 +275045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4721090, "featuredRunMedia": null, "reactionVideos": [], @@ -275422,7 +275073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 4723024, "featuredRunMedia": null, "reactionVideos": [], @@ -275460,7 +275111,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 4724705, "featuredRunMedia": null, "reactionVideos": [], @@ -275486,7 +275137,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4729374, "featuredRunMedia": null, "reactionVideos": [], @@ -275514,7 +275165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4733212, "featuredRunMedia": null, "reactionVideos": [], @@ -275542,7 +275193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 4735193, "featuredRunMedia": null, "reactionVideos": [], @@ -275580,7 +275231,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 4736956, "featuredRunMedia": null, "reactionVideos": [], @@ -275608,7 +275259,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4740983, "featuredRunMedia": null, "reactionVideos": [], @@ -275630,7 +275281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4743370, "featuredRunMedia": null, "reactionVideos": [], @@ -275658,7 +275309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4743522, "featuredRunMedia": null, "reactionVideos": [], @@ -275696,7 +275347,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 4743912, "featuredRunMedia": null, "reactionVideos": [], @@ -275724,7 +275375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 10, + "teamId": "2048", "time": 4744449, "featuredRunMedia": null, "reactionVideos": [], @@ -275752,7 +275403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4746499, "featuredRunMedia": null, "reactionVideos": [], @@ -275778,7 +275429,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 4750548, "featuredRunMedia": null, "reactionVideos": [], @@ -275804,7 +275455,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 4757738, "featuredRunMedia": null, "reactionVideos": [], @@ -275830,7 +275481,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "2156", "time": 4759252, "featuredRunMedia": null, "reactionVideos": [], @@ -275868,7 +275519,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4760453, "featuredRunMedia": null, "reactionVideos": [], @@ -275906,7 +275557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 4760806, "featuredRunMedia": null, "reactionVideos": [], @@ -275934,7 +275585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4761703, "featuredRunMedia": null, "reactionVideos": [], @@ -275962,7 +275613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "3155", "time": 4765061, "featuredRunMedia": null, "reactionVideos": [], @@ -275995,7 +275646,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4766412, "featuredRunMedia": null, "reactionVideos": [], @@ -276023,7 +275674,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4766872, "featuredRunMedia": null, "reactionVideos": [], @@ -276051,7 +275702,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4767168, "featuredRunMedia": null, "reactionVideos": [], @@ -276089,7 +275740,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 4767558, "featuredRunMedia": null, "reactionVideos": [], @@ -276127,7 +275778,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "2849", "time": 4770220, "featuredRunMedia": null, "reactionVideos": [], @@ -276165,7 +275816,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 4771174, "featuredRunMedia": null, "reactionVideos": [], @@ -276193,7 +275844,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4773416, "featuredRunMedia": null, "reactionVideos": [], @@ -276221,7 +275872,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "2054", "time": 4774552, "featuredRunMedia": null, "reactionVideos": [], @@ -276249,7 +275900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4778852, "featuredRunMedia": null, "reactionVideos": [], @@ -276275,7 +275926,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 317, + "teamId": "2741", "time": 4779708, "featuredRunMedia": null, "reactionVideos": [], @@ -276301,7 +275952,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 4780202, "featuredRunMedia": null, "reactionVideos": [], @@ -276329,7 +275980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4780421, "featuredRunMedia": null, "reactionVideos": [], @@ -276367,7 +276018,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4782076, "featuredRunMedia": null, "reactionVideos": [], @@ -276395,7 +276046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 4782268, "featuredRunMedia": null, "reactionVideos": [], @@ -276433,7 +276084,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 4783000, "featuredRunMedia": null, "reactionVideos": [], @@ -276461,7 +276112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 4784160, "featuredRunMedia": null, "reactionVideos": [], @@ -276489,7 +276140,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 4785106, "featuredRunMedia": null, "reactionVideos": [], @@ -276517,7 +276168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4785812, "featuredRunMedia": null, "reactionVideos": [], @@ -276545,7 +276196,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4788008, "featuredRunMedia": null, "reactionVideos": [], @@ -276573,7 +276224,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 4789517, "featuredRunMedia": null, "reactionVideos": [], @@ -276601,7 +276252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 4792647, "featuredRunMedia": null, "reactionVideos": [], @@ -276623,7 +276274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4796083, "featuredRunMedia": null, "reactionVideos": [], @@ -276651,7 +276302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 42, + "teamId": "1645", "time": 4797287, "featuredRunMedia": null, "reactionVideos": [], @@ -276689,7 +276340,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4798797, "featuredRunMedia": null, "reactionVideos": [], @@ -276727,7 +276378,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 4800541, "featuredRunMedia": null, "reactionVideos": [], @@ -276755,7 +276406,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 4802257, "featuredRunMedia": null, "reactionVideos": [], @@ -276783,7 +276434,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4802724, "featuredRunMedia": null, "reactionVideos": [], @@ -276811,7 +276462,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 4803812, "featuredRunMedia": null, "reactionVideos": [], @@ -276839,7 +276490,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 4806252, "featuredRunMedia": null, "reactionVideos": [], @@ -276867,7 +276518,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 4808403, "featuredRunMedia": null, "reactionVideos": [], @@ -276895,7 +276546,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 4810239, "featuredRunMedia": null, "reactionVideos": [], @@ -276933,7 +276584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 4811501, "featuredRunMedia": null, "reactionVideos": [], @@ -276961,7 +276612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 18, + "teamId": "1146", "time": 4813351, "featuredRunMedia": null, "reactionVideos": [], @@ -276989,7 +276640,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 4813637, "featuredRunMedia": null, "reactionVideos": [], @@ -277017,7 +276668,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4814811, "featuredRunMedia": null, "reactionVideos": [], @@ -277045,7 +276696,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4815838, "featuredRunMedia": null, "reactionVideos": [], @@ -277073,7 +276724,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 4817085, "featuredRunMedia": null, "reactionVideos": [], @@ -277101,7 +276752,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 4817280, "featuredRunMedia": null, "reactionVideos": [], @@ -277139,7 +276790,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "2644", "time": 4822476, "featuredRunMedia": null, "reactionVideos": [], @@ -277177,7 +276828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 4822823, "featuredRunMedia": null, "reactionVideos": [], @@ -277203,7 +276854,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 4824309, "featuredRunMedia": null, "reactionVideos": [], @@ -277229,7 +276880,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 4826525, "featuredRunMedia": null, "reactionVideos": [], @@ -277257,7 +276908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 4831802, "featuredRunMedia": null, "reactionVideos": [], @@ -277295,7 +276946,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 4833351, "featuredRunMedia": null, "reactionVideos": [], @@ -277323,7 +276974,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4833739, "featuredRunMedia": null, "reactionVideos": [], @@ -277351,7 +277002,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "2154", "time": 4834129, "featuredRunMedia": null, "reactionVideos": [], @@ -277389,7 +277040,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 4836751, "featuredRunMedia": null, "reactionVideos": [], @@ -277417,7 +277068,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 4839656, "featuredRunMedia": null, "reactionVideos": [], @@ -277445,7 +277096,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 4840139, "featuredRunMedia": null, "reactionVideos": [], @@ -277473,7 +277124,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4841899, "featuredRunMedia": null, "reactionVideos": [], @@ -277511,7 +277162,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4842985, "featuredRunMedia": null, "reactionVideos": [], @@ -277549,7 +277200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "1442", "time": 4843116, "featuredRunMedia": null, "reactionVideos": [], @@ -277577,7 +277228,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 4844671, "featuredRunMedia": null, "reactionVideos": [], @@ -277605,7 +277256,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 4845043, "featuredRunMedia": null, "reactionVideos": [], @@ -277633,7 +277284,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4848149, "featuredRunMedia": null, "reactionVideos": [], @@ -277661,7 +277312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 4858755, "featuredRunMedia": null, "reactionVideos": [], @@ -277687,7 +277338,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 240, + "teamId": "2552", "time": 4860798, "featuredRunMedia": null, "reactionVideos": [], @@ -277725,7 +277376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 4862439, "featuredRunMedia": null, "reactionVideos": [], @@ -277753,7 +277404,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 4865451, "featuredRunMedia": null, "reactionVideos": [], @@ -277781,7 +277432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 4866190, "featuredRunMedia": null, "reactionVideos": [], @@ -277819,7 +277470,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 4867243, "featuredRunMedia": null, "reactionVideos": [], @@ -277852,7 +277503,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4867619, "featuredRunMedia": null, "reactionVideos": [], @@ -277880,7 +277531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4869403, "featuredRunMedia": null, "reactionVideos": [], @@ -277908,7 +277559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4869720, "featuredRunMedia": null, "reactionVideos": [], @@ -277936,7 +277587,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4871007, "featuredRunMedia": null, "reactionVideos": [], @@ -277964,7 +277615,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4871207, "featuredRunMedia": null, "reactionVideos": [], @@ -278002,7 +277653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "1644", "time": 4871887, "featuredRunMedia": null, "reactionVideos": [], @@ -278040,7 +277691,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 4874783, "featuredRunMedia": null, "reactionVideos": [], @@ -278068,7 +277719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4876492, "featuredRunMedia": null, "reactionVideos": [], @@ -278096,7 +277747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 44, + "teamId": "3154", "time": 4880516, "featuredRunMedia": null, "reactionVideos": [], @@ -278124,7 +277775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 4882675, "featuredRunMedia": null, "reactionVideos": [], @@ -278152,7 +277803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 4884329, "featuredRunMedia": null, "reactionVideos": [], @@ -278178,7 +277829,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 4885226, "featuredRunMedia": null, "reactionVideos": [], @@ -278211,7 +277862,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 4888024, "featuredRunMedia": null, "reactionVideos": [], @@ -278239,7 +277890,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4888757, "featuredRunMedia": null, "reactionVideos": [], @@ -278267,7 +277918,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4890073, "featuredRunMedia": null, "reactionVideos": [], @@ -278295,7 +277946,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4891725, "featuredRunMedia": null, "reactionVideos": [], @@ -278323,7 +277974,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 4893088, "featuredRunMedia": null, "reactionVideos": [], @@ -278349,7 +278000,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 4895593, "featuredRunMedia": null, "reactionVideos": [], @@ -278377,7 +278028,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 4896691, "featuredRunMedia": null, "reactionVideos": [], @@ -278410,7 +278061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 4898234, "featuredRunMedia": null, "reactionVideos": [], @@ -278438,7 +278089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 4899347, "featuredRunMedia": null, "reactionVideos": [], @@ -278466,7 +278117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4900483, "featuredRunMedia": null, "reactionVideos": [], @@ -278494,7 +278145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 48, + "teamId": "2952", "time": 4901140, "featuredRunMedia": null, "reactionVideos": [], @@ -278532,7 +278183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4902725, "featuredRunMedia": null, "reactionVideos": [], @@ -278560,7 +278211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 4911979, "featuredRunMedia": null, "reactionVideos": [], @@ -278588,7 +278239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 4912796, "featuredRunMedia": null, "reactionVideos": [], @@ -278614,7 +278265,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 295, + "teamId": "3149", "time": 4913897, "featuredRunMedia": null, "reactionVideos": [], @@ -278642,7 +278293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 4916730, "featuredRunMedia": null, "reactionVideos": [], @@ -278670,7 +278321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 4920720, "featuredRunMedia": null, "reactionVideos": [], @@ -278698,7 +278349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4921376, "featuredRunMedia": null, "reactionVideos": [], @@ -278736,7 +278387,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 4922146, "featuredRunMedia": null, "reactionVideos": [], @@ -278764,7 +278415,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4922512, "featuredRunMedia": null, "reactionVideos": [], @@ -278797,7 +278448,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 4924901, "featuredRunMedia": null, "reactionVideos": [], @@ -278835,7 +278486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 4926405, "featuredRunMedia": null, "reactionVideos": [], @@ -278863,7 +278514,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 4929454, "featuredRunMedia": null, "reactionVideos": [], @@ -278901,7 +278552,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 4931396, "featuredRunMedia": null, "reactionVideos": [], @@ -278929,7 +278580,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4933797, "featuredRunMedia": null, "reactionVideos": [], @@ -278957,7 +278608,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4935140, "featuredRunMedia": null, "reactionVideos": [], @@ -278985,7 +278636,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 4935768, "featuredRunMedia": null, "reactionVideos": [], @@ -279011,7 +278662,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 4938338, "featuredRunMedia": null, "reactionVideos": [], @@ -279039,7 +278690,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 4938580, "featuredRunMedia": null, "reactionVideos": [], @@ -279077,7 +278728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 253, + "teamId": "2153", "time": 4941902, "featuredRunMedia": null, "reactionVideos": [], @@ -279105,7 +278756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 4943366, "featuredRunMedia": null, "reactionVideos": [], @@ -279133,7 +278784,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 4947044, "featuredRunMedia": null, "reactionVideos": [], @@ -279161,7 +278812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 4950668, "featuredRunMedia": null, "reactionVideos": [], @@ -279199,7 +278850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 4950908, "featuredRunMedia": null, "reactionVideos": [], @@ -279237,7 +278888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 4951509, "featuredRunMedia": null, "reactionVideos": [], @@ -279265,7 +278916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 4954025, "featuredRunMedia": null, "reactionVideos": [], @@ -279293,7 +278944,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "2144", "time": 4955792, "featuredRunMedia": null, "reactionVideos": [], @@ -279321,7 +278972,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 4957429, "featuredRunMedia": null, "reactionVideos": [], @@ -279349,7 +279000,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 4958403, "featuredRunMedia": null, "reactionVideos": [], @@ -279375,7 +279026,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 4960785, "featuredRunMedia": null, "reactionVideos": [], @@ -279413,7 +279064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 4961988, "featuredRunMedia": null, "reactionVideos": [], @@ -279441,7 +279092,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4962465, "featuredRunMedia": null, "reactionVideos": [], @@ -279463,7 +279114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 4962681, "featuredRunMedia": null, "reactionVideos": [], @@ -279501,7 +279152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 4963374, "featuredRunMedia": null, "reactionVideos": [], @@ -279529,7 +279180,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 4966177, "featuredRunMedia": null, "reactionVideos": [], @@ -279567,7 +279218,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 4966296, "featuredRunMedia": null, "reactionVideos": [], @@ -279595,7 +279246,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 4968081, "featuredRunMedia": null, "reactionVideos": [], @@ -279623,7 +279274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 4969516, "featuredRunMedia": null, "reactionVideos": [], @@ -279649,7 +279300,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 4973580, "featuredRunMedia": null, "reactionVideos": [], @@ -279677,7 +279328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "1643", "time": 4976212, "featuredRunMedia": null, "reactionVideos": [], @@ -279715,7 +279366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 4978241, "featuredRunMedia": null, "reactionVideos": [], @@ -279743,7 +279394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 4978504, "featuredRunMedia": null, "reactionVideos": [], @@ -279771,7 +279422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 4979586, "featuredRunMedia": null, "reactionVideos": [], @@ -279799,7 +279450,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 4980293, "featuredRunMedia": null, "reactionVideos": [], @@ -279827,7 +279478,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 4982409, "featuredRunMedia": null, "reactionVideos": [], @@ -279855,7 +279506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 4983928, "featuredRunMedia": null, "reactionVideos": [], @@ -279883,7 +279534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 4988432, "featuredRunMedia": null, "reactionVideos": [], @@ -279911,7 +279562,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 4994283, "featuredRunMedia": null, "reactionVideos": [], @@ -279937,7 +279588,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 293, + "teamId": "3153", "time": 4995274, "featuredRunMedia": null, "reactionVideos": [], @@ -279965,7 +279616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "1643", "time": 4996851, "featuredRunMedia": null, "reactionVideos": [], @@ -280003,7 +279654,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 5006044, "featuredRunMedia": null, "reactionVideos": [], @@ -280031,7 +279682,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 5009051, "featuredRunMedia": null, "reactionVideos": [], @@ -280059,7 +279710,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 5011200, "featuredRunMedia": null, "reactionVideos": [], @@ -280087,7 +279738,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 5012899, "featuredRunMedia": null, "reactionVideos": [], @@ -280115,7 +279766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 5016907, "featuredRunMedia": null, "reactionVideos": [], @@ -280153,7 +279804,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 5019646, "featuredRunMedia": null, "reactionVideos": [], @@ -280175,7 +279826,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5021763, "featuredRunMedia": null, "reactionVideos": [], @@ -280208,7 +279859,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 5025003, "featuredRunMedia": null, "reactionVideos": [], @@ -280236,7 +279887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 5029443, "featuredRunMedia": null, "reactionVideos": [], @@ -280264,7 +279915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 5030497, "featuredRunMedia": null, "reactionVideos": [], @@ -280292,7 +279943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 5033405, "featuredRunMedia": null, "reactionVideos": [], @@ -280320,7 +279971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 5033880, "featuredRunMedia": null, "reactionVideos": [], @@ -280353,7 +280004,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "2146", "time": 5034443, "featuredRunMedia": null, "reactionVideos": [], @@ -280381,7 +280032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 5034652, "featuredRunMedia": null, "reactionVideos": [], @@ -280409,7 +280060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5036491, "featuredRunMedia": null, "reactionVideos": [], @@ -280437,7 +280088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 51, + "teamId": "1547", "time": 5036987, "featuredRunMedia": null, "reactionVideos": [], @@ -280470,7 +280121,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 5036997, "featuredRunMedia": null, "reactionVideos": [], @@ -280498,7 +280149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 5040243, "featuredRunMedia": null, "reactionVideos": [], @@ -280526,7 +280177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 5042151, "featuredRunMedia": null, "reactionVideos": [], @@ -280552,7 +280203,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5044890, "featuredRunMedia": null, "reactionVideos": [], @@ -280580,7 +280231,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 5046191, "featuredRunMedia": null, "reactionVideos": [], @@ -280618,7 +280269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 5046321, "featuredRunMedia": null, "reactionVideos": [], @@ -280656,7 +280307,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 5047243, "featuredRunMedia": null, "reactionVideos": [], @@ -280684,7 +280335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 5048915, "featuredRunMedia": null, "reactionVideos": [], @@ -280712,7 +280363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5050048, "featuredRunMedia": null, "reactionVideos": [], @@ -280740,7 +280391,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5050927, "featuredRunMedia": null, "reactionVideos": [], @@ -280778,7 +280429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5052581, "featuredRunMedia": null, "reactionVideos": [], @@ -280806,7 +280457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "1741", "time": 5053847, "featuredRunMedia": null, "reactionVideos": [], @@ -280844,7 +280495,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 5054764, "featuredRunMedia": null, "reactionVideos": [], @@ -280877,7 +280528,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 5058076, "featuredRunMedia": null, "reactionVideos": [], @@ -280905,7 +280556,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 5058121, "featuredRunMedia": null, "reactionVideos": [], @@ -280933,7 +280584,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 5060468, "featuredRunMedia": null, "reactionVideos": [], @@ -280961,7 +280612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 5061962, "featuredRunMedia": null, "reactionVideos": [], @@ -280989,7 +280640,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 5065116, "featuredRunMedia": null, "reactionVideos": [], @@ -281015,7 +280666,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5065466, "featuredRunMedia": null, "reactionVideos": [], @@ -281048,7 +280699,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 5073611, "featuredRunMedia": null, "reactionVideos": [], @@ -281086,7 +280737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5075042, "featuredRunMedia": null, "reactionVideos": [], @@ -281124,7 +280775,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5075642, "featuredRunMedia": null, "reactionVideos": [], @@ -281162,7 +280813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 5081995, "featuredRunMedia": null, "reactionVideos": [], @@ -281188,7 +280839,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 5082395, "featuredRunMedia": null, "reactionVideos": [], @@ -281226,7 +280877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 5083166, "featuredRunMedia": null, "reactionVideos": [], @@ -281252,7 +280903,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5085224, "featuredRunMedia": null, "reactionVideos": [], @@ -281280,7 +280931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 5085852, "featuredRunMedia": null, "reactionVideos": [], @@ -281308,7 +280959,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 233, + "teamId": "2351", "time": 5085908, "featuredRunMedia": null, "reactionVideos": [], @@ -281346,7 +280997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "1442", "time": 5093064, "featuredRunMedia": null, "reactionVideos": [], @@ -281374,7 +281025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "2252", "time": 5096974, "featuredRunMedia": null, "reactionVideos": [], @@ -281402,7 +281053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5098937, "featuredRunMedia": null, "reactionVideos": [], @@ -281430,7 +281081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 5102868, "featuredRunMedia": null, "reactionVideos": [], @@ -281458,7 +281109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 5103530, "featuredRunMedia": null, "reactionVideos": [], @@ -281486,7 +281137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 10, + "teamId": "2048", "time": 5103768, "featuredRunMedia": null, "reactionVideos": [], @@ -281514,7 +281165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 5105090, "featuredRunMedia": null, "reactionVideos": [], @@ -281540,7 +281191,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5105188, "featuredRunMedia": null, "reactionVideos": [], @@ -281578,7 +281229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 5106422, "featuredRunMedia": null, "reactionVideos": [], @@ -281606,7 +281257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 5108577, "featuredRunMedia": null, "reactionVideos": [], @@ -281644,7 +281295,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 5114330, "featuredRunMedia": null, "reactionVideos": [], @@ -281672,7 +281323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 5116728, "featuredRunMedia": null, "reactionVideos": [], @@ -281700,7 +281351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5117437, "featuredRunMedia": null, "reactionVideos": [], @@ -281728,7 +281379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "2656", "time": 5119863, "featuredRunMedia": null, "reactionVideos": [], @@ -281756,7 +281407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 24, + "teamId": "2050", "time": 5120849, "featuredRunMedia": null, "reactionVideos": [], @@ -281794,7 +281445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5122207, "featuredRunMedia": null, "reactionVideos": [], @@ -281822,7 +281473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 5123059, "featuredRunMedia": null, "reactionVideos": [], @@ -281848,7 +281499,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 5124429, "featuredRunMedia": null, "reactionVideos": [], @@ -281886,7 +281537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5126463, "featuredRunMedia": null, "reactionVideos": [], @@ -281924,7 +281575,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 5131146, "featuredRunMedia": null, "reactionVideos": [], @@ -281952,7 +281603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "1741", "time": 5131344, "featuredRunMedia": null, "reactionVideos": [], @@ -281990,7 +281641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 5132143, "featuredRunMedia": null, "reactionVideos": [], @@ -282018,7 +281669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 5133621, "featuredRunMedia": null, "reactionVideos": [], @@ -282046,7 +281697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 5134559, "featuredRunMedia": null, "reactionVideos": [], @@ -282084,7 +281735,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5135042, "featuredRunMedia": null, "reactionVideos": [], @@ -282117,7 +281768,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "2146", "time": 5135810, "featuredRunMedia": null, "reactionVideos": [], @@ -282145,7 +281796,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5136761, "featuredRunMedia": null, "reactionVideos": [], @@ -282183,7 +281834,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 5142598, "featuredRunMedia": null, "reactionVideos": [], @@ -282211,7 +281862,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 5146479, "featuredRunMedia": null, "reactionVideos": [], @@ -282239,7 +281890,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 5151287, "featuredRunMedia": null, "reactionVideos": [], @@ -282277,7 +281928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5152394, "featuredRunMedia": null, "reactionVideos": [], @@ -282315,7 +281966,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 5153166, "featuredRunMedia": null, "reactionVideos": [], @@ -282348,7 +281999,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 5154334, "featuredRunMedia": null, "reactionVideos": [], @@ -282376,7 +282027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "2656", "time": 5155337, "featuredRunMedia": null, "reactionVideos": [], @@ -282404,7 +282055,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 5157673, "featuredRunMedia": null, "reactionVideos": [], @@ -282432,7 +282083,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5160488, "featuredRunMedia": null, "reactionVideos": [], @@ -282460,7 +282111,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 5160730, "featuredRunMedia": null, "reactionVideos": [], @@ -282488,7 +282139,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 5160845, "featuredRunMedia": null, "reactionVideos": [], @@ -282526,7 +282177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5162686, "featuredRunMedia": null, "reactionVideos": [], @@ -282552,7 +282203,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 5163073, "featuredRunMedia": null, "reactionVideos": [], @@ -282590,7 +282241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 5174683, "featuredRunMedia": null, "reactionVideos": [], @@ -282616,7 +282267,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 5174875, "featuredRunMedia": null, "reactionVideos": [], @@ -282644,7 +282295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5175496, "featuredRunMedia": null, "reactionVideos": [], @@ -282672,7 +282323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5176156, "featuredRunMedia": null, "reactionVideos": [], @@ -282700,7 +282351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 5176758, "featuredRunMedia": null, "reactionVideos": [], @@ -282726,7 +282377,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "2548", "time": 5177538, "featuredRunMedia": null, "reactionVideos": [], @@ -282754,7 +282405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 5181608, "featuredRunMedia": null, "reactionVideos": [], @@ -282782,7 +282433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 5181906, "featuredRunMedia": null, "reactionVideos": [], @@ -282810,7 +282461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 5183794, "featuredRunMedia": null, "reactionVideos": [], @@ -282838,7 +282489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5188808, "featuredRunMedia": null, "reactionVideos": [], @@ -282876,7 +282527,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 5189612, "featuredRunMedia": null, "reactionVideos": [], @@ -282904,7 +282555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 5191108, "featuredRunMedia": null, "reactionVideos": [], @@ -282932,7 +282583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 5191127, "featuredRunMedia": null, "reactionVideos": [], @@ -282970,7 +282621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 5193027, "featuredRunMedia": null, "reactionVideos": [], @@ -282998,7 +282649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5202137, "featuredRunMedia": null, "reactionVideos": [], @@ -283036,7 +282687,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 5204978, "featuredRunMedia": null, "reactionVideos": [], @@ -283064,7 +282715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5208009, "featuredRunMedia": null, "reactionVideos": [], @@ -283092,7 +282743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 5208674, "featuredRunMedia": null, "reactionVideos": [], @@ -283130,7 +282781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 5209243, "featuredRunMedia": null, "reactionVideos": [], @@ -283168,7 +282819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 5209278, "featuredRunMedia": null, "reactionVideos": [], @@ -283196,7 +282847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 19, + "teamId": "2656", "time": 5209315, "featuredRunMedia": null, "reactionVideos": [], @@ -283224,7 +282875,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 28, + "teamId": "1650", "time": 5209885, "featuredRunMedia": null, "reactionVideos": [], @@ -283262,7 +282913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 5213417, "featuredRunMedia": null, "reactionVideos": [], @@ -283290,7 +282941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 5214159, "featuredRunMedia": null, "reactionVideos": [], @@ -283318,7 +282969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 5221205, "featuredRunMedia": null, "reactionVideos": [], @@ -283346,7 +282997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 5221225, "featuredRunMedia": null, "reactionVideos": [], @@ -283374,7 +283025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5222385, "featuredRunMedia": null, "reactionVideos": [], @@ -283402,7 +283053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5226415, "featuredRunMedia": null, "reactionVideos": [], @@ -283440,7 +283091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5231051, "featuredRunMedia": null, "reactionVideos": [], @@ -283478,7 +283129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "3142", "time": 5232479, "featuredRunMedia": null, "reactionVideos": [], @@ -283506,7 +283157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5235505, "featuredRunMedia": null, "reactionVideos": [], @@ -283534,7 +283185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5235623, "featuredRunMedia": null, "reactionVideos": [], @@ -283572,7 +283223,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 5236029, "featuredRunMedia": null, "reactionVideos": [], @@ -283600,7 +283251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5238788, "featuredRunMedia": null, "reactionVideos": [], @@ -283628,7 +283279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 5239204, "featuredRunMedia": null, "reactionVideos": [], @@ -283656,7 +283307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 8, + "teamId": "1654", "time": 5240903, "featuredRunMedia": null, "reactionVideos": [], @@ -283684,7 +283335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5245996, "featuredRunMedia": null, "reactionVideos": [], @@ -283712,7 +283363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 5246901, "featuredRunMedia": null, "reactionVideos": [], @@ -283740,7 +283391,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 5247525, "featuredRunMedia": null, "reactionVideos": [], @@ -283768,7 +283419,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 5253513, "featuredRunMedia": null, "reactionVideos": [], @@ -283806,7 +283457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "3142", "time": 5253597, "featuredRunMedia": null, "reactionVideos": [], @@ -283834,7 +283485,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 28, + "teamId": "1650", "time": 5253986, "featuredRunMedia": null, "reactionVideos": [], @@ -283862,7 +283513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 5254444, "featuredRunMedia": null, "reactionVideos": [], @@ -283890,7 +283541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 5255358, "featuredRunMedia": null, "reactionVideos": [], @@ -283928,7 +283579,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "2849", "time": 5255529, "featuredRunMedia": null, "reactionVideos": [], @@ -283956,7 +283607,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 5255725, "featuredRunMedia": null, "reactionVideos": [], @@ -283994,7 +283645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 5259234, "featuredRunMedia": null, "reactionVideos": [], @@ -284022,7 +283673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5261736, "featuredRunMedia": null, "reactionVideos": [], @@ -284050,7 +283701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 5264482, "featuredRunMedia": null, "reactionVideos": [], @@ -284072,7 +283723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5265019, "featuredRunMedia": null, "reactionVideos": [], @@ -284105,7 +283756,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 5266583, "featuredRunMedia": null, "reactionVideos": [], @@ -284143,7 +283794,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 5268391, "featuredRunMedia": null, "reactionVideos": [], @@ -284171,7 +283822,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 5269808, "featuredRunMedia": null, "reactionVideos": [], @@ -284199,7 +283850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 5273062, "featuredRunMedia": null, "reactionVideos": [], @@ -284227,7 +283878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 5273444, "featuredRunMedia": null, "reactionVideos": [], @@ -284255,7 +283906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "1845", "time": 5273588, "featuredRunMedia": null, "reactionVideos": [], @@ -284283,7 +283934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 5274522, "featuredRunMedia": null, "reactionVideos": [], @@ -284321,7 +283972,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5277442, "featuredRunMedia": null, "reactionVideos": [], @@ -284359,7 +284010,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5278253, "featuredRunMedia": null, "reactionVideos": [], @@ -284387,7 +284038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 5279196, "featuredRunMedia": null, "reactionVideos": [], @@ -284415,7 +284066,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 5280725, "featuredRunMedia": null, "reactionVideos": [], @@ -284443,7 +284094,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 5282931, "featuredRunMedia": null, "reactionVideos": [], @@ -284471,7 +284122,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5285368, "featuredRunMedia": null, "reactionVideos": [], @@ -284499,7 +284150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 334, + "teamId": "1756", "time": 5287064, "featuredRunMedia": null, "reactionVideos": [], @@ -284527,7 +284178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 5289913, "featuredRunMedia": null, "reactionVideos": [], @@ -284565,7 +284216,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 5290183, "featuredRunMedia": null, "reactionVideos": [], @@ -284593,7 +284244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 5293540, "featuredRunMedia": null, "reactionVideos": [], @@ -284621,7 +284272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5296421, "featuredRunMedia": null, "reactionVideos": [], @@ -284649,7 +284300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5301551, "featuredRunMedia": null, "reactionVideos": [], @@ -284677,7 +284328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 5301720, "featuredRunMedia": null, "reactionVideos": [], @@ -284715,7 +284366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "1147", "time": 5302195, "featuredRunMedia": null, "reactionVideos": [], @@ -284743,7 +284394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "1152", "time": 5303439, "featuredRunMedia": null, "reactionVideos": [], @@ -284781,7 +284432,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 5307056, "featuredRunMedia": null, "reactionVideos": [], @@ -284809,7 +284460,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5307777, "featuredRunMedia": null, "reactionVideos": [], @@ -284837,7 +284488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "2046", "time": 5308836, "featuredRunMedia": null, "reactionVideos": [], @@ -284865,7 +284516,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "2141", "time": 5311809, "featuredRunMedia": null, "reactionVideos": [], @@ -284893,7 +284544,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 5314219, "featuredRunMedia": null, "reactionVideos": [], @@ -284921,7 +284572,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 5315171, "featuredRunMedia": null, "reactionVideos": [], @@ -284949,7 +284600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 5315982, "featuredRunMedia": null, "reactionVideos": [], @@ -284977,7 +284628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5316191, "featuredRunMedia": null, "reactionVideos": [], @@ -285005,7 +284656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5317047, "featuredRunMedia": null, "reactionVideos": [], @@ -285033,7 +284684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 5317761, "featuredRunMedia": null, "reactionVideos": [], @@ -285061,7 +284712,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5324504, "featuredRunMedia": null, "reactionVideos": [], @@ -285099,7 +284750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 5324632, "featuredRunMedia": null, "reactionVideos": [], @@ -285127,7 +284778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 5333918, "featuredRunMedia": null, "reactionVideos": [], @@ -285165,7 +284816,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 5340511, "featuredRunMedia": null, "reactionVideos": [], @@ -285193,7 +284844,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 5343945, "featuredRunMedia": null, "reactionVideos": [], @@ -285215,7 +284866,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 5344258, "featuredRunMedia": null, "reactionVideos": [], @@ -285241,7 +284892,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 5344755, "featuredRunMedia": null, "reactionVideos": [], @@ -285269,7 +284920,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5347469, "featuredRunMedia": null, "reactionVideos": [], @@ -285297,7 +284948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5352942, "featuredRunMedia": null, "reactionVideos": [], @@ -285325,7 +284976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 5353172, "featuredRunMedia": null, "reactionVideos": [], @@ -285363,7 +285014,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5354408, "featuredRunMedia": null, "reactionVideos": [], @@ -285401,7 +285052,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5355064, "featuredRunMedia": null, "reactionVideos": [], @@ -285429,7 +285080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5355627, "featuredRunMedia": null, "reactionVideos": [], @@ -285467,7 +285118,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 5355903, "featuredRunMedia": null, "reactionVideos": [], @@ -285505,7 +285156,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 5356086, "featuredRunMedia": null, "reactionVideos": [], @@ -285543,7 +285194,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 5356240, "featuredRunMedia": null, "reactionVideos": [], @@ -285571,7 +285222,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5358890, "featuredRunMedia": null, "reactionVideos": [], @@ -285599,7 +285250,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5359270, "featuredRunMedia": null, "reactionVideos": [], @@ -285627,7 +285278,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5361120, "featuredRunMedia": null, "reactionVideos": [], @@ -285655,7 +285306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 5361360, "featuredRunMedia": null, "reactionVideos": [], @@ -285683,7 +285334,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5361884, "featuredRunMedia": null, "reactionVideos": [], @@ -285711,7 +285362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 5369665, "featuredRunMedia": null, "reactionVideos": [], @@ -285739,7 +285390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5372815, "featuredRunMedia": null, "reactionVideos": [], @@ -285777,7 +285428,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 5374067, "featuredRunMedia": null, "reactionVideos": [], @@ -285805,7 +285456,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 5377935, "featuredRunMedia": null, "reactionVideos": [], @@ -285833,7 +285484,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 5381006, "featuredRunMedia": null, "reactionVideos": [], @@ -285871,7 +285522,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 5388860, "featuredRunMedia": null, "reactionVideos": [], @@ -285909,7 +285560,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 5390263, "featuredRunMedia": null, "reactionVideos": [], @@ -285937,7 +285588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5393122, "featuredRunMedia": null, "reactionVideos": [], @@ -285975,7 +285626,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 5393509, "featuredRunMedia": null, "reactionVideos": [], @@ -286013,7 +285664,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5393535, "featuredRunMedia": null, "reactionVideos": [], @@ -286041,7 +285692,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 5394373, "featuredRunMedia": null, "reactionVideos": [], @@ -286069,7 +285720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 5398289, "featuredRunMedia": null, "reactionVideos": [], @@ -286097,7 +285748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5400333, "featuredRunMedia": null, "reactionVideos": [], @@ -286125,7 +285776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5400934, "featuredRunMedia": null, "reactionVideos": [], @@ -286153,7 +285804,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 5402859, "featuredRunMedia": null, "reactionVideos": [], @@ -286191,7 +285842,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 5403359, "featuredRunMedia": null, "reactionVideos": [], @@ -286219,7 +285870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 5404186, "featuredRunMedia": null, "reactionVideos": [], @@ -286247,7 +285898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 5408703, "featuredRunMedia": null, "reactionVideos": [], @@ -286275,7 +285926,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 5409685, "featuredRunMedia": null, "reactionVideos": [], @@ -286303,7 +285954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 228, + "teamId": "1855", "time": 5411102, "featuredRunMedia": null, "reactionVideos": [], @@ -286331,7 +285982,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5411300, "featuredRunMedia": null, "reactionVideos": [], @@ -286369,7 +286020,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 5416470, "featuredRunMedia": null, "reactionVideos": [], @@ -286407,7 +286058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5418552, "featuredRunMedia": null, "reactionVideos": [], @@ -286435,7 +286086,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 5419261, "featuredRunMedia": null, "reactionVideos": [], @@ -286463,7 +286114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 5420358, "featuredRunMedia": null, "reactionVideos": [], @@ -286491,7 +286142,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 5421455, "featuredRunMedia": null, "reactionVideos": [], @@ -286519,7 +286170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 5421751, "featuredRunMedia": null, "reactionVideos": [], @@ -286557,7 +286208,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "1156", "time": 5424939, "featuredRunMedia": null, "reactionVideos": [], @@ -286585,7 +286236,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5426427, "featuredRunMedia": null, "reactionVideos": [], @@ -286623,7 +286274,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5426611, "featuredRunMedia": null, "reactionVideos": [], @@ -286651,7 +286302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5428219, "featuredRunMedia": null, "reactionVideos": [], @@ -286679,7 +286330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 129, + "teamId": "3143", "time": 5429480, "featuredRunMedia": null, "reactionVideos": [], @@ -286707,7 +286358,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5432864, "featuredRunMedia": null, "reactionVideos": [], @@ -286745,7 +286396,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5434345, "featuredRunMedia": null, "reactionVideos": [], @@ -286773,7 +286424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5440574, "featuredRunMedia": null, "reactionVideos": [], @@ -286811,7 +286462,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5443380, "featuredRunMedia": null, "reactionVideos": [], @@ -286839,7 +286490,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 5444076, "featuredRunMedia": null, "reactionVideos": [], @@ -286877,7 +286528,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 5448434, "featuredRunMedia": null, "reactionVideos": [], @@ -286915,7 +286566,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5450529, "featuredRunMedia": null, "reactionVideos": [], @@ -286943,7 +286594,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 5451167, "featuredRunMedia": null, "reactionVideos": [], @@ -286971,7 +286622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5451212, "featuredRunMedia": null, "reactionVideos": [], @@ -286999,7 +286650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5451295, "featuredRunMedia": null, "reactionVideos": [], @@ -287027,7 +286678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5451440, "featuredRunMedia": null, "reactionVideos": [], @@ -287055,7 +286706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5453692, "featuredRunMedia": null, "reactionVideos": [], @@ -287093,7 +286744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 5457038, "featuredRunMedia": null, "reactionVideos": [], @@ -287121,7 +286772,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 5459620, "featuredRunMedia": null, "reactionVideos": [], @@ -287149,7 +286800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5460167, "featuredRunMedia": null, "reactionVideos": [], @@ -287182,7 +286833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 242, + "teamId": "3056", "time": 5464505, "featuredRunMedia": null, "reactionVideos": [], @@ -287215,7 +286866,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 5464742, "featuredRunMedia": null, "reactionVideos": [], @@ -287253,7 +286904,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5466737, "featuredRunMedia": null, "reactionVideos": [], @@ -287291,7 +286942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 5471110, "featuredRunMedia": null, "reactionVideos": [], @@ -287319,7 +286970,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 5473604, "featuredRunMedia": null, "reactionVideos": [], @@ -287347,7 +286998,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 5474685, "featuredRunMedia": null, "reactionVideos": [], @@ -287375,7 +287026,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 5474886, "featuredRunMedia": null, "reactionVideos": [], @@ -287403,7 +287054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5476680, "featuredRunMedia": null, "reactionVideos": [], @@ -287441,7 +287092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5480382, "featuredRunMedia": null, "reactionVideos": [], @@ -287479,7 +287130,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5481368, "featuredRunMedia": null, "reactionVideos": [], @@ -287517,7 +287168,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 254, + "teamId": "1442", "time": 5482480, "featuredRunMedia": null, "reactionVideos": [], @@ -287555,7 +287206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5487607, "featuredRunMedia": null, "reactionVideos": [], @@ -287581,7 +287232,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 162, + "teamId": "2156", "time": 5487629, "featuredRunMedia": null, "reactionVideos": [], @@ -287609,7 +287260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 228, + "teamId": "1855", "time": 5487753, "featuredRunMedia": null, "reactionVideos": [], @@ -287647,7 +287298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5488375, "featuredRunMedia": null, "reactionVideos": [], @@ -287675,7 +287326,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 5489134, "featuredRunMedia": null, "reactionVideos": [], @@ -287703,7 +287354,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "1152", "time": 5489996, "featuredRunMedia": null, "reactionVideos": [], @@ -287731,7 +287382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 94, + "teamId": "2744", "time": 5490579, "featuredRunMedia": null, "reactionVideos": [], @@ -287759,7 +287410,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 5490606, "featuredRunMedia": null, "reactionVideos": [], @@ -287787,7 +287438,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5491823, "featuredRunMedia": null, "reactionVideos": [], @@ -287825,7 +287476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 5492043, "featuredRunMedia": null, "reactionVideos": [], @@ -287853,7 +287504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 5498875, "featuredRunMedia": null, "reactionVideos": [], @@ -287891,7 +287542,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5498974, "featuredRunMedia": null, "reactionVideos": [], @@ -287919,7 +287570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5502915, "featuredRunMedia": null, "reactionVideos": [], @@ -287947,7 +287598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 341, + "teamId": "2046", "time": 5503202, "featuredRunMedia": null, "reactionVideos": [], @@ -287975,7 +287626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 5505624, "featuredRunMedia": null, "reactionVideos": [], @@ -288003,7 +287654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 56, + "teamId": "2956", "time": 5506008, "featuredRunMedia": null, "reactionVideos": [], @@ -288041,7 +287692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 5507452, "featuredRunMedia": null, "reactionVideos": [], @@ -288079,7 +287730,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 5511057, "featuredRunMedia": null, "reactionVideos": [], @@ -288117,7 +287768,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 5514711, "featuredRunMedia": null, "reactionVideos": [], @@ -288155,7 +287806,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5514787, "featuredRunMedia": null, "reactionVideos": [], @@ -288183,7 +287834,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 5515058, "featuredRunMedia": null, "reactionVideos": [], @@ -288211,7 +287862,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 5515208, "featuredRunMedia": null, "reactionVideos": [], @@ -288239,7 +287890,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 5515515, "featuredRunMedia": null, "reactionVideos": [], @@ -288277,7 +287928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 5516064, "featuredRunMedia": null, "reactionVideos": [], @@ -288303,7 +287954,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 130, + "teamId": "2043", "time": 5516394, "featuredRunMedia": null, "reactionVideos": [], @@ -288341,7 +287992,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 5517423, "featuredRunMedia": null, "reactionVideos": [], @@ -288369,7 +288020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 5519659, "featuredRunMedia": null, "reactionVideos": [], @@ -288397,7 +288048,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5521747, "featuredRunMedia": null, "reactionVideos": [], @@ -288425,7 +288076,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5522374, "featuredRunMedia": null, "reactionVideos": [], @@ -288463,7 +288114,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 5527121, "featuredRunMedia": null, "reactionVideos": [], @@ -288491,7 +288142,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5527809, "featuredRunMedia": null, "reactionVideos": [], @@ -288519,7 +288170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 5528626, "featuredRunMedia": null, "reactionVideos": [], @@ -288557,7 +288208,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 5529430, "featuredRunMedia": null, "reactionVideos": [], @@ -288585,7 +288236,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5530732, "featuredRunMedia": null, "reactionVideos": [], @@ -288611,7 +288262,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 238, + "teamId": "2151", "time": 5532357, "featuredRunMedia": null, "reactionVideos": [], @@ -288639,7 +288290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "3050", "time": 5534717, "featuredRunMedia": null, "reactionVideos": [], @@ -288667,7 +288318,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5535096, "featuredRunMedia": null, "reactionVideos": [], @@ -288705,7 +288356,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5540055, "featuredRunMedia": null, "reactionVideos": [], @@ -288743,7 +288394,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 5540390, "featuredRunMedia": null, "reactionVideos": [], @@ -288771,7 +288422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5543549, "featuredRunMedia": null, "reactionVideos": [], @@ -288809,7 +288460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 5544116, "featuredRunMedia": null, "reactionVideos": [], @@ -288847,7 +288498,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5546079, "featuredRunMedia": null, "reactionVideos": [], @@ -288875,7 +288526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5546121, "featuredRunMedia": null, "reactionVideos": [], @@ -288903,7 +288554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5546820, "featuredRunMedia": null, "reactionVideos": [], @@ -288931,7 +288582,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5546868, "featuredRunMedia": null, "reactionVideos": [], @@ -288959,7 +288610,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 5550237, "featuredRunMedia": null, "reactionVideos": [], @@ -288997,7 +288648,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5554072, "featuredRunMedia": null, "reactionVideos": [], @@ -289025,7 +288676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5557908, "featuredRunMedia": null, "reactionVideos": [], @@ -289063,7 +288714,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5562084, "featuredRunMedia": null, "reactionVideos": [], @@ -289089,7 +288740,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 1, + "teamId": "2847", "time": 5564592, "featuredRunMedia": null, "reactionVideos": [], @@ -289117,7 +288768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5564863, "featuredRunMedia": null, "reactionVideos": [], @@ -289155,7 +288806,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "1644", "time": 5565493, "featuredRunMedia": null, "reactionVideos": [], @@ -289193,7 +288844,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "1147", "time": 5566658, "featuredRunMedia": null, "reactionVideos": [], @@ -289231,7 +288882,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 5567037, "featuredRunMedia": null, "reactionVideos": [], @@ -289259,7 +288910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5567347, "featuredRunMedia": null, "reactionVideos": [], @@ -289297,7 +288948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 5573471, "featuredRunMedia": null, "reactionVideos": [], @@ -289325,7 +288976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 5574993, "featuredRunMedia": null, "reactionVideos": [], @@ -289363,7 +289014,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 5576080, "featuredRunMedia": null, "reactionVideos": [], @@ -289401,7 +289052,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 5576882, "featuredRunMedia": null, "reactionVideos": [], @@ -289429,7 +289080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5582559, "featuredRunMedia": null, "reactionVideos": [], @@ -289457,7 +289108,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5583524, "featuredRunMedia": null, "reactionVideos": [], @@ -289485,7 +289136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5587016, "featuredRunMedia": null, "reactionVideos": [], @@ -289523,7 +289174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5588199, "featuredRunMedia": null, "reactionVideos": [], @@ -289561,7 +289212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5590112, "featuredRunMedia": null, "reactionVideos": [], @@ -289589,7 +289240,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5590746, "featuredRunMedia": null, "reactionVideos": [], @@ -289617,7 +289268,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 321, + "teamId": "3054", "time": 5591638, "featuredRunMedia": null, "reactionVideos": [], @@ -289645,7 +289296,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5594330, "featuredRunMedia": null, "reactionVideos": [], @@ -289683,7 +289334,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 5597031, "featuredRunMedia": null, "reactionVideos": [], @@ -289711,7 +289362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5600606, "featuredRunMedia": null, "reactionVideos": [], @@ -289739,7 +289390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 5608379, "featuredRunMedia": null, "reactionVideos": [], @@ -289767,7 +289418,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5610615, "featuredRunMedia": null, "reactionVideos": [], @@ -289805,7 +289456,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 5615093, "featuredRunMedia": null, "reactionVideos": [], @@ -289833,7 +289484,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5617726, "featuredRunMedia": null, "reactionVideos": [], @@ -289861,7 +289512,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5618437, "featuredRunMedia": null, "reactionVideos": [], @@ -289887,7 +289538,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "2453", "time": 5621463, "featuredRunMedia": null, "reactionVideos": [], @@ -289915,7 +289566,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 5623694, "featuredRunMedia": null, "reactionVideos": [], @@ -289953,7 +289604,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 5625003, "featuredRunMedia": null, "reactionVideos": [], @@ -289981,7 +289632,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "1450", "time": 5626550, "featuredRunMedia": null, "reactionVideos": [], @@ -290009,7 +289660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5632400, "featuredRunMedia": null, "reactionVideos": [], @@ -290037,7 +289688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5633259, "featuredRunMedia": null, "reactionVideos": [], @@ -290065,7 +289716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5633453, "featuredRunMedia": null, "reactionVideos": [], @@ -290103,7 +289754,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5634721, "featuredRunMedia": null, "reactionVideos": [], @@ -290131,7 +289782,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5634732, "featuredRunMedia": null, "reactionVideos": [], @@ -290169,7 +289820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "3142", "time": 5635408, "featuredRunMedia": null, "reactionVideos": [], @@ -290197,7 +289848,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 5637101, "featuredRunMedia": null, "reactionVideos": [], @@ -290235,7 +289886,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5638683, "featuredRunMedia": null, "reactionVideos": [], @@ -290273,7 +289924,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5638719, "featuredRunMedia": null, "reactionVideos": [], @@ -290299,7 +289950,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 6, + "teamId": "2453", "time": 5640508, "featuredRunMedia": null, "reactionVideos": [], @@ -290337,7 +289988,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 5644115, "featuredRunMedia": null, "reactionVideos": [], @@ -290365,7 +290016,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 51, + "teamId": "1547", "time": 5645123, "featuredRunMedia": null, "reactionVideos": [], @@ -290393,7 +290044,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5646003, "featuredRunMedia": null, "reactionVideos": [], @@ -290431,7 +290082,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 5647282, "featuredRunMedia": null, "reactionVideos": [], @@ -290469,7 +290120,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 5648023, "featuredRunMedia": null, "reactionVideos": [], @@ -290507,7 +290158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5652159, "featuredRunMedia": null, "reactionVideos": [], @@ -290545,7 +290196,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5652990, "featuredRunMedia": null, "reactionVideos": [], @@ -290583,7 +290234,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5658180, "featuredRunMedia": null, "reactionVideos": [], @@ -290611,7 +290262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 5659135, "featuredRunMedia": null, "reactionVideos": [], @@ -290639,7 +290290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5660242, "featuredRunMedia": null, "reactionVideos": [], @@ -290667,7 +290318,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 5670396, "featuredRunMedia": null, "reactionVideos": [], @@ -290705,7 +290356,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5670415, "featuredRunMedia": null, "reactionVideos": [], @@ -290733,7 +290384,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5670740, "featuredRunMedia": null, "reactionVideos": [], @@ -290761,7 +290412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 25, + "teamId": "2843", "time": 5670922, "featuredRunMedia": null, "reactionVideos": [], @@ -290787,7 +290438,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 5671291, "featuredRunMedia": null, "reactionVideos": [], @@ -290825,7 +290476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 5672323, "featuredRunMedia": null, "reactionVideos": [], @@ -290853,7 +290504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 5672950, "featuredRunMedia": null, "reactionVideos": [], @@ -290881,7 +290532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 5675299, "featuredRunMedia": null, "reactionVideos": [], @@ -290919,7 +290570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 5677272, "featuredRunMedia": null, "reactionVideos": [], @@ -290947,7 +290598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5679055, "featuredRunMedia": null, "reactionVideos": [], @@ -290985,7 +290636,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5679169, "featuredRunMedia": null, "reactionVideos": [], @@ -291023,7 +290674,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 5680694, "featuredRunMedia": null, "reactionVideos": [], @@ -291051,7 +290702,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5681113, "featuredRunMedia": null, "reactionVideos": [], @@ -291089,7 +290740,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 5681468, "featuredRunMedia": null, "reactionVideos": [], @@ -291117,7 +290768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 5681830, "featuredRunMedia": null, "reactionVideos": [], @@ -291145,7 +290796,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "2252", "time": 5682759, "featuredRunMedia": null, "reactionVideos": [], @@ -291183,7 +290834,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5683973, "featuredRunMedia": null, "reactionVideos": [], @@ -291211,7 +290862,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5684199, "featuredRunMedia": null, "reactionVideos": [], @@ -291239,7 +290890,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 5688523, "featuredRunMedia": null, "reactionVideos": [], @@ -291267,7 +290918,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5690116, "featuredRunMedia": null, "reactionVideos": [], @@ -291305,7 +290956,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5694504, "featuredRunMedia": null, "reactionVideos": [], @@ -291343,7 +290994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5697669, "featuredRunMedia": null, "reactionVideos": [], @@ -291371,7 +291022,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5697811, "featuredRunMedia": null, "reactionVideos": [], @@ -291409,7 +291060,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 5699181, "featuredRunMedia": null, "reactionVideos": [], @@ -291437,7 +291088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 5699382, "featuredRunMedia": null, "reactionVideos": [], @@ -291465,7 +291116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 5700849, "featuredRunMedia": null, "reactionVideos": [], @@ -291493,7 +291144,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 5701550, "featuredRunMedia": null, "reactionVideos": [], @@ -291531,7 +291182,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 122, + "teamId": "2145", "time": 5702169, "featuredRunMedia": null, "reactionVideos": [], @@ -291559,7 +291210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 5703437, "featuredRunMedia": null, "reactionVideos": [], @@ -291587,7 +291238,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5704066, "featuredRunMedia": null, "reactionVideos": [], @@ -291615,7 +291266,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "2055", "time": 5706422, "featuredRunMedia": null, "reactionVideos": [], @@ -291643,7 +291294,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5709006, "featuredRunMedia": null, "reactionVideos": [], @@ -291665,7 +291316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5717125, "featuredRunMedia": null, "reactionVideos": [], @@ -291693,7 +291344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 5720815, "featuredRunMedia": null, "reactionVideos": [], @@ -291721,7 +291372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5725560, "featuredRunMedia": null, "reactionVideos": [], @@ -291749,7 +291400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 5725972, "featuredRunMedia": null, "reactionVideos": [], @@ -291777,7 +291428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 5727872, "featuredRunMedia": null, "reactionVideos": [], @@ -291815,7 +291466,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 5736052, "featuredRunMedia": null, "reactionVideos": [], @@ -291853,7 +291504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5739505, "featuredRunMedia": null, "reactionVideos": [], @@ -291881,7 +291532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 5741558, "featuredRunMedia": null, "reactionVideos": [], @@ -291909,7 +291560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 5742279, "featuredRunMedia": null, "reactionVideos": [], @@ -291937,7 +291588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5743130, "featuredRunMedia": null, "reactionVideos": [], @@ -291965,7 +291616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5743835, "featuredRunMedia": null, "reactionVideos": [], @@ -291993,7 +291644,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "2144", "time": 5744274, "featuredRunMedia": null, "reactionVideos": [], @@ -292031,7 +291682,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5746485, "featuredRunMedia": null, "reactionVideos": [], @@ -292059,7 +291710,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 5748010, "featuredRunMedia": null, "reactionVideos": [], @@ -292092,7 +291743,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 5753391, "featuredRunMedia": null, "reactionVideos": [], @@ -292114,7 +291765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5754668, "featuredRunMedia": null, "reactionVideos": [], @@ -292142,7 +291793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 5755807, "featuredRunMedia": null, "reactionVideos": [], @@ -292180,7 +291831,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 5756575, "featuredRunMedia": null, "reactionVideos": [], @@ -292218,7 +291869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 5760969, "featuredRunMedia": null, "reactionVideos": [], @@ -292246,7 +291897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 5762357, "featuredRunMedia": null, "reactionVideos": [], @@ -292284,7 +291935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5763331, "featuredRunMedia": null, "reactionVideos": [], @@ -292322,7 +291973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 5765010, "featuredRunMedia": null, "reactionVideos": [], @@ -292360,7 +292011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 5766395, "featuredRunMedia": null, "reactionVideos": [], @@ -292382,7 +292033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5766645, "featuredRunMedia": null, "reactionVideos": [], @@ -292410,7 +292061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 5766934, "featuredRunMedia": null, "reactionVideos": [], @@ -292448,7 +292099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 5768035, "featuredRunMedia": null, "reactionVideos": [], @@ -292476,7 +292127,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 5769353, "featuredRunMedia": null, "reactionVideos": [], @@ -292504,7 +292155,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5770564, "featuredRunMedia": null, "reactionVideos": [], @@ -292537,7 +292188,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 5773370, "featuredRunMedia": null, "reactionVideos": [], @@ -292565,7 +292216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5777528, "featuredRunMedia": null, "reactionVideos": [], @@ -292593,7 +292244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 5777970, "featuredRunMedia": null, "reactionVideos": [], @@ -292631,7 +292282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 5778409, "featuredRunMedia": null, "reactionVideos": [], @@ -292669,7 +292320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 5780603, "featuredRunMedia": null, "reactionVideos": [], @@ -292697,7 +292348,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5782678, "featuredRunMedia": null, "reactionVideos": [], @@ -292735,7 +292386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 5783025, "featuredRunMedia": null, "reactionVideos": [], @@ -292763,7 +292414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 5784094, "featuredRunMedia": null, "reactionVideos": [], @@ -292801,7 +292452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5785491, "featuredRunMedia": null, "reactionVideos": [], @@ -292829,7 +292480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "1450", "time": 5790372, "featuredRunMedia": null, "reactionVideos": [], @@ -292862,7 +292513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "2146", "time": 5792618, "featuredRunMedia": null, "reactionVideos": [], @@ -292890,7 +292541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 5794277, "featuredRunMedia": null, "reactionVideos": [], @@ -292918,7 +292569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 5797249, "featuredRunMedia": null, "reactionVideos": [], @@ -292946,7 +292597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 5804415, "featuredRunMedia": null, "reactionVideos": [], @@ -292974,7 +292625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5805386, "featuredRunMedia": null, "reactionVideos": [], @@ -293012,7 +292663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5807117, "featuredRunMedia": null, "reactionVideos": [], @@ -293040,7 +292691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5807465, "featuredRunMedia": null, "reactionVideos": [], @@ -293068,7 +292719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5808416, "featuredRunMedia": null, "reactionVideos": [], @@ -293096,7 +292747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5808823, "featuredRunMedia": null, "reactionVideos": [], @@ -293134,7 +292785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 5809969, "featuredRunMedia": null, "reactionVideos": [], @@ -293172,7 +292823,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "2654", "time": 5810046, "featuredRunMedia": null, "reactionVideos": [], @@ -293210,7 +292861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5811635, "featuredRunMedia": null, "reactionVideos": [], @@ -293238,7 +292889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5812978, "featuredRunMedia": null, "reactionVideos": [], @@ -293266,7 +292917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 5816498, "featuredRunMedia": null, "reactionVideos": [], @@ -293304,7 +292955,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 5817457, "featuredRunMedia": null, "reactionVideos": [], @@ -293342,7 +292993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "1345", "time": 5819408, "featuredRunMedia": null, "reactionVideos": [], @@ -293370,7 +293021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 5820280, "featuredRunMedia": null, "reactionVideos": [], @@ -293392,7 +293043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5820907, "featuredRunMedia": null, "reactionVideos": [], @@ -293430,7 +293081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5822005, "featuredRunMedia": null, "reactionVideos": [], @@ -293458,7 +293109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 5823655, "featuredRunMedia": null, "reactionVideos": [], @@ -293486,7 +293137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 5827256, "featuredRunMedia": null, "reactionVideos": [], @@ -293524,7 +293175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 5829388, "featuredRunMedia": null, "reactionVideos": [], @@ -293562,7 +293213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 5833337, "featuredRunMedia": null, "reactionVideos": [], @@ -293600,7 +293251,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 5833451, "featuredRunMedia": null, "reactionVideos": [], @@ -293628,7 +293279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5835003, "featuredRunMedia": null, "reactionVideos": [], @@ -293656,7 +293307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5836179, "featuredRunMedia": null, "reactionVideos": [], @@ -293684,7 +293335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5837050, "featuredRunMedia": null, "reactionVideos": [], @@ -293722,7 +293373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 54, + "teamId": "2155", "time": 5839099, "featuredRunMedia": null, "reactionVideos": [], @@ -293760,7 +293411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5841873, "featuredRunMedia": null, "reactionVideos": [], @@ -293798,7 +293449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 5843083, "featuredRunMedia": null, "reactionVideos": [], @@ -293826,7 +293477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 5843508, "featuredRunMedia": null, "reactionVideos": [], @@ -293854,7 +293505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 5843736, "featuredRunMedia": null, "reactionVideos": [], @@ -293892,7 +293543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5847001, "featuredRunMedia": null, "reactionVideos": [], @@ -293930,7 +293581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 5847369, "featuredRunMedia": null, "reactionVideos": [], @@ -293968,7 +293619,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 5848455, "featuredRunMedia": null, "reactionVideos": [], @@ -294006,7 +293657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5851154, "featuredRunMedia": null, "reactionVideos": [], @@ -294044,7 +293695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 5852209, "featuredRunMedia": null, "reactionVideos": [], @@ -294072,7 +293723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5854751, "featuredRunMedia": null, "reactionVideos": [], @@ -294100,7 +293751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5857738, "featuredRunMedia": null, "reactionVideos": [], @@ -294128,7 +293779,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 5859203, "featuredRunMedia": null, "reactionVideos": [], @@ -294166,7 +293817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5860256, "featuredRunMedia": null, "reactionVideos": [], @@ -294204,7 +293855,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 5861009, "featuredRunMedia": null, "reactionVideos": [], @@ -294232,7 +293883,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5862103, "featuredRunMedia": null, "reactionVideos": [], @@ -294270,7 +293921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5864538, "featuredRunMedia": null, "reactionVideos": [], @@ -294298,7 +293949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5866763, "featuredRunMedia": null, "reactionVideos": [], @@ -294326,7 +293977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 5869099, "featuredRunMedia": null, "reactionVideos": [], @@ -294354,7 +294005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 5869601, "featuredRunMedia": null, "reactionVideos": [], @@ -294382,7 +294033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 74, + "teamId": "2047", "time": 5869603, "featuredRunMedia": null, "reactionVideos": [], @@ -294420,7 +294071,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 5869766, "featuredRunMedia": null, "reactionVideos": [], @@ -294448,7 +294099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 21, + "teamId": "1145", "time": 5870010, "featuredRunMedia": null, "reactionVideos": [], @@ -294476,7 +294127,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5870368, "featuredRunMedia": null, "reactionVideos": [], @@ -294498,7 +294149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 5873529, "featuredRunMedia": null, "reactionVideos": [], @@ -294526,7 +294177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 5874212, "featuredRunMedia": null, "reactionVideos": [], @@ -294548,7 +294199,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5876761, "featuredRunMedia": null, "reactionVideos": [], @@ -294586,7 +294237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5878063, "featuredRunMedia": null, "reactionVideos": [], @@ -294614,7 +294265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 5880969, "featuredRunMedia": null, "reactionVideos": [], @@ -294642,7 +294293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 5888792, "featuredRunMedia": null, "reactionVideos": [], @@ -294670,7 +294321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5891145, "featuredRunMedia": null, "reactionVideos": [], @@ -294698,7 +294349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 5894714, "featuredRunMedia": null, "reactionVideos": [], @@ -294726,7 +294377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 5897035, "featuredRunMedia": null, "reactionVideos": [], @@ -294754,7 +294405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5898012, "featuredRunMedia": null, "reactionVideos": [], @@ -294792,7 +294443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 5899081, "featuredRunMedia": null, "reactionVideos": [], @@ -294830,7 +294481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 5899576, "featuredRunMedia": null, "reactionVideos": [], @@ -294858,7 +294509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5901159, "featuredRunMedia": null, "reactionVideos": [], @@ -294891,7 +294542,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 5902479, "featuredRunMedia": null, "reactionVideos": [], @@ -294929,7 +294580,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 202, + "teamId": "2541", "time": 5904870, "featuredRunMedia": null, "reactionVideos": [], @@ -294957,7 +294608,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 5905972, "featuredRunMedia": null, "reactionVideos": [], @@ -294995,7 +294646,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5908955, "featuredRunMedia": null, "reactionVideos": [], @@ -295023,7 +294674,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 5910539, "featuredRunMedia": null, "reactionVideos": [], @@ -295051,7 +294702,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 5913761, "featuredRunMedia": null, "reactionVideos": [], @@ -295079,7 +294730,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 5914013, "featuredRunMedia": null, "reactionVideos": [], @@ -295107,7 +294758,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 5914485, "featuredRunMedia": null, "reactionVideos": [], @@ -295145,7 +294796,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 5914778, "featuredRunMedia": null, "reactionVideos": [], @@ -295173,7 +294824,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5915558, "featuredRunMedia": null, "reactionVideos": [], @@ -295201,7 +294852,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 5916028, "featuredRunMedia": null, "reactionVideos": [], @@ -295229,7 +294880,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 52, + "teamId": "2346", "time": 5919179, "featuredRunMedia": null, "reactionVideos": [], @@ -295267,7 +294918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 5919256, "featuredRunMedia": null, "reactionVideos": [], @@ -295295,7 +294946,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 5922681, "featuredRunMedia": null, "reactionVideos": [], @@ -295323,7 +294974,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5923388, "featuredRunMedia": null, "reactionVideos": [], @@ -295349,7 +295000,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 5923864, "featuredRunMedia": null, "reactionVideos": [], @@ -295377,7 +295028,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 5924839, "featuredRunMedia": null, "reactionVideos": [], @@ -295415,7 +295066,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 5925587, "featuredRunMedia": null, "reactionVideos": [], @@ -295443,7 +295094,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 5926972, "featuredRunMedia": null, "reactionVideos": [], @@ -295471,7 +295122,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "2144", "time": 5928366, "featuredRunMedia": null, "reactionVideos": [], @@ -295499,7 +295150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5928616, "featuredRunMedia": null, "reactionVideos": [], @@ -295527,7 +295178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5928852, "featuredRunMedia": null, "reactionVideos": [], @@ -295555,7 +295206,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 5932179, "featuredRunMedia": null, "reactionVideos": [], @@ -295583,7 +295234,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 5938148, "featuredRunMedia": null, "reactionVideos": [], @@ -295616,7 +295267,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 5939297, "featuredRunMedia": null, "reactionVideos": [], @@ -295644,7 +295295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 5939852, "featuredRunMedia": null, "reactionVideos": [], @@ -295672,7 +295323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5942637, "featuredRunMedia": null, "reactionVideos": [], @@ -295700,7 +295351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 82, + "teamId": "2553", "time": 5942918, "featuredRunMedia": null, "reactionVideos": [], @@ -295728,7 +295379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 5943002, "featuredRunMedia": null, "reactionVideos": [], @@ -295756,7 +295407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 5944154, "featuredRunMedia": null, "reactionVideos": [], @@ -295784,7 +295435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 5944804, "featuredRunMedia": null, "reactionVideos": [], @@ -295812,7 +295463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5945270, "featuredRunMedia": null, "reactionVideos": [], @@ -295850,7 +295501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 5949437, "featuredRunMedia": null, "reactionVideos": [], @@ -295878,7 +295529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5949732, "featuredRunMedia": null, "reactionVideos": [], @@ -295916,7 +295567,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 5952871, "featuredRunMedia": null, "reactionVideos": [], @@ -295944,7 +295595,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 17, + "teamId": "1953", "time": 5955250, "featuredRunMedia": null, "reactionVideos": [], @@ -295982,7 +295633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 5958964, "featuredRunMedia": null, "reactionVideos": [], @@ -296015,7 +295666,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 5960325, "featuredRunMedia": null, "reactionVideos": [], @@ -296043,7 +295694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 5960504, "featuredRunMedia": null, "reactionVideos": [], @@ -296071,7 +295722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5961157, "featuredRunMedia": null, "reactionVideos": [], @@ -296099,7 +295750,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 5961538, "featuredRunMedia": null, "reactionVideos": [], @@ -296137,7 +295788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 5962428, "featuredRunMedia": null, "reactionVideos": [], @@ -296165,7 +295816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 5964563, "featuredRunMedia": null, "reactionVideos": [], @@ -296193,7 +295844,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 5965018, "featuredRunMedia": null, "reactionVideos": [], @@ -296221,7 +295872,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 5965554, "featuredRunMedia": null, "reactionVideos": [], @@ -296259,7 +295910,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 5965824, "featuredRunMedia": null, "reactionVideos": [], @@ -296292,7 +295943,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 5966805, "featuredRunMedia": null, "reactionVideos": [], @@ -296320,7 +295971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 5967614, "featuredRunMedia": null, "reactionVideos": [], @@ -296348,7 +295999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 5969038, "featuredRunMedia": null, "reactionVideos": [], @@ -296376,7 +296027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 5973923, "featuredRunMedia": null, "reactionVideos": [], @@ -296414,7 +296065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 5973939, "featuredRunMedia": null, "reactionVideos": [], @@ -296442,7 +296093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 5974852, "featuredRunMedia": null, "reactionVideos": [], @@ -296470,7 +296121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5975586, "featuredRunMedia": null, "reactionVideos": [], @@ -296498,7 +296149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 5976063, "featuredRunMedia": null, "reactionVideos": [], @@ -296526,7 +296177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 5977742, "featuredRunMedia": null, "reactionVideos": [], @@ -296564,7 +296215,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 5978404, "featuredRunMedia": null, "reactionVideos": [], @@ -296592,7 +296243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 5980233, "featuredRunMedia": null, "reactionVideos": [], @@ -296620,7 +296271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 5981200, "featuredRunMedia": null, "reactionVideos": [], @@ -296658,7 +296309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 5981772, "featuredRunMedia": null, "reactionVideos": [], @@ -296686,7 +296337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 5983139, "featuredRunMedia": null, "reactionVideos": [], @@ -296714,7 +296365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 5983547, "featuredRunMedia": null, "reactionVideos": [], @@ -296742,7 +296393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 5988588, "featuredRunMedia": null, "reactionVideos": [], @@ -296780,7 +296431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 5989925, "featuredRunMedia": null, "reactionVideos": [], @@ -296808,7 +296459,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 5993133, "featuredRunMedia": null, "reactionVideos": [], @@ -296836,7 +296487,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 5995274, "featuredRunMedia": null, "reactionVideos": [], @@ -296864,7 +296515,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 5998069, "featuredRunMedia": null, "reactionVideos": [], @@ -296892,7 +296543,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 5999661, "featuredRunMedia": null, "reactionVideos": [], @@ -296918,7 +296569,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 6001194, "featuredRunMedia": null, "reactionVideos": [], @@ -296946,7 +296597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 6005429, "featuredRunMedia": null, "reactionVideos": [], @@ -296984,7 +296635,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 6007632, "featuredRunMedia": null, "reactionVideos": [], @@ -297017,7 +296668,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6008673, "featuredRunMedia": null, "reactionVideos": [], @@ -297045,7 +296696,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 6010434, "featuredRunMedia": null, "reactionVideos": [], @@ -297083,7 +296734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "2644", "time": 6011053, "featuredRunMedia": null, "reactionVideos": [], @@ -297111,7 +296762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 6011380, "featuredRunMedia": null, "reactionVideos": [], @@ -297139,7 +296790,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 6011699, "featuredRunMedia": null, "reactionVideos": [], @@ -297167,7 +296818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6012530, "featuredRunMedia": null, "reactionVideos": [], @@ -297200,7 +296851,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 6014729, "featuredRunMedia": null, "reactionVideos": [], @@ -297238,7 +296889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6017048, "featuredRunMedia": null, "reactionVideos": [], @@ -297276,7 +296927,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "1156", "time": 6020387, "featuredRunMedia": null, "reactionVideos": [], @@ -297304,7 +296955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6020680, "featuredRunMedia": null, "reactionVideos": [], @@ -297337,7 +296988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 6021234, "featuredRunMedia": null, "reactionVideos": [], @@ -297365,7 +297016,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 6023941, "featuredRunMedia": null, "reactionVideos": [], @@ -297403,7 +297054,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 6025869, "featuredRunMedia": null, "reactionVideos": [], @@ -297431,7 +297082,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 6028140, "featuredRunMedia": null, "reactionVideos": [], @@ -297469,7 +297120,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 6028724, "featuredRunMedia": null, "reactionVideos": [], @@ -297507,7 +297158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6028921, "featuredRunMedia": null, "reactionVideos": [], @@ -297535,7 +297186,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 6033594, "featuredRunMedia": null, "reactionVideos": [], @@ -297573,7 +297224,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 6033785, "featuredRunMedia": null, "reactionVideos": [], @@ -297611,7 +297262,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6036048, "featuredRunMedia": null, "reactionVideos": [], @@ -297639,7 +297290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6036272, "featuredRunMedia": null, "reactionVideos": [], @@ -297677,7 +297328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 6037099, "featuredRunMedia": null, "reactionVideos": [], @@ -297705,7 +297356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 6037414, "featuredRunMedia": null, "reactionVideos": [], @@ -297743,7 +297394,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 6037536, "featuredRunMedia": null, "reactionVideos": [], @@ -297771,7 +297422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 6038951, "featuredRunMedia": null, "reactionVideos": [], @@ -297809,7 +297460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 6039184, "featuredRunMedia": null, "reactionVideos": [], @@ -297837,7 +297488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 6039317, "featuredRunMedia": null, "reactionVideos": [], @@ -297875,7 +297526,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6040386, "featuredRunMedia": null, "reactionVideos": [], @@ -297913,7 +297564,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6040524, "featuredRunMedia": null, "reactionVideos": [], @@ -297939,7 +297590,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 6046036, "featuredRunMedia": null, "reactionVideos": [], @@ -297977,7 +297628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6048033, "featuredRunMedia": null, "reactionVideos": [], @@ -298015,7 +297666,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6048343, "featuredRunMedia": null, "reactionVideos": [], @@ -298053,7 +297704,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 6048971, "featuredRunMedia": null, "reactionVideos": [], @@ -298081,7 +297732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6052008, "featuredRunMedia": null, "reactionVideos": [], @@ -298119,7 +297770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6053379, "featuredRunMedia": null, "reactionVideos": [], @@ -298157,7 +297808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 6056550, "featuredRunMedia": null, "reactionVideos": [], @@ -298183,7 +297834,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 6057483, "featuredRunMedia": null, "reactionVideos": [], @@ -298211,7 +297862,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 6060907, "featuredRunMedia": null, "reactionVideos": [], @@ -298249,7 +297900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 6061719, "featuredRunMedia": null, "reactionVideos": [], @@ -298282,7 +297933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "2146", "time": 6064852, "featuredRunMedia": null, "reactionVideos": [], @@ -298310,7 +297961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 6069997, "featuredRunMedia": null, "reactionVideos": [], @@ -298338,7 +297989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6071438, "featuredRunMedia": null, "reactionVideos": [], @@ -298376,7 +298027,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6072873, "featuredRunMedia": null, "reactionVideos": [], @@ -298404,7 +298055,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 6075087, "featuredRunMedia": null, "reactionVideos": [], @@ -298432,7 +298083,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6078654, "featuredRunMedia": null, "reactionVideos": [], @@ -298460,7 +298111,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 6078670, "featuredRunMedia": null, "reactionVideos": [], @@ -298498,7 +298149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 6081250, "featuredRunMedia": null, "reactionVideos": [], @@ -298526,7 +298177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6081461, "featuredRunMedia": null, "reactionVideos": [], @@ -298564,7 +298215,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "1644", "time": 6081690, "featuredRunMedia": null, "reactionVideos": [], @@ -298602,7 +298253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 6083773, "featuredRunMedia": null, "reactionVideos": [], @@ -298630,7 +298281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 6085819, "featuredRunMedia": null, "reactionVideos": [], @@ -298668,7 +298319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 6087166, "featuredRunMedia": null, "reactionVideos": [], @@ -298706,7 +298357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6087832, "featuredRunMedia": null, "reactionVideos": [], @@ -298734,7 +298385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6088531, "featuredRunMedia": null, "reactionVideos": [], @@ -298762,7 +298413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 6089972, "featuredRunMedia": null, "reactionVideos": [], @@ -298790,7 +298441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 6091883, "featuredRunMedia": null, "reactionVideos": [], @@ -298818,7 +298469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 6092103, "featuredRunMedia": null, "reactionVideos": [], @@ -298856,7 +298507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6092908, "featuredRunMedia": null, "reactionVideos": [], @@ -298884,7 +298535,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6096410, "featuredRunMedia": null, "reactionVideos": [], @@ -298922,7 +298573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 6101000, "featuredRunMedia": null, "reactionVideos": [], @@ -298950,7 +298601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 6101010, "featuredRunMedia": null, "reactionVideos": [], @@ -298978,7 +298629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6101586, "featuredRunMedia": null, "reactionVideos": [], @@ -299006,7 +298657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6102203, "featuredRunMedia": null, "reactionVideos": [], @@ -299034,7 +298685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 6102541, "featuredRunMedia": null, "reactionVideos": [], @@ -299072,7 +298723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 6104876, "featuredRunMedia": null, "reactionVideos": [], @@ -299110,7 +298761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6105138, "featuredRunMedia": null, "reactionVideos": [], @@ -299138,7 +298789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6105242, "featuredRunMedia": null, "reactionVideos": [], @@ -299166,7 +298817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 6106901, "featuredRunMedia": null, "reactionVideos": [], @@ -299194,7 +298845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 6108934, "featuredRunMedia": null, "reactionVideos": [], @@ -299222,7 +298873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 6113009, "featuredRunMedia": null, "reactionVideos": [], @@ -299250,7 +298901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6114109, "featuredRunMedia": null, "reactionVideos": [], @@ -299278,7 +298929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 6114454, "featuredRunMedia": null, "reactionVideos": [], @@ -299304,7 +298955,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 6116068, "featuredRunMedia": null, "reactionVideos": [], @@ -299332,7 +298983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 6116799, "featuredRunMedia": null, "reactionVideos": [], @@ -299360,7 +299011,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6118663, "featuredRunMedia": null, "reactionVideos": [], @@ -299388,7 +299039,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 82, + "teamId": "2553", "time": 6119054, "featuredRunMedia": null, "reactionVideos": [], @@ -299414,7 +299065,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "2143", "time": 6119565, "featuredRunMedia": null, "reactionVideos": [], @@ -299442,7 +299093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 6119605, "featuredRunMedia": null, "reactionVideos": [], @@ -299480,7 +299131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 6122619, "featuredRunMedia": null, "reactionVideos": [], @@ -299508,7 +299159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 6123124, "featuredRunMedia": null, "reactionVideos": [], @@ -299536,7 +299187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 6126917, "featuredRunMedia": null, "reactionVideos": [], @@ -299574,7 +299225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 6131156, "featuredRunMedia": null, "reactionVideos": [], @@ -299602,7 +299253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 6131746, "featuredRunMedia": null, "reactionVideos": [], @@ -299630,7 +299281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 6131810, "featuredRunMedia": null, "reactionVideos": [], @@ -299658,7 +299309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6132746, "featuredRunMedia": null, "reactionVideos": [], @@ -299691,7 +299342,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 6134647, "featuredRunMedia": null, "reactionVideos": [], @@ -299719,7 +299370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 6136715, "featuredRunMedia": null, "reactionVideos": [], @@ -299747,7 +299398,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6137152, "featuredRunMedia": null, "reactionVideos": [], @@ -299780,7 +299431,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6137246, "featuredRunMedia": null, "reactionVideos": [], @@ -299818,7 +299469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 6137459, "featuredRunMedia": null, "reactionVideos": [], @@ -299846,7 +299497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 6137822, "featuredRunMedia": null, "reactionVideos": [], @@ -299884,7 +299535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 6138453, "featuredRunMedia": null, "reactionVideos": [], @@ -299912,7 +299563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 6139355, "featuredRunMedia": null, "reactionVideos": [], @@ -299950,7 +299601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 6143905, "featuredRunMedia": null, "reactionVideos": [], @@ -299978,7 +299629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 6145068, "featuredRunMedia": null, "reactionVideos": [], @@ -300016,7 +299667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 6147908, "featuredRunMedia": null, "reactionVideos": [], @@ -300044,7 +299695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6153471, "featuredRunMedia": null, "reactionVideos": [], @@ -300072,7 +299723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 6153820, "featuredRunMedia": null, "reactionVideos": [], @@ -300100,7 +299751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6154749, "featuredRunMedia": null, "reactionVideos": [], @@ -300138,7 +299789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 6157905, "featuredRunMedia": null, "reactionVideos": [], @@ -300160,7 +299811,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "1843", "time": 6158640, "featuredRunMedia": null, "reactionVideos": [], @@ -300188,7 +299839,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 6160508, "featuredRunMedia": null, "reactionVideos": [], @@ -300221,7 +299872,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 6160632, "featuredRunMedia": null, "reactionVideos": [], @@ -300249,7 +299900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6161107, "featuredRunMedia": null, "reactionVideos": [], @@ -300287,7 +299938,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6161360, "featuredRunMedia": null, "reactionVideos": [], @@ -300325,7 +299976,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6161747, "featuredRunMedia": null, "reactionVideos": [], @@ -300353,7 +300004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 6162249, "featuredRunMedia": null, "reactionVideos": [], @@ -300381,7 +300032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6163097, "featuredRunMedia": null, "reactionVideos": [], @@ -300409,7 +300060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6163898, "featuredRunMedia": null, "reactionVideos": [], @@ -300447,7 +300098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 6164155, "featuredRunMedia": null, "reactionVideos": [], @@ -300475,7 +300126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "1943", "time": 6165001, "featuredRunMedia": null, "reactionVideos": [], @@ -300503,7 +300154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6166730, "featuredRunMedia": null, "reactionVideos": [], @@ -300541,7 +300192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 15, + "teamId": "2942", "time": 6169547, "featuredRunMedia": null, "reactionVideos": [], @@ -300579,7 +300230,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 6170671, "featuredRunMedia": null, "reactionVideos": [], @@ -300605,7 +300256,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 6172015, "featuredRunMedia": null, "reactionVideos": [], @@ -300643,7 +300294,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6173277, "featuredRunMedia": null, "reactionVideos": [], @@ -300671,7 +300322,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "3242", "time": 6173681, "featuredRunMedia": null, "reactionVideos": [], @@ -300709,7 +300360,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6175349, "featuredRunMedia": null, "reactionVideos": [], @@ -300737,7 +300388,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 6177307, "featuredRunMedia": null, "reactionVideos": [], @@ -300763,7 +300414,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 307, + "teamId": "2548", "time": 6177903, "featuredRunMedia": null, "reactionVideos": [], @@ -300791,7 +300442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 6181005, "featuredRunMedia": null, "reactionVideos": [], @@ -300819,7 +300470,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 6181035, "featuredRunMedia": null, "reactionVideos": [], @@ -300847,7 +300498,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6181217, "featuredRunMedia": null, "reactionVideos": [], @@ -300885,7 +300536,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 6181618, "featuredRunMedia": null, "reactionVideos": [], @@ -300913,7 +300564,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 6181675, "featuredRunMedia": null, "reactionVideos": [], @@ -300951,7 +300602,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 6182148, "featuredRunMedia": null, "reactionVideos": [], @@ -300989,7 +300640,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6183924, "featuredRunMedia": null, "reactionVideos": [], @@ -301022,7 +300673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 6184722, "featuredRunMedia": null, "reactionVideos": [], @@ -301050,7 +300701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 6185767, "featuredRunMedia": null, "reactionVideos": [], @@ -301078,7 +300729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6186973, "featuredRunMedia": null, "reactionVideos": [], @@ -301116,7 +300767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6187605, "featuredRunMedia": null, "reactionVideos": [], @@ -301144,7 +300795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 6188747, "featuredRunMedia": null, "reactionVideos": [], @@ -301172,7 +300823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 6189037, "featuredRunMedia": null, "reactionVideos": [], @@ -301200,7 +300851,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6190380, "featuredRunMedia": null, "reactionVideos": [], @@ -301228,7 +300879,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 6192501, "featuredRunMedia": null, "reactionVideos": [], @@ -301256,7 +300907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6195087, "featuredRunMedia": null, "reactionVideos": [], @@ -301294,7 +300945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6195698, "featuredRunMedia": null, "reactionVideos": [], @@ -301322,7 +300973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 6195797, "featuredRunMedia": null, "reactionVideos": [], @@ -301350,7 +301001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6197902, "featuredRunMedia": null, "reactionVideos": [], @@ -301388,7 +301039,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6200405, "featuredRunMedia": null, "reactionVideos": [], @@ -301416,7 +301067,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 6200568, "featuredRunMedia": null, "reactionVideos": [], @@ -301449,7 +301100,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 6200796, "featuredRunMedia": null, "reactionVideos": [], @@ -301487,7 +301138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 6201550, "featuredRunMedia": null, "reactionVideos": [], @@ -301515,7 +301166,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 6204132, "featuredRunMedia": null, "reactionVideos": [], @@ -301543,7 +301194,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6204478, "featuredRunMedia": null, "reactionVideos": [], @@ -301581,7 +301232,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 6207788, "featuredRunMedia": null, "reactionVideos": [], @@ -301609,7 +301260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 6208041, "featuredRunMedia": null, "reactionVideos": [], @@ -301647,7 +301298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 6208162, "featuredRunMedia": null, "reactionVideos": [], @@ -301675,7 +301326,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6208460, "featuredRunMedia": null, "reactionVideos": [], @@ -301703,7 +301354,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 6208943, "featuredRunMedia": null, "reactionVideos": [], @@ -301731,7 +301382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 6210094, "featuredRunMedia": null, "reactionVideos": [], @@ -301759,7 +301410,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6210890, "featuredRunMedia": null, "reactionVideos": [], @@ -301787,7 +301438,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 6213240, "featuredRunMedia": null, "reactionVideos": [], @@ -301820,7 +301471,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 6214472, "featuredRunMedia": null, "reactionVideos": [], @@ -301848,7 +301499,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 6216673, "featuredRunMedia": null, "reactionVideos": [], @@ -301886,7 +301537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6217851, "featuredRunMedia": null, "reactionVideos": [], @@ -301914,7 +301565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6219447, "featuredRunMedia": null, "reactionVideos": [], @@ -301952,7 +301603,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6222043, "featuredRunMedia": null, "reactionVideos": [], @@ -301990,7 +301641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 6223776, "featuredRunMedia": null, "reactionVideos": [], @@ -302028,7 +301679,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 6227684, "featuredRunMedia": null, "reactionVideos": [], @@ -302056,7 +301707,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 6228161, "featuredRunMedia": null, "reactionVideos": [], @@ -302094,7 +301745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 6231430, "featuredRunMedia": null, "reactionVideos": [], @@ -302122,7 +301773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 20, + "teamId": "1342", "time": 6233583, "featuredRunMedia": null, "reactionVideos": [], @@ -302148,7 +301799,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 340, + "teamId": "3041", "time": 6236794, "featuredRunMedia": null, "reactionVideos": [], @@ -302186,7 +301837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6237227, "featuredRunMedia": null, "reactionVideos": [], @@ -302224,7 +301875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 6239209, "featuredRunMedia": null, "reactionVideos": [], @@ -302252,7 +301903,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 6245226, "featuredRunMedia": null, "reactionVideos": [], @@ -302290,7 +301941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 6248561, "featuredRunMedia": null, "reactionVideos": [], @@ -302328,7 +301979,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6251110, "featuredRunMedia": null, "reactionVideos": [], @@ -302366,7 +302017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6254112, "featuredRunMedia": null, "reactionVideos": [], @@ -302394,7 +302045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 6254549, "featuredRunMedia": null, "reactionVideos": [], @@ -302422,7 +302073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 6254646, "featuredRunMedia": null, "reactionVideos": [], @@ -302450,7 +302101,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "3050", "time": 6254899, "featuredRunMedia": null, "reactionVideos": [], @@ -302478,7 +302129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 6259041, "featuredRunMedia": null, "reactionVideos": [], @@ -302516,7 +302167,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6259253, "featuredRunMedia": null, "reactionVideos": [], @@ -302554,7 +302205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6259894, "featuredRunMedia": null, "reactionVideos": [], @@ -302592,7 +302243,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6261025, "featuredRunMedia": null, "reactionVideos": [], @@ -302630,7 +302281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 6263884, "featuredRunMedia": null, "reactionVideos": [], @@ -302658,7 +302309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6265182, "featuredRunMedia": null, "reactionVideos": [], @@ -302686,7 +302337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "2141", "time": 6266326, "featuredRunMedia": null, "reactionVideos": [], @@ -302724,7 +302375,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6268922, "featuredRunMedia": null, "reactionVideos": [], @@ -302762,7 +302413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 6273196, "featuredRunMedia": null, "reactionVideos": [], @@ -302790,7 +302441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6273420, "featuredRunMedia": null, "reactionVideos": [], @@ -302818,7 +302469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 6275659, "featuredRunMedia": null, "reactionVideos": [], @@ -302844,7 +302495,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 6276989, "featuredRunMedia": null, "reactionVideos": [], @@ -302882,7 +302533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6278048, "featuredRunMedia": null, "reactionVideos": [], @@ -302910,7 +302561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 6280862, "featuredRunMedia": null, "reactionVideos": [], @@ -302943,7 +302594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 6280987, "featuredRunMedia": null, "reactionVideos": [], @@ -302971,7 +302622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6281673, "featuredRunMedia": null, "reactionVideos": [], @@ -302999,7 +302650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6282699, "featuredRunMedia": null, "reactionVideos": [], @@ -303027,7 +302678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6284482, "featuredRunMedia": null, "reactionVideos": [], @@ -303055,7 +302706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6285863, "featuredRunMedia": null, "reactionVideos": [], @@ -303083,7 +302734,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6289665, "featuredRunMedia": null, "reactionVideos": [], @@ -303116,7 +302767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6290210, "featuredRunMedia": null, "reactionVideos": [], @@ -303144,7 +302795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 6295744, "featuredRunMedia": null, "reactionVideos": [], @@ -303172,7 +302823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 6299100, "featuredRunMedia": null, "reactionVideos": [], @@ -303200,7 +302851,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6300343, "featuredRunMedia": null, "reactionVideos": [], @@ -303228,7 +302879,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 6303684, "featuredRunMedia": null, "reactionVideos": [], @@ -303256,7 +302907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 6305647, "featuredRunMedia": null, "reactionVideos": [], @@ -303284,7 +302935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 6311980, "featuredRunMedia": null, "reactionVideos": [], @@ -303312,7 +302963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6313134, "featuredRunMedia": null, "reactionVideos": [], @@ -303350,7 +303001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 30, + "teamId": "2654", "time": 6313980, "featuredRunMedia": null, "reactionVideos": [], @@ -303378,7 +303029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 6314691, "featuredRunMedia": null, "reactionVideos": [], @@ -303416,7 +303067,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6316282, "featuredRunMedia": null, "reactionVideos": [], @@ -303444,7 +303095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6319326, "featuredRunMedia": null, "reactionVideos": [], @@ -303472,7 +303123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6319377, "featuredRunMedia": null, "reactionVideos": [], @@ -303510,7 +303161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6319852, "featuredRunMedia": null, "reactionVideos": [], @@ -303548,7 +303199,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 6320667, "featuredRunMedia": null, "reactionVideos": [], @@ -303576,7 +303227,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "1943", "time": 6322154, "featuredRunMedia": null, "reactionVideos": [], @@ -303614,7 +303265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 6327810, "featuredRunMedia": null, "reactionVideos": [], @@ -303642,7 +303293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 6328417, "featuredRunMedia": null, "reactionVideos": [], @@ -303664,7 +303315,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 6330491, "featuredRunMedia": null, "reactionVideos": [], @@ -303692,7 +303343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 6335874, "featuredRunMedia": null, "reactionVideos": [], @@ -303730,7 +303381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 6339648, "featuredRunMedia": null, "reactionVideos": [], @@ -303758,7 +303409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 6341969, "featuredRunMedia": null, "reactionVideos": [], @@ -303796,7 +303447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 6344281, "featuredRunMedia": null, "reactionVideos": [], @@ -303824,7 +303475,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 6344366, "featuredRunMedia": null, "reactionVideos": [], @@ -303852,7 +303503,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6352375, "featuredRunMedia": null, "reactionVideos": [], @@ -303880,7 +303531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6356067, "featuredRunMedia": null, "reactionVideos": [], @@ -303908,7 +303559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6357827, "featuredRunMedia": null, "reactionVideos": [], @@ -303946,7 +303597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 6358906, "featuredRunMedia": null, "reactionVideos": [], @@ -303974,7 +303625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 6359341, "featuredRunMedia": null, "reactionVideos": [], @@ -304002,7 +303653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 6359975, "featuredRunMedia": null, "reactionVideos": [], @@ -304030,7 +303681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 6363705, "featuredRunMedia": null, "reactionVideos": [], @@ -304058,7 +303709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 6364872, "featuredRunMedia": null, "reactionVideos": [], @@ -304086,7 +303737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 6365970, "featuredRunMedia": null, "reactionVideos": [], @@ -304124,7 +303775,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 6368698, "featuredRunMedia": null, "reactionVideos": [], @@ -304152,7 +303803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6369765, "featuredRunMedia": null, "reactionVideos": [], @@ -304180,7 +303831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 6370258, "featuredRunMedia": null, "reactionVideos": [], @@ -304218,7 +303869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6370951, "featuredRunMedia": null, "reactionVideos": [], @@ -304246,7 +303897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6373211, "featuredRunMedia": null, "reactionVideos": [], @@ -304274,7 +303925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 6376855, "featuredRunMedia": null, "reactionVideos": [], @@ -304312,7 +303963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 6382675, "featuredRunMedia": null, "reactionVideos": [], @@ -304340,7 +303991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6385910, "featuredRunMedia": null, "reactionVideos": [], @@ -304373,7 +304024,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6389201, "featuredRunMedia": null, "reactionVideos": [], @@ -304401,7 +304052,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6393157, "featuredRunMedia": null, "reactionVideos": [], @@ -304429,7 +304080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6393944, "featuredRunMedia": null, "reactionVideos": [], @@ -304457,7 +304108,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6395063, "featuredRunMedia": null, "reactionVideos": [], @@ -304495,7 +304146,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 6395431, "featuredRunMedia": null, "reactionVideos": [], @@ -304533,7 +304184,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "1345", "time": 6398880, "featuredRunMedia": null, "reactionVideos": [], @@ -304571,7 +304222,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 6398914, "featuredRunMedia": null, "reactionVideos": [], @@ -304599,7 +304250,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6400719, "featuredRunMedia": null, "reactionVideos": [], @@ -304627,7 +304278,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6401347, "featuredRunMedia": null, "reactionVideos": [], @@ -304655,7 +304306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6403382, "featuredRunMedia": null, "reactionVideos": [], @@ -304683,7 +304334,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 6404916, "featuredRunMedia": null, "reactionVideos": [], @@ -304721,7 +304372,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 6406415, "featuredRunMedia": null, "reactionVideos": [], @@ -304749,7 +304400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 6411240, "featuredRunMedia": null, "reactionVideos": [], @@ -304787,7 +304438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 6412749, "featuredRunMedia": null, "reactionVideos": [], @@ -304825,7 +304476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 6416616, "featuredRunMedia": null, "reactionVideos": [], @@ -304863,7 +304514,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6416876, "featuredRunMedia": null, "reactionVideos": [], @@ -304901,7 +304552,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 6417365, "featuredRunMedia": null, "reactionVideos": [], @@ -304939,7 +304590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6418511, "featuredRunMedia": null, "reactionVideos": [], @@ -304967,7 +304618,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 6426449, "featuredRunMedia": null, "reactionVideos": [], @@ -305005,7 +304656,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 6426522, "featuredRunMedia": null, "reactionVideos": [], @@ -305043,7 +304694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 6426828, "featuredRunMedia": null, "reactionVideos": [], @@ -305076,7 +304727,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6429569, "featuredRunMedia": null, "reactionVideos": [], @@ -305104,7 +304755,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 6431171, "featuredRunMedia": null, "reactionVideos": [], @@ -305142,7 +304793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 281, + "teamId": "2950", "time": 6432122, "featuredRunMedia": null, "reactionVideos": [], @@ -305170,7 +304821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 6433191, "featuredRunMedia": null, "reactionVideos": [], @@ -305208,7 +304859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 6433320, "featuredRunMedia": null, "reactionVideos": [], @@ -305236,7 +304887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 6433748, "featuredRunMedia": null, "reactionVideos": [], @@ -305264,7 +304915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 6434296, "featuredRunMedia": null, "reactionVideos": [], @@ -305292,7 +304943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 6434479, "featuredRunMedia": null, "reactionVideos": [], @@ -305330,7 +304981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "1644", "time": 6439098, "featuredRunMedia": null, "reactionVideos": [], @@ -305352,7 +305003,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6439723, "featuredRunMedia": null, "reactionVideos": [], @@ -305390,7 +305041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 6439996, "featuredRunMedia": null, "reactionVideos": [], @@ -305418,7 +305069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6442144, "featuredRunMedia": null, "reactionVideos": [], @@ -305456,7 +305107,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 6446032, "featuredRunMedia": null, "reactionVideos": [], @@ -305494,7 +305145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 6446878, "featuredRunMedia": null, "reactionVideos": [], @@ -305532,7 +305183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6448633, "featuredRunMedia": null, "reactionVideos": [], @@ -305560,7 +305211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 6448659, "featuredRunMedia": null, "reactionVideos": [], @@ -305588,7 +305239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6448691, "featuredRunMedia": null, "reactionVideos": [], @@ -305616,7 +305267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6449759, "featuredRunMedia": null, "reactionVideos": [], @@ -305642,7 +305293,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 244, + "teamId": "2645", "time": 6452084, "featuredRunMedia": null, "reactionVideos": [], @@ -305680,7 +305331,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 6455011, "featuredRunMedia": null, "reactionVideos": [], @@ -305708,7 +305359,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 6456295, "featuredRunMedia": null, "reactionVideos": [], @@ -305746,7 +305397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "3142", "time": 6457758, "featuredRunMedia": null, "reactionVideos": [], @@ -305774,7 +305425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 6458553, "featuredRunMedia": null, "reactionVideos": [], @@ -305802,7 +305453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "3050", "time": 6462069, "featuredRunMedia": null, "reactionVideos": [], @@ -305830,7 +305481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6462258, "featuredRunMedia": null, "reactionVideos": [], @@ -305858,7 +305509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6462910, "featuredRunMedia": null, "reactionVideos": [], @@ -305886,7 +305537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 6463262, "featuredRunMedia": null, "reactionVideos": [], @@ -305914,7 +305565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6465357, "featuredRunMedia": null, "reactionVideos": [], @@ -305952,7 +305603,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 6467016, "featuredRunMedia": null, "reactionVideos": [], @@ -305980,7 +305631,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 6470269, "featuredRunMedia": null, "reactionVideos": [], @@ -306018,7 +305669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6470898, "featuredRunMedia": null, "reactionVideos": [], @@ -306040,7 +305691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6472160, "featuredRunMedia": null, "reactionVideos": [], @@ -306068,7 +305719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 6473353, "featuredRunMedia": null, "reactionVideos": [], @@ -306096,7 +305747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6473490, "featuredRunMedia": null, "reactionVideos": [], @@ -306122,7 +305773,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 286, + "teamId": "2546", "time": 6476981, "featuredRunMedia": null, "reactionVideos": [], @@ -306150,7 +305801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 6477117, "featuredRunMedia": null, "reactionVideos": [], @@ -306178,7 +305829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "1843", "time": 6477118, "featuredRunMedia": null, "reactionVideos": [], @@ -306206,7 +305857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 6481332, "featuredRunMedia": null, "reactionVideos": [], @@ -306234,7 +305885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6483551, "featuredRunMedia": null, "reactionVideos": [], @@ -306262,7 +305913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "3242", "time": 6484864, "featuredRunMedia": null, "reactionVideos": [], @@ -306290,7 +305941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 40, + "teamId": "1748", "time": 6485779, "featuredRunMedia": null, "reactionVideos": [], @@ -306318,7 +305969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6485988, "featuredRunMedia": null, "reactionVideos": [], @@ -306344,7 +305995,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 6487618, "featuredRunMedia": null, "reactionVideos": [], @@ -306382,7 +306033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 113, + "teamId": "1345", "time": 6490024, "featuredRunMedia": null, "reactionVideos": [], @@ -306410,7 +306061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6491745, "featuredRunMedia": null, "reactionVideos": [], @@ -306438,7 +306089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6493131, "featuredRunMedia": null, "reactionVideos": [], @@ -306476,7 +306127,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 6493698, "featuredRunMedia": null, "reactionVideos": [], @@ -306504,7 +306155,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 6493703, "featuredRunMedia": null, "reactionVideos": [], @@ -306532,7 +306183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6495855, "featuredRunMedia": null, "reactionVideos": [], @@ -306560,7 +306211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6495861, "featuredRunMedia": null, "reactionVideos": [], @@ -306598,7 +306249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 6496536, "featuredRunMedia": null, "reactionVideos": [], @@ -306636,7 +306287,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 6499851, "featuredRunMedia": null, "reactionVideos": [], @@ -306662,7 +306313,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6500050, "featuredRunMedia": null, "reactionVideos": [], @@ -306690,7 +306341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6500902, "featuredRunMedia": null, "reactionVideos": [], @@ -306718,7 +306369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6505227, "featuredRunMedia": null, "reactionVideos": [], @@ -306746,7 +306397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 6506281, "featuredRunMedia": null, "reactionVideos": [], @@ -306784,7 +306435,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 6508918, "featuredRunMedia": null, "reactionVideos": [], @@ -306822,7 +306473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 6510176, "featuredRunMedia": null, "reactionVideos": [], @@ -306850,7 +306501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6510346, "featuredRunMedia": null, "reactionVideos": [], @@ -306878,7 +306529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6510476, "featuredRunMedia": null, "reactionVideos": [], @@ -306906,7 +306557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6512533, "featuredRunMedia": null, "reactionVideos": [], @@ -306934,7 +306585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 6513391, "featuredRunMedia": null, "reactionVideos": [], @@ -306972,7 +306623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 6521875, "featuredRunMedia": null, "reactionVideos": [], @@ -307010,7 +306661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 6521907, "featuredRunMedia": null, "reactionVideos": [], @@ -307036,7 +306687,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 6522303, "featuredRunMedia": null, "reactionVideos": [], @@ -307064,7 +306715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 6524144, "featuredRunMedia": null, "reactionVideos": [], @@ -307092,7 +306743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6524256, "featuredRunMedia": null, "reactionVideos": [], @@ -307120,7 +306771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6525102, "featuredRunMedia": null, "reactionVideos": [], @@ -307148,7 +306799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6525313, "featuredRunMedia": null, "reactionVideos": [], @@ -307186,7 +306837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6525957, "featuredRunMedia": null, "reactionVideos": [], @@ -307214,7 +306865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 6526022, "featuredRunMedia": null, "reactionVideos": [], @@ -307252,7 +306903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 6526895, "featuredRunMedia": null, "reactionVideos": [], @@ -307280,7 +306931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6529687, "featuredRunMedia": null, "reactionVideos": [], @@ -307308,7 +306959,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 6531729, "featuredRunMedia": null, "reactionVideos": [], @@ -307346,7 +306997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 6532619, "featuredRunMedia": null, "reactionVideos": [], @@ -307384,7 +307035,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 6533177, "featuredRunMedia": null, "reactionVideos": [], @@ -307410,7 +307061,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 6533595, "featuredRunMedia": null, "reactionVideos": [], @@ -307438,7 +307089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6535168, "featuredRunMedia": null, "reactionVideos": [], @@ -307466,7 +307117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 6535942, "featuredRunMedia": null, "reactionVideos": [], @@ -307504,7 +307155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 6537356, "featuredRunMedia": null, "reactionVideos": [], @@ -307532,7 +307183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 6540759, "featuredRunMedia": null, "reactionVideos": [], @@ -307560,7 +307211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6541264, "featuredRunMedia": null, "reactionVideos": [], @@ -307598,7 +307249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6542497, "featuredRunMedia": null, "reactionVideos": [], @@ -307626,7 +307277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6546580, "featuredRunMedia": null, "reactionVideos": [], @@ -307654,7 +307305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 6547209, "featuredRunMedia": null, "reactionVideos": [], @@ -307682,7 +307333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 6548467, "featuredRunMedia": null, "reactionVideos": [], @@ -307710,7 +307361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 49, + "teamId": "3050", "time": 6548576, "featuredRunMedia": null, "reactionVideos": [], @@ -307748,7 +307399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6554042, "featuredRunMedia": null, "reactionVideos": [], @@ -307776,7 +307427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6555070, "featuredRunMedia": null, "reactionVideos": [], @@ -307804,7 +307455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6555552, "featuredRunMedia": null, "reactionVideos": [], @@ -307832,7 +307483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 6557419, "featuredRunMedia": null, "reactionVideos": [], @@ -307860,7 +307511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 6558697, "featuredRunMedia": null, "reactionVideos": [], @@ -307888,7 +307539,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6559596, "featuredRunMedia": null, "reactionVideos": [], @@ -307914,7 +307565,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6561944, "featuredRunMedia": null, "reactionVideos": [], @@ -307942,7 +307593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 6562254, "featuredRunMedia": null, "reactionVideos": [], @@ -307970,7 +307621,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6563689, "featuredRunMedia": null, "reactionVideos": [], @@ -307998,7 +307649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6564369, "featuredRunMedia": null, "reactionVideos": [], @@ -308026,7 +307677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6565007, "featuredRunMedia": null, "reactionVideos": [], @@ -308059,7 +307710,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6565839, "featuredRunMedia": null, "reactionVideos": [], @@ -308087,7 +307738,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 6566234, "featuredRunMedia": null, "reactionVideos": [], @@ -308125,7 +307776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 6568717, "featuredRunMedia": null, "reactionVideos": [], @@ -308151,7 +307802,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 6570392, "featuredRunMedia": null, "reactionVideos": [], @@ -308179,7 +307830,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6570474, "featuredRunMedia": null, "reactionVideos": [], @@ -308207,7 +307858,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "2054", "time": 6572765, "featuredRunMedia": null, "reactionVideos": [], @@ -308235,7 +307886,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 74, + "teamId": "2047", "time": 6574498, "featuredRunMedia": null, "reactionVideos": [], @@ -308273,7 +307924,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6578971, "featuredRunMedia": null, "reactionVideos": [], @@ -308311,7 +307962,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 6581631, "featuredRunMedia": null, "reactionVideos": [], @@ -308339,7 +307990,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 6583549, "featuredRunMedia": null, "reactionVideos": [], @@ -308367,7 +308018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6584333, "featuredRunMedia": null, "reactionVideos": [], @@ -308395,7 +308046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 6590895, "featuredRunMedia": null, "reactionVideos": [], @@ -308423,7 +308074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 6591008, "featuredRunMedia": null, "reactionVideos": [], @@ -308445,7 +308096,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 6591991, "featuredRunMedia": null, "reactionVideos": [], @@ -308473,7 +308124,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6596153, "featuredRunMedia": null, "reactionVideos": [], @@ -308511,7 +308162,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6597933, "featuredRunMedia": null, "reactionVideos": [], @@ -308539,7 +308190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 6598279, "featuredRunMedia": null, "reactionVideos": [], @@ -308567,7 +308218,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6598341, "featuredRunMedia": null, "reactionVideos": [], @@ -308595,7 +308246,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6599814, "featuredRunMedia": null, "reactionVideos": [], @@ -308633,7 +308284,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "1156", "time": 6600437, "featuredRunMedia": null, "reactionVideos": [], @@ -308671,7 +308322,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 6600653, "featuredRunMedia": null, "reactionVideos": [], @@ -308709,7 +308360,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6601145, "featuredRunMedia": null, "reactionVideos": [], @@ -308737,7 +308388,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 6602326, "featuredRunMedia": null, "reactionVideos": [], @@ -308765,7 +308416,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6605228, "featuredRunMedia": null, "reactionVideos": [], @@ -308793,7 +308444,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 6605471, "featuredRunMedia": null, "reactionVideos": [], @@ -308821,7 +308472,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 6606876, "featuredRunMedia": null, "reactionVideos": [], @@ -308849,7 +308500,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6607182, "featuredRunMedia": null, "reactionVideos": [], @@ -308877,7 +308528,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 6608780, "featuredRunMedia": null, "reactionVideos": [], @@ -308915,7 +308566,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 6610884, "featuredRunMedia": null, "reactionVideos": [], @@ -308953,7 +308604,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 6612118, "featuredRunMedia": null, "reactionVideos": [], @@ -308991,7 +308642,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 6612307, "featuredRunMedia": null, "reactionVideos": [], @@ -309029,7 +308680,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 6615168, "featuredRunMedia": null, "reactionVideos": [], @@ -309067,7 +308718,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6615171, "featuredRunMedia": null, "reactionVideos": [], @@ -309095,7 +308746,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 6616811, "featuredRunMedia": null, "reactionVideos": [], @@ -309133,7 +308784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6622336, "featuredRunMedia": null, "reactionVideos": [], @@ -309171,7 +308822,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "1156", "time": 6622844, "featuredRunMedia": null, "reactionVideos": [], @@ -309199,7 +308850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6623358, "featuredRunMedia": null, "reactionVideos": [], @@ -309227,7 +308878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6625012, "featuredRunMedia": null, "reactionVideos": [], @@ -309253,7 +308904,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6626039, "featuredRunMedia": null, "reactionVideos": [], @@ -309281,7 +308932,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6626630, "featuredRunMedia": null, "reactionVideos": [], @@ -309314,7 +308965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6627519, "featuredRunMedia": null, "reactionVideos": [], @@ -309340,7 +308991,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 6630829, "featuredRunMedia": null, "reactionVideos": [], @@ -309378,7 +309029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6631133, "featuredRunMedia": null, "reactionVideos": [], @@ -309406,7 +309057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 69, + "teamId": "1951", "time": 6633623, "featuredRunMedia": null, "reactionVideos": [], @@ -309434,7 +309085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 6637667, "featuredRunMedia": null, "reactionVideos": [], @@ -309456,7 +309107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 6638281, "featuredRunMedia": null, "reactionVideos": [], @@ -309482,7 +309133,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6640911, "featuredRunMedia": null, "reactionVideos": [], @@ -309510,7 +309161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 6643365, "featuredRunMedia": null, "reactionVideos": [], @@ -309538,7 +309189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 6643791, "featuredRunMedia": null, "reactionVideos": [], @@ -309566,7 +309217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 276, + "teamId": "2141", "time": 6643897, "featuredRunMedia": null, "reactionVideos": [], @@ -309594,7 +309245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 6649396, "featuredRunMedia": null, "reactionVideos": [], @@ -309620,7 +309271,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6654587, "featuredRunMedia": null, "reactionVideos": [], @@ -309648,7 +309299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 6655162, "featuredRunMedia": null, "reactionVideos": [], @@ -309676,7 +309327,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 291, + "teamId": "3242", "time": 6656122, "featuredRunMedia": null, "reactionVideos": [], @@ -309714,7 +309365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 6656609, "featuredRunMedia": null, "reactionVideos": [], @@ -309742,7 +309393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 6656792, "featuredRunMedia": null, "reactionVideos": [], @@ -309770,7 +309421,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 6659247, "featuredRunMedia": null, "reactionVideos": [], @@ -309808,7 +309459,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6660292, "featuredRunMedia": null, "reactionVideos": [], @@ -309836,7 +309487,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "2054", "time": 6664009, "featuredRunMedia": null, "reactionVideos": [], @@ -309864,7 +309515,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 6664825, "featuredRunMedia": null, "reactionVideos": [], @@ -309902,7 +309553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 6666363, "featuredRunMedia": null, "reactionVideos": [], @@ -309928,7 +309579,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 325, + "teamId": "1444", "time": 6666567, "featuredRunMedia": null, "reactionVideos": [], @@ -309956,7 +309607,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 106, + "teamId": "2753", "time": 6667086, "featuredRunMedia": null, "reactionVideos": [], @@ -309984,7 +309635,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 6667386, "featuredRunMedia": null, "reactionVideos": [], @@ -310012,7 +309663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 6670132, "featuredRunMedia": null, "reactionVideos": [], @@ -310050,7 +309701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6671705, "featuredRunMedia": null, "reactionVideos": [], @@ -310078,7 +309729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 6674569, "featuredRunMedia": null, "reactionVideos": [], @@ -310106,7 +309757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 6674603, "featuredRunMedia": null, "reactionVideos": [], @@ -310134,7 +309785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 6681974, "featuredRunMedia": null, "reactionVideos": [], @@ -310167,7 +309818,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6682048, "featuredRunMedia": null, "reactionVideos": [], @@ -310195,7 +309846,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 6682124, "featuredRunMedia": null, "reactionVideos": [], @@ -310223,7 +309874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6682360, "featuredRunMedia": null, "reactionVideos": [], @@ -310251,7 +309902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 6682508, "featuredRunMedia": null, "reactionVideos": [], @@ -310279,7 +309930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6683957, "featuredRunMedia": null, "reactionVideos": [], @@ -310307,7 +309958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6688920, "featuredRunMedia": null, "reactionVideos": [], @@ -310335,7 +309986,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6689234, "featuredRunMedia": null, "reactionVideos": [], @@ -310373,7 +310024,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6689861, "featuredRunMedia": null, "reactionVideos": [], @@ -310401,7 +310052,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 6692662, "featuredRunMedia": null, "reactionVideos": [], @@ -310429,7 +310080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6697811, "featuredRunMedia": null, "reactionVideos": [], @@ -310467,7 +310118,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6698053, "featuredRunMedia": null, "reactionVideos": [], @@ -310495,7 +310146,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6698214, "featuredRunMedia": null, "reactionVideos": [], @@ -310533,7 +310184,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 6699038, "featuredRunMedia": null, "reactionVideos": [], @@ -310571,7 +310222,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 6699465, "featuredRunMedia": null, "reactionVideos": [], @@ -310599,7 +310250,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 6702650, "featuredRunMedia": null, "reactionVideos": [], @@ -310637,7 +310288,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6702814, "featuredRunMedia": null, "reactionVideos": [], @@ -310665,7 +310316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6704566, "featuredRunMedia": null, "reactionVideos": [], @@ -310693,7 +310344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 6704814, "featuredRunMedia": null, "reactionVideos": [], @@ -310721,7 +310372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 6705029, "featuredRunMedia": null, "reactionVideos": [], @@ -310759,7 +310410,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 6707592, "featuredRunMedia": null, "reactionVideos": [], @@ -310787,7 +310438,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 6707960, "featuredRunMedia": null, "reactionVideos": [], @@ -310815,7 +310466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 6709077, "featuredRunMedia": null, "reactionVideos": [], @@ -310843,7 +310494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 6710228, "featuredRunMedia": null, "reactionVideos": [], @@ -310871,7 +310522,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6716087, "featuredRunMedia": null, "reactionVideos": [], @@ -310909,7 +310560,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 6716351, "featuredRunMedia": null, "reactionVideos": [], @@ -310942,7 +310593,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 6719669, "featuredRunMedia": null, "reactionVideos": [], @@ -310980,7 +310631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 6719738, "featuredRunMedia": null, "reactionVideos": [], @@ -311008,7 +310659,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6721382, "featuredRunMedia": null, "reactionVideos": [], @@ -311046,7 +310697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6723259, "featuredRunMedia": null, "reactionVideos": [], @@ -311074,7 +310725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 6728837, "featuredRunMedia": null, "reactionVideos": [], @@ -311112,7 +310763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6731059, "featuredRunMedia": null, "reactionVideos": [], @@ -311145,7 +310796,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6736924, "featuredRunMedia": null, "reactionVideos": [], @@ -311183,7 +310834,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 6739569, "featuredRunMedia": null, "reactionVideos": [], @@ -311221,7 +310872,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 6739992, "featuredRunMedia": null, "reactionVideos": [], @@ -311249,7 +310900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 6740912, "featuredRunMedia": null, "reactionVideos": [], @@ -311277,7 +310928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6742598, "featuredRunMedia": null, "reactionVideos": [], @@ -311305,7 +310956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6744755, "featuredRunMedia": null, "reactionVideos": [], @@ -311333,7 +310984,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 6747984, "featuredRunMedia": null, "reactionVideos": [], @@ -311361,7 +311012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6749241, "featuredRunMedia": null, "reactionVideos": [], @@ -311399,7 +311050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6751404, "featuredRunMedia": null, "reactionVideos": [], @@ -311427,7 +311078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 6751592, "featuredRunMedia": null, "reactionVideos": [], @@ -311465,7 +311116,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 6754375, "featuredRunMedia": null, "reactionVideos": [], @@ -311503,7 +311154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 6754998, "featuredRunMedia": null, "reactionVideos": [], @@ -311531,7 +311182,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6755996, "featuredRunMedia": null, "reactionVideos": [], @@ -311564,7 +311215,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 6757382, "featuredRunMedia": null, "reactionVideos": [], @@ -311592,7 +311243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6757639, "featuredRunMedia": null, "reactionVideos": [], @@ -311630,7 +311281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 6758368, "featuredRunMedia": null, "reactionVideos": [], @@ -311663,7 +311314,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6760231, "featuredRunMedia": null, "reactionVideos": [], @@ -311701,7 +311352,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6760379, "featuredRunMedia": null, "reactionVideos": [], @@ -311729,7 +311380,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6762729, "featuredRunMedia": null, "reactionVideos": [], @@ -311757,7 +311408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6765892, "featuredRunMedia": null, "reactionVideos": [], @@ -311795,7 +311446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 6766379, "featuredRunMedia": null, "reactionVideos": [], @@ -311833,7 +311484,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6766379, "featuredRunMedia": null, "reactionVideos": [], @@ -311861,7 +311512,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 6774502, "featuredRunMedia": null, "reactionVideos": [], @@ -311899,7 +311550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6778035, "featuredRunMedia": null, "reactionVideos": [], @@ -311937,7 +311588,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6783602, "featuredRunMedia": null, "reactionVideos": [], @@ -311975,7 +311626,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 6785405, "featuredRunMedia": null, "reactionVideos": [], @@ -312003,7 +311654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6785462, "featuredRunMedia": null, "reactionVideos": [], @@ -312041,7 +311692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 6786885, "featuredRunMedia": null, "reactionVideos": [], @@ -312079,7 +311730,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 6788775, "featuredRunMedia": null, "reactionVideos": [], @@ -312101,7 +311752,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6794969, "featuredRunMedia": null, "reactionVideos": [], @@ -312139,7 +311790,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 6795378, "featuredRunMedia": null, "reactionVideos": [], @@ -312167,7 +311818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 6796711, "featuredRunMedia": null, "reactionVideos": [], @@ -312205,7 +311856,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 6801109, "featuredRunMedia": null, "reactionVideos": [], @@ -312243,7 +311894,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6804386, "featuredRunMedia": null, "reactionVideos": [], @@ -312276,7 +311927,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "1954", "time": 6806440, "featuredRunMedia": null, "reactionVideos": [], @@ -312304,7 +311955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 92, + "teamId": "1141", "time": 6807396, "featuredRunMedia": null, "reactionVideos": [], @@ -312332,7 +311983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 6807759, "featuredRunMedia": null, "reactionVideos": [], @@ -312370,7 +312021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6808943, "featuredRunMedia": null, "reactionVideos": [], @@ -312408,7 +312059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 6809198, "featuredRunMedia": null, "reactionVideos": [], @@ -312446,7 +312097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 6810744, "featuredRunMedia": null, "reactionVideos": [], @@ -312484,7 +312135,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 6810754, "featuredRunMedia": null, "reactionVideos": [], @@ -312512,7 +312163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6811533, "featuredRunMedia": null, "reactionVideos": [], @@ -312540,7 +312191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 6812668, "featuredRunMedia": null, "reactionVideos": [], @@ -312568,7 +312219,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6813230, "featuredRunMedia": null, "reactionVideos": [], @@ -312606,7 +312257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 6816389, "featuredRunMedia": null, "reactionVideos": [], @@ -312634,7 +312285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 6820556, "featuredRunMedia": null, "reactionVideos": [], @@ -312662,7 +312313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 6824636, "featuredRunMedia": null, "reactionVideos": [], @@ -312690,7 +312341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 6829176, "featuredRunMedia": null, "reactionVideos": [], @@ -312728,7 +312379,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6830155, "featuredRunMedia": null, "reactionVideos": [], @@ -312756,7 +312407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 148, + "teamId": "1151", "time": 6832803, "featuredRunMedia": null, "reactionVideos": [], @@ -312784,7 +312435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 22, + "teamId": "2254", "time": 6834407, "featuredRunMedia": null, "reactionVideos": [], @@ -312822,7 +312473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 6836107, "featuredRunMedia": null, "reactionVideos": [], @@ -312855,7 +312506,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 6836302, "featuredRunMedia": null, "reactionVideos": [], @@ -312883,7 +312534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 6839148, "featuredRunMedia": null, "reactionVideos": [], @@ -312911,7 +312562,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 6840922, "featuredRunMedia": null, "reactionVideos": [], @@ -312944,7 +312595,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 6841736, "featuredRunMedia": null, "reactionVideos": [], @@ -312972,7 +312623,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 6842038, "featuredRunMedia": null, "reactionVideos": [], @@ -313010,7 +312661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 7, + "teamId": "1156", "time": 6844124, "featuredRunMedia": null, "reactionVideos": [], @@ -313038,7 +312689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6846726, "featuredRunMedia": null, "reactionVideos": [], @@ -313076,7 +312727,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 6847386, "featuredRunMedia": null, "reactionVideos": [], @@ -313114,7 +312765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 6848376, "featuredRunMedia": null, "reactionVideos": [], @@ -313142,7 +312793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 6848410, "featuredRunMedia": null, "reactionVideos": [], @@ -313164,7 +312815,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6850505, "featuredRunMedia": null, "reactionVideos": [], @@ -313192,7 +312843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 6851271, "featuredRunMedia": null, "reactionVideos": [], @@ -313220,7 +312871,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6851854, "featuredRunMedia": null, "reactionVideos": [], @@ -313248,7 +312899,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 6851926, "featuredRunMedia": null, "reactionVideos": [], @@ -313276,7 +312927,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 6852137, "featuredRunMedia": null, "reactionVideos": [], @@ -313314,7 +312965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 6852281, "featuredRunMedia": null, "reactionVideos": [], @@ -313342,7 +312993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6852966, "featuredRunMedia": null, "reactionVideos": [], @@ -313380,7 +313031,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 6853497, "featuredRunMedia": null, "reactionVideos": [], @@ -313418,7 +313069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 6854272, "featuredRunMedia": null, "reactionVideos": [], @@ -313446,7 +313097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 6856623, "featuredRunMedia": null, "reactionVideos": [], @@ -313474,7 +313125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6859212, "featuredRunMedia": null, "reactionVideos": [], @@ -313502,7 +313153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 6859365, "featuredRunMedia": null, "reactionVideos": [], @@ -313535,7 +313186,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "1954", "time": 6859990, "featuredRunMedia": null, "reactionVideos": [], @@ -313563,7 +313214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 233, + "teamId": "2351", "time": 6861900, "featuredRunMedia": null, "reactionVideos": [], @@ -313601,7 +313252,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 6863220, "featuredRunMedia": null, "reactionVideos": [], @@ -313639,7 +313290,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6863677, "featuredRunMedia": null, "reactionVideos": [], @@ -313667,7 +313318,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6866950, "featuredRunMedia": null, "reactionVideos": [], @@ -313695,7 +313346,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 6868001, "featuredRunMedia": null, "reactionVideos": [], @@ -313723,7 +313374,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6871376, "featuredRunMedia": null, "reactionVideos": [], @@ -313761,7 +313412,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 6871601, "featuredRunMedia": null, "reactionVideos": [], @@ -313789,7 +313440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "2150", "time": 6873324, "featuredRunMedia": null, "reactionVideos": [], @@ -313827,7 +313478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 6879150, "featuredRunMedia": null, "reactionVideos": [], @@ -313849,7 +313500,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 6879726, "featuredRunMedia": null, "reactionVideos": [], @@ -313877,7 +313528,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 51, + "teamId": "1547", "time": 6881702, "featuredRunMedia": null, "reactionVideos": [], @@ -313915,7 +313566,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 6882247, "featuredRunMedia": null, "reactionVideos": [], @@ -313943,7 +313594,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 6882914, "featuredRunMedia": null, "reactionVideos": [], @@ -313969,7 +313620,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 6884814, "featuredRunMedia": null, "reactionVideos": [], @@ -313997,7 +313648,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 6885240, "featuredRunMedia": null, "reactionVideos": [], @@ -314025,7 +313676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6886191, "featuredRunMedia": null, "reactionVideos": [], @@ -314053,7 +313704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 6886560, "featuredRunMedia": null, "reactionVideos": [], @@ -314079,7 +313730,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 6889728, "featuredRunMedia": null, "reactionVideos": [], @@ -314107,7 +313758,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 6890664, "featuredRunMedia": null, "reactionVideos": [], @@ -314135,7 +313786,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6891573, "featuredRunMedia": null, "reactionVideos": [], @@ -314163,7 +313814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 6891869, "featuredRunMedia": null, "reactionVideos": [], @@ -314191,7 +313842,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6894415, "featuredRunMedia": null, "reactionVideos": [], @@ -314229,7 +313880,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 6895611, "featuredRunMedia": null, "reactionVideos": [], @@ -314267,7 +313918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 6896826, "featuredRunMedia": null, "reactionVideos": [], @@ -314305,7 +313956,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 6899049, "featuredRunMedia": null, "reactionVideos": [], @@ -314343,7 +313994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6899337, "featuredRunMedia": null, "reactionVideos": [], @@ -314371,7 +314022,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 6901332, "featuredRunMedia": null, "reactionVideos": [], @@ -314409,7 +314060,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 6902178, "featuredRunMedia": null, "reactionVideos": [], @@ -314447,7 +314098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 6903292, "featuredRunMedia": null, "reactionVideos": [], @@ -314475,7 +314126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 6904475, "featuredRunMedia": null, "reactionVideos": [], @@ -314503,7 +314154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6906220, "featuredRunMedia": null, "reactionVideos": [], @@ -314531,7 +314182,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 6907593, "featuredRunMedia": null, "reactionVideos": [], @@ -314569,7 +314220,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 6907801, "featuredRunMedia": null, "reactionVideos": [], @@ -314607,7 +314258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 6908778, "featuredRunMedia": null, "reactionVideos": [], @@ -314645,7 +314296,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 6908823, "featuredRunMedia": null, "reactionVideos": [], @@ -314673,7 +314324,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 6909019, "featuredRunMedia": null, "reactionVideos": [], @@ -314701,7 +314352,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6910013, "featuredRunMedia": null, "reactionVideos": [], @@ -314729,7 +314380,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 6910793, "featuredRunMedia": null, "reactionVideos": [], @@ -314757,7 +314408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 6912567, "featuredRunMedia": null, "reactionVideos": [], @@ -314795,7 +314446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6913154, "featuredRunMedia": null, "reactionVideos": [], @@ -314821,7 +314472,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 6913792, "featuredRunMedia": null, "reactionVideos": [], @@ -314849,7 +314500,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6916298, "featuredRunMedia": null, "reactionVideos": [], @@ -314887,7 +314538,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 6916676, "featuredRunMedia": null, "reactionVideos": [], @@ -314915,7 +314566,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 6917384, "featuredRunMedia": null, "reactionVideos": [], @@ -314953,7 +314604,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 6918341, "featuredRunMedia": null, "reactionVideos": [], @@ -314981,7 +314632,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 6918693, "featuredRunMedia": null, "reactionVideos": [], @@ -315009,7 +314660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6919112, "featuredRunMedia": null, "reactionVideos": [], @@ -315037,7 +314688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 6923048, "featuredRunMedia": null, "reactionVideos": [], @@ -315065,7 +314716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 6924210, "featuredRunMedia": null, "reactionVideos": [], @@ -315103,7 +314754,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 6925174, "featuredRunMedia": null, "reactionVideos": [], @@ -315141,7 +314792,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 6926527, "featuredRunMedia": null, "reactionVideos": [], @@ -315169,7 +314820,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 6926764, "featuredRunMedia": null, "reactionVideos": [], @@ -315197,7 +314848,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 6927900, "featuredRunMedia": null, "reactionVideos": [], @@ -315225,7 +314876,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 6931382, "featuredRunMedia": null, "reactionVideos": [], @@ -315263,7 +314914,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6934372, "featuredRunMedia": null, "reactionVideos": [], @@ -315291,7 +314942,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 6935376, "featuredRunMedia": null, "reactionVideos": [], @@ -315319,7 +314970,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 6937086, "featuredRunMedia": null, "reactionVideos": [], @@ -315352,7 +315003,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 6937444, "featuredRunMedia": null, "reactionVideos": [], @@ -315390,7 +315041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 6938158, "featuredRunMedia": null, "reactionVideos": [], @@ -315418,7 +315069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 6938638, "featuredRunMedia": null, "reactionVideos": [], @@ -315446,7 +315097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 6939834, "featuredRunMedia": null, "reactionVideos": [], @@ -315474,7 +315125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6940855, "featuredRunMedia": null, "reactionVideos": [], @@ -315512,7 +315163,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 6941625, "featuredRunMedia": null, "reactionVideos": [], @@ -315540,7 +315191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 6944519, "featuredRunMedia": null, "reactionVideos": [], @@ -315578,7 +315229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 6946578, "featuredRunMedia": null, "reactionVideos": [], @@ -315616,7 +315267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 6948060, "featuredRunMedia": null, "reactionVideos": [], @@ -315654,7 +315305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6948667, "featuredRunMedia": null, "reactionVideos": [], @@ -315682,7 +315333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 6949096, "featuredRunMedia": null, "reactionVideos": [], @@ -315710,7 +315361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 6950351, "featuredRunMedia": null, "reactionVideos": [], @@ -315748,7 +315399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 6951101, "featuredRunMedia": null, "reactionVideos": [], @@ -315786,7 +315437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 6951698, "featuredRunMedia": null, "reactionVideos": [], @@ -315812,7 +315463,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 6952446, "featuredRunMedia": null, "reactionVideos": [], @@ -315840,7 +315491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6956318, "featuredRunMedia": null, "reactionVideos": [], @@ -315868,7 +315519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 6956547, "featuredRunMedia": null, "reactionVideos": [], @@ -315894,7 +315545,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 6960749, "featuredRunMedia": null, "reactionVideos": [], @@ -315922,7 +315573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 6962598, "featuredRunMedia": null, "reactionVideos": [], @@ -315950,7 +315601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 37, + "teamId": "1152", "time": 6963140, "featuredRunMedia": null, "reactionVideos": [], @@ -315978,7 +315629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 6963311, "featuredRunMedia": null, "reactionVideos": [], @@ -316016,7 +315667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 6963552, "featuredRunMedia": null, "reactionVideos": [], @@ -316044,7 +315695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 6964191, "featuredRunMedia": null, "reactionVideos": [], @@ -316072,7 +315723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 6964332, "featuredRunMedia": null, "reactionVideos": [], @@ -316105,7 +315756,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 6965689, "featuredRunMedia": null, "reactionVideos": [], @@ -316133,7 +315784,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 6966026, "featuredRunMedia": null, "reactionVideos": [], @@ -316171,7 +315822,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 6968045, "featuredRunMedia": null, "reactionVideos": [], @@ -316209,7 +315860,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 6969921, "featuredRunMedia": null, "reactionVideos": [], @@ -316237,7 +315888,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "2053", "time": 6971294, "featuredRunMedia": null, "reactionVideos": [], @@ -316275,7 +315926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 6972004, "featuredRunMedia": null, "reactionVideos": [], @@ -316303,7 +315954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 6975748, "featuredRunMedia": null, "reactionVideos": [], @@ -316331,7 +315982,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6975748, "featuredRunMedia": null, "reactionVideos": [], @@ -316359,7 +316010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 6976746, "featuredRunMedia": null, "reactionVideos": [], @@ -316397,7 +316048,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 6977652, "featuredRunMedia": null, "reactionVideos": [], @@ -316435,7 +316086,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 6977948, "featuredRunMedia": null, "reactionVideos": [], @@ -316463,7 +316114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6978041, "featuredRunMedia": null, "reactionVideos": [], @@ -316491,7 +316142,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 6979253, "featuredRunMedia": null, "reactionVideos": [], @@ -316519,7 +316170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 98, + "teamId": "2251", "time": 6982110, "featuredRunMedia": null, "reactionVideos": [], @@ -316547,7 +316198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 6983082, "featuredRunMedia": null, "reactionVideos": [], @@ -316575,7 +316226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 6984054, "featuredRunMedia": null, "reactionVideos": [], @@ -316601,7 +316252,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 341, + "teamId": "2046", "time": 6985088, "featuredRunMedia": null, "reactionVideos": [], @@ -316629,7 +316280,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 6988256, "featuredRunMedia": null, "reactionVideos": [], @@ -316657,7 +316308,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 6992454, "featuredRunMedia": null, "reactionVideos": [], @@ -316690,7 +316341,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 6993542, "featuredRunMedia": null, "reactionVideos": [], @@ -316728,7 +316379,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "1152", "time": 6994146, "featuredRunMedia": null, "reactionVideos": [], @@ -316756,7 +316407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 6994426, "featuredRunMedia": null, "reactionVideos": [], @@ -316784,7 +316435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 6995552, "featuredRunMedia": null, "reactionVideos": [], @@ -316812,7 +316463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 6998930, "featuredRunMedia": null, "reactionVideos": [], @@ -316845,7 +316496,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 7000008, "featuredRunMedia": null, "reactionVideos": [], @@ -316883,7 +316534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7000731, "featuredRunMedia": null, "reactionVideos": [], @@ -316911,7 +316562,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 7002665, "featuredRunMedia": null, "reactionVideos": [], @@ -316939,7 +316590,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 7003327, "featuredRunMedia": null, "reactionVideos": [], @@ -316977,7 +316628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 7005790, "featuredRunMedia": null, "reactionVideos": [], @@ -317005,7 +316656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7006851, "featuredRunMedia": null, "reactionVideos": [], @@ -317043,7 +316694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 196, + "teamId": "3048", "time": 7010570, "featuredRunMedia": null, "reactionVideos": [], @@ -317071,7 +316722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7011236, "featuredRunMedia": null, "reactionVideos": [], @@ -317104,7 +316755,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 7011389, "featuredRunMedia": null, "reactionVideos": [], @@ -317142,7 +316793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7011793, "featuredRunMedia": null, "reactionVideos": [], @@ -317180,7 +316831,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 7012598, "featuredRunMedia": null, "reactionVideos": [], @@ -317208,7 +316859,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 7012633, "featuredRunMedia": null, "reactionVideos": [], @@ -317236,7 +316887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 7016470, "featuredRunMedia": null, "reactionVideos": [], @@ -317274,7 +316925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7020261, "featuredRunMedia": null, "reactionVideos": [], @@ -317312,7 +316963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 7023814, "featuredRunMedia": null, "reactionVideos": [], @@ -317350,7 +317001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7024108, "featuredRunMedia": null, "reactionVideos": [], @@ -317378,7 +317029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7024804, "featuredRunMedia": null, "reactionVideos": [], @@ -317406,7 +317057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 7025320, "featuredRunMedia": null, "reactionVideos": [], @@ -317434,7 +317085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7028105, "featuredRunMedia": null, "reactionVideos": [], @@ -317462,7 +317113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 7028908, "featuredRunMedia": null, "reactionVideos": [], @@ -317490,7 +317141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7030818, "featuredRunMedia": null, "reactionVideos": [], @@ -317518,7 +317169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7033616, "featuredRunMedia": null, "reactionVideos": [], @@ -317544,7 +317195,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 7034191, "featuredRunMedia": null, "reactionVideos": [], @@ -317572,7 +317223,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 7035843, "featuredRunMedia": null, "reactionVideos": [], @@ -317600,7 +317251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 7036334, "featuredRunMedia": null, "reactionVideos": [], @@ -317628,7 +317279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 7038743, "featuredRunMedia": null, "reactionVideos": [], @@ -317666,7 +317317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "1652", "time": 7039073, "featuredRunMedia": null, "reactionVideos": [], @@ -317704,7 +317355,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7045420, "featuredRunMedia": null, "reactionVideos": [], @@ -317732,7 +317383,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 174, + "teamId": "1445", "time": 7053168, "featuredRunMedia": null, "reactionVideos": [], @@ -317760,7 +317411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 7054267, "featuredRunMedia": null, "reactionVideos": [], @@ -317798,7 +317449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7055899, "featuredRunMedia": null, "reactionVideos": [], @@ -317824,7 +317475,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 7057051, "featuredRunMedia": null, "reactionVideos": [], @@ -317862,7 +317513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 7059660, "featuredRunMedia": null, "reactionVideos": [], @@ -317900,7 +317551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7060890, "featuredRunMedia": null, "reactionVideos": [], @@ -317928,7 +317579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 7062850, "featuredRunMedia": null, "reactionVideos": [], @@ -317966,7 +317617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 7065187, "featuredRunMedia": null, "reactionVideos": [], @@ -318004,7 +317655,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7065685, "featuredRunMedia": null, "reactionVideos": [], @@ -318042,7 +317693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 7066632, "featuredRunMedia": null, "reactionVideos": [], @@ -318068,7 +317719,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 343, + "teamId": "1844", "time": 7067426, "featuredRunMedia": null, "reactionVideos": [], @@ -318096,7 +317747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 7069014, "featuredRunMedia": null, "reactionVideos": [], @@ -318124,7 +317775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 7071213, "featuredRunMedia": null, "reactionVideos": [], @@ -318162,7 +317813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 7072994, "featuredRunMedia": null, "reactionVideos": [], @@ -318200,7 +317851,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 7073652, "featuredRunMedia": null, "reactionVideos": [], @@ -318228,7 +317879,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7074376, "featuredRunMedia": null, "reactionVideos": [], @@ -318256,7 +317907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 7076087, "featuredRunMedia": null, "reactionVideos": [], @@ -318284,7 +317935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7076743, "featuredRunMedia": null, "reactionVideos": [], @@ -318322,7 +317973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 7079932, "featuredRunMedia": null, "reactionVideos": [], @@ -318360,7 +318011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7080988, "featuredRunMedia": null, "reactionVideos": [], @@ -318388,7 +318039,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 7082412, "featuredRunMedia": null, "reactionVideos": [], @@ -318426,7 +318077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 7086403, "featuredRunMedia": null, "reactionVideos": [], @@ -318454,7 +318105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 7088137, "featuredRunMedia": null, "reactionVideos": [], @@ -318492,7 +318143,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 7090971, "featuredRunMedia": null, "reactionVideos": [], @@ -318530,7 +318181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 7091116, "featuredRunMedia": null, "reactionVideos": [], @@ -318568,7 +318219,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 7091969, "featuredRunMedia": null, "reactionVideos": [], @@ -318606,7 +318257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7092768, "featuredRunMedia": null, "reactionVideos": [], @@ -318634,7 +318285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 7093480, "featuredRunMedia": null, "reactionVideos": [], @@ -318662,7 +318313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 7093778, "featuredRunMedia": null, "reactionVideos": [], @@ -318690,7 +318341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 233, + "teamId": "2351", "time": 7093836, "featuredRunMedia": null, "reactionVideos": [], @@ -318728,7 +318379,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7098228, "featuredRunMedia": null, "reactionVideos": [], @@ -318756,7 +318407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 7099086, "featuredRunMedia": null, "reactionVideos": [], @@ -318784,7 +318435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7103243, "featuredRunMedia": null, "reactionVideos": [], @@ -318812,7 +318463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7103759, "featuredRunMedia": null, "reactionVideos": [], @@ -318840,7 +318491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 7106736, "featuredRunMedia": null, "reactionVideos": [], @@ -318878,7 +318529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7107132, "featuredRunMedia": null, "reactionVideos": [], @@ -318911,7 +318562,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 7109642, "featuredRunMedia": null, "reactionVideos": [], @@ -318939,7 +318590,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 7110469, "featuredRunMedia": null, "reactionVideos": [], @@ -318977,7 +318628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7111239, "featuredRunMedia": null, "reactionVideos": [], @@ -319005,7 +318656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7111534, "featuredRunMedia": null, "reactionVideos": [], @@ -319033,7 +318684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "1444", "time": 7112675, "featuredRunMedia": null, "reactionVideos": [], @@ -319071,7 +318722,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "1152", "time": 7115243, "featuredRunMedia": null, "reactionVideos": [], @@ -319099,7 +318750,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 7115665, "featuredRunMedia": null, "reactionVideos": [], @@ -319137,7 +318788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 7116433, "featuredRunMedia": null, "reactionVideos": [], @@ -319165,7 +318816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7117933, "featuredRunMedia": null, "reactionVideos": [], @@ -319193,7 +318844,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7118439, "featuredRunMedia": null, "reactionVideos": [], @@ -319231,7 +318882,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 7119076, "featuredRunMedia": null, "reactionVideos": [], @@ -319269,7 +318920,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 7119531, "featuredRunMedia": null, "reactionVideos": [], @@ -319307,7 +318958,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7120220, "featuredRunMedia": null, "reactionVideos": [], @@ -319340,7 +318991,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 7121086, "featuredRunMedia": null, "reactionVideos": [], @@ -319378,7 +319029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7121231, "featuredRunMedia": null, "reactionVideos": [], @@ -319406,7 +319057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 7124190, "featuredRunMedia": null, "reactionVideos": [], @@ -319444,7 +319095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 7124914, "featuredRunMedia": null, "reactionVideos": [], @@ -319472,7 +319123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 7130123, "featuredRunMedia": null, "reactionVideos": [], @@ -319510,7 +319161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 7135551, "featuredRunMedia": null, "reactionVideos": [], @@ -319538,7 +319189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 7135674, "featuredRunMedia": null, "reactionVideos": [], @@ -319566,7 +319217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7136702, "featuredRunMedia": null, "reactionVideos": [], @@ -319604,7 +319255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7137210, "featuredRunMedia": null, "reactionVideos": [], @@ -319632,7 +319283,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7137380, "featuredRunMedia": null, "reactionVideos": [], @@ -319660,7 +319311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 7138801, "featuredRunMedia": null, "reactionVideos": [], @@ -319688,7 +319339,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 7139383, "featuredRunMedia": null, "reactionVideos": [], @@ -319726,7 +319377,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7140099, "featuredRunMedia": null, "reactionVideos": [], @@ -319754,7 +319405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 7142610, "featuredRunMedia": null, "reactionVideos": [], @@ -319782,7 +319433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 7144076, "featuredRunMedia": null, "reactionVideos": [], @@ -319808,7 +319459,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 29, + "teamId": "2448", "time": 7148839, "featuredRunMedia": null, "reactionVideos": [], @@ -319846,7 +319497,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 7150392, "featuredRunMedia": null, "reactionVideos": [], @@ -319884,7 +319535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7153774, "featuredRunMedia": null, "reactionVideos": [], @@ -319912,7 +319563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7155368, "featuredRunMedia": null, "reactionVideos": [], @@ -319950,7 +319601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 7156147, "featuredRunMedia": null, "reactionVideos": [], @@ -319978,7 +319629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7156379, "featuredRunMedia": null, "reactionVideos": [], @@ -320006,7 +319657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 7157325, "featuredRunMedia": null, "reactionVideos": [], @@ -320034,7 +319685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7160950, "featuredRunMedia": null, "reactionVideos": [], @@ -320072,7 +319723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 7167506, "featuredRunMedia": null, "reactionVideos": [], @@ -320100,7 +319751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 7170860, "featuredRunMedia": null, "reactionVideos": [], @@ -320138,7 +319789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7170972, "featuredRunMedia": null, "reactionVideos": [], @@ -320166,7 +319817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7171386, "featuredRunMedia": null, "reactionVideos": [], @@ -320194,7 +319845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 7172901, "featuredRunMedia": null, "reactionVideos": [], @@ -320222,7 +319873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7172959, "featuredRunMedia": null, "reactionVideos": [], @@ -320260,7 +319911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 7174246, "featuredRunMedia": null, "reactionVideos": [], @@ -320288,7 +319939,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 7175029, "featuredRunMedia": null, "reactionVideos": [], @@ -320326,7 +319977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 7176445, "featuredRunMedia": null, "reactionVideos": [], @@ -320364,7 +320015,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 7178261, "featuredRunMedia": null, "reactionVideos": [], @@ -320402,7 +320053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7184022, "featuredRunMedia": null, "reactionVideos": [], @@ -320440,7 +320091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7186879, "featuredRunMedia": null, "reactionVideos": [], @@ -320468,7 +320119,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 7188685, "featuredRunMedia": null, "reactionVideos": [], @@ -320506,7 +320157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 7188840, "featuredRunMedia": null, "reactionVideos": [], @@ -320534,7 +320185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7188871, "featuredRunMedia": null, "reactionVideos": [], @@ -320562,7 +320213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7190368, "featuredRunMedia": null, "reactionVideos": [], @@ -320590,7 +320241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7191274, "featuredRunMedia": null, "reactionVideos": [], @@ -320628,7 +320279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 7191360, "featuredRunMedia": null, "reactionVideos": [], @@ -320666,7 +320317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 7191427, "featuredRunMedia": null, "reactionVideos": [], @@ -320704,7 +320355,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7191871, "featuredRunMedia": null, "reactionVideos": [], @@ -320737,7 +320388,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 7191905, "featuredRunMedia": null, "reactionVideos": [], @@ -320775,7 +320426,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 196, + "teamId": "3048", "time": 7192183, "featuredRunMedia": null, "reactionVideos": [], @@ -320803,7 +320454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 7196310, "featuredRunMedia": null, "reactionVideos": [], @@ -320841,7 +320492,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 255, + "teamId": "1644", "time": 7196383, "featuredRunMedia": null, "reactionVideos": [], @@ -320867,7 +320518,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 7199576, "featuredRunMedia": null, "reactionVideos": [], @@ -320895,7 +320546,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 7202720, "featuredRunMedia": null, "reactionVideos": [], @@ -320923,7 +320574,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 7203514, "featuredRunMedia": null, "reactionVideos": [], @@ -320951,7 +320602,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 7203532, "featuredRunMedia": null, "reactionVideos": [], @@ -320979,7 +320630,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7204747, "featuredRunMedia": null, "reactionVideos": [], @@ -321007,7 +320658,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 7206403, "featuredRunMedia": null, "reactionVideos": [], @@ -321045,7 +320696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 100, + "teamId": "2947", "time": 7210124, "featuredRunMedia": null, "reactionVideos": [], @@ -321083,7 +320734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7215667, "featuredRunMedia": null, "reactionVideos": [], @@ -321111,7 +320762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 7218109, "featuredRunMedia": null, "reactionVideos": [], @@ -321149,7 +320800,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7218546, "featuredRunMedia": null, "reactionVideos": [], @@ -321177,7 +320828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7219901, "featuredRunMedia": null, "reactionVideos": [], @@ -321205,7 +320856,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 7222690, "featuredRunMedia": null, "reactionVideos": [], @@ -321233,7 +320884,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7223744, "featuredRunMedia": null, "reactionVideos": [], @@ -321271,7 +320922,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 7225016, "featuredRunMedia": null, "reactionVideos": [], @@ -321309,7 +320960,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 7225206, "featuredRunMedia": null, "reactionVideos": [], @@ -321337,7 +320988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 7225449, "featuredRunMedia": null, "reactionVideos": [], @@ -321365,7 +321016,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7228601, "featuredRunMedia": null, "reactionVideos": [], @@ -321403,7 +321054,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 7234383, "featuredRunMedia": null, "reactionVideos": [], @@ -321431,7 +321082,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7236212, "featuredRunMedia": null, "reactionVideos": [], @@ -321464,7 +321115,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 7237860, "featuredRunMedia": null, "reactionVideos": [], @@ -321502,7 +321153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "1152", "time": 7239377, "featuredRunMedia": null, "reactionVideos": [], @@ -321540,7 +321191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 7242059, "featuredRunMedia": null, "reactionVideos": [], @@ -321578,7 +321229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 7247534, "featuredRunMedia": null, "reactionVideos": [], @@ -321606,7 +321257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 7247990, "featuredRunMedia": null, "reactionVideos": [], @@ -321644,7 +321295,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 7248146, "featuredRunMedia": null, "reactionVideos": [], @@ -321672,7 +321323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7248240, "featuredRunMedia": null, "reactionVideos": [], @@ -321700,7 +321351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 7252232, "featuredRunMedia": null, "reactionVideos": [], @@ -321728,7 +321379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7253376, "featuredRunMedia": null, "reactionVideos": [], @@ -321756,7 +321407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 7261146, "featuredRunMedia": null, "reactionVideos": [], @@ -321784,7 +321435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 7261804, "featuredRunMedia": null, "reactionVideos": [], @@ -321812,7 +321463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 7262814, "featuredRunMedia": null, "reactionVideos": [], @@ -321850,7 +321501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7264060, "featuredRunMedia": null, "reactionVideos": [], @@ -321888,7 +321539,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 7265227, "featuredRunMedia": null, "reactionVideos": [], @@ -321916,7 +321567,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7266381, "featuredRunMedia": null, "reactionVideos": [], @@ -321954,7 +321605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 7267359, "featuredRunMedia": null, "reactionVideos": [], @@ -321992,7 +321643,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7268241, "featuredRunMedia": null, "reactionVideos": [], @@ -322030,7 +321681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 7269812, "featuredRunMedia": null, "reactionVideos": [], @@ -322058,7 +321709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 7270534, "featuredRunMedia": null, "reactionVideos": [], @@ -322096,7 +321747,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7271169, "featuredRunMedia": null, "reactionVideos": [], @@ -322124,7 +321775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7272074, "featuredRunMedia": null, "reactionVideos": [], @@ -322152,7 +321803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 7274163, "featuredRunMedia": null, "reactionVideos": [], @@ -322180,7 +321831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 7279560, "featuredRunMedia": null, "reactionVideos": [], @@ -322206,7 +321857,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 7284112, "featuredRunMedia": null, "reactionVideos": [], @@ -322234,7 +321885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7286757, "featuredRunMedia": null, "reactionVideos": [], @@ -322272,7 +321923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 7289340, "featuredRunMedia": null, "reactionVideos": [], @@ -322310,7 +321961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 7289910, "featuredRunMedia": null, "reactionVideos": [], @@ -322348,7 +321999,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7290617, "featuredRunMedia": null, "reactionVideos": [], @@ -322376,7 +322027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7292761, "featuredRunMedia": null, "reactionVideos": [], @@ -322414,7 +322065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 7293254, "featuredRunMedia": null, "reactionVideos": [], @@ -322442,7 +322093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 7293439, "featuredRunMedia": null, "reactionVideos": [], @@ -322470,7 +322121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 7295982, "featuredRunMedia": null, "reactionVideos": [], @@ -322498,7 +322149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7296412, "featuredRunMedia": null, "reactionVideos": [], @@ -322526,7 +322177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7297260, "featuredRunMedia": null, "reactionVideos": [], @@ -322564,7 +322215,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 7297302, "featuredRunMedia": null, "reactionVideos": [], @@ -322602,7 +322253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7303965, "featuredRunMedia": null, "reactionVideos": [], @@ -322624,7 +322275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7306269, "featuredRunMedia": null, "reactionVideos": [], @@ -322662,7 +322313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 7308612, "featuredRunMedia": null, "reactionVideos": [], @@ -322690,7 +322341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7309063, "featuredRunMedia": null, "reactionVideos": [], @@ -322718,7 +322369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "1653", "time": 7309254, "featuredRunMedia": null, "reactionVideos": [], @@ -322746,7 +322397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 7314850, "featuredRunMedia": null, "reactionVideos": [], @@ -322784,7 +322435,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7315314, "featuredRunMedia": null, "reactionVideos": [], @@ -322822,7 +322473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 36, + "teamId": "2242", "time": 7315674, "featuredRunMedia": null, "reactionVideos": [], @@ -322860,7 +322511,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7315727, "featuredRunMedia": null, "reactionVideos": [], @@ -322898,7 +322549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "2454", "time": 7315975, "featuredRunMedia": null, "reactionVideos": [], @@ -322936,7 +322587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 7316094, "featuredRunMedia": null, "reactionVideos": [], @@ -322964,7 +322615,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 7316609, "featuredRunMedia": null, "reactionVideos": [], @@ -322992,7 +322643,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 7318761, "featuredRunMedia": null, "reactionVideos": [], @@ -323020,7 +322671,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7321792, "featuredRunMedia": null, "reactionVideos": [], @@ -323046,7 +322697,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "3256", "time": 7324676, "featuredRunMedia": null, "reactionVideos": [], @@ -323074,7 +322725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 7325054, "featuredRunMedia": null, "reactionVideos": [], @@ -323112,7 +322763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 7326102, "featuredRunMedia": null, "reactionVideos": [], @@ -323140,7 +322791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7329095, "featuredRunMedia": null, "reactionVideos": [], @@ -323168,7 +322819,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7330593, "featuredRunMedia": null, "reactionVideos": [], @@ -323196,7 +322847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7333697, "featuredRunMedia": null, "reactionVideos": [], @@ -323229,7 +322880,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 7336967, "featuredRunMedia": null, "reactionVideos": [], @@ -323267,7 +322918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 7338655, "featuredRunMedia": null, "reactionVideos": [], @@ -323300,7 +322951,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 7341330, "featuredRunMedia": null, "reactionVideos": [], @@ -323328,7 +322979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 7341705, "featuredRunMedia": null, "reactionVideos": [], @@ -323366,7 +323017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7341735, "featuredRunMedia": null, "reactionVideos": [], @@ -323394,7 +323045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 7343843, "featuredRunMedia": null, "reactionVideos": [], @@ -323432,7 +323083,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 7343929, "featuredRunMedia": null, "reactionVideos": [], @@ -323470,7 +323121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7344094, "featuredRunMedia": null, "reactionVideos": [], @@ -323508,7 +323159,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7345194, "featuredRunMedia": null, "reactionVideos": [], @@ -323536,7 +323187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7345780, "featuredRunMedia": null, "reactionVideos": [], @@ -323574,7 +323225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 7346739, "featuredRunMedia": null, "reactionVideos": [], @@ -323612,7 +323263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7347637, "featuredRunMedia": null, "reactionVideos": [], @@ -323650,7 +323301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 7353982, "featuredRunMedia": null, "reactionVideos": [], @@ -323688,7 +323339,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7354540, "featuredRunMedia": null, "reactionVideos": [], @@ -323721,7 +323372,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 7356548, "featuredRunMedia": null, "reactionVideos": [], @@ -323749,7 +323400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 7360085, "featuredRunMedia": null, "reactionVideos": [], @@ -323787,7 +323438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7361465, "featuredRunMedia": null, "reactionVideos": [], @@ -323825,7 +323476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7364796, "featuredRunMedia": null, "reactionVideos": [], @@ -323853,7 +323504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7366352, "featuredRunMedia": null, "reactionVideos": [], @@ -323881,7 +323532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "2252", "time": 7373244, "featuredRunMedia": null, "reactionVideos": [], @@ -323909,7 +323560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 7374804, "featuredRunMedia": null, "reactionVideos": [], @@ -323937,7 +323588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 7375809, "featuredRunMedia": null, "reactionVideos": [], @@ -323975,7 +323626,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7379628, "featuredRunMedia": null, "reactionVideos": [], @@ -324003,7 +323654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7380072, "featuredRunMedia": null, "reactionVideos": [], @@ -324036,7 +323687,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 7380570, "featuredRunMedia": null, "reactionVideos": [], @@ -324064,7 +323715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 7382175, "featuredRunMedia": null, "reactionVideos": [], @@ -324092,7 +323743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "2442", "time": 7382267, "featuredRunMedia": null, "reactionVideos": [], @@ -324120,7 +323771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7384557, "featuredRunMedia": null, "reactionVideos": [], @@ -324158,7 +323809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7386469, "featuredRunMedia": null, "reactionVideos": [], @@ -324186,7 +323837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 7387854, "featuredRunMedia": null, "reactionVideos": [], @@ -324214,7 +323865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 7387960, "featuredRunMedia": null, "reactionVideos": [], @@ -324242,7 +323893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 7391431, "featuredRunMedia": null, "reactionVideos": [], @@ -324270,7 +323921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 7396484, "featuredRunMedia": null, "reactionVideos": [], @@ -324298,7 +323949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 180, + "teamId": "3155", "time": 7397285, "featuredRunMedia": null, "reactionVideos": [], @@ -324336,7 +323987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 7397756, "featuredRunMedia": null, "reactionVideos": [], @@ -324364,7 +324015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 7400665, "featuredRunMedia": null, "reactionVideos": [], @@ -324392,7 +324043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 7403293, "featuredRunMedia": null, "reactionVideos": [], @@ -324430,7 +324081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 7409911, "featuredRunMedia": null, "reactionVideos": [], @@ -324468,7 +324119,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 7414207, "featuredRunMedia": null, "reactionVideos": [], @@ -324494,7 +324145,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 7415782, "featuredRunMedia": null, "reactionVideos": [], @@ -324522,7 +324173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 7421108, "featuredRunMedia": null, "reactionVideos": [], @@ -324560,7 +324211,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 7421321, "featuredRunMedia": null, "reactionVideos": [], @@ -324588,7 +324239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 7426735, "featuredRunMedia": null, "reactionVideos": [], @@ -324616,7 +324267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 7430421, "featuredRunMedia": null, "reactionVideos": [], @@ -324654,7 +324305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7431232, "featuredRunMedia": null, "reactionVideos": [], @@ -324680,7 +324331,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 7431902, "featuredRunMedia": null, "reactionVideos": [], @@ -324718,7 +324369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7432497, "featuredRunMedia": null, "reactionVideos": [], @@ -324756,7 +324407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 7432981, "featuredRunMedia": null, "reactionVideos": [], @@ -324784,7 +324435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 7432981, "featuredRunMedia": null, "reactionVideos": [], @@ -324812,7 +324463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7439676, "featuredRunMedia": null, "reactionVideos": [], @@ -324840,7 +324491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7440134, "featuredRunMedia": null, "reactionVideos": [], @@ -324868,7 +324519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 7441821, "featuredRunMedia": null, "reactionVideos": [], @@ -324906,7 +324557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7443351, "featuredRunMedia": null, "reactionVideos": [], @@ -324944,7 +324595,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7444871, "featuredRunMedia": null, "reactionVideos": [], @@ -324982,7 +324633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7445425, "featuredRunMedia": null, "reactionVideos": [], @@ -325010,7 +324661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 7446492, "featuredRunMedia": null, "reactionVideos": [], @@ -325038,7 +324689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 7448059, "featuredRunMedia": null, "reactionVideos": [], @@ -325071,7 +324722,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 7449790, "featuredRunMedia": null, "reactionVideos": [], @@ -325109,7 +324760,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 7450234, "featuredRunMedia": null, "reactionVideos": [], @@ -325147,7 +324798,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7451821, "featuredRunMedia": null, "reactionVideos": [], @@ -325175,7 +324826,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7452024, "featuredRunMedia": null, "reactionVideos": [], @@ -325213,7 +324864,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7452159, "featuredRunMedia": null, "reactionVideos": [], @@ -325241,7 +324892,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7455432, "featuredRunMedia": null, "reactionVideos": [], @@ -325279,7 +324930,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7455893, "featuredRunMedia": null, "reactionVideos": [], @@ -325317,7 +324968,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 7455973, "featuredRunMedia": null, "reactionVideos": [], @@ -325345,7 +324996,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7456834, "featuredRunMedia": null, "reactionVideos": [], @@ -325383,7 +325034,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7456840, "featuredRunMedia": null, "reactionVideos": [], @@ -325411,7 +325062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7457247, "featuredRunMedia": null, "reactionVideos": [], @@ -325449,7 +325100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 7457506, "featuredRunMedia": null, "reactionVideos": [], @@ -325475,7 +325126,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 189, + "teamId": "3049", "time": 7460737, "featuredRunMedia": null, "reactionVideos": [], @@ -325503,7 +325154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 7462304, "featuredRunMedia": null, "reactionVideos": [], @@ -325531,7 +325182,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7462656, "featuredRunMedia": null, "reactionVideos": [], @@ -325559,7 +325210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 7462743, "featuredRunMedia": null, "reactionVideos": [], @@ -325597,7 +325248,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 7467511, "featuredRunMedia": null, "reactionVideos": [], @@ -325625,7 +325276,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "3049", "time": 7467521, "featuredRunMedia": null, "reactionVideos": [], @@ -325663,7 +325314,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7467760, "featuredRunMedia": null, "reactionVideos": [], @@ -325701,7 +325352,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7469385, "featuredRunMedia": null, "reactionVideos": [], @@ -325729,7 +325380,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7469461, "featuredRunMedia": null, "reactionVideos": [], @@ -325767,7 +325418,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7471471, "featuredRunMedia": null, "reactionVideos": [], @@ -325805,7 +325456,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7471673, "featuredRunMedia": null, "reactionVideos": [], @@ -325833,7 +325484,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 7471926, "featuredRunMedia": null, "reactionVideos": [], @@ -325861,7 +325512,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 7473567, "featuredRunMedia": null, "reactionVideos": [], @@ -325889,7 +325540,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 7475972, "featuredRunMedia": null, "reactionVideos": [], @@ -325917,7 +325568,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 7476284, "featuredRunMedia": null, "reactionVideos": [], @@ -325955,7 +325606,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7476325, "featuredRunMedia": null, "reactionVideos": [], @@ -325988,7 +325639,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 7480716, "featuredRunMedia": null, "reactionVideos": [], @@ -326016,7 +325667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 7482999, "featuredRunMedia": null, "reactionVideos": [], @@ -326054,7 +325705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 7486688, "featuredRunMedia": null, "reactionVideos": [], @@ -326082,7 +325733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7488512, "featuredRunMedia": null, "reactionVideos": [], @@ -326120,7 +325771,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 7488566, "featuredRunMedia": null, "reactionVideos": [], @@ -326158,7 +325809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 7492200, "featuredRunMedia": null, "reactionVideos": [], @@ -326186,7 +325837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7492654, "featuredRunMedia": null, "reactionVideos": [], @@ -326224,7 +325875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 7492909, "featuredRunMedia": null, "reactionVideos": [], @@ -326252,7 +325903,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 7494762, "featuredRunMedia": null, "reactionVideos": [], @@ -326280,7 +325931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7498226, "featuredRunMedia": null, "reactionVideos": [], @@ -326318,7 +325969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 7502109, "featuredRunMedia": null, "reactionVideos": [], @@ -326346,7 +325997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7504718, "featuredRunMedia": null, "reactionVideos": [], @@ -326374,7 +326025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 7507593, "featuredRunMedia": null, "reactionVideos": [], @@ -326407,7 +326058,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 7508454, "featuredRunMedia": null, "reactionVideos": [], @@ -326440,7 +326091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 7509365, "featuredRunMedia": null, "reactionVideos": [], @@ -326478,7 +326129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 7512537, "featuredRunMedia": null, "reactionVideos": [], @@ -326506,7 +326157,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 7514674, "featuredRunMedia": null, "reactionVideos": [], @@ -326534,7 +326185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7515161, "featuredRunMedia": null, "reactionVideos": [], @@ -326567,7 +326218,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 7517996, "featuredRunMedia": null, "reactionVideos": [], @@ -326605,7 +326256,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 7518649, "featuredRunMedia": null, "reactionVideos": [], @@ -326633,7 +326284,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7519122, "featuredRunMedia": null, "reactionVideos": [], @@ -326661,7 +326312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7519642, "featuredRunMedia": null, "reactionVideos": [], @@ -326694,7 +326345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "2145", "time": 7519894, "featuredRunMedia": null, "reactionVideos": [], @@ -326722,7 +326373,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 7521217, "featuredRunMedia": null, "reactionVideos": [], @@ -326750,7 +326401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 7522687, "featuredRunMedia": null, "reactionVideos": [], @@ -326778,7 +326429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 7524763, "featuredRunMedia": null, "reactionVideos": [], @@ -326816,7 +326467,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7525234, "featuredRunMedia": null, "reactionVideos": [], @@ -326854,7 +326505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 7530037, "featuredRunMedia": null, "reactionVideos": [], @@ -326882,7 +326533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 7530085, "featuredRunMedia": null, "reactionVideos": [], @@ -326920,7 +326571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 7530533, "featuredRunMedia": null, "reactionVideos": [], @@ -326948,7 +326599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "3049", "time": 7531782, "featuredRunMedia": null, "reactionVideos": [], @@ -326986,7 +326637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7540264, "featuredRunMedia": null, "reactionVideos": [], @@ -327014,7 +326665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "3045", "time": 7540264, "featuredRunMedia": null, "reactionVideos": [], @@ -327042,7 +326693,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7540846, "featuredRunMedia": null, "reactionVideos": [], @@ -327080,7 +326731,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 7544475, "featuredRunMedia": null, "reactionVideos": [], @@ -327108,7 +326759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7546086, "featuredRunMedia": null, "reactionVideos": [], @@ -327136,7 +326787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "3049", "time": 7546134, "featuredRunMedia": null, "reactionVideos": [], @@ -327164,7 +326815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 7550308, "featuredRunMedia": null, "reactionVideos": [], @@ -327192,7 +326843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7550553, "featuredRunMedia": null, "reactionVideos": [], @@ -327230,7 +326881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7553166, "featuredRunMedia": null, "reactionVideos": [], @@ -327258,7 +326909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "2442", "time": 7557118, "featuredRunMedia": null, "reactionVideos": [], @@ -327286,7 +326937,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 7557502, "featuredRunMedia": null, "reactionVideos": [], @@ -327324,7 +326975,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 7562125, "featuredRunMedia": null, "reactionVideos": [], @@ -327362,7 +327013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 7564254, "featuredRunMedia": null, "reactionVideos": [], @@ -327400,7 +327051,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 7565010, "featuredRunMedia": null, "reactionVideos": [], @@ -327428,7 +327079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 7566677, "featuredRunMedia": null, "reactionVideos": [], @@ -327456,7 +327107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7567908, "featuredRunMedia": null, "reactionVideos": [], @@ -327484,7 +327135,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 7570226, "featuredRunMedia": null, "reactionVideos": [], @@ -327522,7 +327173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7574583, "featuredRunMedia": null, "reactionVideos": [], @@ -327550,7 +327201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 68, + "teamId": "2644", "time": 7577321, "featuredRunMedia": null, "reactionVideos": [], @@ -327578,7 +327229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 7577438, "featuredRunMedia": null, "reactionVideos": [], @@ -327616,7 +327267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 7579710, "featuredRunMedia": null, "reactionVideos": [], @@ -327644,7 +327295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 7579863, "featuredRunMedia": null, "reactionVideos": [], @@ -327672,7 +327323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7581837, "featuredRunMedia": null, "reactionVideos": [], @@ -327700,7 +327351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 7582015, "featuredRunMedia": null, "reactionVideos": [], @@ -327738,7 +327389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 7583591, "featuredRunMedia": null, "reactionVideos": [], @@ -327766,7 +327417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7587933, "featuredRunMedia": null, "reactionVideos": [], @@ -327794,7 +327445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 7588359, "featuredRunMedia": null, "reactionVideos": [], @@ -327822,7 +327473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 7590861, "featuredRunMedia": null, "reactionVideos": [], @@ -327850,7 +327501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 7591009, "featuredRunMedia": null, "reactionVideos": [], @@ -327878,7 +327529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7592275, "featuredRunMedia": null, "reactionVideos": [], @@ -327906,7 +327557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 7594108, "featuredRunMedia": null, "reactionVideos": [], @@ -327934,7 +327585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7597236, "featuredRunMedia": null, "reactionVideos": [], @@ -327972,7 +327623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7598157, "featuredRunMedia": null, "reactionVideos": [], @@ -328000,7 +327651,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 7598226, "featuredRunMedia": null, "reactionVideos": [], @@ -328028,7 +327679,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7598588, "featuredRunMedia": null, "reactionVideos": [], @@ -328066,7 +327717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7600315, "featuredRunMedia": null, "reactionVideos": [], @@ -328092,7 +327743,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "3256", "time": 7600442, "featuredRunMedia": null, "reactionVideos": [], @@ -328120,7 +327771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 7600444, "featuredRunMedia": null, "reactionVideos": [], @@ -328158,7 +327809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 7604466, "featuredRunMedia": null, "reactionVideos": [], @@ -328186,7 +327837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "2643", "time": 7606374, "featuredRunMedia": null, "reactionVideos": [], @@ -328214,7 +327865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 7607389, "featuredRunMedia": null, "reactionVideos": [], @@ -328242,7 +327893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 7610695, "featuredRunMedia": null, "reactionVideos": [], @@ -328280,7 +327931,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 7611106, "featuredRunMedia": null, "reactionVideos": [], @@ -328308,7 +327959,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 7611468, "featuredRunMedia": null, "reactionVideos": [], @@ -328336,7 +327987,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7612639, "featuredRunMedia": null, "reactionVideos": [], @@ -328364,7 +328015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 7613514, "featuredRunMedia": null, "reactionVideos": [], @@ -328402,7 +328053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7615641, "featuredRunMedia": null, "reactionVideos": [], @@ -328440,7 +328091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7617933, "featuredRunMedia": null, "reactionVideos": [], @@ -328473,7 +328124,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 7619694, "featuredRunMedia": null, "reactionVideos": [], @@ -328506,7 +328157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 7619996, "featuredRunMedia": null, "reactionVideos": [], @@ -328532,7 +328183,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 247, + "teamId": "2052", "time": 7620777, "featuredRunMedia": null, "reactionVideos": [], @@ -328560,7 +328211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 7622234, "featuredRunMedia": null, "reactionVideos": [], @@ -328588,7 +328239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7624312, "featuredRunMedia": null, "reactionVideos": [], @@ -328626,7 +328277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 7625320, "featuredRunMedia": null, "reactionVideos": [], @@ -328654,7 +328305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 7627910, "featuredRunMedia": null, "reactionVideos": [], @@ -328682,7 +328333,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7628207, "featuredRunMedia": null, "reactionVideos": [], @@ -328710,7 +328361,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7628734, "featuredRunMedia": null, "reactionVideos": [], @@ -328743,7 +328394,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 7629054, "featuredRunMedia": null, "reactionVideos": [], @@ -328771,7 +328422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7629589, "featuredRunMedia": null, "reactionVideos": [], @@ -328809,7 +328460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7631557, "featuredRunMedia": null, "reactionVideos": [], @@ -328847,7 +328498,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 7632654, "featuredRunMedia": null, "reactionVideos": [], @@ -328873,7 +328524,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 7634125, "featuredRunMedia": null, "reactionVideos": [], @@ -328911,7 +328562,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7636051, "featuredRunMedia": null, "reactionVideos": [], @@ -328933,7 +328584,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 7636054, "featuredRunMedia": null, "reactionVideos": [], @@ -328961,7 +328612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7638814, "featuredRunMedia": null, "reactionVideos": [], @@ -328999,7 +328650,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 7638854, "featuredRunMedia": null, "reactionVideos": [], @@ -329027,7 +328678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7639300, "featuredRunMedia": null, "reactionVideos": [], @@ -329065,7 +328716,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7639652, "featuredRunMedia": null, "reactionVideos": [], @@ -329093,7 +328744,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "2847", "time": 7640297, "featuredRunMedia": null, "reactionVideos": [], @@ -329121,7 +328772,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7642410, "featuredRunMedia": null, "reactionVideos": [], @@ -329149,7 +328800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 7644071, "featuredRunMedia": null, "reactionVideos": [], @@ -329177,7 +328828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7645255, "featuredRunMedia": null, "reactionVideos": [], @@ -329199,7 +328850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7646538, "featuredRunMedia": null, "reactionVideos": [], @@ -329237,7 +328888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 7647842, "featuredRunMedia": null, "reactionVideos": [], @@ -329265,7 +328916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 7649103, "featuredRunMedia": null, "reactionVideos": [], @@ -329303,7 +328954,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7651476, "featuredRunMedia": null, "reactionVideos": [], @@ -329331,7 +328982,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7653702, "featuredRunMedia": null, "reactionVideos": [], @@ -329359,7 +329010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 7654698, "featuredRunMedia": null, "reactionVideos": [], @@ -329387,7 +329038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7655804, "featuredRunMedia": null, "reactionVideos": [], @@ -329415,7 +329066,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7656301, "featuredRunMedia": null, "reactionVideos": [], @@ -329443,7 +329094,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 7657557, "featuredRunMedia": null, "reactionVideos": [], @@ -329465,7 +329116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7658473, "featuredRunMedia": null, "reactionVideos": [], @@ -329503,7 +329154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 7662074, "featuredRunMedia": null, "reactionVideos": [], @@ -329541,7 +329192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 31, + "teamId": "2955", "time": 7663009, "featuredRunMedia": null, "reactionVideos": [], @@ -329569,7 +329220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 248, + "teamId": "3250", "time": 7663495, "featuredRunMedia": null, "reactionVideos": [], @@ -329607,7 +329258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7665027, "featuredRunMedia": null, "reactionVideos": [], @@ -329645,7 +329296,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 7665127, "featuredRunMedia": null, "reactionVideos": [], @@ -329683,7 +329334,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 7665400, "featuredRunMedia": null, "reactionVideos": [], @@ -329711,7 +329362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7665670, "featuredRunMedia": null, "reactionVideos": [], @@ -329739,7 +329390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7666701, "featuredRunMedia": null, "reactionVideos": [], @@ -329767,7 +329418,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 7668530, "featuredRunMedia": null, "reactionVideos": [], @@ -329805,7 +329456,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7669303, "featuredRunMedia": null, "reactionVideos": [], @@ -329843,7 +329494,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7670884, "featuredRunMedia": null, "reactionVideos": [], @@ -329871,7 +329522,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 7673073, "featuredRunMedia": null, "reactionVideos": [], @@ -329909,7 +329560,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 7673432, "featuredRunMedia": null, "reactionVideos": [], @@ -329937,7 +329588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "2643", "time": 7674318, "featuredRunMedia": null, "reactionVideos": [], @@ -329965,7 +329616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 7675441, "featuredRunMedia": null, "reactionVideos": [], @@ -329993,7 +329644,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7676389, "featuredRunMedia": null, "reactionVideos": [], @@ -330026,7 +329677,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 7676544, "featuredRunMedia": null, "reactionVideos": [], @@ -330054,7 +329705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "1843", "time": 7677422, "featuredRunMedia": null, "reactionVideos": [], @@ -330082,7 +329733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7677797, "featuredRunMedia": null, "reactionVideos": [], @@ -330120,7 +329771,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 7678328, "featuredRunMedia": null, "reactionVideos": [], @@ -330148,7 +329799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7680748, "featuredRunMedia": null, "reactionVideos": [], @@ -330176,7 +329827,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 7680749, "featuredRunMedia": null, "reactionVideos": [], @@ -330204,7 +329855,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 7681215, "featuredRunMedia": null, "reactionVideos": [], @@ -330232,7 +329883,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 7681246, "featuredRunMedia": null, "reactionVideos": [], @@ -330270,7 +329921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7683138, "featuredRunMedia": null, "reactionVideos": [], @@ -330308,7 +329959,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7684365, "featuredRunMedia": null, "reactionVideos": [], @@ -330330,7 +329981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7684377, "featuredRunMedia": null, "reactionVideos": [], @@ -330368,7 +330019,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "1147", "time": 7685443, "featuredRunMedia": null, "reactionVideos": [], @@ -330396,7 +330047,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7687892, "featuredRunMedia": null, "reactionVideos": [], @@ -330429,7 +330080,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 7689641, "featuredRunMedia": null, "reactionVideos": [], @@ -330457,7 +330108,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 7690553, "featuredRunMedia": null, "reactionVideos": [], @@ -330483,7 +330134,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 7691353, "featuredRunMedia": null, "reactionVideos": [], @@ -330511,7 +330162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7691603, "featuredRunMedia": null, "reactionVideos": [], @@ -330549,7 +330200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7692149, "featuredRunMedia": null, "reactionVideos": [], @@ -330577,7 +330228,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7697140, "featuredRunMedia": null, "reactionVideos": [], @@ -330605,7 +330256,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7697458, "featuredRunMedia": null, "reactionVideos": [], @@ -330643,7 +330294,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7699855, "featuredRunMedia": null, "reactionVideos": [], @@ -330671,7 +330322,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 7700547, "featuredRunMedia": null, "reactionVideos": [], @@ -330709,7 +330360,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 7701503, "featuredRunMedia": null, "reactionVideos": [], @@ -330747,7 +330398,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7701551, "featuredRunMedia": null, "reactionVideos": [], @@ -330775,7 +330426,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7701640, "featuredRunMedia": null, "reactionVideos": [], @@ -330803,7 +330454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7703243, "featuredRunMedia": null, "reactionVideos": [], @@ -330841,7 +330492,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 70, + "teamId": "3253", "time": 7703579, "featuredRunMedia": null, "reactionVideos": [], @@ -330874,7 +330525,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 7705130, "featuredRunMedia": null, "reactionVideos": [], @@ -330912,7 +330563,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 7706694, "featuredRunMedia": null, "reactionVideos": [], @@ -330940,7 +330591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 7708300, "featuredRunMedia": null, "reactionVideos": [], @@ -330978,7 +330629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7708681, "featuredRunMedia": null, "reactionVideos": [], @@ -331006,7 +330657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 7709700, "featuredRunMedia": null, "reactionVideos": [], @@ -331034,7 +330685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 7713612, "featuredRunMedia": null, "reactionVideos": [], @@ -331062,7 +330713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 7714315, "featuredRunMedia": null, "reactionVideos": [], @@ -331084,7 +330735,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7716162, "featuredRunMedia": null, "reactionVideos": [], @@ -331122,7 +330773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 7716633, "featuredRunMedia": null, "reactionVideos": [], @@ -331160,7 +330811,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 7718031, "featuredRunMedia": null, "reactionVideos": [], @@ -331188,7 +330839,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 7718506, "featuredRunMedia": null, "reactionVideos": [], @@ -331216,7 +330867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 7720273, "featuredRunMedia": null, "reactionVideos": [], @@ -331242,7 +330893,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 7720798, "featuredRunMedia": null, "reactionVideos": [], @@ -331280,7 +330931,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7721719, "featuredRunMedia": null, "reactionVideos": [], @@ -331308,7 +330959,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 7723416, "featuredRunMedia": null, "reactionVideos": [], @@ -331336,7 +330987,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 7730629, "featuredRunMedia": null, "reactionVideos": [], @@ -331362,7 +331013,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 116, + "teamId": "1956", "time": 7732285, "featuredRunMedia": null, "reactionVideos": [], @@ -331400,7 +331051,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 7733013, "featuredRunMedia": null, "reactionVideos": [], @@ -331428,7 +331079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 27, + "teamId": "1653", "time": 7736277, "featuredRunMedia": null, "reactionVideos": [], @@ -331456,7 +331107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 7736776, "featuredRunMedia": null, "reactionVideos": [], @@ -331484,7 +331135,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 7739855, "featuredRunMedia": null, "reactionVideos": [], @@ -331512,7 +331163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7739957, "featuredRunMedia": null, "reactionVideos": [], @@ -331540,7 +331191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 41, + "teamId": "2642", "time": 7741209, "featuredRunMedia": null, "reactionVideos": [], @@ -331578,7 +331229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 7741232, "featuredRunMedia": null, "reactionVideos": [], @@ -331606,7 +331257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 7741727, "featuredRunMedia": null, "reactionVideos": [], @@ -331634,7 +331285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7742099, "featuredRunMedia": null, "reactionVideos": [], @@ -331662,7 +331313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7745444, "featuredRunMedia": null, "reactionVideos": [], @@ -331700,7 +331351,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7746479, "featuredRunMedia": null, "reactionVideos": [], @@ -331728,7 +331379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7748567, "featuredRunMedia": null, "reactionVideos": [], @@ -331766,7 +331417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7748867, "featuredRunMedia": null, "reactionVideos": [], @@ -331794,7 +331445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 7750526, "featuredRunMedia": null, "reactionVideos": [], @@ -331832,7 +331483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 7752171, "featuredRunMedia": null, "reactionVideos": [], @@ -331860,7 +331511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 7752843, "featuredRunMedia": null, "reactionVideos": [], @@ -331888,7 +331539,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7756464, "featuredRunMedia": null, "reactionVideos": [], @@ -331916,7 +331567,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 7756851, "featuredRunMedia": null, "reactionVideos": [], @@ -331954,7 +331605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 7758103, "featuredRunMedia": null, "reactionVideos": [], @@ -331982,7 +331633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7758144, "featuredRunMedia": null, "reactionVideos": [], @@ -332015,7 +331666,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 7758774, "featuredRunMedia": null, "reactionVideos": [], @@ -332043,7 +331694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 7759287, "featuredRunMedia": null, "reactionVideos": [], @@ -332071,7 +331722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 7760778, "featuredRunMedia": null, "reactionVideos": [], @@ -332109,7 +331760,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 7766617, "featuredRunMedia": null, "reactionVideos": [], @@ -332137,7 +331788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7767922, "featuredRunMedia": null, "reactionVideos": [], @@ -332175,7 +331826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 7769682, "featuredRunMedia": null, "reactionVideos": [], @@ -332203,7 +331854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 7771171, "featuredRunMedia": null, "reactionVideos": [], @@ -332231,7 +331882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 7772399, "featuredRunMedia": null, "reactionVideos": [], @@ -332269,7 +331920,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7772650, "featuredRunMedia": null, "reactionVideos": [], @@ -332297,7 +331948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 7775516, "featuredRunMedia": null, "reactionVideos": [], @@ -332325,7 +331976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 7776328, "featuredRunMedia": null, "reactionVideos": [], @@ -332353,7 +332004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 7777430, "featuredRunMedia": null, "reactionVideos": [], @@ -332381,7 +332032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7779358, "featuredRunMedia": null, "reactionVideos": [], @@ -332409,7 +332060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 7779718, "featuredRunMedia": null, "reactionVideos": [], @@ -332447,7 +332098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7784952, "featuredRunMedia": null, "reactionVideos": [], @@ -332485,7 +332136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7786518, "featuredRunMedia": null, "reactionVideos": [], @@ -332513,7 +332164,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7789353, "featuredRunMedia": null, "reactionVideos": [], @@ -332541,7 +332192,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7789642, "featuredRunMedia": null, "reactionVideos": [], @@ -332569,7 +332220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 7791639, "featuredRunMedia": null, "reactionVideos": [], @@ -332607,7 +332258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 7796011, "featuredRunMedia": null, "reactionVideos": [], @@ -332635,7 +332286,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7796135, "featuredRunMedia": null, "reactionVideos": [], @@ -332673,7 +332324,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 7798288, "featuredRunMedia": null, "reactionVideos": [], @@ -332699,7 +332350,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 7801624, "featuredRunMedia": null, "reactionVideos": [], @@ -332737,7 +332388,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "2454", "time": 7801746, "featuredRunMedia": null, "reactionVideos": [], @@ -332775,7 +332426,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 7802429, "featuredRunMedia": null, "reactionVideos": [], @@ -332803,7 +332454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 7805897, "featuredRunMedia": null, "reactionVideos": [], @@ -332829,7 +332480,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 7806163, "featuredRunMedia": null, "reactionVideos": [], @@ -332867,7 +332518,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 7806377, "featuredRunMedia": null, "reactionVideos": [], @@ -332905,7 +332556,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 7807842, "featuredRunMedia": null, "reactionVideos": [], @@ -332933,7 +332584,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7810637, "featuredRunMedia": null, "reactionVideos": [], @@ -332971,7 +332622,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 7813006, "featuredRunMedia": null, "reactionVideos": [], @@ -332999,7 +332650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 7815765, "featuredRunMedia": null, "reactionVideos": [], @@ -333027,7 +332678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 213, + "teamId": "2456", "time": 7816220, "featuredRunMedia": null, "reactionVideos": [], @@ -333049,7 +332700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7816999, "featuredRunMedia": null, "reactionVideos": [], @@ -333087,7 +332738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7818853, "featuredRunMedia": null, "reactionVideos": [], @@ -333125,7 +332776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7819091, "featuredRunMedia": null, "reactionVideos": [], @@ -333153,7 +332804,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 7819239, "featuredRunMedia": null, "reactionVideos": [], @@ -333191,7 +332842,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 7820878, "featuredRunMedia": null, "reactionVideos": [], @@ -333219,7 +332870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7821265, "featuredRunMedia": null, "reactionVideos": [], @@ -333247,7 +332898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 7821455, "featuredRunMedia": null, "reactionVideos": [], @@ -333285,7 +332936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "1654", "time": 7821891, "featuredRunMedia": null, "reactionVideos": [], @@ -333313,7 +332964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 7822415, "featuredRunMedia": null, "reactionVideos": [], @@ -333341,7 +332992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 7823745, "featuredRunMedia": null, "reactionVideos": [], @@ -333379,7 +333030,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 7824124, "featuredRunMedia": null, "reactionVideos": [], @@ -333417,7 +333068,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 7830308, "featuredRunMedia": null, "reactionVideos": [], @@ -333455,7 +333106,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 7833857, "featuredRunMedia": null, "reactionVideos": [], @@ -333483,7 +333134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 7834787, "featuredRunMedia": null, "reactionVideos": [], @@ -333511,7 +333162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7834975, "featuredRunMedia": null, "reactionVideos": [], @@ -333537,7 +333188,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 7836116, "featuredRunMedia": null, "reactionVideos": [], @@ -333565,7 +333216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7838594, "featuredRunMedia": null, "reactionVideos": [], @@ -333593,7 +333244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7840408, "featuredRunMedia": null, "reactionVideos": [], @@ -333621,7 +333272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 7842325, "featuredRunMedia": null, "reactionVideos": [], @@ -333649,7 +333300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 7842327, "featuredRunMedia": null, "reactionVideos": [], @@ -333687,7 +333338,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 7842365, "featuredRunMedia": null, "reactionVideos": [], @@ -333715,7 +333366,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7843972, "featuredRunMedia": null, "reactionVideos": [], @@ -333753,7 +333404,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7846728, "featuredRunMedia": null, "reactionVideos": [], @@ -333781,7 +333432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7846999, "featuredRunMedia": null, "reactionVideos": [], @@ -333819,7 +333470,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 7848069, "featuredRunMedia": null, "reactionVideos": [], @@ -333857,7 +333508,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7848571, "featuredRunMedia": null, "reactionVideos": [], @@ -333885,7 +333536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7849330, "featuredRunMedia": null, "reactionVideos": [], @@ -333913,7 +333564,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 7849746, "featuredRunMedia": null, "reactionVideos": [], @@ -333941,7 +333592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 7850330, "featuredRunMedia": null, "reactionVideos": [], @@ -333979,7 +333630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 7853802, "featuredRunMedia": null, "reactionVideos": [], @@ -334005,7 +333656,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 7858699, "featuredRunMedia": null, "reactionVideos": [], @@ -334033,7 +333684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7859685, "featuredRunMedia": null, "reactionVideos": [], @@ -334061,7 +333712,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7860604, "featuredRunMedia": null, "reactionVideos": [], @@ -334099,7 +333750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 7864928, "featuredRunMedia": null, "reactionVideos": [], @@ -334137,7 +333788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7865777, "featuredRunMedia": null, "reactionVideos": [], @@ -334175,7 +333826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 7866033, "featuredRunMedia": null, "reactionVideos": [], @@ -334203,7 +333854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 7866842, "featuredRunMedia": null, "reactionVideos": [], @@ -334231,7 +333882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7868600, "featuredRunMedia": null, "reactionVideos": [], @@ -334253,7 +333904,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 7868946, "featuredRunMedia": null, "reactionVideos": [], @@ -334281,7 +333932,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 7870007, "featuredRunMedia": null, "reactionVideos": [], @@ -334319,7 +333970,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 7873707, "featuredRunMedia": null, "reactionVideos": [], @@ -334357,7 +334008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 7874215, "featuredRunMedia": null, "reactionVideos": [], @@ -334385,7 +334036,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7875591, "featuredRunMedia": null, "reactionVideos": [], @@ -334413,7 +334064,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7876776, "featuredRunMedia": null, "reactionVideos": [], @@ -334441,7 +334092,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7877498, "featuredRunMedia": null, "reactionVideos": [], @@ -334479,7 +334130,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 7879277, "featuredRunMedia": null, "reactionVideos": [], @@ -334517,7 +334168,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 7880228, "featuredRunMedia": null, "reactionVideos": [], @@ -334545,7 +334196,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 7883585, "featuredRunMedia": null, "reactionVideos": [], @@ -334573,7 +334224,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7886323, "featuredRunMedia": null, "reactionVideos": [], @@ -334611,7 +334262,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 7887667, "featuredRunMedia": null, "reactionVideos": [], @@ -334639,7 +334290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 7888259, "featuredRunMedia": null, "reactionVideos": [], @@ -334677,7 +334328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 7888777, "featuredRunMedia": null, "reactionVideos": [], @@ -334715,7 +334366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "1451", "time": 7890400, "featuredRunMedia": null, "reactionVideos": [], @@ -334741,7 +334392,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 7890583, "featuredRunMedia": null, "reactionVideos": [], @@ -334769,7 +334420,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7890629, "featuredRunMedia": null, "reactionVideos": [], @@ -334797,7 +334448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7891523, "featuredRunMedia": null, "reactionVideos": [], @@ -334835,7 +334486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 7893640, "featuredRunMedia": null, "reactionVideos": [], @@ -334863,7 +334514,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7895075, "featuredRunMedia": null, "reactionVideos": [], @@ -334891,7 +334542,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 7897005, "featuredRunMedia": null, "reactionVideos": [], @@ -334919,7 +334570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7898220, "featuredRunMedia": null, "reactionVideos": [], @@ -334947,7 +334598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7898629, "featuredRunMedia": null, "reactionVideos": [], @@ -334985,7 +334636,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 7899373, "featuredRunMedia": null, "reactionVideos": [], @@ -335013,7 +334664,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 7903157, "featuredRunMedia": null, "reactionVideos": [], @@ -335041,7 +334692,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 85, + "teamId": "2150", "time": 7903468, "featuredRunMedia": null, "reactionVideos": [], @@ -335079,7 +334730,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "1654", "time": 7904718, "featuredRunMedia": null, "reactionVideos": [], @@ -335117,7 +334768,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7906568, "featuredRunMedia": null, "reactionVideos": [], @@ -335145,7 +334796,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 7908302, "featuredRunMedia": null, "reactionVideos": [], @@ -335171,7 +334822,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 7912090, "featuredRunMedia": null, "reactionVideos": [], @@ -335199,7 +334850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 7912232, "featuredRunMedia": null, "reactionVideos": [], @@ -335227,7 +334878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7913128, "featuredRunMedia": null, "reactionVideos": [], @@ -335265,7 +334916,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 7914227, "featuredRunMedia": null, "reactionVideos": [], @@ -335303,7 +334954,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 7915471, "featuredRunMedia": null, "reactionVideos": [], @@ -335341,7 +334992,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 7915880, "featuredRunMedia": null, "reactionVideos": [], @@ -335379,7 +335030,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7916368, "featuredRunMedia": null, "reactionVideos": [], @@ -335407,7 +335058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 7916674, "featuredRunMedia": null, "reactionVideos": [], @@ -335433,7 +335084,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 7917076, "featuredRunMedia": null, "reactionVideos": [], @@ -335461,7 +335112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 7918723, "featuredRunMedia": null, "reactionVideos": [], @@ -335499,7 +335150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 7919632, "featuredRunMedia": null, "reactionVideos": [], @@ -335537,7 +335188,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 7919664, "featuredRunMedia": null, "reactionVideos": [], @@ -335565,7 +335216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 7920605, "featuredRunMedia": null, "reactionVideos": [], @@ -335603,7 +335254,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 7921495, "featuredRunMedia": null, "reactionVideos": [], @@ -335641,7 +335292,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 7922197, "featuredRunMedia": null, "reactionVideos": [], @@ -335679,7 +335330,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "1654", "time": 7923108, "featuredRunMedia": null, "reactionVideos": [], @@ -335717,7 +335368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 7924010, "featuredRunMedia": null, "reactionVideos": [], @@ -335745,7 +335396,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 7924525, "featuredRunMedia": null, "reactionVideos": [], @@ -335783,7 +335434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7924802, "featuredRunMedia": null, "reactionVideos": [], @@ -335821,7 +335472,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 7927524, "featuredRunMedia": null, "reactionVideos": [], @@ -335849,7 +335500,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7928428, "featuredRunMedia": null, "reactionVideos": [], @@ -335887,7 +335538,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7931998, "featuredRunMedia": null, "reactionVideos": [], @@ -335915,7 +335566,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 7933407, "featuredRunMedia": null, "reactionVideos": [], @@ -335943,7 +335594,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7934798, "featuredRunMedia": null, "reactionVideos": [], @@ -335971,7 +335622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 7936348, "featuredRunMedia": null, "reactionVideos": [], @@ -336009,7 +335660,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7937290, "featuredRunMedia": null, "reactionVideos": [], @@ -336047,7 +335698,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 7937355, "featuredRunMedia": null, "reactionVideos": [], @@ -336085,7 +335736,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 7939063, "featuredRunMedia": null, "reactionVideos": [], @@ -336123,7 +335774,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 7940563, "featuredRunMedia": null, "reactionVideos": [], @@ -336151,7 +335802,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 7942327, "featuredRunMedia": null, "reactionVideos": [], @@ -336189,7 +335840,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7943249, "featuredRunMedia": null, "reactionVideos": [], @@ -336227,7 +335878,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 7945151, "featuredRunMedia": null, "reactionVideos": [], @@ -336265,7 +335916,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7946697, "featuredRunMedia": null, "reactionVideos": [], @@ -336293,7 +335944,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 7948064, "featuredRunMedia": null, "reactionVideos": [], @@ -336321,7 +335972,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7948070, "featuredRunMedia": null, "reactionVideos": [], @@ -336359,7 +336010,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 7948533, "featuredRunMedia": null, "reactionVideos": [], @@ -336387,7 +336038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 7948533, "featuredRunMedia": null, "reactionVideos": [], @@ -336425,7 +336076,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 7949114, "featuredRunMedia": null, "reactionVideos": [], @@ -336453,7 +336104,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 7950295, "featuredRunMedia": null, "reactionVideos": [], @@ -336491,7 +336142,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 7950536, "featuredRunMedia": null, "reactionVideos": [], @@ -336529,7 +336180,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 7952139, "featuredRunMedia": null, "reactionVideos": [], @@ -336567,7 +336218,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 7953787, "featuredRunMedia": null, "reactionVideos": [], @@ -336593,7 +336244,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 7955601, "featuredRunMedia": null, "reactionVideos": [], @@ -336621,7 +336272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 7956591, "featuredRunMedia": null, "reactionVideos": [], @@ -336649,7 +336300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7957598, "featuredRunMedia": null, "reactionVideos": [], @@ -336677,7 +336328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 7958642, "featuredRunMedia": null, "reactionVideos": [], @@ -336705,7 +336356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 7959303, "featuredRunMedia": null, "reactionVideos": [], @@ -336733,7 +336384,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 7962664, "featuredRunMedia": null, "reactionVideos": [], @@ -336761,7 +336412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "2847", "time": 7964044, "featuredRunMedia": null, "reactionVideos": [], @@ -336794,7 +336445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 7964465, "featuredRunMedia": null, "reactionVideos": [], @@ -336832,7 +336483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 7966471, "featuredRunMedia": null, "reactionVideos": [], @@ -336860,7 +336511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7968092, "featuredRunMedia": null, "reactionVideos": [], @@ -336886,7 +336537,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 7968760, "featuredRunMedia": null, "reactionVideos": [], @@ -336908,7 +336559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 7971576, "featuredRunMedia": null, "reactionVideos": [], @@ -336936,7 +336587,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7973574, "featuredRunMedia": null, "reactionVideos": [], @@ -336964,7 +336615,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 7975540, "featuredRunMedia": null, "reactionVideos": [], @@ -336992,7 +336643,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 7975812, "featuredRunMedia": null, "reactionVideos": [], @@ -337020,7 +336671,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 7977226, "featuredRunMedia": null, "reactionVideos": [], @@ -337058,7 +336709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 7977597, "featuredRunMedia": null, "reactionVideos": [], @@ -337086,7 +336737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 7978240, "featuredRunMedia": null, "reactionVideos": [], @@ -337114,7 +336765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 7979308, "featuredRunMedia": null, "reactionVideos": [], @@ -337152,7 +336803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 7979536, "featuredRunMedia": null, "reactionVideos": [], @@ -337180,7 +336831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 7980018, "featuredRunMedia": null, "reactionVideos": [], @@ -337208,7 +336859,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 7980121, "featuredRunMedia": null, "reactionVideos": [], @@ -337236,7 +336887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 7980197, "featuredRunMedia": null, "reactionVideos": [], @@ -337264,7 +336915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 7980402, "featuredRunMedia": null, "reactionVideos": [], @@ -337292,7 +336943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 7983464, "featuredRunMedia": null, "reactionVideos": [], @@ -337320,7 +336971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 7985887, "featuredRunMedia": null, "reactionVideos": [], @@ -337348,7 +336999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 7987000, "featuredRunMedia": null, "reactionVideos": [], @@ -337374,7 +337025,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 7988883, "featuredRunMedia": null, "reactionVideos": [], @@ -337412,7 +337063,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 7989322, "featuredRunMedia": null, "reactionVideos": [], @@ -337450,7 +337101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 7989665, "featuredRunMedia": null, "reactionVideos": [], @@ -337488,7 +337139,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 7989759, "featuredRunMedia": null, "reactionVideos": [], @@ -337516,7 +337167,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 7990934, "featuredRunMedia": null, "reactionVideos": [], @@ -337544,7 +337195,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 7992321, "featuredRunMedia": null, "reactionVideos": [], @@ -337572,7 +337223,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 7992876, "featuredRunMedia": null, "reactionVideos": [], @@ -337598,7 +337249,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 7993671, "featuredRunMedia": null, "reactionVideos": [], @@ -337626,7 +337277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 7994494, "featuredRunMedia": null, "reactionVideos": [], @@ -337664,7 +337315,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 7995449, "featuredRunMedia": null, "reactionVideos": [], @@ -337702,7 +337353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 7996481, "featuredRunMedia": null, "reactionVideos": [], @@ -337730,7 +337381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 7998131, "featuredRunMedia": null, "reactionVideos": [], @@ -337758,7 +337409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 7998542, "featuredRunMedia": null, "reactionVideos": [], @@ -337796,7 +337447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 8002972, "featuredRunMedia": null, "reactionVideos": [], @@ -337834,7 +337485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 8003299, "featuredRunMedia": null, "reactionVideos": [], @@ -337862,7 +337513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8003719, "featuredRunMedia": null, "reactionVideos": [], @@ -337890,7 +337541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 8006300, "featuredRunMedia": null, "reactionVideos": [], @@ -337928,7 +337579,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8007112, "featuredRunMedia": null, "reactionVideos": [], @@ -337956,7 +337607,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 8007640, "featuredRunMedia": null, "reactionVideos": [], @@ -337984,7 +337635,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 8008224, "featuredRunMedia": null, "reactionVideos": [], @@ -338012,7 +337663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 68, + "teamId": "2644", "time": 8013207, "featuredRunMedia": null, "reactionVideos": [], @@ -338050,7 +337701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 8016346, "featuredRunMedia": null, "reactionVideos": [], @@ -338078,7 +337729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 8017799, "featuredRunMedia": null, "reactionVideos": [], @@ -338106,7 +337757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 8018045, "featuredRunMedia": null, "reactionVideos": [], @@ -338134,7 +337785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 8021056, "featuredRunMedia": null, "reactionVideos": [], @@ -338162,7 +337813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8021896, "featuredRunMedia": null, "reactionVideos": [], @@ -338188,7 +337839,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 8024332, "featuredRunMedia": null, "reactionVideos": [], @@ -338216,7 +337867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 8026080, "featuredRunMedia": null, "reactionVideos": [], @@ -338254,7 +337905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 8026591, "featuredRunMedia": null, "reactionVideos": [], @@ -338282,7 +337933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 8026772, "featuredRunMedia": null, "reactionVideos": [], @@ -338304,7 +337955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 8027902, "featuredRunMedia": null, "reactionVideos": [], @@ -338342,7 +337993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 8028511, "featuredRunMedia": null, "reactionVideos": [], @@ -338370,7 +338021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8029735, "featuredRunMedia": null, "reactionVideos": [], @@ -338408,7 +338059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 8030782, "featuredRunMedia": null, "reactionVideos": [], @@ -338436,7 +338087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 8030888, "featuredRunMedia": null, "reactionVideos": [], @@ -338462,7 +338113,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 319, + "teamId": "1545", "time": 8032130, "featuredRunMedia": null, "reactionVideos": [], @@ -338490,7 +338141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 8032913, "featuredRunMedia": null, "reactionVideos": [], @@ -338518,7 +338169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8036320, "featuredRunMedia": null, "reactionVideos": [], @@ -338546,7 +338197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 8036448, "featuredRunMedia": null, "reactionVideos": [], @@ -338574,7 +338225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 8037886, "featuredRunMedia": null, "reactionVideos": [], @@ -338612,7 +338263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 8040462, "featuredRunMedia": null, "reactionVideos": [], @@ -338640,7 +338291,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 8040492, "featuredRunMedia": null, "reactionVideos": [], @@ -338668,7 +338319,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8040760, "featuredRunMedia": null, "reactionVideos": [], @@ -338696,7 +338347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 8041149, "featuredRunMedia": null, "reactionVideos": [], @@ -338724,7 +338375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 8046461, "featuredRunMedia": null, "reactionVideos": [], @@ -338762,7 +338413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8049338, "featuredRunMedia": null, "reactionVideos": [], @@ -338790,7 +338441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 79, + "teamId": "1548", "time": 8051240, "featuredRunMedia": null, "reactionVideos": [], @@ -338818,7 +338469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 8051411, "featuredRunMedia": null, "reactionVideos": [], @@ -338856,7 +338507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8051541, "featuredRunMedia": null, "reactionVideos": [], @@ -338894,7 +338545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 8055140, "featuredRunMedia": null, "reactionVideos": [], @@ -338932,7 +338583,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8057365, "featuredRunMedia": null, "reactionVideos": [], @@ -338960,7 +338611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 8058321, "featuredRunMedia": null, "reactionVideos": [], @@ -338998,7 +338649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 8061508, "featuredRunMedia": null, "reactionVideos": [], @@ -339026,7 +338677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 8063268, "featuredRunMedia": null, "reactionVideos": [], @@ -339054,7 +338705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8064222, "featuredRunMedia": null, "reactionVideos": [], @@ -339092,7 +338743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8064392, "featuredRunMedia": null, "reactionVideos": [], @@ -339130,7 +338781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 8065085, "featuredRunMedia": null, "reactionVideos": [], @@ -339158,7 +338809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 8065393, "featuredRunMedia": null, "reactionVideos": [], @@ -339196,7 +338847,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 229, + "teamId": "1853", "time": 8067263, "featuredRunMedia": null, "reactionVideos": [], @@ -339218,7 +338869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 8068703, "featuredRunMedia": null, "reactionVideos": [], @@ -339246,7 +338897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 8070828, "featuredRunMedia": null, "reactionVideos": [], @@ -339284,7 +338935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8074734, "featuredRunMedia": null, "reactionVideos": [], @@ -339322,7 +338973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 8075976, "featuredRunMedia": null, "reactionVideos": [], @@ -339350,7 +339001,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8080522, "featuredRunMedia": null, "reactionVideos": [], @@ -339388,7 +339039,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 8082990, "featuredRunMedia": null, "reactionVideos": [], @@ -339416,7 +339067,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 8085149, "featuredRunMedia": null, "reactionVideos": [], @@ -339444,7 +339095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 8085720, "featuredRunMedia": null, "reactionVideos": [], @@ -339472,7 +339123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8086296, "featuredRunMedia": null, "reactionVideos": [], @@ -339500,7 +339151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 8086490, "featuredRunMedia": null, "reactionVideos": [], @@ -339528,7 +339179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 8088924, "featuredRunMedia": null, "reactionVideos": [], @@ -339556,7 +339207,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8089487, "featuredRunMedia": null, "reactionVideos": [], @@ -339584,7 +339235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 8092468, "featuredRunMedia": null, "reactionVideos": [], @@ -339610,7 +339261,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 8092504, "featuredRunMedia": null, "reactionVideos": [], @@ -339638,7 +339289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 8093289, "featuredRunMedia": null, "reactionVideos": [], @@ -339676,7 +339327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8095852, "featuredRunMedia": null, "reactionVideos": [], @@ -339714,7 +339365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "2454", "time": 8096055, "featuredRunMedia": null, "reactionVideos": [], @@ -339742,7 +339393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 8097199, "featuredRunMedia": null, "reactionVideos": [], @@ -339780,7 +339431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 8097649, "featuredRunMedia": null, "reactionVideos": [], @@ -339818,7 +339469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 8102012, "featuredRunMedia": null, "reactionVideos": [], @@ -339846,7 +339497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 148, + "teamId": "1151", "time": 8102948, "featuredRunMedia": null, "reactionVideos": [], @@ -339884,7 +339535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 8105159, "featuredRunMedia": null, "reactionVideos": [], @@ -339912,7 +339563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 8107073, "featuredRunMedia": null, "reactionVideos": [], @@ -339940,7 +339591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8107640, "featuredRunMedia": null, "reactionVideos": [], @@ -339968,7 +339619,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 8111047, "featuredRunMedia": null, "reactionVideos": [], @@ -340006,7 +339657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8111700, "featuredRunMedia": null, "reactionVideos": [], @@ -340044,7 +339695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 8113354, "featuredRunMedia": null, "reactionVideos": [], @@ -340072,7 +339723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8114120, "featuredRunMedia": null, "reactionVideos": [], @@ -340100,7 +339751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 8114770, "featuredRunMedia": null, "reactionVideos": [], @@ -340138,7 +339789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 8116453, "featuredRunMedia": null, "reactionVideos": [], @@ -340166,7 +339817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 8119671, "featuredRunMedia": null, "reactionVideos": [], @@ -340194,7 +339845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8123096, "featuredRunMedia": null, "reactionVideos": [], @@ -340222,7 +339873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 8124512, "featuredRunMedia": null, "reactionVideos": [], @@ -340260,7 +339911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 8124920, "featuredRunMedia": null, "reactionVideos": [], @@ -340293,7 +339944,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 8125445, "featuredRunMedia": null, "reactionVideos": [], @@ -340331,7 +339982,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8128228, "featuredRunMedia": null, "reactionVideos": [], @@ -340359,7 +340010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8129212, "featuredRunMedia": null, "reactionVideos": [], @@ -340397,7 +340048,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8129219, "featuredRunMedia": null, "reactionVideos": [], @@ -340435,7 +340086,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8132166, "featuredRunMedia": null, "reactionVideos": [], @@ -340463,7 +340114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 8132964, "featuredRunMedia": null, "reactionVideos": [], @@ -340501,7 +340152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 8134865, "featuredRunMedia": null, "reactionVideos": [], @@ -340529,7 +340180,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 8134994, "featuredRunMedia": null, "reactionVideos": [], @@ -340562,7 +340213,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 8135262, "featuredRunMedia": null, "reactionVideos": [], @@ -340584,7 +340235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8136207, "featuredRunMedia": null, "reactionVideos": [], @@ -340622,7 +340273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 8136895, "featuredRunMedia": null, "reactionVideos": [], @@ -340650,7 +340301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 8142281, "featuredRunMedia": null, "reactionVideos": [], @@ -340678,7 +340329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 8146662, "featuredRunMedia": null, "reactionVideos": [], @@ -340716,7 +340367,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 8147072, "featuredRunMedia": null, "reactionVideos": [], @@ -340754,7 +340405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 8147181, "featuredRunMedia": null, "reactionVideos": [], @@ -340782,7 +340433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8148293, "featuredRunMedia": null, "reactionVideos": [], @@ -340810,7 +340461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8151926, "featuredRunMedia": null, "reactionVideos": [], @@ -340838,7 +340489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 302, + "teamId": "2147", "time": 8152337, "featuredRunMedia": null, "reactionVideos": [], @@ -340876,7 +340527,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8152842, "featuredRunMedia": null, "reactionVideos": [], @@ -340909,7 +340560,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 8154466, "featuredRunMedia": null, "reactionVideos": [], @@ -340947,7 +340598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8156451, "featuredRunMedia": null, "reactionVideos": [], @@ -340975,7 +340626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8157027, "featuredRunMedia": null, "reactionVideos": [], @@ -341003,7 +340654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8159549, "featuredRunMedia": null, "reactionVideos": [], @@ -341041,7 +340692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 151, + "teamId": "1147", "time": 8160630, "featuredRunMedia": null, "reactionVideos": [], @@ -341069,7 +340720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8161302, "featuredRunMedia": null, "reactionVideos": [], @@ -341102,7 +340753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 8164048, "featuredRunMedia": null, "reactionVideos": [], @@ -341140,7 +340791,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 8164822, "featuredRunMedia": null, "reactionVideos": [], @@ -341168,7 +340819,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 8167155, "featuredRunMedia": null, "reactionVideos": [], @@ -341196,7 +340847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 8167209, "featuredRunMedia": null, "reactionVideos": [], @@ -341224,7 +340875,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 8167933, "featuredRunMedia": null, "reactionVideos": [], @@ -341252,7 +340903,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8168529, "featuredRunMedia": null, "reactionVideos": [], @@ -341290,7 +340941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 8169192, "featuredRunMedia": null, "reactionVideos": [], @@ -341328,7 +340979,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8171136, "featuredRunMedia": null, "reactionVideos": [], @@ -341356,7 +341007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "2643", "time": 8172520, "featuredRunMedia": null, "reactionVideos": [], @@ -341384,7 +341035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "2847", "time": 8173094, "featuredRunMedia": null, "reactionVideos": [], @@ -341422,7 +341073,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8175263, "featuredRunMedia": null, "reactionVideos": [], @@ -341460,7 +341111,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 8176578, "featuredRunMedia": null, "reactionVideos": [], @@ -341488,7 +341139,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8178732, "featuredRunMedia": null, "reactionVideos": [], @@ -341516,7 +341167,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "2442", "time": 8179138, "featuredRunMedia": null, "reactionVideos": [], @@ -341554,7 +341205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 8179159, "featuredRunMedia": null, "reactionVideos": [], @@ -341592,7 +341243,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 8179901, "featuredRunMedia": null, "reactionVideos": [], @@ -341620,7 +341271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8180010, "featuredRunMedia": null, "reactionVideos": [], @@ -341648,7 +341299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 8182216, "featuredRunMedia": null, "reactionVideos": [], @@ -341686,7 +341337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8184610, "featuredRunMedia": null, "reactionVideos": [], @@ -341714,7 +341365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 8184674, "featuredRunMedia": null, "reactionVideos": [], @@ -341752,7 +341403,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8187043, "featuredRunMedia": null, "reactionVideos": [], @@ -341790,7 +341441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8187774, "featuredRunMedia": null, "reactionVideos": [], @@ -341818,7 +341469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 8191365, "featuredRunMedia": null, "reactionVideos": [], @@ -341851,7 +341502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "2250", "time": 8192330, "featuredRunMedia": null, "reactionVideos": [], @@ -341884,7 +341535,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 8192937, "featuredRunMedia": null, "reactionVideos": [], @@ -341912,7 +341563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 8195340, "featuredRunMedia": null, "reactionVideos": [], @@ -341940,7 +341591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 71, + "teamId": "1751", "time": 8196692, "featuredRunMedia": null, "reactionVideos": [], @@ -341978,7 +341629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8197230, "featuredRunMedia": null, "reactionVideos": [], @@ -342016,7 +341667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8198865, "featuredRunMedia": null, "reactionVideos": [], @@ -342054,7 +341705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8200007, "featuredRunMedia": null, "reactionVideos": [], @@ -342082,7 +341733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8201023, "featuredRunMedia": null, "reactionVideos": [], @@ -342110,7 +341761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8201542, "featuredRunMedia": null, "reactionVideos": [], @@ -342138,7 +341789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 8201937, "featuredRunMedia": null, "reactionVideos": [], @@ -342166,7 +341817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8203576, "featuredRunMedia": null, "reactionVideos": [], @@ -342194,7 +341845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8204941, "featuredRunMedia": null, "reactionVideos": [], @@ -342232,7 +341883,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8209874, "featuredRunMedia": null, "reactionVideos": [], @@ -342260,7 +341911,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 8210456, "featuredRunMedia": null, "reactionVideos": [], @@ -342288,7 +341939,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 8213535, "featuredRunMedia": null, "reactionVideos": [], @@ -342326,7 +341977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8214657, "featuredRunMedia": null, "reactionVideos": [], @@ -342364,7 +342015,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8214855, "featuredRunMedia": null, "reactionVideos": [], @@ -342392,7 +342043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8215641, "featuredRunMedia": null, "reactionVideos": [], @@ -342420,7 +342071,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8219061, "featuredRunMedia": null, "reactionVideos": [], @@ -342448,7 +342099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 8220990, "featuredRunMedia": null, "reactionVideos": [], @@ -342486,7 +342137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 170, + "teamId": "2844", "time": 8224182, "featuredRunMedia": null, "reactionVideos": [], @@ -342524,7 +342175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 8227152, "featuredRunMedia": null, "reactionVideos": [], @@ -342552,7 +342203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 8228823, "featuredRunMedia": null, "reactionVideos": [], @@ -342590,7 +342241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8228914, "featuredRunMedia": null, "reactionVideos": [], @@ -342618,7 +342269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8229570, "featuredRunMedia": null, "reactionVideos": [], @@ -342656,7 +342307,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 8229777, "featuredRunMedia": null, "reactionVideos": [], @@ -342689,7 +342340,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 8230050, "featuredRunMedia": null, "reactionVideos": [], @@ -342727,7 +342378,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 8230833, "featuredRunMedia": null, "reactionVideos": [], @@ -342765,7 +342416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8231613, "featuredRunMedia": null, "reactionVideos": [], @@ -342803,7 +342454,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 8232390, "featuredRunMedia": null, "reactionVideos": [], @@ -342831,7 +342482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 8246218, "featuredRunMedia": null, "reactionVideos": [], @@ -342857,7 +342508,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 8247055, "featuredRunMedia": null, "reactionVideos": [], @@ -342885,7 +342536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 8248286, "featuredRunMedia": null, "reactionVideos": [], @@ -342913,7 +342564,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8250186, "featuredRunMedia": null, "reactionVideos": [], @@ -342941,7 +342592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "2442", "time": 8250773, "featuredRunMedia": null, "reactionVideos": [], @@ -342969,7 +342620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8251161, "featuredRunMedia": null, "reactionVideos": [], @@ -343007,7 +342658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 251, + "teamId": "3152", "time": 8251350, "featuredRunMedia": null, "reactionVideos": [], @@ -343045,7 +342696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "2454", "time": 8252978, "featuredRunMedia": null, "reactionVideos": [], @@ -343073,7 +342724,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 8254938, "featuredRunMedia": null, "reactionVideos": [], @@ -343101,7 +342752,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 8256221, "featuredRunMedia": null, "reactionVideos": [], @@ -343129,7 +342780,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 223, + "teamId": "1552", "time": 8259321, "featuredRunMedia": null, "reactionVideos": [], @@ -343167,7 +342818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 8260748, "featuredRunMedia": null, "reactionVideos": [], @@ -343195,7 +342846,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 8262694, "featuredRunMedia": null, "reactionVideos": [], @@ -343223,7 +342874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 8264050, "featuredRunMedia": null, "reactionVideos": [], @@ -343256,7 +342907,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "2145", "time": 8265809, "featuredRunMedia": null, "reactionVideos": [], @@ -343284,7 +342935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 8266059, "featuredRunMedia": null, "reactionVideos": [], @@ -343312,7 +342963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8266218, "featuredRunMedia": null, "reactionVideos": [], @@ -343340,7 +342991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8267397, "featuredRunMedia": null, "reactionVideos": [], @@ -343368,7 +343019,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 8270355, "featuredRunMedia": null, "reactionVideos": [], @@ -343394,7 +343045,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 103, + "teamId": "1948", "time": 8274975, "featuredRunMedia": null, "reactionVideos": [], @@ -343422,7 +343073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 8277967, "featuredRunMedia": null, "reactionVideos": [], @@ -343448,7 +343099,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 265, + "teamId": "1842", "time": 8278075, "featuredRunMedia": null, "reactionVideos": [], @@ -343486,7 +343137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 8279244, "featuredRunMedia": null, "reactionVideos": [], @@ -343524,7 +343175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 8279718, "featuredRunMedia": null, "reactionVideos": [], @@ -343562,7 +343213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8283137, "featuredRunMedia": null, "reactionVideos": [], @@ -343584,7 +343235,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 8284085, "featuredRunMedia": null, "reactionVideos": [], @@ -343612,7 +343263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 8285717, "featuredRunMedia": null, "reactionVideos": [], @@ -343650,7 +343301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8287274, "featuredRunMedia": null, "reactionVideos": [], @@ -343678,7 +343329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 8288045, "featuredRunMedia": null, "reactionVideos": [], @@ -343716,7 +343367,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 8289775, "featuredRunMedia": null, "reactionVideos": [], @@ -343744,7 +343395,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 8291989, "featuredRunMedia": null, "reactionVideos": [], @@ -343772,7 +343423,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 8293108, "featuredRunMedia": null, "reactionVideos": [], @@ -343810,7 +343461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8295355, "featuredRunMedia": null, "reactionVideos": [], @@ -343848,7 +343499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8296698, "featuredRunMedia": null, "reactionVideos": [], @@ -343881,7 +343532,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "3043", "time": 8297489, "featuredRunMedia": null, "reactionVideos": [], @@ -343919,7 +343570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8297495, "featuredRunMedia": null, "reactionVideos": [], @@ -343947,7 +343598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 108, + "teamId": "1746", "time": 8298546, "featuredRunMedia": null, "reactionVideos": [], @@ -343975,7 +343626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 8299107, "featuredRunMedia": null, "reactionVideos": [], @@ -344003,7 +343654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 8299676, "featuredRunMedia": null, "reactionVideos": [], @@ -344041,7 +343692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 8299848, "featuredRunMedia": null, "reactionVideos": [], @@ -344067,7 +343718,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 8299885, "featuredRunMedia": null, "reactionVideos": [], @@ -344095,7 +343746,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 8300004, "featuredRunMedia": null, "reactionVideos": [], @@ -344133,7 +343784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 8302182, "featuredRunMedia": null, "reactionVideos": [], @@ -344161,7 +343812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 8303258, "featuredRunMedia": null, "reactionVideos": [], @@ -344199,7 +343850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 226, + "teamId": "2945", "time": 8305154, "featuredRunMedia": null, "reactionVideos": [], @@ -344237,7 +343888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8311111, "featuredRunMedia": null, "reactionVideos": [], @@ -344265,7 +343916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 8312751, "featuredRunMedia": null, "reactionVideos": [], @@ -344293,7 +343944,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8313920, "featuredRunMedia": null, "reactionVideos": [], @@ -344331,7 +343982,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8317144, "featuredRunMedia": null, "reactionVideos": [], @@ -344359,7 +344010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 8319675, "featuredRunMedia": null, "reactionVideos": [], @@ -344387,7 +344038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 8320016, "featuredRunMedia": null, "reactionVideos": [], @@ -344425,7 +344076,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 8321896, "featuredRunMedia": null, "reactionVideos": [], @@ -344463,7 +344114,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 8322390, "featuredRunMedia": null, "reactionVideos": [], @@ -344491,7 +344142,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 8323119, "featuredRunMedia": null, "reactionVideos": [], @@ -344529,7 +344180,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8323212, "featuredRunMedia": null, "reactionVideos": [], @@ -344567,7 +344218,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 8323870, "featuredRunMedia": null, "reactionVideos": [], @@ -344593,7 +344244,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 8324164, "featuredRunMedia": null, "reactionVideos": [], @@ -344631,7 +344282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 8330984, "featuredRunMedia": null, "reactionVideos": [], @@ -344669,7 +344320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8332406, "featuredRunMedia": null, "reactionVideos": [], @@ -344707,7 +344358,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 8332711, "featuredRunMedia": null, "reactionVideos": [], @@ -344735,7 +344386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8341310, "featuredRunMedia": null, "reactionVideos": [], @@ -344763,7 +344414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 8343458, "featuredRunMedia": null, "reactionVideos": [], @@ -344791,7 +344442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 8345470, "featuredRunMedia": null, "reactionVideos": [], @@ -344829,7 +344480,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8345552, "featuredRunMedia": null, "reactionVideos": [], @@ -344867,7 +344518,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8346658, "featuredRunMedia": null, "reactionVideos": [], @@ -344905,7 +344556,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8347006, "featuredRunMedia": null, "reactionVideos": [], @@ -344943,7 +344594,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 8347602, "featuredRunMedia": null, "reactionVideos": [], @@ -344976,7 +344627,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 8351288, "featuredRunMedia": null, "reactionVideos": [], @@ -345014,7 +344665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8352833, "featuredRunMedia": null, "reactionVideos": [], @@ -345052,7 +344703,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8358516, "featuredRunMedia": null, "reactionVideos": [], @@ -345080,7 +344731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8359135, "featuredRunMedia": null, "reactionVideos": [], @@ -345108,7 +344759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8360190, "featuredRunMedia": null, "reactionVideos": [], @@ -345136,7 +344787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 8363530, "featuredRunMedia": null, "reactionVideos": [], @@ -345164,7 +344815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 8367073, "featuredRunMedia": null, "reactionVideos": [], @@ -345202,7 +344853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8367264, "featuredRunMedia": null, "reactionVideos": [], @@ -345230,7 +344881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 8367659, "featuredRunMedia": null, "reactionVideos": [], @@ -345268,7 +344919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "1946", "time": 8370776, "featuredRunMedia": null, "reactionVideos": [], @@ -345296,7 +344947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 8372438, "featuredRunMedia": null, "reactionVideos": [], @@ -345324,7 +344975,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8372755, "featuredRunMedia": null, "reactionVideos": [], @@ -345362,7 +345013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8374004, "featuredRunMedia": null, "reactionVideos": [], @@ -345395,7 +345046,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 8375786, "featuredRunMedia": null, "reactionVideos": [], @@ -345423,7 +345074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 78, + "teamId": "2442", "time": 8377388, "featuredRunMedia": null, "reactionVideos": [], @@ -345461,7 +345112,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8377996, "featuredRunMedia": null, "reactionVideos": [], @@ -345499,7 +345150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 8382938, "featuredRunMedia": null, "reactionVideos": [], @@ -345525,7 +345176,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 8383396, "featuredRunMedia": null, "reactionVideos": [], @@ -345553,7 +345204,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 8384448, "featuredRunMedia": null, "reactionVideos": [], @@ -345581,7 +345232,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 69, + "teamId": "1951", "time": 8385550, "featuredRunMedia": null, "reactionVideos": [], @@ -345609,7 +345260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8386576, "featuredRunMedia": null, "reactionVideos": [], @@ -345647,7 +345298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8388387, "featuredRunMedia": null, "reactionVideos": [], @@ -345675,7 +345326,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 8388934, "featuredRunMedia": null, "reactionVideos": [], @@ -345713,7 +345364,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 8389370, "featuredRunMedia": null, "reactionVideos": [], @@ -345741,7 +345392,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 8390922, "featuredRunMedia": null, "reactionVideos": [], @@ -345779,7 +345430,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8396581, "featuredRunMedia": null, "reactionVideos": [], @@ -345807,7 +345458,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 8397780, "featuredRunMedia": null, "reactionVideos": [], @@ -345835,7 +345486,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 8399250, "featuredRunMedia": null, "reactionVideos": [], @@ -345873,7 +345524,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8399481, "featuredRunMedia": null, "reactionVideos": [], @@ -345901,7 +345552,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8402300, "featuredRunMedia": null, "reactionVideos": [], @@ -345939,7 +345590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8403280, "featuredRunMedia": null, "reactionVideos": [], @@ -345977,7 +345628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 8403817, "featuredRunMedia": null, "reactionVideos": [], @@ -345999,7 +345650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 8404122, "featuredRunMedia": null, "reactionVideos": [], @@ -346027,7 +345678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8405443, "featuredRunMedia": null, "reactionVideos": [], @@ -346055,7 +345706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8407322, "featuredRunMedia": null, "reactionVideos": [], @@ -346093,7 +345744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 8408609, "featuredRunMedia": null, "reactionVideos": [], @@ -346131,7 +345782,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 8412557, "featuredRunMedia": null, "reactionVideos": [], @@ -346164,7 +345815,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 8412617, "featuredRunMedia": null, "reactionVideos": [], @@ -346202,7 +345853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 8413925, "featuredRunMedia": null, "reactionVideos": [], @@ -346230,7 +345881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8414522, "featuredRunMedia": null, "reactionVideos": [], @@ -346258,7 +345909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 8417828, "featuredRunMedia": null, "reactionVideos": [], @@ -346291,7 +345942,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8424433, "featuredRunMedia": null, "reactionVideos": [], @@ -346319,7 +345970,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 8424691, "featuredRunMedia": null, "reactionVideos": [], @@ -346347,7 +345998,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 8425678, "featuredRunMedia": null, "reactionVideos": [], @@ -346375,7 +346026,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 8425764, "featuredRunMedia": null, "reactionVideos": [], @@ -346413,7 +346064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8427267, "featuredRunMedia": null, "reactionVideos": [], @@ -346439,7 +346090,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "3256", "time": 8429026, "featuredRunMedia": null, "reactionVideos": [], @@ -346467,7 +346118,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 190, + "teamId": "3053", "time": 8429312, "featuredRunMedia": null, "reactionVideos": [], @@ -346495,7 +346146,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 8429807, "featuredRunMedia": null, "reactionVideos": [], @@ -346523,7 +346174,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8430547, "featuredRunMedia": null, "reactionVideos": [], @@ -346551,7 +346202,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 8432429, "featuredRunMedia": null, "reactionVideos": [], @@ -346589,7 +346240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8433043, "featuredRunMedia": null, "reactionVideos": [], @@ -346627,7 +346278,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8441281, "featuredRunMedia": null, "reactionVideos": [], @@ -346665,7 +346316,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 8441643, "featuredRunMedia": null, "reactionVideos": [], @@ -346693,7 +346344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8443196, "featuredRunMedia": null, "reactionVideos": [], @@ -346726,7 +346377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8447143, "featuredRunMedia": null, "reactionVideos": [], @@ -346754,7 +346405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 8450581, "featuredRunMedia": null, "reactionVideos": [], @@ -346782,7 +346433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8450964, "featuredRunMedia": null, "reactionVideos": [], @@ -346810,7 +346461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 8453777, "featuredRunMedia": null, "reactionVideos": [], @@ -346838,7 +346489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8454117, "featuredRunMedia": null, "reactionVideos": [], @@ -346866,7 +346517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8454541, "featuredRunMedia": null, "reactionVideos": [], @@ -346904,7 +346555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8456155, "featuredRunMedia": null, "reactionVideos": [], @@ -346942,7 +346593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 8457316, "featuredRunMedia": null, "reactionVideos": [], @@ -346980,7 +346631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 8457410, "featuredRunMedia": null, "reactionVideos": [], @@ -347008,7 +346659,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8459456, "featuredRunMedia": null, "reactionVideos": [], @@ -347046,7 +346697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8459661, "featuredRunMedia": null, "reactionVideos": [], @@ -347084,7 +346735,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 8461379, "featuredRunMedia": null, "reactionVideos": [], @@ -347112,7 +346763,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 8463097, "featuredRunMedia": null, "reactionVideos": [], @@ -347140,7 +346791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8463576, "featuredRunMedia": null, "reactionVideos": [], @@ -347168,7 +346819,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 8463656, "featuredRunMedia": null, "reactionVideos": [], @@ -347196,7 +346847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 8465700, "featuredRunMedia": null, "reactionVideos": [], @@ -347234,7 +346885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 8465842, "featuredRunMedia": null, "reactionVideos": [], @@ -347272,7 +346923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 8466074, "featuredRunMedia": null, "reactionVideos": [], @@ -347300,7 +346951,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 8466402, "featuredRunMedia": null, "reactionVideos": [], @@ -347328,7 +346979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 133, + "teamId": "2951", "time": 8466436, "featuredRunMedia": null, "reactionVideos": [], @@ -347366,7 +347017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8466527, "featuredRunMedia": null, "reactionVideos": [], @@ -347394,7 +347045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8466899, "featuredRunMedia": null, "reactionVideos": [], @@ -347432,7 +347083,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 8466922, "featuredRunMedia": null, "reactionVideos": [], @@ -347470,7 +347121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8467280, "featuredRunMedia": null, "reactionVideos": [], @@ -347498,7 +347149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8467428, "featuredRunMedia": null, "reactionVideos": [], @@ -347536,7 +347187,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 8467923, "featuredRunMedia": null, "reactionVideos": [], @@ -347564,7 +347215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 8468795, "featuredRunMedia": null, "reactionVideos": [], @@ -347602,7 +347253,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 8469334, "featuredRunMedia": null, "reactionVideos": [], @@ -347630,7 +347281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8471246, "featuredRunMedia": null, "reactionVideos": [], @@ -347663,7 +347314,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 34, + "teamId": "3043", "time": 8471358, "featuredRunMedia": null, "reactionVideos": [], @@ -347691,7 +347342,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 131, + "teamId": "2144", "time": 8473154, "featuredRunMedia": null, "reactionVideos": [], @@ -347724,7 +347375,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 8478128, "featuredRunMedia": null, "reactionVideos": [], @@ -347762,7 +347413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 8478360, "featuredRunMedia": null, "reactionVideos": [], @@ -347800,7 +347451,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "1946", "time": 8478621, "featuredRunMedia": null, "reactionVideos": [], @@ -347828,7 +347479,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 8478869, "featuredRunMedia": null, "reactionVideos": [], @@ -347866,7 +347517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8480925, "featuredRunMedia": null, "reactionVideos": [], @@ -347894,7 +347545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 8482188, "featuredRunMedia": null, "reactionVideos": [], @@ -347922,7 +347573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 8484424, "featuredRunMedia": null, "reactionVideos": [], @@ -347960,7 +347611,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 8488704, "featuredRunMedia": null, "reactionVideos": [], @@ -347988,7 +347639,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 8489875, "featuredRunMedia": null, "reactionVideos": [], @@ -348016,7 +347667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 8494474, "featuredRunMedia": null, "reactionVideos": [], @@ -348049,7 +347700,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 8494882, "featuredRunMedia": null, "reactionVideos": [], @@ -348077,7 +347728,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 8495085, "featuredRunMedia": null, "reactionVideos": [], @@ -348105,7 +347756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 8495697, "featuredRunMedia": null, "reactionVideos": [], @@ -348143,7 +347794,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8503688, "featuredRunMedia": null, "reactionVideos": [], @@ -348181,7 +347832,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8504868, "featuredRunMedia": null, "reactionVideos": [], @@ -348219,7 +347870,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 8507865, "featuredRunMedia": null, "reactionVideos": [], @@ -348247,7 +347898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 8508107, "featuredRunMedia": null, "reactionVideos": [], @@ -348285,7 +347936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8508200, "featuredRunMedia": null, "reactionVideos": [], @@ -348313,7 +347964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8509335, "featuredRunMedia": null, "reactionVideos": [], @@ -348351,7 +348002,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 8510497, "featuredRunMedia": null, "reactionVideos": [], @@ -348389,7 +348040,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 8510498, "featuredRunMedia": null, "reactionVideos": [], @@ -348427,7 +348078,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 8512148, "featuredRunMedia": null, "reactionVideos": [], @@ -348465,7 +348116,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 8513122, "featuredRunMedia": null, "reactionVideos": [], @@ -348503,7 +348154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8516837, "featuredRunMedia": null, "reactionVideos": [], @@ -348541,7 +348192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8517767, "featuredRunMedia": null, "reactionVideos": [], @@ -348574,7 +348225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 8519771, "featuredRunMedia": null, "reactionVideos": [], @@ -348602,7 +348253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 63, + "teamId": "3243", "time": 8520413, "featuredRunMedia": null, "reactionVideos": [], @@ -348635,7 +348286,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 8521889, "featuredRunMedia": null, "reactionVideos": [], @@ -348663,7 +348314,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 8523656, "featuredRunMedia": null, "reactionVideos": [], @@ -348696,7 +348347,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 8524219, "featuredRunMedia": null, "reactionVideos": [], @@ -348734,7 +348385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "1451", "time": 8526485, "featuredRunMedia": null, "reactionVideos": [], @@ -348762,7 +348413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 8527222, "featuredRunMedia": null, "reactionVideos": [], @@ -348790,7 +348441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 8528174, "featuredRunMedia": null, "reactionVideos": [], @@ -348818,7 +348469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8528952, "featuredRunMedia": null, "reactionVideos": [], @@ -348856,7 +348507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8532178, "featuredRunMedia": null, "reactionVideos": [], @@ -348894,7 +348545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8535374, "featuredRunMedia": null, "reactionVideos": [], @@ -348932,7 +348583,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8537387, "featuredRunMedia": null, "reactionVideos": [], @@ -348960,7 +348611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 8537581, "featuredRunMedia": null, "reactionVideos": [], @@ -348998,7 +348649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 8538066, "featuredRunMedia": null, "reactionVideos": [], @@ -349026,7 +348677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8543992, "featuredRunMedia": null, "reactionVideos": [], @@ -349054,7 +348705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 69, + "teamId": "1951", "time": 8544078, "featuredRunMedia": null, "reactionVideos": [], @@ -349082,7 +348733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 8546093, "featuredRunMedia": null, "reactionVideos": [], @@ -349115,7 +348766,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8548859, "featuredRunMedia": null, "reactionVideos": [], @@ -349143,7 +348794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 8549374, "featuredRunMedia": null, "reactionVideos": [], @@ -349176,7 +348827,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "1445", "time": 8551786, "featuredRunMedia": null, "reactionVideos": [], @@ -349214,7 +348865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 8555233, "featuredRunMedia": null, "reactionVideos": [], @@ -349252,7 +348903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8557794, "featuredRunMedia": null, "reactionVideos": [], @@ -349274,7 +348925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 8557883, "featuredRunMedia": null, "reactionVideos": [], @@ -349312,7 +348963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 8558027, "featuredRunMedia": null, "reactionVideos": [], @@ -349350,7 +349001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 8559000, "featuredRunMedia": null, "reactionVideos": [], @@ -349378,7 +349029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 8559803, "featuredRunMedia": null, "reactionVideos": [], @@ -349406,7 +349057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 87, + "teamId": "2551", "time": 8565200, "featuredRunMedia": null, "reactionVideos": [], @@ -349444,7 +349095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "1946", "time": 8565682, "featuredRunMedia": null, "reactionVideos": [], @@ -349472,7 +349123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 46, + "teamId": "2252", "time": 8567115, "featuredRunMedia": null, "reactionVideos": [], @@ -349500,7 +349151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 8567462, "featuredRunMedia": null, "reactionVideos": [], @@ -349528,7 +349179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 8568430, "featuredRunMedia": null, "reactionVideos": [], @@ -349566,7 +349217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8569097, "featuredRunMedia": null, "reactionVideos": [], @@ -349594,7 +349245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 8569488, "featuredRunMedia": null, "reactionVideos": [], @@ -349622,7 +349273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8570575, "featuredRunMedia": null, "reactionVideos": [], @@ -349650,7 +349301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 8574955, "featuredRunMedia": null, "reactionVideos": [], @@ -349688,7 +349339,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 8576368, "featuredRunMedia": null, "reactionVideos": [], @@ -349716,7 +349367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8578380, "featuredRunMedia": null, "reactionVideos": [], @@ -349754,7 +349405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 2, + "teamId": "2241", "time": 8579793, "featuredRunMedia": null, "reactionVideos": [], @@ -349792,7 +349443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 8580072, "featuredRunMedia": null, "reactionVideos": [], @@ -349830,7 +349481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8580400, "featuredRunMedia": null, "reactionVideos": [], @@ -349858,7 +349509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8583611, "featuredRunMedia": null, "reactionVideos": [], @@ -349886,7 +349537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 8587641, "featuredRunMedia": null, "reactionVideos": [], @@ -349924,7 +349575,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 8588195, "featuredRunMedia": null, "reactionVideos": [], @@ -349957,7 +349608,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 8591705, "featuredRunMedia": null, "reactionVideos": [], @@ -349985,7 +349636,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8592610, "featuredRunMedia": null, "reactionVideos": [], @@ -350023,7 +349674,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 8594373, "featuredRunMedia": null, "reactionVideos": [], @@ -350051,7 +349702,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 8595297, "featuredRunMedia": null, "reactionVideos": [], @@ -350079,7 +349730,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "2847", "time": 8596470, "featuredRunMedia": null, "reactionVideos": [], @@ -350112,7 +349763,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "1445", "time": 8596747, "featuredRunMedia": null, "reactionVideos": [], @@ -350150,7 +349801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8596762, "featuredRunMedia": null, "reactionVideos": [], @@ -350172,7 +349823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 8597837, "featuredRunMedia": null, "reactionVideos": [], @@ -350200,7 +349851,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 8599331, "featuredRunMedia": null, "reactionVideos": [], @@ -350228,7 +349879,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 192, + "teamId": "1849", "time": 8599426, "featuredRunMedia": null, "reactionVideos": [], @@ -350266,7 +349917,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8604426, "featuredRunMedia": null, "reactionVideos": [], @@ -350294,7 +349945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 8604676, "featuredRunMedia": null, "reactionVideos": [], @@ -350332,7 +349983,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8604907, "featuredRunMedia": null, "reactionVideos": [], @@ -350360,7 +350011,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 8605639, "featuredRunMedia": null, "reactionVideos": [], @@ -350393,7 +350044,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 8607116, "featuredRunMedia": null, "reactionVideos": [], @@ -350421,7 +350072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 8607750, "featuredRunMedia": null, "reactionVideos": [], @@ -350449,7 +350100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 209, + "teamId": "2755", "time": 8609348, "featuredRunMedia": null, "reactionVideos": [], @@ -350477,7 +350128,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8615566, "featuredRunMedia": null, "reactionVideos": [], @@ -350515,7 +350166,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 8616193, "featuredRunMedia": null, "reactionVideos": [], @@ -350548,7 +350199,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8617540, "featuredRunMedia": null, "reactionVideos": [], @@ -350586,7 +350237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8618107, "featuredRunMedia": null, "reactionVideos": [], @@ -350624,7 +350275,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8618228, "featuredRunMedia": null, "reactionVideos": [], @@ -350662,7 +350313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 8618581, "featuredRunMedia": null, "reactionVideos": [], @@ -350690,7 +350341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 8618741, "featuredRunMedia": null, "reactionVideos": [], @@ -350718,7 +350369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 8620487, "featuredRunMedia": null, "reactionVideos": [], @@ -350756,7 +350407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 8622081, "featuredRunMedia": null, "reactionVideos": [], @@ -350784,7 +350435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8625679, "featuredRunMedia": null, "reactionVideos": [], @@ -350822,7 +350473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 8625919, "featuredRunMedia": null, "reactionVideos": [], @@ -350860,7 +350511,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8627402, "featuredRunMedia": null, "reactionVideos": [], @@ -350898,7 +350549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8627498, "featuredRunMedia": null, "reactionVideos": [], @@ -350926,7 +350577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8628583, "featuredRunMedia": null, "reactionVideos": [], @@ -350954,7 +350605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "1149", "time": 8628937, "featuredRunMedia": null, "reactionVideos": [], @@ -350992,7 +350643,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8629427, "featuredRunMedia": null, "reactionVideos": [], @@ -351020,7 +350671,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8632161, "featuredRunMedia": null, "reactionVideos": [], @@ -351042,7 +350693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 8632913, "featuredRunMedia": null, "reactionVideos": [], @@ -351080,7 +350731,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 8633084, "featuredRunMedia": null, "reactionVideos": [], @@ -351108,7 +350759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 8635234, "featuredRunMedia": null, "reactionVideos": [], @@ -351136,7 +350787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 8635860, "featuredRunMedia": null, "reactionVideos": [], @@ -351164,7 +350815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 8637880, "featuredRunMedia": null, "reactionVideos": [], @@ -351192,7 +350843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 8638881, "featuredRunMedia": null, "reactionVideos": [], @@ -351230,7 +350881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 8639491, "featuredRunMedia": null, "reactionVideos": [], @@ -351268,7 +350919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8641258, "featuredRunMedia": null, "reactionVideos": [], @@ -351306,7 +350957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 8642087, "featuredRunMedia": null, "reactionVideos": [], @@ -351344,7 +350995,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8643949, "featuredRunMedia": null, "reactionVideos": [], @@ -351372,7 +351023,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 8644186, "featuredRunMedia": null, "reactionVideos": [], @@ -351410,7 +351061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 8647186, "featuredRunMedia": null, "reactionVideos": [], @@ -351438,7 +351089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8647513, "featuredRunMedia": null, "reactionVideos": [], @@ -351471,7 +351122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 8648067, "featuredRunMedia": null, "reactionVideos": [], @@ -351499,7 +351150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8648802, "featuredRunMedia": null, "reactionVideos": [], @@ -351527,7 +351178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 8649569, "featuredRunMedia": null, "reactionVideos": [], @@ -351555,7 +351206,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8651073, "featuredRunMedia": null, "reactionVideos": [], @@ -351593,7 +351244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "1451", "time": 8651754, "featuredRunMedia": null, "reactionVideos": [], @@ -351631,7 +351282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 8651829, "featuredRunMedia": null, "reactionVideos": [], @@ -351659,7 +351310,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 8651963, "featuredRunMedia": null, "reactionVideos": [], @@ -351687,7 +351338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 8656136, "featuredRunMedia": null, "reactionVideos": [], @@ -351725,7 +351376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8660997, "featuredRunMedia": null, "reactionVideos": [], @@ -351763,7 +351414,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8661047, "featuredRunMedia": null, "reactionVideos": [], @@ -351801,7 +351452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 8661509, "featuredRunMedia": null, "reactionVideos": [], @@ -351829,7 +351480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 8661603, "featuredRunMedia": null, "reactionVideos": [], @@ -351867,7 +351518,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 8662988, "featuredRunMedia": null, "reactionVideos": [], @@ -351905,7 +351556,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8663333, "featuredRunMedia": null, "reactionVideos": [], @@ -351943,7 +351594,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 8664431, "featuredRunMedia": null, "reactionVideos": [], @@ -351971,7 +351622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 8664555, "featuredRunMedia": null, "reactionVideos": [], @@ -352009,7 +351660,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 8665602, "featuredRunMedia": null, "reactionVideos": [], @@ -352037,7 +351688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8667820, "featuredRunMedia": null, "reactionVideos": [], @@ -352075,7 +351726,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 8668796, "featuredRunMedia": null, "reactionVideos": [], @@ -352103,7 +351754,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 8670340, "featuredRunMedia": null, "reactionVideos": [], @@ -352141,7 +351792,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8670629, "featuredRunMedia": null, "reactionVideos": [], @@ -352179,7 +351830,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 8, + "teamId": "1654", "time": 8671971, "featuredRunMedia": null, "reactionVideos": [], @@ -352207,7 +351858,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 8673743, "featuredRunMedia": null, "reactionVideos": [], @@ -352245,7 +351896,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 8676332, "featuredRunMedia": null, "reactionVideos": [], @@ -352271,7 +351922,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 8677097, "featuredRunMedia": null, "reactionVideos": [], @@ -352309,7 +351960,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 8677772, "featuredRunMedia": null, "reactionVideos": [], @@ -352337,7 +351988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 8677849, "featuredRunMedia": null, "reactionVideos": [], @@ -352365,7 +352016,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 8681950, "featuredRunMedia": null, "reactionVideos": [], @@ -352393,7 +352044,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8682520, "featuredRunMedia": null, "reactionVideos": [], @@ -352421,7 +352072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8688483, "featuredRunMedia": null, "reactionVideos": [], @@ -352449,7 +352100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8689515, "featuredRunMedia": null, "reactionVideos": [], @@ -352487,7 +352138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 8689585, "featuredRunMedia": null, "reactionVideos": [], @@ -352515,7 +352166,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 8689896, "featuredRunMedia": null, "reactionVideos": [], @@ -352553,7 +352204,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8689930, "featuredRunMedia": null, "reactionVideos": [], @@ -352581,7 +352232,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 8690306, "featuredRunMedia": null, "reactionVideos": [], @@ -352614,7 +352265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "1445", "time": 8694317, "featuredRunMedia": null, "reactionVideos": [], @@ -352642,7 +352293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 84, + "teamId": "1550", "time": 8695708, "featuredRunMedia": null, "reactionVideos": [], @@ -352680,7 +352331,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8696185, "featuredRunMedia": null, "reactionVideos": [], @@ -352718,7 +352369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 8698966, "featuredRunMedia": null, "reactionVideos": [], @@ -352746,7 +352397,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 8700268, "featuredRunMedia": null, "reactionVideos": [], @@ -352784,7 +352435,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 8700666, "featuredRunMedia": null, "reactionVideos": [], @@ -352812,7 +352463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 8700958, "featuredRunMedia": null, "reactionVideos": [], @@ -352850,7 +352501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8701546, "featuredRunMedia": null, "reactionVideos": [], @@ -352888,7 +352539,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 8702403, "featuredRunMedia": null, "reactionVideos": [], @@ -352926,7 +352577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8705145, "featuredRunMedia": null, "reactionVideos": [], @@ -352954,7 +352605,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8706691, "featuredRunMedia": null, "reactionVideos": [], @@ -352992,7 +352643,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 8709377, "featuredRunMedia": null, "reactionVideos": [], @@ -353030,7 +352681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8711494, "featuredRunMedia": null, "reactionVideos": [], @@ -353068,7 +352719,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 8711886, "featuredRunMedia": null, "reactionVideos": [], @@ -353106,7 +352757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 8714219, "featuredRunMedia": null, "reactionVideos": [], @@ -353134,7 +352785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 8715965, "featuredRunMedia": null, "reactionVideos": [], @@ -353162,7 +352813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 8717398, "featuredRunMedia": null, "reactionVideos": [], @@ -353190,7 +352841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 8717756, "featuredRunMedia": null, "reactionVideos": [], @@ -353218,7 +352869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8720565, "featuredRunMedia": null, "reactionVideos": [], @@ -353246,7 +352897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 340, + "teamId": "3041", "time": 8721436, "featuredRunMedia": null, "reactionVideos": [], @@ -353274,7 +352925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 8721830, "featuredRunMedia": null, "reactionVideos": [], @@ -353312,7 +352963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 8725891, "featuredRunMedia": null, "reactionVideos": [], @@ -353350,7 +353001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 8726160, "featuredRunMedia": null, "reactionVideos": [], @@ -353378,7 +353029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 8726707, "featuredRunMedia": null, "reactionVideos": [], @@ -353406,7 +353057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 8727001, "featuredRunMedia": null, "reactionVideos": [], @@ -353444,7 +353095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8728463, "featuredRunMedia": null, "reactionVideos": [], @@ -353482,7 +353133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 8728604, "featuredRunMedia": null, "reactionVideos": [], @@ -353520,7 +353171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "1946", "time": 8731240, "featuredRunMedia": null, "reactionVideos": [], @@ -353558,7 +353209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 8732077, "featuredRunMedia": null, "reactionVideos": [], @@ -353591,7 +353242,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 8732104, "featuredRunMedia": null, "reactionVideos": [], @@ -353619,7 +353270,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8732191, "featuredRunMedia": null, "reactionVideos": [], @@ -353647,7 +353298,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8732296, "featuredRunMedia": null, "reactionVideos": [], @@ -353685,7 +353336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8736880, "featuredRunMedia": null, "reactionVideos": [], @@ -353713,7 +353364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 8738569, "featuredRunMedia": null, "reactionVideos": [], @@ -353751,7 +353402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 8740337, "featuredRunMedia": null, "reactionVideos": [], @@ -353779,7 +353430,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8740535, "featuredRunMedia": null, "reactionVideos": [], @@ -353807,7 +353458,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 8740578, "featuredRunMedia": null, "reactionVideos": [], @@ -353845,7 +353496,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 8744486, "featuredRunMedia": null, "reactionVideos": [], @@ -353883,7 +353534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8745600, "featuredRunMedia": null, "reactionVideos": [], @@ -353921,7 +353572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 8745715, "featuredRunMedia": null, "reactionVideos": [], @@ -353947,7 +353598,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 8745968, "featuredRunMedia": null, "reactionVideos": [], @@ -353975,7 +353626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 8746240, "featuredRunMedia": null, "reactionVideos": [], @@ -354003,7 +353654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8746826, "featuredRunMedia": null, "reactionVideos": [], @@ -354036,7 +353687,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 8747950, "featuredRunMedia": null, "reactionVideos": [], @@ -354074,7 +353725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 8751583, "featuredRunMedia": null, "reactionVideos": [], @@ -354112,7 +353763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8751687, "featuredRunMedia": null, "reactionVideos": [], @@ -354150,7 +353801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8755895, "featuredRunMedia": null, "reactionVideos": [], @@ -354188,7 +353839,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 8756441, "featuredRunMedia": null, "reactionVideos": [], @@ -354210,7 +353861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8757212, "featuredRunMedia": null, "reactionVideos": [], @@ -354243,7 +353894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8757579, "featuredRunMedia": null, "reactionVideos": [], @@ -354271,7 +353922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 8757996, "featuredRunMedia": null, "reactionVideos": [], @@ -354309,7 +353960,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 8758007, "featuredRunMedia": null, "reactionVideos": [], @@ -354347,7 +353998,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 8759159, "featuredRunMedia": null, "reactionVideos": [], @@ -354375,7 +354026,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8760711, "featuredRunMedia": null, "reactionVideos": [], @@ -354403,7 +354054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 8760824, "featuredRunMedia": null, "reactionVideos": [], @@ -354441,7 +354092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 8762370, "featuredRunMedia": null, "reactionVideos": [], @@ -354469,7 +354120,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8763333, "featuredRunMedia": null, "reactionVideos": [], @@ -354507,7 +354158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8764966, "featuredRunMedia": null, "reactionVideos": [], @@ -354540,7 +354191,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "2250", "time": 8765298, "featuredRunMedia": null, "reactionVideos": [], @@ -354562,7 +354213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8767357, "featuredRunMedia": null, "reactionVideos": [], @@ -354590,7 +354241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 8767463, "featuredRunMedia": null, "reactionVideos": [], @@ -354618,7 +354269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 8769286, "featuredRunMedia": null, "reactionVideos": [], @@ -354644,7 +354295,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 8772188, "featuredRunMedia": null, "reactionVideos": [], @@ -354672,7 +354323,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 8773365, "featuredRunMedia": null, "reactionVideos": [], @@ -354710,7 +354361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8777278, "featuredRunMedia": null, "reactionVideos": [], @@ -354748,7 +354399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 8777587, "featuredRunMedia": null, "reactionVideos": [], @@ -354776,7 +354427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8779947, "featuredRunMedia": null, "reactionVideos": [], @@ -354804,7 +354455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 8780701, "featuredRunMedia": null, "reactionVideos": [], @@ -354826,7 +354477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8780863, "featuredRunMedia": null, "reactionVideos": [], @@ -354854,7 +354505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 8781404, "featuredRunMedia": null, "reactionVideos": [], @@ -354892,7 +354543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 93, + "teamId": "2454", "time": 8783027, "featuredRunMedia": null, "reactionVideos": [], @@ -354925,7 +354576,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 8784227, "featuredRunMedia": null, "reactionVideos": [], @@ -354963,7 +354614,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 160, + "teamId": "1649", "time": 8784480, "featuredRunMedia": null, "reactionVideos": [], @@ -355001,7 +354652,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 8786812, "featuredRunMedia": null, "reactionVideos": [], @@ -355039,7 +354690,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 8788462, "featuredRunMedia": null, "reactionVideos": [], @@ -355067,7 +354718,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8788783, "featuredRunMedia": null, "reactionVideos": [], @@ -355095,7 +354746,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 8791022, "featuredRunMedia": null, "reactionVideos": [], @@ -355133,7 +354784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 8792050, "featuredRunMedia": null, "reactionVideos": [], @@ -355161,7 +354812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "1149", "time": 8792199, "featuredRunMedia": null, "reactionVideos": [], @@ -355199,7 +354850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 207, + "teamId": "2855", "time": 8792668, "featuredRunMedia": null, "reactionVideos": [], @@ -355237,7 +354888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 8794883, "featuredRunMedia": null, "reactionVideos": [], @@ -355275,7 +354926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8795318, "featuredRunMedia": null, "reactionVideos": [], @@ -355313,7 +354964,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 8800487, "featuredRunMedia": null, "reactionVideos": [], @@ -355341,7 +354992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 8800718, "featuredRunMedia": null, "reactionVideos": [], @@ -355369,7 +355020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 8802667, "featuredRunMedia": null, "reactionVideos": [], @@ -355407,7 +355058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 8803401, "featuredRunMedia": null, "reactionVideos": [], @@ -355435,7 +355086,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8804794, "featuredRunMedia": null, "reactionVideos": [], @@ -355463,7 +355114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8804935, "featuredRunMedia": null, "reactionVideos": [], @@ -355491,7 +355142,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 8812555, "featuredRunMedia": null, "reactionVideos": [], @@ -355519,7 +355170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 8813407, "featuredRunMedia": null, "reactionVideos": [], @@ -355547,7 +355198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8814351, "featuredRunMedia": null, "reactionVideos": [], @@ -355585,7 +355236,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 8814428, "featuredRunMedia": null, "reactionVideos": [], @@ -355623,7 +355274,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 8816263, "featuredRunMedia": null, "reactionVideos": [], @@ -355651,7 +355302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8816992, "featuredRunMedia": null, "reactionVideos": [], @@ -355673,7 +355324,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 8818858, "featuredRunMedia": null, "reactionVideos": [], @@ -355711,7 +355362,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8819750, "featuredRunMedia": null, "reactionVideos": [], @@ -355749,7 +355400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 8820473, "featuredRunMedia": null, "reactionVideos": [], @@ -355787,7 +355438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 8821099, "featuredRunMedia": null, "reactionVideos": [], @@ -355815,7 +355466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 8821671, "featuredRunMedia": null, "reactionVideos": [], @@ -355848,7 +355499,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8823523, "featuredRunMedia": null, "reactionVideos": [], @@ -355881,7 +355532,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 8824303, "featuredRunMedia": null, "reactionVideos": [], @@ -355919,7 +355570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 8824575, "featuredRunMedia": null, "reactionVideos": [], @@ -355941,7 +355592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 8829110, "featuredRunMedia": null, "reactionVideos": [], @@ -355979,7 +355630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8829328, "featuredRunMedia": null, "reactionVideos": [], @@ -356017,7 +355668,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 8829824, "featuredRunMedia": null, "reactionVideos": [], @@ -356055,7 +355706,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 8830233, "featuredRunMedia": null, "reactionVideos": [], @@ -356093,7 +355744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 8832424, "featuredRunMedia": null, "reactionVideos": [], @@ -356126,7 +355777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 8832558, "featuredRunMedia": null, "reactionVideos": [], @@ -356164,7 +355815,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 8832623, "featuredRunMedia": null, "reactionVideos": [], @@ -356192,7 +355843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 8834273, "featuredRunMedia": null, "reactionVideos": [], @@ -356220,7 +355871,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 1, + "teamId": "2847", "time": 8834778, "featuredRunMedia": null, "reactionVideos": [], @@ -356248,7 +355899,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 8836775, "featuredRunMedia": null, "reactionVideos": [], @@ -356276,7 +355927,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8836925, "featuredRunMedia": null, "reactionVideos": [], @@ -356314,7 +355965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 8839677, "featuredRunMedia": null, "reactionVideos": [], @@ -356342,7 +355993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8840080, "featuredRunMedia": null, "reactionVideos": [], @@ -356375,7 +356026,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 8840652, "featuredRunMedia": null, "reactionVideos": [], @@ -356403,7 +356054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 8846829, "featuredRunMedia": null, "reactionVideos": [], @@ -356431,7 +356082,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 8848299, "featuredRunMedia": null, "reactionVideos": [], @@ -356459,7 +356110,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 8849231, "featuredRunMedia": null, "reactionVideos": [], @@ -356487,7 +356138,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 8853382, "featuredRunMedia": null, "reactionVideos": [], @@ -356525,7 +356176,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 8854793, "featuredRunMedia": null, "reactionVideos": [], @@ -356553,7 +356204,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 8856109, "featuredRunMedia": null, "reactionVideos": [], @@ -356591,7 +356242,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 8859075, "featuredRunMedia": null, "reactionVideos": [], @@ -356629,7 +356280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 8859512, "featuredRunMedia": null, "reactionVideos": [], @@ -356667,7 +356318,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 8859758, "featuredRunMedia": null, "reactionVideos": [], @@ -356700,7 +356351,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 8860735, "featuredRunMedia": null, "reactionVideos": [], @@ -356738,7 +356389,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 8861722, "featuredRunMedia": null, "reactionVideos": [], @@ -356766,7 +356417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 8862312, "featuredRunMedia": null, "reactionVideos": [], @@ -356804,7 +356455,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8862416, "featuredRunMedia": null, "reactionVideos": [], @@ -356832,7 +356483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8863383, "featuredRunMedia": null, "reactionVideos": [], @@ -356860,7 +356511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 8863510, "featuredRunMedia": null, "reactionVideos": [], @@ -356898,7 +356549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 8868279, "featuredRunMedia": null, "reactionVideos": [], @@ -356936,7 +356587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 8870307, "featuredRunMedia": null, "reactionVideos": [], @@ -356974,7 +356625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 8874480, "featuredRunMedia": null, "reactionVideos": [], @@ -357012,7 +356663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 8876034, "featuredRunMedia": null, "reactionVideos": [], @@ -357050,7 +356701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 8876219, "featuredRunMedia": null, "reactionVideos": [], @@ -357078,7 +356729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8879698, "featuredRunMedia": null, "reactionVideos": [], @@ -357106,7 +356757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8881696, "featuredRunMedia": null, "reactionVideos": [], @@ -357134,7 +356785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 8882935, "featuredRunMedia": null, "reactionVideos": [], @@ -357162,7 +356813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8883124, "featuredRunMedia": null, "reactionVideos": [], @@ -357200,7 +356851,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 8884781, "featuredRunMedia": null, "reactionVideos": [], @@ -357233,7 +356884,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 8891483, "featuredRunMedia": null, "reactionVideos": [], @@ -357266,7 +356917,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8892881, "featuredRunMedia": null, "reactionVideos": [], @@ -357294,7 +356945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 8894482, "featuredRunMedia": null, "reactionVideos": [], @@ -357332,7 +356983,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 8894648, "featuredRunMedia": null, "reactionVideos": [], @@ -357370,7 +357021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 8895599, "featuredRunMedia": null, "reactionVideos": [], @@ -357403,7 +357054,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 8896140, "featuredRunMedia": null, "reactionVideos": [], @@ -357441,7 +357092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 8896307, "featuredRunMedia": null, "reactionVideos": [], @@ -357479,7 +357130,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8896771, "featuredRunMedia": null, "reactionVideos": [], @@ -357507,7 +357158,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 8897758, "featuredRunMedia": null, "reactionVideos": [], @@ -357545,7 +357196,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 8899272, "featuredRunMedia": null, "reactionVideos": [], @@ -357573,7 +357224,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 8901280, "featuredRunMedia": null, "reactionVideos": [], @@ -357601,7 +357252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 8902287, "featuredRunMedia": null, "reactionVideos": [], @@ -357629,7 +357280,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 8903300, "featuredRunMedia": null, "reactionVideos": [], @@ -357657,7 +357308,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 8903513, "featuredRunMedia": null, "reactionVideos": [], @@ -357685,7 +357336,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 8904939, "featuredRunMedia": null, "reactionVideos": [], @@ -357718,7 +357369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 8905033, "featuredRunMedia": null, "reactionVideos": [], @@ -357756,7 +357407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 8909359, "featuredRunMedia": null, "reactionVideos": [], @@ -357789,7 +357440,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 8909618, "featuredRunMedia": null, "reactionVideos": [], @@ -357817,7 +357468,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 8911998, "featuredRunMedia": null, "reactionVideos": [], @@ -357850,7 +357501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 8912129, "featuredRunMedia": null, "reactionVideos": [], @@ -357883,7 +357534,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8914768, "featuredRunMedia": null, "reactionVideos": [], @@ -357921,7 +357572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 8914807, "featuredRunMedia": null, "reactionVideos": [], @@ -357959,7 +357610,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 8916324, "featuredRunMedia": null, "reactionVideos": [], @@ -357997,7 +357648,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8916426, "featuredRunMedia": null, "reactionVideos": [], @@ -358025,7 +357676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 8919944, "featuredRunMedia": null, "reactionVideos": [], @@ -358053,7 +357704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 8920019, "featuredRunMedia": null, "reactionVideos": [], @@ -358091,7 +357742,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 8920042, "featuredRunMedia": null, "reactionVideos": [], @@ -358129,7 +357780,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 8921809, "featuredRunMedia": null, "reactionVideos": [], @@ -358167,7 +357818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8923190, "featuredRunMedia": null, "reactionVideos": [], @@ -358193,7 +357844,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 8924033, "featuredRunMedia": null, "reactionVideos": [], @@ -358231,7 +357882,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 8925838, "featuredRunMedia": null, "reactionVideos": [], @@ -358264,7 +357915,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 8926293, "featuredRunMedia": null, "reactionVideos": [], @@ -358297,7 +357948,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 8929965, "featuredRunMedia": null, "reactionVideos": [], @@ -358335,7 +357986,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 8930621, "featuredRunMedia": null, "reactionVideos": [], @@ -358363,7 +358014,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8935410, "featuredRunMedia": null, "reactionVideos": [], @@ -358391,7 +358042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 8936924, "featuredRunMedia": null, "reactionVideos": [], @@ -358419,7 +358070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 8937619, "featuredRunMedia": null, "reactionVideos": [], @@ -358457,7 +358108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 8939453, "featuredRunMedia": null, "reactionVideos": [], @@ -358485,7 +358136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 8939520, "featuredRunMedia": null, "reactionVideos": [], @@ -358513,7 +358164,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 8940701, "featuredRunMedia": null, "reactionVideos": [], @@ -358551,7 +358202,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 8941196, "featuredRunMedia": null, "reactionVideos": [], @@ -358579,7 +358230,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 8943418, "featuredRunMedia": null, "reactionVideos": [], @@ -358617,7 +358268,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 8945253, "featuredRunMedia": null, "reactionVideos": [], @@ -358655,7 +358306,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 8945506, "featuredRunMedia": null, "reactionVideos": [], @@ -358693,7 +358344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 8949577, "featuredRunMedia": null, "reactionVideos": [], @@ -358726,7 +358377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "2250", "time": 8950106, "featuredRunMedia": null, "reactionVideos": [], @@ -358754,7 +358405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 8951318, "featuredRunMedia": null, "reactionVideos": [], @@ -358792,7 +358443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 8951916, "featuredRunMedia": null, "reactionVideos": [], @@ -358820,7 +358471,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 8952746, "featuredRunMedia": null, "reactionVideos": [], @@ -358853,7 +358504,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 8953380, "featuredRunMedia": null, "reactionVideos": [], @@ -358881,7 +358532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 8953870, "featuredRunMedia": null, "reactionVideos": [], @@ -358909,7 +358560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 8966466, "featuredRunMedia": null, "reactionVideos": [], @@ -358947,7 +358598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 42, + "teamId": "1645", "time": 8967868, "featuredRunMedia": null, "reactionVideos": [], @@ -358980,7 +358631,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "1445", "time": 8967893, "featuredRunMedia": null, "reactionVideos": [], @@ -359018,7 +358669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 8969254, "featuredRunMedia": null, "reactionVideos": [], @@ -359056,7 +358707,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 8970193, "featuredRunMedia": null, "reactionVideos": [], @@ -359094,7 +358745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 8970937, "featuredRunMedia": null, "reactionVideos": [], @@ -359132,7 +358783,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 8973958, "featuredRunMedia": null, "reactionVideos": [], @@ -359160,7 +358811,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 8975837, "featuredRunMedia": null, "reactionVideos": [], @@ -359193,7 +358844,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 8983619, "featuredRunMedia": null, "reactionVideos": [], @@ -359226,7 +358877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 8984976, "featuredRunMedia": null, "reactionVideos": [], @@ -359264,7 +358915,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 8985079, "featuredRunMedia": null, "reactionVideos": [], @@ -359292,7 +358943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 8986640, "featuredRunMedia": null, "reactionVideos": [], @@ -359320,7 +358971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 8986755, "featuredRunMedia": null, "reactionVideos": [], @@ -359348,7 +358999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 8986768, "featuredRunMedia": null, "reactionVideos": [], @@ -359376,7 +359027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 8987936, "featuredRunMedia": null, "reactionVideos": [], @@ -359414,7 +359065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 8988923, "featuredRunMedia": null, "reactionVideos": [], @@ -359442,7 +359093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 8991362, "featuredRunMedia": null, "reactionVideos": [], @@ -359480,7 +359131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 8991604, "featuredRunMedia": null, "reactionVideos": [], @@ -359518,7 +359169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 8993352, "featuredRunMedia": null, "reactionVideos": [], @@ -359556,7 +359207,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 8993485, "featuredRunMedia": null, "reactionVideos": [], @@ -359584,7 +359235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 8995536, "featuredRunMedia": null, "reactionVideos": [], @@ -359612,7 +359263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 8997352, "featuredRunMedia": null, "reactionVideos": [], @@ -359640,7 +359291,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 8999772, "featuredRunMedia": null, "reactionVideos": [], @@ -359678,7 +359329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 9000040, "featuredRunMedia": null, "reactionVideos": [], @@ -359716,7 +359367,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 9000492, "featuredRunMedia": null, "reactionVideos": [], @@ -359744,7 +359395,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 9001734, "featuredRunMedia": null, "reactionVideos": [], @@ -359772,7 +359423,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 177, + "teamId": "1446", "time": 9002295, "featuredRunMedia": null, "reactionVideos": [], @@ -359800,7 +359451,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 9002384, "featuredRunMedia": null, "reactionVideos": [], @@ -359828,7 +359479,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 9005057, "featuredRunMedia": null, "reactionVideos": [], @@ -359861,7 +359512,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 9006639, "featuredRunMedia": null, "reactionVideos": [], @@ -359899,7 +359550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 9008782, "featuredRunMedia": null, "reactionVideos": [], @@ -359932,7 +359583,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 9009138, "featuredRunMedia": null, "reactionVideos": [], @@ -359960,7 +359611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9010599, "featuredRunMedia": null, "reactionVideos": [], @@ -359988,7 +359639,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9013035, "featuredRunMedia": null, "reactionVideos": [], @@ -360016,7 +359667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 9013454, "featuredRunMedia": null, "reactionVideos": [], @@ -360049,7 +359700,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 9013841, "featuredRunMedia": null, "reactionVideos": [], @@ -360087,7 +359738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 9013943, "featuredRunMedia": null, "reactionVideos": [], @@ -360115,7 +359766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 9014587, "featuredRunMedia": null, "reactionVideos": [], @@ -360143,7 +359794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 9014889, "featuredRunMedia": null, "reactionVideos": [], @@ -360165,7 +359816,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9015187, "featuredRunMedia": null, "reactionVideos": [], @@ -360203,7 +359854,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 9016224, "featuredRunMedia": null, "reactionVideos": [], @@ -360231,7 +359882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 9018586, "featuredRunMedia": null, "reactionVideos": [], @@ -360264,7 +359915,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9021649, "featuredRunMedia": null, "reactionVideos": [], @@ -360292,7 +359943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 9021973, "featuredRunMedia": null, "reactionVideos": [], @@ -360320,7 +359971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 9022148, "featuredRunMedia": null, "reactionVideos": [], @@ -360342,7 +359993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9022198, "featuredRunMedia": null, "reactionVideos": [], @@ -360380,7 +360031,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 9022590, "featuredRunMedia": null, "reactionVideos": [], @@ -360418,7 +360069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 9023127, "featuredRunMedia": null, "reactionVideos": [], @@ -360456,7 +360107,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 9023638, "featuredRunMedia": null, "reactionVideos": [], @@ -360484,7 +360135,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 9024873, "featuredRunMedia": null, "reactionVideos": [], @@ -360512,7 +360163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9026045, "featuredRunMedia": null, "reactionVideos": [], @@ -360550,7 +360201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9026129, "featuredRunMedia": null, "reactionVideos": [], @@ -360578,7 +360229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 9030661, "featuredRunMedia": null, "reactionVideos": [], @@ -360616,7 +360267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9034328, "featuredRunMedia": null, "reactionVideos": [], @@ -360654,7 +360305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9034622, "featuredRunMedia": null, "reactionVideos": [], @@ -360692,7 +360343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9035082, "featuredRunMedia": null, "reactionVideos": [], @@ -360730,7 +360381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 9036877, "featuredRunMedia": null, "reactionVideos": [], @@ -360768,7 +360419,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 9037197, "featuredRunMedia": null, "reactionVideos": [], @@ -360796,7 +360447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9037197, "featuredRunMedia": null, "reactionVideos": [], @@ -360834,7 +360485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9038753, "featuredRunMedia": null, "reactionVideos": [], @@ -360872,7 +360523,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 9038840, "featuredRunMedia": null, "reactionVideos": [], @@ -360910,7 +360561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 9041366, "featuredRunMedia": null, "reactionVideos": [], @@ -360938,7 +360589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 9041678, "featuredRunMedia": null, "reactionVideos": [], @@ -360976,7 +360627,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9042899, "featuredRunMedia": null, "reactionVideos": [], @@ -361009,7 +360660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 9044308, "featuredRunMedia": null, "reactionVideos": [], @@ -361047,7 +360698,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 9049689, "featuredRunMedia": null, "reactionVideos": [], @@ -361075,7 +360726,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 9052577, "featuredRunMedia": null, "reactionVideos": [], @@ -361113,7 +360764,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "1245", "time": 9053094, "featuredRunMedia": null, "reactionVideos": [], @@ -361151,7 +360802,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 9053118, "featuredRunMedia": null, "reactionVideos": [], @@ -361184,7 +360835,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9054656, "featuredRunMedia": null, "reactionVideos": [], @@ -361212,7 +360863,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 9056781, "featuredRunMedia": null, "reactionVideos": [], @@ -361250,7 +360901,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 9058244, "featuredRunMedia": null, "reactionVideos": [], @@ -361288,7 +360939,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 9059477, "featuredRunMedia": null, "reactionVideos": [], @@ -361316,7 +360967,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 9059686, "featuredRunMedia": null, "reactionVideos": [], @@ -361344,7 +360995,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 9059766, "featuredRunMedia": null, "reactionVideos": [], @@ -361372,7 +361023,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 9066468, "featuredRunMedia": null, "reactionVideos": [], @@ -361410,7 +361061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9073476, "featuredRunMedia": null, "reactionVideos": [], @@ -361443,7 +361094,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 9074425, "featuredRunMedia": null, "reactionVideos": [], @@ -361471,7 +361122,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 9076219, "featuredRunMedia": null, "reactionVideos": [], @@ -361509,7 +361160,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9076353, "featuredRunMedia": null, "reactionVideos": [], @@ -361537,7 +361188,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 9077191, "featuredRunMedia": null, "reactionVideos": [], @@ -361575,7 +361226,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 9077263, "featuredRunMedia": null, "reactionVideos": [], @@ -361608,7 +361259,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 9078966, "featuredRunMedia": null, "reactionVideos": [], @@ -361646,7 +361297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 9080560, "featuredRunMedia": null, "reactionVideos": [], @@ -361684,7 +361335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 9081877, "featuredRunMedia": null, "reactionVideos": [], @@ -361722,7 +361373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9084164, "featuredRunMedia": null, "reactionVideos": [], @@ -361760,7 +361411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 9085686, "featuredRunMedia": null, "reactionVideos": [], @@ -361793,7 +361444,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 9087574, "featuredRunMedia": null, "reactionVideos": [], @@ -361831,7 +361482,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 9087613, "featuredRunMedia": null, "reactionVideos": [], @@ -361859,7 +361510,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 9087795, "featuredRunMedia": null, "reactionVideos": [], @@ -361897,7 +361548,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 9088671, "featuredRunMedia": null, "reactionVideos": [], @@ -361925,7 +361576,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 9088691, "featuredRunMedia": null, "reactionVideos": [], @@ -361947,7 +361598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 9089694, "featuredRunMedia": null, "reactionVideos": [], @@ -361975,7 +361626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9090449, "featuredRunMedia": null, "reactionVideos": [], @@ -362003,7 +361654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9092109, "featuredRunMedia": null, "reactionVideos": [], @@ -362041,7 +361692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9094741, "featuredRunMedia": null, "reactionVideos": [], @@ -362074,7 +361725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 9104742, "featuredRunMedia": null, "reactionVideos": [], @@ -362112,7 +361763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9104782, "featuredRunMedia": null, "reactionVideos": [], @@ -362140,7 +361791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9107737, "featuredRunMedia": null, "reactionVideos": [], @@ -362178,7 +361829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 9108977, "featuredRunMedia": null, "reactionVideos": [], @@ -362216,7 +361867,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9110449, "featuredRunMedia": null, "reactionVideos": [], @@ -362244,7 +361895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 72, + "teamId": "2542", "time": 9111384, "featuredRunMedia": null, "reactionVideos": [], @@ -362277,7 +361928,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 9112520, "featuredRunMedia": null, "reactionVideos": [], @@ -362305,7 +361956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 9113447, "featuredRunMedia": null, "reactionVideos": [], @@ -362343,7 +361994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 80, + "teamId": "1848", "time": 9115622, "featuredRunMedia": null, "reactionVideos": [], @@ -362381,7 +362032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "2851", "time": 9115681, "featuredRunMedia": null, "reactionVideos": [], @@ -362409,7 +362060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 9119231, "featuredRunMedia": null, "reactionVideos": [], @@ -362437,7 +362088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 9122078, "featuredRunMedia": null, "reactionVideos": [], @@ -362475,7 +362126,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 9123034, "featuredRunMedia": null, "reactionVideos": [], @@ -362513,7 +362164,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 9124341, "featuredRunMedia": null, "reactionVideos": [], @@ -362551,7 +362202,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9124932, "featuredRunMedia": null, "reactionVideos": [], @@ -362579,7 +362230,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "2154", "time": 9125018, "featuredRunMedia": null, "reactionVideos": [], @@ -362607,7 +362258,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9131397, "featuredRunMedia": null, "reactionVideos": [], @@ -362640,7 +362291,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 9131470, "featuredRunMedia": null, "reactionVideos": [], @@ -362668,7 +362319,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9131563, "featuredRunMedia": null, "reactionVideos": [], @@ -362706,7 +362357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9133114, "featuredRunMedia": null, "reactionVideos": [], @@ -362744,7 +362395,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 32, + "teamId": "3249", "time": 9133402, "featuredRunMedia": null, "reactionVideos": [], @@ -362772,7 +362423,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9135413, "featuredRunMedia": null, "reactionVideos": [], @@ -362810,7 +362461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "1451", "time": 9137462, "featuredRunMedia": null, "reactionVideos": [], @@ -362838,7 +362489,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 9140231, "featuredRunMedia": null, "reactionVideos": [], @@ -362866,7 +362517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 9140424, "featuredRunMedia": null, "reactionVideos": [], @@ -362904,7 +362555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9140587, "featuredRunMedia": null, "reactionVideos": [], @@ -362932,7 +362583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9140669, "featuredRunMedia": null, "reactionVideos": [], @@ -362970,7 +362621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "2147", "time": 9140873, "featuredRunMedia": null, "reactionVideos": [], @@ -363003,7 +362654,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 9141119, "featuredRunMedia": null, "reactionVideos": [], @@ -363041,7 +362692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 9141981, "featuredRunMedia": null, "reactionVideos": [], @@ -363079,7 +362730,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 9142740, "featuredRunMedia": null, "reactionVideos": [], @@ -363107,7 +362758,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9144235, "featuredRunMedia": null, "reactionVideos": [], @@ -363145,7 +362796,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9158564, "featuredRunMedia": null, "reactionVideos": [], @@ -363183,7 +362834,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9160644, "featuredRunMedia": null, "reactionVideos": [], @@ -363211,7 +362862,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9161186, "featuredRunMedia": null, "reactionVideos": [], @@ -363249,7 +362900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9161295, "featuredRunMedia": null, "reactionVideos": [], @@ -363287,7 +362938,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 344, + "teamId": "1553", "time": 9161303, "featuredRunMedia": null, "reactionVideos": [], @@ -363315,7 +362966,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9161881, "featuredRunMedia": null, "reactionVideos": [], @@ -363353,7 +363004,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 9162312, "featuredRunMedia": null, "reactionVideos": [], @@ -363391,7 +363042,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9163852, "featuredRunMedia": null, "reactionVideos": [], @@ -363419,7 +363070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 9164528, "featuredRunMedia": null, "reactionVideos": [], @@ -363447,7 +363098,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 9167743, "featuredRunMedia": null, "reactionVideos": [], @@ -363485,7 +363136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9178976, "featuredRunMedia": null, "reactionVideos": [], @@ -363523,7 +363174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9179445, "featuredRunMedia": null, "reactionVideos": [], @@ -363561,7 +363212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9179734, "featuredRunMedia": null, "reactionVideos": [], @@ -363594,7 +363245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 9180288, "featuredRunMedia": null, "reactionVideos": [], @@ -363622,7 +363273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 9180908, "featuredRunMedia": null, "reactionVideos": [], @@ -363660,7 +363311,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 9181042, "featuredRunMedia": null, "reactionVideos": [], @@ -363698,7 +363349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9183624, "featuredRunMedia": null, "reactionVideos": [], @@ -363731,7 +363382,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9183665, "featuredRunMedia": null, "reactionVideos": [], @@ -363769,7 +363420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9185261, "featuredRunMedia": null, "reactionVideos": [], @@ -363797,7 +363448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9186904, "featuredRunMedia": null, "reactionVideos": [], @@ -363835,7 +363486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 9187683, "featuredRunMedia": null, "reactionVideos": [], @@ -363863,7 +363514,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9188990, "featuredRunMedia": null, "reactionVideos": [], @@ -363891,7 +363542,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9189175, "featuredRunMedia": null, "reactionVideos": [], @@ -363924,7 +363575,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 127, + "teamId": "1747", "time": 9190541, "featuredRunMedia": null, "reactionVideos": [], @@ -363952,7 +363603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 9191366, "featuredRunMedia": null, "reactionVideos": [], @@ -363985,7 +363636,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 9191878, "featuredRunMedia": null, "reactionVideos": [], @@ -364018,7 +363669,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9192117, "featuredRunMedia": null, "reactionVideos": [], @@ -364056,7 +363707,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 9194339, "featuredRunMedia": null, "reactionVideos": [], @@ -364084,7 +363735,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 9200008, "featuredRunMedia": null, "reactionVideos": [], @@ -364122,7 +363773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 9202100, "featuredRunMedia": null, "reactionVideos": [], @@ -364160,7 +363811,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 9205515, "featuredRunMedia": null, "reactionVideos": [], @@ -364198,7 +363849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9208024, "featuredRunMedia": null, "reactionVideos": [], @@ -364236,7 +363887,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 9208551, "featuredRunMedia": null, "reactionVideos": [], @@ -364264,7 +363915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9209285, "featuredRunMedia": null, "reactionVideos": [], @@ -364292,7 +363943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9209894, "featuredRunMedia": null, "reactionVideos": [], @@ -364330,7 +363981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 9211266, "featuredRunMedia": null, "reactionVideos": [], @@ -364363,7 +364014,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "2250", "time": 9212978, "featuredRunMedia": null, "reactionVideos": [], @@ -364401,7 +364052,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 9213208, "featuredRunMedia": null, "reactionVideos": [], @@ -364429,7 +364080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 9213225, "featuredRunMedia": null, "reactionVideos": [], @@ -364467,7 +364118,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 9215292, "featuredRunMedia": null, "reactionVideos": [], @@ -364500,7 +364151,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 9217073, "featuredRunMedia": null, "reactionVideos": [], @@ -364528,7 +364179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 9218062, "featuredRunMedia": null, "reactionVideos": [], @@ -364556,7 +364207,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9218459, "featuredRunMedia": null, "reactionVideos": [], @@ -364582,7 +364233,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 9220066, "featuredRunMedia": null, "reactionVideos": [], @@ -364620,7 +364271,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 9223326, "featuredRunMedia": null, "reactionVideos": [], @@ -364658,7 +364309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 9223369, "featuredRunMedia": null, "reactionVideos": [], @@ -364696,7 +364347,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9224748, "featuredRunMedia": null, "reactionVideos": [], @@ -364724,7 +364375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "1149", "time": 9226026, "featuredRunMedia": null, "reactionVideos": [], @@ -364762,7 +364413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 9227157, "featuredRunMedia": null, "reactionVideos": [], @@ -364800,7 +364451,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "3147", "time": 9229041, "featuredRunMedia": null, "reactionVideos": [], @@ -364838,7 +364489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 9229134, "featuredRunMedia": null, "reactionVideos": [], @@ -364876,7 +364527,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9231478, "featuredRunMedia": null, "reactionVideos": [], @@ -364904,7 +364555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9231799, "featuredRunMedia": null, "reactionVideos": [], @@ -364932,7 +364583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9231903, "featuredRunMedia": null, "reactionVideos": [], @@ -364960,7 +364611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 9232336, "featuredRunMedia": null, "reactionVideos": [], @@ -364998,7 +364649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9237833, "featuredRunMedia": null, "reactionVideos": [], @@ -365026,7 +364677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 9238268, "featuredRunMedia": null, "reactionVideos": [], @@ -365059,7 +364710,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 221, + "teamId": "2250", "time": 9241795, "featuredRunMedia": null, "reactionVideos": [], @@ -365097,7 +364748,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 9243424, "featuredRunMedia": null, "reactionVideos": [], @@ -365135,7 +364786,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 9244022, "featuredRunMedia": null, "reactionVideos": [], @@ -365168,7 +364819,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 9244310, "featuredRunMedia": null, "reactionVideos": [], @@ -365196,7 +364847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9246026, "featuredRunMedia": null, "reactionVideos": [], @@ -365234,7 +364885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 9246921, "featuredRunMedia": null, "reactionVideos": [], @@ -365267,7 +364918,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9247167, "featuredRunMedia": null, "reactionVideos": [], @@ -365295,7 +364946,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 9248935, "featuredRunMedia": null, "reactionVideos": [], @@ -365333,7 +364984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 182, + "teamId": "1946", "time": 9250875, "featuredRunMedia": null, "reactionVideos": [], @@ -365361,7 +365012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 9251593, "featuredRunMedia": null, "reactionVideos": [], @@ -365399,7 +365050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 9253755, "featuredRunMedia": null, "reactionVideos": [], @@ -365437,7 +365088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 9254535, "featuredRunMedia": null, "reactionVideos": [], @@ -365463,7 +365114,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 9259736, "featuredRunMedia": null, "reactionVideos": [], @@ -365501,7 +365152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 9261019, "featuredRunMedia": null, "reactionVideos": [], @@ -365534,7 +365185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 9262707, "featuredRunMedia": null, "reactionVideos": [], @@ -365562,7 +365213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 9263932, "featuredRunMedia": null, "reactionVideos": [], @@ -365590,7 +365241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "3042", "time": 9265260, "featuredRunMedia": null, "reactionVideos": [], @@ -365628,7 +365279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "2851", "time": 9265735, "featuredRunMedia": null, "reactionVideos": [], @@ -365656,7 +365307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9266007, "featuredRunMedia": null, "reactionVideos": [], @@ -365684,7 +365335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 9271234, "featuredRunMedia": null, "reactionVideos": [], @@ -365722,7 +365373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 9272643, "featuredRunMedia": null, "reactionVideos": [], @@ -365760,7 +365411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "3147", "time": 9272675, "featuredRunMedia": null, "reactionVideos": [], @@ -365798,7 +365449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "2147", "time": 9272696, "featuredRunMedia": null, "reactionVideos": [], @@ -365826,7 +365477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 9278210, "featuredRunMedia": null, "reactionVideos": [], @@ -365854,7 +365505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 9279462, "featuredRunMedia": null, "reactionVideos": [], @@ -365882,7 +365533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 9279529, "featuredRunMedia": null, "reactionVideos": [], @@ -365920,7 +365571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 9280368, "featuredRunMedia": null, "reactionVideos": [], @@ -365958,7 +365609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 9282920, "featuredRunMedia": null, "reactionVideos": [], @@ -365996,7 +365647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 9283577, "featuredRunMedia": null, "reactionVideos": [], @@ -366034,7 +365685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 9288841, "featuredRunMedia": null, "reactionVideos": [], @@ -366072,7 +365723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9289138, "featuredRunMedia": null, "reactionVideos": [], @@ -366100,7 +365751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9289605, "featuredRunMedia": null, "reactionVideos": [], @@ -366138,7 +365789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9289666, "featuredRunMedia": null, "reactionVideos": [], @@ -366176,7 +365827,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 328, + "teamId": "3156", "time": 9295428, "featuredRunMedia": null, "reactionVideos": [], @@ -366204,7 +365855,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 9296457, "featuredRunMedia": null, "reactionVideos": [], @@ -366242,7 +365893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9296641, "featuredRunMedia": null, "reactionVideos": [], @@ -366280,7 +365931,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9298453, "featuredRunMedia": null, "reactionVideos": [], @@ -366318,7 +365969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 287, + "teamId": "1451", "time": 9300916, "featuredRunMedia": null, "reactionVideos": [], @@ -366346,7 +365997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9301425, "featuredRunMedia": null, "reactionVideos": [], @@ -366374,7 +366025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 9307532, "featuredRunMedia": null, "reactionVideos": [], @@ -366402,7 +366053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 9308260, "featuredRunMedia": null, "reactionVideos": [], @@ -366440,7 +366091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 9308551, "featuredRunMedia": null, "reactionVideos": [], @@ -366466,7 +366117,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 135, + "teamId": "2143", "time": 9309321, "featuredRunMedia": null, "reactionVideos": [], @@ -366504,7 +366155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 9311667, "featuredRunMedia": null, "reactionVideos": [], @@ -366532,7 +366183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9312412, "featuredRunMedia": null, "reactionVideos": [], @@ -366560,7 +366211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 9312523, "featuredRunMedia": null, "reactionVideos": [], @@ -366598,7 +366249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 9313188, "featuredRunMedia": null, "reactionVideos": [], @@ -366620,7 +366271,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 9314505, "featuredRunMedia": null, "reactionVideos": [], @@ -366646,7 +366297,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 9314735, "featuredRunMedia": null, "reactionVideos": [], @@ -366684,7 +366335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 9316997, "featuredRunMedia": null, "reactionVideos": [], @@ -366712,7 +366363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 9317873, "featuredRunMedia": null, "reactionVideos": [], @@ -366750,7 +366401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 9318126, "featuredRunMedia": null, "reactionVideos": [], @@ -366788,7 +366439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 9318288, "featuredRunMedia": null, "reactionVideos": [], @@ -366816,7 +366467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 9318315, "featuredRunMedia": null, "reactionVideos": [], @@ -366849,7 +366500,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9318329, "featuredRunMedia": null, "reactionVideos": [], @@ -366887,7 +366538,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 9319036, "featuredRunMedia": null, "reactionVideos": [], @@ -366925,7 +366576,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "2147", "time": 9319536, "featuredRunMedia": null, "reactionVideos": [], @@ -366947,7 +366598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9321574, "featuredRunMedia": null, "reactionVideos": [], @@ -366975,7 +366626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9322459, "featuredRunMedia": null, "reactionVideos": [], @@ -367003,7 +366654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 9323616, "featuredRunMedia": null, "reactionVideos": [], @@ -367041,7 +366692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 9324053, "featuredRunMedia": null, "reactionVideos": [], @@ -367069,7 +366720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9326407, "featuredRunMedia": null, "reactionVideos": [], @@ -367102,7 +366753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 9327549, "featuredRunMedia": null, "reactionVideos": [], @@ -367130,7 +366781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 9328543, "featuredRunMedia": null, "reactionVideos": [], @@ -367168,7 +366819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 9330215, "featuredRunMedia": null, "reactionVideos": [], @@ -367206,7 +366857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9332161, "featuredRunMedia": null, "reactionVideos": [], @@ -367244,7 +366895,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9333784, "featuredRunMedia": null, "reactionVideos": [], @@ -367272,7 +366923,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9335503, "featuredRunMedia": null, "reactionVideos": [], @@ -367310,7 +366961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 9338005, "featuredRunMedia": null, "reactionVideos": [], @@ -367343,7 +366994,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9338360, "featuredRunMedia": null, "reactionVideos": [], @@ -367381,7 +367032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 9338451, "featuredRunMedia": null, "reactionVideos": [], @@ -367409,7 +367060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9338451, "featuredRunMedia": null, "reactionVideos": [], @@ -367437,7 +367088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 6, + "teamId": "2453", "time": 9339336, "featuredRunMedia": null, "reactionVideos": [], @@ -367475,7 +367126,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 9341012, "featuredRunMedia": null, "reactionVideos": [], @@ -367503,7 +367154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9343684, "featuredRunMedia": null, "reactionVideos": [], @@ -367536,7 +367187,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 9343781, "featuredRunMedia": null, "reactionVideos": [], @@ -367558,7 +367209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9346627, "featuredRunMedia": null, "reactionVideos": [], @@ -367596,7 +367247,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9347201, "featuredRunMedia": null, "reactionVideos": [], @@ -367624,7 +367275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 9349848, "featuredRunMedia": null, "reactionVideos": [], @@ -367662,7 +367313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 9350038, "featuredRunMedia": null, "reactionVideos": [], @@ -367695,7 +367346,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9350621, "featuredRunMedia": null, "reactionVideos": [], @@ -367733,7 +367384,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 9355187, "featuredRunMedia": null, "reactionVideos": [], @@ -367766,7 +367417,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9355927, "featuredRunMedia": null, "reactionVideos": [], @@ -367804,7 +367455,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9357968, "featuredRunMedia": null, "reactionVideos": [], @@ -367842,7 +367493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9358688, "featuredRunMedia": null, "reactionVideos": [], @@ -367868,7 +367519,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 9359124, "featuredRunMedia": null, "reactionVideos": [], @@ -367896,7 +367547,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 9362501, "featuredRunMedia": null, "reactionVideos": [], @@ -367924,7 +367575,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 9362519, "featuredRunMedia": null, "reactionVideos": [], @@ -367952,7 +367603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9363252, "featuredRunMedia": null, "reactionVideos": [], @@ -367990,7 +367641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 9366191, "featuredRunMedia": null, "reactionVideos": [], @@ -368018,7 +367669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9366477, "featuredRunMedia": null, "reactionVideos": [], @@ -368056,7 +367707,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 9367715, "featuredRunMedia": null, "reactionVideos": [], @@ -368089,7 +367740,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 9370896, "featuredRunMedia": null, "reactionVideos": [], @@ -368117,7 +367768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 9375160, "featuredRunMedia": null, "reactionVideos": [], @@ -368155,7 +367806,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 9375403, "featuredRunMedia": null, "reactionVideos": [], @@ -368193,7 +367844,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 9375491, "featuredRunMedia": null, "reactionVideos": [], @@ -368221,7 +367872,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 9376142, "featuredRunMedia": null, "reactionVideos": [], @@ -368249,7 +367900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 9376198, "featuredRunMedia": null, "reactionVideos": [], @@ -368277,7 +367928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9377708, "featuredRunMedia": null, "reactionVideos": [], @@ -368315,7 +367966,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9377775, "featuredRunMedia": null, "reactionVideos": [], @@ -368343,7 +367994,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 9377995, "featuredRunMedia": null, "reactionVideos": [], @@ -368371,7 +368022,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 9380953, "featuredRunMedia": null, "reactionVideos": [], @@ -368399,7 +368050,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 9388974, "featuredRunMedia": null, "reactionVideos": [], @@ -368437,7 +368088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9391076, "featuredRunMedia": null, "reactionVideos": [], @@ -368475,7 +368126,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 9393059, "featuredRunMedia": null, "reactionVideos": [], @@ -368513,7 +368164,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9399500, "featuredRunMedia": null, "reactionVideos": [], @@ -368551,7 +368202,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 21, + "teamId": "1145", "time": 9402741, "featuredRunMedia": null, "reactionVideos": [], @@ -368589,7 +368240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 9403985, "featuredRunMedia": null, "reactionVideos": [], @@ -368617,7 +368268,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "3042", "time": 9404517, "featuredRunMedia": null, "reactionVideos": [], @@ -368655,7 +368306,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 9406472, "featuredRunMedia": null, "reactionVideos": [], @@ -368693,7 +368344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9407389, "featuredRunMedia": null, "reactionVideos": [], @@ -368731,7 +368382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 9408177, "featuredRunMedia": null, "reactionVideos": [], @@ -368759,7 +368410,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9408523, "featuredRunMedia": null, "reactionVideos": [], @@ -368792,7 +368443,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 9410700, "featuredRunMedia": null, "reactionVideos": [], @@ -368818,7 +368469,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 344, + "teamId": "1553", "time": 9412277, "featuredRunMedia": null, "reactionVideos": [], @@ -368846,7 +368497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 9412818, "featuredRunMedia": null, "reactionVideos": [], @@ -368884,7 +368535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9413782, "featuredRunMedia": null, "reactionVideos": [], @@ -368912,7 +368563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 9414465, "featuredRunMedia": null, "reactionVideos": [], @@ -368950,7 +368601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 9414644, "featuredRunMedia": null, "reactionVideos": [], @@ -368978,7 +368629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 9415201, "featuredRunMedia": null, "reactionVideos": [], @@ -369016,7 +368667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 9418099, "featuredRunMedia": null, "reactionVideos": [], @@ -369054,7 +368705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 9418203, "featuredRunMedia": null, "reactionVideos": [], @@ -369092,7 +368743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "1245", "time": 9419123, "featuredRunMedia": null, "reactionVideos": [], @@ -369120,7 +368771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 9422022, "featuredRunMedia": null, "reactionVideos": [], @@ -369158,7 +368809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9427185, "featuredRunMedia": null, "reactionVideos": [], @@ -369186,7 +368837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 9428964, "featuredRunMedia": null, "reactionVideos": [], @@ -369224,7 +368875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 9429745, "featuredRunMedia": null, "reactionVideos": [], @@ -369262,7 +368913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 9430157, "featuredRunMedia": null, "reactionVideos": [], @@ -369300,7 +368951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 9430183, "featuredRunMedia": null, "reactionVideos": [], @@ -369328,7 +368979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9431720, "featuredRunMedia": null, "reactionVideos": [], @@ -369356,7 +369007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9432189, "featuredRunMedia": null, "reactionVideos": [], @@ -369384,7 +369035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 9432450, "featuredRunMedia": null, "reactionVideos": [], @@ -369412,7 +369063,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 345, + "teamId": "2854", "time": 9433390, "featuredRunMedia": null, "reactionVideos": [], @@ -369450,7 +369101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 9433766, "featuredRunMedia": null, "reactionVideos": [], @@ -369478,7 +369129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 9433850, "featuredRunMedia": null, "reactionVideos": [], @@ -369511,7 +369162,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 9434242, "featuredRunMedia": null, "reactionVideos": [], @@ -369549,7 +369200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9434833, "featuredRunMedia": null, "reactionVideos": [], @@ -369577,7 +369228,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 315, + "teamId": "1542", "time": 9436552, "featuredRunMedia": null, "reactionVideos": [], @@ -369605,7 +369256,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 9438525, "featuredRunMedia": null, "reactionVideos": [], @@ -369643,7 +369294,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9441127, "featuredRunMedia": null, "reactionVideos": [], @@ -369671,7 +369322,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9442008, "featuredRunMedia": null, "reactionVideos": [], @@ -369709,7 +369360,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 9443189, "featuredRunMedia": null, "reactionVideos": [], @@ -369737,7 +369388,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9443410, "featuredRunMedia": null, "reactionVideos": [], @@ -369770,7 +369421,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9448318, "featuredRunMedia": null, "reactionVideos": [], @@ -369803,7 +369454,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 9449752, "featuredRunMedia": null, "reactionVideos": [], @@ -369831,7 +369482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 9451845, "featuredRunMedia": null, "reactionVideos": [], @@ -369869,7 +369520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 9453597, "featuredRunMedia": null, "reactionVideos": [], @@ -369907,7 +369558,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 9454797, "featuredRunMedia": null, "reactionVideos": [], @@ -369935,7 +369586,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 9454988, "featuredRunMedia": null, "reactionVideos": [], @@ -369973,7 +369624,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9455122, "featuredRunMedia": null, "reactionVideos": [], @@ -370011,7 +369662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9455897, "featuredRunMedia": null, "reactionVideos": [], @@ -370039,7 +369690,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 112, + "teamId": "1255", "time": 9456099, "featuredRunMedia": null, "reactionVideos": [], @@ -370077,7 +369728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "3147", "time": 9457054, "featuredRunMedia": null, "reactionVideos": [], @@ -370105,7 +369756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 9461096, "featuredRunMedia": null, "reactionVideos": [], @@ -370133,7 +369784,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9462308, "featuredRunMedia": null, "reactionVideos": [], @@ -370161,7 +369812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9463462, "featuredRunMedia": null, "reactionVideos": [], @@ -370199,7 +369850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 9464816, "featuredRunMedia": null, "reactionVideos": [], @@ -370227,7 +369878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9466610, "featuredRunMedia": null, "reactionVideos": [], @@ -370255,7 +369906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9467423, "featuredRunMedia": null, "reactionVideos": [], @@ -370293,7 +369944,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 9469625, "featuredRunMedia": null, "reactionVideos": [], @@ -370331,7 +369982,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 9470672, "featuredRunMedia": null, "reactionVideos": [], @@ -370369,7 +370020,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 9471584, "featuredRunMedia": null, "reactionVideos": [], @@ -370397,7 +370048,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 9471808, "featuredRunMedia": null, "reactionVideos": [], @@ -370435,7 +370086,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9472382, "featuredRunMedia": null, "reactionVideos": [], @@ -370457,7 +370108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9474853, "featuredRunMedia": null, "reactionVideos": [], @@ -370485,7 +370136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 9477014, "featuredRunMedia": null, "reactionVideos": [], @@ -370523,7 +370174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 9479240, "featuredRunMedia": null, "reactionVideos": [], @@ -370551,7 +370202,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9480907, "featuredRunMedia": null, "reactionVideos": [], @@ -370589,7 +370240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 9481212, "featuredRunMedia": null, "reactionVideos": [], @@ -370627,7 +370278,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 9481340, "featuredRunMedia": null, "reactionVideos": [], @@ -370655,7 +370306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 9483771, "featuredRunMedia": null, "reactionVideos": [], @@ -370693,7 +370344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9486285, "featuredRunMedia": null, "reactionVideos": [], @@ -370726,7 +370377,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 9487636, "featuredRunMedia": null, "reactionVideos": [], @@ -370759,7 +370410,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 9489416, "featuredRunMedia": null, "reactionVideos": [], @@ -370787,7 +370438,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 336, + "teamId": "3256", "time": 9490850, "featuredRunMedia": null, "reactionVideos": [], @@ -370815,7 +370466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9490994, "featuredRunMedia": null, "reactionVideos": [], @@ -370853,7 +370504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9491510, "featuredRunMedia": null, "reactionVideos": [], @@ -370891,7 +370542,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 9493652, "featuredRunMedia": null, "reactionVideos": [], @@ -370919,7 +370570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9495045, "featuredRunMedia": null, "reactionVideos": [], @@ -370957,7 +370608,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 9496463, "featuredRunMedia": null, "reactionVideos": [], @@ -370990,7 +370641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 9496668, "featuredRunMedia": null, "reactionVideos": [], @@ -371018,7 +370669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 9497922, "featuredRunMedia": null, "reactionVideos": [], @@ -371056,7 +370707,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 9500772, "featuredRunMedia": null, "reactionVideos": [], @@ -371094,7 +370745,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 9501380, "featuredRunMedia": null, "reactionVideos": [], @@ -371122,7 +370773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9502086, "featuredRunMedia": null, "reactionVideos": [], @@ -371160,7 +370811,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 9502401, "featuredRunMedia": null, "reactionVideos": [], @@ -371193,7 +370844,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 9503098, "featuredRunMedia": null, "reactionVideos": [], @@ -371231,7 +370882,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 9503497, "featuredRunMedia": null, "reactionVideos": [], @@ -371259,7 +370910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 9503570, "featuredRunMedia": null, "reactionVideos": [], @@ -371297,7 +370948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 9506403, "featuredRunMedia": null, "reactionVideos": [], @@ -371325,7 +370976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9507029, "featuredRunMedia": null, "reactionVideos": [], @@ -371353,7 +371004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 9508614, "featuredRunMedia": null, "reactionVideos": [], @@ -371381,7 +371032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 9508890, "featuredRunMedia": null, "reactionVideos": [], @@ -371409,7 +371060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 9510572, "featuredRunMedia": null, "reactionVideos": [], @@ -371435,7 +371086,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 9512140, "featuredRunMedia": null, "reactionVideos": [], @@ -371463,7 +371114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 9512957, "featuredRunMedia": null, "reactionVideos": [], @@ -371489,7 +371140,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 243, + "teamId": "3046", "time": 9513570, "featuredRunMedia": null, "reactionVideos": [], @@ -371527,7 +371178,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 9513672, "featuredRunMedia": null, "reactionVideos": [], @@ -371555,7 +371206,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 9522903, "featuredRunMedia": null, "reactionVideos": [], @@ -371593,7 +371244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 9525635, "featuredRunMedia": null, "reactionVideos": [], @@ -371631,7 +371282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 9526041, "featuredRunMedia": null, "reactionVideos": [], @@ -371659,7 +371310,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 9528040, "featuredRunMedia": null, "reactionVideos": [], @@ -371697,7 +371348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9528911, "featuredRunMedia": null, "reactionVideos": [], @@ -371735,7 +371386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9530993, "featuredRunMedia": null, "reactionVideos": [], @@ -371763,7 +371414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 47, + "teamId": "2943", "time": 9532007, "featuredRunMedia": null, "reactionVideos": [], @@ -371801,7 +371452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 9535570, "featuredRunMedia": null, "reactionVideos": [], @@ -371839,7 +371490,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9536508, "featuredRunMedia": null, "reactionVideos": [], @@ -371877,7 +371528,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 9538028, "featuredRunMedia": null, "reactionVideos": [], @@ -371915,7 +371566,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 9538400, "featuredRunMedia": null, "reactionVideos": [], @@ -371943,7 +371594,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 9538410, "featuredRunMedia": null, "reactionVideos": [], @@ -371981,7 +371632,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 9542015, "featuredRunMedia": null, "reactionVideos": [], @@ -372009,7 +371660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 9542317, "featuredRunMedia": null, "reactionVideos": [], @@ -372042,7 +371693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 9542391, "featuredRunMedia": null, "reactionVideos": [], @@ -372070,7 +371721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9543009, "featuredRunMedia": null, "reactionVideos": [], @@ -372108,7 +371759,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 9548542, "featuredRunMedia": null, "reactionVideos": [], @@ -372136,7 +371787,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9549163, "featuredRunMedia": null, "reactionVideos": [], @@ -372174,7 +371825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9549521, "featuredRunMedia": null, "reactionVideos": [], @@ -372202,7 +371853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 9557232, "featuredRunMedia": null, "reactionVideos": [], @@ -372230,7 +371881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 9557450, "featuredRunMedia": null, "reactionVideos": [], @@ -372268,7 +371919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 9557787, "featuredRunMedia": null, "reactionVideos": [], @@ -372296,7 +371947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 9562494, "featuredRunMedia": null, "reactionVideos": [], @@ -372334,7 +371985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 9564220, "featuredRunMedia": null, "reactionVideos": [], @@ -372367,7 +372018,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9564236, "featuredRunMedia": null, "reactionVideos": [], @@ -372395,7 +372046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9565472, "featuredRunMedia": null, "reactionVideos": [], @@ -372433,7 +372084,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 9567215, "featuredRunMedia": null, "reactionVideos": [], @@ -372471,7 +372122,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9568402, "featuredRunMedia": null, "reactionVideos": [], @@ -372509,7 +372160,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9568549, "featuredRunMedia": null, "reactionVideos": [], @@ -372547,7 +372198,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 9568736, "featuredRunMedia": null, "reactionVideos": [], @@ -372585,7 +372236,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 9572458, "featuredRunMedia": null, "reactionVideos": [], @@ -372613,7 +372264,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9572716, "featuredRunMedia": null, "reactionVideos": [], @@ -372651,7 +372302,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9574030, "featuredRunMedia": null, "reactionVideos": [], @@ -372679,7 +372330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9574821, "featuredRunMedia": null, "reactionVideos": [], @@ -372717,7 +372368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 9574995, "featuredRunMedia": null, "reactionVideos": [], @@ -372755,7 +372406,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9576615, "featuredRunMedia": null, "reactionVideos": [], @@ -372788,7 +372439,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 9577346, "featuredRunMedia": null, "reactionVideos": [], @@ -372816,7 +372467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 9577401, "featuredRunMedia": null, "reactionVideos": [], @@ -372854,7 +372505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 9582246, "featuredRunMedia": null, "reactionVideos": [], @@ -372892,7 +372543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 9582711, "featuredRunMedia": null, "reactionVideos": [], @@ -372925,7 +372576,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 9584070, "featuredRunMedia": null, "reactionVideos": [], @@ -372953,7 +372604,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 9584742, "featuredRunMedia": null, "reactionVideos": [], @@ -372981,7 +372632,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 9589381, "featuredRunMedia": null, "reactionVideos": [], @@ -373009,7 +372660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9591187, "featuredRunMedia": null, "reactionVideos": [], @@ -373037,7 +372688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 9591244, "featuredRunMedia": null, "reactionVideos": [], @@ -373075,7 +372726,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 9591546, "featuredRunMedia": null, "reactionVideos": [], @@ -373108,7 +372759,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9594585, "featuredRunMedia": null, "reactionVideos": [], @@ -373146,7 +372797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9596244, "featuredRunMedia": null, "reactionVideos": [], @@ -373184,7 +372835,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 9596254, "featuredRunMedia": null, "reactionVideos": [], @@ -373222,7 +372873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 9603402, "featuredRunMedia": null, "reactionVideos": [], @@ -373260,7 +372911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9603588, "featuredRunMedia": null, "reactionVideos": [], @@ -373298,7 +372949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 9603910, "featuredRunMedia": null, "reactionVideos": [], @@ -373336,7 +372987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 9605618, "featuredRunMedia": null, "reactionVideos": [], @@ -373374,7 +373025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 9606717, "featuredRunMedia": null, "reactionVideos": [], @@ -373402,7 +373053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9607376, "featuredRunMedia": null, "reactionVideos": [], @@ -373430,7 +373081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 9607505, "featuredRunMedia": null, "reactionVideos": [], @@ -373468,7 +373119,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9611437, "featuredRunMedia": null, "reactionVideos": [], @@ -373496,7 +373147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9612507, "featuredRunMedia": null, "reactionVideos": [], @@ -373524,7 +373175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 9619485, "featuredRunMedia": null, "reactionVideos": [], @@ -373562,7 +373213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 9619591, "featuredRunMedia": null, "reactionVideos": [], @@ -373595,7 +373246,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 9622772, "featuredRunMedia": null, "reactionVideos": [], @@ -373623,7 +373274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9624244, "featuredRunMedia": null, "reactionVideos": [], @@ -373661,7 +373312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9625070, "featuredRunMedia": null, "reactionVideos": [], @@ -373699,7 +373350,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 9625216, "featuredRunMedia": null, "reactionVideos": [], @@ -373737,7 +373388,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9627453, "featuredRunMedia": null, "reactionVideos": [], @@ -373759,7 +373410,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 228, + "teamId": "1855", "time": 9627857, "featuredRunMedia": null, "reactionVideos": [], @@ -373797,7 +373448,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9629031, "featuredRunMedia": null, "reactionVideos": [], @@ -373835,7 +373486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 9629580, "featuredRunMedia": null, "reactionVideos": [], @@ -373873,7 +373524,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 9630456, "featuredRunMedia": null, "reactionVideos": [], @@ -373911,7 +373562,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 9630805, "featuredRunMedia": null, "reactionVideos": [], @@ -373939,7 +373590,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 9633535, "featuredRunMedia": null, "reactionVideos": [], @@ -373967,7 +373618,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 9636648, "featuredRunMedia": null, "reactionVideos": [], @@ -374005,7 +373656,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 9637224, "featuredRunMedia": null, "reactionVideos": [], @@ -374043,7 +373694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 9642653, "featuredRunMedia": null, "reactionVideos": [], @@ -374081,7 +373732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 9643260, "featuredRunMedia": null, "reactionVideos": [], @@ -374119,7 +373770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 9643539, "featuredRunMedia": null, "reactionVideos": [], @@ -374157,7 +373808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9647929, "featuredRunMedia": null, "reactionVideos": [], @@ -374185,7 +373836,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 9648271, "featuredRunMedia": null, "reactionVideos": [], @@ -374223,7 +373874,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9648828, "featuredRunMedia": null, "reactionVideos": [], @@ -374261,7 +373912,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 9648989, "featuredRunMedia": null, "reactionVideos": [], @@ -374289,7 +373940,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 9649791, "featuredRunMedia": null, "reactionVideos": [], @@ -374317,7 +373968,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 9653792, "featuredRunMedia": null, "reactionVideos": [], @@ -374345,7 +373996,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 9656689, "featuredRunMedia": null, "reactionVideos": [], @@ -374373,7 +374024,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 9657477, "featuredRunMedia": null, "reactionVideos": [], @@ -374411,7 +374062,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 9657780, "featuredRunMedia": null, "reactionVideos": [], @@ -374449,7 +374100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 9657845, "featuredRunMedia": null, "reactionVideos": [], @@ -374487,7 +374138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 9657984, "featuredRunMedia": null, "reactionVideos": [], @@ -374520,7 +374171,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9659752, "featuredRunMedia": null, "reactionVideos": [], @@ -374548,7 +374199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 9661172, "featuredRunMedia": null, "reactionVideos": [], @@ -374586,7 +374237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 289, + "teamId": "2851", "time": 9662734, "featuredRunMedia": null, "reactionVideos": [], @@ -374614,7 +374265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9665746, "featuredRunMedia": null, "reactionVideos": [], @@ -374642,7 +374293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 9666632, "featuredRunMedia": null, "reactionVideos": [], @@ -374670,7 +374321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 9668314, "featuredRunMedia": null, "reactionVideos": [], @@ -374708,7 +374359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 9668660, "featuredRunMedia": null, "reactionVideos": [], @@ -374746,7 +374397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 9675494, "featuredRunMedia": null, "reactionVideos": [], @@ -374774,7 +374425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 9675596, "featuredRunMedia": null, "reactionVideos": [], @@ -374812,7 +374463,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 9676675, "featuredRunMedia": null, "reactionVideos": [], @@ -374850,7 +374501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 9679509, "featuredRunMedia": null, "reactionVideos": [], @@ -374888,7 +374539,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9679612, "featuredRunMedia": null, "reactionVideos": [], @@ -374916,7 +374567,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 9680624, "featuredRunMedia": null, "reactionVideos": [], @@ -374944,7 +374595,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 9681909, "featuredRunMedia": null, "reactionVideos": [], @@ -374972,7 +374623,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9683283, "featuredRunMedia": null, "reactionVideos": [], @@ -375010,7 +374661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 9683675, "featuredRunMedia": null, "reactionVideos": [], @@ -375032,7 +374683,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 9685533, "featuredRunMedia": null, "reactionVideos": [], @@ -375070,7 +374721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 9686112, "featuredRunMedia": null, "reactionVideos": [], @@ -375098,7 +374749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 9688523, "featuredRunMedia": null, "reactionVideos": [], @@ -375126,7 +374777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 9688816, "featuredRunMedia": null, "reactionVideos": [], @@ -375164,7 +374815,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 86, + "teamId": "3251", "time": 9689810, "featuredRunMedia": null, "reactionVideos": [], @@ -375197,7 +374848,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 9692402, "featuredRunMedia": null, "reactionVideos": [], @@ -375225,7 +374876,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 9692437, "featuredRunMedia": null, "reactionVideos": [], @@ -375253,7 +374904,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 9692494, "featuredRunMedia": null, "reactionVideos": [], @@ -375291,7 +374942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 9692897, "featuredRunMedia": null, "reactionVideos": [], @@ -375329,7 +374980,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9693904, "featuredRunMedia": null, "reactionVideos": [], @@ -375367,7 +375018,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 9694033, "featuredRunMedia": null, "reactionVideos": [], @@ -375395,7 +375046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 9696204, "featuredRunMedia": null, "reactionVideos": [], @@ -375433,7 +375084,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 9698319, "featuredRunMedia": null, "reactionVideos": [], @@ -375461,7 +375112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 9701362, "featuredRunMedia": null, "reactionVideos": [], @@ -375489,7 +375140,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 9701821, "featuredRunMedia": null, "reactionVideos": [], @@ -375517,7 +375168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 9702475, "featuredRunMedia": null, "reactionVideos": [], @@ -375555,7 +375206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 9703378, "featuredRunMedia": null, "reactionVideos": [], @@ -375583,7 +375234,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 9704198, "featuredRunMedia": null, "reactionVideos": [], @@ -375621,7 +375272,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 9705135, "featuredRunMedia": null, "reactionVideos": [], @@ -375659,7 +375310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 9706805, "featuredRunMedia": null, "reactionVideos": [], @@ -375687,7 +375338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 176, + "teamId": "3045", "time": 9707490, "featuredRunMedia": null, "reactionVideos": [], @@ -375715,7 +375366,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 9708063, "featuredRunMedia": null, "reactionVideos": [], @@ -375743,7 +375394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9708477, "featuredRunMedia": null, "reactionVideos": [], @@ -375781,7 +375432,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 9710232, "featuredRunMedia": null, "reactionVideos": [], @@ -375809,7 +375460,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9711971, "featuredRunMedia": null, "reactionVideos": [], @@ -375842,7 +375493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9714713, "featuredRunMedia": null, "reactionVideos": [], @@ -375880,7 +375531,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 9714848, "featuredRunMedia": null, "reactionVideos": [], @@ -375908,7 +375559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 9715963, "featuredRunMedia": null, "reactionVideos": [], @@ -375936,7 +375587,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 9716674, "featuredRunMedia": null, "reactionVideos": [], @@ -375962,7 +375613,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 30, + "teamId": "2654", "time": 9716745, "featuredRunMedia": null, "reactionVideos": [], @@ -376000,7 +375651,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 9717107, "featuredRunMedia": null, "reactionVideos": [], @@ -376038,7 +375689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 9717554, "featuredRunMedia": null, "reactionVideos": [], @@ -376066,7 +375717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 9717586, "featuredRunMedia": null, "reactionVideos": [], @@ -376104,7 +375755,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 9721079, "featuredRunMedia": null, "reactionVideos": [], @@ -376142,7 +375793,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 9721799, "featuredRunMedia": null, "reactionVideos": [], @@ -376180,7 +375831,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 262, + "teamId": "2352", "time": 9722956, "featuredRunMedia": null, "reactionVideos": [], @@ -376218,7 +375869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 9723559, "featuredRunMedia": null, "reactionVideos": [], @@ -376246,7 +375897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9723876, "featuredRunMedia": null, "reactionVideos": [], @@ -376284,7 +375935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 9723989, "featuredRunMedia": null, "reactionVideos": [], @@ -376312,7 +375963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 9724322, "featuredRunMedia": null, "reactionVideos": [], @@ -376340,7 +375991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 130, + "teamId": "2043", "time": 9728686, "featuredRunMedia": null, "reactionVideos": [], @@ -376378,7 +376029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 9730651, "featuredRunMedia": null, "reactionVideos": [], @@ -376406,7 +376057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 9734239, "featuredRunMedia": null, "reactionVideos": [], @@ -376444,7 +376095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9734474, "featuredRunMedia": null, "reactionVideos": [], @@ -376472,7 +376123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9735056, "featuredRunMedia": null, "reactionVideos": [], @@ -376505,7 +376156,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9736587, "featuredRunMedia": null, "reactionVideos": [], @@ -376543,7 +376194,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 9738033, "featuredRunMedia": null, "reactionVideos": [], @@ -376576,7 +376227,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 9739131, "featuredRunMedia": null, "reactionVideos": [], @@ -376614,7 +376265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 9741863, "featuredRunMedia": null, "reactionVideos": [], @@ -376642,7 +376293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 9748190, "featuredRunMedia": null, "reactionVideos": [], @@ -376680,7 +376331,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 9748502, "featuredRunMedia": null, "reactionVideos": [], @@ -376718,7 +376369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 9749043, "featuredRunMedia": null, "reactionVideos": [], @@ -376756,7 +376407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 9749064, "featuredRunMedia": null, "reactionVideos": [], @@ -376794,7 +376445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 9751270, "featuredRunMedia": null, "reactionVideos": [], @@ -376832,7 +376483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 9751408, "featuredRunMedia": null, "reactionVideos": [], @@ -376860,7 +376511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 9753821, "featuredRunMedia": null, "reactionVideos": [], @@ -376898,7 +376549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 201, + "teamId": "1851", "time": 9754001, "featuredRunMedia": null, "reactionVideos": [], @@ -376926,7 +376577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9755060, "featuredRunMedia": null, "reactionVideos": [], @@ -376959,7 +376610,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9755104, "featuredRunMedia": null, "reactionVideos": [], @@ -376987,7 +376638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9756240, "featuredRunMedia": null, "reactionVideos": [], @@ -377015,7 +376666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 9760174, "featuredRunMedia": null, "reactionVideos": [], @@ -377043,7 +376694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 62, + "teamId": "2049", "time": 9761067, "featuredRunMedia": null, "reactionVideos": [], @@ -377081,7 +376732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9762903, "featuredRunMedia": null, "reactionVideos": [], @@ -377119,7 +376770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 9765569, "featuredRunMedia": null, "reactionVideos": [], @@ -377147,7 +376798,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9765874, "featuredRunMedia": null, "reactionVideos": [], @@ -377185,7 +376836,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 9767158, "featuredRunMedia": null, "reactionVideos": [], @@ -377213,7 +376864,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 9770839, "featuredRunMedia": null, "reactionVideos": [], @@ -377251,7 +376902,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 9772344, "featuredRunMedia": null, "reactionVideos": [], @@ -377279,7 +376930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 9772430, "featuredRunMedia": null, "reactionVideos": [], @@ -377317,7 +376968,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 9774787, "featuredRunMedia": null, "reactionVideos": [], @@ -377345,7 +376996,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 9775689, "featuredRunMedia": null, "reactionVideos": [], @@ -377383,7 +377034,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 9777016, "featuredRunMedia": null, "reactionVideos": [], @@ -377411,7 +377062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9777956, "featuredRunMedia": null, "reactionVideos": [], @@ -377439,7 +377090,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9781359, "featuredRunMedia": null, "reactionVideos": [], @@ -377477,7 +377128,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 9781549, "featuredRunMedia": null, "reactionVideos": [], @@ -377510,7 +377161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9782727, "featuredRunMedia": null, "reactionVideos": [], @@ -377538,7 +377189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9785793, "featuredRunMedia": null, "reactionVideos": [], @@ -377566,7 +377217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 9785916, "featuredRunMedia": null, "reactionVideos": [], @@ -377599,7 +377250,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 9787559, "featuredRunMedia": null, "reactionVideos": [], @@ -377637,7 +377288,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 9787743, "featuredRunMedia": null, "reactionVideos": [], @@ -377675,7 +377326,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 9791066, "featuredRunMedia": null, "reactionVideos": [], @@ -377713,7 +377364,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 9791323, "featuredRunMedia": null, "reactionVideos": [], @@ -377751,7 +377402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 9792986, "featuredRunMedia": null, "reactionVideos": [], @@ -377779,7 +377430,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 9797175, "featuredRunMedia": null, "reactionVideos": [], @@ -377807,7 +377458,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9797337, "featuredRunMedia": null, "reactionVideos": [], @@ -377845,7 +377496,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9799787, "featuredRunMedia": null, "reactionVideos": [], @@ -377883,7 +377534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 9801381, "featuredRunMedia": null, "reactionVideos": [], @@ -377921,7 +377572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 9801650, "featuredRunMedia": null, "reactionVideos": [], @@ -377949,7 +377600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9802230, "featuredRunMedia": null, "reactionVideos": [], @@ -377987,7 +377638,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9803824, "featuredRunMedia": null, "reactionVideos": [], @@ -378025,7 +377676,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9804103, "featuredRunMedia": null, "reactionVideos": [], @@ -378053,7 +377704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 9805581, "featuredRunMedia": null, "reactionVideos": [], @@ -378081,7 +377732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 9806684, "featuredRunMedia": null, "reactionVideos": [], @@ -378119,7 +377770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 9806903, "featuredRunMedia": null, "reactionVideos": [], @@ -378147,7 +377798,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9808607, "featuredRunMedia": null, "reactionVideos": [], @@ -378185,7 +377836,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 9811551, "featuredRunMedia": null, "reactionVideos": [], @@ -378213,7 +377864,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 9811833, "featuredRunMedia": null, "reactionVideos": [], @@ -378246,7 +377897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 9813364, "featuredRunMedia": null, "reactionVideos": [], @@ -378268,7 +377919,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9815103, "featuredRunMedia": null, "reactionVideos": [], @@ -378301,7 +377952,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9815314, "featuredRunMedia": null, "reactionVideos": [], @@ -378329,7 +377980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 9822913, "featuredRunMedia": null, "reactionVideos": [], @@ -378357,7 +378008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9825225, "featuredRunMedia": null, "reactionVideos": [], @@ -378379,7 +378030,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 9826031, "featuredRunMedia": null, "reactionVideos": [], @@ -378407,7 +378058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 9827277, "featuredRunMedia": null, "reactionVideos": [], @@ -378435,7 +378086,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9827638, "featuredRunMedia": null, "reactionVideos": [], @@ -378463,7 +378114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 9827876, "featuredRunMedia": null, "reactionVideos": [], @@ -378501,7 +378152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 9829171, "featuredRunMedia": null, "reactionVideos": [], @@ -378539,7 +378190,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 9829477, "featuredRunMedia": null, "reactionVideos": [], @@ -378577,7 +378228,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 9829831, "featuredRunMedia": null, "reactionVideos": [], @@ -378610,7 +378261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 9832418, "featuredRunMedia": null, "reactionVideos": [], @@ -378638,7 +378289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "3042", "time": 9833188, "featuredRunMedia": null, "reactionVideos": [], @@ -378676,7 +378327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 9835149, "featuredRunMedia": null, "reactionVideos": [], @@ -378714,7 +378365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 9836063, "featuredRunMedia": null, "reactionVideos": [], @@ -378747,7 +378398,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9836527, "featuredRunMedia": null, "reactionVideos": [], @@ -378785,7 +378436,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9836586, "featuredRunMedia": null, "reactionVideos": [], @@ -378813,7 +378464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 9839009, "featuredRunMedia": null, "reactionVideos": [], @@ -378841,7 +378492,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9840007, "featuredRunMedia": null, "reactionVideos": [], @@ -378879,7 +378530,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 9841024, "featuredRunMedia": null, "reactionVideos": [], @@ -378917,7 +378568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 9843885, "featuredRunMedia": null, "reactionVideos": [], @@ -378945,7 +378596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 9844187, "featuredRunMedia": null, "reactionVideos": [], @@ -378973,7 +378624,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 9845882, "featuredRunMedia": null, "reactionVideos": [], @@ -379011,7 +378662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9846426, "featuredRunMedia": null, "reactionVideos": [], @@ -379049,7 +378700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 9846621, "featuredRunMedia": null, "reactionVideos": [], @@ -379087,7 +378738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 9847871, "featuredRunMedia": null, "reactionVideos": [], @@ -379125,7 +378776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9848744, "featuredRunMedia": null, "reactionVideos": [], @@ -379151,7 +378802,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 9848823, "featuredRunMedia": null, "reactionVideos": [], @@ -379189,7 +378840,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 9849365, "featuredRunMedia": null, "reactionVideos": [], @@ -379227,7 +378878,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 9850345, "featuredRunMedia": null, "reactionVideos": [], @@ -379249,7 +378900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9850570, "featuredRunMedia": null, "reactionVideos": [], @@ -379277,7 +378928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 9850891, "featuredRunMedia": null, "reactionVideos": [], @@ -379305,7 +378956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 9853735, "featuredRunMedia": null, "reactionVideos": [], @@ -379343,7 +378994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 9855452, "featuredRunMedia": null, "reactionVideos": [], @@ -379376,7 +379027,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 9856668, "featuredRunMedia": null, "reactionVideos": [], @@ -379409,7 +379060,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 9859097, "featuredRunMedia": null, "reactionVideos": [], @@ -379437,7 +379088,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 9860171, "featuredRunMedia": null, "reactionVideos": [], @@ -379475,7 +379126,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9860210, "featuredRunMedia": null, "reactionVideos": [], @@ -379497,7 +379148,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9860297, "featuredRunMedia": null, "reactionVideos": [], @@ -379535,7 +379186,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 9860603, "featuredRunMedia": null, "reactionVideos": [], @@ -379563,7 +379214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 9860979, "featuredRunMedia": null, "reactionVideos": [], @@ -379591,7 +379242,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 9862339, "featuredRunMedia": null, "reactionVideos": [], @@ -379629,7 +379280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 9866230, "featuredRunMedia": null, "reactionVideos": [], @@ -379667,7 +379318,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 9867948, "featuredRunMedia": null, "reactionVideos": [], @@ -379695,7 +379346,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9869047, "featuredRunMedia": null, "reactionVideos": [], @@ -379733,7 +379384,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 119, + "teamId": "2041", "time": 9871206, "featuredRunMedia": null, "reactionVideos": [], @@ -379761,7 +379412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9871302, "featuredRunMedia": null, "reactionVideos": [], @@ -379799,7 +379450,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 9871509, "featuredRunMedia": null, "reactionVideos": [], @@ -379837,7 +379488,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 9875982, "featuredRunMedia": null, "reactionVideos": [], @@ -379865,7 +379516,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 9880185, "featuredRunMedia": null, "reactionVideos": [], @@ -379893,7 +379544,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9880835, "featuredRunMedia": null, "reactionVideos": [], @@ -379931,7 +379582,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9881266, "featuredRunMedia": null, "reactionVideos": [], @@ -379969,7 +379620,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 9883160, "featuredRunMedia": null, "reactionVideos": [], @@ -380002,7 +379653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 9887438, "featuredRunMedia": null, "reactionVideos": [], @@ -380030,7 +379681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9892420, "featuredRunMedia": null, "reactionVideos": [], @@ -380058,7 +379709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9892889, "featuredRunMedia": null, "reactionVideos": [], @@ -380086,7 +379737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 9893571, "featuredRunMedia": null, "reactionVideos": [], @@ -380114,7 +379765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 9897459, "featuredRunMedia": null, "reactionVideos": [], @@ -380152,7 +379803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 9898549, "featuredRunMedia": null, "reactionVideos": [], @@ -380185,7 +379836,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 9900750, "featuredRunMedia": null, "reactionVideos": [], @@ -380213,7 +379864,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 9902393, "featuredRunMedia": null, "reactionVideos": [], @@ -380239,7 +379890,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 9903944, "featuredRunMedia": null, "reactionVideos": [], @@ -380277,7 +379928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 9904298, "featuredRunMedia": null, "reactionVideos": [], @@ -380305,7 +379956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 9905256, "featuredRunMedia": null, "reactionVideos": [], @@ -380333,7 +379984,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 9908015, "featuredRunMedia": null, "reactionVideos": [], @@ -380371,7 +380022,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 9910983, "featuredRunMedia": null, "reactionVideos": [], @@ -380399,7 +380050,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 9912857, "featuredRunMedia": null, "reactionVideos": [], @@ -380437,7 +380088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 9913729, "featuredRunMedia": null, "reactionVideos": [], @@ -380465,7 +380116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9915258, "featuredRunMedia": null, "reactionVideos": [], @@ -380498,7 +380149,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9915800, "featuredRunMedia": null, "reactionVideos": [], @@ -380526,7 +380177,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 9916390, "featuredRunMedia": null, "reactionVideos": [], @@ -380554,7 +380205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 9916551, "featuredRunMedia": null, "reactionVideos": [], @@ -380582,7 +380233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 9916769, "featuredRunMedia": null, "reactionVideos": [], @@ -380610,7 +380261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 9920918, "featuredRunMedia": null, "reactionVideos": [], @@ -380638,7 +380289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 9921065, "featuredRunMedia": null, "reactionVideos": [], @@ -380676,7 +380327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 9921654, "featuredRunMedia": null, "reactionVideos": [], @@ -380714,7 +380365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 9922269, "featuredRunMedia": null, "reactionVideos": [], @@ -380742,7 +380393,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9922293, "featuredRunMedia": null, "reactionVideos": [], @@ -380780,7 +380431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 9922564, "featuredRunMedia": null, "reactionVideos": [], @@ -380818,7 +380469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 9922714, "featuredRunMedia": null, "reactionVideos": [], @@ -380856,7 +380507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9922932, "featuredRunMedia": null, "reactionVideos": [], @@ -380894,7 +380545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "1245", "time": 9922949, "featuredRunMedia": null, "reactionVideos": [], @@ -380922,7 +380573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9925015, "featuredRunMedia": null, "reactionVideos": [], @@ -380950,7 +380601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 128, + "teamId": "2842", "time": 9925073, "featuredRunMedia": null, "reactionVideos": [], @@ -380978,7 +380629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 9927685, "featuredRunMedia": null, "reactionVideos": [], @@ -381016,7 +380667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 9927828, "featuredRunMedia": null, "reactionVideos": [], @@ -381054,7 +380705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 9928092, "featuredRunMedia": null, "reactionVideos": [], @@ -381092,7 +380743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 9928293, "featuredRunMedia": null, "reactionVideos": [], @@ -381120,7 +380771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 9928605, "featuredRunMedia": null, "reactionVideos": [], @@ -381158,7 +380809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "2148", "time": 9931167, "featuredRunMedia": null, "reactionVideos": [], @@ -381186,7 +380837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 9932044, "featuredRunMedia": null, "reactionVideos": [], @@ -381214,7 +380865,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 9932148, "featuredRunMedia": null, "reactionVideos": [], @@ -381240,7 +380891,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 9933436, "featuredRunMedia": null, "reactionVideos": [], @@ -381278,7 +380929,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 9934687, "featuredRunMedia": null, "reactionVideos": [], @@ -381316,7 +380967,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 52, + "teamId": "2346", "time": 9936661, "featuredRunMedia": null, "reactionVideos": [], @@ -381354,7 +381005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 9937323, "featuredRunMedia": null, "reactionVideos": [], @@ -381382,7 +381033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 9937386, "featuredRunMedia": null, "reactionVideos": [], @@ -381420,7 +381071,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 9937550, "featuredRunMedia": null, "reactionVideos": [], @@ -381448,7 +381099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9938954, "featuredRunMedia": null, "reactionVideos": [], @@ -381476,7 +381127,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9941173, "featuredRunMedia": null, "reactionVideos": [], @@ -381498,7 +381149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 9942542, "featuredRunMedia": null, "reactionVideos": [], @@ -381536,7 +381187,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 9943288, "featuredRunMedia": null, "reactionVideos": [], @@ -381558,7 +381209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9943539, "featuredRunMedia": null, "reactionVideos": [], @@ -381591,7 +381242,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9943539, "featuredRunMedia": null, "reactionVideos": [], @@ -381619,7 +381270,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 9944214, "featuredRunMedia": null, "reactionVideos": [], @@ -381647,7 +381298,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 9944472, "featuredRunMedia": null, "reactionVideos": [], @@ -381685,7 +381336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 9944608, "featuredRunMedia": null, "reactionVideos": [], @@ -381713,7 +381364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 9944791, "featuredRunMedia": null, "reactionVideos": [], @@ -381751,7 +381402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 9945348, "featuredRunMedia": null, "reactionVideos": [], @@ -381789,7 +381440,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9945467, "featuredRunMedia": null, "reactionVideos": [], @@ -381817,7 +381468,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 9949981, "featuredRunMedia": null, "reactionVideos": [], @@ -381855,7 +381506,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 9950748, "featuredRunMedia": null, "reactionVideos": [], @@ -381888,7 +381539,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 9951669, "featuredRunMedia": null, "reactionVideos": [], @@ -381916,7 +381567,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 9951711, "featuredRunMedia": null, "reactionVideos": [], @@ -381944,7 +381595,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 9952066, "featuredRunMedia": null, "reactionVideos": [], @@ -381982,7 +381633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 9952647, "featuredRunMedia": null, "reactionVideos": [], @@ -382010,7 +381661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9953207, "featuredRunMedia": null, "reactionVideos": [], @@ -382048,7 +381699,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 9954779, "featuredRunMedia": null, "reactionVideos": [], @@ -382076,7 +381727,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 9958764, "featuredRunMedia": null, "reactionVideos": [], @@ -382114,7 +381765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 9958863, "featuredRunMedia": null, "reactionVideos": [], @@ -382152,7 +381803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 9959075, "featuredRunMedia": null, "reactionVideos": [], @@ -382180,7 +381831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 9961184, "featuredRunMedia": null, "reactionVideos": [], @@ -382208,7 +381859,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 9962658, "featuredRunMedia": null, "reactionVideos": [], @@ -382236,7 +381887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9963638, "featuredRunMedia": null, "reactionVideos": [], @@ -382274,7 +381925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 9967787, "featuredRunMedia": null, "reactionVideos": [], @@ -382312,7 +381963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 9968497, "featuredRunMedia": null, "reactionVideos": [], @@ -382334,7 +381985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9968602, "featuredRunMedia": null, "reactionVideos": [], @@ -382362,7 +382013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 9972217, "featuredRunMedia": null, "reactionVideos": [], @@ -382400,7 +382051,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 9972556, "featuredRunMedia": null, "reactionVideos": [], @@ -382433,7 +382084,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 237, + "teamId": "2246", "time": 9974748, "featuredRunMedia": null, "reactionVideos": [], @@ -382471,7 +382122,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 9975307, "featuredRunMedia": null, "reactionVideos": [], @@ -382499,7 +382150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9975332, "featuredRunMedia": null, "reactionVideos": [], @@ -382527,7 +382178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9975968, "featuredRunMedia": null, "reactionVideos": [], @@ -382555,7 +382206,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 9976188, "featuredRunMedia": null, "reactionVideos": [], @@ -382593,7 +382244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 9976323, "featuredRunMedia": null, "reactionVideos": [], @@ -382631,7 +382282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 9979088, "featuredRunMedia": null, "reactionVideos": [], @@ -382659,7 +382310,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 9979330, "featuredRunMedia": null, "reactionVideos": [], @@ -382687,7 +382338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 9981931, "featuredRunMedia": null, "reactionVideos": [], @@ -382725,7 +382376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 9983524, "featuredRunMedia": null, "reactionVideos": [], @@ -382753,7 +382404,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 9984043, "featuredRunMedia": null, "reactionVideos": [], @@ -382781,7 +382432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 9985127, "featuredRunMedia": null, "reactionVideos": [], @@ -382809,7 +382460,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 9986869, "featuredRunMedia": null, "reactionVideos": [], @@ -382837,7 +382488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 9987228, "featuredRunMedia": null, "reactionVideos": [], @@ -382875,7 +382526,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 9988379, "featuredRunMedia": null, "reactionVideos": [], @@ -382913,7 +382564,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 9990395, "featuredRunMedia": null, "reactionVideos": [], @@ -382951,7 +382602,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 9991418, "featuredRunMedia": null, "reactionVideos": [], @@ -382979,7 +382630,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 9992187, "featuredRunMedia": null, "reactionVideos": [], @@ -383017,7 +382668,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 9993081, "featuredRunMedia": null, "reactionVideos": [], @@ -383050,7 +382701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 9993503, "featuredRunMedia": null, "reactionVideos": [], @@ -383083,7 +382734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 154, + "teamId": "1148", "time": 9993802, "featuredRunMedia": null, "reactionVideos": [], @@ -383111,7 +382762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 9995817, "featuredRunMedia": null, "reactionVideos": [], @@ -383139,7 +382790,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 65, + "teamId": "2746", "time": 9996198, "featuredRunMedia": null, "reactionVideos": [], @@ -383177,7 +382828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 235, + "teamId": "3147", "time": 9996968, "featuredRunMedia": null, "reactionVideos": [], @@ -383215,7 +382866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 9996979, "featuredRunMedia": null, "reactionVideos": [], @@ -383253,7 +382904,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 9997409, "featuredRunMedia": null, "reactionVideos": [], @@ -383279,7 +382930,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 186, + "teamId": "2646", "time": 9998106, "featuredRunMedia": null, "reactionVideos": [], @@ -383307,7 +382958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 189, + "teamId": "3049", "time": 10001149, "featuredRunMedia": null, "reactionVideos": [], @@ -383335,7 +382986,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 111, + "teamId": "2355", "time": 10002947, "featuredRunMedia": null, "reactionVideos": [], @@ -383363,7 +383014,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 10003419, "featuredRunMedia": null, "reactionVideos": [], @@ -383391,7 +383042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10003444, "featuredRunMedia": null, "reactionVideos": [], @@ -383424,7 +383075,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 10003480, "featuredRunMedia": null, "reactionVideos": [], @@ -383462,7 +383113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10004011, "featuredRunMedia": null, "reactionVideos": [], @@ -383500,7 +383151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10004220, "featuredRunMedia": null, "reactionVideos": [], @@ -383528,7 +383179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 10004873, "featuredRunMedia": null, "reactionVideos": [], @@ -383556,7 +383207,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 10006398, "featuredRunMedia": null, "reactionVideos": [], @@ -383594,7 +383245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 10006801, "featuredRunMedia": null, "reactionVideos": [], @@ -383632,7 +383283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 10011883, "featuredRunMedia": null, "reactionVideos": [], @@ -383670,7 +383321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 241, + "teamId": "1556", "time": 10012534, "featuredRunMedia": null, "reactionVideos": [], @@ -383703,7 +383354,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 10012678, "featuredRunMedia": null, "reactionVideos": [], @@ -383731,7 +383382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 10014348, "featuredRunMedia": null, "reactionVideos": [], @@ -383769,7 +383420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10015680, "featuredRunMedia": null, "reactionVideos": [], @@ -383797,7 +383448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 315, + "teamId": "1542", "time": 10016373, "featuredRunMedia": null, "reactionVideos": [], @@ -383835,7 +383486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10017870, "featuredRunMedia": null, "reactionVideos": [], @@ -383868,7 +383519,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 10018558, "featuredRunMedia": null, "reactionVideos": [], @@ -383906,7 +383557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 10018561, "featuredRunMedia": null, "reactionVideos": [], @@ -383939,7 +383590,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10023770, "featuredRunMedia": null, "reactionVideos": [], @@ -383977,7 +383628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 10026184, "featuredRunMedia": null, "reactionVideos": [], @@ -384005,7 +383656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 124, + "teamId": "2856", "time": 10033418, "featuredRunMedia": null, "reactionVideos": [], @@ -384043,7 +383694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10033918, "featuredRunMedia": null, "reactionVideos": [], @@ -384081,7 +383732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 10037614, "featuredRunMedia": null, "reactionVideos": [], @@ -384109,7 +383760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 10038666, "featuredRunMedia": null, "reactionVideos": [], @@ -384147,7 +383798,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 10041074, "featuredRunMedia": null, "reactionVideos": [], @@ -384180,7 +383831,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10041424, "featuredRunMedia": null, "reactionVideos": [], @@ -384202,7 +383853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10043222, "featuredRunMedia": null, "reactionVideos": [], @@ -384240,7 +383891,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10044415, "featuredRunMedia": null, "reactionVideos": [], @@ -384268,7 +383919,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "3042", "time": 10044502, "featuredRunMedia": null, "reactionVideos": [], @@ -384296,7 +383947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 10045921, "featuredRunMedia": null, "reactionVideos": [], @@ -384324,7 +383975,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10046704, "featuredRunMedia": null, "reactionVideos": [], @@ -384362,7 +384013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10048096, "featuredRunMedia": null, "reactionVideos": [], @@ -384390,7 +384041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 10048387, "featuredRunMedia": null, "reactionVideos": [], @@ -384418,7 +384069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 10049874, "featuredRunMedia": null, "reactionVideos": [], @@ -384446,7 +384097,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 10050046, "featuredRunMedia": null, "reactionVideos": [], @@ -384474,7 +384125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 10050917, "featuredRunMedia": null, "reactionVideos": [], @@ -384502,7 +384153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10056977, "featuredRunMedia": null, "reactionVideos": [], @@ -384540,7 +384191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10057623, "featuredRunMedia": null, "reactionVideos": [], @@ -384568,7 +384219,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 10061584, "featuredRunMedia": null, "reactionVideos": [], @@ -384606,7 +384257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 10069463, "featuredRunMedia": null, "reactionVideos": [], @@ -384634,7 +384285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10069466, "featuredRunMedia": null, "reactionVideos": [], @@ -384672,7 +384323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10070158, "featuredRunMedia": null, "reactionVideos": [], @@ -384710,7 +384361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 10070573, "featuredRunMedia": null, "reactionVideos": [], @@ -384738,7 +384389,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10072484, "featuredRunMedia": null, "reactionVideos": [], @@ -384766,7 +384417,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 10072694, "featuredRunMedia": null, "reactionVideos": [], @@ -384804,7 +384455,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 10074166, "featuredRunMedia": null, "reactionVideos": [], @@ -384842,7 +384493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10074433, "featuredRunMedia": null, "reactionVideos": [], @@ -384880,7 +384531,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10075951, "featuredRunMedia": null, "reactionVideos": [], @@ -384918,7 +384569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 10079438, "featuredRunMedia": null, "reactionVideos": [], @@ -384956,7 +384607,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 10080313, "featuredRunMedia": null, "reactionVideos": [], @@ -384984,7 +384635,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 10081678, "featuredRunMedia": null, "reactionVideos": [], @@ -385022,7 +384673,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 10088344, "featuredRunMedia": null, "reactionVideos": [], @@ -385050,7 +384701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 10091858, "featuredRunMedia": null, "reactionVideos": [], @@ -385088,7 +384739,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 10093853, "featuredRunMedia": null, "reactionVideos": [], @@ -385116,7 +384767,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 10094054, "featuredRunMedia": null, "reactionVideos": [], @@ -385138,7 +384789,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10094442, "featuredRunMedia": null, "reactionVideos": [], @@ -385176,7 +384827,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 10094657, "featuredRunMedia": null, "reactionVideos": [], @@ -385214,7 +384865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 10095201, "featuredRunMedia": null, "reactionVideos": [], @@ -385252,7 +384903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 10095404, "featuredRunMedia": null, "reactionVideos": [], @@ -385290,7 +384941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 10095645, "featuredRunMedia": null, "reactionVideos": [], @@ -385316,7 +384967,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 203, + "teamId": "3142", "time": 10095907, "featuredRunMedia": null, "reactionVideos": [], @@ -385354,7 +385005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 10098752, "featuredRunMedia": null, "reactionVideos": [], @@ -385392,7 +385043,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10098893, "featuredRunMedia": null, "reactionVideos": [], @@ -385430,7 +385081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10104315, "featuredRunMedia": null, "reactionVideos": [], @@ -385458,7 +385109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 10110266, "featuredRunMedia": null, "reactionVideos": [], @@ -385486,7 +385137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 10112397, "featuredRunMedia": null, "reactionVideos": [], @@ -385524,7 +385175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 10113045, "featuredRunMedia": null, "reactionVideos": [], @@ -385552,7 +385203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 10114117, "featuredRunMedia": null, "reactionVideos": [], @@ -385580,7 +385231,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 339, + "teamId": "2747", "time": 10114636, "featuredRunMedia": null, "reactionVideos": [], @@ -385608,7 +385259,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 10116737, "featuredRunMedia": null, "reactionVideos": [], @@ -385646,7 +385297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 10118465, "featuredRunMedia": null, "reactionVideos": [], @@ -385684,7 +385335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 10119418, "featuredRunMedia": null, "reactionVideos": [], @@ -385722,7 +385373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10122520, "featuredRunMedia": null, "reactionVideos": [], @@ -385750,7 +385401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 10122893, "featuredRunMedia": null, "reactionVideos": [], @@ -385788,7 +385439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 10124216, "featuredRunMedia": null, "reactionVideos": [], @@ -385826,7 +385477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10124275, "featuredRunMedia": null, "reactionVideos": [], @@ -385854,7 +385505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 10125552, "featuredRunMedia": null, "reactionVideos": [], @@ -385892,7 +385543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 10126727, "featuredRunMedia": null, "reactionVideos": [], @@ -385920,7 +385571,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 10128901, "featuredRunMedia": null, "reactionVideos": [], @@ -385948,7 +385599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 39, + "teamId": "3042", "time": 10129145, "featuredRunMedia": null, "reactionVideos": [], @@ -385976,7 +385627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 10131587, "featuredRunMedia": null, "reactionVideos": [], @@ -386014,7 +385665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10131862, "featuredRunMedia": null, "reactionVideos": [], @@ -386052,7 +385703,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 10132204, "featuredRunMedia": null, "reactionVideos": [], @@ -386074,7 +385725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10132280, "featuredRunMedia": null, "reactionVideos": [], @@ -386112,7 +385763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 10133532, "featuredRunMedia": null, "reactionVideos": [], @@ -386150,7 +385801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10134689, "featuredRunMedia": null, "reactionVideos": [], @@ -386188,7 +385839,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 10135361, "featuredRunMedia": null, "reactionVideos": [], @@ -386216,7 +385867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10136508, "featuredRunMedia": null, "reactionVideos": [], @@ -386244,7 +385895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10136734, "featuredRunMedia": null, "reactionVideos": [], @@ -386282,7 +385933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 10137582, "featuredRunMedia": null, "reactionVideos": [], @@ -386304,7 +385955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10143330, "featuredRunMedia": null, "reactionVideos": [], @@ -386332,7 +385983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 10143495, "featuredRunMedia": null, "reactionVideos": [], @@ -386370,7 +386021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10144397, "featuredRunMedia": null, "reactionVideos": [], @@ -386408,7 +386059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 10146230, "featuredRunMedia": null, "reactionVideos": [], @@ -386446,7 +386097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10147109, "featuredRunMedia": null, "reactionVideos": [], @@ -386484,7 +386135,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 10148937, "featuredRunMedia": null, "reactionVideos": [], @@ -386517,7 +386168,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 10149061, "featuredRunMedia": null, "reactionVideos": [], @@ -386555,7 +386206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10150077, "featuredRunMedia": null, "reactionVideos": [], @@ -386593,7 +386244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 10150370, "featuredRunMedia": null, "reactionVideos": [], @@ -386621,7 +386272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10150503, "featuredRunMedia": null, "reactionVideos": [], @@ -386659,7 +386310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 10151353, "featuredRunMedia": null, "reactionVideos": [], @@ -386687,7 +386338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 10153411, "featuredRunMedia": null, "reactionVideos": [], @@ -386715,7 +386366,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 10156444, "featuredRunMedia": null, "reactionVideos": [], @@ -386753,7 +386404,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10157327, "featuredRunMedia": null, "reactionVideos": [], @@ -386781,7 +386432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10157601, "featuredRunMedia": null, "reactionVideos": [], @@ -386819,7 +386470,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 4, + "teamId": "1350", "time": 10158426, "featuredRunMedia": null, "reactionVideos": [], @@ -386852,7 +386503,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10159420, "featuredRunMedia": null, "reactionVideos": [], @@ -386880,7 +386531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 10159896, "featuredRunMedia": null, "reactionVideos": [], @@ -386918,7 +386569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 10160233, "featuredRunMedia": null, "reactionVideos": [], @@ -386956,7 +386607,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 10163666, "featuredRunMedia": null, "reactionVideos": [], @@ -386984,7 +386635,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10163788, "featuredRunMedia": null, "reactionVideos": [], @@ -387012,7 +386663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10164676, "featuredRunMedia": null, "reactionVideos": [], @@ -387040,7 +386691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 10165584, "featuredRunMedia": null, "reactionVideos": [], @@ -387068,7 +386719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 10165996, "featuredRunMedia": null, "reactionVideos": [], @@ -387096,7 +386747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10166993, "featuredRunMedia": null, "reactionVideos": [], @@ -387134,7 +386785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 10168519, "featuredRunMedia": null, "reactionVideos": [], @@ -387172,7 +386823,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 10169320, "featuredRunMedia": null, "reactionVideos": [], @@ -387210,7 +386861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 10170602, "featuredRunMedia": null, "reactionVideos": [], @@ -387238,7 +386889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 10172433, "featuredRunMedia": null, "reactionVideos": [], @@ -387271,7 +386922,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 10172927, "featuredRunMedia": null, "reactionVideos": [], @@ -387304,7 +386955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10174300, "featuredRunMedia": null, "reactionVideos": [], @@ -387332,7 +386983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 10174511, "featuredRunMedia": null, "reactionVideos": [], @@ -387370,7 +387021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 10176832, "featuredRunMedia": null, "reactionVideos": [], @@ -387408,7 +387059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10178142, "featuredRunMedia": null, "reactionVideos": [], @@ -387436,7 +387087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 10178381, "featuredRunMedia": null, "reactionVideos": [], @@ -387469,7 +387120,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 10179003, "featuredRunMedia": null, "reactionVideos": [], @@ -387507,7 +387158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 10179044, "featuredRunMedia": null, "reactionVideos": [], @@ -387545,7 +387196,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 10179581, "featuredRunMedia": null, "reactionVideos": [], @@ -387583,7 +387234,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10182545, "featuredRunMedia": null, "reactionVideos": [], @@ -387611,7 +387262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 10182561, "featuredRunMedia": null, "reactionVideos": [], @@ -387649,7 +387300,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 10182849, "featuredRunMedia": null, "reactionVideos": [], @@ -387677,7 +387328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 10184418, "featuredRunMedia": null, "reactionVideos": [], @@ -387715,7 +387366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 10185184, "featuredRunMedia": null, "reactionVideos": [], @@ -387753,7 +387404,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10185364, "featuredRunMedia": null, "reactionVideos": [], @@ -387791,7 +387442,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10188763, "featuredRunMedia": null, "reactionVideos": [], @@ -387829,7 +387480,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "1245", "time": 10188993, "featuredRunMedia": null, "reactionVideos": [], @@ -387857,7 +387508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10189879, "featuredRunMedia": null, "reactionVideos": [], @@ -387885,7 +387536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 10192886, "featuredRunMedia": null, "reactionVideos": [], @@ -387923,7 +387574,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10197211, "featuredRunMedia": null, "reactionVideos": [], @@ -387961,7 +387612,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 10200465, "featuredRunMedia": null, "reactionVideos": [], @@ -387999,7 +387650,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 10202110, "featuredRunMedia": null, "reactionVideos": [], @@ -388037,7 +387688,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 10204277, "featuredRunMedia": null, "reactionVideos": [], @@ -388065,7 +387716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "2550", "time": 10204595, "featuredRunMedia": null, "reactionVideos": [], @@ -388103,7 +387754,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10204975, "featuredRunMedia": null, "reactionVideos": [], @@ -388129,7 +387780,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 10205578, "featuredRunMedia": null, "reactionVideos": [], @@ -388167,7 +387818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10206994, "featuredRunMedia": null, "reactionVideos": [], @@ -388205,7 +387856,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 10208248, "featuredRunMedia": null, "reactionVideos": [], @@ -388243,7 +387894,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 10209206, "featuredRunMedia": null, "reactionVideos": [], @@ -388271,7 +387922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10209293, "featuredRunMedia": null, "reactionVideos": [], @@ -388304,7 +387955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 10211655, "featuredRunMedia": null, "reactionVideos": [], @@ -388342,7 +387993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10215701, "featuredRunMedia": null, "reactionVideos": [], @@ -388380,7 +388031,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 10216234, "featuredRunMedia": null, "reactionVideos": [], @@ -388408,7 +388059,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10216810, "featuredRunMedia": null, "reactionVideos": [], @@ -388436,7 +388087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 10217752, "featuredRunMedia": null, "reactionVideos": [], @@ -388474,7 +388125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 10219996, "featuredRunMedia": null, "reactionVideos": [], @@ -388512,7 +388163,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 267, + "teamId": "1245", "time": 10221614, "featuredRunMedia": null, "reactionVideos": [], @@ -388540,7 +388191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 10222168, "featuredRunMedia": null, "reactionVideos": [], @@ -388578,7 +388229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 10225340, "featuredRunMedia": null, "reactionVideos": [], @@ -388606,7 +388257,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 10227089, "featuredRunMedia": null, "reactionVideos": [], @@ -388634,7 +388285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "3241", "time": 10227260, "featuredRunMedia": null, "reactionVideos": [], @@ -388662,7 +388313,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10227351, "featuredRunMedia": null, "reactionVideos": [], @@ -388700,7 +388351,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 10228229, "featuredRunMedia": null, "reactionVideos": [], @@ -388728,7 +388379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 10229511, "featuredRunMedia": null, "reactionVideos": [], @@ -388766,7 +388417,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "2546", "time": 10229558, "featuredRunMedia": null, "reactionVideos": [], @@ -388794,7 +388445,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "1752", "time": 10232293, "featuredRunMedia": null, "reactionVideos": [], @@ -388832,7 +388483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 10232686, "featuredRunMedia": null, "reactionVideos": [], @@ -388865,7 +388516,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10233122, "featuredRunMedia": null, "reactionVideos": [], @@ -388903,7 +388554,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10234760, "featuredRunMedia": null, "reactionVideos": [], @@ -388941,7 +388592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 10235219, "featuredRunMedia": null, "reactionVideos": [], @@ -388969,7 +388620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10236343, "featuredRunMedia": null, "reactionVideos": [], @@ -389007,7 +388658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 10239315, "featuredRunMedia": null, "reactionVideos": [], @@ -389045,7 +388696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10242316, "featuredRunMedia": null, "reactionVideos": [], @@ -389078,7 +388729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 10243494, "featuredRunMedia": null, "reactionVideos": [], @@ -389116,7 +388767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 10243698, "featuredRunMedia": null, "reactionVideos": [], @@ -389154,7 +388805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 10244138, "featuredRunMedia": null, "reactionVideos": [], @@ -389182,7 +388833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 10246329, "featuredRunMedia": null, "reactionVideos": [], @@ -389210,7 +388861,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 10246502, "featuredRunMedia": null, "reactionVideos": [], @@ -389243,7 +388894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10247571, "featuredRunMedia": null, "reactionVideos": [], @@ -389281,7 +388932,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 10247625, "featuredRunMedia": null, "reactionVideos": [], @@ -389309,7 +388960,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 10247780, "featuredRunMedia": null, "reactionVideos": [], @@ -389347,7 +388998,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 10248706, "featuredRunMedia": null, "reactionVideos": [], @@ -389369,7 +389020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 10248738, "featuredRunMedia": null, "reactionVideos": [], @@ -389407,7 +389058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10250309, "featuredRunMedia": null, "reactionVideos": [], @@ -389440,7 +389091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 10251018, "featuredRunMedia": null, "reactionVideos": [], @@ -389478,7 +389129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10251672, "featuredRunMedia": null, "reactionVideos": [], @@ -389516,7 +389167,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10253982, "featuredRunMedia": null, "reactionVideos": [], @@ -389554,7 +389205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10254123, "featuredRunMedia": null, "reactionVideos": [], @@ -389582,7 +389233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 10258160, "featuredRunMedia": null, "reactionVideos": [], @@ -389610,7 +389261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 10260570, "featuredRunMedia": null, "reactionVideos": [], @@ -389648,7 +389299,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 10260801, "featuredRunMedia": null, "reactionVideos": [], @@ -389686,7 +389337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10264236, "featuredRunMedia": null, "reactionVideos": [], @@ -389724,7 +389375,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 10264871, "featuredRunMedia": null, "reactionVideos": [], @@ -389752,7 +389403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 10265974, "featuredRunMedia": null, "reactionVideos": [], @@ -389785,7 +389436,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10267641, "featuredRunMedia": null, "reactionVideos": [], @@ -389813,7 +389464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 10268449, "featuredRunMedia": null, "reactionVideos": [], @@ -389846,7 +389497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 10268589, "featuredRunMedia": null, "reactionVideos": [], @@ -389872,7 +389523,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 278, + "teamId": "2941", "time": 10270780, "featuredRunMedia": null, "reactionVideos": [], @@ -389900,7 +389551,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10271865, "featuredRunMedia": null, "reactionVideos": [], @@ -389928,7 +389579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 10273097, "featuredRunMedia": null, "reactionVideos": [], @@ -389966,7 +389617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 59, + "teamId": "2446", "time": 10273444, "featuredRunMedia": null, "reactionVideos": [], @@ -389994,7 +389645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10278609, "featuredRunMedia": null, "reactionVideos": [], @@ -390032,7 +389683,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10280034, "featuredRunMedia": null, "reactionVideos": [], @@ -390070,7 +389721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 10280489, "featuredRunMedia": null, "reactionVideos": [], @@ -390108,7 +389759,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 10280605, "featuredRunMedia": null, "reactionVideos": [], @@ -390130,7 +389781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10282821, "featuredRunMedia": null, "reactionVideos": [], @@ -390168,7 +389819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10284591, "featuredRunMedia": null, "reactionVideos": [], @@ -390196,7 +389847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 10286510, "featuredRunMedia": null, "reactionVideos": [], @@ -390229,7 +389880,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 10290122, "featuredRunMedia": null, "reactionVideos": [], @@ -390257,7 +389908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10290864, "featuredRunMedia": null, "reactionVideos": [], @@ -390295,7 +389946,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "2147", "time": 10293216, "featuredRunMedia": null, "reactionVideos": [], @@ -390333,7 +389984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10294678, "featuredRunMedia": null, "reactionVideos": [], @@ -390371,7 +390022,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 25, + "teamId": "2843", "time": 10297126, "featuredRunMedia": null, "reactionVideos": [], @@ -390399,7 +390050,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "2550", "time": 10297735, "featuredRunMedia": null, "reactionVideos": [], @@ -390427,7 +390078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10297971, "featuredRunMedia": null, "reactionVideos": [], @@ -390460,7 +390111,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10301995, "featuredRunMedia": null, "reactionVideos": [], @@ -390498,7 +390149,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 10302702, "featuredRunMedia": null, "reactionVideos": [], @@ -390531,7 +390182,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 10302719, "featuredRunMedia": null, "reactionVideos": [], @@ -390559,7 +390210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10304420, "featuredRunMedia": null, "reactionVideos": [], @@ -390597,7 +390248,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 10305081, "featuredRunMedia": null, "reactionVideos": [], @@ -390625,7 +390276,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 10305235, "featuredRunMedia": null, "reactionVideos": [], @@ -390653,7 +390304,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 10307045, "featuredRunMedia": null, "reactionVideos": [], @@ -390681,7 +390332,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10307375, "featuredRunMedia": null, "reactionVideos": [], @@ -390709,7 +390360,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 10308988, "featuredRunMedia": null, "reactionVideos": [], @@ -390747,7 +390398,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10309160, "featuredRunMedia": null, "reactionVideos": [], @@ -390785,7 +390436,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 10309338, "featuredRunMedia": null, "reactionVideos": [], @@ -390823,7 +390474,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 10309463, "featuredRunMedia": null, "reactionVideos": [], @@ -390861,7 +390512,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10309472, "featuredRunMedia": null, "reactionVideos": [], @@ -390889,7 +390540,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10310769, "featuredRunMedia": null, "reactionVideos": [], @@ -390917,7 +390568,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 152, + "teamId": "1253", "time": 10311121, "featuredRunMedia": null, "reactionVideos": [], @@ -390945,7 +390596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10311307, "featuredRunMedia": null, "reactionVideos": [], @@ -390983,7 +390634,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 10314012, "featuredRunMedia": null, "reactionVideos": [], @@ -391021,7 +390672,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 10314036, "featuredRunMedia": null, "reactionVideos": [], @@ -391049,7 +390700,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10316038, "featuredRunMedia": null, "reactionVideos": [], @@ -391087,7 +390738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 10317237, "featuredRunMedia": null, "reactionVideos": [], @@ -391115,7 +390766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 10320061, "featuredRunMedia": null, "reactionVideos": [], @@ -391143,7 +390794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10321844, "featuredRunMedia": null, "reactionVideos": [], @@ -391171,7 +390822,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 10323857, "featuredRunMedia": null, "reactionVideos": [], @@ -391209,7 +390860,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10325285, "featuredRunMedia": null, "reactionVideos": [], @@ -391247,7 +390898,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10325326, "featuredRunMedia": null, "reactionVideos": [], @@ -391285,7 +390936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10329619, "featuredRunMedia": null, "reactionVideos": [], @@ -391323,7 +390974,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10330459, "featuredRunMedia": null, "reactionVideos": [], @@ -391361,7 +391012,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10332264, "featuredRunMedia": null, "reactionVideos": [], @@ -391399,7 +391050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "2546", "time": 10338363, "featuredRunMedia": null, "reactionVideos": [], @@ -391427,7 +391078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10339791, "featuredRunMedia": null, "reactionVideos": [], @@ -391465,7 +391116,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 10341174, "featuredRunMedia": null, "reactionVideos": [], @@ -391503,7 +391154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10341213, "featuredRunMedia": null, "reactionVideos": [], @@ -391541,7 +391192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 10341289, "featuredRunMedia": null, "reactionVideos": [], @@ -391569,7 +391220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10341767, "featuredRunMedia": null, "reactionVideos": [], @@ -391607,7 +391258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 10342996, "featuredRunMedia": null, "reactionVideos": [], @@ -391629,7 +391280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 10343188, "featuredRunMedia": null, "reactionVideos": [], @@ -391667,7 +391318,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 10345048, "featuredRunMedia": null, "reactionVideos": [], @@ -391700,7 +391351,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 10345916, "featuredRunMedia": null, "reactionVideos": [], @@ -391728,7 +391379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 10346075, "featuredRunMedia": null, "reactionVideos": [], @@ -391761,7 +391412,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10349660, "featuredRunMedia": null, "reactionVideos": [], @@ -391799,7 +391450,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10351363, "featuredRunMedia": null, "reactionVideos": [], @@ -391827,7 +391478,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 10352326, "featuredRunMedia": null, "reactionVideos": [], @@ -391860,7 +391511,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 10354182, "featuredRunMedia": null, "reactionVideos": [], @@ -391898,7 +391549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10356879, "featuredRunMedia": null, "reactionVideos": [], @@ -391936,7 +391587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10356962, "featuredRunMedia": null, "reactionVideos": [], @@ -391974,7 +391625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10357035, "featuredRunMedia": null, "reactionVideos": [], @@ -392012,7 +391663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 10358563, "featuredRunMedia": null, "reactionVideos": [], @@ -392040,7 +391691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 10360295, "featuredRunMedia": null, "reactionVideos": [], @@ -392068,7 +391719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 10360521, "featuredRunMedia": null, "reactionVideos": [], @@ -392096,7 +391747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10367114, "featuredRunMedia": null, "reactionVideos": [], @@ -392124,7 +391775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 10368746, "featuredRunMedia": null, "reactionVideos": [], @@ -392152,7 +391803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10370035, "featuredRunMedia": null, "reactionVideos": [], @@ -392190,7 +391841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 10371700, "featuredRunMedia": null, "reactionVideos": [], @@ -392228,7 +391879,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10373410, "featuredRunMedia": null, "reactionVideos": [], @@ -392256,7 +391907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10375204, "featuredRunMedia": null, "reactionVideos": [], @@ -392294,7 +391945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 10375255, "featuredRunMedia": null, "reactionVideos": [], @@ -392332,7 +391983,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10377026, "featuredRunMedia": null, "reactionVideos": [], @@ -392370,7 +392021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10377698, "featuredRunMedia": null, "reactionVideos": [], @@ -392398,7 +392049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10380328, "featuredRunMedia": null, "reactionVideos": [], @@ -392426,7 +392077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 10381286, "featuredRunMedia": null, "reactionVideos": [], @@ -392454,7 +392105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 10386571, "featuredRunMedia": null, "reactionVideos": [], @@ -392492,7 +392143,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 10388499, "featuredRunMedia": null, "reactionVideos": [], @@ -392530,7 +392181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 10389658, "featuredRunMedia": null, "reactionVideos": [], @@ -392558,7 +392209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 10392973, "featuredRunMedia": null, "reactionVideos": [], @@ -392591,7 +392242,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 10398743, "featuredRunMedia": null, "reactionVideos": [], @@ -392629,7 +392280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "2253", "time": 10399066, "featuredRunMedia": null, "reactionVideos": [], @@ -392651,7 +392302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10399543, "featuredRunMedia": null, "reactionVideos": [], @@ -392679,7 +392330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 10400351, "featuredRunMedia": null, "reactionVideos": [], @@ -392717,7 +392368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10402827, "featuredRunMedia": null, "reactionVideos": [], @@ -392750,7 +392401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10403651, "featuredRunMedia": null, "reactionVideos": [], @@ -392788,7 +392439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10405645, "featuredRunMedia": null, "reactionVideos": [], @@ -392816,7 +392467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 10407061, "featuredRunMedia": null, "reactionVideos": [], @@ -392844,7 +392495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10407197, "featuredRunMedia": null, "reactionVideos": [], @@ -392870,7 +392521,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 57, + "teamId": "2450", "time": 10408857, "featuredRunMedia": null, "reactionVideos": [], @@ -392908,7 +392559,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 10408894, "featuredRunMedia": null, "reactionVideos": [], @@ -392946,7 +392597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 10411497, "featuredRunMedia": null, "reactionVideos": [], @@ -392974,7 +392625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10412992, "featuredRunMedia": null, "reactionVideos": [], @@ -393012,7 +392663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 38, + "teamId": "2053", "time": 10413737, "featuredRunMedia": null, "reactionVideos": [], @@ -393040,7 +392691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 10414775, "featuredRunMedia": null, "reactionVideos": [], @@ -393068,7 +392719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 10415003, "featuredRunMedia": null, "reactionVideos": [], @@ -393106,7 +392757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 10415626, "featuredRunMedia": null, "reactionVideos": [], @@ -393139,7 +392790,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 10416028, "featuredRunMedia": null, "reactionVideos": [], @@ -393177,7 +392828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10418719, "featuredRunMedia": null, "reactionVideos": [], @@ -393215,7 +392866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 10420431, "featuredRunMedia": null, "reactionVideos": [], @@ -393253,7 +392904,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 10420675, "featuredRunMedia": null, "reactionVideos": [], @@ -393291,7 +392942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10420799, "featuredRunMedia": null, "reactionVideos": [], @@ -393319,7 +392970,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 10423355, "featuredRunMedia": null, "reactionVideos": [], @@ -393357,7 +393008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 10424529, "featuredRunMedia": null, "reactionVideos": [], @@ -393395,7 +393046,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10424571, "featuredRunMedia": null, "reactionVideos": [], @@ -393423,7 +393074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 10427103, "featuredRunMedia": null, "reactionVideos": [], @@ -393451,7 +393102,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 10427810, "featuredRunMedia": null, "reactionVideos": [], @@ -393479,7 +393130,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10428245, "featuredRunMedia": null, "reactionVideos": [], @@ -393512,7 +393163,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10429032, "featuredRunMedia": null, "reactionVideos": [], @@ -393550,7 +393201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10430738, "featuredRunMedia": null, "reactionVideos": [], @@ -393576,7 +393227,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 305, + "teamId": "2743", "time": 10432687, "featuredRunMedia": null, "reactionVideos": [], @@ -393609,7 +393260,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 10432992, "featuredRunMedia": null, "reactionVideos": [], @@ -393647,7 +393298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10433038, "featuredRunMedia": null, "reactionVideos": [], @@ -393680,7 +393331,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 10434474, "featuredRunMedia": null, "reactionVideos": [], @@ -393713,7 +393364,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 10434649, "featuredRunMedia": null, "reactionVideos": [], @@ -393751,7 +393402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 10438845, "featuredRunMedia": null, "reactionVideos": [], @@ -393789,7 +393440,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 10439164, "featuredRunMedia": null, "reactionVideos": [], @@ -393827,7 +393478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 10439275, "featuredRunMedia": null, "reactionVideos": [], @@ -393855,7 +393506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 10439829, "featuredRunMedia": null, "reactionVideos": [], @@ -393881,7 +393532,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 10441333, "featuredRunMedia": null, "reactionVideos": [], @@ -393903,7 +393554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10444132, "featuredRunMedia": null, "reactionVideos": [], @@ -393941,7 +393592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 10445588, "featuredRunMedia": null, "reactionVideos": [], @@ -393979,7 +393630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10446793, "featuredRunMedia": null, "reactionVideos": [], @@ -394012,7 +393663,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10446890, "featuredRunMedia": null, "reactionVideos": [], @@ -394050,7 +393701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 10448780, "featuredRunMedia": null, "reactionVideos": [], @@ -394078,7 +393729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 10449473, "featuredRunMedia": null, "reactionVideos": [], @@ -394106,7 +393757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 10450477, "featuredRunMedia": null, "reactionVideos": [], @@ -394144,7 +393795,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 10452275, "featuredRunMedia": null, "reactionVideos": [], @@ -394166,7 +393817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10456319, "featuredRunMedia": null, "reactionVideos": [], @@ -394194,7 +393845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10460544, "featuredRunMedia": null, "reactionVideos": [], @@ -394216,7 +393867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10460699, "featuredRunMedia": null, "reactionVideos": [], @@ -394249,7 +393900,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "2542", "time": 10462588, "featuredRunMedia": null, "reactionVideos": [], @@ -394277,7 +393928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 10466034, "featuredRunMedia": null, "reactionVideos": [], @@ -394315,7 +393966,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 10468239, "featuredRunMedia": null, "reactionVideos": [], @@ -394353,7 +394004,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10468557, "featuredRunMedia": null, "reactionVideos": [], @@ -394381,7 +394032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10470324, "featuredRunMedia": null, "reactionVideos": [], @@ -394414,7 +394065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10470401, "featuredRunMedia": null, "reactionVideos": [], @@ -394452,7 +394103,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 10471057, "featuredRunMedia": null, "reactionVideos": [], @@ -394490,7 +394141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 10471888, "featuredRunMedia": null, "reactionVideos": [], @@ -394523,7 +394174,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10472092, "featuredRunMedia": null, "reactionVideos": [], @@ -394556,7 +394207,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10480963, "featuredRunMedia": null, "reactionVideos": [], @@ -394578,7 +394229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10481131, "featuredRunMedia": null, "reactionVideos": [], @@ -394616,7 +394267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 10482070, "featuredRunMedia": null, "reactionVideos": [], @@ -394654,7 +394305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 10482690, "featuredRunMedia": null, "reactionVideos": [], @@ -394692,7 +394343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 10483342, "featuredRunMedia": null, "reactionVideos": [], @@ -394720,7 +394371,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 10484151, "featuredRunMedia": null, "reactionVideos": [], @@ -394748,7 +394399,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10484574, "featuredRunMedia": null, "reactionVideos": [], @@ -394776,7 +394427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10487706, "featuredRunMedia": null, "reactionVideos": [], @@ -394804,7 +394455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10489258, "featuredRunMedia": null, "reactionVideos": [], @@ -394832,7 +394483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 10490765, "featuredRunMedia": null, "reactionVideos": [], @@ -394860,7 +394511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10490776, "featuredRunMedia": null, "reactionVideos": [], @@ -394898,7 +394549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 10492469, "featuredRunMedia": null, "reactionVideos": [], @@ -394931,7 +394582,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 10493294, "featuredRunMedia": null, "reactionVideos": [], @@ -394969,7 +394620,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 10493995, "featuredRunMedia": null, "reactionVideos": [], @@ -395007,7 +394658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10494484, "featuredRunMedia": null, "reactionVideos": [], @@ -395035,7 +394686,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10494815, "featuredRunMedia": null, "reactionVideos": [], @@ -395073,7 +394724,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10495555, "featuredRunMedia": null, "reactionVideos": [], @@ -395106,7 +394757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10495783, "featuredRunMedia": null, "reactionVideos": [], @@ -395139,7 +394790,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 10496285, "featuredRunMedia": null, "reactionVideos": [], @@ -395177,7 +394828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10499471, "featuredRunMedia": null, "reactionVideos": [], @@ -395215,7 +394866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 10500259, "featuredRunMedia": null, "reactionVideos": [], @@ -395243,7 +394894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 10501196, "featuredRunMedia": null, "reactionVideos": [], @@ -395281,7 +394932,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10501435, "featuredRunMedia": null, "reactionVideos": [], @@ -395319,7 +394970,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10504329, "featuredRunMedia": null, "reactionVideos": [], @@ -395357,7 +395008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10509082, "featuredRunMedia": null, "reactionVideos": [], @@ -395395,7 +395046,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10510259, "featuredRunMedia": null, "reactionVideos": [], @@ -395423,7 +395074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10510881, "featuredRunMedia": null, "reactionVideos": [], @@ -395461,7 +395112,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 10516977, "featuredRunMedia": null, "reactionVideos": [], @@ -395499,7 +395150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 10517237, "featuredRunMedia": null, "reactionVideos": [], @@ -395527,7 +395178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 10517237, "featuredRunMedia": null, "reactionVideos": [], @@ -395565,7 +395216,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 10518284, "featuredRunMedia": null, "reactionVideos": [], @@ -395593,7 +395244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 10520163, "featuredRunMedia": null, "reactionVideos": [], @@ -395621,7 +395272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 10521089, "featuredRunMedia": null, "reactionVideos": [], @@ -395659,7 +395310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 10522234, "featuredRunMedia": null, "reactionVideos": [], @@ -395697,7 +395348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10524581, "featuredRunMedia": null, "reactionVideos": [], @@ -395735,7 +395386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 10525270, "featuredRunMedia": null, "reactionVideos": [], @@ -395768,7 +395419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 10527181, "featuredRunMedia": null, "reactionVideos": [], @@ -395806,7 +395457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 286, + "teamId": "2546", "time": 10527517, "featuredRunMedia": null, "reactionVideos": [], @@ -395844,7 +395495,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10528707, "featuredRunMedia": null, "reactionVideos": [], @@ -395872,7 +395523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10529287, "featuredRunMedia": null, "reactionVideos": [], @@ -395910,7 +395561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 10531837, "featuredRunMedia": null, "reactionVideos": [], @@ -395948,7 +395599,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10532771, "featuredRunMedia": null, "reactionVideos": [], @@ -395986,7 +395637,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 10535684, "featuredRunMedia": null, "reactionVideos": [], @@ -396024,7 +395675,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10536430, "featuredRunMedia": null, "reactionVideos": [], @@ -396052,7 +395703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 10544677, "featuredRunMedia": null, "reactionVideos": [], @@ -396090,7 +395741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10551371, "featuredRunMedia": null, "reactionVideos": [], @@ -396118,7 +395769,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10555061, "featuredRunMedia": null, "reactionVideos": [], @@ -396146,7 +395797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 10555537, "featuredRunMedia": null, "reactionVideos": [], @@ -396184,7 +395835,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10555615, "featuredRunMedia": null, "reactionVideos": [], @@ -396222,7 +395873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10558483, "featuredRunMedia": null, "reactionVideos": [], @@ -396250,7 +395901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10559198, "featuredRunMedia": null, "reactionVideos": [], @@ -396288,7 +395939,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 107, + "teamId": "1952", "time": 10559392, "featuredRunMedia": null, "reactionVideos": [], @@ -396316,7 +395967,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10559897, "featuredRunMedia": null, "reactionVideos": [], @@ -396354,7 +396005,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 77, + "teamId": "1346", "time": 10561653, "featuredRunMedia": null, "reactionVideos": [], @@ -396392,7 +396043,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 10561946, "featuredRunMedia": null, "reactionVideos": [], @@ -396430,7 +396081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 10562481, "featuredRunMedia": null, "reactionVideos": [], @@ -396458,7 +396109,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 10562859, "featuredRunMedia": null, "reactionVideos": [], @@ -396496,7 +396147,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 10562901, "featuredRunMedia": null, "reactionVideos": [], @@ -396534,7 +396185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10563001, "featuredRunMedia": null, "reactionVideos": [], @@ -396572,7 +396223,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 10563361, "featuredRunMedia": null, "reactionVideos": [], @@ -396600,7 +396251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 10564030, "featuredRunMedia": null, "reactionVideos": [], @@ -396638,7 +396289,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 10566980, "featuredRunMedia": null, "reactionVideos": [], @@ -396676,7 +396327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10567767, "featuredRunMedia": null, "reactionVideos": [], @@ -396704,7 +396355,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "2550", "time": 10569325, "featuredRunMedia": null, "reactionVideos": [], @@ -396732,7 +396383,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 10572034, "featuredRunMedia": null, "reactionVideos": [], @@ -396770,7 +396421,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 10573349, "featuredRunMedia": null, "reactionVideos": [], @@ -396798,7 +396449,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 10575905, "featuredRunMedia": null, "reactionVideos": [], @@ -396826,7 +396477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 10578454, "featuredRunMedia": null, "reactionVideos": [], @@ -396854,7 +396505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 10578670, "featuredRunMedia": null, "reactionVideos": [], @@ -396882,7 +396533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10579262, "featuredRunMedia": null, "reactionVideos": [], @@ -396904,7 +396555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10581725, "featuredRunMedia": null, "reactionVideos": [], @@ -396942,7 +396593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10582516, "featuredRunMedia": null, "reactionVideos": [], @@ -396980,7 +396631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 10586849, "featuredRunMedia": null, "reactionVideos": [], @@ -397008,7 +396659,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 10587137, "featuredRunMedia": null, "reactionVideos": [], @@ -397036,7 +396687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 10588089, "featuredRunMedia": null, "reactionVideos": [], @@ -397074,7 +396725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10589213, "featuredRunMedia": null, "reactionVideos": [], @@ -397102,7 +396753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10589505, "featuredRunMedia": null, "reactionVideos": [], @@ -397140,7 +396791,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 10590010, "featuredRunMedia": null, "reactionVideos": [], @@ -397178,7 +396829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10591717, "featuredRunMedia": null, "reactionVideos": [], @@ -397216,7 +396867,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10592369, "featuredRunMedia": null, "reactionVideos": [], @@ -397249,7 +396900,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 10592799, "featuredRunMedia": null, "reactionVideos": [], @@ -397287,7 +396938,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 10593100, "featuredRunMedia": null, "reactionVideos": [], @@ -397325,7 +396976,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 10595724, "featuredRunMedia": null, "reactionVideos": [], @@ -397363,7 +397014,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 10595770, "featuredRunMedia": null, "reactionVideos": [], @@ -397391,7 +397042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10599193, "featuredRunMedia": null, "reactionVideos": [], @@ -397429,7 +397080,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 10602455, "featuredRunMedia": null, "reactionVideos": [], @@ -397467,7 +397118,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 10604212, "featuredRunMedia": null, "reactionVideos": [], @@ -397495,7 +397146,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 10607566, "featuredRunMedia": null, "reactionVideos": [], @@ -397523,7 +397174,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 10608353, "featuredRunMedia": null, "reactionVideos": [], @@ -397561,7 +397212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10609997, "featuredRunMedia": null, "reactionVideos": [], @@ -397589,7 +397240,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 10611302, "featuredRunMedia": null, "reactionVideos": [], @@ -397622,7 +397273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 10611923, "featuredRunMedia": null, "reactionVideos": [], @@ -397650,7 +397301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 10613094, "featuredRunMedia": null, "reactionVideos": [], @@ -397683,7 +397334,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 10614283, "featuredRunMedia": null, "reactionVideos": [], @@ -397721,7 +397372,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 10615964, "featuredRunMedia": null, "reactionVideos": [], @@ -397754,7 +397405,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 10616344, "featuredRunMedia": null, "reactionVideos": [], @@ -397792,7 +397443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 10616430, "featuredRunMedia": null, "reactionVideos": [], @@ -397820,7 +397471,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10617497, "featuredRunMedia": null, "reactionVideos": [], @@ -397846,7 +397497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 10621217, "featuredRunMedia": null, "reactionVideos": [], @@ -397884,7 +397535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10622563, "featuredRunMedia": null, "reactionVideos": [], @@ -397922,7 +397573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 10624588, "featuredRunMedia": null, "reactionVideos": [], @@ -397960,7 +397611,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 232, + "teamId": "1743", "time": 10628473, "featuredRunMedia": null, "reactionVideos": [], @@ -397998,7 +397649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 10628962, "featuredRunMedia": null, "reactionVideos": [], @@ -398026,7 +397677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 10630811, "featuredRunMedia": null, "reactionVideos": [], @@ -398054,7 +397705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "1643", "time": 10631725, "featuredRunMedia": null, "reactionVideos": [], @@ -398082,7 +397733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 10633947, "featuredRunMedia": null, "reactionVideos": [], @@ -398110,7 +397761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 76, + "teamId": "2549", "time": 10634337, "featuredRunMedia": null, "reactionVideos": [], @@ -398148,7 +397799,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 10635382, "featuredRunMedia": null, "reactionVideos": [], @@ -398181,7 +397832,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10635642, "featuredRunMedia": null, "reactionVideos": [], @@ -398203,7 +397854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 10637538, "featuredRunMedia": null, "reactionVideos": [], @@ -398231,7 +397882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10643035, "featuredRunMedia": null, "reactionVideos": [], @@ -398269,7 +397920,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 10645061, "featuredRunMedia": null, "reactionVideos": [], @@ -398307,7 +397958,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 10646988, "featuredRunMedia": null, "reactionVideos": [], @@ -398345,7 +397996,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 10649579, "featuredRunMedia": null, "reactionVideos": [], @@ -398378,7 +398029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "2542", "time": 10650625, "featuredRunMedia": null, "reactionVideos": [], @@ -398416,7 +398067,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 10651376, "featuredRunMedia": null, "reactionVideos": [], @@ -398449,7 +398100,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 10652141, "featuredRunMedia": null, "reactionVideos": [], @@ -398477,7 +398128,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 10654972, "featuredRunMedia": null, "reactionVideos": [], @@ -398505,7 +398156,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10655370, "featuredRunMedia": null, "reactionVideos": [], @@ -398543,7 +398194,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10655769, "featuredRunMedia": null, "reactionVideos": [], @@ -398571,7 +398222,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10658088, "featuredRunMedia": null, "reactionVideos": [], @@ -398609,7 +398260,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 10658776, "featuredRunMedia": null, "reactionVideos": [], @@ -398637,7 +398288,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 10659935, "featuredRunMedia": null, "reactionVideos": [], @@ -398665,7 +398316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 10660286, "featuredRunMedia": null, "reactionVideos": [], @@ -398698,7 +398349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10661639, "featuredRunMedia": null, "reactionVideos": [], @@ -398726,7 +398377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 10666014, "featuredRunMedia": null, "reactionVideos": [], @@ -398754,7 +398405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 10666964, "featuredRunMedia": null, "reactionVideos": [], @@ -398787,7 +398438,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10667038, "featuredRunMedia": null, "reactionVideos": [], @@ -398825,7 +398476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 10668495, "featuredRunMedia": null, "reactionVideos": [], @@ -398863,7 +398514,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10668888, "featuredRunMedia": null, "reactionVideos": [], @@ -398891,7 +398542,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 10669292, "featuredRunMedia": null, "reactionVideos": [], @@ -398919,7 +398570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 10669412, "featuredRunMedia": null, "reactionVideos": [], @@ -398957,7 +398608,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 10669619, "featuredRunMedia": null, "reactionVideos": [], @@ -398990,7 +398641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 10669703, "featuredRunMedia": null, "reactionVideos": [], @@ -399028,7 +398679,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10670582, "featuredRunMedia": null, "reactionVideos": [], @@ -399061,7 +398712,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 10671613, "featuredRunMedia": null, "reactionVideos": [], @@ -399099,7 +398750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 10672264, "featuredRunMedia": null, "reactionVideos": [], @@ -399127,7 +398778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 10674399, "featuredRunMedia": null, "reactionVideos": [], @@ -399155,7 +398806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "2154", "time": 10674772, "featuredRunMedia": null, "reactionVideos": [], @@ -399193,7 +398844,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 10674907, "featuredRunMedia": null, "reactionVideos": [], @@ -399221,7 +398872,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 10678194, "featuredRunMedia": null, "reactionVideos": [], @@ -399259,7 +398910,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 10678779, "featuredRunMedia": null, "reactionVideos": [], @@ -399287,7 +398938,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 10679791, "featuredRunMedia": null, "reactionVideos": [], @@ -399315,7 +398966,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10683311, "featuredRunMedia": null, "reactionVideos": [], @@ -399353,7 +399004,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10683637, "featuredRunMedia": null, "reactionVideos": [], @@ -399386,7 +399037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 10686252, "featuredRunMedia": null, "reactionVideos": [], @@ -399419,7 +399070,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10686443, "featuredRunMedia": null, "reactionVideos": [], @@ -399452,7 +399103,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10686599, "featuredRunMedia": null, "reactionVideos": [], @@ -399490,7 +399141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 10687481, "featuredRunMedia": null, "reactionVideos": [], @@ -399518,7 +399169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 10687503, "featuredRunMedia": null, "reactionVideos": [], @@ -399546,7 +399197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 10695403, "featuredRunMedia": null, "reactionVideos": [], @@ -399574,7 +399225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 10695706, "featuredRunMedia": null, "reactionVideos": [], @@ -399602,7 +399253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 10697198, "featuredRunMedia": null, "reactionVideos": [], @@ -399640,7 +399291,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 10698716, "featuredRunMedia": null, "reactionVideos": [], @@ -399668,7 +399319,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 10700524, "featuredRunMedia": null, "reactionVideos": [], @@ -399696,7 +399347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 100, + "teamId": "2947", "time": 10703041, "featuredRunMedia": null, "reactionVideos": [], @@ -399724,7 +399375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10704984, "featuredRunMedia": null, "reactionVideos": [], @@ -399762,7 +399413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10705224, "featuredRunMedia": null, "reactionVideos": [], @@ -399800,7 +399451,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 10705474, "featuredRunMedia": null, "reactionVideos": [], @@ -399828,7 +399479,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 10706696, "featuredRunMedia": null, "reactionVideos": [], @@ -399866,7 +399517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 10706945, "featuredRunMedia": null, "reactionVideos": [], @@ -399894,7 +399545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10706978, "featuredRunMedia": null, "reactionVideos": [], @@ -399932,7 +399583,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "2148", "time": 10707340, "featuredRunMedia": null, "reactionVideos": [], @@ -399970,7 +399621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 10707787, "featuredRunMedia": null, "reactionVideos": [], @@ -400008,7 +399659,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 10707879, "featuredRunMedia": null, "reactionVideos": [], @@ -400041,7 +399692,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10708073, "featuredRunMedia": null, "reactionVideos": [], @@ -400079,7 +399730,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10709815, "featuredRunMedia": null, "reactionVideos": [], @@ -400117,7 +399768,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 10710842, "featuredRunMedia": null, "reactionVideos": [], @@ -400150,7 +399801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 10710960, "featuredRunMedia": null, "reactionVideos": [], @@ -400178,7 +399829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 10711303, "featuredRunMedia": null, "reactionVideos": [], @@ -400216,7 +399867,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 10712248, "featuredRunMedia": null, "reactionVideos": [], @@ -400254,7 +399905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 10712262, "featuredRunMedia": null, "reactionVideos": [], @@ -400287,7 +399938,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 10712887, "featuredRunMedia": null, "reactionVideos": [], @@ -400320,7 +399971,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 10714022, "featuredRunMedia": null, "reactionVideos": [], @@ -400348,7 +399999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 10714549, "featuredRunMedia": null, "reactionVideos": [], @@ -400376,7 +400027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 10716485, "featuredRunMedia": null, "reactionVideos": [], @@ -400409,7 +400060,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 10716555, "featuredRunMedia": null, "reactionVideos": [], @@ -400447,7 +400098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 10717222, "featuredRunMedia": null, "reactionVideos": [], @@ -400475,7 +400126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10718010, "featuredRunMedia": null, "reactionVideos": [], @@ -400508,7 +400159,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 10720407, "featuredRunMedia": null, "reactionVideos": [], @@ -400536,7 +400187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 10720836, "featuredRunMedia": null, "reactionVideos": [], @@ -400574,7 +400225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 10721854, "featuredRunMedia": null, "reactionVideos": [], @@ -400612,7 +400263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 10722631, "featuredRunMedia": null, "reactionVideos": [], @@ -400650,7 +400301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 10724157, "featuredRunMedia": null, "reactionVideos": [], @@ -400683,7 +400334,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 10725312, "featuredRunMedia": null, "reactionVideos": [], @@ -400711,7 +400362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 10726330, "featuredRunMedia": null, "reactionVideos": [], @@ -400749,7 +400400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10726367, "featuredRunMedia": null, "reactionVideos": [], @@ -400777,7 +400428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 10726674, "featuredRunMedia": null, "reactionVideos": [], @@ -400815,7 +400466,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10730466, "featuredRunMedia": null, "reactionVideos": [], @@ -400853,7 +400504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10731248, "featuredRunMedia": null, "reactionVideos": [], @@ -400881,7 +400532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10731272, "featuredRunMedia": null, "reactionVideos": [], @@ -400919,7 +400570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 10734596, "featuredRunMedia": null, "reactionVideos": [], @@ -400947,7 +400598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10736475, "featuredRunMedia": null, "reactionVideos": [], @@ -400975,7 +400626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 10736636, "featuredRunMedia": null, "reactionVideos": [], @@ -401013,7 +400664,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10737185, "featuredRunMedia": null, "reactionVideos": [], @@ -401051,7 +400702,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 10737288, "featuredRunMedia": null, "reactionVideos": [], @@ -401084,7 +400735,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10738296, "featuredRunMedia": null, "reactionVideos": [], @@ -401122,7 +400773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10740228, "featuredRunMedia": null, "reactionVideos": [], @@ -401160,7 +400811,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 10740770, "featuredRunMedia": null, "reactionVideos": [], @@ -401198,7 +400849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10742366, "featuredRunMedia": null, "reactionVideos": [], @@ -401226,7 +400877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 10742381, "featuredRunMedia": null, "reactionVideos": [], @@ -401264,7 +400915,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 10743061, "featuredRunMedia": null, "reactionVideos": [], @@ -401292,7 +400943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 66, + "teamId": "2550", "time": 10743100, "featuredRunMedia": null, "reactionVideos": [], @@ -401325,7 +400976,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 10745025, "featuredRunMedia": null, "reactionVideos": [], @@ -401353,7 +401004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 147, + "teamId": "2042", "time": 10748753, "featuredRunMedia": null, "reactionVideos": [], @@ -401386,7 +401037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 10750266, "featuredRunMedia": null, "reactionVideos": [], @@ -401414,7 +401065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 10754156, "featuredRunMedia": null, "reactionVideos": [], @@ -401447,7 +401098,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 10754591, "featuredRunMedia": null, "reactionVideos": [], @@ -401485,7 +401136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10754750, "featuredRunMedia": null, "reactionVideos": [], @@ -401523,7 +401174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 10755939, "featuredRunMedia": null, "reactionVideos": [], @@ -401561,7 +401212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 10761313, "featuredRunMedia": null, "reactionVideos": [], @@ -401594,7 +401245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "2542", "time": 10761365, "featuredRunMedia": null, "reactionVideos": [], @@ -401632,7 +401283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10761388, "featuredRunMedia": null, "reactionVideos": [], @@ -401670,7 +401321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 10761450, "featuredRunMedia": null, "reactionVideos": [], @@ -401708,7 +401359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 10764598, "featuredRunMedia": null, "reactionVideos": [], @@ -401741,7 +401392,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 10766716, "featuredRunMedia": null, "reactionVideos": [], @@ -401769,7 +401420,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 10769329, "featuredRunMedia": null, "reactionVideos": [], @@ -401807,7 +401458,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 10769425, "featuredRunMedia": null, "reactionVideos": [], @@ -401845,7 +401496,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 10769723, "featuredRunMedia": null, "reactionVideos": [], @@ -401883,7 +401534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10769850, "featuredRunMedia": null, "reactionVideos": [], @@ -401911,7 +401562,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 311, + "teamId": "3055", "time": 10770633, "featuredRunMedia": null, "reactionVideos": [], @@ -401949,7 +401600,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 10771370, "featuredRunMedia": null, "reactionVideos": [], @@ -401977,7 +401628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 10772446, "featuredRunMedia": null, "reactionVideos": [], @@ -402015,7 +401666,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10774361, "featuredRunMedia": null, "reactionVideos": [], @@ -402048,7 +401699,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "3249", "time": 10774597, "featuredRunMedia": null, "reactionVideos": [], @@ -402081,7 +401732,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 10774798, "featuredRunMedia": null, "reactionVideos": [], @@ -402114,7 +401765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 10775338, "featuredRunMedia": null, "reactionVideos": [], @@ -402152,7 +401803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 10775382, "featuredRunMedia": null, "reactionVideos": [], @@ -402190,7 +401841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10776338, "featuredRunMedia": null, "reactionVideos": [], @@ -402218,7 +401869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10777051, "featuredRunMedia": null, "reactionVideos": [], @@ -402246,7 +401897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 10777470, "featuredRunMedia": null, "reactionVideos": [], @@ -402284,7 +401935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 10777541, "featuredRunMedia": null, "reactionVideos": [], @@ -402322,7 +401973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 10779053, "featuredRunMedia": null, "reactionVideos": [], @@ -402360,7 +402011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 10780438, "featuredRunMedia": null, "reactionVideos": [], @@ -402398,7 +402049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 10780652, "featuredRunMedia": null, "reactionVideos": [], @@ -402420,7 +402071,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10782972, "featuredRunMedia": null, "reactionVideos": [], @@ -402448,7 +402099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 10787262, "featuredRunMedia": null, "reactionVideos": [], @@ -402481,7 +402132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 10789927, "featuredRunMedia": null, "reactionVideos": [], @@ -402519,7 +402170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 10792080, "featuredRunMedia": null, "reactionVideos": [], @@ -402547,7 +402198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 10792368, "featuredRunMedia": null, "reactionVideos": [], @@ -402580,7 +402231,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 10792879, "featuredRunMedia": null, "reactionVideos": [], @@ -402618,7 +402269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 10793618, "featuredRunMedia": null, "reactionVideos": [], @@ -402651,7 +402302,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 10794864, "featuredRunMedia": null, "reactionVideos": [], @@ -402679,7 +402330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10798225, "featuredRunMedia": null, "reactionVideos": [], @@ -402717,7 +402368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10798479, "featuredRunMedia": null, "reactionVideos": [], @@ -402755,7 +402406,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 10798721, "featuredRunMedia": null, "reactionVideos": [], @@ -402793,7 +402444,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 10801860, "featuredRunMedia": null, "reactionVideos": [], @@ -402826,7 +402477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 10803817, "featuredRunMedia": null, "reactionVideos": [], @@ -402854,7 +402505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 10806814, "featuredRunMedia": null, "reactionVideos": [], @@ -402892,7 +402543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10806875, "featuredRunMedia": null, "reactionVideos": [], @@ -402930,7 +402581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10807773, "featuredRunMedia": null, "reactionVideos": [], @@ -402968,7 +402619,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 10808762, "featuredRunMedia": null, "reactionVideos": [], @@ -402996,7 +402647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10808998, "featuredRunMedia": null, "reactionVideos": [], @@ -403034,7 +402685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 10813301, "featuredRunMedia": null, "reactionVideos": [], @@ -403062,7 +402713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 10813469, "featuredRunMedia": null, "reactionVideos": [], @@ -403090,7 +402741,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10815221, "featuredRunMedia": null, "reactionVideos": [], @@ -403123,7 +402774,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 10819819, "featuredRunMedia": null, "reactionVideos": [], @@ -403161,7 +402812,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 10819886, "featuredRunMedia": null, "reactionVideos": [], @@ -403199,7 +402850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 10820851, "featuredRunMedia": null, "reactionVideos": [], @@ -403237,7 +402888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 10820910, "featuredRunMedia": null, "reactionVideos": [], @@ -403265,7 +402916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10825679, "featuredRunMedia": null, "reactionVideos": [], @@ -403303,7 +402954,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 10826692, "featuredRunMedia": null, "reactionVideos": [], @@ -403331,7 +402982,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 10828426, "featuredRunMedia": null, "reactionVideos": [], @@ -403359,7 +403010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 10828576, "featuredRunMedia": null, "reactionVideos": [], @@ -403397,7 +403048,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 10830325, "featuredRunMedia": null, "reactionVideos": [], @@ -403430,7 +403081,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 10832822, "featuredRunMedia": null, "reactionVideos": [], @@ -403468,7 +403119,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 10834917, "featuredRunMedia": null, "reactionVideos": [], @@ -403506,7 +403157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 10835649, "featuredRunMedia": null, "reactionVideos": [], @@ -403534,7 +403185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 10836195, "featuredRunMedia": null, "reactionVideos": [], @@ -403572,7 +403223,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 10836289, "featuredRunMedia": null, "reactionVideos": [], @@ -403610,7 +403261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 10836720, "featuredRunMedia": null, "reactionVideos": [], @@ -403632,7 +403283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10836922, "featuredRunMedia": null, "reactionVideos": [], @@ -403660,7 +403311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 10842367, "featuredRunMedia": null, "reactionVideos": [], @@ -403693,7 +403344,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "3249", "time": 10844048, "featuredRunMedia": null, "reactionVideos": [], @@ -403731,7 +403382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 256, + "teamId": "2852", "time": 10844195, "featuredRunMedia": null, "reactionVideos": [], @@ -403769,7 +403420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 10844850, "featuredRunMedia": null, "reactionVideos": [], @@ -403802,7 +403453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 10845021, "featuredRunMedia": null, "reactionVideos": [], @@ -403840,7 +403491,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 10845107, "featuredRunMedia": null, "reactionVideos": [], @@ -403873,7 +403524,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 10845364, "featuredRunMedia": null, "reactionVideos": [], @@ -403911,7 +403562,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10845428, "featuredRunMedia": null, "reactionVideos": [], @@ -403949,7 +403600,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 10851441, "featuredRunMedia": null, "reactionVideos": [], @@ -403982,7 +403633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10852978, "featuredRunMedia": null, "reactionVideos": [], @@ -404020,7 +403671,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 10854283, "featuredRunMedia": null, "reactionVideos": [], @@ -404058,7 +403709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10855485, "featuredRunMedia": null, "reactionVideos": [], @@ -404091,7 +403742,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "1145", "time": 10859166, "featuredRunMedia": null, "reactionVideos": [], @@ -404113,7 +403764,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10859570, "featuredRunMedia": null, "reactionVideos": [], @@ -404151,7 +403802,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 11, + "teamId": "1150", "time": 10859644, "featuredRunMedia": null, "reactionVideos": [], @@ -404184,7 +403835,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 10861122, "featuredRunMedia": null, "reactionVideos": [], @@ -404222,7 +403873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 10863151, "featuredRunMedia": null, "reactionVideos": [], @@ -404260,7 +403911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10863398, "featuredRunMedia": null, "reactionVideos": [], @@ -404293,7 +403944,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 10863869, "featuredRunMedia": null, "reactionVideos": [], @@ -404331,7 +403982,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10865528, "featuredRunMedia": null, "reactionVideos": [], @@ -404369,7 +404020,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 10865872, "featuredRunMedia": null, "reactionVideos": [], @@ -404407,7 +404058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 145, + "teamId": "2345", "time": 10870189, "featuredRunMedia": null, "reactionVideos": [], @@ -404445,7 +404096,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 10871723, "featuredRunMedia": null, "reactionVideos": [], @@ -404483,7 +404134,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10871865, "featuredRunMedia": null, "reactionVideos": [], @@ -404511,7 +404162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 10878537, "featuredRunMedia": null, "reactionVideos": [], @@ -404539,7 +404190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10879291, "featuredRunMedia": null, "reactionVideos": [], @@ -404567,7 +404218,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 10880427, "featuredRunMedia": null, "reactionVideos": [], @@ -404600,7 +404251,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 10882760, "featuredRunMedia": null, "reactionVideos": [], @@ -404628,7 +404279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10883320, "featuredRunMedia": null, "reactionVideos": [], @@ -404666,7 +404317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10884048, "featuredRunMedia": null, "reactionVideos": [], @@ -404704,7 +404355,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 10887342, "featuredRunMedia": null, "reactionVideos": [], @@ -404742,7 +404393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10888584, "featuredRunMedia": null, "reactionVideos": [], @@ -404780,7 +404431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 10889991, "featuredRunMedia": null, "reactionVideos": [], @@ -404818,7 +404469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 10890404, "featuredRunMedia": null, "reactionVideos": [], @@ -404846,7 +404497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 10890885, "featuredRunMedia": null, "reactionVideos": [], @@ -404874,7 +404525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 10892471, "featuredRunMedia": null, "reactionVideos": [], @@ -404912,7 +404563,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10892611, "featuredRunMedia": null, "reactionVideos": [], @@ -404950,7 +404601,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10893202, "featuredRunMedia": null, "reactionVideos": [], @@ -404972,7 +404623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 10894203, "featuredRunMedia": null, "reactionVideos": [], @@ -405010,7 +404661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10894277, "featuredRunMedia": null, "reactionVideos": [], @@ -405048,7 +404699,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 10895047, "featuredRunMedia": null, "reactionVideos": [], @@ -405081,7 +404732,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 10895290, "featuredRunMedia": null, "reactionVideos": [], @@ -405114,7 +404765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10895338, "featuredRunMedia": null, "reactionVideos": [], @@ -405152,7 +404803,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10895830, "featuredRunMedia": null, "reactionVideos": [], @@ -405180,7 +404831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 10896714, "featuredRunMedia": null, "reactionVideos": [], @@ -405213,7 +404864,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10897520, "featuredRunMedia": null, "reactionVideos": [], @@ -405251,7 +404902,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 10898034, "featuredRunMedia": null, "reactionVideos": [], @@ -405284,7 +404935,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 249, + "teamId": "2354", "time": 10898378, "featuredRunMedia": null, "reactionVideos": [], @@ -405312,7 +404963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 10901120, "featuredRunMedia": null, "reactionVideos": [], @@ -405350,7 +405001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 10903489, "featuredRunMedia": null, "reactionVideos": [], @@ -405378,7 +405029,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10904207, "featuredRunMedia": null, "reactionVideos": [], @@ -405411,7 +405062,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 10904884, "featuredRunMedia": null, "reactionVideos": [], @@ -405449,7 +405100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10904899, "featuredRunMedia": null, "reactionVideos": [], @@ -405487,7 +405138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 10905977, "featuredRunMedia": null, "reactionVideos": [], @@ -405520,7 +405171,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 10906450, "featuredRunMedia": null, "reactionVideos": [], @@ -405558,7 +405209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 10907640, "featuredRunMedia": null, "reactionVideos": [], @@ -405586,7 +405237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 10908572, "featuredRunMedia": null, "reactionVideos": [], @@ -405619,7 +405270,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10909801, "featuredRunMedia": null, "reactionVideos": [], @@ -405657,7 +405308,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 10910306, "featuredRunMedia": null, "reactionVideos": [], @@ -405695,7 +405346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 225, + "teamId": "2544", "time": 10913017, "featuredRunMedia": null, "reactionVideos": [], @@ -405733,7 +405384,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 10914337, "featuredRunMedia": null, "reactionVideos": [], @@ -405771,7 +405422,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 10915484, "featuredRunMedia": null, "reactionVideos": [], @@ -405804,7 +405455,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10917970, "featuredRunMedia": null, "reactionVideos": [], @@ -405842,7 +405493,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 10918192, "featuredRunMedia": null, "reactionVideos": [], @@ -405870,7 +405521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 10920948, "featuredRunMedia": null, "reactionVideos": [], @@ -405908,7 +405559,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10921447, "featuredRunMedia": null, "reactionVideos": [], @@ -405941,7 +405592,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10922441, "featuredRunMedia": null, "reactionVideos": [], @@ -405979,7 +405630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10923801, "featuredRunMedia": null, "reactionVideos": [], @@ -406007,7 +405658,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 10924143, "featuredRunMedia": null, "reactionVideos": [], @@ -406045,7 +405696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 10925154, "featuredRunMedia": null, "reactionVideos": [], @@ -406078,7 +405729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 10926401, "featuredRunMedia": null, "reactionVideos": [], @@ -406106,7 +405757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 10927697, "featuredRunMedia": null, "reactionVideos": [], @@ -406139,7 +405790,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 10928373, "featuredRunMedia": null, "reactionVideos": [], @@ -406167,7 +405818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 10928594, "featuredRunMedia": null, "reactionVideos": [], @@ -406200,7 +405851,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "1649", "time": 10928628, "featuredRunMedia": null, "reactionVideos": [], @@ -406238,7 +405889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 10928845, "featuredRunMedia": null, "reactionVideos": [], @@ -406276,7 +405927,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10929098, "featuredRunMedia": null, "reactionVideos": [], @@ -406314,7 +405965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 10930014, "featuredRunMedia": null, "reactionVideos": [], @@ -406352,7 +406003,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 10930533, "featuredRunMedia": null, "reactionVideos": [], @@ -406385,7 +406036,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 10930969, "featuredRunMedia": null, "reactionVideos": [], @@ -406413,7 +406064,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 10931022, "featuredRunMedia": null, "reactionVideos": [], @@ -406451,7 +406102,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 10931219, "featuredRunMedia": null, "reactionVideos": [], @@ -406489,7 +406140,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 10931746, "featuredRunMedia": null, "reactionVideos": [], @@ -406527,7 +406178,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 10931774, "featuredRunMedia": null, "reactionVideos": [], @@ -406565,7 +406216,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 10932857, "featuredRunMedia": null, "reactionVideos": [], @@ -406593,7 +406244,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 10933321, "featuredRunMedia": null, "reactionVideos": [], @@ -406626,7 +406277,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 10934037, "featuredRunMedia": null, "reactionVideos": [], @@ -406664,7 +406315,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 10934122, "featuredRunMedia": null, "reactionVideos": [], @@ -406692,7 +406343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 10934868, "featuredRunMedia": null, "reactionVideos": [], @@ -406730,7 +406381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10938495, "featuredRunMedia": null, "reactionVideos": [], @@ -406758,7 +406409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 10939037, "featuredRunMedia": null, "reactionVideos": [], @@ -406796,7 +406447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 10939571, "featuredRunMedia": null, "reactionVideos": [], @@ -406824,7 +406475,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 10941661, "featuredRunMedia": null, "reactionVideos": [], @@ -406862,7 +406513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10941825, "featuredRunMedia": null, "reactionVideos": [], @@ -406900,7 +406551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 10941936, "featuredRunMedia": null, "reactionVideos": [], @@ -406938,7 +406589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 10942019, "featuredRunMedia": null, "reactionVideos": [], @@ -406976,7 +406627,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 23, + "teamId": "2953", "time": 10943009, "featuredRunMedia": null, "reactionVideos": [], @@ -407014,7 +406665,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "1242", "time": 10947442, "featuredRunMedia": null, "reactionVideos": [], @@ -407047,7 +406698,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 10947488, "featuredRunMedia": null, "reactionVideos": [], @@ -407075,7 +406726,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 10947755, "featuredRunMedia": null, "reactionVideos": [], @@ -407103,7 +406754,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 10949333, "featuredRunMedia": null, "reactionVideos": [], @@ -407141,7 +406792,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 10949566, "featuredRunMedia": null, "reactionVideos": [], @@ -407174,7 +406825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 10957836, "featuredRunMedia": null, "reactionVideos": [], @@ -407202,7 +406853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 10961445, "featuredRunMedia": null, "reactionVideos": [], @@ -407230,7 +406881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 10962028, "featuredRunMedia": null, "reactionVideos": [], @@ -407268,7 +406919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 10963603, "featuredRunMedia": null, "reactionVideos": [], @@ -407306,7 +406957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 16, + "teamId": "3151", "time": 10964162, "featuredRunMedia": null, "reactionVideos": [], @@ -407334,7 +406985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 10964410, "featuredRunMedia": null, "reactionVideos": [], @@ -407367,7 +407018,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 10964841, "featuredRunMedia": null, "reactionVideos": [], @@ -407405,7 +407056,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10968494, "featuredRunMedia": null, "reactionVideos": [], @@ -407438,7 +407089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 10969184, "featuredRunMedia": null, "reactionVideos": [], @@ -407466,7 +407117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 10970738, "featuredRunMedia": null, "reactionVideos": [], @@ -407504,7 +407155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 10974548, "featuredRunMedia": null, "reactionVideos": [], @@ -407532,7 +407183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 10975115, "featuredRunMedia": null, "reactionVideos": [], @@ -407560,7 +407211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 10975556, "featuredRunMedia": null, "reactionVideos": [], @@ -407588,7 +407239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 10976424, "featuredRunMedia": null, "reactionVideos": [], @@ -407616,7 +407267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 10977773, "featuredRunMedia": null, "reactionVideos": [], @@ -407644,7 +407295,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 10980594, "featuredRunMedia": null, "reactionVideos": [], @@ -407682,7 +407333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 10981453, "featuredRunMedia": null, "reactionVideos": [], @@ -407720,7 +407371,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 10982017, "featuredRunMedia": null, "reactionVideos": [], @@ -407748,7 +407399,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 10982377, "featuredRunMedia": null, "reactionVideos": [], @@ -407786,7 +407437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 10983373, "featuredRunMedia": null, "reactionVideos": [], @@ -407814,7 +407465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 10985126, "featuredRunMedia": null, "reactionVideos": [], @@ -407847,7 +407498,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "1649", "time": 10985617, "featuredRunMedia": null, "reactionVideos": [], @@ -407869,7 +407520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 10986036, "featuredRunMedia": null, "reactionVideos": [], @@ -407907,7 +407558,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 10986439, "featuredRunMedia": null, "reactionVideos": [], @@ -407945,7 +407596,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 10987025, "featuredRunMedia": null, "reactionVideos": [], @@ -407978,7 +407629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 10987403, "featuredRunMedia": null, "reactionVideos": [], @@ -408016,7 +407667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 10987720, "featuredRunMedia": null, "reactionVideos": [], @@ -408054,7 +407705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 10988111, "featuredRunMedia": null, "reactionVideos": [], @@ -408092,7 +407743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 126, + "teamId": "1741", "time": 10988942, "featuredRunMedia": null, "reactionVideos": [], @@ -408130,7 +407781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 10990611, "featuredRunMedia": null, "reactionVideos": [], @@ -408158,7 +407809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 10991237, "featuredRunMedia": null, "reactionVideos": [], @@ -408186,7 +407837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 10993158, "featuredRunMedia": null, "reactionVideos": [], @@ -408224,7 +407875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 10993412, "featuredRunMedia": null, "reactionVideos": [], @@ -408252,7 +407903,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 10994196, "featuredRunMedia": null, "reactionVideos": [], @@ -408290,7 +407941,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 10995201, "featuredRunMedia": null, "reactionVideos": [], @@ -408318,7 +407969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 11000045, "featuredRunMedia": null, "reactionVideos": [], @@ -408356,7 +408007,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "3149", "time": 11003349, "featuredRunMedia": null, "reactionVideos": [], @@ -408394,7 +408045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 139, + "teamId": "2441", "time": 11006766, "featuredRunMedia": null, "reactionVideos": [], @@ -408432,7 +408083,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 11006791, "featuredRunMedia": null, "reactionVideos": [], @@ -408470,7 +408121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 11006825, "featuredRunMedia": null, "reactionVideos": [], @@ -408508,7 +408159,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 11007119, "featuredRunMedia": null, "reactionVideos": [], @@ -408541,7 +408192,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 11008452, "featuredRunMedia": null, "reactionVideos": [], @@ -408569,7 +408220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "1949", "time": 11009771, "featuredRunMedia": null, "reactionVideos": [], @@ -408607,7 +408258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11010683, "featuredRunMedia": null, "reactionVideos": [], @@ -408640,7 +408291,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 11010960, "featuredRunMedia": null, "reactionVideos": [], @@ -408678,7 +408329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11014260, "featuredRunMedia": null, "reactionVideos": [], @@ -408711,7 +408362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "3249", "time": 11021257, "featuredRunMedia": null, "reactionVideos": [], @@ -408739,7 +408390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11021820, "featuredRunMedia": null, "reactionVideos": [], @@ -408772,7 +408423,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 11021922, "featuredRunMedia": null, "reactionVideos": [], @@ -408800,7 +408451,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 11028048, "featuredRunMedia": null, "reactionVideos": [], @@ -408838,7 +408489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 11031430, "featuredRunMedia": null, "reactionVideos": [], @@ -408871,7 +408522,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 11031954, "featuredRunMedia": null, "reactionVideos": [], @@ -408909,7 +408560,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 11032065, "featuredRunMedia": null, "reactionVideos": [], @@ -408947,7 +408598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 239, + "teamId": "1655", "time": 11032168, "featuredRunMedia": null, "reactionVideos": [], @@ -408975,7 +408626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 11032665, "featuredRunMedia": null, "reactionVideos": [], @@ -409003,7 +408654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 11032969, "featuredRunMedia": null, "reactionVideos": [], @@ -409036,7 +408687,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 11032969, "featuredRunMedia": null, "reactionVideos": [], @@ -409064,7 +408715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 11036351, "featuredRunMedia": null, "reactionVideos": [], @@ -409102,7 +408753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11036510, "featuredRunMedia": null, "reactionVideos": [], @@ -409140,7 +408791,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 11036571, "featuredRunMedia": null, "reactionVideos": [], @@ -409168,7 +408819,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11036785, "featuredRunMedia": null, "reactionVideos": [], @@ -409196,7 +408847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11037169, "featuredRunMedia": null, "reactionVideos": [], @@ -409229,7 +408880,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "1649", "time": 11038223, "featuredRunMedia": null, "reactionVideos": [], @@ -409267,7 +408918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 11038420, "featuredRunMedia": null, "reactionVideos": [], @@ -409295,7 +408946,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 11040069, "featuredRunMedia": null, "reactionVideos": [], @@ -409333,7 +408984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11043383, "featuredRunMedia": null, "reactionVideos": [], @@ -409361,7 +409012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11045952, "featuredRunMedia": null, "reactionVideos": [], @@ -409394,7 +409045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 11046216, "featuredRunMedia": null, "reactionVideos": [], @@ -409432,7 +409083,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 11050481, "featuredRunMedia": null, "reactionVideos": [], @@ -409470,7 +409121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 11051447, "featuredRunMedia": null, "reactionVideos": [], @@ -409508,7 +409159,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 11051529, "featuredRunMedia": null, "reactionVideos": [], @@ -409546,7 +409197,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 11052267, "featuredRunMedia": null, "reactionVideos": [], @@ -409574,7 +409225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 11052312, "featuredRunMedia": null, "reactionVideos": [], @@ -409602,7 +409253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11052363, "featuredRunMedia": null, "reactionVideos": [], @@ -409630,7 +409281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11052559, "featuredRunMedia": null, "reactionVideos": [], @@ -409668,7 +409319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11052583, "featuredRunMedia": null, "reactionVideos": [], @@ -409696,7 +409347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 11053060, "featuredRunMedia": null, "reactionVideos": [], @@ -409724,7 +409375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 11053754, "featuredRunMedia": null, "reactionVideos": [], @@ -409762,7 +409413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 11054996, "featuredRunMedia": null, "reactionVideos": [], @@ -409795,7 +409446,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 11055007, "featuredRunMedia": null, "reactionVideos": [], @@ -409823,7 +409474,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 11055621, "featuredRunMedia": null, "reactionVideos": [], @@ -409861,7 +409512,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 56, + "teamId": "2956", "time": 11055664, "featuredRunMedia": null, "reactionVideos": [], @@ -409899,7 +409550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 11057259, "featuredRunMedia": null, "reactionVideos": [], @@ -409927,7 +409578,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11059178, "featuredRunMedia": null, "reactionVideos": [], @@ -409965,7 +409616,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 101, + "teamId": "2343", "time": 11059290, "featuredRunMedia": null, "reactionVideos": [], @@ -410003,7 +409654,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11059938, "featuredRunMedia": null, "reactionVideos": [], @@ -410041,7 +409692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 11062567, "featuredRunMedia": null, "reactionVideos": [], @@ -410069,7 +409720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 11062917, "featuredRunMedia": null, "reactionVideos": [], @@ -410107,7 +409758,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 11063002, "featuredRunMedia": null, "reactionVideos": [], @@ -410140,7 +409791,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 11069130, "featuredRunMedia": null, "reactionVideos": [], @@ -410178,7 +409829,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 11069361, "featuredRunMedia": null, "reactionVideos": [], @@ -410216,7 +409867,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 11069620, "featuredRunMedia": null, "reactionVideos": [], @@ -410244,7 +409895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 11069821, "featuredRunMedia": null, "reactionVideos": [], @@ -410277,7 +409928,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 11070567, "featuredRunMedia": null, "reactionVideos": [], @@ -410305,7 +409956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 11071355, "featuredRunMedia": null, "reactionVideos": [], @@ -410343,7 +409994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 11072075, "featuredRunMedia": null, "reactionVideos": [], @@ -410381,7 +410032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 11072756, "featuredRunMedia": null, "reactionVideos": [], @@ -410409,7 +410060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11073595, "featuredRunMedia": null, "reactionVideos": [], @@ -410447,7 +410098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 11076522, "featuredRunMedia": null, "reactionVideos": [], @@ -410485,7 +410136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 11076904, "featuredRunMedia": null, "reactionVideos": [], @@ -410523,7 +410174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 11077718, "featuredRunMedia": null, "reactionVideos": [], @@ -410561,7 +410212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11079852, "featuredRunMedia": null, "reactionVideos": [], @@ -410589,7 +410240,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 11082317, "featuredRunMedia": null, "reactionVideos": [], @@ -410627,7 +410278,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11082627, "featuredRunMedia": null, "reactionVideos": [], @@ -410665,7 +410316,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 11084940, "featuredRunMedia": null, "reactionVideos": [], @@ -410703,7 +410354,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 11086182, "featuredRunMedia": null, "reactionVideos": [], @@ -410731,7 +410382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 11087485, "featuredRunMedia": null, "reactionVideos": [], @@ -410769,7 +410420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 11087782, "featuredRunMedia": null, "reactionVideos": [], @@ -410797,7 +410448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 11090427, "featuredRunMedia": null, "reactionVideos": [], @@ -410825,7 +410476,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 11090664, "featuredRunMedia": null, "reactionVideos": [], @@ -410863,7 +410514,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 11092956, "featuredRunMedia": null, "reactionVideos": [], @@ -410896,7 +410547,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 11093334, "featuredRunMedia": null, "reactionVideos": [], @@ -410934,7 +410585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 11093376, "featuredRunMedia": null, "reactionVideos": [], @@ -410972,7 +410623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11093408, "featuredRunMedia": null, "reactionVideos": [], @@ -410998,7 +410649,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11093692, "featuredRunMedia": null, "reactionVideos": [], @@ -411036,7 +410687,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11093702, "featuredRunMedia": null, "reactionVideos": [], @@ -411069,7 +410720,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 11093847, "featuredRunMedia": null, "reactionVideos": [], @@ -411097,7 +410748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11094824, "featuredRunMedia": null, "reactionVideos": [], @@ -411135,7 +410786,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 11096781, "featuredRunMedia": null, "reactionVideos": [], @@ -411173,7 +410824,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 11097544, "featuredRunMedia": null, "reactionVideos": [], @@ -411201,7 +410852,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11099723, "featuredRunMedia": null, "reactionVideos": [], @@ -411229,7 +410880,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 11102911, "featuredRunMedia": null, "reactionVideos": [], @@ -411267,7 +410918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 11102929, "featuredRunMedia": null, "reactionVideos": [], @@ -411300,7 +410951,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "3249", "time": 11103203, "featuredRunMedia": null, "reactionVideos": [], @@ -411328,7 +410979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 11103659, "featuredRunMedia": null, "reactionVideos": [], @@ -411356,7 +411007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 11104086, "featuredRunMedia": null, "reactionVideos": [], @@ -411394,7 +411045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 11104476, "featuredRunMedia": null, "reactionVideos": [], @@ -411432,7 +411083,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 11105619, "featuredRunMedia": null, "reactionVideos": [], @@ -411470,7 +411121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 11106401, "featuredRunMedia": null, "reactionVideos": [], @@ -411508,7 +411159,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 11107202, "featuredRunMedia": null, "reactionVideos": [], @@ -411541,7 +411192,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 11108856, "featuredRunMedia": null, "reactionVideos": [], @@ -411579,7 +411230,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11111147, "featuredRunMedia": null, "reactionVideos": [], @@ -411617,7 +411268,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 11111602, "featuredRunMedia": null, "reactionVideos": [], @@ -411655,7 +411306,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 11112464, "featuredRunMedia": null, "reactionVideos": [], @@ -411693,7 +411344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11114109, "featuredRunMedia": null, "reactionVideos": [], @@ -411721,7 +411372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11116663, "featuredRunMedia": null, "reactionVideos": [], @@ -411759,7 +411410,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 11117956, "featuredRunMedia": null, "reactionVideos": [], @@ -411797,7 +411448,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 11119316, "featuredRunMedia": null, "reactionVideos": [], @@ -411825,7 +411476,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 11120380, "featuredRunMedia": null, "reactionVideos": [], @@ -411847,7 +411498,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 11121300, "featuredRunMedia": null, "reactionVideos": [], @@ -411875,7 +411526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11121718, "featuredRunMedia": null, "reactionVideos": [], @@ -411913,7 +411564,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 11122516, "featuredRunMedia": null, "reactionVideos": [], @@ -411941,7 +411592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 11125365, "featuredRunMedia": null, "reactionVideos": [], @@ -411969,7 +411620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 11127240, "featuredRunMedia": null, "reactionVideos": [], @@ -412007,7 +411658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 11128072, "featuredRunMedia": null, "reactionVideos": [], @@ -412045,7 +411696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 11128431, "featuredRunMedia": null, "reactionVideos": [], @@ -412083,7 +411734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 11129132, "featuredRunMedia": null, "reactionVideos": [], @@ -412116,7 +411767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 11129555, "featuredRunMedia": null, "reactionVideos": [], @@ -412144,7 +411795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 11133686, "featuredRunMedia": null, "reactionVideos": [], @@ -412172,7 +411823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 11134829, "featuredRunMedia": null, "reactionVideos": [], @@ -412210,7 +411861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11135660, "featuredRunMedia": null, "reactionVideos": [], @@ -412238,7 +411889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11136225, "featuredRunMedia": null, "reactionVideos": [], @@ -412260,7 +411911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 11136987, "featuredRunMedia": null, "reactionVideos": [], @@ -412298,7 +411949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 18, + "teamId": "1146", "time": 11137479, "featuredRunMedia": null, "reactionVideos": [], @@ -412336,7 +411987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 11139721, "featuredRunMedia": null, "reactionVideos": [], @@ -412364,7 +412015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11140000, "featuredRunMedia": null, "reactionVideos": [], @@ -412386,7 +412037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 11141775, "featuredRunMedia": null, "reactionVideos": [], @@ -412424,7 +412075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 11141881, "featuredRunMedia": null, "reactionVideos": [], @@ -412462,7 +412113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 11149308, "featuredRunMedia": null, "reactionVideos": [], @@ -412490,7 +412141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11149792, "featuredRunMedia": null, "reactionVideos": [], @@ -412518,7 +412169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 11149914, "featuredRunMedia": null, "reactionVideos": [], @@ -412556,7 +412207,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 11151234, "featuredRunMedia": null, "reactionVideos": [], @@ -412594,7 +412245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 11152690, "featuredRunMedia": null, "reactionVideos": [], @@ -412632,7 +412283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11154823, "featuredRunMedia": null, "reactionVideos": [], @@ -412654,7 +412305,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 11155008, "featuredRunMedia": null, "reactionVideos": [], @@ -412692,7 +412343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 11155218, "featuredRunMedia": null, "reactionVideos": [], @@ -412725,7 +412376,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 11155243, "featuredRunMedia": null, "reactionVideos": [], @@ -412753,7 +412404,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11155801, "featuredRunMedia": null, "reactionVideos": [], @@ -412791,7 +412442,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 11158565, "featuredRunMedia": null, "reactionVideos": [], @@ -412829,7 +412480,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 11164932, "featuredRunMedia": null, "reactionVideos": [], @@ -412857,7 +412508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "1652", "time": 11164958, "featuredRunMedia": null, "reactionVideos": [], @@ -412895,7 +412546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 11165247, "featuredRunMedia": null, "reactionVideos": [], @@ -412933,7 +412584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 11165400, "featuredRunMedia": null, "reactionVideos": [], @@ -412971,7 +412622,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 11165422, "featuredRunMedia": null, "reactionVideos": [], @@ -412999,7 +412650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11167135, "featuredRunMedia": null, "reactionVideos": [], @@ -413037,7 +412688,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 11168284, "featuredRunMedia": null, "reactionVideos": [], @@ -413075,7 +412726,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 11172160, "featuredRunMedia": null, "reactionVideos": [], @@ -413113,7 +412764,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 11176469, "featuredRunMedia": null, "reactionVideos": [], @@ -413146,7 +412797,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 11177641, "featuredRunMedia": null, "reactionVideos": [], @@ -413184,7 +412835,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11179492, "featuredRunMedia": null, "reactionVideos": [], @@ -413217,7 +412868,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "2352", "time": 11179829, "featuredRunMedia": null, "reactionVideos": [], @@ -413255,7 +412906,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11180714, "featuredRunMedia": null, "reactionVideos": [], @@ -413281,7 +412932,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11180730, "featuredRunMedia": null, "reactionVideos": [], @@ -413309,7 +412960,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11181086, "featuredRunMedia": null, "reactionVideos": [], @@ -413337,7 +412988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11182816, "featuredRunMedia": null, "reactionVideos": [], @@ -413375,7 +413026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 11182900, "featuredRunMedia": null, "reactionVideos": [], @@ -413403,7 +413054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11183673, "featuredRunMedia": null, "reactionVideos": [], @@ -413441,7 +413092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 11187859, "featuredRunMedia": null, "reactionVideos": [], @@ -413479,7 +413130,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11192735, "featuredRunMedia": null, "reactionVideos": [], @@ -413517,7 +413168,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 11193376, "featuredRunMedia": null, "reactionVideos": [], @@ -413555,7 +413206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 11193565, "featuredRunMedia": null, "reactionVideos": [], @@ -413588,7 +413239,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 11193589, "featuredRunMedia": null, "reactionVideos": [], @@ -413626,7 +413277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 11195035, "featuredRunMedia": null, "reactionVideos": [], @@ -413654,7 +413305,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 11198479, "featuredRunMedia": null, "reactionVideos": [], @@ -413692,7 +413343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 11199039, "featuredRunMedia": null, "reactionVideos": [], @@ -413720,7 +413371,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11200435, "featuredRunMedia": null, "reactionVideos": [], @@ -413748,7 +413399,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11200719, "featuredRunMedia": null, "reactionVideos": [], @@ -413786,7 +413437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11203012, "featuredRunMedia": null, "reactionVideos": [], @@ -413814,7 +413465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11208088, "featuredRunMedia": null, "reactionVideos": [], @@ -413842,7 +413493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 11208136, "featuredRunMedia": null, "reactionVideos": [], @@ -413880,7 +413531,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 11209932, "featuredRunMedia": null, "reactionVideos": [], @@ -413908,7 +413559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11210307, "featuredRunMedia": null, "reactionVideos": [], @@ -413946,7 +413597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 11210798, "featuredRunMedia": null, "reactionVideos": [], @@ -413984,7 +413635,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 11211333, "featuredRunMedia": null, "reactionVideos": [], @@ -414012,7 +413663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 105, + "teamId": "1942", "time": 11211897, "featuredRunMedia": null, "reactionVideos": [], @@ -414050,7 +413701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11212102, "featuredRunMedia": null, "reactionVideos": [], @@ -414078,7 +413729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 11214055, "featuredRunMedia": null, "reactionVideos": [], @@ -414111,7 +413762,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11214240, "featuredRunMedia": null, "reactionVideos": [], @@ -414149,7 +413800,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 11217726, "featuredRunMedia": null, "reactionVideos": [], @@ -414187,7 +413838,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 11222209, "featuredRunMedia": null, "reactionVideos": [], @@ -414225,7 +413876,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 11223738, "featuredRunMedia": null, "reactionVideos": [], @@ -414263,7 +413914,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11224087, "featuredRunMedia": null, "reactionVideos": [], @@ -414301,7 +413952,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 303, + "teamId": "2949", "time": 11224916, "featuredRunMedia": null, "reactionVideos": [], @@ -414329,7 +413980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 11225392, "featuredRunMedia": null, "reactionVideos": [], @@ -414367,7 +414018,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11226193, "featuredRunMedia": null, "reactionVideos": [], @@ -414400,7 +414051,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 11227465, "featuredRunMedia": null, "reactionVideos": [], @@ -414438,7 +414089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "2152", "time": 11228623, "featuredRunMedia": null, "reactionVideos": [], @@ -414466,7 +414117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11232016, "featuredRunMedia": null, "reactionVideos": [], @@ -414504,7 +414155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11232156, "featuredRunMedia": null, "reactionVideos": [], @@ -414532,7 +414183,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 11233149, "featuredRunMedia": null, "reactionVideos": [], @@ -414560,7 +414211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 11233652, "featuredRunMedia": null, "reactionVideos": [], @@ -414598,7 +414249,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 298, + "teamId": "1642", "time": 11235354, "featuredRunMedia": null, "reactionVideos": [], @@ -414636,7 +414287,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 11236384, "featuredRunMedia": null, "reactionVideos": [], @@ -414664,7 +414315,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11236585, "featuredRunMedia": null, "reactionVideos": [], @@ -414692,7 +414343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 11236600, "featuredRunMedia": null, "reactionVideos": [], @@ -414720,7 +414371,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11238809, "featuredRunMedia": null, "reactionVideos": [], @@ -414758,7 +414409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11240128, "featuredRunMedia": null, "reactionVideos": [], @@ -414796,7 +414447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 11244100, "featuredRunMedia": null, "reactionVideos": [], @@ -414824,7 +414475,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11244590, "featuredRunMedia": null, "reactionVideos": [], @@ -414857,7 +414508,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 11244634, "featuredRunMedia": null, "reactionVideos": [], @@ -414895,7 +414546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 11249564, "featuredRunMedia": null, "reactionVideos": [], @@ -414933,7 +414584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 11253431, "featuredRunMedia": null, "reactionVideos": [], @@ -414961,7 +414612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11253624, "featuredRunMedia": null, "reactionVideos": [], @@ -414989,7 +414640,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 11254824, "featuredRunMedia": null, "reactionVideos": [], @@ -415027,7 +414678,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 11255601, "featuredRunMedia": null, "reactionVideos": [], @@ -415060,7 +414711,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 11256324, "featuredRunMedia": null, "reactionVideos": [], @@ -415088,7 +414739,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11256863, "featuredRunMedia": null, "reactionVideos": [], @@ -415126,7 +414777,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11257217, "featuredRunMedia": null, "reactionVideos": [], @@ -415164,7 +414815,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 11257844, "featuredRunMedia": null, "reactionVideos": [], @@ -415192,7 +414843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "1652", "time": 11257919, "featuredRunMedia": null, "reactionVideos": [], @@ -415225,7 +414876,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 11257920, "featuredRunMedia": null, "reactionVideos": [], @@ -415263,7 +414914,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 11260650, "featuredRunMedia": null, "reactionVideos": [], @@ -415301,7 +414952,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 11260692, "featuredRunMedia": null, "reactionVideos": [], @@ -415329,7 +414980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 11261096, "featuredRunMedia": null, "reactionVideos": [], @@ -415357,7 +415008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11263164, "featuredRunMedia": null, "reactionVideos": [], @@ -415395,7 +415046,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11265014, "featuredRunMedia": null, "reactionVideos": [], @@ -415423,7 +415074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11267023, "featuredRunMedia": null, "reactionVideos": [], @@ -415451,7 +415102,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11267486, "featuredRunMedia": null, "reactionVideos": [], @@ -415479,7 +415130,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 290, + "teamId": "2845", "time": 11269939, "featuredRunMedia": null, "reactionVideos": [], @@ -415517,7 +415168,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 11270985, "featuredRunMedia": null, "reactionVideos": [], @@ -415545,7 +415196,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 11271087, "featuredRunMedia": null, "reactionVideos": [], @@ -415583,7 +415234,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11272042, "featuredRunMedia": null, "reactionVideos": [], @@ -415611,7 +415262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 11274020, "featuredRunMedia": null, "reactionVideos": [], @@ -415644,7 +415295,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 89, + "teamId": "2652", "time": 11274020, "featuredRunMedia": null, "reactionVideos": [], @@ -415670,7 +415321,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11274124, "featuredRunMedia": null, "reactionVideos": [], @@ -415708,7 +415359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 11278268, "featuredRunMedia": null, "reactionVideos": [], @@ -415741,7 +415392,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 11278597, "featuredRunMedia": null, "reactionVideos": [], @@ -415769,7 +415420,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11278910, "featuredRunMedia": null, "reactionVideos": [], @@ -415795,7 +415446,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 11279587, "featuredRunMedia": null, "reactionVideos": [], @@ -415823,7 +415474,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 11283002, "featuredRunMedia": null, "reactionVideos": [], @@ -415861,7 +415512,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11285284, "featuredRunMedia": null, "reactionVideos": [], @@ -415889,7 +415540,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 11285701, "featuredRunMedia": null, "reactionVideos": [], @@ -415927,7 +415578,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 11286286, "featuredRunMedia": null, "reactionVideos": [], @@ -415965,7 +415616,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 11286710, "featuredRunMedia": null, "reactionVideos": [], @@ -416003,7 +415654,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 11287514, "featuredRunMedia": null, "reactionVideos": [], @@ -416041,7 +415692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 11288866, "featuredRunMedia": null, "reactionVideos": [], @@ -416074,7 +415725,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 11290675, "featuredRunMedia": null, "reactionVideos": [], @@ -416107,7 +415758,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 11290853, "featuredRunMedia": null, "reactionVideos": [], @@ -416145,7 +415796,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11291346, "featuredRunMedia": null, "reactionVideos": [], @@ -416178,7 +415829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 11291992, "featuredRunMedia": null, "reactionVideos": [], @@ -416211,7 +415862,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 11292091, "featuredRunMedia": null, "reactionVideos": [], @@ -416244,7 +415895,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "1145", "time": 11292121, "featuredRunMedia": null, "reactionVideos": [], @@ -416282,7 +415933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 257, + "teamId": "1651", "time": 11292662, "featuredRunMedia": null, "reactionVideos": [], @@ -416320,7 +415971,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11293258, "featuredRunMedia": null, "reactionVideos": [], @@ -416358,7 +416009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11295003, "featuredRunMedia": null, "reactionVideos": [], @@ -416386,7 +416037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 11296715, "featuredRunMedia": null, "reactionVideos": [], @@ -416414,7 +416065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11296958, "featuredRunMedia": null, "reactionVideos": [], @@ -416442,7 +416093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11297375, "featuredRunMedia": null, "reactionVideos": [], @@ -416470,7 +416121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11299115, "featuredRunMedia": null, "reactionVideos": [], @@ -416498,7 +416149,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "2055", "time": 11300254, "featuredRunMedia": null, "reactionVideos": [], @@ -416524,7 +416175,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 346, + "teamId": "1750", "time": 11300997, "featuredRunMedia": null, "reactionVideos": [], @@ -416562,7 +416213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 44, + "teamId": "3154", "time": 11301001, "featuredRunMedia": null, "reactionVideos": [], @@ -416600,7 +416251,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 11302257, "featuredRunMedia": null, "reactionVideos": [], @@ -416628,7 +416279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 11302748, "featuredRunMedia": null, "reactionVideos": [], @@ -416656,7 +416307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11304345, "featuredRunMedia": null, "reactionVideos": [], @@ -416684,7 +416335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 11306505, "featuredRunMedia": null, "reactionVideos": [], @@ -416712,7 +416363,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11307179, "featuredRunMedia": null, "reactionVideos": [], @@ -416750,7 +416401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11310132, "featuredRunMedia": null, "reactionVideos": [], @@ -416778,7 +416429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11310501, "featuredRunMedia": null, "reactionVideos": [], @@ -416816,7 +416467,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11310565, "featuredRunMedia": null, "reactionVideos": [], @@ -416854,7 +416505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 11313330, "featuredRunMedia": null, "reactionVideos": [], @@ -416882,7 +416533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 11314492, "featuredRunMedia": null, "reactionVideos": [], @@ -416920,7 +416571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 11317134, "featuredRunMedia": null, "reactionVideos": [], @@ -416948,7 +416599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 11317267, "featuredRunMedia": null, "reactionVideos": [], @@ -416976,7 +416627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 11321627, "featuredRunMedia": null, "reactionVideos": [], @@ -417004,7 +416655,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11322673, "featuredRunMedia": null, "reactionVideos": [], @@ -417026,7 +416677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 11323524, "featuredRunMedia": null, "reactionVideos": [], @@ -417064,7 +416715,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 11323878, "featuredRunMedia": null, "reactionVideos": [], @@ -417102,7 +416753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 149, + "teamId": "2748", "time": 11324904, "featuredRunMedia": null, "reactionVideos": [], @@ -417135,7 +416786,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 11324920, "featuredRunMedia": null, "reactionVideos": [], @@ -417173,7 +416824,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11325819, "featuredRunMedia": null, "reactionVideos": [], @@ -417206,7 +416857,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 11325870, "featuredRunMedia": null, "reactionVideos": [], @@ -417234,7 +416885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 11326841, "featuredRunMedia": null, "reactionVideos": [], @@ -417272,7 +416923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11328264, "featuredRunMedia": null, "reactionVideos": [], @@ -417310,7 +416961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 57, + "teamId": "2450", "time": 11331261, "featuredRunMedia": null, "reactionVideos": [], @@ -417343,7 +416994,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 11332425, "featuredRunMedia": null, "reactionVideos": [], @@ -417381,7 +417032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 11334871, "featuredRunMedia": null, "reactionVideos": [], @@ -417419,7 +417070,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11336136, "featuredRunMedia": null, "reactionVideos": [], @@ -417447,7 +417098,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 11336582, "featuredRunMedia": null, "reactionVideos": [], @@ -417475,7 +417126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11337531, "featuredRunMedia": null, "reactionVideos": [], @@ -417513,7 +417164,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 11337638, "featuredRunMedia": null, "reactionVideos": [], @@ -417535,7 +417186,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 11337908, "featuredRunMedia": null, "reactionVideos": [], @@ -417573,7 +417224,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11339231, "featuredRunMedia": null, "reactionVideos": [], @@ -417601,7 +417252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 11339761, "featuredRunMedia": null, "reactionVideos": [], @@ -417627,7 +417278,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11340306, "featuredRunMedia": null, "reactionVideos": [], @@ -417660,7 +417311,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 11341802, "featuredRunMedia": null, "reactionVideos": [], @@ -417688,7 +417339,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 11342802, "featuredRunMedia": null, "reactionVideos": [], @@ -417716,7 +417367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 11343351, "featuredRunMedia": null, "reactionVideos": [], @@ -417744,7 +417395,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11343535, "featuredRunMedia": null, "reactionVideos": [], @@ -417782,7 +417433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11344089, "featuredRunMedia": null, "reactionVideos": [], @@ -417820,7 +417471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "2841", "time": 11345180, "featuredRunMedia": null, "reactionVideos": [], @@ -417848,7 +417499,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11347406, "featuredRunMedia": null, "reactionVideos": [], @@ -417870,7 +417521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11353764, "featuredRunMedia": null, "reactionVideos": [], @@ -417903,7 +417554,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11354895, "featuredRunMedia": null, "reactionVideos": [], @@ -417941,7 +417592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 11355138, "featuredRunMedia": null, "reactionVideos": [], @@ -417969,7 +417620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11356050, "featuredRunMedia": null, "reactionVideos": [], @@ -418002,7 +417653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 11356210, "featuredRunMedia": null, "reactionVideos": [], @@ -418030,7 +417681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 11359156, "featuredRunMedia": null, "reactionVideos": [], @@ -418068,7 +417719,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 11362704, "featuredRunMedia": null, "reactionVideos": [], @@ -418106,7 +417757,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11363171, "featuredRunMedia": null, "reactionVideos": [], @@ -418134,7 +417785,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 11365473, "featuredRunMedia": null, "reactionVideos": [], @@ -418172,7 +417823,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 11370415, "featuredRunMedia": null, "reactionVideos": [], @@ -418200,7 +417851,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11370881, "featuredRunMedia": null, "reactionVideos": [], @@ -418238,7 +417889,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11371149, "featuredRunMedia": null, "reactionVideos": [], @@ -418276,7 +417927,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "2148", "time": 11373231, "featuredRunMedia": null, "reactionVideos": [], @@ -418304,7 +417955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 11374311, "featuredRunMedia": null, "reactionVideos": [], @@ -418330,7 +417981,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 336, + "teamId": "3256", "time": 11375126, "featuredRunMedia": null, "reactionVideos": [], @@ -418368,7 +418019,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 11376274, "featuredRunMedia": null, "reactionVideos": [], @@ -418406,7 +418057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 11376474, "featuredRunMedia": null, "reactionVideos": [], @@ -418444,7 +418095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "2545", "time": 11376612, "featuredRunMedia": null, "reactionVideos": [], @@ -418482,7 +418133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 11378596, "featuredRunMedia": null, "reactionVideos": [], @@ -418510,7 +418161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11378682, "featuredRunMedia": null, "reactionVideos": [], @@ -418548,7 +418199,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11379733, "featuredRunMedia": null, "reactionVideos": [], @@ -418581,7 +418232,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 11381701, "featuredRunMedia": null, "reactionVideos": [], @@ -418614,7 +418265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11381844, "featuredRunMedia": null, "reactionVideos": [], @@ -418642,7 +418293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11382790, "featuredRunMedia": null, "reactionVideos": [], @@ -418680,7 +418331,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11385911, "featuredRunMedia": null, "reactionVideos": [], @@ -418708,7 +418359,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 11386077, "featuredRunMedia": null, "reactionVideos": [], @@ -418736,7 +418387,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 11386333, "featuredRunMedia": null, "reactionVideos": [], @@ -418769,7 +418420,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 11387343, "featuredRunMedia": null, "reactionVideos": [], @@ -418797,7 +418448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11389885, "featuredRunMedia": null, "reactionVideos": [], @@ -418825,7 +418476,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 238, + "teamId": "2151", "time": 11391464, "featuredRunMedia": null, "reactionVideos": [], @@ -418863,7 +418514,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 11392223, "featuredRunMedia": null, "reactionVideos": [], @@ -418901,7 +418552,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 11394914, "featuredRunMedia": null, "reactionVideos": [], @@ -418939,7 +418590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 11397845, "featuredRunMedia": null, "reactionVideos": [], @@ -418967,7 +418618,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 11398063, "featuredRunMedia": null, "reactionVideos": [], @@ -419005,7 +418656,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 11398254, "featuredRunMedia": null, "reactionVideos": [], @@ -419043,7 +418694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11399605, "featuredRunMedia": null, "reactionVideos": [], @@ -419071,7 +418722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 11399791, "featuredRunMedia": null, "reactionVideos": [], @@ -419099,7 +418750,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 11400585, "featuredRunMedia": null, "reactionVideos": [], @@ -419137,7 +418788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 11400927, "featuredRunMedia": null, "reactionVideos": [], @@ -419175,7 +418826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 11402005, "featuredRunMedia": null, "reactionVideos": [], @@ -419213,7 +418864,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11404718, "featuredRunMedia": null, "reactionVideos": [], @@ -419241,7 +418892,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 11405049, "featuredRunMedia": null, "reactionVideos": [], @@ -419267,7 +418918,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11405065, "featuredRunMedia": null, "reactionVideos": [], @@ -419305,7 +418956,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 11405884, "featuredRunMedia": null, "reactionVideos": [], @@ -419333,7 +418984,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 11407206, "featuredRunMedia": null, "reactionVideos": [], @@ -419361,7 +419012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11408291, "featuredRunMedia": null, "reactionVideos": [], @@ -419399,7 +419050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11409729, "featuredRunMedia": null, "reactionVideos": [], @@ -419437,7 +419088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 11409821, "featuredRunMedia": null, "reactionVideos": [], @@ -419465,7 +419116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 11410916, "featuredRunMedia": null, "reactionVideos": [], @@ -419503,7 +419154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 11414024, "featuredRunMedia": null, "reactionVideos": [], @@ -419541,7 +419192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 11414473, "featuredRunMedia": null, "reactionVideos": [], @@ -419574,7 +419225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11416951, "featuredRunMedia": null, "reactionVideos": [], @@ -419602,7 +419253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11418243, "featuredRunMedia": null, "reactionVideos": [], @@ -419640,7 +419291,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 11422552, "featuredRunMedia": null, "reactionVideos": [], @@ -419668,7 +419319,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 67, + "teamId": "1154", "time": 11422609, "featuredRunMedia": null, "reactionVideos": [], @@ -419706,7 +419357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 11430935, "featuredRunMedia": null, "reactionVideos": [], @@ -419744,7 +419395,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11431458, "featuredRunMedia": null, "reactionVideos": [], @@ -419782,7 +419433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11433334, "featuredRunMedia": null, "reactionVideos": [], @@ -419815,7 +419466,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 11433660, "featuredRunMedia": null, "reactionVideos": [], @@ -419853,7 +419504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11433976, "featuredRunMedia": null, "reactionVideos": [], @@ -419881,7 +419532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11435610, "featuredRunMedia": null, "reactionVideos": [], @@ -419914,7 +419565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11436959, "featuredRunMedia": null, "reactionVideos": [], @@ -419942,7 +419593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11440166, "featuredRunMedia": null, "reactionVideos": [], @@ -419975,7 +419626,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 11440470, "featuredRunMedia": null, "reactionVideos": [], @@ -420013,7 +419664,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 11440882, "featuredRunMedia": null, "reactionVideos": [], @@ -420041,7 +419692,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 28, + "teamId": "1650", "time": 11441335, "featuredRunMedia": null, "reactionVideos": [], @@ -420069,7 +419720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11441665, "featuredRunMedia": null, "reactionVideos": [], @@ -420095,7 +419746,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11447851, "featuredRunMedia": null, "reactionVideos": [], @@ -420133,7 +419784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 11448354, "featuredRunMedia": null, "reactionVideos": [], @@ -420161,7 +419812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 11449258, "featuredRunMedia": null, "reactionVideos": [], @@ -420199,7 +419850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 11449898, "featuredRunMedia": null, "reactionVideos": [], @@ -420237,7 +419888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 11452731, "featuredRunMedia": null, "reactionVideos": [], @@ -420270,7 +419921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 11453460, "featuredRunMedia": null, "reactionVideos": [], @@ -420298,7 +419949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "3241", "time": 11453767, "featuredRunMedia": null, "reactionVideos": [], @@ -420336,7 +419987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11455402, "featuredRunMedia": null, "reactionVideos": [], @@ -420374,7 +420025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11455638, "featuredRunMedia": null, "reactionVideos": [], @@ -420402,7 +420053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11455719, "featuredRunMedia": null, "reactionVideos": [], @@ -420430,7 +420081,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 11456799, "featuredRunMedia": null, "reactionVideos": [], @@ -420468,7 +420119,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11457929, "featuredRunMedia": null, "reactionVideos": [], @@ -420496,7 +420147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11458337, "featuredRunMedia": null, "reactionVideos": [], @@ -420524,7 +420175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11458771, "featuredRunMedia": null, "reactionVideos": [], @@ -420552,7 +420203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11460342, "featuredRunMedia": null, "reactionVideos": [], @@ -420580,7 +420231,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 11460549, "featuredRunMedia": null, "reactionVideos": [], @@ -420608,7 +420259,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11461068, "featuredRunMedia": null, "reactionVideos": [], @@ -420636,7 +420287,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 11462561, "featuredRunMedia": null, "reactionVideos": [], @@ -420674,7 +420325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 11463505, "featuredRunMedia": null, "reactionVideos": [], @@ -420707,7 +420358,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11464195, "featuredRunMedia": null, "reactionVideos": [], @@ -420745,7 +420396,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 11467092, "featuredRunMedia": null, "reactionVideos": [], @@ -420778,7 +420429,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 11469372, "featuredRunMedia": null, "reactionVideos": [], @@ -420816,7 +420467,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 11470887, "featuredRunMedia": null, "reactionVideos": [], @@ -420849,7 +420500,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 11471847, "featuredRunMedia": null, "reactionVideos": [], @@ -420877,7 +420528,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11472930, "featuredRunMedia": null, "reactionVideos": [], @@ -420910,7 +420561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 11474971, "featuredRunMedia": null, "reactionVideos": [], @@ -420943,7 +420594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 11475692, "featuredRunMedia": null, "reactionVideos": [], @@ -420971,7 +420622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 11477143, "featuredRunMedia": null, "reactionVideos": [], @@ -421009,7 +420660,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11477636, "featuredRunMedia": null, "reactionVideos": [], @@ -421047,7 +420698,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "2152", "time": 11478363, "featuredRunMedia": null, "reactionVideos": [], @@ -421085,7 +420736,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 11480169, "featuredRunMedia": null, "reactionVideos": [], @@ -421118,7 +420769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 11480604, "featuredRunMedia": null, "reactionVideos": [], @@ -421151,7 +420802,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 11484682, "featuredRunMedia": null, "reactionVideos": [], @@ -421189,7 +420840,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 11485254, "featuredRunMedia": null, "reactionVideos": [], @@ -421215,7 +420866,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11485466, "featuredRunMedia": null, "reactionVideos": [], @@ -421243,7 +420894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 11489468, "featuredRunMedia": null, "reactionVideos": [], @@ -421271,7 +420922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 11492409, "featuredRunMedia": null, "reactionVideos": [], @@ -421309,7 +420960,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11492712, "featuredRunMedia": null, "reactionVideos": [], @@ -421347,7 +420998,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11494965, "featuredRunMedia": null, "reactionVideos": [], @@ -421380,7 +421031,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11497347, "featuredRunMedia": null, "reactionVideos": [], @@ -421402,7 +421053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11498674, "featuredRunMedia": null, "reactionVideos": [], @@ -421440,7 +421091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11498835, "featuredRunMedia": null, "reactionVideos": [], @@ -421478,7 +421129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11500340, "featuredRunMedia": null, "reactionVideos": [], @@ -421516,7 +421167,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11504969, "featuredRunMedia": null, "reactionVideos": [], @@ -421554,7 +421205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 11507771, "featuredRunMedia": null, "reactionVideos": [], @@ -421592,7 +421243,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11509153, "featuredRunMedia": null, "reactionVideos": [], @@ -421625,7 +421276,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11509513, "featuredRunMedia": null, "reactionVideos": [], @@ -421653,7 +421304,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11509858, "featuredRunMedia": null, "reactionVideos": [], @@ -421691,7 +421342,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11511204, "featuredRunMedia": null, "reactionVideos": [], @@ -421719,7 +421370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 11516225, "featuredRunMedia": null, "reactionVideos": [], @@ -421757,7 +421408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 11517378, "featuredRunMedia": null, "reactionVideos": [], @@ -421795,7 +421446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 11523661, "featuredRunMedia": null, "reactionVideos": [], @@ -421833,7 +421484,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 11524300, "featuredRunMedia": null, "reactionVideos": [], @@ -421871,7 +421522,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11526201, "featuredRunMedia": null, "reactionVideos": [], @@ -421909,7 +421560,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11528278, "featuredRunMedia": null, "reactionVideos": [], @@ -421937,7 +421588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "1450", "time": 11529066, "featuredRunMedia": null, "reactionVideos": [], @@ -421965,7 +421616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11529393, "featuredRunMedia": null, "reactionVideos": [], @@ -421993,7 +421644,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11533864, "featuredRunMedia": null, "reactionVideos": [], @@ -422031,7 +421682,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 11534956, "featuredRunMedia": null, "reactionVideos": [], @@ -422069,7 +421720,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 11537234, "featuredRunMedia": null, "reactionVideos": [], @@ -422097,7 +421748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 11538811, "featuredRunMedia": null, "reactionVideos": [], @@ -422125,7 +421776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11540017, "featuredRunMedia": null, "reactionVideos": [], @@ -422163,7 +421814,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 11541174, "featuredRunMedia": null, "reactionVideos": [], @@ -422196,7 +421847,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 11543737, "featuredRunMedia": null, "reactionVideos": [], @@ -422234,7 +421885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11543849, "featuredRunMedia": null, "reactionVideos": [], @@ -422272,7 +421923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "1241", "time": 11544346, "featuredRunMedia": null, "reactionVideos": [], @@ -422310,7 +421961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 11544698, "featuredRunMedia": null, "reactionVideos": [], @@ -422348,7 +421999,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 11544740, "featuredRunMedia": null, "reactionVideos": [], @@ -422376,7 +422027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 11545300, "featuredRunMedia": null, "reactionVideos": [], @@ -422404,7 +422055,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 11545757, "featuredRunMedia": null, "reactionVideos": [], @@ -422442,7 +422093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 11546576, "featuredRunMedia": null, "reactionVideos": [], @@ -422480,7 +422131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 199, + "teamId": "1544", "time": 11549231, "featuredRunMedia": null, "reactionVideos": [], @@ -422518,7 +422169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11553156, "featuredRunMedia": null, "reactionVideos": [], @@ -422546,7 +422197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11553398, "featuredRunMedia": null, "reactionVideos": [], @@ -422574,7 +422225,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11554167, "featuredRunMedia": null, "reactionVideos": [], @@ -422612,7 +422263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11559246, "featuredRunMedia": null, "reactionVideos": [], @@ -422650,7 +422301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 268, + "teamId": "2650", "time": 11560377, "featuredRunMedia": null, "reactionVideos": [], @@ -422683,7 +422334,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11560410, "featuredRunMedia": null, "reactionVideos": [], @@ -422711,7 +422362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 11560690, "featuredRunMedia": null, "reactionVideos": [], @@ -422749,7 +422400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 11561058, "featuredRunMedia": null, "reactionVideos": [], @@ -422777,7 +422428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "1149", "time": 11562398, "featuredRunMedia": null, "reactionVideos": [], @@ -422815,7 +422466,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11562421, "featuredRunMedia": null, "reactionVideos": [], @@ -422853,7 +422504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11563712, "featuredRunMedia": null, "reactionVideos": [], @@ -422881,7 +422532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11565596, "featuredRunMedia": null, "reactionVideos": [], @@ -422919,7 +422570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 11567451, "featuredRunMedia": null, "reactionVideos": [], @@ -422957,7 +422608,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "2854", "time": 11570030, "featuredRunMedia": null, "reactionVideos": [], @@ -422985,7 +422636,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11570031, "featuredRunMedia": null, "reactionVideos": [], @@ -423023,7 +422674,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 11571503, "featuredRunMedia": null, "reactionVideos": [], @@ -423061,7 +422712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 11572872, "featuredRunMedia": null, "reactionVideos": [], @@ -423099,7 +422750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11573590, "featuredRunMedia": null, "reactionVideos": [], @@ -423132,7 +422783,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 11574272, "featuredRunMedia": null, "reactionVideos": [], @@ -423170,7 +422821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 11574859, "featuredRunMedia": null, "reactionVideos": [], @@ -423198,7 +422849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 11575871, "featuredRunMedia": null, "reactionVideos": [], @@ -423226,7 +422877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11577223, "featuredRunMedia": null, "reactionVideos": [], @@ -423254,7 +422905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 11587690, "featuredRunMedia": null, "reactionVideos": [], @@ -423282,7 +422933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 11588213, "featuredRunMedia": null, "reactionVideos": [], @@ -423310,7 +422961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "1450", "time": 11588566, "featuredRunMedia": null, "reactionVideos": [], @@ -423338,7 +422989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 11588969, "featuredRunMedia": null, "reactionVideos": [], @@ -423376,7 +423027,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11589859, "featuredRunMedia": null, "reactionVideos": [], @@ -423404,7 +423055,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11591181, "featuredRunMedia": null, "reactionVideos": [], @@ -423442,7 +423093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11591643, "featuredRunMedia": null, "reactionVideos": [], @@ -423480,7 +423131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 11593170, "featuredRunMedia": null, "reactionVideos": [], @@ -423518,7 +423169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 11594198, "featuredRunMedia": null, "reactionVideos": [], @@ -423556,7 +423207,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 11594361, "featuredRunMedia": null, "reactionVideos": [], @@ -423584,7 +423235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11594495, "featuredRunMedia": null, "reactionVideos": [], @@ -423622,7 +423273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11596031, "featuredRunMedia": null, "reactionVideos": [], @@ -423660,7 +423311,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "1241", "time": 11598319, "featuredRunMedia": null, "reactionVideos": [], @@ -423698,7 +423349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 11599315, "featuredRunMedia": null, "reactionVideos": [], @@ -423736,7 +423387,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 277, + "teamId": "2853", "time": 11601936, "featuredRunMedia": null, "reactionVideos": [], @@ -423769,7 +423420,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11602398, "featuredRunMedia": null, "reactionVideos": [], @@ -423807,7 +423458,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 11604419, "featuredRunMedia": null, "reactionVideos": [], @@ -423835,7 +423486,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 301, + "teamId": "2948", "time": 11606201, "featuredRunMedia": null, "reactionVideos": [], @@ -423863,7 +423514,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 11607637, "featuredRunMedia": null, "reactionVideos": [], @@ -423901,7 +423552,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11608269, "featuredRunMedia": null, "reactionVideos": [], @@ -423939,7 +423590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11609585, "featuredRunMedia": null, "reactionVideos": [], @@ -423972,7 +423623,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 11609599, "featuredRunMedia": null, "reactionVideos": [], @@ -424000,7 +423651,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 11611053, "featuredRunMedia": null, "reactionVideos": [], @@ -424038,7 +423689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 11614483, "featuredRunMedia": null, "reactionVideos": [], @@ -424066,7 +423717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 11615743, "featuredRunMedia": null, "reactionVideos": [], @@ -424104,7 +423755,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11620447, "featuredRunMedia": null, "reactionVideos": [], @@ -424132,7 +423783,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11621233, "featuredRunMedia": null, "reactionVideos": [], @@ -424170,7 +423821,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11622298, "featuredRunMedia": null, "reactionVideos": [], @@ -424208,7 +423859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 11623519, "featuredRunMedia": null, "reactionVideos": [], @@ -424241,7 +423892,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 11624318, "featuredRunMedia": null, "reactionVideos": [], @@ -424279,7 +423930,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 11627410, "featuredRunMedia": null, "reactionVideos": [], @@ -424307,7 +423958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11630089, "featuredRunMedia": null, "reactionVideos": [], @@ -424345,7 +423996,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 11630168, "featuredRunMedia": null, "reactionVideos": [], @@ -424373,7 +424024,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 11630711, "featuredRunMedia": null, "reactionVideos": [], @@ -424406,7 +424057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11632266, "featuredRunMedia": null, "reactionVideos": [], @@ -424434,7 +424085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 11635880, "featuredRunMedia": null, "reactionVideos": [], @@ -424462,7 +424113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 11636444, "featuredRunMedia": null, "reactionVideos": [], @@ -424490,7 +424141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 234, + "teamId": "1254", "time": 11640772, "featuredRunMedia": null, "reactionVideos": [], @@ -424528,7 +424179,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11643220, "featuredRunMedia": null, "reactionVideos": [], @@ -424566,7 +424217,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 11644545, "featuredRunMedia": null, "reactionVideos": [], @@ -424594,7 +424245,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11645891, "featuredRunMedia": null, "reactionVideos": [], @@ -424622,7 +424273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 288, + "teamId": "2146", "time": 11646306, "featuredRunMedia": null, "reactionVideos": [], @@ -424660,7 +424311,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 11648918, "featuredRunMedia": null, "reactionVideos": [], @@ -424688,7 +424339,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 11648979, "featuredRunMedia": null, "reactionVideos": [], @@ -424716,7 +424367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11649085, "featuredRunMedia": null, "reactionVideos": [], @@ -424754,7 +424405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11650985, "featuredRunMedia": null, "reactionVideos": [], @@ -424792,7 +424443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 11653419, "featuredRunMedia": null, "reactionVideos": [], @@ -424830,7 +424481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11654191, "featuredRunMedia": null, "reactionVideos": [], @@ -424858,7 +424509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 11654355, "featuredRunMedia": null, "reactionVideos": [], @@ -424886,7 +424537,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11656589, "featuredRunMedia": null, "reactionVideos": [], @@ -424924,7 +424575,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 11657696, "featuredRunMedia": null, "reactionVideos": [], @@ -424962,7 +424613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 11659704, "featuredRunMedia": null, "reactionVideos": [], @@ -424995,7 +424646,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11660830, "featuredRunMedia": null, "reactionVideos": [], @@ -425023,7 +424674,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 11663770, "featuredRunMedia": null, "reactionVideos": [], @@ -425061,7 +424712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 11665711, "featuredRunMedia": null, "reactionVideos": [], @@ -425094,7 +424745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 11665748, "featuredRunMedia": null, "reactionVideos": [], @@ -425122,7 +424773,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11666632, "featuredRunMedia": null, "reactionVideos": [], @@ -425155,7 +424806,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11666889, "featuredRunMedia": null, "reactionVideos": [], @@ -425188,7 +424839,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 11667158, "featuredRunMedia": null, "reactionVideos": [], @@ -425216,7 +424867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 11668866, "featuredRunMedia": null, "reactionVideos": [], @@ -425254,7 +424905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 11671705, "featuredRunMedia": null, "reactionVideos": [], @@ -425292,7 +424943,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 11673076, "featuredRunMedia": null, "reactionVideos": [], @@ -425330,7 +424981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11674463, "featuredRunMedia": null, "reactionVideos": [], @@ -425358,7 +425009,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 11677060, "featuredRunMedia": null, "reactionVideos": [], @@ -425386,7 +425037,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11677127, "featuredRunMedia": null, "reactionVideos": [], @@ -425424,7 +425075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 11677162, "featuredRunMedia": null, "reactionVideos": [], @@ -425462,7 +425113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 11677905, "featuredRunMedia": null, "reactionVideos": [], @@ -425500,7 +425151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11678487, "featuredRunMedia": null, "reactionVideos": [], @@ -425528,7 +425179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 11679627, "featuredRunMedia": null, "reactionVideos": [], @@ -425561,7 +425212,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 11681890, "featuredRunMedia": null, "reactionVideos": [], @@ -425599,7 +425250,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 11684278, "featuredRunMedia": null, "reactionVideos": [], @@ -425627,7 +425278,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 11684475, "featuredRunMedia": null, "reactionVideos": [], @@ -425655,7 +425306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 11687134, "featuredRunMedia": null, "reactionVideos": [], @@ -425688,7 +425339,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 11688019, "featuredRunMedia": null, "reactionVideos": [], @@ -425716,7 +425367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 11689568, "featuredRunMedia": null, "reactionVideos": [], @@ -425744,7 +425395,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 11691313, "featuredRunMedia": null, "reactionVideos": [], @@ -425782,7 +425433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 11692148, "featuredRunMedia": null, "reactionVideos": [], @@ -425810,7 +425461,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 11692191, "featuredRunMedia": null, "reactionVideos": [], @@ -425848,7 +425499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 11692524, "featuredRunMedia": null, "reactionVideos": [], @@ -425876,7 +425527,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11694116, "featuredRunMedia": null, "reactionVideos": [], @@ -425909,7 +425560,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 11694171, "featuredRunMedia": null, "reactionVideos": [], @@ -425937,7 +425588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11695056, "featuredRunMedia": null, "reactionVideos": [], @@ -425975,7 +425626,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 11696005, "featuredRunMedia": null, "reactionVideos": [], @@ -426003,7 +425654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 11696765, "featuredRunMedia": null, "reactionVideos": [], @@ -426036,7 +425687,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11697603, "featuredRunMedia": null, "reactionVideos": [], @@ -426064,7 +425715,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11698958, "featuredRunMedia": null, "reactionVideos": [], @@ -426092,7 +425743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11700396, "featuredRunMedia": null, "reactionVideos": [], @@ -426130,7 +425781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11700976, "featuredRunMedia": null, "reactionVideos": [], @@ -426158,7 +425809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 11701329, "featuredRunMedia": null, "reactionVideos": [], @@ -426186,7 +425837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 11702926, "featuredRunMedia": null, "reactionVideos": [], @@ -426224,7 +425875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 11705605, "featuredRunMedia": null, "reactionVideos": [], @@ -426262,7 +425913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 11706262, "featuredRunMedia": null, "reactionVideos": [], @@ -426290,7 +425941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11710616, "featuredRunMedia": null, "reactionVideos": [], @@ -426318,7 +425969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 11711574, "featuredRunMedia": null, "reactionVideos": [], @@ -426356,7 +426007,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 48, + "teamId": "2952", "time": 11715418, "featuredRunMedia": null, "reactionVideos": [], @@ -426389,7 +426040,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11715429, "featuredRunMedia": null, "reactionVideos": [], @@ -426427,7 +426078,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 11715524, "featuredRunMedia": null, "reactionVideos": [], @@ -426455,7 +426106,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "1843", "time": 11715960, "featuredRunMedia": null, "reactionVideos": [], @@ -426488,7 +426139,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 11717192, "featuredRunMedia": null, "reactionVideos": [], @@ -426521,7 +426172,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 11722764, "featuredRunMedia": null, "reactionVideos": [], @@ -426559,7 +426210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 11724255, "featuredRunMedia": null, "reactionVideos": [], @@ -426592,7 +426243,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 11724892, "featuredRunMedia": null, "reactionVideos": [], @@ -426620,7 +426271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 332, + "teamId": "1153", "time": 11725041, "featuredRunMedia": null, "reactionVideos": [], @@ -426653,7 +426304,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11727452, "featuredRunMedia": null, "reactionVideos": [], @@ -426691,7 +426342,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11729159, "featuredRunMedia": null, "reactionVideos": [], @@ -426719,7 +426370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 11729691, "featuredRunMedia": null, "reactionVideos": [], @@ -426757,7 +426408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11730379, "featuredRunMedia": null, "reactionVideos": [], @@ -426795,7 +426446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11731135, "featuredRunMedia": null, "reactionVideos": [], @@ -426823,7 +426474,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11731656, "featuredRunMedia": null, "reactionVideos": [], @@ -426861,7 +426512,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11732878, "featuredRunMedia": null, "reactionVideos": [], @@ -426899,7 +426550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 11733730, "featuredRunMedia": null, "reactionVideos": [], @@ -426937,7 +426588,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 11734852, "featuredRunMedia": null, "reactionVideos": [], @@ -426965,7 +426616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11735918, "featuredRunMedia": null, "reactionVideos": [], @@ -426998,7 +426649,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 11735995, "featuredRunMedia": null, "reactionVideos": [], @@ -427036,7 +426687,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 11736204, "featuredRunMedia": null, "reactionVideos": [], @@ -427074,7 +426725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 11737920, "featuredRunMedia": null, "reactionVideos": [], @@ -427102,7 +426753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 11738105, "featuredRunMedia": null, "reactionVideos": [], @@ -427135,7 +426786,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 11738383, "featuredRunMedia": null, "reactionVideos": [], @@ -427163,7 +426814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 11742082, "featuredRunMedia": null, "reactionVideos": [], @@ -427201,7 +426852,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 11743274, "featuredRunMedia": null, "reactionVideos": [], @@ -427239,7 +426890,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 11743712, "featuredRunMedia": null, "reactionVideos": [], @@ -427277,7 +426928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 291, + "teamId": "3242", "time": 11746042, "featuredRunMedia": null, "reactionVideos": [], @@ -427315,7 +426966,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11750121, "featuredRunMedia": null, "reactionVideos": [], @@ -427343,7 +426994,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11750167, "featuredRunMedia": null, "reactionVideos": [], @@ -427381,7 +427032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 11750716, "featuredRunMedia": null, "reactionVideos": [], @@ -427403,7 +427054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11751051, "featuredRunMedia": null, "reactionVideos": [], @@ -427441,7 +427092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 11752646, "featuredRunMedia": null, "reactionVideos": [], @@ -427479,7 +427130,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 132, + "teamId": "2256", "time": 11757742, "featuredRunMedia": null, "reactionVideos": [], @@ -427507,7 +427158,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 11758131, "featuredRunMedia": null, "reactionVideos": [], @@ -427540,7 +427191,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 11758241, "featuredRunMedia": null, "reactionVideos": [], @@ -427568,7 +427219,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11759264, "featuredRunMedia": null, "reactionVideos": [], @@ -427606,7 +427257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 159, + "teamId": "2348", "time": 11760737, "featuredRunMedia": null, "reactionVideos": [], @@ -427634,7 +427285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11762195, "featuredRunMedia": null, "reactionVideos": [], @@ -427667,7 +427318,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 11763742, "featuredRunMedia": null, "reactionVideos": [], @@ -427695,7 +427346,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 11763787, "featuredRunMedia": null, "reactionVideos": [], @@ -427723,7 +427374,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "3241", "time": 11764112, "featuredRunMedia": null, "reactionVideos": [], @@ -427761,7 +427412,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 11765214, "featuredRunMedia": null, "reactionVideos": [], @@ -427789,7 +427440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11766782, "featuredRunMedia": null, "reactionVideos": [], @@ -427827,7 +427478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11767249, "featuredRunMedia": null, "reactionVideos": [], @@ -427855,7 +427506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11767522, "featuredRunMedia": null, "reactionVideos": [], @@ -427893,7 +427544,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 11771261, "featuredRunMedia": null, "reactionVideos": [], @@ -427931,7 +427582,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 11771405, "featuredRunMedia": null, "reactionVideos": [], @@ -427959,7 +427610,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11772917, "featuredRunMedia": null, "reactionVideos": [], @@ -427987,7 +427638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11774596, "featuredRunMedia": null, "reactionVideos": [], @@ -428015,7 +427666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 11775064, "featuredRunMedia": null, "reactionVideos": [], @@ -428048,7 +427699,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 11775712, "featuredRunMedia": null, "reactionVideos": [], @@ -428086,7 +427737,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 11777687, "featuredRunMedia": null, "reactionVideos": [], @@ -428119,7 +427770,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 159, + "teamId": "2348", "time": 11778720, "featuredRunMedia": null, "reactionVideos": [], @@ -428147,7 +427798,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11779205, "featuredRunMedia": null, "reactionVideos": [], @@ -428180,7 +427831,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "3251", "time": 11779231, "featuredRunMedia": null, "reactionVideos": [], @@ -428218,7 +427869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11779850, "featuredRunMedia": null, "reactionVideos": [], @@ -428246,7 +427897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "1243", "time": 11782426, "featuredRunMedia": null, "reactionVideos": [], @@ -428274,7 +427925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 297, + "teamId": "1546", "time": 11782452, "featuredRunMedia": null, "reactionVideos": [], @@ -428312,7 +427963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11784165, "featuredRunMedia": null, "reactionVideos": [], @@ -428340,7 +427991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 11785984, "featuredRunMedia": null, "reactionVideos": [], @@ -428373,7 +428024,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 11787272, "featuredRunMedia": null, "reactionVideos": [], @@ -428411,7 +428062,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 11788381, "featuredRunMedia": null, "reactionVideos": [], @@ -428439,7 +428090,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 11789656, "featuredRunMedia": null, "reactionVideos": [], @@ -428472,7 +428123,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 11793742, "featuredRunMedia": null, "reactionVideos": [], @@ -428500,7 +428151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11795739, "featuredRunMedia": null, "reactionVideos": [], @@ -428538,7 +428189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 11796011, "featuredRunMedia": null, "reactionVideos": [], @@ -428566,7 +428217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 11796493, "featuredRunMedia": null, "reactionVideos": [], @@ -428604,7 +428255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 60, + "teamId": "1241", "time": 11796685, "featuredRunMedia": null, "reactionVideos": [], @@ -428637,7 +428288,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "2454", "time": 11797231, "featuredRunMedia": null, "reactionVideos": [], @@ -428675,7 +428326,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 11798593, "featuredRunMedia": null, "reactionVideos": [], @@ -428697,7 +428348,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11798814, "featuredRunMedia": null, "reactionVideos": [], @@ -428735,7 +428386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 11799737, "featuredRunMedia": null, "reactionVideos": [], @@ -428763,7 +428414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 11800284, "featuredRunMedia": null, "reactionVideos": [], @@ -428801,7 +428452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 11800596, "featuredRunMedia": null, "reactionVideos": [], @@ -428829,7 +428480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 11801972, "featuredRunMedia": null, "reactionVideos": [], @@ -428857,7 +428508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11803265, "featuredRunMedia": null, "reactionVideos": [], @@ -428885,7 +428536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 11803649, "featuredRunMedia": null, "reactionVideos": [], @@ -428923,7 +428574,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11803785, "featuredRunMedia": null, "reactionVideos": [], @@ -428956,7 +428607,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 11805409, "featuredRunMedia": null, "reactionVideos": [], @@ -428984,7 +428635,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 324, + "teamId": "2653", "time": 11806134, "featuredRunMedia": null, "reactionVideos": [], @@ -429012,7 +428663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 11807947, "featuredRunMedia": null, "reactionVideos": [], @@ -429050,7 +428701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 11807960, "featuredRunMedia": null, "reactionVideos": [], @@ -429083,7 +428734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11808219, "featuredRunMedia": null, "reactionVideos": [], @@ -429121,7 +428772,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 11810461, "featuredRunMedia": null, "reactionVideos": [], @@ -429159,7 +428810,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11811555, "featuredRunMedia": null, "reactionVideos": [], @@ -429187,7 +428838,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11813649, "featuredRunMedia": null, "reactionVideos": [], @@ -429225,7 +428876,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 237, + "teamId": "2246", "time": 11815227, "featuredRunMedia": null, "reactionVideos": [], @@ -429263,7 +428914,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 11815419, "featuredRunMedia": null, "reactionVideos": [], @@ -429301,7 +428952,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 11815621, "featuredRunMedia": null, "reactionVideos": [], @@ -429339,7 +428990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 11815924, "featuredRunMedia": null, "reactionVideos": [], @@ -429367,7 +429018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 11817515, "featuredRunMedia": null, "reactionVideos": [], @@ -429395,7 +429046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 11819985, "featuredRunMedia": null, "reactionVideos": [], @@ -429423,7 +429074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 11820529, "featuredRunMedia": null, "reactionVideos": [], @@ -429451,7 +429102,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 289, + "teamId": "2851", "time": 11821271, "featuredRunMedia": null, "reactionVideos": [], @@ -429489,7 +429140,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 11821872, "featuredRunMedia": null, "reactionVideos": [], @@ -429517,7 +429168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11821888, "featuredRunMedia": null, "reactionVideos": [], @@ -429550,7 +429201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11821913, "featuredRunMedia": null, "reactionVideos": [], @@ -429588,7 +429239,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11822572, "featuredRunMedia": null, "reactionVideos": [], @@ -429616,7 +429267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 11826773, "featuredRunMedia": null, "reactionVideos": [], @@ -429654,7 +429305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 11826858, "featuredRunMedia": null, "reactionVideos": [], @@ -429687,7 +429338,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 72, + "teamId": "2542", "time": 11826988, "featuredRunMedia": null, "reactionVideos": [], @@ -429725,7 +429376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 11827427, "featuredRunMedia": null, "reactionVideos": [], @@ -429758,7 +429409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 11828667, "featuredRunMedia": null, "reactionVideos": [], @@ -429786,7 +429437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 11829417, "featuredRunMedia": null, "reactionVideos": [], @@ -429814,7 +429465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11829570, "featuredRunMedia": null, "reactionVideos": [], @@ -429852,7 +429503,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11829982, "featuredRunMedia": null, "reactionVideos": [], @@ -429885,7 +429536,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 11831268, "featuredRunMedia": null, "reactionVideos": [], @@ -429918,7 +429569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 11833910, "featuredRunMedia": null, "reactionVideos": [], @@ -429944,7 +429595,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 11834383, "featuredRunMedia": null, "reactionVideos": [], @@ -429972,7 +429623,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 11835731, "featuredRunMedia": null, "reactionVideos": [], @@ -430005,7 +429656,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11836170, "featuredRunMedia": null, "reactionVideos": [], @@ -430043,7 +429694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11836686, "featuredRunMedia": null, "reactionVideos": [], @@ -430076,7 +429727,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 11836741, "featuredRunMedia": null, "reactionVideos": [], @@ -430114,7 +429765,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 11836836, "featuredRunMedia": null, "reactionVideos": [], @@ -430142,7 +429793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 11837049, "featuredRunMedia": null, "reactionVideos": [], @@ -430170,7 +429821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 11837528, "featuredRunMedia": null, "reactionVideos": [], @@ -430208,7 +429859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 11839162, "featuredRunMedia": null, "reactionVideos": [], @@ -430246,7 +429897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 11839260, "featuredRunMedia": null, "reactionVideos": [], @@ -430274,7 +429925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11840951, "featuredRunMedia": null, "reactionVideos": [], @@ -430302,7 +429953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 11841604, "featuredRunMedia": null, "reactionVideos": [], @@ -430340,7 +429991,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 168, + "teamId": "2152", "time": 11842305, "featuredRunMedia": null, "reactionVideos": [], @@ -430368,7 +430019,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11844392, "featuredRunMedia": null, "reactionVideos": [], @@ -430406,7 +430057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 11846949, "featuredRunMedia": null, "reactionVideos": [], @@ -430444,7 +430095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 279, + "teamId": "1449", "time": 11847822, "featuredRunMedia": null, "reactionVideos": [], @@ -430477,7 +430128,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "2352", "time": 11848713, "featuredRunMedia": null, "reactionVideos": [], @@ -430510,7 +430161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 11849112, "featuredRunMedia": null, "reactionVideos": [], @@ -430538,7 +430189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "1243", "time": 11849338, "featuredRunMedia": null, "reactionVideos": [], @@ -430576,7 +430227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 11851065, "featuredRunMedia": null, "reactionVideos": [], @@ -430604,7 +430255,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 11851202, "featuredRunMedia": null, "reactionVideos": [], @@ -430637,7 +430288,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 11852344, "featuredRunMedia": null, "reactionVideos": [], @@ -430665,7 +430316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11853734, "featuredRunMedia": null, "reactionVideos": [], @@ -430693,7 +430344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11854844, "featuredRunMedia": null, "reactionVideos": [], @@ -430731,7 +430382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 11856742, "featuredRunMedia": null, "reactionVideos": [], @@ -430769,7 +430420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 11857426, "featuredRunMedia": null, "reactionVideos": [], @@ -430797,7 +430448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 11857960, "featuredRunMedia": null, "reactionVideos": [], @@ -430835,7 +430486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 11859466, "featuredRunMedia": null, "reactionVideos": [], @@ -430868,7 +430519,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11859912, "featuredRunMedia": null, "reactionVideos": [], @@ -430906,7 +430557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11860295, "featuredRunMedia": null, "reactionVideos": [], @@ -430934,7 +430585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11860341, "featuredRunMedia": null, "reactionVideos": [], @@ -430962,7 +430613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 11860531, "featuredRunMedia": null, "reactionVideos": [], @@ -430990,7 +430641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11861469, "featuredRunMedia": null, "reactionVideos": [], @@ -431028,7 +430679,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11861795, "featuredRunMedia": null, "reactionVideos": [], @@ -431056,7 +430707,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 11866273, "featuredRunMedia": null, "reactionVideos": [], @@ -431084,7 +430735,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 11869696, "featuredRunMedia": null, "reactionVideos": [], @@ -431112,7 +430763,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 11869733, "featuredRunMedia": null, "reactionVideos": [], @@ -431140,7 +430791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 11870848, "featuredRunMedia": null, "reactionVideos": [], @@ -431173,7 +430824,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 11871001, "featuredRunMedia": null, "reactionVideos": [], @@ -431211,7 +430862,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 35, + "teamId": "1554", "time": 11871309, "featuredRunMedia": null, "reactionVideos": [], @@ -431249,7 +430900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 11871956, "featuredRunMedia": null, "reactionVideos": [], @@ -431277,7 +430928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11872196, "featuredRunMedia": null, "reactionVideos": [], @@ -431310,7 +430961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 11872366, "featuredRunMedia": null, "reactionVideos": [], @@ -431348,7 +430999,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 11872920, "featuredRunMedia": null, "reactionVideos": [], @@ -431386,7 +431037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 11873019, "featuredRunMedia": null, "reactionVideos": [], @@ -431414,7 +431065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 11873217, "featuredRunMedia": null, "reactionVideos": [], @@ -431436,7 +431087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 11874719, "featuredRunMedia": null, "reactionVideos": [], @@ -431474,7 +431125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 11875368, "featuredRunMedia": null, "reactionVideos": [], @@ -431502,7 +431153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11877681, "featuredRunMedia": null, "reactionVideos": [], @@ -431540,7 +431191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 11879425, "featuredRunMedia": null, "reactionVideos": [], @@ -431573,7 +431224,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 11879675, "featuredRunMedia": null, "reactionVideos": [], @@ -431601,7 +431252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11881075, "featuredRunMedia": null, "reactionVideos": [], @@ -431639,7 +431290,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 11881533, "featuredRunMedia": null, "reactionVideos": [], @@ -431677,7 +431328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11882779, "featuredRunMedia": null, "reactionVideos": [], @@ -431705,7 +431356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 11884033, "featuredRunMedia": null, "reactionVideos": [], @@ -431743,7 +431394,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 11885073, "featuredRunMedia": null, "reactionVideos": [], @@ -431765,7 +431416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "1844", "time": 11887512, "featuredRunMedia": null, "reactionVideos": [], @@ -431803,7 +431454,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 11889030, "featuredRunMedia": null, "reactionVideos": [], @@ -431831,7 +431482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 11889140, "featuredRunMedia": null, "reactionVideos": [], @@ -431869,7 +431520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 11891880, "featuredRunMedia": null, "reactionVideos": [], @@ -431897,7 +431548,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 11893428, "featuredRunMedia": null, "reactionVideos": [], @@ -431925,7 +431576,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 11894643, "featuredRunMedia": null, "reactionVideos": [], @@ -431958,7 +431609,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11895217, "featuredRunMedia": null, "reactionVideos": [], @@ -431996,7 +431647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 11899109, "featuredRunMedia": null, "reactionVideos": [], @@ -432034,7 +431685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 11900025, "featuredRunMedia": null, "reactionVideos": [], @@ -432056,7 +431707,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11901942, "featuredRunMedia": null, "reactionVideos": [], @@ -432089,7 +431740,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 11902695, "featuredRunMedia": null, "reactionVideos": [], @@ -432117,7 +431768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 11903739, "featuredRunMedia": null, "reactionVideos": [], @@ -432145,7 +431796,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 11904843, "featuredRunMedia": null, "reactionVideos": [], @@ -432173,7 +431824,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11905082, "featuredRunMedia": null, "reactionVideos": [], @@ -432211,7 +431862,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 11905328, "featuredRunMedia": null, "reactionVideos": [], @@ -432249,7 +431900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 11911066, "featuredRunMedia": null, "reactionVideos": [], @@ -432277,7 +431928,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 307, + "teamId": "2548", "time": 11911222, "featuredRunMedia": null, "reactionVideos": [], @@ -432310,7 +431961,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 11912025, "featuredRunMedia": null, "reactionVideos": [], @@ -432338,7 +431989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 11914649, "featuredRunMedia": null, "reactionVideos": [], @@ -432366,7 +432017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 11915205, "featuredRunMedia": null, "reactionVideos": [], @@ -432394,7 +432045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 11916606, "featuredRunMedia": null, "reactionVideos": [], @@ -432427,7 +432078,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 11919067, "featuredRunMedia": null, "reactionVideos": [], @@ -432465,7 +432116,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 11920721, "featuredRunMedia": null, "reactionVideos": [], @@ -432493,7 +432144,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11922466, "featuredRunMedia": null, "reactionVideos": [], @@ -432521,7 +432172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11925088, "featuredRunMedia": null, "reactionVideos": [], @@ -432543,7 +432194,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11925635, "featuredRunMedia": null, "reactionVideos": [], @@ -432581,7 +432232,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 9, + "teamId": "1846", "time": 11926329, "featuredRunMedia": null, "reactionVideos": [], @@ -432609,7 +432260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 11927569, "featuredRunMedia": null, "reactionVideos": [], @@ -432647,7 +432298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 11930966, "featuredRunMedia": null, "reactionVideos": [], @@ -432675,7 +432326,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 11931630, "featuredRunMedia": null, "reactionVideos": [], @@ -432713,7 +432364,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 11931882, "featuredRunMedia": null, "reactionVideos": [], @@ -432746,7 +432397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 11933017, "featuredRunMedia": null, "reactionVideos": [], @@ -432784,7 +432435,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11933110, "featuredRunMedia": null, "reactionVideos": [], @@ -432817,7 +432468,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11934423, "featuredRunMedia": null, "reactionVideos": [], @@ -432845,7 +432496,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 11934486, "featuredRunMedia": null, "reactionVideos": [], @@ -432883,7 +432534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11934637, "featuredRunMedia": null, "reactionVideos": [], @@ -432916,7 +432567,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 11936332, "featuredRunMedia": null, "reactionVideos": [], @@ -432949,7 +432600,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 11937481, "featuredRunMedia": null, "reactionVideos": [], @@ -432977,7 +432628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 11938579, "featuredRunMedia": null, "reactionVideos": [], @@ -433005,7 +432656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 11939830, "featuredRunMedia": null, "reactionVideos": [], @@ -433043,7 +432694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 11940305, "featuredRunMedia": null, "reactionVideos": [], @@ -433076,7 +432727,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 174, + "teamId": "1445", "time": 11942430, "featuredRunMedia": null, "reactionVideos": [], @@ -433109,7 +432760,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 11943670, "featuredRunMedia": null, "reactionVideos": [], @@ -433137,7 +432788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11944375, "featuredRunMedia": null, "reactionVideos": [], @@ -433165,7 +432816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 11945366, "featuredRunMedia": null, "reactionVideos": [], @@ -433203,7 +432854,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 11946020, "featuredRunMedia": null, "reactionVideos": [], @@ -433241,7 +432892,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "1844", "time": 11946203, "featuredRunMedia": null, "reactionVideos": [], @@ -433269,7 +432920,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 50, + "teamId": "1450", "time": 11946506, "featuredRunMedia": null, "reactionVideos": [], @@ -433297,7 +432948,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 11946958, "featuredRunMedia": null, "reactionVideos": [], @@ -433325,7 +432976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11947398, "featuredRunMedia": null, "reactionVideos": [], @@ -433363,7 +433014,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 11947712, "featuredRunMedia": null, "reactionVideos": [], @@ -433391,7 +433042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 11949761, "featuredRunMedia": null, "reactionVideos": [], @@ -433419,7 +433070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 11950901, "featuredRunMedia": null, "reactionVideos": [], @@ -433447,7 +433098,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 11950944, "featuredRunMedia": null, "reactionVideos": [], @@ -433485,7 +433136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 11951351, "featuredRunMedia": null, "reactionVideos": [], @@ -433518,7 +433169,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 11951814, "featuredRunMedia": null, "reactionVideos": [], @@ -433556,7 +433207,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 11952089, "featuredRunMedia": null, "reactionVideos": [], @@ -433589,7 +433240,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 11953545, "featuredRunMedia": null, "reactionVideos": [], @@ -433627,7 +433278,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 11953938, "featuredRunMedia": null, "reactionVideos": [], @@ -433655,7 +433306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 11954092, "featuredRunMedia": null, "reactionVideos": [], @@ -433693,7 +433344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 11956076, "featuredRunMedia": null, "reactionVideos": [], @@ -433721,7 +433372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 11956903, "featuredRunMedia": null, "reactionVideos": [], @@ -433749,7 +433400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 11958261, "featuredRunMedia": null, "reactionVideos": [], @@ -433787,7 +433438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 11958894, "featuredRunMedia": null, "reactionVideos": [], @@ -433825,7 +433476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11958966, "featuredRunMedia": null, "reactionVideos": [], @@ -433853,7 +433504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 11961135, "featuredRunMedia": null, "reactionVideos": [], @@ -433886,7 +433537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 11962385, "featuredRunMedia": null, "reactionVideos": [], @@ -433924,7 +433575,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 11963616, "featuredRunMedia": null, "reactionVideos": [], @@ -433962,7 +433613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 11963678, "featuredRunMedia": null, "reactionVideos": [], @@ -433990,7 +433641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 11964693, "featuredRunMedia": null, "reactionVideos": [], @@ -434018,7 +433669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 11965886, "featuredRunMedia": null, "reactionVideos": [], @@ -434056,7 +433707,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 11967850, "featuredRunMedia": null, "reactionVideos": [], @@ -434084,7 +433735,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 11968212, "featuredRunMedia": null, "reactionVideos": [], @@ -434112,7 +433763,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 11969752, "featuredRunMedia": null, "reactionVideos": [], @@ -434150,7 +433801,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 11969770, "featuredRunMedia": null, "reactionVideos": [], @@ -434178,7 +433829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 11970984, "featuredRunMedia": null, "reactionVideos": [], @@ -434206,7 +433857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 11971910, "featuredRunMedia": null, "reactionVideos": [], @@ -434234,7 +433885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 11972022, "featuredRunMedia": null, "reactionVideos": [], @@ -434262,7 +433913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 11974397, "featuredRunMedia": null, "reactionVideos": [], @@ -434300,7 +433951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 11975284, "featuredRunMedia": null, "reactionVideos": [], @@ -434338,7 +433989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 11977106, "featuredRunMedia": null, "reactionVideos": [], @@ -434360,7 +434011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 11977901, "featuredRunMedia": null, "reactionVideos": [], @@ -434398,7 +434049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 11978732, "featuredRunMedia": null, "reactionVideos": [], @@ -434436,7 +434087,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 11978732, "featuredRunMedia": null, "reactionVideos": [], @@ -434464,7 +434115,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 11981354, "featuredRunMedia": null, "reactionVideos": [], @@ -434492,7 +434143,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 11986681, "featuredRunMedia": null, "reactionVideos": [], @@ -434520,7 +434171,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 236, + "teamId": "1243", "time": 11987855, "featuredRunMedia": null, "reactionVideos": [], @@ -434548,7 +434199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 11993637, "featuredRunMedia": null, "reactionVideos": [], @@ -434576,7 +434227,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 11994466, "featuredRunMedia": null, "reactionVideos": [], @@ -434614,7 +434265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 11995536, "featuredRunMedia": null, "reactionVideos": [], @@ -434652,7 +434303,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 11995948, "featuredRunMedia": null, "reactionVideos": [], @@ -434680,7 +434331,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 11996627, "featuredRunMedia": null, "reactionVideos": [], @@ -434718,7 +434369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "1744", "time": 11997538, "featuredRunMedia": null, "reactionVideos": [], @@ -434751,7 +434402,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 11997647, "featuredRunMedia": null, "reactionVideos": [], @@ -434789,7 +434440,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 11997809, "featuredRunMedia": null, "reactionVideos": [], @@ -434827,7 +434478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 11999370, "featuredRunMedia": null, "reactionVideos": [], @@ -434865,7 +434516,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "2854", "time": 11999818, "featuredRunMedia": null, "reactionVideos": [], @@ -434893,7 +434544,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 12001802, "featuredRunMedia": null, "reactionVideos": [], @@ -434926,7 +434577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 12002460, "featuredRunMedia": null, "reactionVideos": [], @@ -434959,7 +434610,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "2050", "time": 12002836, "featuredRunMedia": null, "reactionVideos": [], @@ -434987,7 +434638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 220, + "teamId": "1742", "time": 12005264, "featuredRunMedia": null, "reactionVideos": [], @@ -435025,7 +434676,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 12006435, "featuredRunMedia": null, "reactionVideos": [], @@ -435053,7 +434704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 12006446, "featuredRunMedia": null, "reactionVideos": [], @@ -435081,7 +434732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 12006850, "featuredRunMedia": null, "reactionVideos": [], @@ -435114,7 +434765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12007466, "featuredRunMedia": null, "reactionVideos": [], @@ -435142,7 +434793,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12009546, "featuredRunMedia": null, "reactionVideos": [], @@ -435170,7 +434821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 12011655, "featuredRunMedia": null, "reactionVideos": [], @@ -435198,7 +434849,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 12014994, "featuredRunMedia": null, "reactionVideos": [], @@ -435236,7 +434887,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 12017155, "featuredRunMedia": null, "reactionVideos": [], @@ -435264,7 +434915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 12017286, "featuredRunMedia": null, "reactionVideos": [], @@ -435302,7 +434953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12017509, "featuredRunMedia": null, "reactionVideos": [], @@ -435340,7 +434991,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 12019331, "featuredRunMedia": null, "reactionVideos": [], @@ -435378,7 +435029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 215, + "teamId": "2841", "time": 12019355, "featuredRunMedia": null, "reactionVideos": [], @@ -435416,7 +435067,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 12019912, "featuredRunMedia": null, "reactionVideos": [], @@ -435444,7 +435095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 12021113, "featuredRunMedia": null, "reactionVideos": [], @@ -435482,7 +435133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "1242", "time": 12024002, "featuredRunMedia": null, "reactionVideos": [], @@ -435510,7 +435161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 12024463, "featuredRunMedia": null, "reactionVideos": [], @@ -435538,7 +435189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 12028517, "featuredRunMedia": null, "reactionVideos": [], @@ -435576,7 +435227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12030330, "featuredRunMedia": null, "reactionVideos": [], @@ -435614,7 +435265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 224, + "teamId": "1744", "time": 12031227, "featuredRunMedia": null, "reactionVideos": [], @@ -435652,7 +435303,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 12032237, "featuredRunMedia": null, "reactionVideos": [], @@ -435685,7 +435336,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 12032585, "featuredRunMedia": null, "reactionVideos": [], @@ -435713,7 +435364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 12033798, "featuredRunMedia": null, "reactionVideos": [], @@ -435751,7 +435402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12038317, "featuredRunMedia": null, "reactionVideos": [], @@ -435779,7 +435430,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 12038572, "featuredRunMedia": null, "reactionVideos": [], @@ -435812,7 +435463,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 12044410, "featuredRunMedia": null, "reactionVideos": [], @@ -435840,7 +435491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12044422, "featuredRunMedia": null, "reactionVideos": [], @@ -435868,7 +435519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 12046965, "featuredRunMedia": null, "reactionVideos": [], @@ -435896,7 +435547,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 12048582, "featuredRunMedia": null, "reactionVideos": [], @@ -435924,7 +435575,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12048856, "featuredRunMedia": null, "reactionVideos": [], @@ -435952,7 +435603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 12051386, "featuredRunMedia": null, "reactionVideos": [], @@ -435990,7 +435641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 12053617, "featuredRunMedia": null, "reactionVideos": [], @@ -436018,7 +435669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 319, + "teamId": "1545", "time": 12058455, "featuredRunMedia": null, "reactionVideos": [], @@ -436051,7 +435702,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "1353", "time": 12062367, "featuredRunMedia": null, "reactionVideos": [], @@ -436079,7 +435730,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12062447, "featuredRunMedia": null, "reactionVideos": [], @@ -436117,7 +435768,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12063997, "featuredRunMedia": null, "reactionVideos": [], @@ -436150,7 +435801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "2050", "time": 12065023, "featuredRunMedia": null, "reactionVideos": [], @@ -436178,7 +435829,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12067559, "featuredRunMedia": null, "reactionVideos": [], @@ -436206,7 +435857,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 12068879, "featuredRunMedia": null, "reactionVideos": [], @@ -436234,7 +435885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12069999, "featuredRunMedia": null, "reactionVideos": [], @@ -436272,7 +435923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12070735, "featuredRunMedia": null, "reactionVideos": [], @@ -436305,7 +435956,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 12072107, "featuredRunMedia": null, "reactionVideos": [], @@ -436343,7 +435994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 12072392, "featuredRunMedia": null, "reactionVideos": [], @@ -436381,7 +436032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 12073673, "featuredRunMedia": null, "reactionVideos": [], @@ -436414,7 +436065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12074725, "featuredRunMedia": null, "reactionVideos": [], @@ -436447,7 +436098,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 12077682, "featuredRunMedia": null, "reactionVideos": [], @@ -436475,7 +436126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12078925, "featuredRunMedia": null, "reactionVideos": [], @@ -436503,7 +436154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12079269, "featuredRunMedia": null, "reactionVideos": [], @@ -436536,7 +436187,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12079459, "featuredRunMedia": null, "reactionVideos": [], @@ -436574,7 +436225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12079703, "featuredRunMedia": null, "reactionVideos": [], @@ -436602,7 +436253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 12084262, "featuredRunMedia": null, "reactionVideos": [], @@ -436640,7 +436291,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12087563, "featuredRunMedia": null, "reactionVideos": [], @@ -436678,7 +436329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12088244, "featuredRunMedia": null, "reactionVideos": [], @@ -436706,7 +436357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 26, + "teamId": "2752", "time": 12089549, "featuredRunMedia": null, "reactionVideos": [], @@ -436739,7 +436390,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "2352", "time": 12090747, "featuredRunMedia": null, "reactionVideos": [], @@ -436777,7 +436428,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12092782, "featuredRunMedia": null, "reactionVideos": [], @@ -436810,7 +436461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 12093912, "featuredRunMedia": null, "reactionVideos": [], @@ -436848,7 +436499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 12095151, "featuredRunMedia": null, "reactionVideos": [], @@ -436874,7 +436525,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 12100533, "featuredRunMedia": null, "reactionVideos": [], @@ -436902,7 +436553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 12103243, "featuredRunMedia": null, "reactionVideos": [], @@ -436930,7 +436581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12106049, "featuredRunMedia": null, "reactionVideos": [], @@ -436963,7 +436614,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 12107379, "featuredRunMedia": null, "reactionVideos": [], @@ -437001,7 +436652,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 12109243, "featuredRunMedia": null, "reactionVideos": [], @@ -437039,7 +436690,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12113357, "featuredRunMedia": null, "reactionVideos": [], @@ -437077,7 +436728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 12114421, "featuredRunMedia": null, "reactionVideos": [], @@ -437115,7 +436766,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12115009, "featuredRunMedia": null, "reactionVideos": [], @@ -437153,7 +436804,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 12118708, "featuredRunMedia": null, "reactionVideos": [], @@ -437191,7 +436842,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12118929, "featuredRunMedia": null, "reactionVideos": [], @@ -437219,7 +436870,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "2244", "time": 12119152, "featuredRunMedia": null, "reactionVideos": [], @@ -437247,7 +436898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 140, + "teamId": "1149", "time": 12123785, "featuredRunMedia": null, "reactionVideos": [], @@ -437280,7 +436931,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 12124205, "featuredRunMedia": null, "reactionVideos": [], @@ -437302,7 +436953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 12124323, "featuredRunMedia": null, "reactionVideos": [], @@ -437340,7 +436991,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12124365, "featuredRunMedia": null, "reactionVideos": [], @@ -437368,7 +437019,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12128627, "featuredRunMedia": null, "reactionVideos": [], @@ -437396,7 +437047,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 12128950, "featuredRunMedia": null, "reactionVideos": [], @@ -437424,7 +437075,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 12130486, "featuredRunMedia": null, "reactionVideos": [], @@ -437452,7 +437103,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 12131936, "featuredRunMedia": null, "reactionVideos": [], @@ -437480,7 +437131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 12132593, "featuredRunMedia": null, "reactionVideos": [], @@ -437518,7 +437169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 12132727, "featuredRunMedia": null, "reactionVideos": [], @@ -437546,7 +437197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 12133177, "featuredRunMedia": null, "reactionVideos": [], @@ -437584,7 +437235,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 12136456, "featuredRunMedia": null, "reactionVideos": [], @@ -437612,7 +437263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 12141675, "featuredRunMedia": null, "reactionVideos": [], @@ -437650,7 +437301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 12141906, "featuredRunMedia": null, "reactionVideos": [], @@ -437688,7 +437339,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 12142072, "featuredRunMedia": null, "reactionVideos": [], @@ -437716,7 +437367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12142423, "featuredRunMedia": null, "reactionVideos": [], @@ -437754,7 +437405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 12142431, "featuredRunMedia": null, "reactionVideos": [], @@ -437792,7 +437443,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 12143144, "featuredRunMedia": null, "reactionVideos": [], @@ -437830,7 +437481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12148075, "featuredRunMedia": null, "reactionVideos": [], @@ -437868,7 +437519,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12151564, "featuredRunMedia": null, "reactionVideos": [], @@ -437906,7 +437557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 12151705, "featuredRunMedia": null, "reactionVideos": [], @@ -437934,7 +437585,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 12152736, "featuredRunMedia": null, "reactionVideos": [], @@ -437972,7 +437623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 12152757, "featuredRunMedia": null, "reactionVideos": [], @@ -438000,7 +437651,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12154662, "featuredRunMedia": null, "reactionVideos": [], @@ -438028,7 +437679,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 12155034, "featuredRunMedia": null, "reactionVideos": [], @@ -438056,7 +437707,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 12155955, "featuredRunMedia": null, "reactionVideos": [], @@ -438084,7 +437735,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 12157176, "featuredRunMedia": null, "reactionVideos": [], @@ -438117,7 +437768,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 12157617, "featuredRunMedia": null, "reactionVideos": [], @@ -438155,7 +437806,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 216, + "teamId": "1753", "time": 12159313, "featuredRunMedia": null, "reactionVideos": [], @@ -438183,7 +437834,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12160327, "featuredRunMedia": null, "reactionVideos": [], @@ -438221,7 +437872,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 12161442, "featuredRunMedia": null, "reactionVideos": [], @@ -438259,7 +437910,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 12161987, "featuredRunMedia": null, "reactionVideos": [], @@ -438297,7 +437948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12162177, "featuredRunMedia": null, "reactionVideos": [], @@ -438319,7 +437970,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12164232, "featuredRunMedia": null, "reactionVideos": [], @@ -438357,7 +438008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12164397, "featuredRunMedia": null, "reactionVideos": [], @@ -438385,7 +438036,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 12164847, "featuredRunMedia": null, "reactionVideos": [], @@ -438423,7 +438074,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12166109, "featuredRunMedia": null, "reactionVideos": [], @@ -438461,7 +438112,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 96, + "teamId": "2742", "time": 12166464, "featuredRunMedia": null, "reactionVideos": [], @@ -438489,7 +438140,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 12166585, "featuredRunMedia": null, "reactionVideos": [], @@ -438527,7 +438178,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 12167085, "featuredRunMedia": null, "reactionVideos": [], @@ -438560,7 +438211,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 12170016, "featuredRunMedia": null, "reactionVideos": [], @@ -438593,7 +438244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "1353", "time": 12171206, "featuredRunMedia": null, "reactionVideos": [], @@ -438631,7 +438282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "2643", "time": 12172015, "featuredRunMedia": null, "reactionVideos": [], @@ -438664,7 +438315,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 148, + "teamId": "1151", "time": 12174854, "featuredRunMedia": null, "reactionVideos": [], @@ -438692,7 +438343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 12175851, "featuredRunMedia": null, "reactionVideos": [], @@ -438730,7 +438381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12176527, "featuredRunMedia": null, "reactionVideos": [], @@ -438763,7 +438414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 12179775, "featuredRunMedia": null, "reactionVideos": [], @@ -438801,7 +438452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 12183813, "featuredRunMedia": null, "reactionVideos": [], @@ -438829,7 +438480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 12184083, "featuredRunMedia": null, "reactionVideos": [], @@ -438867,7 +438518,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 12184762, "featuredRunMedia": null, "reactionVideos": [], @@ -438895,7 +438546,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 12184774, "featuredRunMedia": null, "reactionVideos": [], @@ -438933,7 +438584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 12184895, "featuredRunMedia": null, "reactionVideos": [], @@ -438961,7 +438612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12185028, "featuredRunMedia": null, "reactionVideos": [], @@ -438999,7 +438650,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12186700, "featuredRunMedia": null, "reactionVideos": [], @@ -439037,7 +438688,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12187540, "featuredRunMedia": null, "reactionVideos": [], @@ -439059,7 +438710,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 12188060, "featuredRunMedia": null, "reactionVideos": [], @@ -439097,7 +438748,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 12188226, "featuredRunMedia": null, "reactionVideos": [], @@ -439130,7 +438781,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 12188500, "featuredRunMedia": null, "reactionVideos": [], @@ -439168,7 +438819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12191166, "featuredRunMedia": null, "reactionVideos": [], @@ -439206,7 +438857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 12192603, "featuredRunMedia": null, "reactionVideos": [], @@ -439239,7 +438890,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 32, + "teamId": "3249", "time": 12193397, "featuredRunMedia": null, "reactionVideos": [], @@ -439272,7 +438923,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 12195192, "featuredRunMedia": null, "reactionVideos": [], @@ -439310,7 +438961,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 12195636, "featuredRunMedia": null, "reactionVideos": [], @@ -439348,7 +438999,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 12196053, "featuredRunMedia": null, "reactionVideos": [], @@ -439386,7 +439037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 12196790, "featuredRunMedia": null, "reactionVideos": [], @@ -439414,7 +439065,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 12196920, "featuredRunMedia": null, "reactionVideos": [], @@ -439452,7 +439103,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12197612, "featuredRunMedia": null, "reactionVideos": [], @@ -439480,7 +439131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 12198775, "featuredRunMedia": null, "reactionVideos": [], @@ -439518,7 +439169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12198974, "featuredRunMedia": null, "reactionVideos": [], @@ -439546,7 +439197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12199110, "featuredRunMedia": null, "reactionVideos": [], @@ -439584,7 +439235,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 12200373, "featuredRunMedia": null, "reactionVideos": [], @@ -439612,7 +439263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12202063, "featuredRunMedia": null, "reactionVideos": [], @@ -439650,7 +439301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12203474, "featuredRunMedia": null, "reactionVideos": [], @@ -439678,7 +439329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 12206502, "featuredRunMedia": null, "reactionVideos": [], @@ -439706,7 +439357,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 12207562, "featuredRunMedia": null, "reactionVideos": [], @@ -439744,7 +439395,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12208842, "featuredRunMedia": null, "reactionVideos": [], @@ -439782,7 +439433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12209140, "featuredRunMedia": null, "reactionVideos": [], @@ -439820,7 +439471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 12210367, "featuredRunMedia": null, "reactionVideos": [], @@ -439853,7 +439504,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 12211176, "featuredRunMedia": null, "reactionVideos": [], @@ -439891,7 +439542,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12211445, "featuredRunMedia": null, "reactionVideos": [], @@ -439919,7 +439570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 274, + "teamId": "3051", "time": 12213960, "featuredRunMedia": null, "reactionVideos": [], @@ -439941,7 +439592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 12216680, "featuredRunMedia": null, "reactionVideos": [], @@ -439969,7 +439620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 12216700, "featuredRunMedia": null, "reactionVideos": [], @@ -440007,7 +439658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 12217903, "featuredRunMedia": null, "reactionVideos": [], @@ -440045,7 +439696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12218238, "featuredRunMedia": null, "reactionVideos": [], @@ -440073,7 +439724,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 12218281, "featuredRunMedia": null, "reactionVideos": [], @@ -440101,7 +439752,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 12221138, "featuredRunMedia": null, "reactionVideos": [], @@ -440134,7 +439785,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 12222533, "featuredRunMedia": null, "reactionVideos": [], @@ -440167,7 +439818,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 262, + "teamId": "2352", "time": 12223738, "featuredRunMedia": null, "reactionVideos": [], @@ -440200,7 +439851,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "2852", "time": 12228246, "featuredRunMedia": null, "reactionVideos": [], @@ -440233,7 +439884,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12228971, "featuredRunMedia": null, "reactionVideos": [], @@ -440271,7 +439922,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 302, + "teamId": "2147", "time": 12229517, "featuredRunMedia": null, "reactionVideos": [], @@ -440299,7 +439950,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12229926, "featuredRunMedia": null, "reactionVideos": [], @@ -440337,7 +439988,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 12230283, "featuredRunMedia": null, "reactionVideos": [], @@ -440375,7 +440026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12230719, "featuredRunMedia": null, "reactionVideos": [], @@ -440413,7 +440064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 12231616, "featuredRunMedia": null, "reactionVideos": [], @@ -440441,7 +440092,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 12231675, "featuredRunMedia": null, "reactionVideos": [], @@ -440469,7 +440120,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12233217, "featuredRunMedia": null, "reactionVideos": [], @@ -440507,7 +440158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12234376, "featuredRunMedia": null, "reactionVideos": [], @@ -440535,7 +440186,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12235294, "featuredRunMedia": null, "reactionVideos": [], @@ -440573,7 +440224,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 12235885, "featuredRunMedia": null, "reactionVideos": [], @@ -440601,7 +440252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 12238074, "featuredRunMedia": null, "reactionVideos": [], @@ -440634,7 +440285,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12240073, "featuredRunMedia": null, "reactionVideos": [], @@ -440672,7 +440323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "2643", "time": 12242181, "featuredRunMedia": null, "reactionVideos": [], @@ -440710,7 +440361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12245254, "featuredRunMedia": null, "reactionVideos": [], @@ -440748,7 +440399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 12246930, "featuredRunMedia": null, "reactionVideos": [], @@ -440786,7 +440437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12247077, "featuredRunMedia": null, "reactionVideos": [], @@ -440814,7 +440465,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 43, + "teamId": "2749", "time": 12248343, "featuredRunMedia": null, "reactionVideos": [], @@ -440847,7 +440498,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12248532, "featuredRunMedia": null, "reactionVideos": [], @@ -440880,7 +440531,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 12249550, "featuredRunMedia": null, "reactionVideos": [], @@ -440908,7 +440559,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 12250856, "featuredRunMedia": null, "reactionVideos": [], @@ -440946,7 +440597,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 12252535, "featuredRunMedia": null, "reactionVideos": [], @@ -440974,7 +440625,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 12253191, "featuredRunMedia": null, "reactionVideos": [], @@ -441012,7 +440663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 12256570, "featuredRunMedia": null, "reactionVideos": [], @@ -441050,7 +440701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12257945, "featuredRunMedia": null, "reactionVideos": [], @@ -441078,7 +440729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 344, + "teamId": "1553", "time": 12258015, "featuredRunMedia": null, "reactionVideos": [], @@ -441106,7 +440757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 12260072, "featuredRunMedia": null, "reactionVideos": [], @@ -441139,7 +440790,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 159, + "teamId": "2348", "time": 12260262, "featuredRunMedia": null, "reactionVideos": [], @@ -441177,7 +440828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 12261766, "featuredRunMedia": null, "reactionVideos": [], @@ -441205,7 +440856,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 12262187, "featuredRunMedia": null, "reactionVideos": [], @@ -441233,7 +440884,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 12263577, "featuredRunMedia": null, "reactionVideos": [], @@ -441271,7 +440922,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12264023, "featuredRunMedia": null, "reactionVideos": [], @@ -441304,7 +440955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 12266912, "featuredRunMedia": null, "reactionVideos": [], @@ -441337,7 +440988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12268827, "featuredRunMedia": null, "reactionVideos": [], @@ -441365,7 +441016,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12270816, "featuredRunMedia": null, "reactionVideos": [], @@ -441393,7 +441044,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 12271138, "featuredRunMedia": null, "reactionVideos": [], @@ -441431,7 +441082,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 12272995, "featuredRunMedia": null, "reactionVideos": [], @@ -441469,7 +441120,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 12274500, "featuredRunMedia": null, "reactionVideos": [], @@ -441502,7 +441153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 12275956, "featuredRunMedia": null, "reactionVideos": [], @@ -441540,7 +441191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12276181, "featuredRunMedia": null, "reactionVideos": [], @@ -441573,7 +441224,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 12276588, "featuredRunMedia": null, "reactionVideos": [], @@ -441611,7 +441262,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 12276588, "featuredRunMedia": null, "reactionVideos": [], @@ -441644,7 +441295,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12277474, "featuredRunMedia": null, "reactionVideos": [], @@ -441682,7 +441333,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 12280031, "featuredRunMedia": null, "reactionVideos": [], @@ -441720,7 +441371,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 12281765, "featuredRunMedia": null, "reactionVideos": [], @@ -441758,7 +441409,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12282018, "featuredRunMedia": null, "reactionVideos": [], @@ -441796,7 +441447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 12283554, "featuredRunMedia": null, "reactionVideos": [], @@ -441834,7 +441485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 12285378, "featuredRunMedia": null, "reactionVideos": [], @@ -441872,7 +441523,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 12285646, "featuredRunMedia": null, "reactionVideos": [], @@ -441910,7 +441561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12291629, "featuredRunMedia": null, "reactionVideos": [], @@ -441938,7 +441589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12292907, "featuredRunMedia": null, "reactionVideos": [], @@ -441976,7 +441627,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 103, + "teamId": "1948", "time": 12294658, "featuredRunMedia": null, "reactionVideos": [], @@ -441998,7 +441649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 12295296, "featuredRunMedia": null, "reactionVideos": [], @@ -442026,7 +441677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 12296090, "featuredRunMedia": null, "reactionVideos": [], @@ -442054,7 +441705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12299024, "featuredRunMedia": null, "reactionVideos": [], @@ -442087,7 +441738,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 12303052, "featuredRunMedia": null, "reactionVideos": [], @@ -442125,7 +441776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12303272, "featuredRunMedia": null, "reactionVideos": [], @@ -442163,7 +441814,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 171, + "teamId": "1543", "time": 12303533, "featuredRunMedia": null, "reactionVideos": [], @@ -442201,7 +441852,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12303742, "featuredRunMedia": null, "reactionVideos": [], @@ -442239,7 +441890,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 12305508, "featuredRunMedia": null, "reactionVideos": [], @@ -442267,7 +441918,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12309542, "featuredRunMedia": null, "reactionVideos": [], @@ -442295,7 +441946,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12311993, "featuredRunMedia": null, "reactionVideos": [], @@ -442317,7 +441968,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 12313370, "featuredRunMedia": null, "reactionVideos": [], @@ -442339,7 +441990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12316136, "featuredRunMedia": null, "reactionVideos": [], @@ -442367,7 +442018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 12316215, "featuredRunMedia": null, "reactionVideos": [], @@ -442395,7 +442046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 12318263, "featuredRunMedia": null, "reactionVideos": [], @@ -442433,7 +442084,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 12319061, "featuredRunMedia": null, "reactionVideos": [], @@ -442461,7 +442112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 12319120, "featuredRunMedia": null, "reactionVideos": [], @@ -442494,7 +442145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 12319935, "featuredRunMedia": null, "reactionVideos": [], @@ -442522,7 +442173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 12320051, "featuredRunMedia": null, "reactionVideos": [], @@ -442550,7 +442201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 12320129, "featuredRunMedia": null, "reactionVideos": [], @@ -442578,7 +442229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 12321749, "featuredRunMedia": null, "reactionVideos": [], @@ -442616,7 +442267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 12322977, "featuredRunMedia": null, "reactionVideos": [], @@ -442654,7 +442305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12324601, "featuredRunMedia": null, "reactionVideos": [], @@ -442692,7 +442343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 12325775, "featuredRunMedia": null, "reactionVideos": [], @@ -442718,7 +442369,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 12326544, "featuredRunMedia": null, "reactionVideos": [], @@ -442756,7 +442407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 12327685, "featuredRunMedia": null, "reactionVideos": [], @@ -442794,7 +442445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 12329384, "featuredRunMedia": null, "reactionVideos": [], @@ -442832,7 +442483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 12329624, "featuredRunMedia": null, "reactionVideos": [], @@ -442865,7 +442516,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 12332427, "featuredRunMedia": null, "reactionVideos": [], @@ -442898,7 +442549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12334762, "featuredRunMedia": null, "reactionVideos": [], @@ -442936,7 +442587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12336280, "featuredRunMedia": null, "reactionVideos": [], @@ -442974,7 +442625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 12336341, "featuredRunMedia": null, "reactionVideos": [], @@ -443012,7 +442663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 12339176, "featuredRunMedia": null, "reactionVideos": [], @@ -443040,7 +442691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 12339517, "featuredRunMedia": null, "reactionVideos": [], @@ -443068,7 +442719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 12341907, "featuredRunMedia": null, "reactionVideos": [], @@ -443096,7 +442747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 12342194, "featuredRunMedia": null, "reactionVideos": [], @@ -443129,7 +442780,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12343220, "featuredRunMedia": null, "reactionVideos": [], @@ -443167,7 +442818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 12345816, "featuredRunMedia": null, "reactionVideos": [], @@ -443195,7 +442846,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12347133, "featuredRunMedia": null, "reactionVideos": [], @@ -443233,7 +442884,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 12347169, "featuredRunMedia": null, "reactionVideos": [], @@ -443261,7 +442912,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12349273, "featuredRunMedia": null, "reactionVideos": [], @@ -443299,7 +442950,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12350228, "featuredRunMedia": null, "reactionVideos": [], @@ -443337,7 +442988,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 12351548, "featuredRunMedia": null, "reactionVideos": [], @@ -443375,7 +443026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12354313, "featuredRunMedia": null, "reactionVideos": [], @@ -443413,7 +443064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12354323, "featuredRunMedia": null, "reactionVideos": [], @@ -443451,7 +443102,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12354620, "featuredRunMedia": null, "reactionVideos": [], @@ -443489,7 +443140,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 12356611, "featuredRunMedia": null, "reactionVideos": [], @@ -443522,7 +443173,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 12357912, "featuredRunMedia": null, "reactionVideos": [], @@ -443550,7 +443201,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12359096, "featuredRunMedia": null, "reactionVideos": [], @@ -443578,7 +443229,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 12361337, "featuredRunMedia": null, "reactionVideos": [], @@ -443616,7 +443267,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12363232, "featuredRunMedia": null, "reactionVideos": [], @@ -443654,7 +443305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 12363235, "featuredRunMedia": null, "reactionVideos": [], @@ -443687,7 +443338,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 12365051, "featuredRunMedia": null, "reactionVideos": [], @@ -443715,7 +443366,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 12365636, "featuredRunMedia": null, "reactionVideos": [], @@ -443737,7 +443388,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12365734, "featuredRunMedia": null, "reactionVideos": [], @@ -443775,7 +443426,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12366827, "featuredRunMedia": null, "reactionVideos": [], @@ -443813,7 +443464,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 12368727, "featuredRunMedia": null, "reactionVideos": [], @@ -443841,7 +443492,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 12369453, "featuredRunMedia": null, "reactionVideos": [], @@ -443869,7 +443520,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 12370649, "featuredRunMedia": null, "reactionVideos": [], @@ -443907,7 +443558,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "2854", "time": 12371356, "featuredRunMedia": null, "reactionVideos": [], @@ -443945,7 +443596,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12371452, "featuredRunMedia": null, "reactionVideos": [], @@ -443973,7 +443624,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 12374166, "featuredRunMedia": null, "reactionVideos": [], @@ -444001,7 +443652,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12374391, "featuredRunMedia": null, "reactionVideos": [], @@ -444039,7 +443690,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 12377360, "featuredRunMedia": null, "reactionVideos": [], @@ -444067,7 +443718,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 12379044, "featuredRunMedia": null, "reactionVideos": [], @@ -444100,7 +443751,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "2454", "time": 12380803, "featuredRunMedia": null, "reactionVideos": [], @@ -444128,7 +443779,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 12381392, "featuredRunMedia": null, "reactionVideos": [], @@ -444166,7 +443817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 12382431, "featuredRunMedia": null, "reactionVideos": [], @@ -444204,7 +443855,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 12382641, "featuredRunMedia": null, "reactionVideos": [], @@ -444242,7 +443893,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 12382877, "featuredRunMedia": null, "reactionVideos": [], @@ -444270,7 +443921,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 12383187, "featuredRunMedia": null, "reactionVideos": [], @@ -444298,7 +443949,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 312, + "teamId": "1754", "time": 12388682, "featuredRunMedia": null, "reactionVideos": [], @@ -444336,7 +443987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 12388935, "featuredRunMedia": null, "reactionVideos": [], @@ -444364,7 +444015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 12390264, "featuredRunMedia": null, "reactionVideos": [], @@ -444402,7 +444053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12392751, "featuredRunMedia": null, "reactionVideos": [], @@ -444435,7 +444086,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12393683, "featuredRunMedia": null, "reactionVideos": [], @@ -444468,7 +444119,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 12394593, "featuredRunMedia": null, "reactionVideos": [], @@ -444496,7 +444147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 12394911, "featuredRunMedia": null, "reactionVideos": [], @@ -444524,7 +444175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12395485, "featuredRunMedia": null, "reactionVideos": [], @@ -444552,7 +444203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12395977, "featuredRunMedia": null, "reactionVideos": [], @@ -444590,7 +444241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 12397802, "featuredRunMedia": null, "reactionVideos": [], @@ -444618,7 +444269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 12399574, "featuredRunMedia": null, "reactionVideos": [], @@ -444656,7 +444307,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 12400613, "featuredRunMedia": null, "reactionVideos": [], @@ -444694,7 +444345,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 12401020, "featuredRunMedia": null, "reactionVideos": [], @@ -444732,7 +444383,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12401392, "featuredRunMedia": null, "reactionVideos": [], @@ -444760,7 +444411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 64, + "teamId": "1647", "time": 12404800, "featuredRunMedia": null, "reactionVideos": [], @@ -444788,7 +444439,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 12405452, "featuredRunMedia": null, "reactionVideos": [], @@ -444816,7 +444467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 12406039, "featuredRunMedia": null, "reactionVideos": [], @@ -444854,7 +444505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 12407456, "featuredRunMedia": null, "reactionVideos": [], @@ -444876,7 +444527,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 12410183, "featuredRunMedia": null, "reactionVideos": [], @@ -444909,7 +444560,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "2852", "time": 12410732, "featuredRunMedia": null, "reactionVideos": [], @@ -444947,7 +444598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12411911, "featuredRunMedia": null, "reactionVideos": [], @@ -444975,7 +444626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 12413320, "featuredRunMedia": null, "reactionVideos": [], @@ -445013,7 +444664,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 12413865, "featuredRunMedia": null, "reactionVideos": [], @@ -445041,7 +444692,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 12415476, "featuredRunMedia": null, "reactionVideos": [], @@ -445069,7 +444720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 12416607, "featuredRunMedia": null, "reactionVideos": [], @@ -445097,7 +444748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12418932, "featuredRunMedia": null, "reactionVideos": [], @@ -445135,7 +444786,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "1653", "time": 12419918, "featuredRunMedia": null, "reactionVideos": [], @@ -445163,7 +444814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 12420174, "featuredRunMedia": null, "reactionVideos": [], @@ -445201,7 +444852,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 12422167, "featuredRunMedia": null, "reactionVideos": [], @@ -445239,7 +444890,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 12422278, "featuredRunMedia": null, "reactionVideos": [], @@ -445277,7 +444928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "2847", "time": 12423933, "featuredRunMedia": null, "reactionVideos": [], @@ -445305,7 +444956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 12424682, "featuredRunMedia": null, "reactionVideos": [], @@ -445338,7 +444989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 12426385, "featuredRunMedia": null, "reactionVideos": [], @@ -445371,7 +445022,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 12427237, "featuredRunMedia": null, "reactionVideos": [], @@ -445404,7 +445055,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 12427727, "featuredRunMedia": null, "reactionVideos": [], @@ -445442,7 +445093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 12428321, "featuredRunMedia": null, "reactionVideos": [], @@ -445480,7 +445131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12429004, "featuredRunMedia": null, "reactionVideos": [], @@ -445508,7 +445159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 12430229, "featuredRunMedia": null, "reactionVideos": [], @@ -445530,7 +445181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 115, + "teamId": "2745", "time": 12432618, "featuredRunMedia": null, "reactionVideos": [], @@ -445558,7 +445209,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12433277, "featuredRunMedia": null, "reactionVideos": [], @@ -445586,7 +445237,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 12433768, "featuredRunMedia": null, "reactionVideos": [], @@ -445624,7 +445275,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12434717, "featuredRunMedia": null, "reactionVideos": [], @@ -445657,7 +445308,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12436772, "featuredRunMedia": null, "reactionVideos": [], @@ -445695,7 +445346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 12436833, "featuredRunMedia": null, "reactionVideos": [], @@ -445723,7 +445374,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12437261, "featuredRunMedia": null, "reactionVideos": [], @@ -445751,7 +445402,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 12437607, "featuredRunMedia": null, "reactionVideos": [], @@ -445789,7 +445440,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12442960, "featuredRunMedia": null, "reactionVideos": [], @@ -445817,7 +445468,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 12445230, "featuredRunMedia": null, "reactionVideos": [], @@ -445855,7 +445506,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12445789, "featuredRunMedia": null, "reactionVideos": [], @@ -445883,7 +445534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12448344, "featuredRunMedia": null, "reactionVideos": [], @@ -445916,7 +445567,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12448456, "featuredRunMedia": null, "reactionVideos": [], @@ -445954,7 +445605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12450045, "featuredRunMedia": null, "reactionVideos": [], @@ -445982,7 +445633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12452482, "featuredRunMedia": null, "reactionVideos": [], @@ -446010,7 +445661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 12452617, "featuredRunMedia": null, "reactionVideos": [], @@ -446036,7 +445687,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 12453390, "featuredRunMedia": null, "reactionVideos": [], @@ -446074,7 +445725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 12455011, "featuredRunMedia": null, "reactionVideos": [], @@ -446112,7 +445763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 12458382, "featuredRunMedia": null, "reactionVideos": [], @@ -446145,7 +445796,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 292, + "teamId": "1348", "time": 12458565, "featuredRunMedia": null, "reactionVideos": [], @@ -446178,7 +445829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 12462316, "featuredRunMedia": null, "reactionVideos": [], @@ -446216,7 +445867,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12462823, "featuredRunMedia": null, "reactionVideos": [], @@ -446244,7 +445895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "1949", "time": 12463151, "featuredRunMedia": null, "reactionVideos": [], @@ -446282,7 +445933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 12463923, "featuredRunMedia": null, "reactionVideos": [], @@ -446310,7 +445961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12464173, "featuredRunMedia": null, "reactionVideos": [], @@ -446343,7 +445994,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 12465258, "featuredRunMedia": null, "reactionVideos": [], @@ -446381,7 +446032,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 12465526, "featuredRunMedia": null, "reactionVideos": [], @@ -446409,7 +446060,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12468839, "featuredRunMedia": null, "reactionVideos": [], @@ -446442,7 +446093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 12470838, "featuredRunMedia": null, "reactionVideos": [], @@ -446470,7 +446121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12471676, "featuredRunMedia": null, "reactionVideos": [], @@ -446503,7 +446154,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 12474573, "featuredRunMedia": null, "reactionVideos": [], @@ -446536,7 +446187,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 12475709, "featuredRunMedia": null, "reactionVideos": [], @@ -446574,7 +446225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 283, + "teamId": "1242", "time": 12476135, "featuredRunMedia": null, "reactionVideos": [], @@ -446602,7 +446253,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 12477530, "featuredRunMedia": null, "reactionVideos": [], @@ -446630,7 +446281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 12480986, "featuredRunMedia": null, "reactionVideos": [], @@ -446658,7 +446309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 12481504, "featuredRunMedia": null, "reactionVideos": [], @@ -446686,7 +446337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 12482082, "featuredRunMedia": null, "reactionVideos": [], @@ -446714,7 +446365,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 12482183, "featuredRunMedia": null, "reactionVideos": [], @@ -446752,7 +446403,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12485886, "featuredRunMedia": null, "reactionVideos": [], @@ -446790,7 +446441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 12486273, "featuredRunMedia": null, "reactionVideos": [], @@ -446818,7 +446469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12486711, "featuredRunMedia": null, "reactionVideos": [], @@ -446846,7 +446497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 12486855, "featuredRunMedia": null, "reactionVideos": [], @@ -446884,7 +446535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 12487691, "featuredRunMedia": null, "reactionVideos": [], @@ -446922,7 +446573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12487836, "featuredRunMedia": null, "reactionVideos": [], @@ -446960,7 +446611,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 12488445, "featuredRunMedia": null, "reactionVideos": [], @@ -446993,7 +446644,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12489200, "featuredRunMedia": null, "reactionVideos": [], @@ -447031,7 +446682,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12494049, "featuredRunMedia": null, "reactionVideos": [], @@ -447059,7 +446710,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 12495423, "featuredRunMedia": null, "reactionVideos": [], @@ -447092,7 +446743,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 12498878, "featuredRunMedia": null, "reactionVideos": [], @@ -447130,7 +446781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12500965, "featuredRunMedia": null, "reactionVideos": [], @@ -447168,7 +446819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12502980, "featuredRunMedia": null, "reactionVideos": [], @@ -447196,7 +446847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 12503065, "featuredRunMedia": null, "reactionVideos": [], @@ -447224,7 +446875,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12503217, "featuredRunMedia": null, "reactionVideos": [], @@ -447262,7 +446913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "2046", "time": 12503509, "featuredRunMedia": null, "reactionVideos": [], @@ -447290,7 +446941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 12503637, "featuredRunMedia": null, "reactionVideos": [], @@ -447328,7 +446979,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12505190, "featuredRunMedia": null, "reactionVideos": [], @@ -447366,7 +447017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 12505409, "featuredRunMedia": null, "reactionVideos": [], @@ -447394,7 +447045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 137, + "teamId": "3252", "time": 12506035, "featuredRunMedia": null, "reactionVideos": [], @@ -447422,7 +447073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12506349, "featuredRunMedia": null, "reactionVideos": [], @@ -447460,7 +447111,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 345, + "teamId": "2854", "time": 12509424, "featuredRunMedia": null, "reactionVideos": [], @@ -447488,7 +447139,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 12510605, "featuredRunMedia": null, "reactionVideos": [], @@ -447521,7 +447172,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12511202, "featuredRunMedia": null, "reactionVideos": [], @@ -447559,7 +447210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 12512360, "featuredRunMedia": null, "reactionVideos": [], @@ -447592,7 +447243,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 12513610, "featuredRunMedia": null, "reactionVideos": [], @@ -447620,7 +447271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 12513726, "featuredRunMedia": null, "reactionVideos": [], @@ -447653,7 +447304,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 12516421, "featuredRunMedia": null, "reactionVideos": [], @@ -447681,7 +447332,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 12517414, "featuredRunMedia": null, "reactionVideos": [], @@ -447719,7 +447370,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 12519640, "featuredRunMedia": null, "reactionVideos": [], @@ -447757,7 +447408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 12519660, "featuredRunMedia": null, "reactionVideos": [], @@ -447795,7 +447446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 12521384, "featuredRunMedia": null, "reactionVideos": [], @@ -447833,7 +447484,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12522831, "featuredRunMedia": null, "reactionVideos": [], @@ -447866,7 +447517,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 12523290, "featuredRunMedia": null, "reactionVideos": [], @@ -447904,7 +447555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 12525131, "featuredRunMedia": null, "reactionVideos": [], @@ -447932,7 +447583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 12525564, "featuredRunMedia": null, "reactionVideos": [], @@ -447970,7 +447621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 1, + "teamId": "2847", "time": 12528305, "featuredRunMedia": null, "reactionVideos": [], @@ -448008,7 +447659,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 12528432, "featuredRunMedia": null, "reactionVideos": [], @@ -448046,7 +447697,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 12529317, "featuredRunMedia": null, "reactionVideos": [], @@ -448084,7 +447735,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12533588, "featuredRunMedia": null, "reactionVideos": [], @@ -448117,7 +447768,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 12534806, "featuredRunMedia": null, "reactionVideos": [], @@ -448155,7 +447806,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12534983, "featuredRunMedia": null, "reactionVideos": [], @@ -448177,7 +447828,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 12535293, "featuredRunMedia": null, "reactionVideos": [], @@ -448205,7 +447856,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "1444", "time": 12536203, "featuredRunMedia": null, "reactionVideos": [], @@ -448227,7 +447878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 12537856, "featuredRunMedia": null, "reactionVideos": [], @@ -448265,7 +447916,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 12539688, "featuredRunMedia": null, "reactionVideos": [], @@ -448298,7 +447949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 12539981, "featuredRunMedia": null, "reactionVideos": [], @@ -448331,7 +447982,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12540265, "featuredRunMedia": null, "reactionVideos": [], @@ -448369,7 +448020,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 12540493, "featuredRunMedia": null, "reactionVideos": [], @@ -448407,7 +448058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12542237, "featuredRunMedia": null, "reactionVideos": [], @@ -448440,7 +448091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "1145", "time": 12543481, "featuredRunMedia": null, "reactionVideos": [], @@ -448478,7 +448129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 12544567, "featuredRunMedia": null, "reactionVideos": [], @@ -448511,7 +448162,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 12546068, "featuredRunMedia": null, "reactionVideos": [], @@ -448549,7 +448200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 12547866, "featuredRunMedia": null, "reactionVideos": [], @@ -448587,7 +448238,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 12547866, "featuredRunMedia": null, "reactionVideos": [], @@ -448625,7 +448276,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 12548960, "featuredRunMedia": null, "reactionVideos": [], @@ -448658,7 +448309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 12549710, "featuredRunMedia": null, "reactionVideos": [], @@ -448691,7 +448342,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 12550276, "featuredRunMedia": null, "reactionVideos": [], @@ -448729,7 +448380,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12550895, "featuredRunMedia": null, "reactionVideos": [], @@ -448767,7 +448418,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12552207, "featuredRunMedia": null, "reactionVideos": [], @@ -448800,7 +448451,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 12552857, "featuredRunMedia": null, "reactionVideos": [], @@ -448838,7 +448489,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12554650, "featuredRunMedia": null, "reactionVideos": [], @@ -448866,7 +448517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 182, + "teamId": "1946", "time": 12556303, "featuredRunMedia": null, "reactionVideos": [], @@ -448894,7 +448545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 12556633, "featuredRunMedia": null, "reactionVideos": [], @@ -448922,7 +448573,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 12558890, "featuredRunMedia": null, "reactionVideos": [], @@ -448955,7 +448606,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 12559319, "featuredRunMedia": null, "reactionVideos": [], @@ -448993,7 +448644,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12559967, "featuredRunMedia": null, "reactionVideos": [], @@ -449031,7 +448682,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12560329, "featuredRunMedia": null, "reactionVideos": [], @@ -449069,7 +448720,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12561079, "featuredRunMedia": null, "reactionVideos": [], @@ -449097,7 +448748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 12561200, "featuredRunMedia": null, "reactionVideos": [], @@ -449135,7 +448786,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 12562643, "featuredRunMedia": null, "reactionVideos": [], @@ -449168,7 +448819,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 12565757, "featuredRunMedia": null, "reactionVideos": [], @@ -449196,7 +448847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 12566024, "featuredRunMedia": null, "reactionVideos": [], @@ -449229,7 +448880,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "2152", "time": 12567001, "featuredRunMedia": null, "reactionVideos": [], @@ -449262,7 +448913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12569205, "featuredRunMedia": null, "reactionVideos": [], @@ -449290,7 +448941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "3241", "time": 12569342, "featuredRunMedia": null, "reactionVideos": [], @@ -449318,7 +448969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 12569470, "featuredRunMedia": null, "reactionVideos": [], @@ -449346,7 +448997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 12573033, "featuredRunMedia": null, "reactionVideos": [], @@ -449374,7 +449025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 12575337, "featuredRunMedia": null, "reactionVideos": [], @@ -449407,7 +449058,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 12578208, "featuredRunMedia": null, "reactionVideos": [], @@ -449445,7 +449096,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 12579589, "featuredRunMedia": null, "reactionVideos": [], @@ -449473,7 +449124,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 12580430, "featuredRunMedia": null, "reactionVideos": [], @@ -449511,7 +449162,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 12581274, "featuredRunMedia": null, "reactionVideos": [], @@ -449544,7 +449195,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12581896, "featuredRunMedia": null, "reactionVideos": [], @@ -449572,7 +449223,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12582114, "featuredRunMedia": null, "reactionVideos": [], @@ -449600,7 +449251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 325, + "teamId": "1444", "time": 12582547, "featuredRunMedia": null, "reactionVideos": [], @@ -449633,7 +449284,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 12582655, "featuredRunMedia": null, "reactionVideos": [], @@ -449661,7 +449312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 12583579, "featuredRunMedia": null, "reactionVideos": [], @@ -449699,7 +449350,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12585243, "featuredRunMedia": null, "reactionVideos": [], @@ -449732,7 +449383,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "1847", "time": 12586932, "featuredRunMedia": null, "reactionVideos": [], @@ -449760,7 +449411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 12587712, "featuredRunMedia": null, "reactionVideos": [], @@ -449798,7 +449449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 12589949, "featuredRunMedia": null, "reactionVideos": [], @@ -449826,7 +449477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12591391, "featuredRunMedia": null, "reactionVideos": [], @@ -449854,7 +449505,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 12593936, "featuredRunMedia": null, "reactionVideos": [], @@ -449892,7 +449543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12594619, "featuredRunMedia": null, "reactionVideos": [], @@ -449930,7 +449581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 12596946, "featuredRunMedia": null, "reactionVideos": [], @@ -449968,7 +449619,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 12598253, "featuredRunMedia": null, "reactionVideos": [], @@ -450006,7 +449657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "2046", "time": 12600128, "featuredRunMedia": null, "reactionVideos": [], @@ -450044,7 +449695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12600303, "featuredRunMedia": null, "reactionVideos": [], @@ -450082,7 +449733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 12601894, "featuredRunMedia": null, "reactionVideos": [], @@ -450120,7 +449771,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12607095, "featuredRunMedia": null, "reactionVideos": [], @@ -450158,7 +449809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 12608489, "featuredRunMedia": null, "reactionVideos": [], @@ -450186,7 +449837,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12608695, "featuredRunMedia": null, "reactionVideos": [], @@ -450219,7 +449870,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 12609042, "featuredRunMedia": null, "reactionVideos": [], @@ -450257,7 +449908,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 50, + "teamId": "1450", "time": 12612344, "featuredRunMedia": null, "reactionVideos": [], @@ -450285,7 +449936,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 12613820, "featuredRunMedia": null, "reactionVideos": [], @@ -450313,7 +449964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 12614193, "featuredRunMedia": null, "reactionVideos": [], @@ -450351,7 +450002,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 12614875, "featuredRunMedia": null, "reactionVideos": [], @@ -450379,7 +450030,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 12615516, "featuredRunMedia": null, "reactionVideos": [], @@ -450407,7 +450058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 12617481, "featuredRunMedia": null, "reactionVideos": [], @@ -450440,7 +450091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 12619912, "featuredRunMedia": null, "reactionVideos": [], @@ -450478,7 +450129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 12623883, "featuredRunMedia": null, "reactionVideos": [], @@ -450511,7 +450162,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12624092, "featuredRunMedia": null, "reactionVideos": [], @@ -450549,7 +450200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 12625121, "featuredRunMedia": null, "reactionVideos": [], @@ -450587,7 +450238,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 12625827, "featuredRunMedia": null, "reactionVideos": [], @@ -450625,7 +450276,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 12627247, "featuredRunMedia": null, "reactionVideos": [], @@ -450663,7 +450314,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12627971, "featuredRunMedia": null, "reactionVideos": [], @@ -450691,7 +450342,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 12628247, "featuredRunMedia": null, "reactionVideos": [], @@ -450719,7 +450370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 12629303, "featuredRunMedia": null, "reactionVideos": [], @@ -450757,7 +450408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 12630997, "featuredRunMedia": null, "reactionVideos": [], @@ -450790,7 +450441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 12639475, "featuredRunMedia": null, "reactionVideos": [], @@ -450828,7 +450479,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 12639815, "featuredRunMedia": null, "reactionVideos": [], @@ -450856,7 +450507,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 12640084, "featuredRunMedia": null, "reactionVideos": [], @@ -450889,7 +450540,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 12640421, "featuredRunMedia": null, "reactionVideos": [], @@ -450917,7 +450568,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 12641651, "featuredRunMedia": null, "reactionVideos": [], @@ -450950,7 +450601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12643590, "featuredRunMedia": null, "reactionVideos": [], @@ -450988,7 +450639,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 12645369, "featuredRunMedia": null, "reactionVideos": [], @@ -451026,7 +450677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 261, + "teamId": "1943", "time": 12645470, "featuredRunMedia": null, "reactionVideos": [], @@ -451054,7 +450705,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12646465, "featuredRunMedia": null, "reactionVideos": [], @@ -451092,7 +450743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12646500, "featuredRunMedia": null, "reactionVideos": [], @@ -451125,7 +450776,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 264, + "teamId": "2651", "time": 12647099, "featuredRunMedia": null, "reactionVideos": [], @@ -451163,7 +450814,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 12647248, "featuredRunMedia": null, "reactionVideos": [], @@ -451191,7 +450842,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 12653016, "featuredRunMedia": null, "reactionVideos": [], @@ -451224,7 +450875,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 12653853, "featuredRunMedia": null, "reactionVideos": [], @@ -451262,7 +450913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "3255", "time": 12655025, "featuredRunMedia": null, "reactionVideos": [], @@ -451295,7 +450946,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 12656779, "featuredRunMedia": null, "reactionVideos": [], @@ -451323,7 +450974,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 12656838, "featuredRunMedia": null, "reactionVideos": [], @@ -451356,7 +451007,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 121, + "teamId": "1847", "time": 12657936, "featuredRunMedia": null, "reactionVideos": [], @@ -451389,7 +451040,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 12659201, "featuredRunMedia": null, "reactionVideos": [], @@ -451427,7 +451078,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 12659447, "featuredRunMedia": null, "reactionVideos": [], @@ -451455,7 +451106,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12659634, "featuredRunMedia": null, "reactionVideos": [], @@ -451483,7 +451134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12660732, "featuredRunMedia": null, "reactionVideos": [], @@ -451511,7 +451162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 12662242, "featuredRunMedia": null, "reactionVideos": [], @@ -451539,7 +451190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 12662424, "featuredRunMedia": null, "reactionVideos": [], @@ -451577,7 +451228,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 12662568, "featuredRunMedia": null, "reactionVideos": [], @@ -451615,7 +451266,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12664371, "featuredRunMedia": null, "reactionVideos": [], @@ -451653,7 +451304,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 12666119, "featuredRunMedia": null, "reactionVideos": [], @@ -451691,7 +451342,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 12666319, "featuredRunMedia": null, "reactionVideos": [], @@ -451729,7 +451380,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "1652", "time": 12668310, "featuredRunMedia": null, "reactionVideos": [], @@ -451757,7 +451408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 12670658, "featuredRunMedia": null, "reactionVideos": [], @@ -451790,7 +451441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "2152", "time": 12671285, "featuredRunMedia": null, "reactionVideos": [], @@ -451818,7 +451469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 12672753, "featuredRunMedia": null, "reactionVideos": [], @@ -451846,7 +451497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 12673248, "featuredRunMedia": null, "reactionVideos": [], @@ -451868,7 +451519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 12674713, "featuredRunMedia": null, "reactionVideos": [], @@ -451906,7 +451557,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 12676303, "featuredRunMedia": null, "reactionVideos": [], @@ -451944,7 +451595,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12678963, "featuredRunMedia": null, "reactionVideos": [], @@ -451972,7 +451623,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 12680553, "featuredRunMedia": null, "reactionVideos": [], @@ -452005,7 +451656,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 12681074, "featuredRunMedia": null, "reactionVideos": [], @@ -452043,7 +451694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12683218, "featuredRunMedia": null, "reactionVideos": [], @@ -452076,7 +451727,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 12685435, "featuredRunMedia": null, "reactionVideos": [], @@ -452109,7 +451760,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 12688002, "featuredRunMedia": null, "reactionVideos": [], @@ -452137,7 +451788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 12689135, "featuredRunMedia": null, "reactionVideos": [], @@ -452165,7 +451816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 12689237, "featuredRunMedia": null, "reactionVideos": [], @@ -452203,7 +451854,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "1653", "time": 12694032, "featuredRunMedia": null, "reactionVideos": [], @@ -452231,7 +451882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 308, + "teamId": "1648", "time": 12694666, "featuredRunMedia": null, "reactionVideos": [], @@ -452259,7 +451910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "2455", "time": 12695320, "featuredRunMedia": null, "reactionVideos": [], @@ -452297,7 +451948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12695553, "featuredRunMedia": null, "reactionVideos": [], @@ -452335,7 +451986,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12695563, "featuredRunMedia": null, "reactionVideos": [], @@ -452368,7 +452019,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12696670, "featuredRunMedia": null, "reactionVideos": [], @@ -452406,7 +452057,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 12696694, "featuredRunMedia": null, "reactionVideos": [], @@ -452434,7 +452085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 12697888, "featuredRunMedia": null, "reactionVideos": [], @@ -452462,7 +452113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 12698534, "featuredRunMedia": null, "reactionVideos": [], @@ -452500,7 +452151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 12700841, "featuredRunMedia": null, "reactionVideos": [], @@ -452528,7 +452179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12703552, "featuredRunMedia": null, "reactionVideos": [], @@ -452556,7 +452207,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12706166, "featuredRunMedia": null, "reactionVideos": [], @@ -452594,7 +452245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12708077, "featuredRunMedia": null, "reactionVideos": [], @@ -452622,7 +452273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12709017, "featuredRunMedia": null, "reactionVideos": [], @@ -452650,7 +452301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12709304, "featuredRunMedia": null, "reactionVideos": [], @@ -452678,7 +452329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 12711379, "featuredRunMedia": null, "reactionVideos": [], @@ -452711,7 +452362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 12716270, "featuredRunMedia": null, "reactionVideos": [], @@ -452749,7 +452400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 313, + "teamId": "2054", "time": 12716972, "featuredRunMedia": null, "reactionVideos": [], @@ -452782,7 +452433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 12721307, "featuredRunMedia": null, "reactionVideos": [], @@ -452820,7 +452471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 12721331, "featuredRunMedia": null, "reactionVideos": [], @@ -452846,7 +452497,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 12721791, "featuredRunMedia": null, "reactionVideos": [], @@ -452879,7 +452530,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 107, + "teamId": "1952", "time": 12722887, "featuredRunMedia": null, "reactionVideos": [], @@ -452917,7 +452568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 12723410, "featuredRunMedia": null, "reactionVideos": [], @@ -452945,7 +452596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 12723664, "featuredRunMedia": null, "reactionVideos": [], @@ -452983,7 +452634,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12724801, "featuredRunMedia": null, "reactionVideos": [], @@ -453021,7 +452672,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 12727346, "featuredRunMedia": null, "reactionVideos": [], @@ -453059,7 +452710,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 12727830, "featuredRunMedia": null, "reactionVideos": [], @@ -453092,7 +452743,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 12728142, "featuredRunMedia": null, "reactionVideos": [], @@ -453120,7 +452771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "2455", "time": 12729834, "featuredRunMedia": null, "reactionVideos": [], @@ -453158,7 +452809,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 12731711, "featuredRunMedia": null, "reactionVideos": [], @@ -453196,7 +452847,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12732442, "featuredRunMedia": null, "reactionVideos": [], @@ -453224,7 +452875,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12734835, "featuredRunMedia": null, "reactionVideos": [], @@ -453262,7 +452913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 343, + "teamId": "1844", "time": 12734918, "featuredRunMedia": null, "reactionVideos": [], @@ -453300,7 +452951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 12735135, "featuredRunMedia": null, "reactionVideos": [], @@ -453328,7 +452979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 12737526, "featuredRunMedia": null, "reactionVideos": [], @@ -453366,7 +453017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12738224, "featuredRunMedia": null, "reactionVideos": [], @@ -453404,7 +453055,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 12738679, "featuredRunMedia": null, "reactionVideos": [], @@ -453442,7 +453093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 12740945, "featuredRunMedia": null, "reactionVideos": [], @@ -453480,7 +453131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12741072, "featuredRunMedia": null, "reactionVideos": [], @@ -453518,7 +453169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12742579, "featuredRunMedia": null, "reactionVideos": [], @@ -453551,7 +453202,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "1741", "time": 12743441, "featuredRunMedia": null, "reactionVideos": [], @@ -453589,7 +453240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "3255", "time": 12743628, "featuredRunMedia": null, "reactionVideos": [], @@ -453627,7 +453278,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12744014, "featuredRunMedia": null, "reactionVideos": [], @@ -453655,7 +453306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 12744902, "featuredRunMedia": null, "reactionVideos": [], @@ -453693,7 +453344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12746329, "featuredRunMedia": null, "reactionVideos": [], @@ -453731,7 +453382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 12748017, "featuredRunMedia": null, "reactionVideos": [], @@ -453759,7 +453410,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 12749328, "featuredRunMedia": null, "reactionVideos": [], @@ -453797,7 +453448,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "3149", "time": 12749837, "featuredRunMedia": null, "reactionVideos": [], @@ -453835,7 +453486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 12750297, "featuredRunMedia": null, "reactionVideos": [], @@ -453873,7 +453524,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12751107, "featuredRunMedia": null, "reactionVideos": [], @@ -453901,7 +453552,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 12751313, "featuredRunMedia": null, "reactionVideos": [], @@ -453934,7 +453585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 12753182, "featuredRunMedia": null, "reactionVideos": [], @@ -453972,7 +453623,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 53, + "teamId": "1643", "time": 12754367, "featuredRunMedia": null, "reactionVideos": [], @@ -454010,7 +453661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "2154", "time": 12754382, "featuredRunMedia": null, "reactionVideos": [], @@ -454043,7 +453694,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 12754404, "featuredRunMedia": null, "reactionVideos": [], @@ -454081,7 +453732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 12754712, "featuredRunMedia": null, "reactionVideos": [], @@ -454119,7 +453770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 12756356, "featuredRunMedia": null, "reactionVideos": [], @@ -454157,7 +453808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12760798, "featuredRunMedia": null, "reactionVideos": [], @@ -454190,7 +453841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 12761999, "featuredRunMedia": null, "reactionVideos": [], @@ -454228,7 +453879,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12762382, "featuredRunMedia": null, "reactionVideos": [], @@ -454256,7 +453907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 12764317, "featuredRunMedia": null, "reactionVideos": [], @@ -454294,7 +453945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12766452, "featuredRunMedia": null, "reactionVideos": [], @@ -454327,7 +453978,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 122, + "teamId": "2145", "time": 12768520, "featuredRunMedia": null, "reactionVideos": [], @@ -454360,7 +454011,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12768544, "featuredRunMedia": null, "reactionVideos": [], @@ -454398,7 +454049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 12770490, "featuredRunMedia": null, "reactionVideos": [], @@ -454426,7 +454077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12771695, "featuredRunMedia": null, "reactionVideos": [], @@ -454459,7 +454110,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 12771900, "featuredRunMedia": null, "reactionVideos": [], @@ -454497,7 +454148,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 12773737, "featuredRunMedia": null, "reactionVideos": [], @@ -454519,7 +454170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 73, + "teamId": "3144", "time": 12774224, "featuredRunMedia": null, "reactionVideos": [], @@ -454547,7 +454198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 12774483, "featuredRunMedia": null, "reactionVideos": [], @@ -454575,7 +454226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12774690, "featuredRunMedia": null, "reactionVideos": [], @@ -454613,7 +454264,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "3255", "time": 12775316, "featuredRunMedia": null, "reactionVideos": [], @@ -454651,7 +454302,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 12777156, "featuredRunMedia": null, "reactionVideos": [], @@ -454679,7 +454330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12777913, "featuredRunMedia": null, "reactionVideos": [], @@ -454712,7 +454363,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 12779372, "featuredRunMedia": null, "reactionVideos": [], @@ -454745,7 +454396,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 12783497, "featuredRunMedia": null, "reactionVideos": [], @@ -454783,7 +454434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 12784824, "featuredRunMedia": null, "reactionVideos": [], @@ -454809,7 +454460,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 12785234, "featuredRunMedia": null, "reactionVideos": [], @@ -454847,7 +454498,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 12785759, "featuredRunMedia": null, "reactionVideos": [], @@ -454885,7 +454536,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 12785800, "featuredRunMedia": null, "reactionVideos": [], @@ -454923,7 +454574,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 12786871, "featuredRunMedia": null, "reactionVideos": [], @@ -454951,7 +454602,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12786913, "featuredRunMedia": null, "reactionVideos": [], @@ -454989,7 +454640,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 12788116, "featuredRunMedia": null, "reactionVideos": [], @@ -455022,7 +454673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 12790082, "featuredRunMedia": null, "reactionVideos": [], @@ -455050,7 +454701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12790239, "featuredRunMedia": null, "reactionVideos": [], @@ -455078,7 +454729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 12790552, "featuredRunMedia": null, "reactionVideos": [], @@ -455116,7 +454767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12791396, "featuredRunMedia": null, "reactionVideos": [], @@ -455144,7 +454795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 12791854, "featuredRunMedia": null, "reactionVideos": [], @@ -455172,7 +454823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 12792368, "featuredRunMedia": null, "reactionVideos": [], @@ -455210,7 +454861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 12796953, "featuredRunMedia": null, "reactionVideos": [], @@ -455248,7 +454899,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12800145, "featuredRunMedia": null, "reactionVideos": [], @@ -455281,7 +454932,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12800902, "featuredRunMedia": null, "reactionVideos": [], @@ -455319,7 +454970,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 12801887, "featuredRunMedia": null, "reactionVideos": [], @@ -455357,7 +455008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12803647, "featuredRunMedia": null, "reactionVideos": [], @@ -455390,7 +455041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 12804419, "featuredRunMedia": null, "reactionVideos": [], @@ -455428,7 +455079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12806426, "featuredRunMedia": null, "reactionVideos": [], @@ -455461,7 +455112,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 12810630, "featuredRunMedia": null, "reactionVideos": [], @@ -455489,7 +455140,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 12811477, "featuredRunMedia": null, "reactionVideos": [], @@ -455517,7 +455168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 284, + "teamId": "1349", "time": 12811794, "featuredRunMedia": null, "reactionVideos": [], @@ -455555,7 +455206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 12812147, "featuredRunMedia": null, "reactionVideos": [], @@ -455593,7 +455244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 12816608, "featuredRunMedia": null, "reactionVideos": [], @@ -455621,7 +455272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 12818644, "featuredRunMedia": null, "reactionVideos": [], @@ -455659,7 +455310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 12820823, "featuredRunMedia": null, "reactionVideos": [], @@ -455697,7 +455348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "2056", "time": 12821848, "featuredRunMedia": null, "reactionVideos": [], @@ -455735,7 +455386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 12822695, "featuredRunMedia": null, "reactionVideos": [], @@ -455763,7 +455414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 273, + "teamId": "2247", "time": 12823532, "featuredRunMedia": null, "reactionVideos": [], @@ -455791,7 +455442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 12826433, "featuredRunMedia": null, "reactionVideos": [], @@ -455817,7 +455468,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 12827870, "featuredRunMedia": null, "reactionVideos": [], @@ -455839,7 +455490,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12828205, "featuredRunMedia": null, "reactionVideos": [], @@ -455877,7 +455528,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 12830010, "featuredRunMedia": null, "reactionVideos": [], @@ -455905,7 +455556,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 12831644, "featuredRunMedia": null, "reactionVideos": [], @@ -455943,7 +455594,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 12831792, "featuredRunMedia": null, "reactionVideos": [], @@ -455971,7 +455622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12834851, "featuredRunMedia": null, "reactionVideos": [], @@ -455999,7 +455650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 12835464, "featuredRunMedia": null, "reactionVideos": [], @@ -456027,7 +455678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 12835694, "featuredRunMedia": null, "reactionVideos": [], @@ -456055,7 +455706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 12837194, "featuredRunMedia": null, "reactionVideos": [], @@ -456093,7 +455744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 12839402, "featuredRunMedia": null, "reactionVideos": [], @@ -456131,7 +455782,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12840138, "featuredRunMedia": null, "reactionVideos": [], @@ -456169,7 +455820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12840429, "featuredRunMedia": null, "reactionVideos": [], @@ -456207,7 +455858,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 12840773, "featuredRunMedia": null, "reactionVideos": [], @@ -456245,7 +455896,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 12841592, "featuredRunMedia": null, "reactionVideos": [], @@ -456283,7 +455934,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 12845377, "featuredRunMedia": null, "reactionVideos": [], @@ -456321,7 +455972,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 12846139, "featuredRunMedia": null, "reactionVideos": [], @@ -456359,7 +456010,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 12846607, "featuredRunMedia": null, "reactionVideos": [], @@ -456397,7 +456048,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 12850163, "featuredRunMedia": null, "reactionVideos": [], @@ -456435,7 +456086,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 189, + "teamId": "3049", "time": 12850402, "featuredRunMedia": null, "reactionVideos": [], @@ -456463,7 +456114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12850613, "featuredRunMedia": null, "reactionVideos": [], @@ -456501,7 +456152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12852605, "featuredRunMedia": null, "reactionVideos": [], @@ -456539,7 +456190,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "3255", "time": 12853357, "featuredRunMedia": null, "reactionVideos": [], @@ -456572,7 +456223,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "1741", "time": 12857298, "featuredRunMedia": null, "reactionVideos": [], @@ -456605,7 +456256,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12857503, "featuredRunMedia": null, "reactionVideos": [], @@ -456638,7 +456289,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 12857582, "featuredRunMedia": null, "reactionVideos": [], @@ -456676,7 +456327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12858501, "featuredRunMedia": null, "reactionVideos": [], @@ -456714,7 +456365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 12859218, "featuredRunMedia": null, "reactionVideos": [], @@ -456752,7 +456403,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "2056", "time": 12861153, "featuredRunMedia": null, "reactionVideos": [], @@ -456780,7 +456431,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 136, + "teamId": "3146", "time": 12862640, "featuredRunMedia": null, "reactionVideos": [], @@ -456808,7 +456459,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 12863062, "featuredRunMedia": null, "reactionVideos": [], @@ -456836,7 +456487,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12865683, "featuredRunMedia": null, "reactionVideos": [], @@ -456874,7 +456525,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 12867802, "featuredRunMedia": null, "reactionVideos": [], @@ -456902,7 +456553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 12867985, "featuredRunMedia": null, "reactionVideos": [], @@ -456930,7 +456581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 12869962, "featuredRunMedia": null, "reactionVideos": [], @@ -456963,7 +456614,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 12871278, "featuredRunMedia": null, "reactionVideos": [], @@ -456996,7 +456647,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12871699, "featuredRunMedia": null, "reactionVideos": [], @@ -457034,7 +456685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 12877078, "featuredRunMedia": null, "reactionVideos": [], @@ -457072,7 +456723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 12883597, "featuredRunMedia": null, "reactionVideos": [], @@ -457110,7 +456761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 12884251, "featuredRunMedia": null, "reactionVideos": [], @@ -457148,7 +456799,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 12884495, "featuredRunMedia": null, "reactionVideos": [], @@ -457186,7 +456837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 12889119, "featuredRunMedia": null, "reactionVideos": [], @@ -457224,7 +456875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12889348, "featuredRunMedia": null, "reactionVideos": [], @@ -457262,7 +456913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 12890020, "featuredRunMedia": null, "reactionVideos": [], @@ -457284,7 +456935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12892202, "featuredRunMedia": null, "reactionVideos": [], @@ -457317,7 +456968,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 12892742, "featuredRunMedia": null, "reactionVideos": [], @@ -457350,7 +457001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 12894219, "featuredRunMedia": null, "reactionVideos": [], @@ -457383,7 +457034,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 12894998, "featuredRunMedia": null, "reactionVideos": [], @@ -457421,7 +457072,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 78, + "teamId": "2442", "time": 12895641, "featuredRunMedia": null, "reactionVideos": [], @@ -457449,7 +457100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 12895835, "featuredRunMedia": null, "reactionVideos": [], @@ -457475,7 +457126,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 12896152, "featuredRunMedia": null, "reactionVideos": [], @@ -457508,7 +457159,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 12896783, "featuredRunMedia": null, "reactionVideos": [], @@ -457541,7 +457192,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12897218, "featuredRunMedia": null, "reactionVideos": [], @@ -457579,7 +457230,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 12898910, "featuredRunMedia": null, "reactionVideos": [], @@ -457607,7 +457258,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12899409, "featuredRunMedia": null, "reactionVideos": [], @@ -457645,7 +457296,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 12899587, "featuredRunMedia": null, "reactionVideos": [], @@ -457683,7 +457334,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12901111, "featuredRunMedia": null, "reactionVideos": [], @@ -457721,7 +457372,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 12903786, "featuredRunMedia": null, "reactionVideos": [], @@ -457749,7 +457400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 12906055, "featuredRunMedia": null, "reactionVideos": [], @@ -457777,7 +457428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 12906475, "featuredRunMedia": null, "reactionVideos": [], @@ -457805,7 +457456,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 12906863, "featuredRunMedia": null, "reactionVideos": [], @@ -457838,7 +457489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 12907200, "featuredRunMedia": null, "reactionVideos": [], @@ -457876,7 +457527,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 12909352, "featuredRunMedia": null, "reactionVideos": [], @@ -457909,7 +457560,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 12910179, "featuredRunMedia": null, "reactionVideos": [], @@ -457937,7 +457588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 12912596, "featuredRunMedia": null, "reactionVideos": [], @@ -457959,7 +457610,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 12913304, "featuredRunMedia": null, "reactionVideos": [], @@ -457987,7 +457638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 12913310, "featuredRunMedia": null, "reactionVideos": [], @@ -458025,7 +457676,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 12914421, "featuredRunMedia": null, "reactionVideos": [], @@ -458053,7 +457704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12916161, "featuredRunMedia": null, "reactionVideos": [], @@ -458079,7 +457730,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 12918654, "featuredRunMedia": null, "reactionVideos": [], @@ -458107,7 +457758,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 12919805, "featuredRunMedia": null, "reactionVideos": [], @@ -458135,7 +457786,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 12920803, "featuredRunMedia": null, "reactionVideos": [], @@ -458163,7 +457814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "2645", "time": 12923685, "featuredRunMedia": null, "reactionVideos": [], @@ -458201,7 +457852,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 218, + "teamId": "1541", "time": 12925443, "featuredRunMedia": null, "reactionVideos": [], @@ -458223,7 +457874,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12925634, "featuredRunMedia": null, "reactionVideos": [], @@ -458251,7 +457902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 12925911, "featuredRunMedia": null, "reactionVideos": [], @@ -458279,7 +457930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "2554", "time": 12925920, "featuredRunMedia": null, "reactionVideos": [], @@ -458307,7 +457958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 240, + "teamId": "2552", "time": 12926090, "featuredRunMedia": null, "reactionVideos": [], @@ -458340,7 +457991,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 12927703, "featuredRunMedia": null, "reactionVideos": [], @@ -458378,7 +458029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12932322, "featuredRunMedia": null, "reactionVideos": [], @@ -458406,7 +458057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 12932943, "featuredRunMedia": null, "reactionVideos": [], @@ -458434,7 +458085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 12935820, "featuredRunMedia": null, "reactionVideos": [], @@ -458472,7 +458123,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 12939235, "featuredRunMedia": null, "reactionVideos": [], @@ -458500,7 +458151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 12942081, "featuredRunMedia": null, "reactionVideos": [], @@ -458533,7 +458184,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 292, + "teamId": "1348", "time": 12942398, "featuredRunMedia": null, "reactionVideos": [], @@ -458566,7 +458217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 12947052, "featuredRunMedia": null, "reactionVideos": [], @@ -458604,7 +458255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 12947296, "featuredRunMedia": null, "reactionVideos": [], @@ -458642,7 +458293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 12951781, "featuredRunMedia": null, "reactionVideos": [], @@ -458675,7 +458326,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 12953009, "featuredRunMedia": null, "reactionVideos": [], @@ -458713,7 +458364,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 12954627, "featuredRunMedia": null, "reactionVideos": [], @@ -458741,7 +458392,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 329, + "teamId": "2245", "time": 12956242, "featuredRunMedia": null, "reactionVideos": [], @@ -458779,7 +458430,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 12956422, "featuredRunMedia": null, "reactionVideos": [], @@ -458807,7 +458458,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 12956938, "featuredRunMedia": null, "reactionVideos": [], @@ -458835,7 +458486,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 12960020, "featuredRunMedia": null, "reactionVideos": [], @@ -458857,7 +458508,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12960611, "featuredRunMedia": null, "reactionVideos": [], @@ -458885,7 +458536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "2554", "time": 12960832, "featuredRunMedia": null, "reactionVideos": [], @@ -458913,7 +458564,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 12962142, "featuredRunMedia": null, "reactionVideos": [], @@ -458951,7 +458602,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 184, + "teamId": "1448", "time": 12962789, "featuredRunMedia": null, "reactionVideos": [], @@ -458979,7 +458630,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 12962927, "featuredRunMedia": null, "reactionVideos": [], @@ -459012,7 +458663,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "2841", "time": 12963585, "featuredRunMedia": null, "reactionVideos": [], @@ -459050,7 +458701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 12963744, "featuredRunMedia": null, "reactionVideos": [], @@ -459072,7 +458723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 12966101, "featuredRunMedia": null, "reactionVideos": [], @@ -459110,7 +458761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 12967785, "featuredRunMedia": null, "reactionVideos": [], @@ -459148,7 +458799,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 12968442, "featuredRunMedia": null, "reactionVideos": [], @@ -459181,7 +458832,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 12969051, "featuredRunMedia": null, "reactionVideos": [], @@ -459219,7 +458870,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 12970505, "featuredRunMedia": null, "reactionVideos": [], @@ -459252,7 +458903,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 12971877, "featuredRunMedia": null, "reactionVideos": [], @@ -459278,7 +458929,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 12975361, "featuredRunMedia": null, "reactionVideos": [], @@ -459306,7 +458957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 12976268, "featuredRunMedia": null, "reactionVideos": [], @@ -459334,7 +458985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 12978251, "featuredRunMedia": null, "reactionVideos": [], @@ -459372,7 +459023,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 12979037, "featuredRunMedia": null, "reactionVideos": [], @@ -459410,7 +459061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 12980383, "featuredRunMedia": null, "reactionVideos": [], @@ -459448,7 +459099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 12980747, "featuredRunMedia": null, "reactionVideos": [], @@ -459481,7 +459132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 12984169, "featuredRunMedia": null, "reactionVideos": [], @@ -459503,7 +459154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 12991003, "featuredRunMedia": null, "reactionVideos": [], @@ -459536,7 +459187,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 12991806, "featuredRunMedia": null, "reactionVideos": [], @@ -459574,7 +459225,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 12995391, "featuredRunMedia": null, "reactionVideos": [], @@ -459612,7 +459263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 12995405, "featuredRunMedia": null, "reactionVideos": [], @@ -459640,7 +459291,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 12995594, "featuredRunMedia": null, "reactionVideos": [], @@ -459668,7 +459319,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 12998623, "featuredRunMedia": null, "reactionVideos": [], @@ -459696,7 +459347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "2554", "time": 12999540, "featuredRunMedia": null, "reactionVideos": [], @@ -459734,7 +459385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "2046", "time": 13000136, "featuredRunMedia": null, "reactionVideos": [], @@ -459762,7 +459413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13001652, "featuredRunMedia": null, "reactionVideos": [], @@ -459790,7 +459441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 13002092, "featuredRunMedia": null, "reactionVideos": [], @@ -459818,7 +459469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 13002188, "featuredRunMedia": null, "reactionVideos": [], @@ -459851,7 +459502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13002262, "featuredRunMedia": null, "reactionVideos": [], @@ -459889,7 +459540,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "3149", "time": 13002415, "featuredRunMedia": null, "reactionVideos": [], @@ -459922,7 +459573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13003323, "featuredRunMedia": null, "reactionVideos": [], @@ -459950,7 +459601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13005744, "featuredRunMedia": null, "reactionVideos": [], @@ -459988,7 +459639,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 13008721, "featuredRunMedia": null, "reactionVideos": [], @@ -460026,7 +459677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "2154", "time": 13009574, "featuredRunMedia": null, "reactionVideos": [], @@ -460059,7 +459710,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13009786, "featuredRunMedia": null, "reactionVideos": [], @@ -460087,7 +459738,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 13010526, "featuredRunMedia": null, "reactionVideos": [], @@ -460120,7 +459771,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "2852", "time": 13012025, "featuredRunMedia": null, "reactionVideos": [], @@ -460153,7 +459804,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "2841", "time": 13013569, "featuredRunMedia": null, "reactionVideos": [], @@ -460181,7 +459832,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 13013703, "featuredRunMedia": null, "reactionVideos": [], @@ -460209,7 +459860,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 13014684, "featuredRunMedia": null, "reactionVideos": [], @@ -460237,7 +459888,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 13015313, "featuredRunMedia": null, "reactionVideos": [], @@ -460270,7 +459921,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 13017044, "featuredRunMedia": null, "reactionVideos": [], @@ -460292,7 +459943,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13017835, "featuredRunMedia": null, "reactionVideos": [], @@ -460320,7 +459971,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 13021585, "featuredRunMedia": null, "reactionVideos": [], @@ -460346,7 +459997,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 124, + "teamId": "2856", "time": 13021630, "featuredRunMedia": null, "reactionVideos": [], @@ -460379,7 +460030,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13022635, "featuredRunMedia": null, "reactionVideos": [], @@ -460407,7 +460058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 13024177, "featuredRunMedia": null, "reactionVideos": [], @@ -460440,7 +460091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13026448, "featuredRunMedia": null, "reactionVideos": [], @@ -460478,7 +460129,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 13027626, "featuredRunMedia": null, "reactionVideos": [], @@ -460516,7 +460167,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 13028009, "featuredRunMedia": null, "reactionVideos": [], @@ -460554,7 +460205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 13031540, "featuredRunMedia": null, "reactionVideos": [], @@ -460592,7 +460243,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 13031634, "featuredRunMedia": null, "reactionVideos": [], @@ -460614,7 +460265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13032143, "featuredRunMedia": null, "reactionVideos": [], @@ -460652,7 +460303,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 206, + "teamId": "2142", "time": 13033073, "featuredRunMedia": null, "reactionVideos": [], @@ -460690,7 +460341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13034234, "featuredRunMedia": null, "reactionVideos": [], @@ -460728,7 +460379,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 13037704, "featuredRunMedia": null, "reactionVideos": [], @@ -460756,7 +460407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13038806, "featuredRunMedia": null, "reactionVideos": [], @@ -460782,7 +460433,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 13039528, "featuredRunMedia": null, "reactionVideos": [], @@ -460815,7 +460466,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13040362, "featuredRunMedia": null, "reactionVideos": [], @@ -460843,7 +460494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 13041463, "featuredRunMedia": null, "reactionVideos": [], @@ -460876,7 +460527,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 71, + "teamId": "1751", "time": 13042433, "featuredRunMedia": null, "reactionVideos": [], @@ -460904,7 +460555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13043380, "featuredRunMedia": null, "reactionVideos": [], @@ -460932,7 +460583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13043692, "featuredRunMedia": null, "reactionVideos": [], @@ -460970,7 +460621,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 64, + "teamId": "1647", "time": 13044612, "featuredRunMedia": null, "reactionVideos": [], @@ -461008,7 +460659,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 13045027, "featuredRunMedia": null, "reactionVideos": [], @@ -461041,7 +460692,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13047048, "featuredRunMedia": null, "reactionVideos": [], @@ -461069,7 +460720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 13048235, "featuredRunMedia": null, "reactionVideos": [], @@ -461097,7 +460748,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 13049399, "featuredRunMedia": null, "reactionVideos": [], @@ -461135,7 +460786,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 13050950, "featuredRunMedia": null, "reactionVideos": [], @@ -461168,7 +460819,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13051558, "featuredRunMedia": null, "reactionVideos": [], @@ -461196,7 +460847,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 13051909, "featuredRunMedia": null, "reactionVideos": [], @@ -461234,7 +460885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 13052061, "featuredRunMedia": null, "reactionVideos": [], @@ -461267,7 +460918,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13053735, "featuredRunMedia": null, "reactionVideos": [], @@ -461305,7 +460956,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 13054299, "featuredRunMedia": null, "reactionVideos": [], @@ -461338,7 +460989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 215, + "teamId": "2841", "time": 13054558, "featuredRunMedia": null, "reactionVideos": [], @@ -461376,7 +461027,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 13056685, "featuredRunMedia": null, "reactionVideos": [], @@ -461414,7 +461065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13059569, "featuredRunMedia": null, "reactionVideos": [], @@ -461447,7 +461098,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13060008, "featuredRunMedia": null, "reactionVideos": [], @@ -461480,7 +461131,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13061589, "featuredRunMedia": null, "reactionVideos": [], @@ -461518,7 +461169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 13063069, "featuredRunMedia": null, "reactionVideos": [], @@ -461546,7 +461197,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 13063269, "featuredRunMedia": null, "reactionVideos": [], @@ -461584,7 +461235,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 13064562, "featuredRunMedia": null, "reactionVideos": [], @@ -461612,7 +461263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 13066315, "featuredRunMedia": null, "reactionVideos": [], @@ -461650,7 +461301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 13066612, "featuredRunMedia": null, "reactionVideos": [], @@ -461683,7 +461334,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 45, + "teamId": "1755", "time": 13067625, "featuredRunMedia": null, "reactionVideos": [], @@ -461721,7 +461372,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13069093, "featuredRunMedia": null, "reactionVideos": [], @@ -461759,7 +461410,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 13070285, "featuredRunMedia": null, "reactionVideos": [], @@ -461781,7 +461432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 165, + "teamId": "1843", "time": 13070487, "featuredRunMedia": null, "reactionVideos": [], @@ -461807,7 +461458,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 13071553, "featuredRunMedia": null, "reactionVideos": [], @@ -461835,7 +461486,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 13071558, "featuredRunMedia": null, "reactionVideos": [], @@ -461868,7 +461519,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13073026, "featuredRunMedia": null, "reactionVideos": [], @@ -461901,7 +461552,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 13074253, "featuredRunMedia": null, "reactionVideos": [], @@ -461934,7 +461585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 13075393, "featuredRunMedia": null, "reactionVideos": [], @@ -461967,7 +461618,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 13075400, "featuredRunMedia": null, "reactionVideos": [], @@ -462005,7 +461656,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 13076032, "featuredRunMedia": null, "reactionVideos": [], @@ -462043,7 +461694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 13076620, "featuredRunMedia": null, "reactionVideos": [], @@ -462071,7 +461722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 13077162, "featuredRunMedia": null, "reactionVideos": [], @@ -462109,7 +461760,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 74, + "teamId": "2047", "time": 13079496, "featuredRunMedia": null, "reactionVideos": [], @@ -462137,7 +461788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 349, + "teamId": "2554", "time": 13080089, "featuredRunMedia": null, "reactionVideos": [], @@ -462170,7 +461821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13080167, "featuredRunMedia": null, "reactionVideos": [], @@ -462208,7 +461859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 13082525, "featuredRunMedia": null, "reactionVideos": [], @@ -462246,7 +461897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13083962, "featuredRunMedia": null, "reactionVideos": [], @@ -462274,7 +461925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 13084663, "featuredRunMedia": null, "reactionVideos": [], @@ -462312,7 +461963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 13088546, "featuredRunMedia": null, "reactionVideos": [], @@ -462350,7 +462001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 13089806, "featuredRunMedia": null, "reactionVideos": [], @@ -462383,7 +462034,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 13091055, "featuredRunMedia": null, "reactionVideos": [], @@ -462411,7 +462062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13091922, "featuredRunMedia": null, "reactionVideos": [], @@ -462444,7 +462095,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13092942, "featuredRunMedia": null, "reactionVideos": [], @@ -462482,7 +462133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 13093704, "featuredRunMedia": null, "reactionVideos": [], @@ -462515,7 +462166,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13097620, "featuredRunMedia": null, "reactionVideos": [], @@ -462541,7 +462192,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 13098775, "featuredRunMedia": null, "reactionVideos": [], @@ -462579,7 +462230,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 13098787, "featuredRunMedia": null, "reactionVideos": [], @@ -462617,7 +462268,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 13099777, "featuredRunMedia": null, "reactionVideos": [], @@ -462650,7 +462301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13102375, "featuredRunMedia": null, "reactionVideos": [], @@ -462678,7 +462329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 13102576, "featuredRunMedia": null, "reactionVideos": [], @@ -462700,7 +462351,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "1652", "time": 13103703, "featuredRunMedia": null, "reactionVideos": [], @@ -462728,7 +462379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13104851, "featuredRunMedia": null, "reactionVideos": [], @@ -462761,7 +462412,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 13106051, "featuredRunMedia": null, "reactionVideos": [], @@ -462789,7 +462440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13107611, "featuredRunMedia": null, "reactionVideos": [], @@ -462827,7 +462478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 13109166, "featuredRunMedia": null, "reactionVideos": [], @@ -462855,7 +462506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 13112586, "featuredRunMedia": null, "reactionVideos": [], @@ -462888,7 +462539,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13113239, "featuredRunMedia": null, "reactionVideos": [], @@ -462916,7 +462567,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 13113431, "featuredRunMedia": null, "reactionVideos": [], @@ -462954,7 +462605,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 13114083, "featuredRunMedia": null, "reactionVideos": [], @@ -462982,7 +462633,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 13114083, "featuredRunMedia": null, "reactionVideos": [], @@ -463010,7 +462661,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13116430, "featuredRunMedia": null, "reactionVideos": [], @@ -463043,7 +462694,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 13117237, "featuredRunMedia": null, "reactionVideos": [], @@ -463081,7 +462732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 13118836, "featuredRunMedia": null, "reactionVideos": [], @@ -463119,7 +462770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 13121455, "featuredRunMedia": null, "reactionVideos": [], @@ -463157,7 +462808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13123254, "featuredRunMedia": null, "reactionVideos": [], @@ -463195,7 +462846,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 13123866, "featuredRunMedia": null, "reactionVideos": [], @@ -463223,7 +462874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 13123922, "featuredRunMedia": null, "reactionVideos": [], @@ -463261,7 +462912,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 13124877, "featuredRunMedia": null, "reactionVideos": [], @@ -463299,7 +462950,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13128791, "featuredRunMedia": null, "reactionVideos": [], @@ -463327,7 +462978,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 13130713, "featuredRunMedia": null, "reactionVideos": [], @@ -463355,7 +463006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 13133952, "featuredRunMedia": null, "reactionVideos": [], @@ -463393,7 +463044,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13134575, "featuredRunMedia": null, "reactionVideos": [], @@ -463426,7 +463077,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 256, + "teamId": "2852", "time": 13134928, "featuredRunMedia": null, "reactionVideos": [], @@ -463454,7 +463105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13137587, "featuredRunMedia": null, "reactionVideos": [], @@ -463487,7 +463138,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13138766, "featuredRunMedia": null, "reactionVideos": [], @@ -463520,7 +463171,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13139788, "featuredRunMedia": null, "reactionVideos": [], @@ -463553,7 +463204,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 13139946, "featuredRunMedia": null, "reactionVideos": [], @@ -463581,7 +463232,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 13141426, "featuredRunMedia": null, "reactionVideos": [], @@ -463619,7 +463270,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 13141743, "featuredRunMedia": null, "reactionVideos": [], @@ -463657,7 +463308,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 13143967, "featuredRunMedia": null, "reactionVideos": [], @@ -463685,7 +463336,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 13145220, "featuredRunMedia": null, "reactionVideos": [], @@ -463723,7 +463374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 13149094, "featuredRunMedia": null, "reactionVideos": [], @@ -463756,7 +463407,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 13150644, "featuredRunMedia": null, "reactionVideos": [], @@ -463784,7 +463435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 13152501, "featuredRunMedia": null, "reactionVideos": [], @@ -463817,7 +463468,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 13152848, "featuredRunMedia": null, "reactionVideos": [], @@ -463845,7 +463496,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 13152948, "featuredRunMedia": null, "reactionVideos": [], @@ -463883,7 +463534,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 13155187, "featuredRunMedia": null, "reactionVideos": [], @@ -463921,7 +463572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 13156507, "featuredRunMedia": null, "reactionVideos": [], @@ -463949,7 +463600,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13157348, "featuredRunMedia": null, "reactionVideos": [], @@ -463987,7 +463638,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 13159225, "featuredRunMedia": null, "reactionVideos": [], @@ -464020,7 +463671,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13159959, "featuredRunMedia": null, "reactionVideos": [], @@ -464058,7 +463709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "1652", "time": 13160288, "featuredRunMedia": null, "reactionVideos": [], @@ -464096,7 +463747,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13160365, "featuredRunMedia": null, "reactionVideos": [], @@ -464129,7 +463780,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 13160604, "featuredRunMedia": null, "reactionVideos": [], @@ -464167,7 +463818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 13161974, "featuredRunMedia": null, "reactionVideos": [], @@ -464205,7 +463856,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13164063, "featuredRunMedia": null, "reactionVideos": [], @@ -464238,7 +463889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13170286, "featuredRunMedia": null, "reactionVideos": [], @@ -464266,7 +463917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 13170700, "featuredRunMedia": null, "reactionVideos": [], @@ -464299,7 +463950,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13172359, "featuredRunMedia": null, "reactionVideos": [], @@ -464332,7 +463983,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 13173016, "featuredRunMedia": null, "reactionVideos": [], @@ -464360,7 +464011,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13175238, "featuredRunMedia": null, "reactionVideos": [], @@ -464398,7 +464049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 13176567, "featuredRunMedia": null, "reactionVideos": [], @@ -464426,7 +464077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13176842, "featuredRunMedia": null, "reactionVideos": [], @@ -464464,7 +464115,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 13178192, "featuredRunMedia": null, "reactionVideos": [], @@ -464497,7 +464148,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13179793, "featuredRunMedia": null, "reactionVideos": [], @@ -464525,7 +464176,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 13182036, "featuredRunMedia": null, "reactionVideos": [], @@ -464563,7 +464214,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 13185048, "featuredRunMedia": null, "reactionVideos": [], @@ -464601,7 +464252,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 13186451, "featuredRunMedia": null, "reactionVideos": [], @@ -464639,7 +464290,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 13187094, "featuredRunMedia": null, "reactionVideos": [], @@ -464677,7 +464328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13189120, "featuredRunMedia": null, "reactionVideos": [], @@ -464715,7 +464366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 13189594, "featuredRunMedia": null, "reactionVideos": [], @@ -464743,7 +464394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13189856, "featuredRunMedia": null, "reactionVideos": [], @@ -464771,7 +464422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 13194433, "featuredRunMedia": null, "reactionVideos": [], @@ -464809,7 +464460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 13194453, "featuredRunMedia": null, "reactionVideos": [], @@ -464842,7 +464493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 13199268, "featuredRunMedia": null, "reactionVideos": [], @@ -464875,7 +464526,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 31, + "teamId": "2955", "time": 13200194, "featuredRunMedia": null, "reactionVideos": [], @@ -464903,7 +464554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13201057, "featuredRunMedia": null, "reactionVideos": [], @@ -464941,7 +464592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 13201696, "featuredRunMedia": null, "reactionVideos": [], @@ -464974,7 +464625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 13202129, "featuredRunMedia": null, "reactionVideos": [], @@ -465007,7 +464658,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13202173, "featuredRunMedia": null, "reactionVideos": [], @@ -465040,7 +464691,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 13204201, "featuredRunMedia": null, "reactionVideos": [], @@ -465078,7 +464729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 13205100, "featuredRunMedia": null, "reactionVideos": [], @@ -465116,7 +464767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13205131, "featuredRunMedia": null, "reactionVideos": [], @@ -465154,7 +464805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 13206610, "featuredRunMedia": null, "reactionVideos": [], @@ -465187,7 +464838,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 13206805, "featuredRunMedia": null, "reactionVideos": [], @@ -465215,7 +464866,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 13209191, "featuredRunMedia": null, "reactionVideos": [], @@ -465248,7 +464899,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 13209693, "featuredRunMedia": null, "reactionVideos": [], @@ -465286,7 +464937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 13213321, "featuredRunMedia": null, "reactionVideos": [], @@ -465319,7 +464970,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 13214829, "featuredRunMedia": null, "reactionVideos": [], @@ -465357,7 +465008,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 13214917, "featuredRunMedia": null, "reactionVideos": [], @@ -465390,7 +465041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 13217726, "featuredRunMedia": null, "reactionVideos": [], @@ -465428,7 +465079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 19, + "teamId": "2656", "time": 13217751, "featuredRunMedia": null, "reactionVideos": [], @@ -465456,7 +465107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13217908, "featuredRunMedia": null, "reactionVideos": [], @@ -465494,7 +465145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 13219995, "featuredRunMedia": null, "reactionVideos": [], @@ -465532,7 +465183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 13221059, "featuredRunMedia": null, "reactionVideos": [], @@ -465570,7 +465221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 13221883, "featuredRunMedia": null, "reactionVideos": [], @@ -465608,7 +465259,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 13223892, "featuredRunMedia": null, "reactionVideos": [], @@ -465636,7 +465287,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 13225912, "featuredRunMedia": null, "reactionVideos": [], @@ -465674,7 +465325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 13225917, "featuredRunMedia": null, "reactionVideos": [], @@ -465712,7 +465363,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13229437, "featuredRunMedia": null, "reactionVideos": [], @@ -465745,7 +465396,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "1753", "time": 13233196, "featuredRunMedia": null, "reactionVideos": [], @@ -465783,7 +465434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "2643", "time": 13234655, "featuredRunMedia": null, "reactionVideos": [], @@ -465811,7 +465462,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13238162, "featuredRunMedia": null, "reactionVideos": [], @@ -465839,7 +465490,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13241739, "featuredRunMedia": null, "reactionVideos": [], @@ -465872,7 +465523,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "1649", "time": 13243131, "featuredRunMedia": null, "reactionVideos": [], @@ -465910,7 +465561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 13243328, "featuredRunMedia": null, "reactionVideos": [], @@ -465938,7 +465589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 13244683, "featuredRunMedia": null, "reactionVideos": [], @@ -465971,7 +465622,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13244724, "featuredRunMedia": null, "reactionVideos": [], @@ -465999,7 +465650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13245741, "featuredRunMedia": null, "reactionVideos": [], @@ -466037,7 +465688,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 13245744, "featuredRunMedia": null, "reactionVideos": [], @@ -466070,7 +465721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 13246227, "featuredRunMedia": null, "reactionVideos": [], @@ -466098,7 +465749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13246808, "featuredRunMedia": null, "reactionVideos": [], @@ -466126,7 +465777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 13247701, "featuredRunMedia": null, "reactionVideos": [], @@ -466159,7 +465810,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13249508, "featuredRunMedia": null, "reactionVideos": [], @@ -466192,7 +465843,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 13250396, "featuredRunMedia": null, "reactionVideos": [], @@ -466218,7 +465869,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 13250878, "featuredRunMedia": null, "reactionVideos": [], @@ -466256,7 +465907,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13252042, "featuredRunMedia": null, "reactionVideos": [], @@ -466289,7 +465940,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13252988, "featuredRunMedia": null, "reactionVideos": [], @@ -466327,7 +465978,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 13254778, "featuredRunMedia": null, "reactionVideos": [], @@ -466355,7 +466006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13255022, "featuredRunMedia": null, "reactionVideos": [], @@ -466388,7 +466039,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 288, + "teamId": "2146", "time": 13256609, "featuredRunMedia": null, "reactionVideos": [], @@ -466426,7 +466077,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 13261199, "featuredRunMedia": null, "reactionVideos": [], @@ -466464,7 +466115,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13261608, "featuredRunMedia": null, "reactionVideos": [], @@ -466502,7 +466153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13262740, "featuredRunMedia": null, "reactionVideos": [], @@ -466540,7 +466191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 13263448, "featuredRunMedia": null, "reactionVideos": [], @@ -466578,7 +466229,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13263489, "featuredRunMedia": null, "reactionVideos": [], @@ -466611,7 +466262,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13264166, "featuredRunMedia": null, "reactionVideos": [], @@ -466639,7 +466290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 13265408, "featuredRunMedia": null, "reactionVideos": [], @@ -466677,7 +466328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13267133, "featuredRunMedia": null, "reactionVideos": [], @@ -466705,7 +466356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 13272240, "featuredRunMedia": null, "reactionVideos": [], @@ -466733,7 +466384,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13273654, "featuredRunMedia": null, "reactionVideos": [], @@ -466761,7 +466412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13274232, "featuredRunMedia": null, "reactionVideos": [], @@ -466794,7 +466445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 13278495, "featuredRunMedia": null, "reactionVideos": [], @@ -466822,7 +466473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 13278598, "featuredRunMedia": null, "reactionVideos": [], @@ -466855,7 +466506,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 13281181, "featuredRunMedia": null, "reactionVideos": [], @@ -466883,7 +466534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 13282243, "featuredRunMedia": null, "reactionVideos": [], @@ -466916,7 +466567,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13283027, "featuredRunMedia": null, "reactionVideos": [], @@ -466949,7 +466600,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13283141, "featuredRunMedia": null, "reactionVideos": [], @@ -466987,7 +466638,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 13284238, "featuredRunMedia": null, "reactionVideos": [], @@ -467020,7 +466671,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13285847, "featuredRunMedia": null, "reactionVideos": [], @@ -467058,7 +466709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 13286641, "featuredRunMedia": null, "reactionVideos": [], @@ -467096,7 +466747,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 13286961, "featuredRunMedia": null, "reactionVideos": [], @@ -467124,7 +466775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 13287555, "featuredRunMedia": null, "reactionVideos": [], @@ -467162,7 +466813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 13289286, "featuredRunMedia": null, "reactionVideos": [], @@ -467200,7 +466851,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 13292706, "featuredRunMedia": null, "reactionVideos": [], @@ -467222,7 +466873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13292817, "featuredRunMedia": null, "reactionVideos": [], @@ -467250,7 +466901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13302810, "featuredRunMedia": null, "reactionVideos": [], @@ -467288,7 +466939,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 13302865, "featuredRunMedia": null, "reactionVideos": [], @@ -467326,7 +466977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 13305817, "featuredRunMedia": null, "reactionVideos": [], @@ -467364,7 +467015,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 13307662, "featuredRunMedia": null, "reactionVideos": [], @@ -467402,7 +467053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 13309260, "featuredRunMedia": null, "reactionVideos": [], @@ -467428,7 +467079,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 13309718, "featuredRunMedia": null, "reactionVideos": [], @@ -467466,7 +467117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 13312374, "featuredRunMedia": null, "reactionVideos": [], @@ -467494,7 +467145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13313243, "featuredRunMedia": null, "reactionVideos": [], @@ -467532,7 +467183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13318473, "featuredRunMedia": null, "reactionVideos": [], @@ -467560,7 +467211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 13327059, "featuredRunMedia": null, "reactionVideos": [], @@ -467593,7 +467244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13327611, "featuredRunMedia": null, "reactionVideos": [], @@ -467621,7 +467272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13328607, "featuredRunMedia": null, "reactionVideos": [], @@ -467659,7 +467310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 13331209, "featuredRunMedia": null, "reactionVideos": [], @@ -467697,7 +467348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13331727, "featuredRunMedia": null, "reactionVideos": [], @@ -467735,7 +467386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 13332359, "featuredRunMedia": null, "reactionVideos": [], @@ -467768,7 +467419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13332528, "featuredRunMedia": null, "reactionVideos": [], @@ -467796,7 +467447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 13333381, "featuredRunMedia": null, "reactionVideos": [], @@ -467834,7 +467485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 13335052, "featuredRunMedia": null, "reactionVideos": [], @@ -467867,7 +467518,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13335974, "featuredRunMedia": null, "reactionVideos": [], @@ -467900,7 +467551,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 13336329, "featuredRunMedia": null, "reactionVideos": [], @@ -467928,7 +467579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 163, + "teamId": "1142", "time": 13338269, "featuredRunMedia": null, "reactionVideos": [], @@ -467956,7 +467607,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13340078, "featuredRunMedia": null, "reactionVideos": [], @@ -467978,7 +467629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13340459, "featuredRunMedia": null, "reactionVideos": [], @@ -468016,7 +467667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 13343288, "featuredRunMedia": null, "reactionVideos": [], @@ -468049,7 +467700,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 13343507, "featuredRunMedia": null, "reactionVideos": [], @@ -468077,7 +467728,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13343721, "featuredRunMedia": null, "reactionVideos": [], @@ -468115,7 +467766,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13344984, "featuredRunMedia": null, "reactionVideos": [], @@ -468148,7 +467799,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 13346863, "featuredRunMedia": null, "reactionVideos": [], @@ -468186,7 +467837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 13347931, "featuredRunMedia": null, "reactionVideos": [], @@ -468224,7 +467875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13348423, "featuredRunMedia": null, "reactionVideos": [], @@ -468252,7 +467903,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 275, + "teamId": "2249", "time": 13352125, "featuredRunMedia": null, "reactionVideos": [], @@ -468285,7 +467936,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 13352431, "featuredRunMedia": null, "reactionVideos": [], @@ -468311,7 +467962,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 273, + "teamId": "2247", "time": 13360308, "featuredRunMedia": null, "reactionVideos": [], @@ -468344,7 +467995,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13363251, "featuredRunMedia": null, "reactionVideos": [], @@ -468382,7 +468033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 13363703, "featuredRunMedia": null, "reactionVideos": [], @@ -468410,7 +468061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 13364933, "featuredRunMedia": null, "reactionVideos": [], @@ -468443,7 +468094,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 13366306, "featuredRunMedia": null, "reactionVideos": [], @@ -468481,7 +468132,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13370519, "featuredRunMedia": null, "reactionVideos": [], @@ -468519,7 +468170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 13371230, "featuredRunMedia": null, "reactionVideos": [], @@ -468552,7 +468203,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 13371267, "featuredRunMedia": null, "reactionVideos": [], @@ -468590,7 +468241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 13376234, "featuredRunMedia": null, "reactionVideos": [], @@ -468628,7 +468279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 13377603, "featuredRunMedia": null, "reactionVideos": [], @@ -468666,7 +468317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 13378327, "featuredRunMedia": null, "reactionVideos": [], @@ -468704,7 +468355,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13379006, "featuredRunMedia": null, "reactionVideos": [], @@ -468737,7 +468388,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13379414, "featuredRunMedia": null, "reactionVideos": [], @@ -468775,7 +468426,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13380287, "featuredRunMedia": null, "reactionVideos": [], @@ -468813,7 +468464,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 13381379, "featuredRunMedia": null, "reactionVideos": [], @@ -468851,7 +468502,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 13383822, "featuredRunMedia": null, "reactionVideos": [], @@ -468889,7 +468540,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 13384901, "featuredRunMedia": null, "reactionVideos": [], @@ -468922,7 +468573,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13391405, "featuredRunMedia": null, "reactionVideos": [], @@ -468955,7 +468606,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 13391964, "featuredRunMedia": null, "reactionVideos": [], @@ -468983,7 +468634,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 13392763, "featuredRunMedia": null, "reactionVideos": [], @@ -469021,7 +468672,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 13393236, "featuredRunMedia": null, "reactionVideos": [], @@ -469049,7 +468700,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 13394155, "featuredRunMedia": null, "reactionVideos": [], @@ -469082,7 +468733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13394171, "featuredRunMedia": null, "reactionVideos": [], @@ -469115,7 +468766,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 13395234, "featuredRunMedia": null, "reactionVideos": [], @@ -469148,7 +468799,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 13397109, "featuredRunMedia": null, "reactionVideos": [], @@ -469170,7 +468821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13397651, "featuredRunMedia": null, "reactionVideos": [], @@ -469208,7 +468859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13397805, "featuredRunMedia": null, "reactionVideos": [], @@ -469236,7 +468887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13400621, "featuredRunMedia": null, "reactionVideos": [], @@ -469274,7 +468925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 13400876, "featuredRunMedia": null, "reactionVideos": [], @@ -469307,7 +468958,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 13401313, "featuredRunMedia": null, "reactionVideos": [], @@ -469345,7 +468996,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13401863, "featuredRunMedia": null, "reactionVideos": [], @@ -469383,7 +469034,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 13402122, "featuredRunMedia": null, "reactionVideos": [], @@ -469421,7 +469072,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13403308, "featuredRunMedia": null, "reactionVideos": [], @@ -469449,7 +469100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 135, + "teamId": "2143", "time": 13403642, "featuredRunMedia": null, "reactionVideos": [], @@ -469471,7 +469122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13406422, "featuredRunMedia": null, "reactionVideos": [], @@ -469499,7 +469150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13409252, "featuredRunMedia": null, "reactionVideos": [], @@ -469537,7 +469188,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 13411675, "featuredRunMedia": null, "reactionVideos": [], @@ -469570,7 +469221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13412038, "featuredRunMedia": null, "reactionVideos": [], @@ -469608,7 +469259,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13412082, "featuredRunMedia": null, "reactionVideos": [], @@ -469646,7 +469297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 13413382, "featuredRunMedia": null, "reactionVideos": [], @@ -469679,7 +469330,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 60, + "teamId": "1241", "time": 13413768, "featuredRunMedia": null, "reactionVideos": [], @@ -469707,7 +469358,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 210, + "teamId": "1852", "time": 13414831, "featuredRunMedia": null, "reactionVideos": [], @@ -469735,7 +469386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13415284, "featuredRunMedia": null, "reactionVideos": [], @@ -469757,7 +469408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13415501, "featuredRunMedia": null, "reactionVideos": [], @@ -469795,7 +469446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13418209, "featuredRunMedia": null, "reactionVideos": [], @@ -469833,7 +469484,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 13419546, "featuredRunMedia": null, "reactionVideos": [], @@ -469871,7 +469522,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 13423130, "featuredRunMedia": null, "reactionVideos": [], @@ -469904,7 +469555,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13423617, "featuredRunMedia": null, "reactionVideos": [], @@ -469942,7 +469593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 13423791, "featuredRunMedia": null, "reactionVideos": [], @@ -469975,7 +469626,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13424362, "featuredRunMedia": null, "reactionVideos": [], @@ -469997,7 +469648,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13425341, "featuredRunMedia": null, "reactionVideos": [], @@ -470035,7 +469686,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 13426214, "featuredRunMedia": null, "reactionVideos": [], @@ -470073,7 +469724,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 13427389, "featuredRunMedia": null, "reactionVideos": [], @@ -470111,7 +469762,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 13428416, "featuredRunMedia": null, "reactionVideos": [], @@ -470144,7 +469795,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 13428816, "featuredRunMedia": null, "reactionVideos": [], @@ -470182,7 +469833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 13430468, "featuredRunMedia": null, "reactionVideos": [], @@ -470215,7 +469866,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13434336, "featuredRunMedia": null, "reactionVideos": [], @@ -470253,7 +469904,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 13435014, "featuredRunMedia": null, "reactionVideos": [], @@ -470291,7 +469942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 13435850, "featuredRunMedia": null, "reactionVideos": [], @@ -470324,7 +469975,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 13437471, "featuredRunMedia": null, "reactionVideos": [], @@ -470352,7 +470003,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13439190, "featuredRunMedia": null, "reactionVideos": [], @@ -470390,7 +470041,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 13439968, "featuredRunMedia": null, "reactionVideos": [], @@ -470428,7 +470079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13440459, "featuredRunMedia": null, "reactionVideos": [], @@ -470456,7 +470107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 13441568, "featuredRunMedia": null, "reactionVideos": [], @@ -470494,7 +470145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 13441843, "featuredRunMedia": null, "reactionVideos": [], @@ -470522,7 +470173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 13446292, "featuredRunMedia": null, "reactionVideos": [], @@ -470560,7 +470211,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 13446933, "featuredRunMedia": null, "reactionVideos": [], @@ -470593,7 +470244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 13449514, "featuredRunMedia": null, "reactionVideos": [], @@ -470631,7 +470282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 13450457, "featuredRunMedia": null, "reactionVideos": [], @@ -470669,7 +470320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 13450965, "featuredRunMedia": null, "reactionVideos": [], @@ -470707,7 +470358,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13452663, "featuredRunMedia": null, "reactionVideos": [], @@ -470735,7 +470386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 13454617, "featuredRunMedia": null, "reactionVideos": [], @@ -470768,7 +470419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 13454982, "featuredRunMedia": null, "reactionVideos": [], @@ -470796,7 +470447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13455544, "featuredRunMedia": null, "reactionVideos": [], @@ -470829,7 +470480,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13455680, "featuredRunMedia": null, "reactionVideos": [], @@ -470857,7 +470508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 13459171, "featuredRunMedia": null, "reactionVideos": [], @@ -470895,7 +470546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 300, + "teamId": "1745", "time": 13460357, "featuredRunMedia": null, "reactionVideos": [], @@ -470933,7 +470584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13462627, "featuredRunMedia": null, "reactionVideos": [], @@ -470966,7 +470617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13467857, "featuredRunMedia": null, "reactionVideos": [], @@ -470994,7 +470645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 13469829, "featuredRunMedia": null, "reactionVideos": [], @@ -471022,7 +470673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 13470129, "featuredRunMedia": null, "reactionVideos": [], @@ -471060,7 +470711,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 14, + "teamId": "1955", "time": 13470809, "featuredRunMedia": null, "reactionVideos": [], @@ -471098,7 +470749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13472359, "featuredRunMedia": null, "reactionVideos": [], @@ -471131,7 +470782,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13474299, "featuredRunMedia": null, "reactionVideos": [], @@ -471169,7 +470820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 13476684, "featuredRunMedia": null, "reactionVideos": [], @@ -471202,7 +470853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 13477705, "featuredRunMedia": null, "reactionVideos": [], @@ -471230,7 +470881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 13478477, "featuredRunMedia": null, "reactionVideos": [], @@ -471268,7 +470919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 13479455, "featuredRunMedia": null, "reactionVideos": [], @@ -471290,7 +470941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13479790, "featuredRunMedia": null, "reactionVideos": [], @@ -471328,7 +470979,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 13480648, "featuredRunMedia": null, "reactionVideos": [], @@ -471366,7 +471017,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 13480662, "featuredRunMedia": null, "reactionVideos": [], @@ -471404,7 +471055,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 13482343, "featuredRunMedia": null, "reactionVideos": [], @@ -471437,7 +471088,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 13485465, "featuredRunMedia": null, "reactionVideos": [], @@ -471459,7 +471110,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13485688, "featuredRunMedia": null, "reactionVideos": [], @@ -471481,7 +471132,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 13486100, "featuredRunMedia": null, "reactionVideos": [], @@ -471514,7 +471165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 103, + "teamId": "1948", "time": 13486442, "featuredRunMedia": null, "reactionVideos": [], @@ -471547,7 +471198,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 13486855, "featuredRunMedia": null, "reactionVideos": [], @@ -471575,7 +471226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13487526, "featuredRunMedia": null, "reactionVideos": [], @@ -471608,7 +471259,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 13488240, "featuredRunMedia": null, "reactionVideos": [], @@ -471636,7 +471287,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 13488243, "featuredRunMedia": null, "reactionVideos": [], @@ -471669,7 +471320,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 13488670, "featuredRunMedia": null, "reactionVideos": [], @@ -471702,7 +471353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 13488865, "featuredRunMedia": null, "reactionVideos": [], @@ -471730,7 +471381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 13490408, "featuredRunMedia": null, "reactionVideos": [], @@ -471763,7 +471414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "2144", "time": 13492388, "featuredRunMedia": null, "reactionVideos": [], @@ -471791,7 +471442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 13494213, "featuredRunMedia": null, "reactionVideos": [], @@ -471819,7 +471470,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 13496524, "featuredRunMedia": null, "reactionVideos": [], @@ -471852,7 +471503,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 13496664, "featuredRunMedia": null, "reactionVideos": [], @@ -471880,7 +471531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "1652", "time": 13497639, "featuredRunMedia": null, "reactionVideos": [], @@ -471918,7 +471569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13497726, "featuredRunMedia": null, "reactionVideos": [], @@ -471951,7 +471602,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 176, + "teamId": "3045", "time": 13498083, "featuredRunMedia": null, "reactionVideos": [], @@ -471989,7 +471640,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 13498617, "featuredRunMedia": null, "reactionVideos": [], @@ -472022,7 +471673,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 36, + "teamId": "2242", "time": 13503254, "featuredRunMedia": null, "reactionVideos": [], @@ -472060,7 +471711,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 13505343, "featuredRunMedia": null, "reactionVideos": [], @@ -472098,7 +471749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 10, + "teamId": "2048", "time": 13506351, "featuredRunMedia": null, "reactionVideos": [], @@ -472136,7 +471787,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13508210, "featuredRunMedia": null, "reactionVideos": [], @@ -472164,7 +471815,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 13508504, "featuredRunMedia": null, "reactionVideos": [], @@ -472202,7 +471853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 13510761, "featuredRunMedia": null, "reactionVideos": [], @@ -472240,7 +471891,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 13510993, "featuredRunMedia": null, "reactionVideos": [], @@ -472273,7 +471924,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13511362, "featuredRunMedia": null, "reactionVideos": [], @@ -472301,7 +471952,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13512857, "featuredRunMedia": null, "reactionVideos": [], @@ -472339,7 +471990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 13512862, "featuredRunMedia": null, "reactionVideos": [], @@ -472367,7 +472018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 143, + "teamId": "1251", "time": 13513181, "featuredRunMedia": null, "reactionVideos": [], @@ -472400,7 +472051,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13514144, "featuredRunMedia": null, "reactionVideos": [], @@ -472438,7 +472089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 13515601, "featuredRunMedia": null, "reactionVideos": [], @@ -472476,7 +472127,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 13515754, "featuredRunMedia": null, "reactionVideos": [], @@ -472514,7 +472165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13515978, "featuredRunMedia": null, "reactionVideos": [], @@ -472552,7 +472203,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 13517145, "featuredRunMedia": null, "reactionVideos": [], @@ -472590,7 +472241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 13518436, "featuredRunMedia": null, "reactionVideos": [], @@ -472623,7 +472274,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 13519686, "featuredRunMedia": null, "reactionVideos": [], @@ -472661,7 +472312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 13520237, "featuredRunMedia": null, "reactionVideos": [], @@ -472689,7 +472340,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 13520237, "featuredRunMedia": null, "reactionVideos": [], @@ -472727,7 +472378,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 13521051, "featuredRunMedia": null, "reactionVideos": [], @@ -472765,7 +472416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 13521869, "featuredRunMedia": null, "reactionVideos": [], @@ -472803,7 +472454,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 295, + "teamId": "3149", "time": 13522637, "featuredRunMedia": null, "reactionVideos": [], @@ -472831,7 +472482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 13527543, "featuredRunMedia": null, "reactionVideos": [], @@ -472864,7 +472515,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13529022, "featuredRunMedia": null, "reactionVideos": [], @@ -472892,7 +472543,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 13529029, "featuredRunMedia": null, "reactionVideos": [], @@ -472930,7 +472581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 13529796, "featuredRunMedia": null, "reactionVideos": [], @@ -472963,7 +472614,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 13530485, "featuredRunMedia": null, "reactionVideos": [], @@ -473001,7 +472652,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13532076, "featuredRunMedia": null, "reactionVideos": [], @@ -473029,7 +472680,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13532523, "featuredRunMedia": null, "reactionVideos": [], @@ -473067,7 +472718,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 13532651, "featuredRunMedia": null, "reactionVideos": [], @@ -473095,7 +472746,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 13532729, "featuredRunMedia": null, "reactionVideos": [], @@ -473133,7 +472784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13533988, "featuredRunMedia": null, "reactionVideos": [], @@ -473161,7 +472812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 13534862, "featuredRunMedia": null, "reactionVideos": [], @@ -473183,7 +472834,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13535086, "featuredRunMedia": null, "reactionVideos": [], @@ -473216,7 +472867,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 13535600, "featuredRunMedia": null, "reactionVideos": [], @@ -473254,7 +472905,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13536305, "featuredRunMedia": null, "reactionVideos": [], @@ -473276,7 +472927,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 13538825, "featuredRunMedia": null, "reactionVideos": [], @@ -473309,7 +472960,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13539838, "featuredRunMedia": null, "reactionVideos": [], @@ -473337,7 +472988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 13540496, "featuredRunMedia": null, "reactionVideos": [], @@ -473370,7 +473021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 13542182, "featuredRunMedia": null, "reactionVideos": [], @@ -473403,7 +473054,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 264, + "teamId": "2651", "time": 13546453, "featuredRunMedia": null, "reactionVideos": [], @@ -473441,7 +473092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 13546543, "featuredRunMedia": null, "reactionVideos": [], @@ -473474,7 +473125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 13547514, "featuredRunMedia": null, "reactionVideos": [], @@ -473496,7 +473147,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 13548115, "featuredRunMedia": null, "reactionVideos": [], @@ -473534,7 +473185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 13553176, "featuredRunMedia": null, "reactionVideos": [], @@ -473562,7 +473213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 13553615, "featuredRunMedia": null, "reactionVideos": [], @@ -473595,7 +473246,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 13554331, "featuredRunMedia": null, "reactionVideos": [], @@ -473623,7 +473274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 13554741, "featuredRunMedia": null, "reactionVideos": [], @@ -473661,7 +473312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 146, + "teamId": "1456", "time": 13555723, "featuredRunMedia": null, "reactionVideos": [], @@ -473694,7 +473345,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13556735, "featuredRunMedia": null, "reactionVideos": [], @@ -473727,7 +473378,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13557909, "featuredRunMedia": null, "reactionVideos": [], @@ -473765,7 +473416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 13558425, "featuredRunMedia": null, "reactionVideos": [], @@ -473798,7 +473449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "1741", "time": 13558786, "featuredRunMedia": null, "reactionVideos": [], @@ -473836,7 +473487,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 263, + "teamId": "2545", "time": 13559548, "featuredRunMedia": null, "reactionVideos": [], @@ -473864,7 +473515,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13560392, "featuredRunMedia": null, "reactionVideos": [], @@ -473902,7 +473553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 13563376, "featuredRunMedia": null, "reactionVideos": [], @@ -473935,7 +473586,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13564242, "featuredRunMedia": null, "reactionVideos": [], @@ -473968,7 +473619,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 13564875, "featuredRunMedia": null, "reactionVideos": [], @@ -473996,7 +473647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 13565293, "featuredRunMedia": null, "reactionVideos": [], @@ -474034,7 +473685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 13566179, "featuredRunMedia": null, "reactionVideos": [], @@ -474062,7 +473713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13566308, "featuredRunMedia": null, "reactionVideos": [], @@ -474095,7 +473746,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 13567003, "featuredRunMedia": null, "reactionVideos": [], @@ -474123,7 +473774,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 13568538, "featuredRunMedia": null, "reactionVideos": [], @@ -474145,7 +473796,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13569597, "featuredRunMedia": null, "reactionVideos": [], @@ -474173,7 +473824,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13570747, "featuredRunMedia": null, "reactionVideos": [], @@ -474211,7 +473862,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 13570999, "featuredRunMedia": null, "reactionVideos": [], @@ -474249,7 +473900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 13571462, "featuredRunMedia": null, "reactionVideos": [], @@ -474282,7 +473933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13573039, "featuredRunMedia": null, "reactionVideos": [], @@ -474315,7 +473966,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 13573085, "featuredRunMedia": null, "reactionVideos": [], @@ -474348,7 +473999,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 13573349, "featuredRunMedia": null, "reactionVideos": [], @@ -474386,7 +474037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13573455, "featuredRunMedia": null, "reactionVideos": [], @@ -474419,7 +474070,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 13573565, "featuredRunMedia": null, "reactionVideos": [], @@ -474457,7 +474108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 13574059, "featuredRunMedia": null, "reactionVideos": [], @@ -474485,7 +474136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 13575393, "featuredRunMedia": null, "reactionVideos": [], @@ -474513,7 +474164,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13576696, "featuredRunMedia": null, "reactionVideos": [], @@ -474535,7 +474186,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13577479, "featuredRunMedia": null, "reactionVideos": [], @@ -474563,7 +474214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13578107, "featuredRunMedia": null, "reactionVideos": [], @@ -474591,7 +474242,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13580631, "featuredRunMedia": null, "reactionVideos": [], @@ -474624,7 +474275,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "2945", "time": 13581686, "featuredRunMedia": null, "reactionVideos": [], @@ -474652,7 +474303,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13582544, "featuredRunMedia": null, "reactionVideos": [], @@ -474690,7 +474341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13585882, "featuredRunMedia": null, "reactionVideos": [], @@ -474718,7 +474369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13586814, "featuredRunMedia": null, "reactionVideos": [], @@ -474756,7 +474407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13587604, "featuredRunMedia": null, "reactionVideos": [], @@ -474794,7 +474445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 13587852, "featuredRunMedia": null, "reactionVideos": [], @@ -474822,7 +474473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 13588622, "featuredRunMedia": null, "reactionVideos": [], @@ -474860,7 +474511,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 13588729, "featuredRunMedia": null, "reactionVideos": [], @@ -474898,7 +474549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13589229, "featuredRunMedia": null, "reactionVideos": [], @@ -474926,7 +474577,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 13591419, "featuredRunMedia": null, "reactionVideos": [], @@ -474959,7 +474610,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13595126, "featuredRunMedia": null, "reactionVideos": [], @@ -474992,7 +474643,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 13595844, "featuredRunMedia": null, "reactionVideos": [], @@ -475030,7 +474681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "1653", "time": 13596123, "featuredRunMedia": null, "reactionVideos": [], @@ -475068,7 +474719,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13597502, "featuredRunMedia": null, "reactionVideos": [], @@ -475096,7 +474747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 38, + "teamId": "2053", "time": 13598604, "featuredRunMedia": null, "reactionVideos": [], @@ -475134,7 +474785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 13599125, "featuredRunMedia": null, "reactionVideos": [], @@ -475162,7 +474813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 13601203, "featuredRunMedia": null, "reactionVideos": [], @@ -475200,7 +474851,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 13601291, "featuredRunMedia": null, "reactionVideos": [], @@ -475233,7 +474884,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 13605001, "featuredRunMedia": null, "reactionVideos": [], @@ -475271,7 +474922,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 67, + "teamId": "1154", "time": 13605082, "featuredRunMedia": null, "reactionVideos": [], @@ -475309,7 +474960,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13607415, "featuredRunMedia": null, "reactionVideos": [], @@ -475342,7 +474993,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13610818, "featuredRunMedia": null, "reactionVideos": [], @@ -475370,7 +475021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 13613166, "featuredRunMedia": null, "reactionVideos": [], @@ -475408,7 +475059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 13613719, "featuredRunMedia": null, "reactionVideos": [], @@ -475446,7 +475097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 13613780, "featuredRunMedia": null, "reactionVideos": [], @@ -475474,7 +475125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13615250, "featuredRunMedia": null, "reactionVideos": [], @@ -475512,7 +475163,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 13615305, "featuredRunMedia": null, "reactionVideos": [], @@ -475550,7 +475201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 13615859, "featuredRunMedia": null, "reactionVideos": [], @@ -475572,7 +475223,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 13616304, "featuredRunMedia": null, "reactionVideos": [], @@ -475610,7 +475261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13617217, "featuredRunMedia": null, "reactionVideos": [], @@ -475648,7 +475299,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 169, + "teamId": "2255", "time": 13617942, "featuredRunMedia": null, "reactionVideos": [], @@ -475681,7 +475332,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 264, + "teamId": "2651", "time": 13618371, "featuredRunMedia": null, "reactionVideos": [], @@ -475719,7 +475370,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 13618803, "featuredRunMedia": null, "reactionVideos": [], @@ -475752,7 +475403,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 118, + "teamId": "2756", "time": 13619095, "featuredRunMedia": null, "reactionVideos": [], @@ -475790,7 +475441,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 13619198, "featuredRunMedia": null, "reactionVideos": [], @@ -475818,7 +475469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 347, + "teamId": "2954", "time": 13620085, "featuredRunMedia": null, "reactionVideos": [], @@ -475846,7 +475497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13622054, "featuredRunMedia": null, "reactionVideos": [], @@ -475884,7 +475535,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13622280, "featuredRunMedia": null, "reactionVideos": [], @@ -475922,7 +475573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 6, + "teamId": "2453", "time": 13622639, "featuredRunMedia": null, "reactionVideos": [], @@ -475950,7 +475601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 316, + "teamId": "1641", "time": 13622831, "featuredRunMedia": null, "reactionVideos": [], @@ -475983,7 +475634,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 257, + "teamId": "1651", "time": 13623706, "featuredRunMedia": null, "reactionVideos": [], @@ -476011,7 +475662,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13625673, "featuredRunMedia": null, "reactionVideos": [], @@ -476039,7 +475690,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 347, + "teamId": "2954", "time": 13627813, "featuredRunMedia": null, "reactionVideos": [], @@ -476077,7 +475728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 13629443, "featuredRunMedia": null, "reactionVideos": [], @@ -476105,7 +475756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 13634310, "featuredRunMedia": null, "reactionVideos": [], @@ -476143,7 +475794,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 13634877, "featuredRunMedia": null, "reactionVideos": [], @@ -476176,7 +475827,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13637365, "featuredRunMedia": null, "reactionVideos": [], @@ -476204,7 +475855,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13637944, "featuredRunMedia": null, "reactionVideos": [], @@ -476237,7 +475888,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 216, + "teamId": "1753", "time": 13638365, "featuredRunMedia": null, "reactionVideos": [], @@ -476275,7 +475926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 13639893, "featuredRunMedia": null, "reactionVideos": [], @@ -476303,7 +475954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13643034, "featuredRunMedia": null, "reactionVideos": [], @@ -476336,7 +475987,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 13645039, "featuredRunMedia": null, "reactionVideos": [], @@ -476374,7 +476025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 13646238, "featuredRunMedia": null, "reactionVideos": [], @@ -476402,7 +476053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13647883, "featuredRunMedia": null, "reactionVideos": [], @@ -476435,7 +476086,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13648243, "featuredRunMedia": null, "reactionVideos": [], @@ -476473,7 +476124,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13652096, "featuredRunMedia": null, "reactionVideos": [], @@ -476506,7 +476157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13652709, "featuredRunMedia": null, "reactionVideos": [], @@ -476534,7 +476185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13657183, "featuredRunMedia": null, "reactionVideos": [], @@ -476572,7 +476223,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 13658763, "featuredRunMedia": null, "reactionVideos": [], @@ -476610,7 +476261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "1653", "time": 13659173, "featuredRunMedia": null, "reactionVideos": [], @@ -476643,7 +476294,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "2144", "time": 13662341, "featuredRunMedia": null, "reactionVideos": [], @@ -476681,7 +476332,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13662907, "featuredRunMedia": null, "reactionVideos": [], @@ -476719,7 +476370,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 13662955, "featuredRunMedia": null, "reactionVideos": [], @@ -476757,7 +476408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 13663889, "featuredRunMedia": null, "reactionVideos": [], @@ -476795,7 +476446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 13666086, "featuredRunMedia": null, "reactionVideos": [], @@ -476833,7 +476484,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 13666462, "featuredRunMedia": null, "reactionVideos": [], @@ -476861,7 +476512,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13667176, "featuredRunMedia": null, "reactionVideos": [], @@ -476899,7 +476550,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13667485, "featuredRunMedia": null, "reactionVideos": [], @@ -476937,7 +476588,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 13667964, "featuredRunMedia": null, "reactionVideos": [], @@ -476970,7 +476621,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13671208, "featuredRunMedia": null, "reactionVideos": [], @@ -476998,7 +476649,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 13671365, "featuredRunMedia": null, "reactionVideos": [], @@ -477026,7 +476677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 119, + "teamId": "2041", "time": 13674582, "featuredRunMedia": null, "reactionVideos": [], @@ -477064,7 +476715,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13678979, "featuredRunMedia": null, "reactionVideos": [], @@ -477092,7 +476743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 13680919, "featuredRunMedia": null, "reactionVideos": [], @@ -477120,7 +476771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 13681864, "featuredRunMedia": null, "reactionVideos": [], @@ -477148,7 +476799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13686540, "featuredRunMedia": null, "reactionVideos": [], @@ -477181,7 +476832,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13687278, "featuredRunMedia": null, "reactionVideos": [], @@ -477214,7 +476865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13688402, "featuredRunMedia": null, "reactionVideos": [], @@ -477247,7 +476898,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 13688785, "featuredRunMedia": null, "reactionVideos": [], @@ -477275,7 +476926,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 13689310, "featuredRunMedia": null, "reactionVideos": [], @@ -477303,7 +476954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 13693659, "featuredRunMedia": null, "reactionVideos": [], @@ -477341,7 +476992,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 13693811, "featuredRunMedia": null, "reactionVideos": [], @@ -477379,7 +477030,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 13695788, "featuredRunMedia": null, "reactionVideos": [], @@ -477417,7 +477068,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 13696972, "featuredRunMedia": null, "reactionVideos": [], @@ -477455,7 +477106,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 13698181, "featuredRunMedia": null, "reactionVideos": [], @@ -477493,7 +477144,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13698802, "featuredRunMedia": null, "reactionVideos": [], @@ -477521,7 +477172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13702137, "featuredRunMedia": null, "reactionVideos": [], @@ -477559,7 +477210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13702416, "featuredRunMedia": null, "reactionVideos": [], @@ -477597,7 +477248,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 13702432, "featuredRunMedia": null, "reactionVideos": [], @@ -477630,7 +477281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "2054", "time": 13703537, "featuredRunMedia": null, "reactionVideos": [], @@ -477668,7 +477319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13704116, "featuredRunMedia": null, "reactionVideos": [], @@ -477706,7 +477357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 13704423, "featuredRunMedia": null, "reactionVideos": [], @@ -477734,7 +477385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13704847, "featuredRunMedia": null, "reactionVideos": [], @@ -477772,7 +477423,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 13707757, "featuredRunMedia": null, "reactionVideos": [], @@ -477810,7 +477461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 13708795, "featuredRunMedia": null, "reactionVideos": [], @@ -477843,7 +477494,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13710532, "featuredRunMedia": null, "reactionVideos": [], @@ -477871,7 +477522,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13713132, "featuredRunMedia": null, "reactionVideos": [], @@ -477899,7 +477550,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 13715298, "featuredRunMedia": null, "reactionVideos": [], @@ -477927,7 +477578,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13717771, "featuredRunMedia": null, "reactionVideos": [], @@ -477955,7 +477606,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 13719088, "featuredRunMedia": null, "reactionVideos": [], @@ -477983,7 +477634,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13720545, "featuredRunMedia": null, "reactionVideos": [], @@ -478021,7 +477672,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13721370, "featuredRunMedia": null, "reactionVideos": [], @@ -478059,7 +477710,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 13721867, "featuredRunMedia": null, "reactionVideos": [], @@ -478087,7 +477738,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13722326, "featuredRunMedia": null, "reactionVideos": [], @@ -478125,7 +477776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 13724964, "featuredRunMedia": null, "reactionVideos": [], @@ -478158,7 +477809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13726210, "featuredRunMedia": null, "reactionVideos": [], @@ -478191,7 +477842,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 13727168, "featuredRunMedia": null, "reactionVideos": [], @@ -478229,7 +477880,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 296, + "teamId": "1452", "time": 13727534, "featuredRunMedia": null, "reactionVideos": [], @@ -478262,7 +477913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13727658, "featuredRunMedia": null, "reactionVideos": [], @@ -478300,7 +477951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13728936, "featuredRunMedia": null, "reactionVideos": [], @@ -478338,7 +477989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 51, + "teamId": "1547", "time": 13729042, "featuredRunMedia": null, "reactionVideos": [], @@ -478366,7 +478017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 13729318, "featuredRunMedia": null, "reactionVideos": [], @@ -478394,7 +478045,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 13729869, "featuredRunMedia": null, "reactionVideos": [], @@ -478427,7 +478078,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 13733708, "featuredRunMedia": null, "reactionVideos": [], @@ -478455,7 +478106,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13737715, "featuredRunMedia": null, "reactionVideos": [], @@ -478493,7 +478144,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 13738423, "featuredRunMedia": null, "reactionVideos": [], @@ -478521,7 +478172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13738795, "featuredRunMedia": null, "reactionVideos": [], @@ -478559,7 +478210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 13739676, "featuredRunMedia": null, "reactionVideos": [], @@ -478592,7 +478243,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13739915, "featuredRunMedia": null, "reactionVideos": [], @@ -478618,7 +478269,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 13741496, "featuredRunMedia": null, "reactionVideos": [], @@ -478651,7 +478302,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 13741651, "featuredRunMedia": null, "reactionVideos": [], @@ -478684,7 +478335,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13742854, "featuredRunMedia": null, "reactionVideos": [], @@ -478722,7 +478373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 13743086, "featuredRunMedia": null, "reactionVideos": [], @@ -478755,7 +478406,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "2945", "time": 13744020, "featuredRunMedia": null, "reactionVideos": [], @@ -478793,7 +478444,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 13744192, "featuredRunMedia": null, "reactionVideos": [], @@ -478831,7 +478482,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 13745402, "featuredRunMedia": null, "reactionVideos": [], @@ -478869,7 +478520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 13745936, "featuredRunMedia": null, "reactionVideos": [], @@ -478902,7 +478553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13747331, "featuredRunMedia": null, "reactionVideos": [], @@ -478940,7 +478591,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13747659, "featuredRunMedia": null, "reactionVideos": [], @@ -478966,7 +478617,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 13748541, "featuredRunMedia": null, "reactionVideos": [], @@ -478994,7 +478645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 13751399, "featuredRunMedia": null, "reactionVideos": [], @@ -479027,7 +478678,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 257, + "teamId": "1651", "time": 13752779, "featuredRunMedia": null, "reactionVideos": [], @@ -479053,7 +478704,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 13752941, "featuredRunMedia": null, "reactionVideos": [], @@ -479091,7 +478742,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 13753745, "featuredRunMedia": null, "reactionVideos": [], @@ -479119,7 +478770,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 13754136, "featuredRunMedia": null, "reactionVideos": [], @@ -479157,7 +478808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 259, + "teamId": "2946", "time": 13754777, "featuredRunMedia": null, "reactionVideos": [], @@ -479185,7 +478836,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 13756005, "featuredRunMedia": null, "reactionVideos": [], @@ -479218,7 +478869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 13756610, "featuredRunMedia": null, "reactionVideos": [], @@ -479246,7 +478897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13756798, "featuredRunMedia": null, "reactionVideos": [], @@ -479274,7 +478925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 13757272, "featuredRunMedia": null, "reactionVideos": [], @@ -479300,7 +478951,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 13757519, "featuredRunMedia": null, "reactionVideos": [], @@ -479328,7 +478979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 13757933, "featuredRunMedia": null, "reactionVideos": [], @@ -479356,7 +479007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13758130, "featuredRunMedia": null, "reactionVideos": [], @@ -479394,7 +479045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13759557, "featuredRunMedia": null, "reactionVideos": [], @@ -479422,7 +479073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 13760248, "featuredRunMedia": null, "reactionVideos": [], @@ -479460,7 +479111,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13761055, "featuredRunMedia": null, "reactionVideos": [], @@ -479488,7 +479139,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 13763563, "featuredRunMedia": null, "reactionVideos": [], @@ -479526,7 +479177,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 13766923, "featuredRunMedia": null, "reactionVideos": [], @@ -479554,7 +479205,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 13768537, "featuredRunMedia": null, "reactionVideos": [], @@ -479587,7 +479238,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 13771160, "featuredRunMedia": null, "reactionVideos": [], @@ -479615,7 +479266,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 192, + "teamId": "1849", "time": 13773011, "featuredRunMedia": null, "reactionVideos": [], @@ -479641,7 +479292,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 13773844, "featuredRunMedia": null, "reactionVideos": [], @@ -479679,7 +479330,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 13773931, "featuredRunMedia": null, "reactionVideos": [], @@ -479717,7 +479368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13775799, "featuredRunMedia": null, "reactionVideos": [], @@ -479755,7 +479406,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13775950, "featuredRunMedia": null, "reactionVideos": [], @@ -479793,7 +479444,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13777356, "featuredRunMedia": null, "reactionVideos": [], @@ -479815,7 +479466,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 13777842, "featuredRunMedia": null, "reactionVideos": [], @@ -479853,7 +479504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13779231, "featuredRunMedia": null, "reactionVideos": [], @@ -479881,7 +479532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 13779493, "featuredRunMedia": null, "reactionVideos": [], @@ -479914,7 +479565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13779620, "featuredRunMedia": null, "reactionVideos": [], @@ -479947,7 +479598,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 13781440, "featuredRunMedia": null, "reactionVideos": [], @@ -479985,7 +479636,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 13781929, "featuredRunMedia": null, "reactionVideos": [], @@ -480023,7 +479674,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 13782293, "featuredRunMedia": null, "reactionVideos": [], @@ -480061,7 +479712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 13782408, "featuredRunMedia": null, "reactionVideos": [], @@ -480099,7 +479750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 13782665, "featuredRunMedia": null, "reactionVideos": [], @@ -480127,7 +479778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13783204, "featuredRunMedia": null, "reactionVideos": [], @@ -480160,7 +479811,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 13783761, "featuredRunMedia": null, "reactionVideos": [], @@ -480193,7 +479844,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 13784455, "featuredRunMedia": null, "reactionVideos": [], @@ -480226,7 +479877,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13785455, "featuredRunMedia": null, "reactionVideos": [], @@ -480259,7 +479910,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 13785774, "featuredRunMedia": null, "reactionVideos": [], @@ -480297,7 +479948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 13788448, "featuredRunMedia": null, "reactionVideos": [], @@ -480335,7 +479986,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13790653, "featuredRunMedia": null, "reactionVideos": [], @@ -480373,7 +480024,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 13791307, "featuredRunMedia": null, "reactionVideos": [], @@ -480401,7 +480052,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 13792411, "featuredRunMedia": null, "reactionVideos": [], @@ -480439,7 +480090,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 13792655, "featuredRunMedia": null, "reactionVideos": [], @@ -480477,7 +480128,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 13793197, "featuredRunMedia": null, "reactionVideos": [], @@ -480510,7 +480161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13793622, "featuredRunMedia": null, "reactionVideos": [], @@ -480538,7 +480189,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 13794006, "featuredRunMedia": null, "reactionVideos": [], @@ -480566,7 +480217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "3149", "time": 13794238, "featuredRunMedia": null, "reactionVideos": [], @@ -480604,7 +480255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 28, + "teamId": "1650", "time": 13794269, "featuredRunMedia": null, "reactionVideos": [], @@ -480642,7 +480293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13796703, "featuredRunMedia": null, "reactionVideos": [], @@ -480680,7 +480331,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 13796994, "featuredRunMedia": null, "reactionVideos": [], @@ -480718,7 +480369,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 13798910, "featuredRunMedia": null, "reactionVideos": [], @@ -480756,7 +480407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13801727, "featuredRunMedia": null, "reactionVideos": [], @@ -480794,7 +480445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 175, + "teamId": "2044", "time": 13803489, "featuredRunMedia": null, "reactionVideos": [], @@ -480832,7 +480483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13808711, "featuredRunMedia": null, "reactionVideos": [], @@ -480870,7 +480521,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 61, + "teamId": "2045", "time": 13809754, "featuredRunMedia": null, "reactionVideos": [], @@ -480898,7 +480549,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 13810764, "featuredRunMedia": null, "reactionVideos": [], @@ -480936,7 +480587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 13811817, "featuredRunMedia": null, "reactionVideos": [], @@ -480969,7 +480620,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 13811884, "featuredRunMedia": null, "reactionVideos": [], @@ -481007,7 +480658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 13812055, "featuredRunMedia": null, "reactionVideos": [], @@ -481045,7 +480696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 13815137, "featuredRunMedia": null, "reactionVideos": [], @@ -481083,7 +480734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 13815904, "featuredRunMedia": null, "reactionVideos": [], @@ -481116,7 +480767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 13818724, "featuredRunMedia": null, "reactionVideos": [], @@ -481144,7 +480795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13819257, "featuredRunMedia": null, "reactionVideos": [], @@ -481177,7 +480828,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 13820201, "featuredRunMedia": null, "reactionVideos": [], @@ -481210,7 +480861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 184, + "teamId": "1448", "time": 13821970, "featuredRunMedia": null, "reactionVideos": [], @@ -481243,7 +480894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13823159, "featuredRunMedia": null, "reactionVideos": [], @@ -481281,7 +480932,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 13830267, "featuredRunMedia": null, "reactionVideos": [], @@ -481314,7 +480965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 13832957, "featuredRunMedia": null, "reactionVideos": [], @@ -481347,7 +480998,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13833019, "featuredRunMedia": null, "reactionVideos": [], @@ -481375,7 +481026,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 199, + "teamId": "1544", "time": 13834826, "featuredRunMedia": null, "reactionVideos": [], @@ -481413,7 +481064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 13835718, "featuredRunMedia": null, "reactionVideos": [], @@ -481451,7 +481102,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 13836166, "featuredRunMedia": null, "reactionVideos": [], @@ -481489,7 +481140,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 13836638, "featuredRunMedia": null, "reactionVideos": [], @@ -481517,7 +481168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 13837775, "featuredRunMedia": null, "reactionVideos": [], @@ -481555,7 +481206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 13842168, "featuredRunMedia": null, "reactionVideos": [], @@ -481588,7 +481239,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 13842245, "featuredRunMedia": null, "reactionVideos": [], @@ -481626,7 +481277,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 13842366, "featuredRunMedia": null, "reactionVideos": [], @@ -481659,7 +481310,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 13842733, "featuredRunMedia": null, "reactionVideos": [], @@ -481697,7 +481348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 185, + "teamId": "2547", "time": 13845787, "featuredRunMedia": null, "reactionVideos": [], @@ -481735,7 +481386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 13846911, "featuredRunMedia": null, "reactionVideos": [], @@ -481757,7 +481408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 13849478, "featuredRunMedia": null, "reactionVideos": [], @@ -481795,7 +481446,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13849872, "featuredRunMedia": null, "reactionVideos": [], @@ -481828,7 +481479,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 13854282, "featuredRunMedia": null, "reactionVideos": [], @@ -481866,7 +481517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 13856468, "featuredRunMedia": null, "reactionVideos": [], @@ -481904,7 +481555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 13856729, "featuredRunMedia": null, "reactionVideos": [], @@ -481932,7 +481583,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "2645", "time": 13857326, "featuredRunMedia": null, "reactionVideos": [], @@ -481960,7 +481611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 13861383, "featuredRunMedia": null, "reactionVideos": [], @@ -481998,7 +481649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 27, + "teamId": "1653", "time": 13865632, "featuredRunMedia": null, "reactionVideos": [], @@ -482036,7 +481687,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 13865686, "featuredRunMedia": null, "reactionVideos": [], @@ -482074,7 +481725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 13865938, "featuredRunMedia": null, "reactionVideos": [], @@ -482102,7 +481753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 13867703, "featuredRunMedia": null, "reactionVideos": [], @@ -482135,7 +481786,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 13868215, "featuredRunMedia": null, "reactionVideos": [], @@ -482163,7 +481814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13868216, "featuredRunMedia": null, "reactionVideos": [], @@ -482196,7 +481847,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13870494, "featuredRunMedia": null, "reactionVideos": [], @@ -482234,7 +481885,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13870859, "featuredRunMedia": null, "reactionVideos": [], @@ -482272,7 +481923,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 13871548, "featuredRunMedia": null, "reactionVideos": [], @@ -482305,7 +481956,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13875772, "featuredRunMedia": null, "reactionVideos": [], @@ -482338,7 +481989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13876044, "featuredRunMedia": null, "reactionVideos": [], @@ -482366,7 +482017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13876096, "featuredRunMedia": null, "reactionVideos": [], @@ -482404,7 +482055,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13879374, "featuredRunMedia": null, "reactionVideos": [], @@ -482442,7 +482093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 13885048, "featuredRunMedia": null, "reactionVideos": [], @@ -482475,7 +482126,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13885305, "featuredRunMedia": null, "reactionVideos": [], @@ -482503,7 +482154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 13887447, "featuredRunMedia": null, "reactionVideos": [], @@ -482541,7 +482192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 13890848, "featuredRunMedia": null, "reactionVideos": [], @@ -482569,7 +482220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 13896902, "featuredRunMedia": null, "reactionVideos": [], @@ -482607,7 +482258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 13897720, "featuredRunMedia": null, "reactionVideos": [], @@ -482635,7 +482286,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 13897942, "featuredRunMedia": null, "reactionVideos": [], @@ -482668,7 +482319,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 13900581, "featuredRunMedia": null, "reactionVideos": [], @@ -482706,7 +482357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 13904355, "featuredRunMedia": null, "reactionVideos": [], @@ -482744,7 +482395,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 13904612, "featuredRunMedia": null, "reactionVideos": [], @@ -482782,7 +482433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 13905717, "featuredRunMedia": null, "reactionVideos": [], @@ -482820,7 +482471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 13907202, "featuredRunMedia": null, "reactionVideos": [], @@ -482858,7 +482509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 13909623, "featuredRunMedia": null, "reactionVideos": [], @@ -482891,7 +482542,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 13911117, "featuredRunMedia": null, "reactionVideos": [], @@ -482924,7 +482575,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 241, + "teamId": "1556", "time": 13912826, "featuredRunMedia": null, "reactionVideos": [], @@ -482952,7 +482603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13913578, "featuredRunMedia": null, "reactionVideos": [], @@ -482990,7 +482641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13914459, "featuredRunMedia": null, "reactionVideos": [], @@ -483018,7 +482669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 13914628, "featuredRunMedia": null, "reactionVideos": [], @@ -483051,7 +482702,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13917862, "featuredRunMedia": null, "reactionVideos": [], @@ -483084,7 +482735,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 13920014, "featuredRunMedia": null, "reactionVideos": [], @@ -483122,7 +482773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 13920636, "featuredRunMedia": null, "reactionVideos": [], @@ -483155,7 +482806,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 13921119, "featuredRunMedia": null, "reactionVideos": [], @@ -483177,7 +482828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 13921276, "featuredRunMedia": null, "reactionVideos": [], @@ -483205,7 +482856,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 13921371, "featuredRunMedia": null, "reactionVideos": [], @@ -483238,7 +482889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 13921722, "featuredRunMedia": null, "reactionVideos": [], @@ -483266,7 +482917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 13922469, "featuredRunMedia": null, "reactionVideos": [], @@ -483294,7 +482945,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 13922486, "featuredRunMedia": null, "reactionVideos": [], @@ -483332,7 +482983,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13923322, "featuredRunMedia": null, "reactionVideos": [], @@ -483365,7 +483016,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 196, + "teamId": "3048", "time": 13923589, "featuredRunMedia": null, "reactionVideos": [], @@ -483393,7 +483044,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 13923860, "featuredRunMedia": null, "reactionVideos": [], @@ -483431,7 +483082,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 13927133, "featuredRunMedia": null, "reactionVideos": [], @@ -483453,7 +483104,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 13927444, "featuredRunMedia": null, "reactionVideos": [], @@ -483486,7 +483137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13929108, "featuredRunMedia": null, "reactionVideos": [], @@ -483514,7 +483165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13929869, "featuredRunMedia": null, "reactionVideos": [], @@ -483547,7 +483198,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 13930682, "featuredRunMedia": null, "reactionVideos": [], @@ -483575,7 +483226,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 13932053, "featuredRunMedia": null, "reactionVideos": [], @@ -483608,7 +483259,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 13932894, "featuredRunMedia": null, "reactionVideos": [], @@ -483636,7 +483287,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 13933104, "featuredRunMedia": null, "reactionVideos": [], @@ -483674,7 +483325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 167, + "teamId": "1353", "time": 13934635, "featuredRunMedia": null, "reactionVideos": [], @@ -483712,7 +483363,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 13935063, "featuredRunMedia": null, "reactionVideos": [], @@ -483750,7 +483401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 13935410, "featuredRunMedia": null, "reactionVideos": [], @@ -483788,7 +483439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 13937500, "featuredRunMedia": null, "reactionVideos": [], @@ -483826,7 +483477,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 13938357, "featuredRunMedia": null, "reactionVideos": [], @@ -483859,7 +483510,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 13939795, "featuredRunMedia": null, "reactionVideos": [], @@ -483887,7 +483538,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 13939951, "featuredRunMedia": null, "reactionVideos": [], @@ -483920,7 +483571,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 13939958, "featuredRunMedia": null, "reactionVideos": [], @@ -483958,7 +483609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 13941715, "featuredRunMedia": null, "reactionVideos": [], @@ -483991,7 +483642,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 13942215, "featuredRunMedia": null, "reactionVideos": [], @@ -484029,7 +483680,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 13943897, "featuredRunMedia": null, "reactionVideos": [], @@ -484067,7 +483718,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 13945034, "featuredRunMedia": null, "reactionVideos": [], @@ -484105,7 +483756,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 13946205, "featuredRunMedia": null, "reactionVideos": [], @@ -484133,7 +483784,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 57, + "teamId": "2450", "time": 13950686, "featuredRunMedia": null, "reactionVideos": [], @@ -484166,7 +483817,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13953008, "featuredRunMedia": null, "reactionVideos": [], @@ -484188,7 +483839,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 13956508, "featuredRunMedia": null, "reactionVideos": [], @@ -484221,7 +483872,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 13956788, "featuredRunMedia": null, "reactionVideos": [], @@ -484259,7 +483910,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 13957249, "featuredRunMedia": null, "reactionVideos": [], @@ -484287,7 +483938,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 86, + "teamId": "3251", "time": 13958110, "featuredRunMedia": null, "reactionVideos": [], @@ -484320,7 +483971,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 13958375, "featuredRunMedia": null, "reactionVideos": [], @@ -484348,7 +483999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 13964432, "featuredRunMedia": null, "reactionVideos": [], @@ -484386,7 +484037,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 13964910, "featuredRunMedia": null, "reactionVideos": [], @@ -484424,7 +484075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 13965184, "featuredRunMedia": null, "reactionVideos": [], @@ -484462,7 +484113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 13965508, "featuredRunMedia": null, "reactionVideos": [], @@ -484500,7 +484151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 13968181, "featuredRunMedia": null, "reactionVideos": [], @@ -484538,7 +484189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 13969541, "featuredRunMedia": null, "reactionVideos": [], @@ -484576,7 +484227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 13970486, "featuredRunMedia": null, "reactionVideos": [], @@ -484614,7 +484265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 13971507, "featuredRunMedia": null, "reactionVideos": [], @@ -484647,7 +484298,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13971537, "featuredRunMedia": null, "reactionVideos": [], @@ -484685,7 +484336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 13972607, "featuredRunMedia": null, "reactionVideos": [], @@ -484723,7 +484374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 13973814, "featuredRunMedia": null, "reactionVideos": [], @@ -484761,7 +484412,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 13977048, "featuredRunMedia": null, "reactionVideos": [], @@ -484789,7 +484440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 13977172, "featuredRunMedia": null, "reactionVideos": [], @@ -484822,7 +484473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 13978364, "featuredRunMedia": null, "reactionVideos": [], @@ -484860,7 +484511,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 13982031, "featuredRunMedia": null, "reactionVideos": [], @@ -484893,7 +484544,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 13982213, "featuredRunMedia": null, "reactionVideos": [], @@ -484921,7 +484572,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 13983006, "featuredRunMedia": null, "reactionVideos": [], @@ -484954,7 +484605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 13986132, "featuredRunMedia": null, "reactionVideos": [], @@ -484987,7 +484638,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "2055", "time": 13987252, "featuredRunMedia": null, "reactionVideos": [], @@ -485015,7 +484666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 13989955, "featuredRunMedia": null, "reactionVideos": [], @@ -485053,7 +484704,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 13990230, "featuredRunMedia": null, "reactionVideos": [], @@ -485086,7 +484737,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 13990913, "featuredRunMedia": null, "reactionVideos": [], @@ -485124,7 +484775,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 13993944, "featuredRunMedia": null, "reactionVideos": [], @@ -485162,7 +484813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 13997117, "featuredRunMedia": null, "reactionVideos": [], @@ -485190,7 +484841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 13997248, "featuredRunMedia": null, "reactionVideos": [], @@ -485218,7 +484869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 13998757, "featuredRunMedia": null, "reactionVideos": [], @@ -485256,7 +484907,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 14000544, "featuredRunMedia": null, "reactionVideos": [], @@ -485284,7 +484935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 14003171, "featuredRunMedia": null, "reactionVideos": [], @@ -485317,7 +484968,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14003211, "featuredRunMedia": null, "reactionVideos": [], @@ -485350,7 +485001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 14005952, "featuredRunMedia": null, "reactionVideos": [], @@ -485383,7 +485034,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 14006067, "featuredRunMedia": null, "reactionVideos": [], @@ -485421,7 +485072,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14006073, "featuredRunMedia": null, "reactionVideos": [], @@ -485459,7 +485110,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "2154", "time": 14006749, "featuredRunMedia": null, "reactionVideos": [], @@ -485492,7 +485143,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 14008177, "featuredRunMedia": null, "reactionVideos": [], @@ -485530,7 +485181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 14009589, "featuredRunMedia": null, "reactionVideos": [], @@ -485568,7 +485219,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 325, + "teamId": "1444", "time": 14011242, "featuredRunMedia": null, "reactionVideos": [], @@ -485606,7 +485257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14011600, "featuredRunMedia": null, "reactionVideos": [], @@ -485639,7 +485290,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 14012181, "featuredRunMedia": null, "reactionVideos": [], @@ -485677,7 +485328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 14015712, "featuredRunMedia": null, "reactionVideos": [], @@ -485715,7 +485366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 14016298, "featuredRunMedia": null, "reactionVideos": [], @@ -485748,7 +485399,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 14017366, "featuredRunMedia": null, "reactionVideos": [], @@ -485786,7 +485437,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 14019596, "featuredRunMedia": null, "reactionVideos": [], @@ -485824,7 +485475,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14020170, "featuredRunMedia": null, "reactionVideos": [], @@ -485862,7 +485513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14021383, "featuredRunMedia": null, "reactionVideos": [], @@ -485895,7 +485546,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 14021476, "featuredRunMedia": null, "reactionVideos": [], @@ -485923,7 +485574,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 14021794, "featuredRunMedia": null, "reactionVideos": [], @@ -485961,7 +485612,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 14023643, "featuredRunMedia": null, "reactionVideos": [], @@ -485989,7 +485640,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14025578, "featuredRunMedia": null, "reactionVideos": [], @@ -486017,7 +485668,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 14026045, "featuredRunMedia": null, "reactionVideos": [], @@ -486050,7 +485701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14028011, "featuredRunMedia": null, "reactionVideos": [], @@ -486078,7 +485729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14029673, "featuredRunMedia": null, "reactionVideos": [], @@ -486106,7 +485757,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 14033502, "featuredRunMedia": null, "reactionVideos": [], @@ -486128,7 +485779,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 14033796, "featuredRunMedia": null, "reactionVideos": [], @@ -486156,7 +485807,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 14033849, "featuredRunMedia": null, "reactionVideos": [], @@ -486194,7 +485845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 14037297, "featuredRunMedia": null, "reactionVideos": [], @@ -486222,7 +485873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 14041329, "featuredRunMedia": null, "reactionVideos": [], @@ -486250,7 +485901,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 14042254, "featuredRunMedia": null, "reactionVideos": [], @@ -486288,7 +485939,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 14043365, "featuredRunMedia": null, "reactionVideos": [], @@ -486321,7 +485972,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14045685, "featuredRunMedia": null, "reactionVideos": [], @@ -486354,7 +486005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 14046666, "featuredRunMedia": null, "reactionVideos": [], @@ -486382,7 +486033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "2148", "time": 14047577, "featuredRunMedia": null, "reactionVideos": [], @@ -486415,7 +486066,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 14048019, "featuredRunMedia": null, "reactionVideos": [], @@ -486453,7 +486104,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 14049246, "featuredRunMedia": null, "reactionVideos": [], @@ -486491,7 +486142,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 14052387, "featuredRunMedia": null, "reactionVideos": [], @@ -486524,7 +486175,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "3146", "time": 14052685, "featuredRunMedia": null, "reactionVideos": [], @@ -486562,7 +486213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 14053725, "featuredRunMedia": null, "reactionVideos": [], @@ -486590,7 +486241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14055646, "featuredRunMedia": null, "reactionVideos": [], @@ -486618,7 +486269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14055931, "featuredRunMedia": null, "reactionVideos": [], @@ -486651,7 +486302,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14057187, "featuredRunMedia": null, "reactionVideos": [], @@ -486673,7 +486324,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 14058485, "featuredRunMedia": null, "reactionVideos": [], @@ -486706,7 +486357,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 14058678, "featuredRunMedia": null, "reactionVideos": [], @@ -486744,7 +486395,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 14058774, "featuredRunMedia": null, "reactionVideos": [], @@ -486782,7 +486433,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14059800, "featuredRunMedia": null, "reactionVideos": [], @@ -486820,7 +486471,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 14061717, "featuredRunMedia": null, "reactionVideos": [], @@ -486858,7 +486509,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14062999, "featuredRunMedia": null, "reactionVideos": [], @@ -486896,7 +486547,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14066860, "featuredRunMedia": null, "reactionVideos": [], @@ -486924,7 +486575,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 14068211, "featuredRunMedia": null, "reactionVideos": [], @@ -486962,7 +486613,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 14068485, "featuredRunMedia": null, "reactionVideos": [], @@ -486995,7 +486646,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 14073562, "featuredRunMedia": null, "reactionVideos": [], @@ -487023,7 +486674,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14073856, "featuredRunMedia": null, "reactionVideos": [], @@ -487061,7 +486712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14075828, "featuredRunMedia": null, "reactionVideos": [], @@ -487089,7 +486740,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14079411, "featuredRunMedia": null, "reactionVideos": [], @@ -487122,7 +486773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 14079781, "featuredRunMedia": null, "reactionVideos": [], @@ -487150,7 +486801,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 272, + "teamId": "2051", "time": 14079789, "featuredRunMedia": null, "reactionVideos": [], @@ -487183,7 +486834,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 14084832, "featuredRunMedia": null, "reactionVideos": [], @@ -487209,7 +486860,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 14084891, "featuredRunMedia": null, "reactionVideos": [], @@ -487237,7 +486888,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 14086938, "featuredRunMedia": null, "reactionVideos": [], @@ -487275,7 +486926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14087051, "featuredRunMedia": null, "reactionVideos": [], @@ -487303,7 +486954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14087334, "featuredRunMedia": null, "reactionVideos": [], @@ -487341,7 +486992,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 14087787, "featuredRunMedia": null, "reactionVideos": [], @@ -487379,7 +487030,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 14088569, "featuredRunMedia": null, "reactionVideos": [], @@ -487417,7 +487068,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14090154, "featuredRunMedia": null, "reactionVideos": [], @@ -487450,7 +487101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14093193, "featuredRunMedia": null, "reactionVideos": [], @@ -487488,7 +487139,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 322, + "teamId": "2253", "time": 14093868, "featuredRunMedia": null, "reactionVideos": [], @@ -487514,7 +487165,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 304, + "teamId": "3044", "time": 14094012, "featuredRunMedia": null, "reactionVideos": [], @@ -487542,7 +487193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 14094961, "featuredRunMedia": null, "reactionVideos": [], @@ -487570,7 +487221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 14097869, "featuredRunMedia": null, "reactionVideos": [], @@ -487608,7 +487259,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14098123, "featuredRunMedia": null, "reactionVideos": [], @@ -487646,7 +487297,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 14098372, "featuredRunMedia": null, "reactionVideos": [], @@ -487679,7 +487330,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14099493, "featuredRunMedia": null, "reactionVideos": [], @@ -487712,7 +487363,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 14100434, "featuredRunMedia": null, "reactionVideos": [], @@ -487745,7 +487396,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 14101275, "featuredRunMedia": null, "reactionVideos": [], @@ -487773,7 +487424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14103320, "featuredRunMedia": null, "reactionVideos": [], @@ -487801,7 +487452,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 14103754, "featuredRunMedia": null, "reactionVideos": [], @@ -487829,7 +487480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 14105355, "featuredRunMedia": null, "reactionVideos": [], @@ -487857,7 +487508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 14106347, "featuredRunMedia": null, "reactionVideos": [], @@ -487895,7 +487546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14106673, "featuredRunMedia": null, "reactionVideos": [], @@ -487933,7 +487584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 14108341, "featuredRunMedia": null, "reactionVideos": [], @@ -487961,7 +487612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 14109000, "featuredRunMedia": null, "reactionVideos": [], @@ -487989,7 +487640,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14109861, "featuredRunMedia": null, "reactionVideos": [], @@ -488017,7 +487668,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 14110746, "featuredRunMedia": null, "reactionVideos": [], @@ -488045,7 +487696,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 14113971, "featuredRunMedia": null, "reactionVideos": [], @@ -488083,7 +487734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14114347, "featuredRunMedia": null, "reactionVideos": [], @@ -488121,7 +487772,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 14117229, "featuredRunMedia": null, "reactionVideos": [], @@ -488159,7 +487810,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14117562, "featuredRunMedia": null, "reactionVideos": [], @@ -488192,7 +487843,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14118588, "featuredRunMedia": null, "reactionVideos": [], @@ -488230,7 +487881,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 14118755, "featuredRunMedia": null, "reactionVideos": [], @@ -488263,7 +487914,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14121833, "featuredRunMedia": null, "reactionVideos": [], @@ -488301,7 +487952,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14122290, "featuredRunMedia": null, "reactionVideos": [], @@ -488339,7 +487990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 14122889, "featuredRunMedia": null, "reactionVideos": [], @@ -488367,7 +488018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 14126573, "featuredRunMedia": null, "reactionVideos": [], @@ -488395,7 +488046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 14127081, "featuredRunMedia": null, "reactionVideos": [], @@ -488423,7 +488074,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14130491, "featuredRunMedia": null, "reactionVideos": [], @@ -488451,7 +488102,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 14132459, "featuredRunMedia": null, "reactionVideos": [], @@ -488484,7 +488135,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14132999, "featuredRunMedia": null, "reactionVideos": [], @@ -488522,7 +488173,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 14133168, "featuredRunMedia": null, "reactionVideos": [], @@ -488560,7 +488211,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 14134454, "featuredRunMedia": null, "reactionVideos": [], @@ -488588,7 +488239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 14135308, "featuredRunMedia": null, "reactionVideos": [], @@ -488616,7 +488267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 14136450, "featuredRunMedia": null, "reactionVideos": [], @@ -488654,7 +488305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 14138627, "featuredRunMedia": null, "reactionVideos": [], @@ -488692,7 +488343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14139376, "featuredRunMedia": null, "reactionVideos": [], @@ -488730,7 +488381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14139810, "featuredRunMedia": null, "reactionVideos": [], @@ -488758,7 +488409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14141327, "featuredRunMedia": null, "reactionVideos": [], @@ -488786,7 +488437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 14141574, "featuredRunMedia": null, "reactionVideos": [], @@ -488824,7 +488475,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 14142002, "featuredRunMedia": null, "reactionVideos": [], @@ -488862,7 +488513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 14143067, "featuredRunMedia": null, "reactionVideos": [], @@ -488900,7 +488551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14143611, "featuredRunMedia": null, "reactionVideos": [], @@ -488938,7 +488589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14145492, "featuredRunMedia": null, "reactionVideos": [], @@ -488966,7 +488617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 14146644, "featuredRunMedia": null, "reactionVideos": [], @@ -489004,7 +488655,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 155, + "teamId": "1246", "time": 14148640, "featuredRunMedia": null, "reactionVideos": [], @@ -489042,7 +488693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14149010, "featuredRunMedia": null, "reactionVideos": [], @@ -489080,7 +488731,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 90, + "teamId": "2850", "time": 14149053, "featuredRunMedia": null, "reactionVideos": [], @@ -489118,7 +488769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14149416, "featuredRunMedia": null, "reactionVideos": [], @@ -489151,7 +488802,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 14151493, "featuredRunMedia": null, "reactionVideos": [], @@ -489189,7 +488840,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14151936, "featuredRunMedia": null, "reactionVideos": [], @@ -489227,7 +488878,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 14152297, "featuredRunMedia": null, "reactionVideos": [], @@ -489255,7 +488906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 14152562, "featuredRunMedia": null, "reactionVideos": [], @@ -489293,7 +488944,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 14155489, "featuredRunMedia": null, "reactionVideos": [], @@ -489331,7 +488982,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14156884, "featuredRunMedia": null, "reactionVideos": [], @@ -489364,7 +489015,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 14157425, "featuredRunMedia": null, "reactionVideos": [], @@ -489402,7 +489053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 200, + "teamId": "1551", "time": 14158929, "featuredRunMedia": null, "reactionVideos": [], @@ -489435,7 +489086,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 14159822, "featuredRunMedia": null, "reactionVideos": [], @@ -489473,7 +489124,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 14159948, "featuredRunMedia": null, "reactionVideos": [], @@ -489501,7 +489152,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 14161488, "featuredRunMedia": null, "reactionVideos": [], @@ -489539,7 +489190,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 158, + "teamId": "2154", "time": 14161985, "featuredRunMedia": null, "reactionVideos": [], @@ -489572,7 +489223,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 14162963, "featuredRunMedia": null, "reactionVideos": [], @@ -489610,7 +489261,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14166351, "featuredRunMedia": null, "reactionVideos": [], @@ -489638,7 +489289,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 14166843, "featuredRunMedia": null, "reactionVideos": [], @@ -489676,7 +489327,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14167877, "featuredRunMedia": null, "reactionVideos": [], @@ -489714,7 +489365,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14169373, "featuredRunMedia": null, "reactionVideos": [], @@ -489747,7 +489398,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14169512, "featuredRunMedia": null, "reactionVideos": [], @@ -489785,7 +489436,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 14170023, "featuredRunMedia": null, "reactionVideos": [], @@ -489818,7 +489469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 14171156, "featuredRunMedia": null, "reactionVideos": [], @@ -489856,7 +489507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14171207, "featuredRunMedia": null, "reactionVideos": [], @@ -489882,7 +489533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 14173636, "featuredRunMedia": null, "reactionVideos": [], @@ -489920,7 +489571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14173891, "featuredRunMedia": null, "reactionVideos": [], @@ -489958,7 +489609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 14175808, "featuredRunMedia": null, "reactionVideos": [], @@ -489996,7 +489647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 196, + "teamId": "3048", "time": 14176642, "featuredRunMedia": null, "reactionVideos": [], @@ -490024,7 +489675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14178721, "featuredRunMedia": null, "reactionVideos": [], @@ -490062,7 +489713,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 14178805, "featuredRunMedia": null, "reactionVideos": [], @@ -490100,7 +489751,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14178951, "featuredRunMedia": null, "reactionVideos": [], @@ -490133,7 +489784,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 14179268, "featuredRunMedia": null, "reactionVideos": [], @@ -490161,7 +489812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 14179992, "featuredRunMedia": null, "reactionVideos": [], @@ -490199,7 +489850,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 14180383, "featuredRunMedia": null, "reactionVideos": [], @@ -490227,7 +489878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 14181528, "featuredRunMedia": null, "reactionVideos": [], @@ -490265,7 +489916,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14181559, "featuredRunMedia": null, "reactionVideos": [], @@ -490298,7 +489949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 14181625, "featuredRunMedia": null, "reactionVideos": [], @@ -490326,7 +489977,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 14183701, "featuredRunMedia": null, "reactionVideos": [], @@ -490364,7 +490015,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14184503, "featuredRunMedia": null, "reactionVideos": [], @@ -490392,7 +490043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 187, + "teamId": "2444", "time": 14186424, "featuredRunMedia": null, "reactionVideos": [], @@ -490430,7 +490081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 14188203, "featuredRunMedia": null, "reactionVideos": [], @@ -490463,7 +490114,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 14189005, "featuredRunMedia": null, "reactionVideos": [], @@ -490501,7 +490152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 24, + "teamId": "2050", "time": 14190974, "featuredRunMedia": null, "reactionVideos": [], @@ -490539,7 +490190,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 14193223, "featuredRunMedia": null, "reactionVideos": [], @@ -490577,7 +490228,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "2943", "time": 14193550, "featuredRunMedia": null, "reactionVideos": [], @@ -490605,7 +490256,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14195098, "featuredRunMedia": null, "reactionVideos": [], @@ -490633,7 +490284,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 14195446, "featuredRunMedia": null, "reactionVideos": [], @@ -490666,7 +490317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14197182, "featuredRunMedia": null, "reactionVideos": [], @@ -490694,7 +490345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 14198222, "featuredRunMedia": null, "reactionVideos": [], @@ -490732,7 +490383,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14201314, "featuredRunMedia": null, "reactionVideos": [], @@ -490760,7 +490411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 14201833, "featuredRunMedia": null, "reactionVideos": [], @@ -490793,7 +490444,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 14202481, "featuredRunMedia": null, "reactionVideos": [], @@ -490831,7 +490482,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14204129, "featuredRunMedia": null, "reactionVideos": [], @@ -490869,7 +490520,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 14204557, "featuredRunMedia": null, "reactionVideos": [], @@ -490902,7 +490553,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14206394, "featuredRunMedia": null, "reactionVideos": [], @@ -490935,7 +490586,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "2144", "time": 14210948, "featuredRunMedia": null, "reactionVideos": [], @@ -490963,7 +490614,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 14210967, "featuredRunMedia": null, "reactionVideos": [], @@ -490996,7 +490647,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 14212485, "featuredRunMedia": null, "reactionVideos": [], @@ -491024,7 +490675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14215235, "featuredRunMedia": null, "reactionVideos": [], @@ -491057,7 +490708,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 14215238, "featuredRunMedia": null, "reactionVideos": [], @@ -491085,7 +490736,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 14215608, "featuredRunMedia": null, "reactionVideos": [], @@ -491123,7 +490774,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 14216036, "featuredRunMedia": null, "reactionVideos": [], @@ -491156,7 +490807,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 14216472, "featuredRunMedia": null, "reactionVideos": [], @@ -491194,7 +490845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 14218693, "featuredRunMedia": null, "reactionVideos": [], @@ -491222,7 +490873,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 14219246, "featuredRunMedia": null, "reactionVideos": [], @@ -491255,7 +490906,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 14219636, "featuredRunMedia": null, "reactionVideos": [], @@ -491288,7 +490939,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 14219826, "featuredRunMedia": null, "reactionVideos": [], @@ -491326,7 +490977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 14223276, "featuredRunMedia": null, "reactionVideos": [], @@ -491354,7 +491005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 14225956, "featuredRunMedia": null, "reactionVideos": [], @@ -491387,7 +491038,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "2054", "time": 14227449, "featuredRunMedia": null, "reactionVideos": [], @@ -491420,7 +491071,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 14227752, "featuredRunMedia": null, "reactionVideos": [], @@ -491442,7 +491093,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 14230618, "featuredRunMedia": null, "reactionVideos": [], @@ -491480,7 +491131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 14231338, "featuredRunMedia": null, "reactionVideos": [], @@ -491508,7 +491159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 14233067, "featuredRunMedia": null, "reactionVideos": [], @@ -491536,7 +491187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14233148, "featuredRunMedia": null, "reactionVideos": [], @@ -491569,7 +491220,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14233355, "featuredRunMedia": null, "reactionVideos": [], @@ -491602,7 +491253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 14233658, "featuredRunMedia": null, "reactionVideos": [], @@ -491640,7 +491291,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14233778, "featuredRunMedia": null, "reactionVideos": [], @@ -491673,7 +491324,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 14233903, "featuredRunMedia": null, "reactionVideos": [], @@ -491711,7 +491362,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14234088, "featuredRunMedia": null, "reactionVideos": [], @@ -491739,7 +491390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 14235324, "featuredRunMedia": null, "reactionVideos": [], @@ -491777,7 +491428,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14236480, "featuredRunMedia": null, "reactionVideos": [], @@ -491805,7 +491456,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 14238277, "featuredRunMedia": null, "reactionVideos": [], @@ -491838,7 +491489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 14238632, "featuredRunMedia": null, "reactionVideos": [], @@ -491876,7 +491527,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 14239875, "featuredRunMedia": null, "reactionVideos": [], @@ -491904,7 +491555,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14240927, "featuredRunMedia": null, "reactionVideos": [], @@ -491937,7 +491588,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14241781, "featuredRunMedia": null, "reactionVideos": [], @@ -491965,7 +491616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 14241885, "featuredRunMedia": null, "reactionVideos": [], @@ -491993,7 +491644,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 14242704, "featuredRunMedia": null, "reactionVideos": [], @@ -492031,7 +491682,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14243559, "featuredRunMedia": null, "reactionVideos": [], @@ -492064,7 +491715,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14243613, "featuredRunMedia": null, "reactionVideos": [], @@ -492092,7 +491743,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 14244223, "featuredRunMedia": null, "reactionVideos": [], @@ -492120,7 +491771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14244343, "featuredRunMedia": null, "reactionVideos": [], @@ -492148,7 +491799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 14245019, "featuredRunMedia": null, "reactionVideos": [], @@ -492181,7 +491832,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14245502, "featuredRunMedia": null, "reactionVideos": [], @@ -492219,7 +491870,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 14247398, "featuredRunMedia": null, "reactionVideos": [], @@ -492252,7 +491903,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14247414, "featuredRunMedia": null, "reactionVideos": [], @@ -492280,7 +491931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 14251697, "featuredRunMedia": null, "reactionVideos": [], @@ -492313,7 +491964,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 14252850, "featuredRunMedia": null, "reactionVideos": [], @@ -492346,7 +491997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 14253378, "featuredRunMedia": null, "reactionVideos": [], @@ -492374,7 +492025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 14256874, "featuredRunMedia": null, "reactionVideos": [], @@ -492412,7 +492063,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 14259077, "featuredRunMedia": null, "reactionVideos": [], @@ -492445,7 +492096,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14261431, "featuredRunMedia": null, "reactionVideos": [], @@ -492473,7 +492124,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 14261851, "featuredRunMedia": null, "reactionVideos": [], @@ -492511,7 +492162,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14264579, "featuredRunMedia": null, "reactionVideos": [], @@ -492549,7 +492200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 14264645, "featuredRunMedia": null, "reactionVideos": [], @@ -492582,7 +492233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 14265698, "featuredRunMedia": null, "reactionVideos": [], @@ -492615,7 +492266,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 14265875, "featuredRunMedia": null, "reactionVideos": [], @@ -492653,7 +492304,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 14267184, "featuredRunMedia": null, "reactionVideos": [], @@ -492691,7 +492342,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 14267589, "featuredRunMedia": null, "reactionVideos": [], @@ -492719,7 +492370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 14269280, "featuredRunMedia": null, "reactionVideos": [], @@ -492747,7 +492398,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 195, + "teamId": "2543", "time": 14269354, "featuredRunMedia": null, "reactionVideos": [], @@ -492775,7 +492426,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 14270157, "featuredRunMedia": null, "reactionVideos": [], @@ -492803,7 +492454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 14270523, "featuredRunMedia": null, "reactionVideos": [], @@ -492836,7 +492487,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 14271252, "featuredRunMedia": null, "reactionVideos": [], @@ -492864,7 +492515,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14271392, "featuredRunMedia": null, "reactionVideos": [], @@ -492902,7 +492553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14272028, "featuredRunMedia": null, "reactionVideos": [], @@ -492935,7 +492586,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14275081, "featuredRunMedia": null, "reactionVideos": [], @@ -492973,7 +492624,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14277657, "featuredRunMedia": null, "reactionVideos": [], @@ -493006,7 +492657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 241, + "teamId": "1556", "time": 14278330, "featuredRunMedia": null, "reactionVideos": [], @@ -493034,7 +492685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 14282033, "featuredRunMedia": null, "reactionVideos": [], @@ -493072,7 +492723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 14283387, "featuredRunMedia": null, "reactionVideos": [], @@ -493098,7 +492749,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 14283437, "featuredRunMedia": null, "reactionVideos": [], @@ -493136,7 +492787,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 341, + "teamId": "2046", "time": 14283525, "featuredRunMedia": null, "reactionVideos": [], @@ -493169,7 +492820,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14284174, "featuredRunMedia": null, "reactionVideos": [], @@ -493202,7 +492853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14284886, "featuredRunMedia": null, "reactionVideos": [], @@ -493230,7 +492881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 14285740, "featuredRunMedia": null, "reactionVideos": [], @@ -493258,7 +492909,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 14286357, "featuredRunMedia": null, "reactionVideos": [], @@ -493296,7 +492947,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 14286441, "featuredRunMedia": null, "reactionVideos": [], @@ -493334,7 +492985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 14286598, "featuredRunMedia": null, "reactionVideos": [], @@ -493372,7 +493023,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 65, + "teamId": "2746", "time": 14287430, "featuredRunMedia": null, "reactionVideos": [], @@ -493410,7 +493061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 14287910, "featuredRunMedia": null, "reactionVideos": [], @@ -493448,7 +493099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14288718, "featuredRunMedia": null, "reactionVideos": [], @@ -493486,7 +493137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 14289895, "featuredRunMedia": null, "reactionVideos": [], @@ -493524,7 +493175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 14289977, "featuredRunMedia": null, "reactionVideos": [], @@ -493562,7 +493213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14290077, "featuredRunMedia": null, "reactionVideos": [], @@ -493590,7 +493241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14292727, "featuredRunMedia": null, "reactionVideos": [], @@ -493628,7 +493279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14294609, "featuredRunMedia": null, "reactionVideos": [], @@ -493650,7 +493301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14294865, "featuredRunMedia": null, "reactionVideos": [], @@ -493678,7 +493329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14295112, "featuredRunMedia": null, "reactionVideos": [], @@ -493716,7 +493367,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 14295487, "featuredRunMedia": null, "reactionVideos": [], @@ -493754,7 +493405,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14296872, "featuredRunMedia": null, "reactionVideos": [], @@ -493787,7 +493438,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 14296965, "featuredRunMedia": null, "reactionVideos": [], @@ -493815,7 +493466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 14302005, "featuredRunMedia": null, "reactionVideos": [], @@ -493853,7 +493504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14303243, "featuredRunMedia": null, "reactionVideos": [], @@ -493891,7 +493542,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 14303974, "featuredRunMedia": null, "reactionVideos": [], @@ -493929,7 +493580,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 14304061, "featuredRunMedia": null, "reactionVideos": [], @@ -493962,7 +493613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 241, + "teamId": "1556", "time": 14306028, "featuredRunMedia": null, "reactionVideos": [], @@ -493990,7 +493641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 14306354, "featuredRunMedia": null, "reactionVideos": [], @@ -494028,7 +493679,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14306736, "featuredRunMedia": null, "reactionVideos": [], @@ -494050,7 +493701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14306909, "featuredRunMedia": null, "reactionVideos": [], @@ -494083,7 +493734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 14308092, "featuredRunMedia": null, "reactionVideos": [], @@ -494111,7 +493762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 14309149, "featuredRunMedia": null, "reactionVideos": [], @@ -494137,7 +493788,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 14309634, "featuredRunMedia": null, "reactionVideos": [], @@ -494165,7 +493816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 14311096, "featuredRunMedia": null, "reactionVideos": [], @@ -494203,7 +493854,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 14314806, "featuredRunMedia": null, "reactionVideos": [], @@ -494231,7 +493882,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 14316661, "featuredRunMedia": null, "reactionVideos": [], @@ -494259,7 +493910,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 14317965, "featuredRunMedia": null, "reactionVideos": [], @@ -494297,7 +493948,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14318200, "featuredRunMedia": null, "reactionVideos": [], @@ -494325,7 +493976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 14318355, "featuredRunMedia": null, "reactionVideos": [], @@ -494363,7 +494014,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14319122, "featuredRunMedia": null, "reactionVideos": [], @@ -494391,7 +494042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 14319499, "featuredRunMedia": null, "reactionVideos": [], @@ -494419,7 +494070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 14320609, "featuredRunMedia": null, "reactionVideos": [], @@ -494457,7 +494108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 14321053, "featuredRunMedia": null, "reactionVideos": [], @@ -494490,7 +494141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 14322188, "featuredRunMedia": null, "reactionVideos": [], @@ -494523,7 +494174,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14323572, "featuredRunMedia": null, "reactionVideos": [], @@ -494561,7 +494212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 88, + "teamId": "1646", "time": 14324194, "featuredRunMedia": null, "reactionVideos": [], @@ -494594,7 +494245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 14324691, "featuredRunMedia": null, "reactionVideos": [], @@ -494627,7 +494278,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 14326816, "featuredRunMedia": null, "reactionVideos": [], @@ -494655,7 +494306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 14327189, "featuredRunMedia": null, "reactionVideos": [], @@ -494693,7 +494344,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14327217, "featuredRunMedia": null, "reactionVideos": [], @@ -494731,7 +494382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 14327652, "featuredRunMedia": null, "reactionVideos": [], @@ -494769,7 +494420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14329313, "featuredRunMedia": null, "reactionVideos": [], @@ -494802,7 +494453,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14333145, "featuredRunMedia": null, "reactionVideos": [], @@ -494830,7 +494481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 14333374, "featuredRunMedia": null, "reactionVideos": [], @@ -494868,7 +494519,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 14334913, "featuredRunMedia": null, "reactionVideos": [], @@ -494901,7 +494552,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "2054", "time": 14335317, "featuredRunMedia": null, "reactionVideos": [], @@ -494939,7 +494590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14335803, "featuredRunMedia": null, "reactionVideos": [], @@ -494972,7 +494623,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 14337334, "featuredRunMedia": null, "reactionVideos": [], @@ -495000,7 +494651,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 14340991, "featuredRunMedia": null, "reactionVideos": [], @@ -495028,7 +494679,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 14343315, "featuredRunMedia": null, "reactionVideos": [], @@ -495061,7 +494712,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14343361, "featuredRunMedia": null, "reactionVideos": [], @@ -495094,7 +494745,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "2054", "time": 14343566, "featuredRunMedia": null, "reactionVideos": [], @@ -495127,7 +494778,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14343847, "featuredRunMedia": null, "reactionVideos": [], @@ -495155,7 +494806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14344246, "featuredRunMedia": null, "reactionVideos": [], @@ -495188,7 +494839,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 14344793, "featuredRunMedia": null, "reactionVideos": [], @@ -495221,7 +494872,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 152, + "teamId": "1253", "time": 14345096, "featuredRunMedia": null, "reactionVideos": [], @@ -495249,7 +494900,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14347469, "featuredRunMedia": null, "reactionVideos": [], @@ -495282,7 +494933,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 14349217, "featuredRunMedia": null, "reactionVideos": [], @@ -495315,7 +494966,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "1145", "time": 14349680, "featuredRunMedia": null, "reactionVideos": [], @@ -495353,7 +495004,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14350846, "featuredRunMedia": null, "reactionVideos": [], @@ -495381,7 +495032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 14351470, "featuredRunMedia": null, "reactionVideos": [], @@ -495419,7 +495070,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14351578, "featuredRunMedia": null, "reactionVideos": [], @@ -495457,7 +495108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 14352148, "featuredRunMedia": null, "reactionVideos": [], @@ -495490,7 +495141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14354300, "featuredRunMedia": null, "reactionVideos": [], @@ -495523,7 +495174,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14354524, "featuredRunMedia": null, "reactionVideos": [], @@ -495561,7 +495212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 190, + "teamId": "3053", "time": 14355222, "featuredRunMedia": null, "reactionVideos": [], @@ -495594,7 +495245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 226, + "teamId": "2945", "time": 14355472, "featuredRunMedia": null, "reactionVideos": [], @@ -495632,7 +495283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 14358972, "featuredRunMedia": null, "reactionVideos": [], @@ -495670,7 +495321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14360697, "featuredRunMedia": null, "reactionVideos": [], @@ -495708,7 +495359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 14360942, "featuredRunMedia": null, "reactionVideos": [], @@ -495736,7 +495387,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 14361754, "featuredRunMedia": null, "reactionVideos": [], @@ -495764,7 +495415,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14363439, "featuredRunMedia": null, "reactionVideos": [], @@ -495802,7 +495453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14364856, "featuredRunMedia": null, "reactionVideos": [], @@ -495840,7 +495491,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 14368565, "featuredRunMedia": null, "reactionVideos": [], @@ -495878,7 +495529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 14370793, "featuredRunMedia": null, "reactionVideos": [], @@ -495900,7 +495551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 14372207, "featuredRunMedia": null, "reactionVideos": [], @@ -495938,7 +495589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14376271, "featuredRunMedia": null, "reactionVideos": [], @@ -495971,7 +495622,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "3146", "time": 14377122, "featuredRunMedia": null, "reactionVideos": [], @@ -496004,7 +495655,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 14377367, "featuredRunMedia": null, "reactionVideos": [], @@ -496037,7 +495688,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 14378534, "featuredRunMedia": null, "reactionVideos": [], @@ -496065,7 +495716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 14379316, "featuredRunMedia": null, "reactionVideos": [], @@ -496103,7 +495754,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14380510, "featuredRunMedia": null, "reactionVideos": [], @@ -496131,7 +495782,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 14382027, "featuredRunMedia": null, "reactionVideos": [], @@ -496159,7 +495810,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14382088, "featuredRunMedia": null, "reactionVideos": [], @@ -496197,7 +495848,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 12, + "teamId": "2349", "time": 14382680, "featuredRunMedia": null, "reactionVideos": [], @@ -496230,7 +495881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14383043, "featuredRunMedia": null, "reactionVideos": [], @@ -496268,7 +495919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14383328, "featuredRunMedia": null, "reactionVideos": [], @@ -496296,7 +495947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 14383989, "featuredRunMedia": null, "reactionVideos": [], @@ -496334,7 +495985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 14384329, "featuredRunMedia": null, "reactionVideos": [], @@ -496362,7 +496013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 14384448, "featuredRunMedia": null, "reactionVideos": [], @@ -496390,7 +496041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 14386660, "featuredRunMedia": null, "reactionVideos": [], @@ -496428,7 +496079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 14388280, "featuredRunMedia": null, "reactionVideos": [], @@ -496466,7 +496117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14391543, "featuredRunMedia": null, "reactionVideos": [], @@ -496499,7 +496150,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 14391629, "featuredRunMedia": null, "reactionVideos": [], @@ -496537,7 +496188,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 14391984, "featuredRunMedia": null, "reactionVideos": [], @@ -496565,7 +496216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 14392604, "featuredRunMedia": null, "reactionVideos": [], @@ -496598,7 +496249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 14395528, "featuredRunMedia": null, "reactionVideos": [], @@ -496636,7 +496287,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 14395583, "featuredRunMedia": null, "reactionVideos": [], @@ -496669,7 +496320,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 14396531, "featuredRunMedia": null, "reactionVideos": [], @@ -496707,7 +496358,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 163, + "teamId": "1142", "time": 14398379, "featuredRunMedia": null, "reactionVideos": [], @@ -496740,7 +496391,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14399524, "featuredRunMedia": null, "reactionVideos": [], @@ -496762,7 +496413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14400388, "featuredRunMedia": null, "reactionVideos": [], @@ -496800,7 +496451,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 14401130, "featuredRunMedia": null, "reactionVideos": [], @@ -496833,7 +496484,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 14408637, "featuredRunMedia": null, "reactionVideos": [], @@ -496861,7 +496512,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14409507, "featuredRunMedia": null, "reactionVideos": [], @@ -496889,7 +496540,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 110, + "teamId": "2750", "time": 14409602, "featuredRunMedia": null, "reactionVideos": [], @@ -496927,7 +496578,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 14410756, "featuredRunMedia": null, "reactionVideos": [], @@ -496965,7 +496616,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 14411578, "featuredRunMedia": null, "reactionVideos": [], @@ -497003,7 +496654,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 14411872, "featuredRunMedia": null, "reactionVideos": [], @@ -497041,7 +496692,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 14412437, "featuredRunMedia": null, "reactionVideos": [], @@ -497069,7 +496720,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14414541, "featuredRunMedia": null, "reactionVideos": [], @@ -497102,7 +496753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 14414923, "featuredRunMedia": null, "reactionVideos": [], @@ -497130,7 +496781,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14415264, "featuredRunMedia": null, "reactionVideos": [], @@ -497158,7 +496809,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 14415844, "featuredRunMedia": null, "reactionVideos": [], @@ -497191,7 +496842,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "2055", "time": 14417730, "featuredRunMedia": null, "reactionVideos": [], @@ -497224,7 +496875,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 287, + "teamId": "1451", "time": 14419533, "featuredRunMedia": null, "reactionVideos": [], @@ -497262,7 +496913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14421555, "featuredRunMedia": null, "reactionVideos": [], @@ -497295,7 +496946,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14422021, "featuredRunMedia": null, "reactionVideos": [], @@ -497333,7 +496984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 75, + "teamId": "2443", "time": 14422780, "featuredRunMedia": null, "reactionVideos": [], @@ -497361,7 +497012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 14424145, "featuredRunMedia": null, "reactionVideos": [], @@ -497399,7 +497050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 14425873, "featuredRunMedia": null, "reactionVideos": [], @@ -497437,7 +497088,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 14426904, "featuredRunMedia": null, "reactionVideos": [], @@ -497465,7 +497116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 14429188, "featuredRunMedia": null, "reactionVideos": [], @@ -497503,7 +497154,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14432059, "featuredRunMedia": null, "reactionVideos": [], @@ -497531,7 +497182,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14432344, "featuredRunMedia": null, "reactionVideos": [], @@ -497559,7 +497210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 14432478, "featuredRunMedia": null, "reactionVideos": [], @@ -497587,7 +497238,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 14433049, "featuredRunMedia": null, "reactionVideos": [], @@ -497620,7 +497271,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14433147, "featuredRunMedia": null, "reactionVideos": [], @@ -497658,7 +497309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 14436324, "featuredRunMedia": null, "reactionVideos": [], @@ -497686,7 +497337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14438299, "featuredRunMedia": null, "reactionVideos": [], @@ -497724,7 +497375,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14441534, "featuredRunMedia": null, "reactionVideos": [], @@ -497762,7 +497413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 14442857, "featuredRunMedia": null, "reactionVideos": [], @@ -497790,7 +497441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14444415, "featuredRunMedia": null, "reactionVideos": [], @@ -497818,7 +497469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14444991, "featuredRunMedia": null, "reactionVideos": [], @@ -497851,7 +497502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 14445011, "featuredRunMedia": null, "reactionVideos": [], @@ -497884,7 +497535,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 14445620, "featuredRunMedia": null, "reactionVideos": [], @@ -497917,7 +497568,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 14445620, "featuredRunMedia": null, "reactionVideos": [], @@ -497955,7 +497606,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 14446668, "featuredRunMedia": null, "reactionVideos": [], @@ -497993,7 +497644,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 153, + "teamId": "1749", "time": 14447530, "featuredRunMedia": null, "reactionVideos": [], @@ -498021,7 +497672,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "1643", "time": 14453731, "featuredRunMedia": null, "reactionVideos": [], @@ -498059,7 +497710,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14455083, "featuredRunMedia": null, "reactionVideos": [], @@ -498092,7 +497743,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 14456048, "featuredRunMedia": null, "reactionVideos": [], @@ -498125,7 +497776,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 14457065, "featuredRunMedia": null, "reactionVideos": [], @@ -498158,7 +497809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 14458413, "featuredRunMedia": null, "reactionVideos": [], @@ -498180,7 +497831,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 14460238, "featuredRunMedia": null, "reactionVideos": [], @@ -498213,7 +497864,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 313, + "teamId": "2054", "time": 14461200, "featuredRunMedia": null, "reactionVideos": [], @@ -498251,7 +497902,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 14462068, "featuredRunMedia": null, "reactionVideos": [], @@ -498289,7 +497940,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 14462229, "featuredRunMedia": null, "reactionVideos": [], @@ -498327,7 +497978,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14464348, "featuredRunMedia": null, "reactionVideos": [], @@ -498355,7 +498006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 14464896, "featuredRunMedia": null, "reactionVideos": [], @@ -498393,7 +498044,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14465994, "featuredRunMedia": null, "reactionVideos": [], @@ -498431,7 +498082,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 14467284, "featuredRunMedia": null, "reactionVideos": [], @@ -498459,7 +498110,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 14468323, "featuredRunMedia": null, "reactionVideos": [], @@ -498487,7 +498138,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "1752", "time": 14468573, "featuredRunMedia": null, "reactionVideos": [], @@ -498520,7 +498171,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14473425, "featuredRunMedia": null, "reactionVideos": [], @@ -498548,7 +498199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 14476681, "featuredRunMedia": null, "reactionVideos": [], @@ -498586,7 +498237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14476837, "featuredRunMedia": null, "reactionVideos": [], @@ -498614,7 +498265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14476859, "featuredRunMedia": null, "reactionVideos": [], @@ -498652,7 +498303,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 14478981, "featuredRunMedia": null, "reactionVideos": [], @@ -498685,7 +498336,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14480037, "featuredRunMedia": null, "reactionVideos": [], @@ -498723,7 +498374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 14480359, "featuredRunMedia": null, "reactionVideos": [], @@ -498756,7 +498407,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 14481247, "featuredRunMedia": null, "reactionVideos": [], @@ -498794,7 +498445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 14484215, "featuredRunMedia": null, "reactionVideos": [], @@ -498832,7 +498483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14485098, "featuredRunMedia": null, "reactionVideos": [], @@ -498865,7 +498516,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14485740, "featuredRunMedia": null, "reactionVideos": [], @@ -498898,7 +498549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14488896, "featuredRunMedia": null, "reactionVideos": [], @@ -498936,7 +498587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 14489973, "featuredRunMedia": null, "reactionVideos": [], @@ -498964,7 +498615,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14491042, "featuredRunMedia": null, "reactionVideos": [], @@ -499002,7 +498653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14491415, "featuredRunMedia": null, "reactionVideos": [], @@ -499030,7 +498681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 14492010, "featuredRunMedia": null, "reactionVideos": [], @@ -499058,7 +498709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 14493748, "featuredRunMedia": null, "reactionVideos": [], @@ -499091,7 +498742,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 14493822, "featuredRunMedia": null, "reactionVideos": [], @@ -499119,7 +498770,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 14495905, "featuredRunMedia": null, "reactionVideos": [], @@ -499147,7 +498798,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14497216, "featuredRunMedia": null, "reactionVideos": [], @@ -499175,7 +498826,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 280, + "teamId": "3052", "time": 14497444, "featuredRunMedia": null, "reactionVideos": [], @@ -499213,7 +498864,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "2143", "time": 14498439, "featuredRunMedia": null, "reactionVideos": [], @@ -499246,7 +498897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 204, + "teamId": "2356", "time": 14499489, "featuredRunMedia": null, "reactionVideos": [], @@ -499284,7 +498935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14500124, "featuredRunMedia": null, "reactionVideos": [], @@ -499322,7 +498973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 14500852, "featuredRunMedia": null, "reactionVideos": [], @@ -499360,7 +499011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 14502701, "featuredRunMedia": null, "reactionVideos": [], @@ -499393,7 +499044,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 94, + "teamId": "2744", "time": 14503623, "featuredRunMedia": null, "reactionVideos": [], @@ -499431,7 +499082,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 14503746, "featuredRunMedia": null, "reactionVideos": [], @@ -499469,7 +499120,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 14505042, "featuredRunMedia": null, "reactionVideos": [], @@ -499507,7 +499158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 14505269, "featuredRunMedia": null, "reactionVideos": [], @@ -499540,7 +499191,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14505718, "featuredRunMedia": null, "reactionVideos": [], @@ -499573,7 +499224,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 14505957, "featuredRunMedia": null, "reactionVideos": [], @@ -499606,7 +499257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 14508643, "featuredRunMedia": null, "reactionVideos": [], @@ -499634,7 +499285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14508761, "featuredRunMedia": null, "reactionVideos": [], @@ -499672,7 +499323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14508981, "featuredRunMedia": null, "reactionVideos": [], @@ -499710,7 +499361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 14511295, "featuredRunMedia": null, "reactionVideos": [], @@ -499748,7 +499399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 14511569, "featuredRunMedia": null, "reactionVideos": [], @@ -499776,7 +499427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 14513086, "featuredRunMedia": null, "reactionVideos": [], @@ -499804,7 +499455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14516108, "featuredRunMedia": null, "reactionVideos": [], @@ -499832,7 +499483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 14516969, "featuredRunMedia": null, "reactionVideos": [], @@ -499860,7 +499511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 53, + "teamId": "1643", "time": 14518968, "featuredRunMedia": null, "reactionVideos": [], @@ -499888,7 +499539,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14522475, "featuredRunMedia": null, "reactionVideos": [], @@ -499926,7 +499577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "2643", "time": 14523424, "featuredRunMedia": null, "reactionVideos": [], @@ -499964,7 +499615,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 14525762, "featuredRunMedia": null, "reactionVideos": [], @@ -499997,7 +499648,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14526877, "featuredRunMedia": null, "reactionVideos": [], @@ -500025,7 +499676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 14528074, "featuredRunMedia": null, "reactionVideos": [], @@ -500058,7 +499709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 14528847, "featuredRunMedia": null, "reactionVideos": [], @@ -500086,7 +499737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14530239, "featuredRunMedia": null, "reactionVideos": [], @@ -500119,7 +499770,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 14532311, "featuredRunMedia": null, "reactionVideos": [], @@ -500147,7 +499798,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 14532645, "featuredRunMedia": null, "reactionVideos": [], @@ -500175,7 +499826,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14534095, "featuredRunMedia": null, "reactionVideos": [], @@ -500213,7 +499864,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 162, + "teamId": "2156", "time": 14535372, "featuredRunMedia": null, "reactionVideos": [], @@ -500246,7 +499897,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "2055", "time": 14536293, "featuredRunMedia": null, "reactionVideos": [], @@ -500274,7 +499925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 14536548, "featuredRunMedia": null, "reactionVideos": [], @@ -500312,7 +499963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 14537693, "featuredRunMedia": null, "reactionVideos": [], @@ -500350,7 +500001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 14538650, "featuredRunMedia": null, "reactionVideos": [], @@ -500383,7 +500034,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 14540052, "featuredRunMedia": null, "reactionVideos": [], @@ -500411,7 +500062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14542037, "featuredRunMedia": null, "reactionVideos": [], @@ -500444,7 +500095,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14542304, "featuredRunMedia": null, "reactionVideos": [], @@ -500482,7 +500133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 14542565, "featuredRunMedia": null, "reactionVideos": [], @@ -500520,7 +500171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 166, + "teamId": "2751", "time": 14545790, "featuredRunMedia": null, "reactionVideos": [], @@ -500548,7 +500199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14546476, "featuredRunMedia": null, "reactionVideos": [], @@ -500581,7 +500232,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14547660, "featuredRunMedia": null, "reactionVideos": [], @@ -500603,7 +500254,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 14547660, "featuredRunMedia": null, "reactionVideos": [], @@ -500636,7 +500287,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "3146", "time": 14549076, "featuredRunMedia": null, "reactionVideos": [], @@ -500664,7 +500315,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14553421, "featuredRunMedia": null, "reactionVideos": [], @@ -500692,7 +500343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14553666, "featuredRunMedia": null, "reactionVideos": [], @@ -500725,7 +500376,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 14554499, "featuredRunMedia": null, "reactionVideos": [], @@ -500758,7 +500409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 14555939, "featuredRunMedia": null, "reactionVideos": [], @@ -500786,7 +500437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14556957, "featuredRunMedia": null, "reactionVideos": [], @@ -500824,7 +500475,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 292, + "teamId": "1348", "time": 14558398, "featuredRunMedia": null, "reactionVideos": [], @@ -500857,7 +500508,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14560147, "featuredRunMedia": null, "reactionVideos": [], @@ -500895,7 +500546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 14560621, "featuredRunMedia": null, "reactionVideos": [], @@ -500933,7 +500584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 14560824, "featuredRunMedia": null, "reactionVideos": [], @@ -500966,7 +500617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 14561317, "featuredRunMedia": null, "reactionVideos": [], @@ -500999,7 +500650,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 14561720, "featuredRunMedia": null, "reactionVideos": [], @@ -501027,7 +500678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 14562833, "featuredRunMedia": null, "reactionVideos": [], @@ -501055,7 +500706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 14563271, "featuredRunMedia": null, "reactionVideos": [], @@ -501093,7 +500744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14563502, "featuredRunMedia": null, "reactionVideos": [], @@ -501131,7 +500782,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14563571, "featuredRunMedia": null, "reactionVideos": [], @@ -501169,7 +500820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "2143", "time": 14565806, "featuredRunMedia": null, "reactionVideos": [], @@ -501202,7 +500853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 14567365, "featuredRunMedia": null, "reactionVideos": [], @@ -501240,7 +500891,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 14574815, "featuredRunMedia": null, "reactionVideos": [], @@ -501268,7 +500919,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 14577336, "featuredRunMedia": null, "reactionVideos": [], @@ -501296,7 +500947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 198, + "teamId": "1248", "time": 14579177, "featuredRunMedia": null, "reactionVideos": [], @@ -501334,7 +500985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 14583905, "featuredRunMedia": null, "reactionVideos": [], @@ -501367,7 +501018,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 14584318, "featuredRunMedia": null, "reactionVideos": [], @@ -501400,7 +501051,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14584801, "featuredRunMedia": null, "reactionVideos": [], @@ -501428,7 +501079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14587737, "featuredRunMedia": null, "reactionVideos": [], @@ -501466,7 +501117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 14587844, "featuredRunMedia": null, "reactionVideos": [], @@ -501504,7 +501155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 14589118, "featuredRunMedia": null, "reactionVideos": [], @@ -501542,7 +501193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 14589653, "featuredRunMedia": null, "reactionVideos": [], @@ -501575,7 +501226,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14589721, "featuredRunMedia": null, "reactionVideos": [], @@ -501608,7 +501259,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 132, + "teamId": "2256", "time": 14589772, "featuredRunMedia": null, "reactionVideos": [], @@ -501641,7 +501292,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 14590201, "featuredRunMedia": null, "reactionVideos": [], @@ -501674,7 +501325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 14591144, "featuredRunMedia": null, "reactionVideos": [], @@ -501702,7 +501353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14591144, "featuredRunMedia": null, "reactionVideos": [], @@ -501730,7 +501381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14592021, "featuredRunMedia": null, "reactionVideos": [], @@ -501768,7 +501419,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14592141, "featuredRunMedia": null, "reactionVideos": [], @@ -501796,7 +501447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14592795, "featuredRunMedia": null, "reactionVideos": [], @@ -501824,7 +501475,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14593535, "featuredRunMedia": null, "reactionVideos": [], @@ -501852,7 +501503,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14594243, "featuredRunMedia": null, "reactionVideos": [], @@ -501880,7 +501531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14595028, "featuredRunMedia": null, "reactionVideos": [], @@ -501913,7 +501564,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 14595669, "featuredRunMedia": null, "reactionVideos": [], @@ -501941,7 +501592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14595695, "featuredRunMedia": null, "reactionVideos": [], @@ -501979,7 +501630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 14595826, "featuredRunMedia": null, "reactionVideos": [], @@ -502007,7 +501658,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14596409, "featuredRunMedia": null, "reactionVideos": [], @@ -502035,7 +501686,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14597310, "featuredRunMedia": null, "reactionVideos": [], @@ -502063,7 +501714,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14597432, "featuredRunMedia": null, "reactionVideos": [], @@ -502091,7 +501742,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14598727, "featuredRunMedia": null, "reactionVideos": [], @@ -502129,7 +501780,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "2143", "time": 14598936, "featuredRunMedia": null, "reactionVideos": [], @@ -502157,7 +501808,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14599458, "featuredRunMedia": null, "reactionVideos": [], @@ -502185,7 +501836,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14600187, "featuredRunMedia": null, "reactionVideos": [], @@ -502218,7 +501869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14601446, "featuredRunMedia": null, "reactionVideos": [], @@ -502246,7 +501897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14601732, "featuredRunMedia": null, "reactionVideos": [], @@ -502274,7 +501925,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14602591, "featuredRunMedia": null, "reactionVideos": [], @@ -502302,7 +501953,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14607272, "featuredRunMedia": null, "reactionVideos": [], @@ -502330,7 +501981,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 14607736, "featuredRunMedia": null, "reactionVideos": [], @@ -502356,7 +502007,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 14611808, "featuredRunMedia": null, "reactionVideos": [], @@ -502389,7 +502040,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14613453, "featuredRunMedia": null, "reactionVideos": [], @@ -502417,7 +502068,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14614604, "featuredRunMedia": null, "reactionVideos": [], @@ -502450,7 +502101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14614951, "featuredRunMedia": null, "reactionVideos": [], @@ -502483,7 +502134,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14616397, "featuredRunMedia": null, "reactionVideos": [], @@ -502521,7 +502172,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 212, + "teamId": "2353", "time": 14617035, "featuredRunMedia": null, "reactionVideos": [], @@ -502559,7 +502210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 14619421, "featuredRunMedia": null, "reactionVideos": [], @@ -502592,7 +502243,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 14620753, "featuredRunMedia": null, "reactionVideos": [], @@ -502630,7 +502281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14622856, "featuredRunMedia": null, "reactionVideos": [], @@ -502668,7 +502319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 14623656, "featuredRunMedia": null, "reactionVideos": [], @@ -502701,7 +502352,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 14623743, "featuredRunMedia": null, "reactionVideos": [], @@ -502734,7 +502385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 14624387, "featuredRunMedia": null, "reactionVideos": [], @@ -502767,7 +502418,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14625786, "featuredRunMedia": null, "reactionVideos": [], @@ -502795,7 +502446,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 14627808, "featuredRunMedia": null, "reactionVideos": [], @@ -502828,7 +502479,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 186, + "teamId": "2646", "time": 14628223, "featuredRunMedia": null, "reactionVideos": [], @@ -502866,7 +502517,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14630208, "featuredRunMedia": null, "reactionVideos": [], @@ -502904,7 +502555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 14632407, "featuredRunMedia": null, "reactionVideos": [], @@ -502942,7 +502593,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 14632444, "featuredRunMedia": null, "reactionVideos": [], @@ -502980,7 +502631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14632866, "featuredRunMedia": null, "reactionVideos": [], @@ -503013,7 +502664,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 14635374, "featuredRunMedia": null, "reactionVideos": [], @@ -503046,7 +502697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 14639009, "featuredRunMedia": null, "reactionVideos": [], @@ -503074,7 +502725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 14648602, "featuredRunMedia": null, "reactionVideos": [], @@ -503112,7 +502763,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 14653649, "featuredRunMedia": null, "reactionVideos": [], @@ -503145,7 +502796,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14653801, "featuredRunMedia": null, "reactionVideos": [], @@ -503173,7 +502824,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14654033, "featuredRunMedia": null, "reactionVideos": [], @@ -503201,7 +502852,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14654091, "featuredRunMedia": null, "reactionVideos": [], @@ -503229,7 +502880,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14654635, "featuredRunMedia": null, "reactionVideos": [], @@ -503257,7 +502908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14655784, "featuredRunMedia": null, "reactionVideos": [], @@ -503285,7 +502936,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14656437, "featuredRunMedia": null, "reactionVideos": [], @@ -503313,7 +502964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14656602, "featuredRunMedia": null, "reactionVideos": [], @@ -503341,7 +502992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14657184, "featuredRunMedia": null, "reactionVideos": [], @@ -503379,7 +503030,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 14657898, "featuredRunMedia": null, "reactionVideos": [], @@ -503407,7 +503058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14657958, "featuredRunMedia": null, "reactionVideos": [], @@ -503440,7 +503091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 14658185, "featuredRunMedia": null, "reactionVideos": [], @@ -503468,7 +503119,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 14658577, "featuredRunMedia": null, "reactionVideos": [], @@ -503496,7 +503147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14658635, "featuredRunMedia": null, "reactionVideos": [], @@ -503524,7 +503175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14659344, "featuredRunMedia": null, "reactionVideos": [], @@ -503562,7 +503213,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 14659766, "featuredRunMedia": null, "reactionVideos": [], @@ -503590,7 +503241,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14660053, "featuredRunMedia": null, "reactionVideos": [], @@ -503618,7 +503269,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14660677, "featuredRunMedia": null, "reactionVideos": [], @@ -503646,7 +503297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14661361, "featuredRunMedia": null, "reactionVideos": [], @@ -503674,7 +503325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14662064, "featuredRunMedia": null, "reactionVideos": [], @@ -503702,7 +503353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14662661, "featuredRunMedia": null, "reactionVideos": [], @@ -503730,7 +503381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14663337, "featuredRunMedia": null, "reactionVideos": [], @@ -503763,7 +503414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 155, + "teamId": "1246", "time": 14663574, "featuredRunMedia": null, "reactionVideos": [], @@ -503791,7 +503442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14663989, "featuredRunMedia": null, "reactionVideos": [], @@ -503819,7 +503470,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 14664677, "featuredRunMedia": null, "reactionVideos": [], @@ -503857,7 +503508,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14666658, "featuredRunMedia": null, "reactionVideos": [], @@ -503890,7 +503541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14668674, "featuredRunMedia": null, "reactionVideos": [], @@ -503918,7 +503569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 14668680, "featuredRunMedia": null, "reactionVideos": [], @@ -503956,7 +503607,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14668865, "featuredRunMedia": null, "reactionVideos": [], @@ -503994,7 +503645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 14669839, "featuredRunMedia": null, "reactionVideos": [], @@ -504032,7 +503683,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 14670561, "featuredRunMedia": null, "reactionVideos": [], @@ -504070,7 +503721,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "1842", "time": 14671187, "featuredRunMedia": null, "reactionVideos": [], @@ -504103,7 +503754,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 14672760, "featuredRunMedia": null, "reactionVideos": [], @@ -504136,7 +503787,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 14674308, "featuredRunMedia": null, "reactionVideos": [], @@ -504174,7 +503825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14674468, "featuredRunMedia": null, "reactionVideos": [], @@ -504202,7 +503853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 14677389, "featuredRunMedia": null, "reactionVideos": [], @@ -504230,7 +503881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14679199, "featuredRunMedia": null, "reactionVideos": [], @@ -504263,7 +503914,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 206, + "teamId": "2142", "time": 14682580, "featuredRunMedia": null, "reactionVideos": [], @@ -504301,7 +503952,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 14683619, "featuredRunMedia": null, "reactionVideos": [], @@ -504329,7 +503980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14686467, "featuredRunMedia": null, "reactionVideos": [], @@ -504362,7 +504013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14687668, "featuredRunMedia": null, "reactionVideos": [], @@ -504390,7 +504041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 14688472, "featuredRunMedia": null, "reactionVideos": [], @@ -504428,7 +504079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14688970, "featuredRunMedia": null, "reactionVideos": [], @@ -504466,7 +504117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 14690515, "featuredRunMedia": null, "reactionVideos": [], @@ -504488,7 +504139,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 14691523, "featuredRunMedia": null, "reactionVideos": [], @@ -504510,7 +504161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14691548, "featuredRunMedia": null, "reactionVideos": [], @@ -504548,7 +504199,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 14692162, "featuredRunMedia": null, "reactionVideos": [], @@ -504581,7 +504232,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 143, + "teamId": "1251", "time": 14695723, "featuredRunMedia": null, "reactionVideos": [], @@ -504609,7 +504260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 14697615, "featuredRunMedia": null, "reactionVideos": [], @@ -504647,7 +504298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14697732, "featuredRunMedia": null, "reactionVideos": [], @@ -504685,7 +504336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 14697832, "featuredRunMedia": null, "reactionVideos": [], @@ -504723,7 +504374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 14699382, "featuredRunMedia": null, "reactionVideos": [], @@ -504751,7 +504402,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 14701506, "featuredRunMedia": null, "reactionVideos": [], @@ -504784,7 +504435,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 14702171, "featuredRunMedia": null, "reactionVideos": [], @@ -504822,7 +504473,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14702778, "featuredRunMedia": null, "reactionVideos": [], @@ -504850,7 +504501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14702872, "featuredRunMedia": null, "reactionVideos": [], @@ -504888,7 +504539,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 14704752, "featuredRunMedia": null, "reactionVideos": [], @@ -504926,7 +504577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 14705558, "featuredRunMedia": null, "reactionVideos": [], @@ -504959,7 +504610,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 14707004, "featuredRunMedia": null, "reactionVideos": [], @@ -504992,7 +504643,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14707600, "featuredRunMedia": null, "reactionVideos": [], @@ -505030,7 +504681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 14707859, "featuredRunMedia": null, "reactionVideos": [], @@ -505068,7 +504719,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 14709390, "featuredRunMedia": null, "reactionVideos": [], @@ -505096,7 +504747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14710148, "featuredRunMedia": null, "reactionVideos": [], @@ -505134,7 +504785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "1842", "time": 14713232, "featuredRunMedia": null, "reactionVideos": [], @@ -505162,7 +504813,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 138, + "teamId": "1250", "time": 14714786, "featuredRunMedia": null, "reactionVideos": [], @@ -505200,7 +504851,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14715971, "featuredRunMedia": null, "reactionVideos": [], @@ -505228,7 +504879,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14718648, "featuredRunMedia": null, "reactionVideos": [], @@ -505256,7 +504907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 14720739, "featuredRunMedia": null, "reactionVideos": [], @@ -505294,7 +504945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 14721315, "featuredRunMedia": null, "reactionVideos": [], @@ -505327,7 +504978,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14722296, "featuredRunMedia": null, "reactionVideos": [], @@ -505355,7 +505006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14725116, "featuredRunMedia": null, "reactionVideos": [], @@ -505393,7 +505044,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 14726541, "featuredRunMedia": null, "reactionVideos": [], @@ -505421,7 +505072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14726610, "featuredRunMedia": null, "reactionVideos": [], @@ -505449,7 +505100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14726742, "featuredRunMedia": null, "reactionVideos": [], @@ -505482,7 +505133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14727385, "featuredRunMedia": null, "reactionVideos": [], @@ -505515,7 +505166,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 14728067, "featuredRunMedia": null, "reactionVideos": [], @@ -505543,7 +505194,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14728271, "featuredRunMedia": null, "reactionVideos": [], @@ -505581,7 +505232,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 219, + "teamId": "2445", "time": 14729253, "featuredRunMedia": null, "reactionVideos": [], @@ -505614,7 +505265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 14729255, "featuredRunMedia": null, "reactionVideos": [], @@ -505642,7 +505293,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14729996, "featuredRunMedia": null, "reactionVideos": [], @@ -505675,7 +505326,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 14730588, "featuredRunMedia": null, "reactionVideos": [], @@ -505703,7 +505354,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14731437, "featuredRunMedia": null, "reactionVideos": [], @@ -505736,7 +505387,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 14731736, "featuredRunMedia": null, "reactionVideos": [], @@ -505764,7 +505415,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14731737, "featuredRunMedia": null, "reactionVideos": [], @@ -505802,7 +505453,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 14732498, "featuredRunMedia": null, "reactionVideos": [], @@ -505830,7 +505481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14732928, "featuredRunMedia": null, "reactionVideos": [], @@ -505863,7 +505514,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 14733684, "featuredRunMedia": null, "reactionVideos": [], @@ -505891,7 +505542,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14735025, "featuredRunMedia": null, "reactionVideos": [], @@ -505929,7 +505580,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 14737160, "featuredRunMedia": null, "reactionVideos": [], @@ -505967,7 +505618,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14737254, "featuredRunMedia": null, "reactionVideos": [], @@ -505995,7 +505646,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14737638, "featuredRunMedia": null, "reactionVideos": [], @@ -506033,7 +505684,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14738235, "featuredRunMedia": null, "reactionVideos": [], @@ -506066,7 +505717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14739604, "featuredRunMedia": null, "reactionVideos": [], @@ -506099,7 +505750,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 14742584, "featuredRunMedia": null, "reactionVideos": [], @@ -506137,7 +505788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14742699, "featuredRunMedia": null, "reactionVideos": [], @@ -506165,7 +505816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14743127, "featuredRunMedia": null, "reactionVideos": [], @@ -506198,7 +505849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 14743158, "featuredRunMedia": null, "reactionVideos": [], @@ -506226,7 +505877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 281, + "teamId": "2950", "time": 14743261, "featuredRunMedia": null, "reactionVideos": [], @@ -506254,7 +505905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 14743465, "featuredRunMedia": null, "reactionVideos": [], @@ -506287,7 +505938,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14743491, "featuredRunMedia": null, "reactionVideos": [], @@ -506315,7 +505966,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 14745302, "featuredRunMedia": null, "reactionVideos": [], @@ -506348,7 +505999,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14745666, "featuredRunMedia": null, "reactionVideos": [], @@ -506376,7 +506027,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 14746234, "featuredRunMedia": null, "reactionVideos": [], @@ -506409,7 +506060,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 14747031, "featuredRunMedia": null, "reactionVideos": [], @@ -506447,7 +506098,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 14749664, "featuredRunMedia": null, "reactionVideos": [], @@ -506475,7 +506126,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14757168, "featuredRunMedia": null, "reactionVideos": [], @@ -506508,7 +506159,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14758038, "featuredRunMedia": null, "reactionVideos": [], @@ -506536,7 +506187,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 14758065, "featuredRunMedia": null, "reactionVideos": [], @@ -506569,7 +506220,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14758144, "featuredRunMedia": null, "reactionVideos": [], @@ -506607,7 +506258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 14759460, "featuredRunMedia": null, "reactionVideos": [], @@ -506645,7 +506296,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 14759514, "featuredRunMedia": null, "reactionVideos": [], @@ -506673,7 +506324,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 14759681, "featuredRunMedia": null, "reactionVideos": [], @@ -506701,7 +506352,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14759683, "featuredRunMedia": null, "reactionVideos": [], @@ -506734,7 +506385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 14759713, "featuredRunMedia": null, "reactionVideos": [], @@ -506762,7 +506413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14760408, "featuredRunMedia": null, "reactionVideos": [], @@ -506790,7 +506441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14761462, "featuredRunMedia": null, "reactionVideos": [], @@ -506818,7 +506469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 14761596, "featuredRunMedia": null, "reactionVideos": [], @@ -506846,7 +506497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14762033, "featuredRunMedia": null, "reactionVideos": [], @@ -506874,7 +506525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14762951, "featuredRunMedia": null, "reactionVideos": [], @@ -506912,7 +506563,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 310, + "teamId": "1155", "time": 14765423, "featuredRunMedia": null, "reactionVideos": [], @@ -506945,7 +506596,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 14766737, "featuredRunMedia": null, "reactionVideos": [], @@ -506983,7 +506634,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 17, + "teamId": "1953", "time": 14768997, "featuredRunMedia": null, "reactionVideos": [], @@ -507021,7 +506672,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14769079, "featuredRunMedia": null, "reactionVideos": [], @@ -507049,7 +506700,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14769299, "featuredRunMedia": null, "reactionVideos": [], @@ -507087,7 +506738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 14771371, "featuredRunMedia": null, "reactionVideos": [], @@ -507120,7 +506771,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 132, + "teamId": "2256", "time": 14771657, "featuredRunMedia": null, "reactionVideos": [], @@ -507148,7 +506799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 14774333, "featuredRunMedia": null, "reactionVideos": [], @@ -507186,7 +506837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 91, + "teamId": "1343", "time": 14774565, "featuredRunMedia": null, "reactionVideos": [], @@ -507219,7 +506870,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 14774852, "featuredRunMedia": null, "reactionVideos": [], @@ -507257,7 +506908,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 14775130, "featuredRunMedia": null, "reactionVideos": [], @@ -507295,7 +506946,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14776457, "featuredRunMedia": null, "reactionVideos": [], @@ -507333,7 +506984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 14778183, "featuredRunMedia": null, "reactionVideos": [], @@ -507366,7 +507017,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 160, + "teamId": "1649", "time": 14779189, "featuredRunMedia": null, "reactionVideos": [], @@ -507404,7 +507055,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 14780462, "featuredRunMedia": null, "reactionVideos": [], @@ -507432,7 +507083,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14780708, "featuredRunMedia": null, "reactionVideos": [], @@ -507470,7 +507121,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14781226, "featuredRunMedia": null, "reactionVideos": [], @@ -507503,7 +507154,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 66, + "teamId": "2550", "time": 14782348, "featuredRunMedia": null, "reactionVideos": [], @@ -507531,7 +507182,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 14782681, "featuredRunMedia": null, "reactionVideos": [], @@ -507569,7 +507220,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14785654, "featuredRunMedia": null, "reactionVideos": [], @@ -507607,7 +507258,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 161, + "teamId": "1944", "time": 14788861, "featuredRunMedia": null, "reactionVideos": [], @@ -507640,7 +507291,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14788939, "featuredRunMedia": null, "reactionVideos": [], @@ -507678,7 +507329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 14789393, "featuredRunMedia": null, "reactionVideos": [], @@ -507716,7 +507367,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14790757, "featuredRunMedia": null, "reactionVideos": [], @@ -507744,7 +507395,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14792011, "featuredRunMedia": null, "reactionVideos": [], @@ -507772,7 +507423,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 14792247, "featuredRunMedia": null, "reactionVideos": [], @@ -507810,7 +507461,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14792581, "featuredRunMedia": null, "reactionVideos": [], @@ -507848,7 +507499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 14793737, "featuredRunMedia": null, "reactionVideos": [], @@ -507881,7 +507532,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 14794209, "featuredRunMedia": null, "reactionVideos": [], @@ -507909,7 +507560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14795970, "featuredRunMedia": null, "reactionVideos": [], @@ -507937,7 +507588,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14796242, "featuredRunMedia": null, "reactionVideos": [], @@ -507965,7 +507616,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 14798165, "featuredRunMedia": null, "reactionVideos": [], @@ -507993,7 +507644,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 14798346, "featuredRunMedia": null, "reactionVideos": [], @@ -508021,7 +507672,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14798649, "featuredRunMedia": null, "reactionVideos": [], @@ -508054,7 +507705,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14800722, "featuredRunMedia": null, "reactionVideos": [], @@ -508087,7 +507738,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 14803075, "featuredRunMedia": null, "reactionVideos": [], @@ -508125,7 +507776,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 14805883, "featuredRunMedia": null, "reactionVideos": [], @@ -508158,7 +507809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 14806805, "featuredRunMedia": null, "reactionVideos": [], @@ -508191,7 +507842,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 14806904, "featuredRunMedia": null, "reactionVideos": [], @@ -508229,7 +507880,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14807337, "featuredRunMedia": null, "reactionVideos": [], @@ -508257,7 +507908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 14809421, "featuredRunMedia": null, "reactionVideos": [], @@ -508290,7 +507941,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 14810493, "featuredRunMedia": null, "reactionVideos": [], @@ -508318,7 +507969,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14811062, "featuredRunMedia": null, "reactionVideos": [], @@ -508356,7 +508007,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 14811656, "featuredRunMedia": null, "reactionVideos": [], @@ -508394,7 +508045,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 223, + "teamId": "1552", "time": 14812857, "featuredRunMedia": null, "reactionVideos": [], @@ -508422,7 +508073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14814925, "featuredRunMedia": null, "reactionVideos": [], @@ -508455,7 +508106,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 175, + "teamId": "2044", "time": 14815013, "featuredRunMedia": null, "reactionVideos": [], @@ -508493,7 +508144,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14815180, "featuredRunMedia": null, "reactionVideos": [], @@ -508521,7 +508172,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 14816262, "featuredRunMedia": null, "reactionVideos": [], @@ -508554,7 +508205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 14816431, "featuredRunMedia": null, "reactionVideos": [], @@ -508592,7 +508243,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14816885, "featuredRunMedia": null, "reactionVideos": [], @@ -508630,7 +508281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 14818580, "featuredRunMedia": null, "reactionVideos": [], @@ -508668,7 +508319,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 14819634, "featuredRunMedia": null, "reactionVideos": [], @@ -508706,7 +508357,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14819754, "featuredRunMedia": null, "reactionVideos": [], @@ -508734,7 +508385,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14820340, "featuredRunMedia": null, "reactionVideos": [], @@ -508767,7 +508418,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 136, + "teamId": "3146", "time": 14822840, "featuredRunMedia": null, "reactionVideos": [], @@ -508795,7 +508446,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14825983, "featuredRunMedia": null, "reactionVideos": [], @@ -508823,7 +508474,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14826116, "featuredRunMedia": null, "reactionVideos": [], @@ -508856,7 +508507,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "2555", "time": 14826287, "featuredRunMedia": null, "reactionVideos": [], @@ -508894,7 +508545,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 280, + "teamId": "3052", "time": 14826810, "featuredRunMedia": null, "reactionVideos": [], @@ -508927,7 +508578,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 14827261, "featuredRunMedia": null, "reactionVideos": [], @@ -508960,7 +508611,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 14830619, "featuredRunMedia": null, "reactionVideos": [], @@ -508998,7 +508649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "1945", "time": 14830621, "featuredRunMedia": null, "reactionVideos": [], @@ -509031,7 +508682,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 14832591, "featuredRunMedia": null, "reactionVideos": [], @@ -509059,7 +508710,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 14834517, "featuredRunMedia": null, "reactionVideos": [], @@ -509092,7 +508743,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 14834726, "featuredRunMedia": null, "reactionVideos": [], @@ -509130,7 +508781,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 14835452, "featuredRunMedia": null, "reactionVideos": [], @@ -509163,7 +508814,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 14836665, "featuredRunMedia": null, "reactionVideos": [], @@ -509201,7 +508852,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 14836755, "featuredRunMedia": null, "reactionVideos": [], @@ -509234,7 +508885,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 14837985, "featuredRunMedia": null, "reactionVideos": [], @@ -509267,7 +508918,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14838135, "featuredRunMedia": null, "reactionVideos": [], @@ -509305,7 +508956,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 14838270, "featuredRunMedia": null, "reactionVideos": [], @@ -509333,7 +508984,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14838763, "featuredRunMedia": null, "reactionVideos": [], @@ -509361,7 +509012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 14840086, "featuredRunMedia": null, "reactionVideos": [], @@ -509399,7 +509050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 14840410, "featuredRunMedia": null, "reactionVideos": [], @@ -509421,7 +509072,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "2149", "time": 14841277, "featuredRunMedia": null, "reactionVideos": [], @@ -509459,7 +509110,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 14844781, "featuredRunMedia": null, "reactionVideos": [], @@ -509492,7 +509143,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 14845216, "featuredRunMedia": null, "reactionVideos": [], @@ -509530,7 +509181,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14845529, "featuredRunMedia": null, "reactionVideos": [], @@ -509563,7 +509214,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14845745, "featuredRunMedia": null, "reactionVideos": [], @@ -509596,7 +509247,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 14847779, "featuredRunMedia": null, "reactionVideos": [], @@ -509624,7 +509275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14847812, "featuredRunMedia": null, "reactionVideos": [], @@ -509657,7 +509308,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 14849106, "featuredRunMedia": null, "reactionVideos": [], @@ -509695,7 +509346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 14849879, "featuredRunMedia": null, "reactionVideos": [], @@ -509728,7 +509379,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14851577, "featuredRunMedia": null, "reactionVideos": [], @@ -509761,7 +509412,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 14851637, "featuredRunMedia": null, "reactionVideos": [], @@ -509783,7 +509434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14851949, "featuredRunMedia": null, "reactionVideos": [], @@ -509811,7 +509462,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 14853543, "featuredRunMedia": null, "reactionVideos": [], @@ -509839,7 +509490,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 14855447, "featuredRunMedia": null, "reactionVideos": [], @@ -509867,7 +509518,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14858270, "featuredRunMedia": null, "reactionVideos": [], @@ -509900,7 +509551,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 14858451, "featuredRunMedia": null, "reactionVideos": [], @@ -509928,7 +509579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 14860581, "featuredRunMedia": null, "reactionVideos": [], @@ -509956,7 +509607,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14861658, "featuredRunMedia": null, "reactionVideos": [], @@ -509989,7 +509640,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 14862572, "featuredRunMedia": null, "reactionVideos": [], @@ -510027,7 +509678,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 14862628, "featuredRunMedia": null, "reactionVideos": [], @@ -510060,7 +509711,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 14863161, "featuredRunMedia": null, "reactionVideos": [], @@ -510098,7 +509749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 271, + "teamId": "2149", "time": 14868834, "featuredRunMedia": null, "reactionVideos": [], @@ -510126,7 +509777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 109, + "teamId": "2649", "time": 14868851, "featuredRunMedia": null, "reactionVideos": [], @@ -510159,7 +509810,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 14869690, "featuredRunMedia": null, "reactionVideos": [], @@ -510187,7 +509838,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14870508, "featuredRunMedia": null, "reactionVideos": [], @@ -510225,7 +509876,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 14871307, "featuredRunMedia": null, "reactionVideos": [], @@ -510253,7 +509904,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 158, + "teamId": "2154", "time": 14871425, "featuredRunMedia": null, "reactionVideos": [], @@ -510281,7 +509932,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14871960, "featuredRunMedia": null, "reactionVideos": [], @@ -510319,7 +509970,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 14872088, "featuredRunMedia": null, "reactionVideos": [], @@ -510352,7 +510003,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14873976, "featuredRunMedia": null, "reactionVideos": [], @@ -510380,7 +510031,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 14874117, "featuredRunMedia": null, "reactionVideos": [], @@ -510408,7 +510059,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 14874654, "featuredRunMedia": null, "reactionVideos": [], @@ -510436,7 +510087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 14874985, "featuredRunMedia": null, "reactionVideos": [], @@ -510474,7 +510125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14876452, "featuredRunMedia": null, "reactionVideos": [], @@ -510512,7 +510163,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 14876471, "featuredRunMedia": null, "reactionVideos": [], @@ -510538,7 +510189,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 14877181, "featuredRunMedia": null, "reactionVideos": [], @@ -510576,7 +510227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 14877855, "featuredRunMedia": null, "reactionVideos": [], @@ -510604,7 +510255,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14878257, "featuredRunMedia": null, "reactionVideos": [], @@ -510632,7 +510283,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14881138, "featuredRunMedia": null, "reactionVideos": [], @@ -510670,7 +510321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14881714, "featuredRunMedia": null, "reactionVideos": [], @@ -510708,7 +510359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 14882120, "featuredRunMedia": null, "reactionVideos": [], @@ -510736,7 +510387,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 14885971, "featuredRunMedia": null, "reactionVideos": [], @@ -510774,7 +510425,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 14886746, "featuredRunMedia": null, "reactionVideos": [], @@ -510812,7 +510463,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 14887201, "featuredRunMedia": null, "reactionVideos": [], @@ -510850,7 +510501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 14887642, "featuredRunMedia": null, "reactionVideos": [], @@ -510878,7 +510529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14891848, "featuredRunMedia": null, "reactionVideos": [], @@ -510900,7 +510551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14891892, "featuredRunMedia": null, "reactionVideos": [], @@ -510933,7 +510584,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 14892315, "featuredRunMedia": null, "reactionVideos": [], @@ -510971,7 +510622,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 14892698, "featuredRunMedia": null, "reactionVideos": [], @@ -511009,7 +510660,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 14892867, "featuredRunMedia": null, "reactionVideos": [], @@ -511042,7 +510693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 14892934, "featuredRunMedia": null, "reactionVideos": [], @@ -511070,7 +510721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 14895118, "featuredRunMedia": null, "reactionVideos": [], @@ -511103,7 +510754,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 14896442, "featuredRunMedia": null, "reactionVideos": [], @@ -511141,7 +510792,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 14896628, "featuredRunMedia": null, "reactionVideos": [], @@ -511179,7 +510830,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14899050, "featuredRunMedia": null, "reactionVideos": [], @@ -511217,7 +510868,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14900059, "featuredRunMedia": null, "reactionVideos": [], @@ -511255,7 +510906,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 14901247, "featuredRunMedia": null, "reactionVideos": [], @@ -511277,7 +510928,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14902026, "featuredRunMedia": null, "reactionVideos": [], @@ -511305,7 +510956,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 14902711, "featuredRunMedia": null, "reactionVideos": [], @@ -511343,7 +510994,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 14905007, "featuredRunMedia": null, "reactionVideos": [], @@ -511376,7 +511027,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 14905482, "featuredRunMedia": null, "reactionVideos": [], @@ -511414,7 +511065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14905565, "featuredRunMedia": null, "reactionVideos": [], @@ -511447,7 +511098,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 14905826, "featuredRunMedia": null, "reactionVideos": [], @@ -511480,7 +511131,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 148, + "teamId": "1151", "time": 14907390, "featuredRunMedia": null, "reactionVideos": [], @@ -511513,7 +511164,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 14907824, "featuredRunMedia": null, "reactionVideos": [], @@ -511541,7 +511192,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 14908571, "featuredRunMedia": null, "reactionVideos": [], @@ -511574,7 +511225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 14909099, "featuredRunMedia": null, "reactionVideos": [], @@ -511612,7 +511263,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 14909746, "featuredRunMedia": null, "reactionVideos": [], @@ -511640,7 +511291,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 14910608, "featuredRunMedia": null, "reactionVideos": [], @@ -511678,7 +511329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 14911088, "featuredRunMedia": null, "reactionVideos": [], @@ -511711,7 +511362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 14911173, "featuredRunMedia": null, "reactionVideos": [], @@ -511749,7 +511400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 14911211, "featuredRunMedia": null, "reactionVideos": [], @@ -511771,7 +511422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14911812, "featuredRunMedia": null, "reactionVideos": [], @@ -511809,7 +511460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 14914279, "featuredRunMedia": null, "reactionVideos": [], @@ -511847,7 +511498,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 14914676, "featuredRunMedia": null, "reactionVideos": [], @@ -511875,7 +511526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 14914909, "featuredRunMedia": null, "reactionVideos": [], @@ -511908,7 +511559,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14916129, "featuredRunMedia": null, "reactionVideos": [], @@ -511936,7 +511587,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 14917597, "featuredRunMedia": null, "reactionVideos": [], @@ -511974,7 +511625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 14919752, "featuredRunMedia": null, "reactionVideos": [], @@ -512002,7 +511653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 14921807, "featuredRunMedia": null, "reactionVideos": [], @@ -512040,7 +511691,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 270, + "teamId": "2347", "time": 14921897, "featuredRunMedia": null, "reactionVideos": [], @@ -512078,7 +511729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14922394, "featuredRunMedia": null, "reactionVideos": [], @@ -512116,7 +511767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 242, + "teamId": "3056", "time": 14922523, "featuredRunMedia": null, "reactionVideos": [], @@ -512149,7 +511800,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 14922545, "featuredRunMedia": null, "reactionVideos": [], @@ -512187,7 +511838,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "1945", "time": 14922709, "featuredRunMedia": null, "reactionVideos": [], @@ -512220,7 +511871,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 14923349, "featuredRunMedia": null, "reactionVideos": [], @@ -512258,7 +511909,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 14925842, "featuredRunMedia": null, "reactionVideos": [], @@ -512296,7 +511947,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14925923, "featuredRunMedia": null, "reactionVideos": [], @@ -512334,7 +511985,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 14926592, "featuredRunMedia": null, "reactionVideos": [], @@ -512362,7 +512013,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14928129, "featuredRunMedia": null, "reactionVideos": [], @@ -512390,7 +512041,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 14928276, "featuredRunMedia": null, "reactionVideos": [], @@ -512418,7 +512069,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 14930054, "featuredRunMedia": null, "reactionVideos": [], @@ -512451,7 +512102,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 14930349, "featuredRunMedia": null, "reactionVideos": [], @@ -512479,7 +512130,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 14930444, "featuredRunMedia": null, "reactionVideos": [], @@ -512507,7 +512158,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14932928, "featuredRunMedia": null, "reactionVideos": [], @@ -512535,7 +512186,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14933235, "featuredRunMedia": null, "reactionVideos": [], @@ -512563,7 +512214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 14933442, "featuredRunMedia": null, "reactionVideos": [], @@ -512596,7 +512247,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 14933903, "featuredRunMedia": null, "reactionVideos": [], @@ -512624,7 +512275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 14934578, "featuredRunMedia": null, "reactionVideos": [], @@ -512657,7 +512308,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 14935080, "featuredRunMedia": null, "reactionVideos": [], @@ -512695,7 +512346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14935830, "featuredRunMedia": null, "reactionVideos": [], @@ -512728,7 +512379,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 14937080, "featuredRunMedia": null, "reactionVideos": [], @@ -512756,7 +512407,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14937165, "featuredRunMedia": null, "reactionVideos": [], @@ -512794,7 +512445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14938001, "featuredRunMedia": null, "reactionVideos": [], @@ -512822,7 +512473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 14938441, "featuredRunMedia": null, "reactionVideos": [], @@ -512850,7 +512501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 14944854, "featuredRunMedia": null, "reactionVideos": [], @@ -512878,7 +512529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14947654, "featuredRunMedia": null, "reactionVideos": [], @@ -512906,7 +512557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 14949116, "featuredRunMedia": null, "reactionVideos": [], @@ -512944,7 +512595,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 14949777, "featuredRunMedia": null, "reactionVideos": [], @@ -512982,7 +512633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 14950349, "featuredRunMedia": null, "reactionVideos": [], @@ -513020,7 +512671,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 14951735, "featuredRunMedia": null, "reactionVideos": [], @@ -513053,7 +512704,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14953038, "featuredRunMedia": null, "reactionVideos": [], @@ -513081,7 +512732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14955731, "featuredRunMedia": null, "reactionVideos": [], @@ -513109,7 +512760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14956035, "featuredRunMedia": null, "reactionVideos": [], @@ -513147,7 +512798,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14956958, "featuredRunMedia": null, "reactionVideos": [], @@ -513180,7 +512831,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 14957131, "featuredRunMedia": null, "reactionVideos": [], @@ -513218,7 +512869,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 14957205, "featuredRunMedia": null, "reactionVideos": [], @@ -513256,7 +512907,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 280, + "teamId": "3052", "time": 14957684, "featuredRunMedia": null, "reactionVideos": [], @@ -513294,7 +512945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 14960134, "featuredRunMedia": null, "reactionVideos": [], @@ -513327,7 +512978,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 14960220, "featuredRunMedia": null, "reactionVideos": [], @@ -513355,7 +513006,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 14962079, "featuredRunMedia": null, "reactionVideos": [], @@ -513383,7 +513034,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 14962360, "featuredRunMedia": null, "reactionVideos": [], @@ -513421,7 +513072,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14962970, "featuredRunMedia": null, "reactionVideos": [], @@ -513449,7 +513100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 205, + "teamId": "1455", "time": 14966120, "featuredRunMedia": null, "reactionVideos": [], @@ -513482,7 +513133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 14968744, "featuredRunMedia": null, "reactionVideos": [], @@ -513520,7 +513171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 14968951, "featuredRunMedia": null, "reactionVideos": [], @@ -513548,7 +513199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 14970661, "featuredRunMedia": null, "reactionVideos": [], @@ -513586,7 +513237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 14971194, "featuredRunMedia": null, "reactionVideos": [], @@ -513614,7 +513265,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 14971512, "featuredRunMedia": null, "reactionVideos": [], @@ -513636,7 +513287,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 14973899, "featuredRunMedia": null, "reactionVideos": [], @@ -513674,7 +513325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 14975488, "featuredRunMedia": null, "reactionVideos": [], @@ -513702,7 +513353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14977578, "featuredRunMedia": null, "reactionVideos": [], @@ -513730,7 +513381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 14978747, "featuredRunMedia": null, "reactionVideos": [], @@ -513758,7 +513409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 14982252, "featuredRunMedia": null, "reactionVideos": [], @@ -513791,7 +513442,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 14983493, "featuredRunMedia": null, "reactionVideos": [], @@ -513829,7 +513480,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 14985147, "featuredRunMedia": null, "reactionVideos": [], @@ -513862,7 +513513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 14985308, "featuredRunMedia": null, "reactionVideos": [], @@ -513900,7 +513551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 14985679, "featuredRunMedia": null, "reactionVideos": [], @@ -513933,7 +513584,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 14989195, "featuredRunMedia": null, "reactionVideos": [], @@ -513961,7 +513612,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14990423, "featuredRunMedia": null, "reactionVideos": [], @@ -513999,7 +513650,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 14990963, "featuredRunMedia": null, "reactionVideos": [], @@ -514032,7 +513683,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 14991281, "featuredRunMedia": null, "reactionVideos": [], @@ -514060,7 +513711,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14991867, "featuredRunMedia": null, "reactionVideos": [], @@ -514098,7 +513749,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 14992982, "featuredRunMedia": null, "reactionVideos": [], @@ -514126,7 +513777,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14993324, "featuredRunMedia": null, "reactionVideos": [], @@ -514159,7 +513810,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 14994160, "featuredRunMedia": null, "reactionVideos": [], @@ -514187,7 +513838,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14994919, "featuredRunMedia": null, "reactionVideos": [], @@ -514220,7 +513871,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 14995269, "featuredRunMedia": null, "reactionVideos": [], @@ -514253,7 +513904,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 14995442, "featuredRunMedia": null, "reactionVideos": [], @@ -514281,7 +513932,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 14995714, "featuredRunMedia": null, "reactionVideos": [], @@ -514314,7 +513965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 112, + "teamId": "1255", "time": 14996689, "featuredRunMedia": null, "reactionVideos": [], @@ -514342,7 +513993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14997670, "featuredRunMedia": null, "reactionVideos": [], @@ -514370,7 +514021,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 14997875, "featuredRunMedia": null, "reactionVideos": [], @@ -514398,7 +514049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 14999195, "featuredRunMedia": null, "reactionVideos": [], @@ -514426,7 +514077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 14999864, "featuredRunMedia": null, "reactionVideos": [], @@ -514454,7 +514105,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 15001745, "featuredRunMedia": null, "reactionVideos": [], @@ -514482,7 +514133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15002010, "featuredRunMedia": null, "reactionVideos": [], @@ -514510,7 +514161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 15002382, "featuredRunMedia": null, "reactionVideos": [], @@ -514543,7 +514194,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 15003529, "featuredRunMedia": null, "reactionVideos": [], @@ -514571,7 +514222,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15003619, "featuredRunMedia": null, "reactionVideos": [], @@ -514604,7 +514255,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "1353", "time": 15007088, "featuredRunMedia": null, "reactionVideos": [], @@ -514632,7 +514283,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 15009404, "featuredRunMedia": null, "reactionVideos": [], @@ -514665,7 +514316,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 15010168, "featuredRunMedia": null, "reactionVideos": [], @@ -514698,7 +514349,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15010562, "featuredRunMedia": null, "reactionVideos": [], @@ -514726,7 +514377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15011064, "featuredRunMedia": null, "reactionVideos": [], @@ -514754,7 +514405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 15011883, "featuredRunMedia": null, "reactionVideos": [], @@ -514782,7 +514433,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 15012277, "featuredRunMedia": null, "reactionVideos": [], @@ -514815,7 +514466,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15013286, "featuredRunMedia": null, "reactionVideos": [], @@ -514843,7 +514494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15014734, "featuredRunMedia": null, "reactionVideos": [], @@ -514881,7 +514532,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 204, + "teamId": "2356", "time": 15019238, "featuredRunMedia": null, "reactionVideos": [], @@ -514914,7 +514565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 15019434, "featuredRunMedia": null, "reactionVideos": [], @@ -514942,7 +514593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 15020657, "featuredRunMedia": null, "reactionVideos": [], @@ -514975,7 +514626,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 15021520, "featuredRunMedia": null, "reactionVideos": [], @@ -515013,7 +514664,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 15021627, "featuredRunMedia": null, "reactionVideos": [], @@ -515046,7 +514697,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 15024846, "featuredRunMedia": null, "reactionVideos": [], @@ -515074,7 +514725,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 15024893, "featuredRunMedia": null, "reactionVideos": [], @@ -515107,7 +514758,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15026278, "featuredRunMedia": null, "reactionVideos": [], @@ -515145,7 +514796,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 15028946, "featuredRunMedia": null, "reactionVideos": [], @@ -515178,7 +514829,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 15029294, "featuredRunMedia": null, "reactionVideos": [], @@ -515211,7 +514862,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15029908, "featuredRunMedia": null, "reactionVideos": [], @@ -515249,7 +514900,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 15031864, "featuredRunMedia": null, "reactionVideos": [], @@ -515287,7 +514938,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 15032258, "featuredRunMedia": null, "reactionVideos": [], @@ -515320,7 +514971,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15032497, "featuredRunMedia": null, "reactionVideos": [], @@ -515348,7 +514999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15033043, "featuredRunMedia": null, "reactionVideos": [], @@ -515381,7 +515032,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 15033117, "featuredRunMedia": null, "reactionVideos": [], @@ -515419,7 +515070,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 15034146, "featuredRunMedia": null, "reactionVideos": [], @@ -515457,7 +515108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 15035513, "featuredRunMedia": null, "reactionVideos": [], @@ -515485,7 +515136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 15037670, "featuredRunMedia": null, "reactionVideos": [], @@ -515523,7 +515174,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 15038248, "featuredRunMedia": null, "reactionVideos": [], @@ -515556,7 +515207,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 15038418, "featuredRunMedia": null, "reactionVideos": [], @@ -515594,7 +515245,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 15039574, "featuredRunMedia": null, "reactionVideos": [], @@ -515627,7 +515278,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 15040055, "featuredRunMedia": null, "reactionVideos": [], @@ -515660,7 +515311,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 21, + "teamId": "1145", "time": 15040171, "featuredRunMedia": null, "reactionVideos": [], @@ -515688,7 +515339,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 15040468, "featuredRunMedia": null, "reactionVideos": [], @@ -515721,7 +515372,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 15041325, "featuredRunMedia": null, "reactionVideos": [], @@ -515749,7 +515400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 15042185, "featuredRunMedia": null, "reactionVideos": [], @@ -515787,7 +515438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 15042224, "featuredRunMedia": null, "reactionVideos": [], @@ -515825,7 +515476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "2143", "time": 15043523, "featuredRunMedia": null, "reactionVideos": [], @@ -515853,7 +515504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15043649, "featuredRunMedia": null, "reactionVideos": [], @@ -515881,7 +515532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15044580, "featuredRunMedia": null, "reactionVideos": [], @@ -515909,7 +515560,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 15045919, "featuredRunMedia": null, "reactionVideos": [], @@ -515947,7 +515598,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 15048122, "featuredRunMedia": null, "reactionVideos": [], @@ -515975,7 +515626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 15049435, "featuredRunMedia": null, "reactionVideos": [], @@ -516008,7 +515659,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 15050321, "featuredRunMedia": null, "reactionVideos": [], @@ -516036,7 +515687,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15051452, "featuredRunMedia": null, "reactionVideos": [], @@ -516074,7 +515725,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 15053233, "featuredRunMedia": null, "reactionVideos": [], @@ -516102,7 +515753,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 15056587, "featuredRunMedia": null, "reactionVideos": [], @@ -516140,7 +515791,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15056647, "featuredRunMedia": null, "reactionVideos": [], @@ -516168,7 +515819,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15056818, "featuredRunMedia": null, "reactionVideos": [], @@ -516206,7 +515857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 15057946, "featuredRunMedia": null, "reactionVideos": [], @@ -516234,7 +515885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 15058309, "featuredRunMedia": null, "reactionVideos": [], @@ -516262,7 +515913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15061081, "featuredRunMedia": null, "reactionVideos": [], @@ -516300,7 +515951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 20, + "teamId": "1342", "time": 15061413, "featuredRunMedia": null, "reactionVideos": [], @@ -516328,7 +515979,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15062533, "featuredRunMedia": null, "reactionVideos": [], @@ -516356,7 +516007,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 15063086, "featuredRunMedia": null, "reactionVideos": [], @@ -516384,7 +516035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15064114, "featuredRunMedia": null, "reactionVideos": [], @@ -516412,7 +516063,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15065680, "featuredRunMedia": null, "reactionVideos": [], @@ -516450,7 +516101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 15066163, "featuredRunMedia": null, "reactionVideos": [], @@ -516483,7 +516134,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 15066521, "featuredRunMedia": null, "reactionVideos": [], @@ -516521,7 +516172,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 15066562, "featuredRunMedia": null, "reactionVideos": [], @@ -516554,7 +516205,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15066993, "featuredRunMedia": null, "reactionVideos": [], @@ -516582,7 +516233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15067204, "featuredRunMedia": null, "reactionVideos": [], @@ -516620,7 +516271,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 15067557, "featuredRunMedia": null, "reactionVideos": [], @@ -516648,7 +516299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15068708, "featuredRunMedia": null, "reactionVideos": [], @@ -516676,7 +516327,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15070226, "featuredRunMedia": null, "reactionVideos": [], @@ -516704,7 +516355,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15071437, "featuredRunMedia": null, "reactionVideos": [], @@ -516732,7 +516383,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15071681, "featuredRunMedia": null, "reactionVideos": [], @@ -516760,7 +516411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15073349, "featuredRunMedia": null, "reactionVideos": [], @@ -516793,7 +516444,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15074302, "featuredRunMedia": null, "reactionVideos": [], @@ -516821,7 +516472,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15074965, "featuredRunMedia": null, "reactionVideos": [], @@ -516854,7 +516505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 15076127, "featuredRunMedia": null, "reactionVideos": [], @@ -516882,7 +516533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15076585, "featuredRunMedia": null, "reactionVideos": [], @@ -516910,7 +516561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 15078183, "featuredRunMedia": null, "reactionVideos": [], @@ -516938,7 +516589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15078883, "featuredRunMedia": null, "reactionVideos": [], @@ -516966,7 +516617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15079028, "featuredRunMedia": null, "reactionVideos": [], @@ -516994,7 +516645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 15079288, "featuredRunMedia": null, "reactionVideos": [], @@ -517022,7 +516673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 95, + "teamId": "3255", "time": 15080145, "featuredRunMedia": null, "reactionVideos": [], @@ -517050,7 +516701,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15080807, "featuredRunMedia": null, "reactionVideos": [], @@ -517088,7 +516739,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 15080836, "featuredRunMedia": null, "reactionVideos": [], @@ -517121,7 +516772,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 15082667, "featuredRunMedia": null, "reactionVideos": [], @@ -517149,7 +516800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15083863, "featuredRunMedia": null, "reactionVideos": [], @@ -517177,7 +516828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 15085246, "featuredRunMedia": null, "reactionVideos": [], @@ -517205,7 +516856,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 315, + "teamId": "1542", "time": 15085248, "featuredRunMedia": null, "reactionVideos": [], @@ -517233,7 +516884,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15087167, "featuredRunMedia": null, "reactionVideos": [], @@ -517271,7 +516922,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 15089035, "featuredRunMedia": null, "reactionVideos": [], @@ -517304,7 +516955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 15090369, "featuredRunMedia": null, "reactionVideos": [], @@ -517337,7 +516988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 15092713, "featuredRunMedia": null, "reactionVideos": [], @@ -517370,7 +517021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 15093754, "featuredRunMedia": null, "reactionVideos": [], @@ -517408,7 +517059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 15094619, "featuredRunMedia": null, "reactionVideos": [], @@ -517436,7 +517087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 15095410, "featuredRunMedia": null, "reactionVideos": [], @@ -517474,7 +517125,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 15101696, "featuredRunMedia": null, "reactionVideos": [], @@ -517502,7 +517153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 117, + "teamId": "3047", "time": 15102532, "featuredRunMedia": null, "reactionVideos": [], @@ -517524,7 +517175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 15108396, "featuredRunMedia": null, "reactionVideos": [], @@ -517552,7 +517203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15110490, "featuredRunMedia": null, "reactionVideos": [], @@ -517590,7 +517241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 15110955, "featuredRunMedia": null, "reactionVideos": [], @@ -517628,7 +517279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 15111144, "featuredRunMedia": null, "reactionVideos": [], @@ -517656,7 +517307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15111181, "featuredRunMedia": null, "reactionVideos": [], @@ -517689,7 +517340,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 15114817, "featuredRunMedia": null, "reactionVideos": [], @@ -517717,7 +517368,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 15118784, "featuredRunMedia": null, "reactionVideos": [], @@ -517750,7 +517401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 15121514, "featuredRunMedia": null, "reactionVideos": [], @@ -517778,7 +517429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 15122037, "featuredRunMedia": null, "reactionVideos": [], @@ -517816,7 +517467,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15122997, "featuredRunMedia": null, "reactionVideos": [], @@ -517854,7 +517505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15123279, "featuredRunMedia": null, "reactionVideos": [], @@ -517882,7 +517533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 15124113, "featuredRunMedia": null, "reactionVideos": [], @@ -517915,7 +517566,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 15124173, "featuredRunMedia": null, "reactionVideos": [], @@ -517953,7 +517604,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "2943", "time": 15124747, "featuredRunMedia": null, "reactionVideos": [], @@ -517981,7 +517632,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15125731, "featuredRunMedia": null, "reactionVideos": [], @@ -518019,7 +517670,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 15126951, "featuredRunMedia": null, "reactionVideos": [], @@ -518047,7 +517698,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 15129286, "featuredRunMedia": null, "reactionVideos": [], @@ -518085,7 +517736,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 15130224, "featuredRunMedia": null, "reactionVideos": [], @@ -518111,7 +517762,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 15131862, "featuredRunMedia": null, "reactionVideos": [], @@ -518144,7 +517795,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 15132140, "featuredRunMedia": null, "reactionVideos": [], @@ -518182,7 +517833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 15132608, "featuredRunMedia": null, "reactionVideos": [], @@ -518215,7 +517866,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15133332, "featuredRunMedia": null, "reactionVideos": [], @@ -518248,7 +517899,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15134743, "featuredRunMedia": null, "reactionVideos": [], @@ -518276,7 +517927,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 15134777, "featuredRunMedia": null, "reactionVideos": [], @@ -518309,7 +517960,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 15134850, "featuredRunMedia": null, "reactionVideos": [], @@ -518337,7 +517988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 15137069, "featuredRunMedia": null, "reactionVideos": [], @@ -518375,7 +518026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 180, + "teamId": "3155", "time": 15137264, "featuredRunMedia": null, "reactionVideos": [], @@ -518413,7 +518064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 15139110, "featuredRunMedia": null, "reactionVideos": [], @@ -518451,7 +518102,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 15139467, "featuredRunMedia": null, "reactionVideos": [], @@ -518484,7 +518135,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15141095, "featuredRunMedia": null, "reactionVideos": [], @@ -518517,7 +518168,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15141774, "featuredRunMedia": null, "reactionVideos": [], @@ -518550,7 +518201,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 15143029, "featuredRunMedia": null, "reactionVideos": [], @@ -518583,7 +518234,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 15143280, "featuredRunMedia": null, "reactionVideos": [], @@ -518611,7 +518262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 15143435, "featuredRunMedia": null, "reactionVideos": [], @@ -518644,7 +518295,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 15145058, "featuredRunMedia": null, "reactionVideos": [], @@ -518677,7 +518328,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 15145965, "featuredRunMedia": null, "reactionVideos": [], @@ -518705,7 +518356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 15146516, "featuredRunMedia": null, "reactionVideos": [], @@ -518743,7 +518394,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15148207, "featuredRunMedia": null, "reactionVideos": [], @@ -518781,7 +518432,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 15148870, "featuredRunMedia": null, "reactionVideos": [], @@ -518814,7 +518465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 15149526, "featuredRunMedia": null, "reactionVideos": [], @@ -518847,7 +518498,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 15150296, "featuredRunMedia": null, "reactionVideos": [], @@ -518875,7 +518526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 15151650, "featuredRunMedia": null, "reactionVideos": [], @@ -518903,7 +518554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15154060, "featuredRunMedia": null, "reactionVideos": [], @@ -518931,7 +518582,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 15154316, "featuredRunMedia": null, "reactionVideos": [], @@ -518964,7 +518615,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15154704, "featuredRunMedia": null, "reactionVideos": [], @@ -518997,7 +518648,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 220, + "teamId": "1742", "time": 15157313, "featuredRunMedia": null, "reactionVideos": [], @@ -519030,7 +518681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15157580, "featuredRunMedia": null, "reactionVideos": [], @@ -519063,7 +518714,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 15159238, "featuredRunMedia": null, "reactionVideos": [], @@ -519101,7 +518752,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 285, + "teamId": "1945", "time": 15160652, "featuredRunMedia": null, "reactionVideos": [], @@ -519139,7 +518790,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 15161215, "featuredRunMedia": null, "reactionVideos": [], @@ -519177,7 +518828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15165015, "featuredRunMedia": null, "reactionVideos": [], @@ -519215,7 +518866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 15165643, "featuredRunMedia": null, "reactionVideos": [], @@ -519248,7 +518899,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 15166168, "featuredRunMedia": null, "reactionVideos": [], @@ -519286,7 +518937,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 15167333, "featuredRunMedia": null, "reactionVideos": [], @@ -519324,7 +518975,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15167441, "featuredRunMedia": null, "reactionVideos": [], @@ -519357,7 +519008,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 83, + "teamId": "2555", "time": 15168440, "featuredRunMedia": null, "reactionVideos": [], @@ -519390,7 +519041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 15169361, "featuredRunMedia": null, "reactionVideos": [], @@ -519428,7 +519079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 15169841, "featuredRunMedia": null, "reactionVideos": [], @@ -519466,7 +519117,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 15171717, "featuredRunMedia": null, "reactionVideos": [], @@ -519504,7 +519155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 15172296, "featuredRunMedia": null, "reactionVideos": [], @@ -519542,7 +519193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 15174831, "featuredRunMedia": null, "reactionVideos": [], @@ -519580,7 +519231,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 15175633, "featuredRunMedia": null, "reactionVideos": [], @@ -519608,7 +519259,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 34, + "teamId": "3043", "time": 15179781, "featuredRunMedia": null, "reactionVideos": [], @@ -519641,7 +519292,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 186, + "teamId": "2646", "time": 15180627, "featuredRunMedia": null, "reactionVideos": [], @@ -519679,7 +519330,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 15183193, "featuredRunMedia": null, "reactionVideos": [], @@ -519712,7 +519363,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 149, + "teamId": "2748", "time": 15183295, "featuredRunMedia": null, "reactionVideos": [], @@ -519745,7 +519396,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15185517, "featuredRunMedia": null, "reactionVideos": [], @@ -519773,7 +519424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 144, + "teamId": "1856", "time": 15185761, "featuredRunMedia": null, "reactionVideos": [], @@ -519806,7 +519457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 15187075, "featuredRunMedia": null, "reactionVideos": [], @@ -519844,7 +519495,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 15188334, "featuredRunMedia": null, "reactionVideos": [], @@ -519882,7 +519533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 15188849, "featuredRunMedia": null, "reactionVideos": [], @@ -519920,7 +519571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 15189685, "featuredRunMedia": null, "reactionVideos": [], @@ -519958,7 +519609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 15190421, "featuredRunMedia": null, "reactionVideos": [], @@ -519991,7 +519642,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15190678, "featuredRunMedia": null, "reactionVideos": [], @@ -520024,7 +519675,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 15192392, "featuredRunMedia": null, "reactionVideos": [], @@ -520052,7 +519703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15193608, "featuredRunMedia": null, "reactionVideos": [], @@ -520080,7 +519731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 15193798, "featuredRunMedia": null, "reactionVideos": [], @@ -520118,7 +519769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 15193800, "featuredRunMedia": null, "reactionVideos": [], @@ -520146,7 +519797,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 15195855, "featuredRunMedia": null, "reactionVideos": [], @@ -520179,7 +519830,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15195900, "featuredRunMedia": null, "reactionVideos": [], @@ -520217,7 +519868,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 15196732, "featuredRunMedia": null, "reactionVideos": [], @@ -520255,7 +519906,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15197546, "featuredRunMedia": null, "reactionVideos": [], @@ -520283,7 +519934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15198566, "featuredRunMedia": null, "reactionVideos": [], @@ -520311,7 +519962,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15200945, "featuredRunMedia": null, "reactionVideos": [], @@ -520339,7 +519990,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 15202345, "featuredRunMedia": null, "reactionVideos": [], @@ -520377,7 +520028,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 46, + "teamId": "2252", "time": 15202375, "featuredRunMedia": null, "reactionVideos": [], @@ -520410,7 +520061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 15209458, "featuredRunMedia": null, "reactionVideos": [], @@ -520443,7 +520094,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 15210137, "featuredRunMedia": null, "reactionVideos": [], @@ -520481,7 +520132,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 15210876, "featuredRunMedia": null, "reactionVideos": [], @@ -520509,7 +520160,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15211669, "featuredRunMedia": null, "reactionVideos": [], @@ -520537,7 +520188,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 15212130, "featuredRunMedia": null, "reactionVideos": [], @@ -520570,7 +520221,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15215008, "featuredRunMedia": null, "reactionVideos": [], @@ -520603,7 +520254,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 15215500, "featuredRunMedia": null, "reactionVideos": [], @@ -520631,7 +520282,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 15217342, "featuredRunMedia": null, "reactionVideos": [], @@ -520669,7 +520320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 15220436, "featuredRunMedia": null, "reactionVideos": [], @@ -520697,7 +520348,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 15220613, "featuredRunMedia": null, "reactionVideos": [], @@ -520730,7 +520381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15221401, "featuredRunMedia": null, "reactionVideos": [], @@ -520768,7 +520419,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 15221678, "featuredRunMedia": null, "reactionVideos": [], @@ -520801,7 +520452,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15223733, "featuredRunMedia": null, "reactionVideos": [], @@ -520829,7 +520480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15229318, "featuredRunMedia": null, "reactionVideos": [], @@ -520867,7 +520518,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 15229823, "featuredRunMedia": null, "reactionVideos": [], @@ -520889,7 +520540,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 15232928, "featuredRunMedia": null, "reactionVideos": [], @@ -520917,7 +520568,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 15234660, "featuredRunMedia": null, "reactionVideos": [], @@ -520945,7 +520596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "1752", "time": 15235028, "featuredRunMedia": null, "reactionVideos": [], @@ -520983,7 +520634,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15235053, "featuredRunMedia": null, "reactionVideos": [], @@ -521016,7 +520667,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 15235227, "featuredRunMedia": null, "reactionVideos": [], @@ -521054,7 +520705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 15238752, "featuredRunMedia": null, "reactionVideos": [], @@ -521082,7 +520733,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 15239990, "featuredRunMedia": null, "reactionVideos": [], @@ -521120,7 +520771,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 85, + "teamId": "2150", "time": 15240300, "featuredRunMedia": null, "reactionVideos": [], @@ -521148,7 +520799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 15241849, "featuredRunMedia": null, "reactionVideos": [], @@ -521186,7 +520837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15242146, "featuredRunMedia": null, "reactionVideos": [], @@ -521224,7 +520875,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 231, + "teamId": "1555", "time": 15242239, "featuredRunMedia": null, "reactionVideos": [], @@ -521262,7 +520913,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 15242382, "featuredRunMedia": null, "reactionVideos": [], @@ -521300,7 +520951,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 47, + "teamId": "2943", "time": 15242729, "featuredRunMedia": null, "reactionVideos": [], @@ -521333,7 +520984,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 15246375, "featuredRunMedia": null, "reactionVideos": [], @@ -521371,7 +521022,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 15247891, "featuredRunMedia": null, "reactionVideos": [], @@ -521404,7 +521055,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 15250498, "featuredRunMedia": null, "reactionVideos": [], @@ -521437,7 +521088,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 15250505, "featuredRunMedia": null, "reactionVideos": [], @@ -521475,7 +521126,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 15250925, "featuredRunMedia": null, "reactionVideos": [], @@ -521503,7 +521154,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15251350, "featuredRunMedia": null, "reactionVideos": [], @@ -521541,7 +521192,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 15251734, "featuredRunMedia": null, "reactionVideos": [], @@ -521574,7 +521225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "2152", "time": 15255136, "featuredRunMedia": null, "reactionVideos": [], @@ -521607,7 +521258,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 15259647, "featuredRunMedia": null, "reactionVideos": [], @@ -521640,7 +521291,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 15261214, "featuredRunMedia": null, "reactionVideos": [], @@ -521678,7 +521329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 15261437, "featuredRunMedia": null, "reactionVideos": [], @@ -521711,7 +521362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 15261971, "featuredRunMedia": null, "reactionVideos": [], @@ -521749,7 +521400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 15265779, "featuredRunMedia": null, "reactionVideos": [], @@ -521782,7 +521433,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 15268331, "featuredRunMedia": null, "reactionVideos": [], @@ -521815,7 +521466,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 15268925, "featuredRunMedia": null, "reactionVideos": [], @@ -521843,7 +521494,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 162, + "teamId": "2156", "time": 15270057, "featuredRunMedia": null, "reactionVideos": [], @@ -521881,7 +521532,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 15272239, "featuredRunMedia": null, "reactionVideos": [], @@ -521914,7 +521565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 15272620, "featuredRunMedia": null, "reactionVideos": [], @@ -521952,7 +521603,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 15274075, "featuredRunMedia": null, "reactionVideos": [], @@ -521990,7 +521641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15276265, "featuredRunMedia": null, "reactionVideos": [], @@ -522028,7 +521679,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 15276652, "featuredRunMedia": null, "reactionVideos": [], @@ -522066,7 +521717,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 15277617, "featuredRunMedia": null, "reactionVideos": [], @@ -522099,7 +521750,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 15277765, "featuredRunMedia": null, "reactionVideos": [], @@ -522121,7 +521772,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15278443, "featuredRunMedia": null, "reactionVideos": [], @@ -522159,7 +521810,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15278845, "featuredRunMedia": null, "reactionVideos": [], @@ -522187,7 +521838,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 295, + "teamId": "3149", "time": 15280812, "featuredRunMedia": null, "reactionVideos": [], @@ -522220,7 +521871,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15281386, "featuredRunMedia": null, "reactionVideos": [], @@ -522253,7 +521904,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 15282839, "featuredRunMedia": null, "reactionVideos": [], @@ -522291,7 +521942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 15286994, "featuredRunMedia": null, "reactionVideos": [], @@ -522319,7 +521970,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "1652", "time": 15288093, "featuredRunMedia": null, "reactionVideos": [], @@ -522345,7 +521996,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 15288190, "featuredRunMedia": null, "reactionVideos": [], @@ -522378,7 +522029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15288724, "featuredRunMedia": null, "reactionVideos": [], @@ -522416,7 +522067,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15290573, "featuredRunMedia": null, "reactionVideos": [], @@ -522454,7 +522105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 15291741, "featuredRunMedia": null, "reactionVideos": [], @@ -522482,7 +522133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 299, + "teamId": "1752", "time": 15292864, "featuredRunMedia": null, "reactionVideos": [], @@ -522520,7 +522171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15293418, "featuredRunMedia": null, "reactionVideos": [], @@ -522558,7 +522209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 15296027, "featuredRunMedia": null, "reactionVideos": [], @@ -522596,7 +522247,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15297477, "featuredRunMedia": null, "reactionVideos": [], @@ -522624,7 +522275,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15299121, "featuredRunMedia": null, "reactionVideos": [], @@ -522662,7 +522313,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 15299675, "featuredRunMedia": null, "reactionVideos": [], @@ -522690,7 +522341,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 15302094, "featuredRunMedia": null, "reactionVideos": [], @@ -522718,7 +522369,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 15304014, "featuredRunMedia": null, "reactionVideos": [], @@ -522756,7 +522407,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15304889, "featuredRunMedia": null, "reactionVideos": [], @@ -522794,7 +522445,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 15305981, "featuredRunMedia": null, "reactionVideos": [], @@ -522832,7 +522483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 15306585, "featuredRunMedia": null, "reactionVideos": [], @@ -522865,7 +522516,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 15307973, "featuredRunMedia": null, "reactionVideos": [], @@ -522893,7 +522544,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15308108, "featuredRunMedia": null, "reactionVideos": [], @@ -522931,7 +522582,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 15309639, "featuredRunMedia": null, "reactionVideos": [], @@ -522964,7 +522615,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "2551", "time": 15310017, "featuredRunMedia": null, "reactionVideos": [], @@ -522992,7 +522643,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15310117, "featuredRunMedia": null, "reactionVideos": [], @@ -523025,7 +522676,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 15310758, "featuredRunMedia": null, "reactionVideos": [], @@ -523053,7 +522704,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15311449, "featuredRunMedia": null, "reactionVideos": [], @@ -523081,7 +522732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15312021, "featuredRunMedia": null, "reactionVideos": [], @@ -523109,7 +522760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15312818, "featuredRunMedia": null, "reactionVideos": [], @@ -523142,7 +522793,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 186, + "teamId": "2646", "time": 15314713, "featuredRunMedia": null, "reactionVideos": [], @@ -523170,7 +522821,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15314931, "featuredRunMedia": null, "reactionVideos": [], @@ -523208,7 +522859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15315080, "featuredRunMedia": null, "reactionVideos": [], @@ -523236,7 +522887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15316596, "featuredRunMedia": null, "reactionVideos": [], @@ -523264,7 +522915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15318193, "featuredRunMedia": null, "reactionVideos": [], @@ -523302,7 +522953,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 15320456, "featuredRunMedia": null, "reactionVideos": [], @@ -523340,7 +522991,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15321672, "featuredRunMedia": null, "reactionVideos": [], @@ -523373,7 +523024,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15321953, "featuredRunMedia": null, "reactionVideos": [], @@ -523411,7 +523062,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 133, + "teamId": "2951", "time": 15322834, "featuredRunMedia": null, "reactionVideos": [], @@ -523449,7 +523100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15322949, "featuredRunMedia": null, "reactionVideos": [], @@ -523487,7 +523138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 273, + "teamId": "2247", "time": 15325203, "featuredRunMedia": null, "reactionVideos": [], @@ -523525,7 +523176,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 15326896, "featuredRunMedia": null, "reactionVideos": [], @@ -523558,7 +523209,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15327364, "featuredRunMedia": null, "reactionVideos": [], @@ -523591,7 +523242,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 15330845, "featuredRunMedia": null, "reactionVideos": [], @@ -523619,7 +523270,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15334164, "featuredRunMedia": null, "reactionVideos": [], @@ -523652,7 +523303,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15334468, "featuredRunMedia": null, "reactionVideos": [], @@ -523685,7 +523336,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 15334471, "featuredRunMedia": null, "reactionVideos": [], @@ -523718,7 +523369,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 15336494, "featuredRunMedia": null, "reactionVideos": [], @@ -523751,7 +523402,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 15337825, "featuredRunMedia": null, "reactionVideos": [], @@ -523784,7 +523435,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 15339313, "featuredRunMedia": null, "reactionVideos": [], @@ -523810,7 +523461,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 15341183, "featuredRunMedia": null, "reactionVideos": [], @@ -523832,7 +523483,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 15341328, "featuredRunMedia": null, "reactionVideos": [], @@ -523865,7 +523516,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15342286, "featuredRunMedia": null, "reactionVideos": [], @@ -523898,7 +523549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "1353", "time": 15343340, "featuredRunMedia": null, "reactionVideos": [], @@ -523931,7 +523582,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15344361, "featuredRunMedia": null, "reactionVideos": [], @@ -523964,7 +523615,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 15349311, "featuredRunMedia": null, "reactionVideos": [], @@ -523992,7 +523643,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 15352984, "featuredRunMedia": null, "reactionVideos": [], @@ -524030,7 +523681,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 15353198, "featuredRunMedia": null, "reactionVideos": [], @@ -524063,7 +523714,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 15354642, "featuredRunMedia": null, "reactionVideos": [], @@ -524096,7 +523747,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 15354799, "featuredRunMedia": null, "reactionVideos": [], @@ -524129,7 +523780,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 168, + "teamId": "2152", "time": 15355225, "featuredRunMedia": null, "reactionVideos": [], @@ -524162,7 +523813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 15355361, "featuredRunMedia": null, "reactionVideos": [], @@ -524190,7 +523841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 15355628, "featuredRunMedia": null, "reactionVideos": [], @@ -524228,7 +523879,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 15356369, "featuredRunMedia": null, "reactionVideos": [], @@ -524256,7 +523907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15357902, "featuredRunMedia": null, "reactionVideos": [], @@ -524284,7 +523935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 15358862, "featuredRunMedia": null, "reactionVideos": [], @@ -524312,7 +523963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 212, + "teamId": "2353", "time": 15359854, "featuredRunMedia": null, "reactionVideos": [], @@ -524350,7 +524001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15360133, "featuredRunMedia": null, "reactionVideos": [], @@ -524383,7 +524034,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 15361146, "featuredRunMedia": null, "reactionVideos": [], @@ -524416,7 +524067,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "2850", "time": 15364309, "featuredRunMedia": null, "reactionVideos": [], @@ -524444,7 +524095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 15365186, "featuredRunMedia": null, "reactionVideos": [], @@ -524482,7 +524133,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 15365936, "featuredRunMedia": null, "reactionVideos": [], @@ -524520,7 +524171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15366983, "featuredRunMedia": null, "reactionVideos": [], @@ -524548,7 +524199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 15371566, "featuredRunMedia": null, "reactionVideos": [], @@ -524576,7 +524227,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 326, + "teamId": "1143", "time": 15372674, "featuredRunMedia": null, "reactionVideos": [], @@ -524609,7 +524260,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 15373154, "featuredRunMedia": null, "reactionVideos": [], @@ -524647,7 +524298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 15374652, "featuredRunMedia": null, "reactionVideos": [], @@ -524685,7 +524336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 15377006, "featuredRunMedia": null, "reactionVideos": [], @@ -524713,7 +524364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 15377119, "featuredRunMedia": null, "reactionVideos": [], @@ -524751,7 +524402,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 15378256, "featuredRunMedia": null, "reactionVideos": [], @@ -524779,7 +524430,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 15378677, "featuredRunMedia": null, "reactionVideos": [], @@ -524812,7 +524463,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 15379828, "featuredRunMedia": null, "reactionVideos": [], @@ -524850,7 +524501,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 15384101, "featuredRunMedia": null, "reactionVideos": [], @@ -524878,7 +524529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 15386318, "featuredRunMedia": null, "reactionVideos": [], @@ -524911,7 +524562,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15387081, "featuredRunMedia": null, "reactionVideos": [], @@ -524939,7 +524590,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15390515, "featuredRunMedia": null, "reactionVideos": [], @@ -524967,7 +524618,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 15391374, "featuredRunMedia": null, "reactionVideos": [], @@ -525000,7 +524651,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 115, + "teamId": "2745", "time": 15395262, "featuredRunMedia": null, "reactionVideos": [], @@ -525033,7 +524684,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15395390, "featuredRunMedia": null, "reactionVideos": [], @@ -525066,7 +524717,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15395927, "featuredRunMedia": null, "reactionVideos": [], @@ -525094,7 +524745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 15397024, "featuredRunMedia": null, "reactionVideos": [], @@ -525127,7 +524778,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 15398180, "featuredRunMedia": null, "reactionVideos": [], @@ -525155,7 +524806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 305, + "teamId": "2743", "time": 15401082, "featuredRunMedia": null, "reactionVideos": [], @@ -525188,7 +524839,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15401263, "featuredRunMedia": null, "reactionVideos": [], @@ -525226,7 +524877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 15401448, "featuredRunMedia": null, "reactionVideos": [], @@ -525264,7 +524915,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 15401529, "featuredRunMedia": null, "reactionVideos": [], @@ -525297,7 +524948,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "2850", "time": 15402727, "featuredRunMedia": null, "reactionVideos": [], @@ -525325,7 +524976,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "2455", "time": 15403950, "featuredRunMedia": null, "reactionVideos": [], @@ -525358,7 +525009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15404469, "featuredRunMedia": null, "reactionVideos": [], @@ -525391,7 +525042,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 15405831, "featuredRunMedia": null, "reactionVideos": [], @@ -525419,7 +525070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 15406531, "featuredRunMedia": null, "reactionVideos": [], @@ -525457,7 +525108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15406946, "featuredRunMedia": null, "reactionVideos": [], @@ -525495,7 +525146,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15409514, "featuredRunMedia": null, "reactionVideos": [], @@ -525528,7 +525179,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "2551", "time": 15409961, "featuredRunMedia": null, "reactionVideos": [], @@ -525561,7 +525212,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 15410387, "featuredRunMedia": null, "reactionVideos": [], @@ -525594,7 +525245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 15411433, "featuredRunMedia": null, "reactionVideos": [], @@ -525632,7 +525283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 15411974, "featuredRunMedia": null, "reactionVideos": [], @@ -525670,7 +525321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 15412395, "featuredRunMedia": null, "reactionVideos": [], @@ -525698,7 +525349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15413483, "featuredRunMedia": null, "reactionVideos": [], @@ -525726,7 +525377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15416440, "featuredRunMedia": null, "reactionVideos": [], @@ -525754,7 +525405,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15416704, "featuredRunMedia": null, "reactionVideos": [], @@ -525787,7 +525438,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 15416838, "featuredRunMedia": null, "reactionVideos": [], @@ -525825,7 +525476,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 15417387, "featuredRunMedia": null, "reactionVideos": [], @@ -525863,7 +525514,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 15417391, "featuredRunMedia": null, "reactionVideos": [], @@ -525896,7 +525547,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15419080, "featuredRunMedia": null, "reactionVideos": [], @@ -525929,7 +525580,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 15419485, "featuredRunMedia": null, "reactionVideos": [], @@ -525962,7 +525613,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 15419940, "featuredRunMedia": null, "reactionVideos": [], @@ -526000,7 +525651,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 15420348, "featuredRunMedia": null, "reactionVideos": [], @@ -526028,7 +525679,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 15423200, "featuredRunMedia": null, "reactionVideos": [], @@ -526050,7 +525701,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15424905, "featuredRunMedia": null, "reactionVideos": [], @@ -526083,7 +525734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15425114, "featuredRunMedia": null, "reactionVideos": [], @@ -526111,7 +525762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 15426653, "featuredRunMedia": null, "reactionVideos": [], @@ -526139,7 +525790,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 15427079, "featuredRunMedia": null, "reactionVideos": [], @@ -526172,7 +525823,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 15427180, "featuredRunMedia": null, "reactionVideos": [], @@ -526210,7 +525861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "2243", "time": 15428539, "featuredRunMedia": null, "reactionVideos": [], @@ -526248,7 +525899,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 15429729, "featuredRunMedia": null, "reactionVideos": [], @@ -526276,7 +525927,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15431742, "featuredRunMedia": null, "reactionVideos": [], @@ -526304,7 +525955,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15435821, "featuredRunMedia": null, "reactionVideos": [], @@ -526337,7 +525988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 15436188, "featuredRunMedia": null, "reactionVideos": [], @@ -526375,7 +526026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 15438327, "featuredRunMedia": null, "reactionVideos": [], @@ -526413,7 +526064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 15438392, "featuredRunMedia": null, "reactionVideos": [], @@ -526441,7 +526092,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15439847, "featuredRunMedia": null, "reactionVideos": [], @@ -526474,7 +526125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 15440703, "featuredRunMedia": null, "reactionVideos": [], @@ -526507,7 +526158,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15440784, "featuredRunMedia": null, "reactionVideos": [], @@ -526535,7 +526186,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 15444887, "featuredRunMedia": null, "reactionVideos": [], @@ -526568,7 +526219,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 15445348, "featuredRunMedia": null, "reactionVideos": [], @@ -526606,7 +526257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15448183, "featuredRunMedia": null, "reactionVideos": [], @@ -526634,7 +526285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 15448959, "featuredRunMedia": null, "reactionVideos": [], @@ -526672,7 +526323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 15449944, "featuredRunMedia": null, "reactionVideos": [], @@ -526700,7 +526351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 15453238, "featuredRunMedia": null, "reactionVideos": [], @@ -526733,7 +526384,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 15455889, "featuredRunMedia": null, "reactionVideos": [], @@ -526771,7 +526422,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 15456161, "featuredRunMedia": null, "reactionVideos": [], @@ -526809,7 +526460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 15456204, "featuredRunMedia": null, "reactionVideos": [], @@ -526837,7 +526488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 15457443, "featuredRunMedia": null, "reactionVideos": [], @@ -526875,7 +526526,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 150, + "teamId": "3247", "time": 15457786, "featuredRunMedia": null, "reactionVideos": [], @@ -526903,7 +526554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15458056, "featuredRunMedia": null, "reactionVideos": [], @@ -526931,7 +526582,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 99, + "teamId": "2248", "time": 15460023, "featuredRunMedia": null, "reactionVideos": [], @@ -526969,7 +526620,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 154, + "teamId": "1148", "time": 15461800, "featuredRunMedia": null, "reactionVideos": [], @@ -527007,7 +526658,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15461857, "featuredRunMedia": null, "reactionVideos": [], @@ -527035,7 +526686,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15462327, "featuredRunMedia": null, "reactionVideos": [], @@ -527068,7 +526719,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 15465816, "featuredRunMedia": null, "reactionVideos": [], @@ -527101,7 +526752,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 15466587, "featuredRunMedia": null, "reactionVideos": [], @@ -527139,7 +526790,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 15466820, "featuredRunMedia": null, "reactionVideos": [], @@ -527167,7 +526818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 15467098, "featuredRunMedia": null, "reactionVideos": [], @@ -527205,7 +526856,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 15468192, "featuredRunMedia": null, "reactionVideos": [], @@ -527238,7 +526889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 15468243, "featuredRunMedia": null, "reactionVideos": [], @@ -527271,7 +526922,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 15470486, "featuredRunMedia": null, "reactionVideos": [], @@ -527304,7 +526955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15472009, "featuredRunMedia": null, "reactionVideos": [], @@ -527342,7 +526993,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 15472556, "featuredRunMedia": null, "reactionVideos": [], @@ -527375,7 +527026,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 15473671, "featuredRunMedia": null, "reactionVideos": [], @@ -527408,7 +527059,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "2551", "time": 15475720, "featuredRunMedia": null, "reactionVideos": [], @@ -527446,7 +527097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 15475920, "featuredRunMedia": null, "reactionVideos": [], @@ -527479,7 +527130,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 15478392, "featuredRunMedia": null, "reactionVideos": [], @@ -527512,7 +527163,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15481046, "featuredRunMedia": null, "reactionVideos": [], @@ -527540,7 +527191,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 15481223, "featuredRunMedia": null, "reactionVideos": [], @@ -527562,7 +527213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15483699, "featuredRunMedia": null, "reactionVideos": [], @@ -527595,7 +527246,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15485342, "featuredRunMedia": null, "reactionVideos": [], @@ -527633,7 +527284,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 15485686, "featuredRunMedia": null, "reactionVideos": [], @@ -527666,7 +527317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15486380, "featuredRunMedia": null, "reactionVideos": [], @@ -527694,7 +527345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "2244", "time": 15486471, "featuredRunMedia": null, "reactionVideos": [], @@ -527727,7 +527378,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 15489002, "featuredRunMedia": null, "reactionVideos": [], @@ -527765,7 +527416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 15490085, "featuredRunMedia": null, "reactionVideos": [], @@ -527803,7 +527454,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15490822, "featuredRunMedia": null, "reactionVideos": [], @@ -527841,7 +527492,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 15490856, "featuredRunMedia": null, "reactionVideos": [], @@ -527879,7 +527530,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 15494341, "featuredRunMedia": null, "reactionVideos": [], @@ -527907,7 +527558,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15497848, "featuredRunMedia": null, "reactionVideos": [], @@ -527945,7 +527596,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 15497861, "featuredRunMedia": null, "reactionVideos": [], @@ -527973,7 +527624,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 15498446, "featuredRunMedia": null, "reactionVideos": [], @@ -528006,7 +527657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 15498527, "featuredRunMedia": null, "reactionVideos": [], @@ -528039,7 +527690,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15499998, "featuredRunMedia": null, "reactionVideos": [], @@ -528077,7 +527728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 15502907, "featuredRunMedia": null, "reactionVideos": [], @@ -528110,7 +527761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 130, + "teamId": "2043", "time": 15502953, "featuredRunMedia": null, "reactionVideos": [], @@ -528148,7 +527799,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15505095, "featuredRunMedia": null, "reactionVideos": [], @@ -528186,7 +527837,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 15507899, "featuredRunMedia": null, "reactionVideos": [], @@ -528219,7 +527870,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 15509597, "featuredRunMedia": null, "reactionVideos": [], @@ -528247,7 +527898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 15511345, "featuredRunMedia": null, "reactionVideos": [], @@ -528285,7 +527936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 15513542, "featuredRunMedia": null, "reactionVideos": [], @@ -528318,7 +527969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 15513669, "featuredRunMedia": null, "reactionVideos": [], @@ -528346,7 +527997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15516303, "featuredRunMedia": null, "reactionVideos": [], @@ -528374,7 +528025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 15517992, "featuredRunMedia": null, "reactionVideos": [], @@ -528412,7 +528063,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15518618, "featuredRunMedia": null, "reactionVideos": [], @@ -528445,7 +528096,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15522571, "featuredRunMedia": null, "reactionVideos": [], @@ -528483,7 +528134,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 264, + "teamId": "2651", "time": 15522586, "featuredRunMedia": null, "reactionVideos": [], @@ -528521,7 +528172,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15522962, "featuredRunMedia": null, "reactionVideos": [], @@ -528549,7 +528200,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 15523273, "featuredRunMedia": null, "reactionVideos": [], @@ -528582,7 +528233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 15527702, "featuredRunMedia": null, "reactionVideos": [], @@ -528620,7 +528271,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 15529269, "featuredRunMedia": null, "reactionVideos": [], @@ -528658,7 +528309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 15530536, "featuredRunMedia": null, "reactionVideos": [], @@ -528696,7 +528347,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 15530714, "featuredRunMedia": null, "reactionVideos": [], @@ -528734,7 +528385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15531072, "featuredRunMedia": null, "reactionVideos": [], @@ -528772,7 +528423,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 15531725, "featuredRunMedia": null, "reactionVideos": [], @@ -528805,7 +528456,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 15532331, "featuredRunMedia": null, "reactionVideos": [], @@ -528843,7 +528494,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 15532574, "featuredRunMedia": null, "reactionVideos": [], @@ -528881,7 +528532,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 15532645, "featuredRunMedia": null, "reactionVideos": [], @@ -528914,7 +528565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 15533763, "featuredRunMedia": null, "reactionVideos": [], @@ -528947,7 +528598,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 15535263, "featuredRunMedia": null, "reactionVideos": [], @@ -528980,7 +528631,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 188, + "teamId": "2451", "time": 15536456, "featuredRunMedia": null, "reactionVideos": [], @@ -529018,7 +528669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 116, + "teamId": "1956", "time": 15536670, "featuredRunMedia": null, "reactionVideos": [], @@ -529051,7 +528702,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 15537296, "featuredRunMedia": null, "reactionVideos": [], @@ -529084,7 +528735,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 15540404, "featuredRunMedia": null, "reactionVideos": [], @@ -529122,7 +528773,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15547924, "featuredRunMedia": null, "reactionVideos": [], @@ -529160,7 +528811,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 15548164, "featuredRunMedia": null, "reactionVideos": [], @@ -529198,7 +528849,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 15550841, "featuredRunMedia": null, "reactionVideos": [], @@ -529226,7 +528877,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15551718, "featuredRunMedia": null, "reactionVideos": [], @@ -529254,7 +528905,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15553434, "featuredRunMedia": null, "reactionVideos": [], @@ -529287,7 +528938,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "1653", "time": 15555301, "featuredRunMedia": null, "reactionVideos": [], @@ -529320,7 +528971,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 15556241, "featuredRunMedia": null, "reactionVideos": [], @@ -529353,7 +529004,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 15557719, "featuredRunMedia": null, "reactionVideos": [], @@ -529381,7 +529032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 15560840, "featuredRunMedia": null, "reactionVideos": [], @@ -529414,7 +529065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 15560841, "featuredRunMedia": null, "reactionVideos": [], @@ -529452,7 +529103,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15563172, "featuredRunMedia": null, "reactionVideos": [], @@ -529490,7 +529141,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 15563976, "featuredRunMedia": null, "reactionVideos": [], @@ -529518,7 +529169,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15565953, "featuredRunMedia": null, "reactionVideos": [], @@ -529551,7 +529202,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15566222, "featuredRunMedia": null, "reactionVideos": [], @@ -529589,7 +529240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15566236, "featuredRunMedia": null, "reactionVideos": [], @@ -529622,7 +529273,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15567908, "featuredRunMedia": null, "reactionVideos": [], @@ -529660,7 +529311,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 15568035, "featuredRunMedia": null, "reactionVideos": [], @@ -529698,7 +529349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15568278, "featuredRunMedia": null, "reactionVideos": [], @@ -529726,7 +529377,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 15568414, "featuredRunMedia": null, "reactionVideos": [], @@ -529764,7 +529415,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 15568750, "featuredRunMedia": null, "reactionVideos": [], @@ -529797,7 +529448,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 55, + "teamId": "2350", "time": 15569617, "featuredRunMedia": null, "reactionVideos": [], @@ -529825,7 +529476,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 15573665, "featuredRunMedia": null, "reactionVideos": [], @@ -529853,7 +529504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15574604, "featuredRunMedia": null, "reactionVideos": [], @@ -529891,7 +529542,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15574864, "featuredRunMedia": null, "reactionVideos": [], @@ -529929,7 +529580,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 15575852, "featuredRunMedia": null, "reactionVideos": [], @@ -529957,7 +529608,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15575887, "featuredRunMedia": null, "reactionVideos": [], @@ -529990,7 +529641,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 15578592, "featuredRunMedia": null, "reactionVideos": [], @@ -530023,7 +529674,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15578959, "featuredRunMedia": null, "reactionVideos": [], @@ -530061,7 +529712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 15580028, "featuredRunMedia": null, "reactionVideos": [], @@ -530099,7 +529750,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 62, + "teamId": "2049", "time": 15580169, "featuredRunMedia": null, "reactionVideos": [], @@ -530127,7 +529778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15582006, "featuredRunMedia": null, "reactionVideos": [], @@ -530155,7 +529806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 15584958, "featuredRunMedia": null, "reactionVideos": [], @@ -530183,7 +529834,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 15585025, "featuredRunMedia": null, "reactionVideos": [], @@ -530221,7 +529872,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 71, + "teamId": "1751", "time": 15587657, "featuredRunMedia": null, "reactionVideos": [], @@ -530254,7 +529905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 15592532, "featuredRunMedia": null, "reactionVideos": [], @@ -530292,7 +529943,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 324, + "teamId": "2653", "time": 15593814, "featuredRunMedia": null, "reactionVideos": [], @@ -530325,7 +529976,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 15595067, "featuredRunMedia": null, "reactionVideos": [], @@ -530358,7 +530009,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 15596379, "featuredRunMedia": null, "reactionVideos": [], @@ -530391,7 +530042,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 15599773, "featuredRunMedia": null, "reactionVideos": [], @@ -530429,7 +530080,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 15600159, "featuredRunMedia": null, "reactionVideos": [], @@ -530467,7 +530118,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 15601085, "featuredRunMedia": null, "reactionVideos": [], @@ -530505,7 +530156,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 15601255, "featuredRunMedia": null, "reactionVideos": [], @@ -530538,7 +530189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 15602123, "featuredRunMedia": null, "reactionVideos": [], @@ -530566,7 +530217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15603607, "featuredRunMedia": null, "reactionVideos": [], @@ -530604,7 +530255,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 15604998, "featuredRunMedia": null, "reactionVideos": [], @@ -530632,7 +530283,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 15605275, "featuredRunMedia": null, "reactionVideos": [], @@ -530660,7 +530311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15606296, "featuredRunMedia": null, "reactionVideos": [], @@ -530693,7 +530344,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 15607176, "featuredRunMedia": null, "reactionVideos": [], @@ -530731,7 +530382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 15608347, "featuredRunMedia": null, "reactionVideos": [], @@ -530764,7 +530415,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 15608368, "featuredRunMedia": null, "reactionVideos": [], @@ -530786,7 +530437,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 15609949, "featuredRunMedia": null, "reactionVideos": [], @@ -530824,7 +530475,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15612086, "featuredRunMedia": null, "reactionVideos": [], @@ -530862,7 +530513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15612745, "featuredRunMedia": null, "reactionVideos": [], @@ -530900,7 +530551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 15613231, "featuredRunMedia": null, "reactionVideos": [], @@ -530928,7 +530579,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 15618489, "featuredRunMedia": null, "reactionVideos": [], @@ -530961,7 +530612,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 15619097, "featuredRunMedia": null, "reactionVideos": [], @@ -530994,7 +530645,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15619208, "featuredRunMedia": null, "reactionVideos": [], @@ -531022,7 +530673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15619465, "featuredRunMedia": null, "reactionVideos": [], @@ -531044,7 +530695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15620816, "featuredRunMedia": null, "reactionVideos": [], @@ -531077,7 +530728,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15620878, "featuredRunMedia": null, "reactionVideos": [], @@ -531110,7 +530761,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 15622449, "featuredRunMedia": null, "reactionVideos": [], @@ -531143,7 +530794,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 15624507, "featuredRunMedia": null, "reactionVideos": [], @@ -531181,7 +530832,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 15624920, "featuredRunMedia": null, "reactionVideos": [], @@ -531214,7 +530865,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 15626598, "featuredRunMedia": null, "reactionVideos": [], @@ -531252,7 +530903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 15627724, "featuredRunMedia": null, "reactionVideos": [], @@ -531285,7 +530936,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 15628249, "featuredRunMedia": null, "reactionVideos": [], @@ -531318,7 +530969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "2551", "time": 15629269, "featuredRunMedia": null, "reactionVideos": [], @@ -531351,7 +531002,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15630894, "featuredRunMedia": null, "reactionVideos": [], @@ -531379,7 +531030,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 15631413, "featuredRunMedia": null, "reactionVideos": [], @@ -531407,7 +531058,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 323, + "teamId": "1652", "time": 15633436, "featuredRunMedia": null, "reactionVideos": [], @@ -531445,7 +531096,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 15633790, "featuredRunMedia": null, "reactionVideos": [], @@ -531483,7 +531134,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15634762, "featuredRunMedia": null, "reactionVideos": [], @@ -531511,7 +531162,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15636308, "featuredRunMedia": null, "reactionVideos": [], @@ -531539,7 +531190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15636444, "featuredRunMedia": null, "reactionVideos": [], @@ -531577,7 +531228,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 15637187, "featuredRunMedia": null, "reactionVideos": [], @@ -531615,7 +531266,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 15637485, "featuredRunMedia": null, "reactionVideos": [], @@ -531643,7 +531294,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 15637530, "featuredRunMedia": null, "reactionVideos": [], @@ -531676,7 +531327,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 15639107, "featuredRunMedia": null, "reactionVideos": [], @@ -531709,7 +531360,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 15640176, "featuredRunMedia": null, "reactionVideos": [], @@ -531747,7 +531398,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 15640876, "featuredRunMedia": null, "reactionVideos": [], @@ -531785,7 +531436,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 15640882, "featuredRunMedia": null, "reactionVideos": [], @@ -531823,7 +531474,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 15641419, "featuredRunMedia": null, "reactionVideos": [], @@ -531856,7 +531507,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 15641731, "featuredRunMedia": null, "reactionVideos": [], @@ -531889,7 +531540,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 15641766, "featuredRunMedia": null, "reactionVideos": [], @@ -531927,7 +531578,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 15641788, "featuredRunMedia": null, "reactionVideos": [], @@ -531965,7 +531616,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15646137, "featuredRunMedia": null, "reactionVideos": [], @@ -532003,7 +531654,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15650595, "featuredRunMedia": null, "reactionVideos": [], @@ -532036,7 +531687,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15651063, "featuredRunMedia": null, "reactionVideos": [], @@ -532062,7 +531713,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 15651225, "featuredRunMedia": null, "reactionVideos": [], @@ -532095,7 +531746,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 15651952, "featuredRunMedia": null, "reactionVideos": [], @@ -532128,7 +531779,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15653122, "featuredRunMedia": null, "reactionVideos": [], @@ -532156,7 +531807,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15653735, "featuredRunMedia": null, "reactionVideos": [], @@ -532194,7 +531845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 15654675, "featuredRunMedia": null, "reactionVideos": [], @@ -532232,7 +531883,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 15655850, "featuredRunMedia": null, "reactionVideos": [], @@ -532265,7 +531916,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 15657451, "featuredRunMedia": null, "reactionVideos": [], @@ -532303,7 +531954,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 246, + "teamId": "3244", "time": 15658052, "featuredRunMedia": null, "reactionVideos": [], @@ -532336,7 +531987,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 15658514, "featuredRunMedia": null, "reactionVideos": [], @@ -532374,7 +532025,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15658792, "featuredRunMedia": null, "reactionVideos": [], @@ -532407,7 +532058,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 15660726, "featuredRunMedia": null, "reactionVideos": [], @@ -532440,7 +532091,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 15661137, "featuredRunMedia": null, "reactionVideos": [], @@ -532473,7 +532124,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15663980, "featuredRunMedia": null, "reactionVideos": [], @@ -532511,7 +532162,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 15664034, "featuredRunMedia": null, "reactionVideos": [], @@ -532549,7 +532200,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 15667613, "featuredRunMedia": null, "reactionVideos": [], @@ -532577,7 +532228,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 15668471, "featuredRunMedia": null, "reactionVideos": [], @@ -532610,7 +532261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15670273, "featuredRunMedia": null, "reactionVideos": [], @@ -532648,7 +532299,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 15670529, "featuredRunMedia": null, "reactionVideos": [], @@ -532676,7 +532327,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15671150, "featuredRunMedia": null, "reactionVideos": [], @@ -532709,7 +532360,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15671430, "featuredRunMedia": null, "reactionVideos": [], @@ -532747,7 +532398,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "2243", "time": 15674890, "featuredRunMedia": null, "reactionVideos": [], @@ -532785,7 +532436,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 15675197, "featuredRunMedia": null, "reactionVideos": [], @@ -532813,7 +532464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 15676049, "featuredRunMedia": null, "reactionVideos": [], @@ -532851,7 +532502,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 15677682, "featuredRunMedia": null, "reactionVideos": [], @@ -532879,7 +532530,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15678286, "featuredRunMedia": null, "reactionVideos": [], @@ -532917,7 +532568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 15678949, "featuredRunMedia": null, "reactionVideos": [], @@ -532950,7 +532601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15685727, "featuredRunMedia": null, "reactionVideos": [], @@ -532978,7 +532629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 15686441, "featuredRunMedia": null, "reactionVideos": [], @@ -533006,7 +532657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15687154, "featuredRunMedia": null, "reactionVideos": [], @@ -533034,7 +532685,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15688426, "featuredRunMedia": null, "reactionVideos": [], @@ -533072,7 +532723,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 265, + "teamId": "1842", "time": 15688978, "featuredRunMedia": null, "reactionVideos": [], @@ -533110,7 +532761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15689096, "featuredRunMedia": null, "reactionVideos": [], @@ -533138,7 +532789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15689670, "featuredRunMedia": null, "reactionVideos": [], @@ -533166,7 +532817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15690946, "featuredRunMedia": null, "reactionVideos": [], @@ -533199,7 +532850,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 15692146, "featuredRunMedia": null, "reactionVideos": [], @@ -533227,7 +532878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15692693, "featuredRunMedia": null, "reactionVideos": [], @@ -533255,7 +532906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15695083, "featuredRunMedia": null, "reactionVideos": [], @@ -533283,7 +532934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15695126, "featuredRunMedia": null, "reactionVideos": [], @@ -533321,7 +532972,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 15696453, "featuredRunMedia": null, "reactionVideos": [], @@ -533354,7 +533005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 15696635, "featuredRunMedia": null, "reactionVideos": [], @@ -533382,7 +533033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 15698291, "featuredRunMedia": null, "reactionVideos": [], @@ -533415,7 +533066,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15699585, "featuredRunMedia": null, "reactionVideos": [], @@ -533443,7 +533094,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15701804, "featuredRunMedia": null, "reactionVideos": [], @@ -533471,7 +533122,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 15702698, "featuredRunMedia": null, "reactionVideos": [], @@ -533509,7 +533160,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15703114, "featuredRunMedia": null, "reactionVideos": [], @@ -533542,7 +533193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 15703337, "featuredRunMedia": null, "reactionVideos": [], @@ -533564,7 +533215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 15704832, "featuredRunMedia": null, "reactionVideos": [], @@ -533592,7 +533243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15705079, "featuredRunMedia": null, "reactionVideos": [], @@ -533620,7 +533271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 15705232, "featuredRunMedia": null, "reactionVideos": [], @@ -533658,7 +533309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 15705386, "featuredRunMedia": null, "reactionVideos": [], @@ -533686,7 +533337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15706940, "featuredRunMedia": null, "reactionVideos": [], @@ -533708,7 +533359,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 15707601, "featuredRunMedia": null, "reactionVideos": [], @@ -533746,7 +533397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15710063, "featuredRunMedia": null, "reactionVideos": [], @@ -533779,7 +533430,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15710173, "featuredRunMedia": null, "reactionVideos": [], @@ -533817,7 +533468,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 15716276, "featuredRunMedia": null, "reactionVideos": [], @@ -533850,7 +533501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15717476, "featuredRunMedia": null, "reactionVideos": [], @@ -533878,7 +533529,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 15717485, "featuredRunMedia": null, "reactionVideos": [], @@ -533906,7 +533557,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 15718460, "featuredRunMedia": null, "reactionVideos": [], @@ -533928,7 +533579,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15719054, "featuredRunMedia": null, "reactionVideos": [], @@ -533966,7 +533617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "2644", "time": 15720262, "featuredRunMedia": null, "reactionVideos": [], @@ -534004,7 +533655,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15720495, "featuredRunMedia": null, "reactionVideos": [], @@ -534042,7 +533693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 15721150, "featuredRunMedia": null, "reactionVideos": [], @@ -534080,7 +533731,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 15725223, "featuredRunMedia": null, "reactionVideos": [], @@ -534108,7 +533759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15726297, "featuredRunMedia": null, "reactionVideos": [], @@ -534141,7 +533792,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 15727033, "featuredRunMedia": null, "reactionVideos": [], @@ -534179,7 +533830,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15727136, "featuredRunMedia": null, "reactionVideos": [], @@ -534207,7 +533858,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 15728272, "featuredRunMedia": null, "reactionVideos": [], @@ -534235,7 +533886,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 15728695, "featuredRunMedia": null, "reactionVideos": [], @@ -534263,7 +533914,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 15728785, "featuredRunMedia": null, "reactionVideos": [], @@ -534285,7 +533936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 15729073, "featuredRunMedia": null, "reactionVideos": [], @@ -534313,7 +533964,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 15729616, "featuredRunMedia": null, "reactionVideos": [], @@ -534351,7 +534002,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 15730765, "featuredRunMedia": null, "reactionVideos": [], @@ -534384,7 +534035,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15730935, "featuredRunMedia": null, "reactionVideos": [], @@ -534417,7 +534068,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 87, + "teamId": "2551", "time": 15730987, "featuredRunMedia": null, "reactionVideos": [], @@ -534455,7 +534106,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 114, + "teamId": "2243", "time": 15732328, "featuredRunMedia": null, "reactionVideos": [], @@ -534483,7 +534134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 15733642, "featuredRunMedia": null, "reactionVideos": [], @@ -534521,7 +534172,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 15735651, "featuredRunMedia": null, "reactionVideos": [], @@ -534559,7 +534210,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 15736843, "featuredRunMedia": null, "reactionVideos": [], @@ -534587,7 +534238,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 15737705, "featuredRunMedia": null, "reactionVideos": [], @@ -534615,7 +534266,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 15739422, "featuredRunMedia": null, "reactionVideos": [], @@ -534653,7 +534304,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 15741789, "featuredRunMedia": null, "reactionVideos": [], @@ -534691,7 +534342,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 15742365, "featuredRunMedia": null, "reactionVideos": [], @@ -534719,7 +534370,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15742404, "featuredRunMedia": null, "reactionVideos": [], @@ -534757,7 +534408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15743175, "featuredRunMedia": null, "reactionVideos": [], @@ -534785,7 +534436,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15743954, "featuredRunMedia": null, "reactionVideos": [], @@ -534813,7 +534464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15745233, "featuredRunMedia": null, "reactionVideos": [], @@ -534841,7 +534492,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15746730, "featuredRunMedia": null, "reactionVideos": [], @@ -534879,7 +534530,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15746826, "featuredRunMedia": null, "reactionVideos": [], @@ -534917,7 +534568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15748185, "featuredRunMedia": null, "reactionVideos": [], @@ -534950,7 +534601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15748282, "featuredRunMedia": null, "reactionVideos": [], @@ -534978,7 +534629,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15748546, "featuredRunMedia": null, "reactionVideos": [], @@ -535006,7 +534657,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15749866, "featuredRunMedia": null, "reactionVideos": [], @@ -535044,7 +534695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 15750422, "featuredRunMedia": null, "reactionVideos": [], @@ -535077,7 +534728,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 15750566, "featuredRunMedia": null, "reactionVideos": [], @@ -535105,7 +534756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15751323, "featuredRunMedia": null, "reactionVideos": [], @@ -535143,7 +534794,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 15751612, "featuredRunMedia": null, "reactionVideos": [], @@ -535176,7 +534827,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 15751629, "featuredRunMedia": null, "reactionVideos": [], @@ -535214,7 +534865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15754067, "featuredRunMedia": null, "reactionVideos": [], @@ -535252,7 +534903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 15755039, "featuredRunMedia": null, "reactionVideos": [], @@ -535280,7 +534931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15755610, "featuredRunMedia": null, "reactionVideos": [], @@ -535318,7 +534969,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15755699, "featuredRunMedia": null, "reactionVideos": [], @@ -535346,7 +534997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15757066, "featuredRunMedia": null, "reactionVideos": [], @@ -535379,7 +535030,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 189, + "teamId": "3049", "time": 15757081, "featuredRunMedia": null, "reactionVideos": [], @@ -535412,7 +535063,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15759843, "featuredRunMedia": null, "reactionVideos": [], @@ -535440,7 +535091,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 15760015, "featuredRunMedia": null, "reactionVideos": [], @@ -535468,7 +535119,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 15760996, "featuredRunMedia": null, "reactionVideos": [], @@ -535496,7 +535147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15763915, "featuredRunMedia": null, "reactionVideos": [], @@ -535524,7 +535175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 15767411, "featuredRunMedia": null, "reactionVideos": [], @@ -535557,7 +535208,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 15767611, "featuredRunMedia": null, "reactionVideos": [], @@ -535590,7 +535241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15768357, "featuredRunMedia": null, "reactionVideos": [], @@ -535623,7 +535274,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 15768625, "featuredRunMedia": null, "reactionVideos": [], @@ -535651,7 +535302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 15771408, "featuredRunMedia": null, "reactionVideos": [], @@ -535679,7 +535330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "2455", "time": 15773371, "featuredRunMedia": null, "reactionVideos": [], @@ -535707,7 +535358,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 15773485, "featuredRunMedia": null, "reactionVideos": [], @@ -535735,7 +535386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 269, + "teamId": "2244", "time": 15773706, "featuredRunMedia": null, "reactionVideos": [], @@ -535773,7 +535424,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 15774138, "featuredRunMedia": null, "reactionVideos": [], @@ -535811,7 +535462,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15774670, "featuredRunMedia": null, "reactionVideos": [], @@ -535844,7 +535495,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 15778245, "featuredRunMedia": null, "reactionVideos": [], @@ -535877,7 +535528,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 15778765, "featuredRunMedia": null, "reactionVideos": [], @@ -535910,7 +535561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 15781113, "featuredRunMedia": null, "reactionVideos": [], @@ -535943,7 +535594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15785183, "featuredRunMedia": null, "reactionVideos": [], @@ -535981,7 +535632,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15785294, "featuredRunMedia": null, "reactionVideos": [], @@ -536014,7 +535665,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15785358, "featuredRunMedia": null, "reactionVideos": [], @@ -536052,7 +535703,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 290, + "teamId": "2845", "time": 15785635, "featuredRunMedia": null, "reactionVideos": [], @@ -536090,7 +535741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 15785787, "featuredRunMedia": null, "reactionVideos": [], @@ -536128,7 +535779,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 99, + "teamId": "2248", "time": 15787356, "featuredRunMedia": null, "reactionVideos": [], @@ -536156,7 +535807,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 15789118, "featuredRunMedia": null, "reactionVideos": [], @@ -536184,7 +535835,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15789150, "featuredRunMedia": null, "reactionVideos": [], @@ -536210,7 +535861,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 15789384, "featuredRunMedia": null, "reactionVideos": [], @@ -536238,7 +535889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "1943", "time": 15790722, "featuredRunMedia": null, "reactionVideos": [], @@ -536271,7 +535922,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15791236, "featuredRunMedia": null, "reactionVideos": [], @@ -536299,7 +535950,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15792039, "featuredRunMedia": null, "reactionVideos": [], @@ -536327,7 +535978,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 15792063, "featuredRunMedia": null, "reactionVideos": [], @@ -536360,7 +536011,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 75, + "teamId": "2443", "time": 15792981, "featuredRunMedia": null, "reactionVideos": [], @@ -536398,7 +536049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15793585, "featuredRunMedia": null, "reactionVideos": [], @@ -536436,7 +536087,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 15794071, "featuredRunMedia": null, "reactionVideos": [], @@ -536464,7 +536115,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15796038, "featuredRunMedia": null, "reactionVideos": [], @@ -536502,7 +536153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 15796906, "featuredRunMedia": null, "reactionVideos": [], @@ -536535,7 +536186,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 90, + "teamId": "2850", "time": 15796991, "featuredRunMedia": null, "reactionVideos": [], @@ -536573,7 +536224,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 323, + "teamId": "1652", "time": 15797231, "featuredRunMedia": null, "reactionVideos": [], @@ -536595,7 +536246,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15798198, "featuredRunMedia": null, "reactionVideos": [], @@ -536623,7 +536274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15799861, "featuredRunMedia": null, "reactionVideos": [], @@ -536661,7 +536312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "1152", "time": 15800196, "featuredRunMedia": null, "reactionVideos": [], @@ -536687,7 +536338,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 15800373, "featuredRunMedia": null, "reactionVideos": [], @@ -536725,7 +536376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 15803470, "featuredRunMedia": null, "reactionVideos": [], @@ -536747,7 +536398,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 15804626, "featuredRunMedia": null, "reactionVideos": [], @@ -536775,7 +536426,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 15804733, "featuredRunMedia": null, "reactionVideos": [], @@ -536813,7 +536464,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15806204, "featuredRunMedia": null, "reactionVideos": [], @@ -536846,7 +536497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 170, + "teamId": "2844", "time": 15808071, "featuredRunMedia": null, "reactionVideos": [], @@ -536874,7 +536525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15808071, "featuredRunMedia": null, "reactionVideos": [], @@ -536907,7 +536558,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 15808337, "featuredRunMedia": null, "reactionVideos": [], @@ -536945,7 +536596,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 15809602, "featuredRunMedia": null, "reactionVideos": [], @@ -536978,7 +536629,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 164, + "teamId": "1453", "time": 15810359, "featuredRunMedia": null, "reactionVideos": [], @@ -537016,7 +536667,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15811383, "featuredRunMedia": null, "reactionVideos": [], @@ -537049,7 +536700,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 15812911, "featuredRunMedia": null, "reactionVideos": [], @@ -537087,7 +536738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 15813205, "featuredRunMedia": null, "reactionVideos": [], @@ -537115,7 +536766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 15814452, "featuredRunMedia": null, "reactionVideos": [], @@ -537153,7 +536804,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 15814783, "featuredRunMedia": null, "reactionVideos": [], @@ -537186,7 +536837,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 15815983, "featuredRunMedia": null, "reactionVideos": [], @@ -537219,7 +536870,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15816667, "featuredRunMedia": null, "reactionVideos": [], @@ -537252,7 +536903,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 15816879, "featuredRunMedia": null, "reactionVideos": [], @@ -537285,7 +536936,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 15818077, "featuredRunMedia": null, "reactionVideos": [], @@ -537318,7 +536969,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 15818488, "featuredRunMedia": null, "reactionVideos": [], @@ -537346,7 +536997,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15818791, "featuredRunMedia": null, "reactionVideos": [], @@ -537374,7 +537025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 15819240, "featuredRunMedia": null, "reactionVideos": [], @@ -537402,7 +537053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15822461, "featuredRunMedia": null, "reactionVideos": [], @@ -537435,7 +537086,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 15824029, "featuredRunMedia": null, "reactionVideos": [], @@ -537461,7 +537112,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 15826185, "featuredRunMedia": null, "reactionVideos": [], @@ -537499,7 +537150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "2644", "time": 15826410, "featuredRunMedia": null, "reactionVideos": [], @@ -537537,7 +537188,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 187, + "teamId": "2444", "time": 15827110, "featuredRunMedia": null, "reactionVideos": [], @@ -537565,7 +537216,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 15827822, "featuredRunMedia": null, "reactionVideos": [], @@ -537603,7 +537254,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 293, + "teamId": "3153", "time": 15828443, "featuredRunMedia": null, "reactionVideos": [], @@ -537641,7 +537292,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 15828517, "featuredRunMedia": null, "reactionVideos": [], @@ -537674,7 +537325,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15828693, "featuredRunMedia": null, "reactionVideos": [], @@ -537707,7 +537358,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 15829245, "featuredRunMedia": null, "reactionVideos": [], @@ -537735,7 +537386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 15831705, "featuredRunMedia": null, "reactionVideos": [], @@ -537763,7 +537414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15833409, "featuredRunMedia": null, "reactionVideos": [], @@ -537796,7 +537447,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 15833512, "featuredRunMedia": null, "reactionVideos": [], @@ -537834,7 +537485,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15833726, "featuredRunMedia": null, "reactionVideos": [], @@ -537862,7 +537513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 15833978, "featuredRunMedia": null, "reactionVideos": [], @@ -537900,7 +537551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 33, + "teamId": "2849", "time": 15835653, "featuredRunMedia": null, "reactionVideos": [], @@ -537938,7 +537589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15838649, "featuredRunMedia": null, "reactionVideos": [], @@ -537966,7 +537617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15838968, "featuredRunMedia": null, "reactionVideos": [], @@ -537988,7 +537639,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 15839640, "featuredRunMedia": null, "reactionVideos": [], @@ -538016,7 +537667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15839782, "featuredRunMedia": null, "reactionVideos": [], @@ -538054,7 +537705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 40, + "teamId": "1748", "time": 15840240, "featuredRunMedia": null, "reactionVideos": [], @@ -538087,7 +537738,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 171, + "teamId": "1543", "time": 15840691, "featuredRunMedia": null, "reactionVideos": [], @@ -538115,7 +537766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 15842385, "featuredRunMedia": null, "reactionVideos": [], @@ -538143,7 +537794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 15842702, "featuredRunMedia": null, "reactionVideos": [], @@ -538176,7 +537827,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15842809, "featuredRunMedia": null, "reactionVideos": [], @@ -538214,7 +537865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15844628, "featuredRunMedia": null, "reactionVideos": [], @@ -538242,7 +537893,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 15845101, "featuredRunMedia": null, "reactionVideos": [], @@ -538280,7 +537931,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 15845842, "featuredRunMedia": null, "reactionVideos": [], @@ -538313,7 +537964,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15845908, "featuredRunMedia": null, "reactionVideos": [], @@ -538335,7 +537986,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 15846039, "featuredRunMedia": null, "reactionVideos": [], @@ -538361,7 +538012,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 15847556, "featuredRunMedia": null, "reactionVideos": [], @@ -538399,7 +538050,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15848403, "featuredRunMedia": null, "reactionVideos": [], @@ -538427,7 +538078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 15851182, "featuredRunMedia": null, "reactionVideos": [], @@ -538455,7 +538106,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 247, + "teamId": "2052", "time": 15851603, "featuredRunMedia": null, "reactionVideos": [], @@ -538493,7 +538144,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15853306, "featuredRunMedia": null, "reactionVideos": [], @@ -538531,7 +538182,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15853900, "featuredRunMedia": null, "reactionVideos": [], @@ -538559,7 +538210,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 15854323, "featuredRunMedia": null, "reactionVideos": [], @@ -538592,7 +538243,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "1250", "time": 15855193, "featuredRunMedia": null, "reactionVideos": [], @@ -538630,7 +538281,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 15855854, "featuredRunMedia": null, "reactionVideos": [], @@ -538658,7 +538309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 15858371, "featuredRunMedia": null, "reactionVideos": [], @@ -538686,7 +538337,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15859092, "featuredRunMedia": null, "reactionVideos": [], @@ -538719,7 +538370,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 15860585, "featuredRunMedia": null, "reactionVideos": [], @@ -538757,7 +538408,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 209, + "teamId": "2755", "time": 15860714, "featuredRunMedia": null, "reactionVideos": [], @@ -538790,7 +538441,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 15861173, "featuredRunMedia": null, "reactionVideos": [], @@ -538818,7 +538469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 15862150, "featuredRunMedia": null, "reactionVideos": [], @@ -538851,7 +538502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 15863076, "featuredRunMedia": null, "reactionVideos": [], @@ -538879,7 +538530,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15863301, "featuredRunMedia": null, "reactionVideos": [], @@ -538917,7 +538568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 211, + "teamId": "2846", "time": 15863860, "featuredRunMedia": null, "reactionVideos": [], @@ -538945,7 +538596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 15865384, "featuredRunMedia": null, "reactionVideos": [], @@ -538973,7 +538624,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 15866930, "featuredRunMedia": null, "reactionVideos": [], @@ -539011,7 +538662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 15868168, "featuredRunMedia": null, "reactionVideos": [], @@ -539049,7 +538700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 15868650, "featuredRunMedia": null, "reactionVideos": [], @@ -539077,7 +538728,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15869563, "featuredRunMedia": null, "reactionVideos": [], @@ -539115,7 +538766,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 15869845, "featuredRunMedia": null, "reactionVideos": [], @@ -539148,7 +538799,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15870645, "featuredRunMedia": null, "reactionVideos": [], @@ -539176,7 +538827,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 15871184, "featuredRunMedia": null, "reactionVideos": [], @@ -539214,7 +538865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 15872060, "featuredRunMedia": null, "reactionVideos": [], @@ -539252,7 +538903,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 37, + "teamId": "1152", "time": 15873845, "featuredRunMedia": null, "reactionVideos": [], @@ -539280,7 +538931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 15875308, "featuredRunMedia": null, "reactionVideos": [], @@ -539308,7 +538959,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15875828, "featuredRunMedia": null, "reactionVideos": [], @@ -539341,7 +538992,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 15876388, "featuredRunMedia": null, "reactionVideos": [], @@ -539367,7 +539018,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 15876564, "featuredRunMedia": null, "reactionVideos": [], @@ -539405,7 +539056,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 81, + "teamId": "2447", "time": 15876990, "featuredRunMedia": null, "reactionVideos": [], @@ -539438,7 +539089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 15879541, "featuredRunMedia": null, "reactionVideos": [], @@ -539466,7 +539117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 15880804, "featuredRunMedia": null, "reactionVideos": [], @@ -539494,7 +539145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 15882616, "featuredRunMedia": null, "reactionVideos": [], @@ -539532,7 +539183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15883347, "featuredRunMedia": null, "reactionVideos": [], @@ -539570,7 +539221,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 15884219, "featuredRunMedia": null, "reactionVideos": [], @@ -539608,7 +539259,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 58, + "teamId": "3145", "time": 15885924, "featuredRunMedia": null, "reactionVideos": [], @@ -539636,7 +539287,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 15886098, "featuredRunMedia": null, "reactionVideos": [], @@ -539669,7 +539320,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 15887732, "featuredRunMedia": null, "reactionVideos": [], @@ -539702,7 +539353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "2448", "time": 15889135, "featuredRunMedia": null, "reactionVideos": [], @@ -539730,7 +539381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 15891511, "featuredRunMedia": null, "reactionVideos": [], @@ -539763,7 +539414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 15891848, "featuredRunMedia": null, "reactionVideos": [], @@ -539791,7 +539442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 36, + "teamId": "2242", "time": 15893217, "featuredRunMedia": null, "reactionVideos": [], @@ -539819,7 +539470,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15893675, "featuredRunMedia": null, "reactionVideos": [], @@ -539847,7 +539498,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 15895449, "featuredRunMedia": null, "reactionVideos": [], @@ -539875,7 +539526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 123, + "teamId": "2648", "time": 15895696, "featuredRunMedia": null, "reactionVideos": [], @@ -539908,7 +539559,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 15896688, "featuredRunMedia": null, "reactionVideos": [], @@ -539941,7 +539592,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "1250", "time": 15897117, "featuredRunMedia": null, "reactionVideos": [], @@ -539974,7 +539625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 15898913, "featuredRunMedia": null, "reactionVideos": [], @@ -540007,7 +539658,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 15900428, "featuredRunMedia": null, "reactionVideos": [], @@ -540040,7 +539691,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 15900958, "featuredRunMedia": null, "reactionVideos": [], @@ -540068,7 +539719,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15902246, "featuredRunMedia": null, "reactionVideos": [], @@ -540096,7 +539747,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15902505, "featuredRunMedia": null, "reactionVideos": [], @@ -540124,7 +539775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15903221, "featuredRunMedia": null, "reactionVideos": [], @@ -540162,7 +539813,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 15903513, "featuredRunMedia": null, "reactionVideos": [], @@ -540195,7 +539846,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 15906836, "featuredRunMedia": null, "reactionVideos": [], @@ -540223,7 +539874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 15907140, "featuredRunMedia": null, "reactionVideos": [], @@ -540256,7 +539907,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 286, + "teamId": "2546", "time": 15908222, "featuredRunMedia": null, "reactionVideos": [], @@ -540294,7 +539945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 15908355, "featuredRunMedia": null, "reactionVideos": [], @@ -540320,7 +539971,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 15909191, "featuredRunMedia": null, "reactionVideos": [], @@ -540348,7 +539999,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 15909656, "featuredRunMedia": null, "reactionVideos": [], @@ -540381,7 +540032,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 15909714, "featuredRunMedia": null, "reactionVideos": [], @@ -540419,7 +540070,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 15909889, "featuredRunMedia": null, "reactionVideos": [], @@ -540457,7 +540108,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 15910979, "featuredRunMedia": null, "reactionVideos": [], @@ -540490,7 +540141,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 15911662, "featuredRunMedia": null, "reactionVideos": [], @@ -540528,7 +540179,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 15913776, "featuredRunMedia": null, "reactionVideos": [], @@ -540561,7 +540212,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 15913948, "featuredRunMedia": null, "reactionVideos": [], @@ -540594,7 +540245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 15914106, "featuredRunMedia": null, "reactionVideos": [], @@ -540632,7 +540283,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 15916451, "featuredRunMedia": null, "reactionVideos": [], @@ -540660,7 +540311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15917041, "featuredRunMedia": null, "reactionVideos": [], @@ -540698,7 +540349,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 15922248, "featuredRunMedia": null, "reactionVideos": [], @@ -540731,7 +540382,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 167, + "teamId": "1353", "time": 15924909, "featuredRunMedia": null, "reactionVideos": [], @@ -540769,7 +540420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 15925525, "featuredRunMedia": null, "reactionVideos": [], @@ -540797,7 +540448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 15925771, "featuredRunMedia": null, "reactionVideos": [], @@ -540835,7 +540486,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 174, + "teamId": "1445", "time": 15928042, "featuredRunMedia": null, "reactionVideos": [], @@ -540873,7 +540524,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 15929407, "featuredRunMedia": null, "reactionVideos": [], @@ -540906,7 +540557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 15929546, "featuredRunMedia": null, "reactionVideos": [], @@ -540944,7 +540595,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 332, + "teamId": "1153", "time": 15929976, "featuredRunMedia": null, "reactionVideos": [], @@ -540982,7 +540633,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 15930733, "featuredRunMedia": null, "reactionVideos": [], @@ -541015,7 +540666,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 15932453, "featuredRunMedia": null, "reactionVideos": [], @@ -541053,7 +540704,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 15936488, "featuredRunMedia": null, "reactionVideos": [], @@ -541081,7 +540732,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 15936732, "featuredRunMedia": null, "reactionVideos": [], @@ -541109,7 +540760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15938833, "featuredRunMedia": null, "reactionVideos": [], @@ -541147,7 +540798,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 213, + "teamId": "2456", "time": 15940292, "featuredRunMedia": null, "reactionVideos": [], @@ -541180,7 +540831,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 15940703, "featuredRunMedia": null, "reactionVideos": [], @@ -541208,7 +540859,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 15942242, "featuredRunMedia": null, "reactionVideos": [], @@ -541246,7 +540897,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 15942477, "featuredRunMedia": null, "reactionVideos": [], @@ -541279,7 +540930,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 15942850, "featuredRunMedia": null, "reactionVideos": [], @@ -541307,7 +540958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15943528, "featuredRunMedia": null, "reactionVideos": [], @@ -541340,7 +540991,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 291, + "teamId": "3242", "time": 15943897, "featuredRunMedia": null, "reactionVideos": [], @@ -541378,7 +541029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 15946218, "featuredRunMedia": null, "reactionVideos": [], @@ -541411,7 +541062,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 15947768, "featuredRunMedia": null, "reactionVideos": [], @@ -541439,7 +541090,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 15948355, "featuredRunMedia": null, "reactionVideos": [], @@ -541467,7 +541118,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 15948793, "featuredRunMedia": null, "reactionVideos": [], @@ -541495,7 +541146,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 15949979, "featuredRunMedia": null, "reactionVideos": [], @@ -541523,7 +541174,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 15951649, "featuredRunMedia": null, "reactionVideos": [], @@ -541545,7 +541196,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 15952262, "featuredRunMedia": null, "reactionVideos": [], @@ -541578,7 +541229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 15954629, "featuredRunMedia": null, "reactionVideos": [], @@ -541611,7 +541262,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 104, + "teamId": "2754", "time": 15955213, "featuredRunMedia": null, "reactionVideos": [], @@ -541639,7 +541290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 15956047, "featuredRunMedia": null, "reactionVideos": [], @@ -541677,7 +541328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 205, + "teamId": "1455", "time": 15956781, "featuredRunMedia": null, "reactionVideos": [], @@ -541710,7 +541361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 15957951, "featuredRunMedia": null, "reactionVideos": [], @@ -541743,7 +541394,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 15958375, "featuredRunMedia": null, "reactionVideos": [], @@ -541776,7 +541427,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 15958514, "featuredRunMedia": null, "reactionVideos": [], @@ -541814,7 +541465,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 118, + "teamId": "2756", "time": 15958561, "featuredRunMedia": null, "reactionVideos": [], @@ -541842,7 +541493,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 150, + "teamId": "3247", "time": 15960983, "featuredRunMedia": null, "reactionVideos": [], @@ -541870,7 +541521,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 15962348, "featuredRunMedia": null, "reactionVideos": [], @@ -541903,7 +541554,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 233, + "teamId": "2351", "time": 15963100, "featuredRunMedia": null, "reactionVideos": [], @@ -541936,7 +541587,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 15963303, "featuredRunMedia": null, "reactionVideos": [], @@ -541974,7 +541625,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 15966615, "featuredRunMedia": null, "reactionVideos": [], @@ -542012,7 +541663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 15967929, "featuredRunMedia": null, "reactionVideos": [], @@ -542040,7 +541691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 15968797, "featuredRunMedia": null, "reactionVideos": [], @@ -542073,7 +541724,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 15969130, "featuredRunMedia": null, "reactionVideos": [], @@ -542106,7 +541757,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 15969687, "featuredRunMedia": null, "reactionVideos": [], @@ -542139,7 +541790,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 15970241, "featuredRunMedia": null, "reactionVideos": [], @@ -542177,7 +541828,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 68, + "teamId": "2644", "time": 15972669, "featuredRunMedia": null, "reactionVideos": [], @@ -542215,7 +541866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 15973466, "featuredRunMedia": null, "reactionVideos": [], @@ -542243,7 +541894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 263, + "teamId": "2545", "time": 15974045, "featuredRunMedia": null, "reactionVideos": [], @@ -542271,7 +541922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 15976375, "featuredRunMedia": null, "reactionVideos": [], @@ -542304,7 +541955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 15976432, "featuredRunMedia": null, "reactionVideos": [], @@ -542337,7 +541988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 138, + "teamId": "1250", "time": 15978932, "featuredRunMedia": null, "reactionVideos": [], @@ -542370,7 +542021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "2448", "time": 15979731, "featuredRunMedia": null, "reactionVideos": [], @@ -542398,7 +542049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 15980822, "featuredRunMedia": null, "reactionVideos": [], @@ -542431,7 +542082,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 15981060, "featuredRunMedia": null, "reactionVideos": [], @@ -542469,7 +542120,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 15981204, "featuredRunMedia": null, "reactionVideos": [], @@ -542502,7 +542153,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 311, + "teamId": "3055", "time": 15981839, "featuredRunMedia": null, "reactionVideos": [], @@ -542530,7 +542181,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 259, + "teamId": "2946", "time": 15982540, "featuredRunMedia": null, "reactionVideos": [], @@ -542563,7 +542214,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 15984006, "featuredRunMedia": null, "reactionVideos": [], @@ -542591,7 +542242,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 15984569, "featuredRunMedia": null, "reactionVideos": [], @@ -542619,7 +542270,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 15984620, "featuredRunMedia": null, "reactionVideos": [], @@ -542652,7 +542303,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 15985411, "featuredRunMedia": null, "reactionVideos": [], @@ -542690,7 +542341,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 124, + "teamId": "2856", "time": 15985855, "featuredRunMedia": null, "reactionVideos": [], @@ -542723,7 +542374,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 15985862, "featuredRunMedia": null, "reactionVideos": [], @@ -542761,7 +542412,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 15988970, "featuredRunMedia": null, "reactionVideos": [], @@ -542789,7 +542440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 266, + "teamId": "2641", "time": 15989468, "featuredRunMedia": null, "reactionVideos": [], @@ -542817,7 +542468,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 15991662, "featuredRunMedia": null, "reactionVideos": [], @@ -542855,7 +542506,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 15993188, "featuredRunMedia": null, "reactionVideos": [], @@ -542883,7 +542534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 15994000, "featuredRunMedia": null, "reactionVideos": [], @@ -542916,7 +542567,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 15994101, "featuredRunMedia": null, "reactionVideos": [], @@ -542949,7 +542600,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 302, + "teamId": "2147", "time": 16000743, "featuredRunMedia": null, "reactionVideos": [], @@ -542982,7 +542633,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 16001333, "featuredRunMedia": null, "reactionVideos": [], @@ -543020,7 +542671,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 16003173, "featuredRunMedia": null, "reactionVideos": [], @@ -543053,7 +542704,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 16003775, "featuredRunMedia": null, "reactionVideos": [], @@ -543091,7 +542742,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 16005564, "featuredRunMedia": null, "reactionVideos": [], @@ -543119,7 +542770,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 16006171, "featuredRunMedia": null, "reactionVideos": [], @@ -543152,7 +542803,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "2746", "time": 16007441, "featuredRunMedia": null, "reactionVideos": [], @@ -543190,7 +542841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 16008503, "featuredRunMedia": null, "reactionVideos": [], @@ -543228,7 +542879,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16008779, "featuredRunMedia": null, "reactionVideos": [], @@ -543256,7 +542907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 16010157, "featuredRunMedia": null, "reactionVideos": [], @@ -543284,7 +542935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16012415, "featuredRunMedia": null, "reactionVideos": [], @@ -543322,7 +542973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 16014196, "featuredRunMedia": null, "reactionVideos": [], @@ -543355,7 +543006,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 26, + "teamId": "2752", "time": 16014503, "featuredRunMedia": null, "reactionVideos": [], @@ -543383,7 +543034,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 16015824, "featuredRunMedia": null, "reactionVideos": [], @@ -543416,7 +543067,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16019049, "featuredRunMedia": null, "reactionVideos": [], @@ -543444,7 +543095,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 16020269, "featuredRunMedia": null, "reactionVideos": [], @@ -543477,7 +543128,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 16020956, "featuredRunMedia": null, "reactionVideos": [], @@ -543515,7 +543166,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 16021020, "featuredRunMedia": null, "reactionVideos": [], @@ -543543,7 +543194,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "1242", "time": 16022019, "featuredRunMedia": null, "reactionVideos": [], @@ -543571,7 +543222,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 16022381, "featuredRunMedia": null, "reactionVideos": [], @@ -543604,7 +543255,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16022757, "featuredRunMedia": null, "reactionVideos": [], @@ -543632,7 +543283,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16022943, "featuredRunMedia": null, "reactionVideos": [], @@ -543670,7 +543321,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16023440, "featuredRunMedia": null, "reactionVideos": [], @@ -543703,7 +543354,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 16024334, "featuredRunMedia": null, "reactionVideos": [], @@ -543741,7 +543392,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 16025187, "featuredRunMedia": null, "reactionVideos": [], @@ -543769,7 +543420,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16026374, "featuredRunMedia": null, "reactionVideos": [], @@ -543797,7 +543448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 16026656, "featuredRunMedia": null, "reactionVideos": [], @@ -543830,7 +543481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 16029499, "featuredRunMedia": null, "reactionVideos": [], @@ -543868,7 +543519,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 16030804, "featuredRunMedia": null, "reactionVideos": [], @@ -543901,7 +543552,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 16031775, "featuredRunMedia": null, "reactionVideos": [], @@ -543934,7 +543585,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 16032560, "featuredRunMedia": null, "reactionVideos": [], @@ -543967,7 +543618,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16034467, "featuredRunMedia": null, "reactionVideos": [], @@ -544000,7 +543651,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 16036026, "featuredRunMedia": null, "reactionVideos": [], @@ -544038,7 +543689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 16041106, "featuredRunMedia": null, "reactionVideos": [], @@ -544076,7 +543727,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16045472, "featuredRunMedia": null, "reactionVideos": [], @@ -544109,7 +543760,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 16046031, "featuredRunMedia": null, "reactionVideos": [], @@ -544137,7 +543788,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 16048026, "featuredRunMedia": null, "reactionVideos": [], @@ -544175,7 +543826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16050992, "featuredRunMedia": null, "reactionVideos": [], @@ -544203,7 +543854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16051708, "featuredRunMedia": null, "reactionVideos": [], @@ -544236,7 +543887,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 169, + "teamId": "2255", "time": 16052594, "featuredRunMedia": null, "reactionVideos": [], @@ -544264,7 +543915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16053824, "featuredRunMedia": null, "reactionVideos": [], @@ -544292,7 +543943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 16053824, "featuredRunMedia": null, "reactionVideos": [], @@ -544325,7 +543976,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16054823, "featuredRunMedia": null, "reactionVideos": [], @@ -544353,7 +544004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16054999, "featuredRunMedia": null, "reactionVideos": [], @@ -544381,7 +544032,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16055162, "featuredRunMedia": null, "reactionVideos": [], @@ -544414,7 +544065,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 16055163, "featuredRunMedia": null, "reactionVideos": [], @@ -544442,7 +544093,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16056618, "featuredRunMedia": null, "reactionVideos": [], @@ -544470,7 +544121,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16057971, "featuredRunMedia": null, "reactionVideos": [], @@ -544503,7 +544154,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 126, + "teamId": "1741", "time": 16058421, "featuredRunMedia": null, "reactionVideos": [], @@ -544536,7 +544187,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16059063, "featuredRunMedia": null, "reactionVideos": [], @@ -544564,7 +544215,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 16059211, "featuredRunMedia": null, "reactionVideos": [], @@ -544592,7 +544243,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16059523, "featuredRunMedia": null, "reactionVideos": [], @@ -544620,7 +544271,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16060693, "featuredRunMedia": null, "reactionVideos": [], @@ -544648,7 +544299,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 16060821, "featuredRunMedia": null, "reactionVideos": [], @@ -544676,7 +544327,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16063065, "featuredRunMedia": null, "reactionVideos": [], @@ -544704,7 +544355,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16064710, "featuredRunMedia": null, "reactionVideos": [], @@ -544737,7 +544388,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 16065164, "featuredRunMedia": null, "reactionVideos": [], @@ -544775,7 +544426,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16065983, "featuredRunMedia": null, "reactionVideos": [], @@ -544803,7 +544454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16066291, "featuredRunMedia": null, "reactionVideos": [], @@ -544841,7 +544492,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16067503, "featuredRunMedia": null, "reactionVideos": [], @@ -544869,7 +544520,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16067721, "featuredRunMedia": null, "reactionVideos": [], @@ -544897,7 +544548,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16068959, "featuredRunMedia": null, "reactionVideos": [], @@ -544925,7 +544576,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 16070064, "featuredRunMedia": null, "reactionVideos": [], @@ -544953,7 +544604,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 134, + "teamId": "2455", "time": 16071164, "featuredRunMedia": null, "reactionVideos": [], @@ -544981,7 +544632,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 16071678, "featuredRunMedia": null, "reactionVideos": [], @@ -545009,7 +544660,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 16071849, "featuredRunMedia": null, "reactionVideos": [], @@ -545037,7 +544688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 16072529, "featuredRunMedia": null, "reactionVideos": [], @@ -545070,7 +544721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16074705, "featuredRunMedia": null, "reactionVideos": [], @@ -545098,7 +544749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 16077579, "featuredRunMedia": null, "reactionVideos": [], @@ -545131,7 +544782,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 16078174, "featuredRunMedia": null, "reactionVideos": [], @@ -545164,7 +544815,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 16081943, "featuredRunMedia": null, "reactionVideos": [], @@ -545202,7 +544853,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 16083281, "featuredRunMedia": null, "reactionVideos": [], @@ -545230,7 +544881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 16084314, "featuredRunMedia": null, "reactionVideos": [], @@ -545268,7 +544919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 197, + "teamId": "3254", "time": 16084406, "featuredRunMedia": null, "reactionVideos": [], @@ -545306,7 +544957,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 16087399, "featuredRunMedia": null, "reactionVideos": [], @@ -545334,7 +544985,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16089528, "featuredRunMedia": null, "reactionVideos": [], @@ -545372,7 +545023,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 16089597, "featuredRunMedia": null, "reactionVideos": [], @@ -545400,7 +545051,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 16089685, "featuredRunMedia": null, "reactionVideos": [], @@ -545438,7 +545089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 135, + "teamId": "2143", "time": 16092123, "featuredRunMedia": null, "reactionVideos": [], @@ -545471,7 +545122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 16092804, "featuredRunMedia": null, "reactionVideos": [], @@ -545499,7 +545150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16094822, "featuredRunMedia": null, "reactionVideos": [], @@ -545527,7 +545178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16095880, "featuredRunMedia": null, "reactionVideos": [], @@ -545565,7 +545216,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 16099385, "featuredRunMedia": null, "reactionVideos": [], @@ -545598,7 +545249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16099704, "featuredRunMedia": null, "reactionVideos": [], @@ -545626,7 +545277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 16101529, "featuredRunMedia": null, "reactionVideos": [], @@ -545664,7 +545315,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 112, + "teamId": "1255", "time": 16102426, "featuredRunMedia": null, "reactionVideos": [], @@ -545692,7 +545343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 16102677, "featuredRunMedia": null, "reactionVideos": [], @@ -545730,7 +545381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "3250", "time": 16105022, "featuredRunMedia": null, "reactionVideos": [], @@ -545752,7 +545403,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16106325, "featuredRunMedia": null, "reactionVideos": [], @@ -545785,7 +545436,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 16106770, "featuredRunMedia": null, "reactionVideos": [], @@ -545823,7 +545474,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16107660, "featuredRunMedia": null, "reactionVideos": [], @@ -545856,7 +545507,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 16108510, "featuredRunMedia": null, "reactionVideos": [], @@ -545882,7 +545533,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 75, + "teamId": "2443", "time": 16108525, "featuredRunMedia": null, "reactionVideos": [], @@ -545910,7 +545561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16108985, "featuredRunMedia": null, "reactionVideos": [], @@ -545938,7 +545589,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 16109305, "featuredRunMedia": null, "reactionVideos": [], @@ -545976,7 +545627,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 16109557, "featuredRunMedia": null, "reactionVideos": [], @@ -546009,7 +545660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16110141, "featuredRunMedia": null, "reactionVideos": [], @@ -546042,7 +545693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 16112515, "featuredRunMedia": null, "reactionVideos": [], @@ -546070,7 +545721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 75, + "teamId": "2443", "time": 16115017, "featuredRunMedia": null, "reactionVideos": [], @@ -546103,7 +545754,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 22, + "teamId": "2254", "time": 16115520, "featuredRunMedia": null, "reactionVideos": [], @@ -546141,7 +545792,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 16115824, "featuredRunMedia": null, "reactionVideos": [], @@ -546179,7 +545830,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 318, + "teamId": "2848", "time": 16116096, "featuredRunMedia": null, "reactionVideos": [], @@ -546217,7 +545868,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 16116135, "featuredRunMedia": null, "reactionVideos": [], @@ -546250,7 +545901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "3251", "time": 16116847, "featuredRunMedia": null, "reactionVideos": [], @@ -546288,7 +545939,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "1250", "time": 16116992, "featuredRunMedia": null, "reactionVideos": [], @@ -546316,7 +545967,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 141, + "teamId": "3241", "time": 16117319, "featuredRunMedia": null, "reactionVideos": [], @@ -546349,7 +546000,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16117620, "featuredRunMedia": null, "reactionVideos": [], @@ -546382,7 +546033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 16118524, "featuredRunMedia": null, "reactionVideos": [], @@ -546420,7 +546071,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 16119303, "featuredRunMedia": null, "reactionVideos": [], @@ -546448,7 +546099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 283, + "teamId": "1242", "time": 16119442, "featuredRunMedia": null, "reactionVideos": [], @@ -546486,7 +546137,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 16119519, "featuredRunMedia": null, "reactionVideos": [], @@ -546514,7 +546165,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 16119767, "featuredRunMedia": null, "reactionVideos": [], @@ -546542,7 +546193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 16120899, "featuredRunMedia": null, "reactionVideos": [], @@ -546570,7 +546221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 16123998, "featuredRunMedia": null, "reactionVideos": [], @@ -546603,7 +546254,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 16124780, "featuredRunMedia": null, "reactionVideos": [], @@ -546636,7 +546287,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 16125288, "featuredRunMedia": null, "reactionVideos": [], @@ -546674,7 +546325,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 252, + "teamId": "1354", "time": 16126282, "featuredRunMedia": null, "reactionVideos": [], @@ -546712,7 +546363,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16126468, "featuredRunMedia": null, "reactionVideos": [], @@ -546745,7 +546396,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 16127050, "featuredRunMedia": null, "reactionVideos": [], @@ -546783,7 +546434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 16127584, "featuredRunMedia": null, "reactionVideos": [], @@ -546816,7 +546467,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 16127830, "featuredRunMedia": null, "reactionVideos": [], @@ -546844,7 +546495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16128294, "featuredRunMedia": null, "reactionVideos": [], @@ -546872,7 +546523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 16130556, "featuredRunMedia": null, "reactionVideos": [], @@ -546905,7 +546556,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 80, + "teamId": "1848", "time": 16130877, "featuredRunMedia": null, "reactionVideos": [], @@ -546938,7 +546589,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16131600, "featuredRunMedia": null, "reactionVideos": [], @@ -546966,7 +546617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16131926, "featuredRunMedia": null, "reactionVideos": [], @@ -546994,7 +546645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 16132332, "featuredRunMedia": null, "reactionVideos": [], @@ -547020,7 +546671,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 16133570, "featuredRunMedia": null, "reactionVideos": [], @@ -547048,7 +546699,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16134589, "featuredRunMedia": null, "reactionVideos": [], @@ -547081,7 +546732,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16135229, "featuredRunMedia": null, "reactionVideos": [], @@ -547109,7 +546760,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 16135855, "featuredRunMedia": null, "reactionVideos": [], @@ -547147,7 +546798,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16138105, "featuredRunMedia": null, "reactionVideos": [], @@ -547185,7 +546836,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 16138877, "featuredRunMedia": null, "reactionVideos": [], @@ -547218,7 +546869,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 16140845, "featuredRunMedia": null, "reactionVideos": [], @@ -547256,7 +546907,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16142510, "featuredRunMedia": null, "reactionVideos": [], @@ -547284,7 +546935,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 16142937, "featuredRunMedia": null, "reactionVideos": [], @@ -547322,7 +546973,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16143462, "featuredRunMedia": null, "reactionVideos": [], @@ -547360,7 +547011,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 16144703, "featuredRunMedia": null, "reactionVideos": [], @@ -547398,7 +547049,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 16145410, "featuredRunMedia": null, "reactionVideos": [], @@ -547426,7 +547077,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16147570, "featuredRunMedia": null, "reactionVideos": [], @@ -547464,7 +547115,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 16147936, "featuredRunMedia": null, "reactionVideos": [], @@ -547502,7 +547153,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16148561, "featuredRunMedia": null, "reactionVideos": [], @@ -547535,7 +547186,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 16150620, "featuredRunMedia": null, "reactionVideos": [], @@ -547568,7 +547219,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16151258, "featuredRunMedia": null, "reactionVideos": [], @@ -547606,7 +547257,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 258, + "teamId": "1850", "time": 16151377, "featuredRunMedia": null, "reactionVideos": [], @@ -547639,7 +547290,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 16151616, "featuredRunMedia": null, "reactionVideos": [], @@ -547677,7 +547328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 16152140, "featuredRunMedia": null, "reactionVideos": [], @@ -547705,7 +547356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 16152817, "featuredRunMedia": null, "reactionVideos": [], @@ -547738,7 +547389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "2448", "time": 16152910, "featuredRunMedia": null, "reactionVideos": [], @@ -547771,7 +547422,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 16153558, "featuredRunMedia": null, "reactionVideos": [], @@ -547809,7 +547460,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 16154721, "featuredRunMedia": null, "reactionVideos": [], @@ -547842,7 +547493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 278, + "teamId": "2941", "time": 16156003, "featuredRunMedia": null, "reactionVideos": [], @@ -547864,7 +547515,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 16158525, "featuredRunMedia": null, "reactionVideos": [], @@ -547897,7 +547548,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 16158681, "featuredRunMedia": null, "reactionVideos": [], @@ -547935,7 +547586,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 16158992, "featuredRunMedia": null, "reactionVideos": [], @@ -547968,7 +547619,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16160124, "featuredRunMedia": null, "reactionVideos": [], @@ -548006,7 +547657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 177, + "teamId": "1446", "time": 16160924, "featuredRunMedia": null, "reactionVideos": [], @@ -548044,7 +547695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16161168, "featuredRunMedia": null, "reactionVideos": [], @@ -548072,7 +547723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16162798, "featuredRunMedia": null, "reactionVideos": [], @@ -548105,7 +547756,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16164360, "featuredRunMedia": null, "reactionVideos": [], @@ -548127,7 +547778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16165351, "featuredRunMedia": null, "reactionVideos": [], @@ -548155,7 +547806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 16165858, "featuredRunMedia": null, "reactionVideos": [], @@ -548188,7 +547839,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 16165873, "featuredRunMedia": null, "reactionVideos": [], @@ -548216,7 +547867,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 16166698, "featuredRunMedia": null, "reactionVideos": [], @@ -548244,7 +547895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16167807, "featuredRunMedia": null, "reactionVideos": [], @@ -548282,7 +547933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 16168804, "featuredRunMedia": null, "reactionVideos": [], @@ -548320,7 +547971,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16170849, "featuredRunMedia": null, "reactionVideos": [], @@ -548358,7 +548009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16172128, "featuredRunMedia": null, "reactionVideos": [], @@ -548391,7 +548042,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 16172260, "featuredRunMedia": null, "reactionVideos": [], @@ -548424,7 +548075,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "2746", "time": 16172998, "featuredRunMedia": null, "reactionVideos": [], @@ -548462,7 +548113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 16174728, "featuredRunMedia": null, "reactionVideos": [], @@ -548490,7 +548141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 16176247, "featuredRunMedia": null, "reactionVideos": [], @@ -548528,7 +548179,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16178014, "featuredRunMedia": null, "reactionVideos": [], @@ -548556,7 +548207,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 16178199, "featuredRunMedia": null, "reactionVideos": [], @@ -548584,7 +548235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 16181921, "featuredRunMedia": null, "reactionVideos": [], @@ -548622,7 +548273,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 16182257, "featuredRunMedia": null, "reactionVideos": [], @@ -548650,7 +548301,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 16182429, "featuredRunMedia": null, "reactionVideos": [], @@ -548683,7 +548334,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 16184885, "featuredRunMedia": null, "reactionVideos": [], @@ -548711,7 +548362,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16184943, "featuredRunMedia": null, "reactionVideos": [], @@ -548739,7 +548390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 16185642, "featuredRunMedia": null, "reactionVideos": [], @@ -548777,7 +548428,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 16187549, "featuredRunMedia": null, "reactionVideos": [], @@ -548810,7 +548461,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "1954", "time": 16188007, "featuredRunMedia": null, "reactionVideos": [], @@ -548848,7 +548499,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16188149, "featuredRunMedia": null, "reactionVideos": [], @@ -548886,7 +548537,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 16190729, "featuredRunMedia": null, "reactionVideos": [], @@ -548914,7 +548565,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16191090, "featuredRunMedia": null, "reactionVideos": [], @@ -548936,7 +548587,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 16193572, "featuredRunMedia": null, "reactionVideos": [], @@ -548969,7 +548620,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16194649, "featuredRunMedia": null, "reactionVideos": [], @@ -548997,7 +548648,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16195810, "featuredRunMedia": null, "reactionVideos": [], @@ -549025,7 +548676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 16195838, "featuredRunMedia": null, "reactionVideos": [], @@ -549063,7 +548714,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 16196265, "featuredRunMedia": null, "reactionVideos": [], @@ -549101,7 +548752,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 16196934, "featuredRunMedia": null, "reactionVideos": [], @@ -549139,7 +548790,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16198041, "featuredRunMedia": null, "reactionVideos": [], @@ -549167,7 +548818,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 16199892, "featuredRunMedia": null, "reactionVideos": [], @@ -549195,7 +548846,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 16200192, "featuredRunMedia": null, "reactionVideos": [], @@ -549223,7 +548874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16200947, "featuredRunMedia": null, "reactionVideos": [], @@ -549256,7 +548907,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "2448", "time": 16201223, "featuredRunMedia": null, "reactionVideos": [], @@ -549289,7 +548940,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 13, + "teamId": "3245", "time": 16202713, "featuredRunMedia": null, "reactionVideos": [], @@ -549322,7 +548973,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 16202791, "featuredRunMedia": null, "reactionVideos": [], @@ -549355,7 +549006,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 16204262, "featuredRunMedia": null, "reactionVideos": [], @@ -549393,7 +549044,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16204853, "featuredRunMedia": null, "reactionVideos": [], @@ -549421,7 +549072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 16205452, "featuredRunMedia": null, "reactionVideos": [], @@ -549449,7 +549100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 16205705, "featuredRunMedia": null, "reactionVideos": [], @@ -549487,7 +549138,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16207239, "featuredRunMedia": null, "reactionVideos": [], @@ -549515,7 +549166,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16208836, "featuredRunMedia": null, "reactionVideos": [], @@ -549553,7 +549204,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 137, + "teamId": "3252", "time": 16209049, "featuredRunMedia": null, "reactionVideos": [], @@ -549581,7 +549232,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16210572, "featuredRunMedia": null, "reactionVideos": [], @@ -549609,7 +549260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 16211809, "featuredRunMedia": null, "reactionVideos": [], @@ -549642,7 +549293,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16212000, "featuredRunMedia": null, "reactionVideos": [], @@ -549670,7 +549321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 16212097, "featuredRunMedia": null, "reactionVideos": [], @@ -549698,7 +549349,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16212269, "featuredRunMedia": null, "reactionVideos": [], @@ -549731,7 +549382,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16213900, "featuredRunMedia": null, "reactionVideos": [], @@ -549764,7 +549415,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16213958, "featuredRunMedia": null, "reactionVideos": [], @@ -549797,7 +549448,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16214001, "featuredRunMedia": null, "reactionVideos": [], @@ -549830,7 +549481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16215307, "featuredRunMedia": null, "reactionVideos": [], @@ -549858,7 +549509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 16215983, "featuredRunMedia": null, "reactionVideos": [], @@ -549896,7 +549547,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 16217043, "featuredRunMedia": null, "reactionVideos": [], @@ -549934,7 +549585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 16219455, "featuredRunMedia": null, "reactionVideos": [], @@ -549962,7 +549613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 16220762, "featuredRunMedia": null, "reactionVideos": [], @@ -549990,7 +549641,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16223329, "featuredRunMedia": null, "reactionVideos": [], @@ -550023,7 +549674,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 161, + "teamId": "1944", "time": 16223579, "featuredRunMedia": null, "reactionVideos": [], @@ -550061,7 +549712,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 16224133, "featuredRunMedia": null, "reactionVideos": [], @@ -550089,7 +549740,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 244, + "teamId": "2645", "time": 16225516, "featuredRunMedia": null, "reactionVideos": [], @@ -550127,7 +549778,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16225963, "featuredRunMedia": null, "reactionVideos": [], @@ -550155,7 +549806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16226136, "featuredRunMedia": null, "reactionVideos": [], @@ -550193,7 +549844,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 318, + "teamId": "2848", "time": 16226364, "featuredRunMedia": null, "reactionVideos": [], @@ -550231,7 +549882,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16226983, "featuredRunMedia": null, "reactionVideos": [], @@ -550269,7 +549920,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 16227899, "featuredRunMedia": null, "reactionVideos": [], @@ -550302,7 +549953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 16229186, "featuredRunMedia": null, "reactionVideos": [], @@ -550335,7 +549986,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 286, + "teamId": "2546", "time": 16230115, "featuredRunMedia": null, "reactionVideos": [], @@ -550363,7 +550014,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16230579, "featuredRunMedia": null, "reactionVideos": [], @@ -550396,7 +550047,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16234203, "featuredRunMedia": null, "reactionVideos": [], @@ -550424,7 +550075,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16234894, "featuredRunMedia": null, "reactionVideos": [], @@ -550462,7 +550113,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16235127, "featuredRunMedia": null, "reactionVideos": [], @@ -550495,7 +550146,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 16236028, "featuredRunMedia": null, "reactionVideos": [], @@ -550523,7 +550174,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16238083, "featuredRunMedia": null, "reactionVideos": [], @@ -550561,7 +550212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16239252, "featuredRunMedia": null, "reactionVideos": [], @@ -550599,7 +550250,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 16239313, "featuredRunMedia": null, "reactionVideos": [], @@ -550627,7 +550278,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 113, + "teamId": "1345", "time": 16239695, "featuredRunMedia": null, "reactionVideos": [], @@ -550660,7 +550311,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16240156, "featuredRunMedia": null, "reactionVideos": [], @@ -550693,7 +550344,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16241223, "featuredRunMedia": null, "reactionVideos": [], @@ -550731,7 +550382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16241837, "featuredRunMedia": null, "reactionVideos": [], @@ -550769,7 +550420,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 95, + "teamId": "3255", "time": 16245350, "featuredRunMedia": null, "reactionVideos": [], @@ -550797,7 +550448,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 16247710, "featuredRunMedia": null, "reactionVideos": [], @@ -550830,7 +550481,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16247920, "featuredRunMedia": null, "reactionVideos": [], @@ -550863,7 +550514,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 16248102, "featuredRunMedia": null, "reactionVideos": [], @@ -550901,7 +550552,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16248955, "featuredRunMedia": null, "reactionVideos": [], @@ -550939,7 +550590,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16249135, "featuredRunMedia": null, "reactionVideos": [], @@ -550977,7 +550628,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16251656, "featuredRunMedia": null, "reactionVideos": [], @@ -551005,7 +550656,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 16252468, "featuredRunMedia": null, "reactionVideos": [], @@ -551043,7 +550694,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 16252587, "featuredRunMedia": null, "reactionVideos": [], @@ -551081,7 +550732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16258004, "featuredRunMedia": null, "reactionVideos": [], @@ -551114,7 +550765,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 171, + "teamId": "1543", "time": 16258432, "featuredRunMedia": null, "reactionVideos": [], @@ -551147,7 +550798,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16258922, "featuredRunMedia": null, "reactionVideos": [], @@ -551185,7 +550836,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 16260154, "featuredRunMedia": null, "reactionVideos": [], @@ -551213,7 +550864,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 335, + "teamId": "2148", "time": 16261159, "featuredRunMedia": null, "reactionVideos": [], @@ -551251,7 +550902,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 16261197, "featuredRunMedia": null, "reactionVideos": [], @@ -551279,7 +550930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 16261879, "featuredRunMedia": null, "reactionVideos": [], @@ -551317,7 +550968,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16262371, "featuredRunMedia": null, "reactionVideos": [], @@ -551339,7 +550990,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 16262759, "featuredRunMedia": null, "reactionVideos": [], @@ -551367,7 +551018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16262821, "featuredRunMedia": null, "reactionVideos": [], @@ -551400,7 +551051,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 16265433, "featuredRunMedia": null, "reactionVideos": [], @@ -551438,7 +551089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 16265977, "featuredRunMedia": null, "reactionVideos": [], @@ -551471,7 +551122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "2746", "time": 16266250, "featuredRunMedia": null, "reactionVideos": [], @@ -551509,7 +551160,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16267171, "featuredRunMedia": null, "reactionVideos": [], @@ -551542,7 +551193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16267271, "featuredRunMedia": null, "reactionVideos": [], @@ -551575,7 +551226,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16269753, "featuredRunMedia": null, "reactionVideos": [], @@ -551603,7 +551254,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 16269802, "featuredRunMedia": null, "reactionVideos": [], @@ -551641,7 +551292,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16271478, "featuredRunMedia": null, "reactionVideos": [], @@ -551663,7 +551314,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16277589, "featuredRunMedia": null, "reactionVideos": [], @@ -551696,7 +551347,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16277665, "featuredRunMedia": null, "reactionVideos": [], @@ -551729,7 +551380,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16277889, "featuredRunMedia": null, "reactionVideos": [], @@ -551757,7 +551408,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16278460, "featuredRunMedia": null, "reactionVideos": [], @@ -551785,7 +551436,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 16279119, "featuredRunMedia": null, "reactionVideos": [], @@ -551813,7 +551464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 16280770, "featuredRunMedia": null, "reactionVideos": [], @@ -551841,7 +551492,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 183, + "teamId": "2452", "time": 16284426, "featuredRunMedia": null, "reactionVideos": [], @@ -551879,7 +551530,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 16284549, "featuredRunMedia": null, "reactionVideos": [], @@ -551907,7 +551558,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16284889, "featuredRunMedia": null, "reactionVideos": [], @@ -551940,7 +551591,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16286401, "featuredRunMedia": null, "reactionVideos": [], @@ -551973,7 +551624,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16287378, "featuredRunMedia": null, "reactionVideos": [], @@ -552011,7 +551662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16287421, "featuredRunMedia": null, "reactionVideos": [], @@ -552049,7 +551700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16287989, "featuredRunMedia": null, "reactionVideos": [], @@ -552087,7 +551738,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16288135, "featuredRunMedia": null, "reactionVideos": [], @@ -552115,7 +551766,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 16289487, "featuredRunMedia": null, "reactionVideos": [], @@ -552153,7 +551804,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16291388, "featuredRunMedia": null, "reactionVideos": [], @@ -552191,7 +551842,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16293858, "featuredRunMedia": null, "reactionVideos": [], @@ -552229,7 +551880,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 16295506, "featuredRunMedia": null, "reactionVideos": [], @@ -552262,7 +551913,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16297980, "featuredRunMedia": null, "reactionVideos": [], @@ -552290,7 +551941,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16298302, "featuredRunMedia": null, "reactionVideos": [], @@ -552312,7 +551963,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 16299401, "featuredRunMedia": null, "reactionVideos": [], @@ -552345,7 +551996,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "3251", "time": 16299851, "featuredRunMedia": null, "reactionVideos": [], @@ -552373,7 +552024,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 16302324, "featuredRunMedia": null, "reactionVideos": [], @@ -552401,7 +552052,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 250, + "teamId": "2647", "time": 16302667, "featuredRunMedia": null, "reactionVideos": [], @@ -552434,7 +552085,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16303343, "featuredRunMedia": null, "reactionVideos": [], @@ -552472,7 +552123,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 16304073, "featuredRunMedia": null, "reactionVideos": [], @@ -552500,7 +552151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16307890, "featuredRunMedia": null, "reactionVideos": [], @@ -552538,7 +552189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 16309277, "featuredRunMedia": null, "reactionVideos": [], @@ -552566,7 +552217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16309328, "featuredRunMedia": null, "reactionVideos": [], @@ -552599,7 +552250,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 286, + "teamId": "2546", "time": 16309915, "featuredRunMedia": null, "reactionVideos": [], @@ -552632,7 +552283,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 16310349, "featuredRunMedia": null, "reactionVideos": [], @@ -552660,7 +552311,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16310916, "featuredRunMedia": null, "reactionVideos": [], @@ -552693,7 +552344,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 16312233, "featuredRunMedia": null, "reactionVideos": [], @@ -552721,7 +552372,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16312361, "featuredRunMedia": null, "reactionVideos": [], @@ -552749,7 +552400,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 343, + "teamId": "1844", "time": 16312767, "featuredRunMedia": null, "reactionVideos": [], @@ -552777,7 +552428,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 16313535, "featuredRunMedia": null, "reactionVideos": [], @@ -552805,7 +552456,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16313844, "featuredRunMedia": null, "reactionVideos": [], @@ -552838,7 +552489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 29, + "teamId": "2448", "time": 16315090, "featuredRunMedia": null, "reactionVideos": [], @@ -552866,7 +552517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16315278, "featuredRunMedia": null, "reactionVideos": [], @@ -552894,7 +552545,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 16315319, "featuredRunMedia": null, "reactionVideos": [], @@ -552932,7 +552583,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 128, + "teamId": "2842", "time": 16315403, "featuredRunMedia": null, "reactionVideos": [], @@ -552960,7 +552611,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 73, + "teamId": "3144", "time": 16318226, "featuredRunMedia": null, "reactionVideos": [], @@ -552998,7 +552649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 16318594, "featuredRunMedia": null, "reactionVideos": [], @@ -553031,7 +552682,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16319094, "featuredRunMedia": null, "reactionVideos": [], @@ -553059,7 +552710,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16319186, "featuredRunMedia": null, "reactionVideos": [], @@ -553097,7 +552748,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 177, + "teamId": "1446", "time": 16319542, "featuredRunMedia": null, "reactionVideos": [], @@ -553125,7 +552776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16319803, "featuredRunMedia": null, "reactionVideos": [], @@ -553158,7 +552809,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16320260, "featuredRunMedia": null, "reactionVideos": [], @@ -553191,7 +552842,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16320514, "featuredRunMedia": null, "reactionVideos": [], @@ -553229,7 +552880,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 16322293, "featuredRunMedia": null, "reactionVideos": [], @@ -553257,7 +552908,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16322984, "featuredRunMedia": null, "reactionVideos": [], @@ -553283,7 +552934,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 16323012, "featuredRunMedia": null, "reactionVideos": [], @@ -553316,7 +552967,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 16323748, "featuredRunMedia": null, "reactionVideos": [], @@ -553344,7 +552995,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 16324964, "featuredRunMedia": null, "reactionVideos": [], @@ -553372,7 +553023,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 261, + "teamId": "1943", "time": 16325211, "featuredRunMedia": null, "reactionVideos": [], @@ -553410,7 +553061,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 16326352, "featuredRunMedia": null, "reactionVideos": [], @@ -553448,7 +553099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 16328342, "featuredRunMedia": null, "reactionVideos": [], @@ -553481,7 +553132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16328723, "featuredRunMedia": null, "reactionVideos": [], @@ -553514,7 +553165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16328859, "featuredRunMedia": null, "reactionVideos": [], @@ -553547,7 +553198,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "3150", "time": 16328937, "featuredRunMedia": null, "reactionVideos": [], @@ -553585,7 +553236,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 16331587, "featuredRunMedia": null, "reactionVideos": [], @@ -553623,7 +553274,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16332680, "featuredRunMedia": null, "reactionVideos": [], @@ -553656,7 +553307,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 16333398, "featuredRunMedia": null, "reactionVideos": [], @@ -553689,7 +553340,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 16335267, "featuredRunMedia": null, "reactionVideos": [], @@ -553722,7 +553373,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 16336478, "featuredRunMedia": null, "reactionVideos": [], @@ -553760,7 +553411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16336641, "featuredRunMedia": null, "reactionVideos": [], @@ -553798,7 +553449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16337811, "featuredRunMedia": null, "reactionVideos": [], @@ -553826,7 +553477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 16338471, "featuredRunMedia": null, "reactionVideos": [], @@ -553864,7 +553515,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 16338741, "featuredRunMedia": null, "reactionVideos": [], @@ -553902,7 +553553,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 16338961, "featuredRunMedia": null, "reactionVideos": [], @@ -553940,7 +553591,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 318, + "teamId": "2848", "time": 16339223, "featuredRunMedia": null, "reactionVideos": [], @@ -553973,7 +553624,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 312, + "teamId": "1754", "time": 16340141, "featuredRunMedia": null, "reactionVideos": [], @@ -554011,7 +553662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 193, + "teamId": "1950", "time": 16340931, "featuredRunMedia": null, "reactionVideos": [], @@ -554049,7 +553700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16341953, "featuredRunMedia": null, "reactionVideos": [], @@ -554077,7 +553728,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 16342289, "featuredRunMedia": null, "reactionVideos": [], @@ -554105,7 +553756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 16342977, "featuredRunMedia": null, "reactionVideos": [], @@ -554138,7 +553789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16342977, "featuredRunMedia": null, "reactionVideos": [], @@ -554171,7 +553822,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16349273, "featuredRunMedia": null, "reactionVideos": [], @@ -554199,7 +553850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16353388, "featuredRunMedia": null, "reactionVideos": [], @@ -554237,7 +553888,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 16357129, "featuredRunMedia": null, "reactionVideos": [], @@ -554265,7 +553916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 16357274, "featuredRunMedia": null, "reactionVideos": [], @@ -554298,7 +553949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 16358154, "featuredRunMedia": null, "reactionVideos": [], @@ -554336,7 +553987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16359959, "featuredRunMedia": null, "reactionVideos": [], @@ -554364,7 +554015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 277, + "teamId": "2853", "time": 16360104, "featuredRunMedia": null, "reactionVideos": [], @@ -554397,7 +554048,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16362395, "featuredRunMedia": null, "reactionVideos": [], @@ -554435,7 +554086,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16362527, "featuredRunMedia": null, "reactionVideos": [], @@ -554473,7 +554124,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "2056", "time": 16362729, "featuredRunMedia": null, "reactionVideos": [], @@ -554506,7 +554157,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 16363773, "featuredRunMedia": null, "reactionVideos": [], @@ -554544,7 +554195,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16364396, "featuredRunMedia": null, "reactionVideos": [], @@ -554572,7 +554223,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 16365233, "featuredRunMedia": null, "reactionVideos": [], @@ -554600,7 +554251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 16365975, "featuredRunMedia": null, "reactionVideos": [], @@ -554628,7 +554279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 16367858, "featuredRunMedia": null, "reactionVideos": [], @@ -554661,7 +554312,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 16369287, "featuredRunMedia": null, "reactionVideos": [], @@ -554689,7 +554340,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 16370212, "featuredRunMedia": null, "reactionVideos": [], @@ -554717,7 +554368,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 16373085, "featuredRunMedia": null, "reactionVideos": [], @@ -554745,7 +554396,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16373134, "featuredRunMedia": null, "reactionVideos": [], @@ -554783,7 +554434,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16375464, "featuredRunMedia": null, "reactionVideos": [], @@ -554811,7 +554462,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16376133, "featuredRunMedia": null, "reactionVideos": [], @@ -554844,7 +554495,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16378354, "featuredRunMedia": null, "reactionVideos": [], @@ -554882,7 +554533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16379584, "featuredRunMedia": null, "reactionVideos": [], @@ -554910,7 +554561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16379676, "featuredRunMedia": null, "reactionVideos": [], @@ -554943,7 +554594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16381545, "featuredRunMedia": null, "reactionVideos": [], @@ -554971,7 +554622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 16381671, "featuredRunMedia": null, "reactionVideos": [], @@ -555004,7 +554655,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "2454", "time": 16382005, "featuredRunMedia": null, "reactionVideos": [], @@ -555037,7 +554688,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 16383958, "featuredRunMedia": null, "reactionVideos": [], @@ -555070,7 +554721,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 178, + "teamId": "2055", "time": 16384771, "featuredRunMedia": null, "reactionVideos": [], @@ -555103,7 +554754,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16385617, "featuredRunMedia": null, "reactionVideos": [], @@ -555136,7 +554787,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 16387387, "featuredRunMedia": null, "reactionVideos": [], @@ -555169,7 +554820,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "3150", "time": 16387391, "featuredRunMedia": null, "reactionVideos": [], @@ -555202,7 +554853,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 16388719, "featuredRunMedia": null, "reactionVideos": [], @@ -555230,7 +554881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 16389237, "featuredRunMedia": null, "reactionVideos": [], @@ -555268,7 +554919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 16389277, "featuredRunMedia": null, "reactionVideos": [], @@ -555296,7 +554947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 16389960, "featuredRunMedia": null, "reactionVideos": [], @@ -555329,7 +554980,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 16393895, "featuredRunMedia": null, "reactionVideos": [], @@ -555367,7 +555018,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16394167, "featuredRunMedia": null, "reactionVideos": [], @@ -555405,7 +555056,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 16394374, "featuredRunMedia": null, "reactionVideos": [], @@ -555438,7 +555089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16395226, "featuredRunMedia": null, "reactionVideos": [], @@ -555466,7 +555117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 16396706, "featuredRunMedia": null, "reactionVideos": [], @@ -555494,7 +555145,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 16398196, "featuredRunMedia": null, "reactionVideos": [], @@ -555522,7 +555173,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 16400004, "featuredRunMedia": null, "reactionVideos": [], @@ -555555,7 +555206,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 16400105, "featuredRunMedia": null, "reactionVideos": [], @@ -555583,7 +555234,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 16400865, "featuredRunMedia": null, "reactionVideos": [], @@ -555621,7 +555272,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16402356, "featuredRunMedia": null, "reactionVideos": [], @@ -555659,7 +555310,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16402521, "featuredRunMedia": null, "reactionVideos": [], @@ -555697,7 +555348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 16404560, "featuredRunMedia": null, "reactionVideos": [], @@ -555730,7 +555381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 16405108, "featuredRunMedia": null, "reactionVideos": [], @@ -555763,7 +555414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 16406403, "featuredRunMedia": null, "reactionVideos": [], @@ -555801,7 +555452,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 16407238, "featuredRunMedia": null, "reactionVideos": [], @@ -555829,7 +555480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16407647, "featuredRunMedia": null, "reactionVideos": [], @@ -555857,7 +555508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 91, + "teamId": "1343", "time": 16409747, "featuredRunMedia": null, "reactionVideos": [], @@ -555895,7 +555546,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 16409968, "featuredRunMedia": null, "reactionVideos": [], @@ -555923,7 +555574,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 294, + "teamId": "2655", "time": 16410153, "featuredRunMedia": null, "reactionVideos": [], @@ -555956,7 +555607,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16410691, "featuredRunMedia": null, "reactionVideos": [], @@ -555994,7 +555645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16411154, "featuredRunMedia": null, "reactionVideos": [], @@ -556027,7 +555678,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 16415803, "featuredRunMedia": null, "reactionVideos": [], @@ -556055,7 +555706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 16421676, "featuredRunMedia": null, "reactionVideos": [], @@ -556083,7 +555734,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16421895, "featuredRunMedia": null, "reactionVideos": [], @@ -556121,7 +555772,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16423277, "featuredRunMedia": null, "reactionVideos": [], @@ -556149,7 +555800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 16424944, "featuredRunMedia": null, "reactionVideos": [], @@ -556182,7 +555833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 41, + "teamId": "2642", "time": 16426497, "featuredRunMedia": null, "reactionVideos": [], @@ -556215,7 +555866,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 16427237, "featuredRunMedia": null, "reactionVideos": [], @@ -556253,7 +555904,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 16428002, "featuredRunMedia": null, "reactionVideos": [], @@ -556291,7 +555942,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 16428072, "featuredRunMedia": null, "reactionVideos": [], @@ -556324,7 +555975,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16430884, "featuredRunMedia": null, "reactionVideos": [], @@ -556362,7 +556013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 16433412, "featuredRunMedia": null, "reactionVideos": [], @@ -556400,7 +556051,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16433727, "featuredRunMedia": null, "reactionVideos": [], @@ -556438,7 +556089,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 16436014, "featuredRunMedia": null, "reactionVideos": [], @@ -556471,7 +556122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16437902, "featuredRunMedia": null, "reactionVideos": [], @@ -556499,7 +556150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16438071, "featuredRunMedia": null, "reactionVideos": [], @@ -556537,7 +556188,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 16438884, "featuredRunMedia": null, "reactionVideos": [], @@ -556575,7 +556226,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16438918, "featuredRunMedia": null, "reactionVideos": [], @@ -556603,7 +556254,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 16439833, "featuredRunMedia": null, "reactionVideos": [], @@ -556641,7 +556292,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 16439918, "featuredRunMedia": null, "reactionVideos": [], @@ -556669,7 +556320,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 30, + "teamId": "2654", "time": 16440935, "featuredRunMedia": null, "reactionVideos": [], @@ -556697,7 +556348,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 278, + "teamId": "2941", "time": 16442906, "featuredRunMedia": null, "reactionVideos": [], @@ -556725,7 +556376,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 16443112, "featuredRunMedia": null, "reactionVideos": [], @@ -556751,7 +556402,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 348, + "teamId": "1355", "time": 16443237, "featuredRunMedia": null, "reactionVideos": [], @@ -556779,7 +556430,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16444974, "featuredRunMedia": null, "reactionVideos": [], @@ -556817,7 +556468,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 16445685, "featuredRunMedia": null, "reactionVideos": [], @@ -556850,7 +556501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16450690, "featuredRunMedia": null, "reactionVideos": [], @@ -556883,7 +556534,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16451725, "featuredRunMedia": null, "reactionVideos": [], @@ -556921,7 +556572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "1250", "time": 16452852, "featuredRunMedia": null, "reactionVideos": [], @@ -556954,7 +556605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 16453398, "featuredRunMedia": null, "reactionVideos": [], @@ -556992,7 +556643,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16454509, "featuredRunMedia": null, "reactionVideos": [], @@ -557025,7 +556676,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 16457575, "featuredRunMedia": null, "reactionVideos": [], @@ -557063,7 +556714,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 16459283, "featuredRunMedia": null, "reactionVideos": [], @@ -557091,7 +556742,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16460103, "featuredRunMedia": null, "reactionVideos": [], @@ -557129,7 +556780,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16462692, "featuredRunMedia": null, "reactionVideos": [], @@ -557162,7 +556813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 16463349, "featuredRunMedia": null, "reactionVideos": [], @@ -557195,7 +556846,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16466059, "featuredRunMedia": null, "reactionVideos": [], @@ -557223,7 +556874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16467227, "featuredRunMedia": null, "reactionVideos": [], @@ -557251,7 +556902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16467894, "featuredRunMedia": null, "reactionVideos": [], @@ -557279,7 +556930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 16468655, "featuredRunMedia": null, "reactionVideos": [], @@ -557307,7 +556958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16469675, "featuredRunMedia": null, "reactionVideos": [], @@ -557345,7 +556996,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16469744, "featuredRunMedia": null, "reactionVideos": [], @@ -557378,7 +557029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 286, + "teamId": "2546", "time": 16470345, "featuredRunMedia": null, "reactionVideos": [], @@ -557406,7 +557057,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 16470964, "featuredRunMedia": null, "reactionVideos": [], @@ -557444,7 +557095,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16472098, "featuredRunMedia": null, "reactionVideos": [], @@ -557472,7 +557123,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16473260, "featuredRunMedia": null, "reactionVideos": [], @@ -557505,7 +557156,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "2050", "time": 16473851, "featuredRunMedia": null, "reactionVideos": [], @@ -557538,7 +557189,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16474388, "featuredRunMedia": null, "reactionVideos": [], @@ -557576,7 +557227,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 111, + "teamId": "2355", "time": 16474604, "featuredRunMedia": null, "reactionVideos": [], @@ -557604,7 +557255,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 16475243, "featuredRunMedia": null, "reactionVideos": [], @@ -557637,7 +557288,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16477204, "featuredRunMedia": null, "reactionVideos": [], @@ -557675,7 +557326,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16477374, "featuredRunMedia": null, "reactionVideos": [], @@ -557703,7 +557354,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16477848, "featuredRunMedia": null, "reactionVideos": [], @@ -557731,7 +557382,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 16478051, "featuredRunMedia": null, "reactionVideos": [], @@ -557759,7 +557410,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 16479916, "featuredRunMedia": null, "reactionVideos": [], @@ -557792,7 +557443,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 16480436, "featuredRunMedia": null, "reactionVideos": [], @@ -557830,7 +557481,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16480678, "featuredRunMedia": null, "reactionVideos": [], @@ -557863,7 +557514,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16482493, "featuredRunMedia": null, "reactionVideos": [], @@ -557896,7 +557547,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 16483037, "featuredRunMedia": null, "reactionVideos": [], @@ -557924,7 +557575,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 16483975, "featuredRunMedia": null, "reactionVideos": [], @@ -557957,7 +557608,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 16485010, "featuredRunMedia": null, "reactionVideos": [], @@ -557985,7 +557636,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16487935, "featuredRunMedia": null, "reactionVideos": [], @@ -558013,7 +557664,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 16488064, "featuredRunMedia": null, "reactionVideos": [], @@ -558051,7 +557702,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16489031, "featuredRunMedia": null, "reactionVideos": [], @@ -558089,7 +557740,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 16489745, "featuredRunMedia": null, "reactionVideos": [], @@ -558117,7 +557768,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 16489812, "featuredRunMedia": null, "reactionVideos": [], @@ -558150,7 +557801,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "3150", "time": 16491601, "featuredRunMedia": null, "reactionVideos": [], @@ -558183,7 +557834,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16492234, "featuredRunMedia": null, "reactionVideos": [], @@ -558216,7 +557867,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 16493216, "featuredRunMedia": null, "reactionVideos": [], @@ -558244,7 +557895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16493742, "featuredRunMedia": null, "reactionVideos": [], @@ -558282,7 +557933,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 142, + "teamId": "1144", "time": 16494901, "featuredRunMedia": null, "reactionVideos": [], @@ -558310,7 +557961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 16495196, "featuredRunMedia": null, "reactionVideos": [], @@ -558338,7 +557989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 16495197, "featuredRunMedia": null, "reactionVideos": [], @@ -558366,7 +558017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 16495845, "featuredRunMedia": null, "reactionVideos": [], @@ -558404,7 +558055,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 16496495, "featuredRunMedia": null, "reactionVideos": [], @@ -558437,7 +558088,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 16496640, "featuredRunMedia": null, "reactionVideos": [], @@ -558465,7 +558116,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16497155, "featuredRunMedia": null, "reactionVideos": [], @@ -558493,7 +558144,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16497420, "featuredRunMedia": null, "reactionVideos": [], @@ -558526,7 +558177,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16500215, "featuredRunMedia": null, "reactionVideos": [], @@ -558559,7 +558210,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "1851", "time": 16500307, "featuredRunMedia": null, "reactionVideos": [], @@ -558597,7 +558248,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 16503187, "featuredRunMedia": null, "reactionVideos": [], @@ -558625,7 +558276,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 16505671, "featuredRunMedia": null, "reactionVideos": [], @@ -558658,7 +558309,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 92, + "teamId": "1141", "time": 16508717, "featuredRunMedia": null, "reactionVideos": [], @@ -558691,7 +558342,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16508752, "featuredRunMedia": null, "reactionVideos": [], @@ -558724,7 +558375,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16508885, "featuredRunMedia": null, "reactionVideos": [], @@ -558762,7 +558413,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 16509181, "featuredRunMedia": null, "reactionVideos": [], @@ -558790,7 +558441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16511047, "featuredRunMedia": null, "reactionVideos": [], @@ -558818,7 +558469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 16511564, "featuredRunMedia": null, "reactionVideos": [], @@ -558851,7 +558502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 16511977, "featuredRunMedia": null, "reactionVideos": [], @@ -558884,7 +558535,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16513699, "featuredRunMedia": null, "reactionVideos": [], @@ -558922,7 +558573,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16515134, "featuredRunMedia": null, "reactionVideos": [], @@ -558950,7 +558601,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16515553, "featuredRunMedia": null, "reactionVideos": [], @@ -558983,7 +558634,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16516063, "featuredRunMedia": null, "reactionVideos": [], @@ -559016,7 +558667,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 16519237, "featuredRunMedia": null, "reactionVideos": [], @@ -559054,7 +558705,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "2146", "time": 16519323, "featuredRunMedia": null, "reactionVideos": [], @@ -559092,7 +558743,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 84, + "teamId": "1550", "time": 16521016, "featuredRunMedia": null, "reactionVideos": [], @@ -559120,7 +558771,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 16523515, "featuredRunMedia": null, "reactionVideos": [], @@ -559148,7 +558799,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16523847, "featuredRunMedia": null, "reactionVideos": [], @@ -559181,7 +558832,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16523854, "featuredRunMedia": null, "reactionVideos": [], @@ -559209,7 +558860,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16524917, "featuredRunMedia": null, "reactionVideos": [], @@ -559242,7 +558893,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 16525305, "featuredRunMedia": null, "reactionVideos": [], @@ -559280,7 +558931,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16525488, "featuredRunMedia": null, "reactionVideos": [], @@ -559313,7 +558964,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16526619, "featuredRunMedia": null, "reactionVideos": [], @@ -559341,7 +558992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 16529318, "featuredRunMedia": null, "reactionVideos": [], @@ -559374,7 +559025,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16530153, "featuredRunMedia": null, "reactionVideos": [], @@ -559407,7 +559058,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 16533074, "featuredRunMedia": null, "reactionVideos": [], @@ -559433,7 +559084,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 16533642, "featuredRunMedia": null, "reactionVideos": [], @@ -559461,7 +559112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16534021, "featuredRunMedia": null, "reactionVideos": [], @@ -559489,7 +559140,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "2253", "time": 16536089, "featuredRunMedia": null, "reactionVideos": [], @@ -559527,7 +559178,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 16536857, "featuredRunMedia": null, "reactionVideos": [], @@ -559560,7 +559211,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 16537078, "featuredRunMedia": null, "reactionVideos": [], @@ -559588,7 +559239,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 16538348, "featuredRunMedia": null, "reactionVideos": [], @@ -559616,7 +559267,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 16539229, "featuredRunMedia": null, "reactionVideos": [], @@ -559654,7 +559305,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 16539971, "featuredRunMedia": null, "reactionVideos": [], @@ -559692,7 +559343,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 198, + "teamId": "1248", "time": 16540437, "featuredRunMedia": null, "reactionVideos": [], @@ -559730,7 +559381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 16542229, "featuredRunMedia": null, "reactionVideos": [], @@ -559763,7 +559414,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 179, + "teamId": "2643", "time": 16543342, "featuredRunMedia": null, "reactionVideos": [], @@ -559791,7 +559442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16544992, "featuredRunMedia": null, "reactionVideos": [], @@ -559824,7 +559475,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 16545049, "featuredRunMedia": null, "reactionVideos": [], @@ -559857,7 +559508,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16546064, "featuredRunMedia": null, "reactionVideos": [], @@ -559890,7 +559541,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16547625, "featuredRunMedia": null, "reactionVideos": [], @@ -559923,7 +559574,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16548532, "featuredRunMedia": null, "reactionVideos": [], @@ -559956,7 +559607,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16551735, "featuredRunMedia": null, "reactionVideos": [], @@ -559994,7 +559645,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 16552072, "featuredRunMedia": null, "reactionVideos": [], @@ -560022,7 +559673,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 16552314, "featuredRunMedia": null, "reactionVideos": [], @@ -560055,7 +559706,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 218, + "teamId": "1541", "time": 16557351, "featuredRunMedia": null, "reactionVideos": [], @@ -560083,7 +559734,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16557351, "featuredRunMedia": null, "reactionVideos": [], @@ -560121,7 +559772,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16557658, "featuredRunMedia": null, "reactionVideos": [], @@ -560154,7 +559805,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 16557798, "featuredRunMedia": null, "reactionVideos": [], @@ -560187,7 +559838,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 16558675, "featuredRunMedia": null, "reactionVideos": [], @@ -560225,7 +559876,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 16559191, "featuredRunMedia": null, "reactionVideos": [], @@ -560253,7 +559904,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16559257, "featuredRunMedia": null, "reactionVideos": [], @@ -560281,7 +559932,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 16564294, "featuredRunMedia": null, "reactionVideos": [], @@ -560309,7 +559960,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "2253", "time": 16565061, "featuredRunMedia": null, "reactionVideos": [], @@ -560347,7 +559998,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 16565452, "featuredRunMedia": null, "reactionVideos": [], @@ -560375,7 +560026,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 16565829, "featuredRunMedia": null, "reactionVideos": [], @@ -560408,7 +560059,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 16565892, "featuredRunMedia": null, "reactionVideos": [], @@ -560446,7 +560097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 16567241, "featuredRunMedia": null, "reactionVideos": [], @@ -560468,7 +560119,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16568944, "featuredRunMedia": null, "reactionVideos": [], @@ -560496,7 +560147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 16569087, "featuredRunMedia": null, "reactionVideos": [], @@ -560534,7 +560185,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 186, + "teamId": "2646", "time": 16569294, "featuredRunMedia": null, "reactionVideos": [], @@ -560562,7 +560213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16571948, "featuredRunMedia": null, "reactionVideos": [], @@ -560600,7 +560251,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 16572494, "featuredRunMedia": null, "reactionVideos": [], @@ -560633,7 +560284,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 16572647, "featuredRunMedia": null, "reactionVideos": [], @@ -560666,7 +560317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "2445", "time": 16573193, "featuredRunMedia": null, "reactionVideos": [], @@ -560694,7 +560345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16573546, "featuredRunMedia": null, "reactionVideos": [], @@ -560716,7 +560367,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 16573549, "featuredRunMedia": null, "reactionVideos": [], @@ -560749,7 +560400,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16573768, "featuredRunMedia": null, "reactionVideos": [], @@ -560771,7 +560422,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16576118, "featuredRunMedia": null, "reactionVideos": [], @@ -560804,7 +560455,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16576730, "featuredRunMedia": null, "reactionVideos": [], @@ -560832,7 +560483,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 16577530, "featuredRunMedia": null, "reactionVideos": [], @@ -560860,7 +560511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16578215, "featuredRunMedia": null, "reactionVideos": [], @@ -560898,7 +560549,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 16578796, "featuredRunMedia": null, "reactionVideos": [], @@ -560936,7 +560587,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 16579396, "featuredRunMedia": null, "reactionVideos": [], @@ -560969,7 +560620,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 132, + "teamId": "2256", "time": 16579738, "featuredRunMedia": null, "reactionVideos": [], @@ -560997,7 +560648,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 16580180, "featuredRunMedia": null, "reactionVideos": [], @@ -561030,7 +560681,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 16580760, "featuredRunMedia": null, "reactionVideos": [], @@ -561058,7 +560709,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 16583165, "featuredRunMedia": null, "reactionVideos": [], @@ -561096,7 +560747,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 16583294, "featuredRunMedia": null, "reactionVideos": [], @@ -561129,7 +560780,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 217, + "teamId": "3150", "time": 16583871, "featuredRunMedia": null, "reactionVideos": [], @@ -561162,7 +560813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16584143, "featuredRunMedia": null, "reactionVideos": [], @@ -561195,7 +560846,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16584154, "featuredRunMedia": null, "reactionVideos": [], @@ -561223,7 +560874,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16584869, "featuredRunMedia": null, "reactionVideos": [], @@ -561251,7 +560902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 16585368, "featuredRunMedia": null, "reactionVideos": [], @@ -561289,7 +560940,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 16585484, "featuredRunMedia": null, "reactionVideos": [], @@ -561317,7 +560968,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 16585765, "featuredRunMedia": null, "reactionVideos": [], @@ -561350,7 +561001,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 79, + "teamId": "1548", "time": 16586683, "featuredRunMedia": null, "reactionVideos": [], @@ -561388,7 +561039,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16588858, "featuredRunMedia": null, "reactionVideos": [], @@ -561416,7 +561067,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 16590357, "featuredRunMedia": null, "reactionVideos": [], @@ -561449,7 +561100,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16590695, "featuredRunMedia": null, "reactionVideos": [], @@ -561482,7 +561133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16590974, "featuredRunMedia": null, "reactionVideos": [], @@ -561510,7 +561161,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16592524, "featuredRunMedia": null, "reactionVideos": [], @@ -561532,7 +561183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16593362, "featuredRunMedia": null, "reactionVideos": [], @@ -561565,7 +561216,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 16596469, "featuredRunMedia": null, "reactionVideos": [], @@ -561598,7 +561249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 16596875, "featuredRunMedia": null, "reactionVideos": [], @@ -561626,7 +561277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 16599119, "featuredRunMedia": null, "reactionVideos": [], @@ -561659,7 +561310,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 16599286, "featuredRunMedia": null, "reactionVideos": [], @@ -561687,7 +561338,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16599337, "featuredRunMedia": null, "reactionVideos": [], @@ -561725,7 +561376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16600123, "featuredRunMedia": null, "reactionVideos": [], @@ -561753,7 +561404,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 268, + "teamId": "2650", "time": 16600540, "featuredRunMedia": null, "reactionVideos": [], @@ -561781,7 +561432,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 16601804, "featuredRunMedia": null, "reactionVideos": [], @@ -561809,7 +561460,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 16602774, "featuredRunMedia": null, "reactionVideos": [], @@ -561842,7 +561493,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 16603780, "featuredRunMedia": null, "reactionVideos": [], @@ -561880,7 +561531,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 16604351, "featuredRunMedia": null, "reactionVideos": [], @@ -561913,7 +561564,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16605896, "featuredRunMedia": null, "reactionVideos": [], @@ -561941,7 +561592,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "1941", "time": 16606516, "featuredRunMedia": null, "reactionVideos": [], @@ -561979,7 +561630,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16606566, "featuredRunMedia": null, "reactionVideos": [], @@ -562012,7 +561663,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 16606579, "featuredRunMedia": null, "reactionVideos": [], @@ -562050,7 +561701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16606752, "featuredRunMedia": null, "reactionVideos": [], @@ -562083,7 +561734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 70, + "teamId": "3253", "time": 16608238, "featuredRunMedia": null, "reactionVideos": [], @@ -562116,7 +561767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 16608606, "featuredRunMedia": null, "reactionVideos": [], @@ -562154,7 +561805,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16608839, "featuredRunMedia": null, "reactionVideos": [], @@ -562187,7 +561838,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 16609178, "featuredRunMedia": null, "reactionVideos": [], @@ -562215,7 +561866,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 16609461, "featuredRunMedia": null, "reactionVideos": [], @@ -562241,7 +561892,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 16609795, "featuredRunMedia": null, "reactionVideos": [], @@ -562274,7 +561925,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 16614726, "featuredRunMedia": null, "reactionVideos": [], @@ -562312,7 +561963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16615282, "featuredRunMedia": null, "reactionVideos": [], @@ -562345,7 +561996,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16616881, "featuredRunMedia": null, "reactionVideos": [], @@ -562378,7 +562029,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 16618614, "featuredRunMedia": null, "reactionVideos": [], @@ -562411,7 +562062,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "1552", "time": 16620725, "featuredRunMedia": null, "reactionVideos": [], @@ -562449,7 +562100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 16621218, "featuredRunMedia": null, "reactionVideos": [], @@ -562482,7 +562133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 16621842, "featuredRunMedia": null, "reactionVideos": [], @@ -562520,7 +562171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16623354, "featuredRunMedia": null, "reactionVideos": [], @@ -562553,7 +562204,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16624995, "featuredRunMedia": null, "reactionVideos": [], @@ -562591,7 +562242,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16626256, "featuredRunMedia": null, "reactionVideos": [], @@ -562619,7 +562270,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16626469, "featuredRunMedia": null, "reactionVideos": [], @@ -562657,7 +562308,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 16627171, "featuredRunMedia": null, "reactionVideos": [], @@ -562685,7 +562336,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 16627418, "featuredRunMedia": null, "reactionVideos": [], @@ -562713,7 +562364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 16628193, "featuredRunMedia": null, "reactionVideos": [], @@ -562746,7 +562397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16629717, "featuredRunMedia": null, "reactionVideos": [], @@ -562784,7 +562435,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 16629727, "featuredRunMedia": null, "reactionVideos": [], @@ -562812,7 +562463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 202, + "teamId": "2541", "time": 16630196, "featuredRunMedia": null, "reactionVideos": [], @@ -562840,7 +562491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 271, + "teamId": "2149", "time": 16631020, "featuredRunMedia": null, "reactionVideos": [], @@ -562868,7 +562519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 16633290, "featuredRunMedia": null, "reactionVideos": [], @@ -562896,7 +562547,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 16634322, "featuredRunMedia": null, "reactionVideos": [], @@ -562924,7 +562575,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 337, + "teamId": "1656", "time": 16640080, "featuredRunMedia": null, "reactionVideos": [], @@ -562952,7 +562603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 16641334, "featuredRunMedia": null, "reactionVideos": [], @@ -562990,7 +562641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 16644105, "featuredRunMedia": null, "reactionVideos": [], @@ -563018,7 +562669,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 16644536, "featuredRunMedia": null, "reactionVideos": [], @@ -563046,7 +562697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 16645432, "featuredRunMedia": null, "reactionVideos": [], @@ -563079,7 +562730,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16645688, "featuredRunMedia": null, "reactionVideos": [], @@ -563112,7 +562763,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 16646116, "featuredRunMedia": null, "reactionVideos": [], @@ -563140,7 +562791,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 243, + "teamId": "3046", "time": 16646262, "featuredRunMedia": null, "reactionVideos": [], @@ -563166,7 +562817,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 16648132, "featuredRunMedia": null, "reactionVideos": [], @@ -563204,7 +562855,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 16650369, "featuredRunMedia": null, "reactionVideos": [], @@ -563232,7 +562883,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 16651418, "featuredRunMedia": null, "reactionVideos": [], @@ -563265,7 +562916,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16656288, "featuredRunMedia": null, "reactionVideos": [], @@ -563298,7 +562949,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 16656866, "featuredRunMedia": null, "reactionVideos": [], @@ -563336,7 +562987,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16657220, "featuredRunMedia": null, "reactionVideos": [], @@ -563364,7 +563015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 16658229, "featuredRunMedia": null, "reactionVideos": [], @@ -563392,7 +563043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16658474, "featuredRunMedia": null, "reactionVideos": [], @@ -563425,7 +563076,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 16658867, "featuredRunMedia": null, "reactionVideos": [], @@ -563458,7 +563109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 16659231, "featuredRunMedia": null, "reactionVideos": [], @@ -563491,7 +563142,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 16659577, "featuredRunMedia": null, "reactionVideos": [], @@ -563519,7 +563170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 16662200, "featuredRunMedia": null, "reactionVideos": [], @@ -563552,7 +563203,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16662359, "featuredRunMedia": null, "reactionVideos": [], @@ -563590,7 +563241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 16663657, "featuredRunMedia": null, "reactionVideos": [], @@ -563623,7 +563274,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 16663862, "featuredRunMedia": null, "reactionVideos": [], @@ -563656,7 +563307,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16665526, "featuredRunMedia": null, "reactionVideos": [], @@ -563684,7 +563335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 16665814, "featuredRunMedia": null, "reactionVideos": [], @@ -563722,7 +563373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 16666125, "featuredRunMedia": null, "reactionVideos": [], @@ -563760,7 +563411,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16667409, "featuredRunMedia": null, "reactionVideos": [], @@ -563798,7 +563449,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 16669009, "featuredRunMedia": null, "reactionVideos": [], @@ -563826,7 +563477,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 16670630, "featuredRunMedia": null, "reactionVideos": [], @@ -563859,7 +563510,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16673208, "featuredRunMedia": null, "reactionVideos": [], @@ -563887,7 +563538,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16673812, "featuredRunMedia": null, "reactionVideos": [], @@ -563920,7 +563571,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 16674105, "featuredRunMedia": null, "reactionVideos": [], @@ -563948,7 +563599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 16674635, "featuredRunMedia": null, "reactionVideos": [], @@ -563976,7 +563627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 16676095, "featuredRunMedia": null, "reactionVideos": [], @@ -564009,7 +563660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16677389, "featuredRunMedia": null, "reactionVideos": [], @@ -564047,7 +563698,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16678631, "featuredRunMedia": null, "reactionVideos": [], @@ -564080,7 +563731,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 16679672, "featuredRunMedia": null, "reactionVideos": [], @@ -564108,7 +563759,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 304, + "teamId": "3044", "time": 16679747, "featuredRunMedia": null, "reactionVideos": [], @@ -564141,7 +563792,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 16680491, "featuredRunMedia": null, "reactionVideos": [], @@ -564179,7 +563830,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 16681053, "featuredRunMedia": null, "reactionVideos": [], @@ -564207,7 +563858,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 16681784, "featuredRunMedia": null, "reactionVideos": [], @@ -564235,7 +563886,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 16683672, "featuredRunMedia": null, "reactionVideos": [], @@ -564273,7 +563924,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 16686204, "featuredRunMedia": null, "reactionVideos": [], @@ -564306,7 +563957,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 16688552, "featuredRunMedia": null, "reactionVideos": [], @@ -564339,7 +563990,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16688552, "featuredRunMedia": null, "reactionVideos": [], @@ -564377,7 +564028,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 55, + "teamId": "2350", "time": 16692037, "featuredRunMedia": null, "reactionVideos": [], @@ -564415,7 +564066,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 221, + "teamId": "2250", "time": 16693199, "featuredRunMedia": null, "reactionVideos": [], @@ -564453,7 +564104,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 16694599, "featuredRunMedia": null, "reactionVideos": [], @@ -564486,7 +564137,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16696762, "featuredRunMedia": null, "reactionVideos": [], @@ -564524,7 +564175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 249, + "teamId": "2354", "time": 16697468, "featuredRunMedia": null, "reactionVideos": [], @@ -564557,7 +564208,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16702059, "featuredRunMedia": null, "reactionVideos": [], @@ -564585,7 +564236,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 16702298, "featuredRunMedia": null, "reactionVideos": [], @@ -564613,7 +564264,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 16702346, "featuredRunMedia": null, "reactionVideos": [], @@ -564646,7 +564297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 16702805, "featuredRunMedia": null, "reactionVideos": [], @@ -564684,7 +564335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16704291, "featuredRunMedia": null, "reactionVideos": [], @@ -564717,7 +564368,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16704329, "featuredRunMedia": null, "reactionVideos": [], @@ -564745,7 +564396,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 248, + "teamId": "3250", "time": 16705391, "featuredRunMedia": null, "reactionVideos": [], @@ -564773,7 +564424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 16705931, "featuredRunMedia": null, "reactionVideos": [], @@ -564806,7 +564457,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16706535, "featuredRunMedia": null, "reactionVideos": [], @@ -564839,7 +564490,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16707921, "featuredRunMedia": null, "reactionVideos": [], @@ -564861,7 +564512,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 16709654, "featuredRunMedia": null, "reactionVideos": [], @@ -564894,7 +564545,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16710490, "featuredRunMedia": null, "reactionVideos": [], @@ -564927,7 +564578,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 16712093, "featuredRunMedia": null, "reactionVideos": [], @@ -564960,7 +564611,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 16712980, "featuredRunMedia": null, "reactionVideos": [], @@ -564998,7 +564649,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 16713689, "featuredRunMedia": null, "reactionVideos": [], @@ -565026,7 +564677,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16716615, "featuredRunMedia": null, "reactionVideos": [], @@ -565064,7 +564715,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16718565, "featuredRunMedia": null, "reactionVideos": [], @@ -565102,7 +564753,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 16720056, "featuredRunMedia": null, "reactionVideos": [], @@ -565140,7 +564791,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 16720195, "featuredRunMedia": null, "reactionVideos": [], @@ -565173,7 +564824,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 16722296, "featuredRunMedia": null, "reactionVideos": [], @@ -565201,7 +564852,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16723668, "featuredRunMedia": null, "reactionVideos": [], @@ -565239,7 +564890,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16726436, "featuredRunMedia": null, "reactionVideos": [], @@ -565272,7 +564923,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16728349, "featuredRunMedia": null, "reactionVideos": [], @@ -565305,7 +564956,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16728473, "featuredRunMedia": null, "reactionVideos": [], @@ -565338,7 +564989,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "2746", "time": 16730193, "featuredRunMedia": null, "reactionVideos": [], @@ -565376,7 +565027,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 16730560, "featuredRunMedia": null, "reactionVideos": [], @@ -565414,7 +565065,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 16732524, "featuredRunMedia": null, "reactionVideos": [], @@ -565447,7 +565098,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 16733242, "featuredRunMedia": null, "reactionVideos": [], @@ -565485,7 +565136,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16733638, "featuredRunMedia": null, "reactionVideos": [], @@ -565513,7 +565164,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 16733938, "featuredRunMedia": null, "reactionVideos": [], @@ -565541,7 +565192,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 16734378, "featuredRunMedia": null, "reactionVideos": [], @@ -565563,7 +565214,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16735070, "featuredRunMedia": null, "reactionVideos": [], @@ -565591,7 +565242,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "2643", "time": 16735285, "featuredRunMedia": null, "reactionVideos": [], @@ -565629,7 +565280,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 222, + "teamId": "1244", "time": 16738499, "featuredRunMedia": null, "reactionVideos": [], @@ -565657,7 +565308,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16738847, "featuredRunMedia": null, "reactionVideos": [], @@ -565695,7 +565346,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 16738936, "featuredRunMedia": null, "reactionVideos": [], @@ -565723,7 +565374,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 16739819, "featuredRunMedia": null, "reactionVideos": [], @@ -565761,7 +565412,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 297, + "teamId": "1546", "time": 16742561, "featuredRunMedia": null, "reactionVideos": [], @@ -565794,7 +565445,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 16745390, "featuredRunMedia": null, "reactionVideos": [], @@ -565832,7 +565483,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16745987, "featuredRunMedia": null, "reactionVideos": [], @@ -565860,7 +565511,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16747090, "featuredRunMedia": null, "reactionVideos": [], @@ -565893,7 +565544,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16747472, "featuredRunMedia": null, "reactionVideos": [], @@ -565926,7 +565577,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16748948, "featuredRunMedia": null, "reactionVideos": [], @@ -565964,7 +565615,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 16749023, "featuredRunMedia": null, "reactionVideos": [], @@ -565997,7 +565648,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16750591, "featuredRunMedia": null, "reactionVideos": [], @@ -566025,7 +565676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16750742, "featuredRunMedia": null, "reactionVideos": [], @@ -566058,7 +565709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16750769, "featuredRunMedia": null, "reactionVideos": [], @@ -566096,7 +565747,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 16751170, "featuredRunMedia": null, "reactionVideos": [], @@ -566124,7 +565775,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 16755906, "featuredRunMedia": null, "reactionVideos": [], @@ -566157,7 +565808,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 123, + "teamId": "2648", "time": 16756253, "featuredRunMedia": null, "reactionVideos": [], @@ -566190,7 +565841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "2151", "time": 16756755, "featuredRunMedia": null, "reactionVideos": [], @@ -566228,7 +565879,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 16757508, "featuredRunMedia": null, "reactionVideos": [], @@ -566256,7 +565907,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 16757728, "featuredRunMedia": null, "reactionVideos": [], @@ -566289,7 +565940,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16758548, "featuredRunMedia": null, "reactionVideos": [], @@ -566317,7 +565968,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 16759482, "featuredRunMedia": null, "reactionVideos": [], @@ -566355,7 +566006,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 16760965, "featuredRunMedia": null, "reactionVideos": [], @@ -566383,7 +566034,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 16761882, "featuredRunMedia": null, "reactionVideos": [], @@ -566411,7 +566062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16762913, "featuredRunMedia": null, "reactionVideos": [], @@ -566449,7 +566100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 16763452, "featuredRunMedia": null, "reactionVideos": [], @@ -566477,7 +566128,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16763612, "featuredRunMedia": null, "reactionVideos": [], @@ -566505,7 +566156,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 16764848, "featuredRunMedia": null, "reactionVideos": [], @@ -566543,7 +566194,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 16764875, "featuredRunMedia": null, "reactionVideos": [], @@ -566581,7 +566232,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16769603, "featuredRunMedia": null, "reactionVideos": [], @@ -566619,7 +566270,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 29, + "teamId": "2448", "time": 16771457, "featuredRunMedia": null, "reactionVideos": [], @@ -566652,7 +566303,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16771865, "featuredRunMedia": null, "reactionVideos": [], @@ -566685,7 +566336,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 16774895, "featuredRunMedia": null, "reactionVideos": [], @@ -566723,7 +566374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "1250", "time": 16775586, "featuredRunMedia": null, "reactionVideos": [], @@ -566756,7 +566407,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 16775617, "featuredRunMedia": null, "reactionVideos": [], @@ -566784,7 +566435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 145, + "teamId": "2345", "time": 16776226, "featuredRunMedia": null, "reactionVideos": [], @@ -566817,7 +566468,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 229, + "teamId": "1853", "time": 16776444, "featuredRunMedia": null, "reactionVideos": [], @@ -566850,7 +566501,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16776942, "featuredRunMedia": null, "reactionVideos": [], @@ -566888,7 +566539,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 76, + "teamId": "2549", "time": 16777432, "featuredRunMedia": null, "reactionVideos": [], @@ -566926,7 +566577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 16778621, "featuredRunMedia": null, "reactionVideos": [], @@ -566959,7 +566610,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16780412, "featuredRunMedia": null, "reactionVideos": [], @@ -566987,7 +566638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16780435, "featuredRunMedia": null, "reactionVideos": [], @@ -567025,7 +566676,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 16783714, "featuredRunMedia": null, "reactionVideos": [], @@ -567063,7 +566714,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16788205, "featuredRunMedia": null, "reactionVideos": [], @@ -567096,7 +566747,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16789534, "featuredRunMedia": null, "reactionVideos": [], @@ -567134,7 +566785,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 191, + "teamId": "1352", "time": 16791085, "featuredRunMedia": null, "reactionVideos": [], @@ -567172,7 +566823,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 16791085, "featuredRunMedia": null, "reactionVideos": [], @@ -567210,7 +566861,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16791172, "featuredRunMedia": null, "reactionVideos": [], @@ -567243,7 +566894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 16791697, "featuredRunMedia": null, "reactionVideos": [], @@ -567271,7 +566922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 16793167, "featuredRunMedia": null, "reactionVideos": [], @@ -567299,7 +566950,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16796926, "featuredRunMedia": null, "reactionVideos": [], @@ -567327,7 +566978,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 16797923, "featuredRunMedia": null, "reactionVideos": [], @@ -567365,7 +567016,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 16799589, "featuredRunMedia": null, "reactionVideos": [], @@ -567393,7 +567044,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "1941", "time": 16800084, "featuredRunMedia": null, "reactionVideos": [], @@ -567421,7 +567072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 16800136, "featuredRunMedia": null, "reactionVideos": [], @@ -567454,7 +567105,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16801312, "featuredRunMedia": null, "reactionVideos": [], @@ -567492,7 +567143,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 16802910, "featuredRunMedia": null, "reactionVideos": [], @@ -567525,7 +567176,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16803270, "featuredRunMedia": null, "reactionVideos": [], @@ -567563,7 +567214,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 83, + "teamId": "2555", "time": 16803470, "featuredRunMedia": null, "reactionVideos": [], @@ -567596,7 +567247,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 16803606, "featuredRunMedia": null, "reactionVideos": [], @@ -567629,7 +567280,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 207, + "teamId": "2855", "time": 16804232, "featuredRunMedia": null, "reactionVideos": [], @@ -567662,7 +567313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16804339, "featuredRunMedia": null, "reactionVideos": [], @@ -567700,7 +567351,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 16806287, "featuredRunMedia": null, "reactionVideos": [], @@ -567728,7 +567379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 16807246, "featuredRunMedia": null, "reactionVideos": [], @@ -567761,7 +567412,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 16808061, "featuredRunMedia": null, "reactionVideos": [], @@ -567789,7 +567440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 157, + "teamId": "1443", "time": 16811515, "featuredRunMedia": null, "reactionVideos": [], @@ -567827,7 +567478,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16811713, "featuredRunMedia": null, "reactionVideos": [], @@ -567860,7 +567511,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16813335, "featuredRunMedia": null, "reactionVideos": [], @@ -567888,7 +567539,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 16814666, "featuredRunMedia": null, "reactionVideos": [], @@ -567910,7 +567561,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16815504, "featuredRunMedia": null, "reactionVideos": [], @@ -567948,7 +567599,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 16818975, "featuredRunMedia": null, "reactionVideos": [], @@ -567974,7 +567625,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 16819006, "featuredRunMedia": null, "reactionVideos": [], @@ -568002,7 +567653,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 16819989, "featuredRunMedia": null, "reactionVideos": [], @@ -568040,7 +567691,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 210, + "teamId": "1852", "time": 16820224, "featuredRunMedia": null, "reactionVideos": [], @@ -568078,7 +567729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 16820642, "featuredRunMedia": null, "reactionVideos": [], @@ -568111,7 +567762,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 16820660, "featuredRunMedia": null, "reactionVideos": [], @@ -568149,7 +567800,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 16820878, "featuredRunMedia": null, "reactionVideos": [], @@ -568177,7 +567828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 16822576, "featuredRunMedia": null, "reactionVideos": [], @@ -568210,7 +567861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 59, + "teamId": "2446", "time": 16824182, "featuredRunMedia": null, "reactionVideos": [], @@ -568243,7 +567894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "2153", "time": 16824615, "featuredRunMedia": null, "reactionVideos": [], @@ -568271,7 +567922,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 16825585, "featuredRunMedia": null, "reactionVideos": [], @@ -568304,7 +567955,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16826462, "featuredRunMedia": null, "reactionVideos": [], @@ -568332,7 +567983,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16827988, "featuredRunMedia": null, "reactionVideos": [], @@ -568370,7 +568021,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16829466, "featuredRunMedia": null, "reactionVideos": [], @@ -568408,7 +568059,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 16830059, "featuredRunMedia": null, "reactionVideos": [], @@ -568436,7 +568087,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16830099, "featuredRunMedia": null, "reactionVideos": [], @@ -568469,7 +568120,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16831910, "featuredRunMedia": null, "reactionVideos": [], @@ -568507,7 +568158,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 16834231, "featuredRunMedia": null, "reactionVideos": [], @@ -568545,7 +568196,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 16834975, "featuredRunMedia": null, "reactionVideos": [], @@ -568578,7 +568229,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 16835355, "featuredRunMedia": null, "reactionVideos": [], @@ -568600,7 +568251,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 16837978, "featuredRunMedia": null, "reactionVideos": [], @@ -568628,7 +568279,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 16838494, "featuredRunMedia": null, "reactionVideos": [], @@ -568666,7 +568317,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 16839045, "featuredRunMedia": null, "reactionVideos": [], @@ -568694,7 +568345,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16840189, "featuredRunMedia": null, "reactionVideos": [], @@ -568732,7 +568383,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 16840402, "featuredRunMedia": null, "reactionVideos": [], @@ -568765,7 +568416,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 56, + "teamId": "2956", "time": 16840478, "featuredRunMedia": null, "reactionVideos": [], @@ -568803,7 +568454,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 127, + "teamId": "1747", "time": 16840537, "featuredRunMedia": null, "reactionVideos": [], @@ -568831,7 +568482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16840875, "featuredRunMedia": null, "reactionVideos": [], @@ -568859,7 +568510,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 16840970, "featuredRunMedia": null, "reactionVideos": [], @@ -568892,7 +568543,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 16841342, "featuredRunMedia": null, "reactionVideos": [], @@ -568920,7 +568571,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 114, + "teamId": "2243", "time": 16841349, "featuredRunMedia": null, "reactionVideos": [], @@ -568948,7 +568599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 265, + "teamId": "1842", "time": 16841737, "featuredRunMedia": null, "reactionVideos": [], @@ -568976,7 +568627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 16847165, "featuredRunMedia": null, "reactionVideos": [], @@ -569009,7 +568660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16847479, "featuredRunMedia": null, "reactionVideos": [], @@ -569037,7 +568688,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16848147, "featuredRunMedia": null, "reactionVideos": [], @@ -569065,7 +568716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 16850562, "featuredRunMedia": null, "reactionVideos": [], @@ -569091,7 +568742,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 16856692, "featuredRunMedia": null, "reactionVideos": [], @@ -569124,7 +568775,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 16856948, "featuredRunMedia": null, "reactionVideos": [], @@ -569152,7 +568803,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 16857434, "featuredRunMedia": null, "reactionVideos": [], @@ -569180,7 +568831,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 16857582, "featuredRunMedia": null, "reactionVideos": [], @@ -569213,7 +568864,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16858254, "featuredRunMedia": null, "reactionVideos": [], @@ -569251,7 +568902,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 272, + "teamId": "2051", "time": 16858372, "featuredRunMedia": null, "reactionVideos": [], @@ -569279,7 +568930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 16859683, "featuredRunMedia": null, "reactionVideos": [], @@ -569312,7 +568963,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16860623, "featuredRunMedia": null, "reactionVideos": [], @@ -569345,7 +568996,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 16861502, "featuredRunMedia": null, "reactionVideos": [], @@ -569373,7 +569024,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 16862273, "featuredRunMedia": null, "reactionVideos": [], @@ -569406,7 +569057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 16862994, "featuredRunMedia": null, "reactionVideos": [], @@ -569434,7 +569085,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 16866170, "featuredRunMedia": null, "reactionVideos": [], @@ -569472,7 +569123,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 228, + "teamId": "1855", "time": 16868477, "featuredRunMedia": null, "reactionVideos": [], @@ -569510,7 +569161,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 16869147, "featuredRunMedia": null, "reactionVideos": [], @@ -569543,7 +569194,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 16870454, "featuredRunMedia": null, "reactionVideos": [], @@ -569576,7 +569227,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16870807, "featuredRunMedia": null, "reactionVideos": [], @@ -569609,7 +569260,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 16872221, "featuredRunMedia": null, "reactionVideos": [], @@ -569637,7 +569288,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 16873199, "featuredRunMedia": null, "reactionVideos": [], @@ -569675,7 +569326,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 16874240, "featuredRunMedia": null, "reactionVideos": [], @@ -569708,7 +569359,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16875911, "featuredRunMedia": null, "reactionVideos": [], @@ -569746,7 +569397,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 16876345, "featuredRunMedia": null, "reactionVideos": [], @@ -569779,7 +569430,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 16876717, "featuredRunMedia": null, "reactionVideos": [], @@ -569812,7 +569463,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16878906, "featuredRunMedia": null, "reactionVideos": [], @@ -569845,7 +569496,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16882262, "featuredRunMedia": null, "reactionVideos": [], @@ -569873,7 +569524,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 309, + "teamId": "1941", "time": 16882318, "featuredRunMedia": null, "reactionVideos": [], @@ -569901,7 +569552,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 16884049, "featuredRunMedia": null, "reactionVideos": [], @@ -569929,7 +569580,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16884426, "featuredRunMedia": null, "reactionVideos": [], @@ -569967,7 +569618,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16885715, "featuredRunMedia": null, "reactionVideos": [], @@ -570005,7 +569656,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 16886060, "featuredRunMedia": null, "reactionVideos": [], @@ -570033,7 +569684,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 16886211, "featuredRunMedia": null, "reactionVideos": [], @@ -570071,7 +569722,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "1250", "time": 16886741, "featuredRunMedia": null, "reactionVideos": [], @@ -570104,7 +569755,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 16887200, "featuredRunMedia": null, "reactionVideos": [], @@ -570137,7 +569788,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 16889838, "featuredRunMedia": null, "reactionVideos": [], @@ -570165,7 +569816,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 16890779, "featuredRunMedia": null, "reactionVideos": [], @@ -570198,7 +569849,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 16891854, "featuredRunMedia": null, "reactionVideos": [], @@ -570231,7 +569882,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 16893853, "featuredRunMedia": null, "reactionVideos": [], @@ -570264,7 +569915,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 16895331, "featuredRunMedia": null, "reactionVideos": [], @@ -570297,7 +569948,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16896787, "featuredRunMedia": null, "reactionVideos": [], @@ -570335,7 +569986,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 16897124, "featuredRunMedia": null, "reactionVideos": [], @@ -570373,7 +570024,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 16897215, "featuredRunMedia": null, "reactionVideos": [], @@ -570406,7 +570057,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 16897543, "featuredRunMedia": null, "reactionVideos": [], @@ -570439,7 +570090,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 16897810, "featuredRunMedia": null, "reactionVideos": [], @@ -570477,7 +570128,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 16899280, "featuredRunMedia": null, "reactionVideos": [], @@ -570510,7 +570161,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16900465, "featuredRunMedia": null, "reactionVideos": [], @@ -570548,7 +570199,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 16903120, "featuredRunMedia": null, "reactionVideos": [], @@ -570581,7 +570232,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 16904649, "featuredRunMedia": null, "reactionVideos": [], @@ -570609,7 +570260,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 16905386, "featuredRunMedia": null, "reactionVideos": [], @@ -570647,7 +570298,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 16906128, "featuredRunMedia": null, "reactionVideos": [], @@ -570685,7 +570336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 16907713, "featuredRunMedia": null, "reactionVideos": [], @@ -570723,7 +570374,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "1752", "time": 16908568, "featuredRunMedia": null, "reactionVideos": [], @@ -570756,7 +570407,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16908934, "featuredRunMedia": null, "reactionVideos": [], @@ -570784,7 +570435,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 16910643, "featuredRunMedia": null, "reactionVideos": [], @@ -570812,7 +570463,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16910931, "featuredRunMedia": null, "reactionVideos": [], @@ -570840,7 +570491,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 16911571, "featuredRunMedia": null, "reactionVideos": [], @@ -570878,7 +570529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16911832, "featuredRunMedia": null, "reactionVideos": [], @@ -570911,7 +570562,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16913504, "featuredRunMedia": null, "reactionVideos": [], @@ -570949,7 +570600,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16913996, "featuredRunMedia": null, "reactionVideos": [], @@ -570987,7 +570638,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 3, + "teamId": "1341", "time": 16916699, "featuredRunMedia": null, "reactionVideos": [], @@ -571020,7 +570671,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 16918293, "featuredRunMedia": null, "reactionVideos": [], @@ -571058,7 +570709,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 16918324, "featuredRunMedia": null, "reactionVideos": [], @@ -571091,7 +570742,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 16918788, "featuredRunMedia": null, "reactionVideos": [], @@ -571129,7 +570780,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 16921082, "featuredRunMedia": null, "reactionVideos": [], @@ -571167,7 +570818,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 16922401, "featuredRunMedia": null, "reactionVideos": [], @@ -571205,7 +570856,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 16922638, "featuredRunMedia": null, "reactionVideos": [], @@ -571238,7 +570889,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 16924699, "featuredRunMedia": null, "reactionVideos": [], @@ -571266,7 +570917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 16925116, "featuredRunMedia": null, "reactionVideos": [], @@ -571299,7 +570950,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 16926396, "featuredRunMedia": null, "reactionVideos": [], @@ -571332,7 +570983,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 16927121, "featuredRunMedia": null, "reactionVideos": [], @@ -571365,7 +571016,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 49, + "teamId": "3050", "time": 16928105, "featuredRunMedia": null, "reactionVideos": [], @@ -571403,7 +571054,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 228, + "teamId": "1855", "time": 16928791, "featuredRunMedia": null, "reactionVideos": [], @@ -571431,7 +571082,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 16928970, "featuredRunMedia": null, "reactionVideos": [], @@ -571464,7 +571115,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 16930787, "featuredRunMedia": null, "reactionVideos": [], @@ -571492,7 +571143,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 16931500, "featuredRunMedia": null, "reactionVideos": [], @@ -571520,7 +571171,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 264, + "teamId": "2651", "time": 16931766, "featuredRunMedia": null, "reactionVideos": [], @@ -571558,7 +571209,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 16932266, "featuredRunMedia": null, "reactionVideos": [], @@ -571596,7 +571247,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16935029, "featuredRunMedia": null, "reactionVideos": [], @@ -571629,7 +571280,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16937408, "featuredRunMedia": null, "reactionVideos": [], @@ -571662,7 +571313,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "2153", "time": 16937778, "featuredRunMedia": null, "reactionVideos": [], @@ -571700,7 +571351,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 16938234, "featuredRunMedia": null, "reactionVideos": [], @@ -571728,7 +571379,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 16940371, "featuredRunMedia": null, "reactionVideos": [], @@ -571761,7 +571412,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "1653", "time": 16940610, "featuredRunMedia": null, "reactionVideos": [], @@ -571789,7 +571440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 16941041, "featuredRunMedia": null, "reactionVideos": [], @@ -571822,7 +571473,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 194, + "teamId": "1954", "time": 16942260, "featuredRunMedia": null, "reactionVideos": [], @@ -571850,7 +571501,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 16942355, "featuredRunMedia": null, "reactionVideos": [], @@ -571883,7 +571534,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "2252", "time": 16942415, "featuredRunMedia": null, "reactionVideos": [], @@ -571911,7 +571562,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 245, + "teamId": "3148", "time": 16942727, "featuredRunMedia": null, "reactionVideos": [], @@ -571949,7 +571600,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 16943442, "featuredRunMedia": null, "reactionVideos": [], @@ -571977,7 +571628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 16944765, "featuredRunMedia": null, "reactionVideos": [], @@ -572010,7 +571661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 16945713, "featuredRunMedia": null, "reactionVideos": [], @@ -572038,7 +571689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 16946219, "featuredRunMedia": null, "reactionVideos": [], @@ -572071,7 +571722,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "2151", "time": 16951799, "featuredRunMedia": null, "reactionVideos": [], @@ -572099,7 +571750,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 16952450, "featuredRunMedia": null, "reactionVideos": [], @@ -572137,7 +571788,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 16953420, "featuredRunMedia": null, "reactionVideos": [], @@ -572170,7 +571821,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 172, + "teamId": "1841", "time": 16953478, "featuredRunMedia": null, "reactionVideos": [], @@ -572208,7 +571859,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 16955574, "featuredRunMedia": null, "reactionVideos": [], @@ -572236,7 +571887,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 16960003, "featuredRunMedia": null, "reactionVideos": [], @@ -572274,7 +571925,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 16960011, "featuredRunMedia": null, "reactionVideos": [], @@ -572312,7 +571963,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 16960095, "featuredRunMedia": null, "reactionVideos": [], @@ -572350,7 +572001,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 16960487, "featuredRunMedia": null, "reactionVideos": [], @@ -572388,7 +572039,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 16960513, "featuredRunMedia": null, "reactionVideos": [], @@ -572421,7 +572072,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16961330, "featuredRunMedia": null, "reactionVideos": [], @@ -572449,7 +572100,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 16962530, "featuredRunMedia": null, "reactionVideos": [], @@ -572482,7 +572133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 16965112, "featuredRunMedia": null, "reactionVideos": [], @@ -572515,7 +572166,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 16965594, "featuredRunMedia": null, "reactionVideos": [], @@ -572543,7 +572194,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 16966642, "featuredRunMedia": null, "reactionVideos": [], @@ -572576,7 +572227,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 16968360, "featuredRunMedia": null, "reactionVideos": [], @@ -572614,7 +572265,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 16969693, "featuredRunMedia": null, "reactionVideos": [], @@ -572647,7 +572298,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 16970916, "featuredRunMedia": null, "reactionVideos": [], @@ -572675,7 +572326,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 116, + "teamId": "1956", "time": 16971505, "featuredRunMedia": null, "reactionVideos": [], @@ -572697,7 +572348,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 16971602, "featuredRunMedia": null, "reactionVideos": [], @@ -572735,7 +572386,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 16972127, "featuredRunMedia": null, "reactionVideos": [], @@ -572768,7 +572419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 16973725, "featuredRunMedia": null, "reactionVideos": [], @@ -572801,7 +572452,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 16975389, "featuredRunMedia": null, "reactionVideos": [], @@ -572839,7 +572490,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 198, + "teamId": "1248", "time": 16977195, "featuredRunMedia": null, "reactionVideos": [], @@ -572867,7 +572518,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 16978619, "featuredRunMedia": null, "reactionVideos": [], @@ -572895,7 +572546,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 16978674, "featuredRunMedia": null, "reactionVideos": [], @@ -572917,7 +572568,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 16980445, "featuredRunMedia": null, "reactionVideos": [], @@ -572950,7 +572601,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "3247", "time": 16980855, "featuredRunMedia": null, "reactionVideos": [], @@ -572983,7 +572634,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 16981939, "featuredRunMedia": null, "reactionVideos": [], @@ -573016,7 +572667,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 16982394, "featuredRunMedia": null, "reactionVideos": [], @@ -573044,7 +572695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 310, + "teamId": "1155", "time": 16982560, "featuredRunMedia": null, "reactionVideos": [], @@ -573082,7 +572733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 16982941, "featuredRunMedia": null, "reactionVideos": [], @@ -573110,7 +572761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 16983612, "featuredRunMedia": null, "reactionVideos": [], @@ -573138,7 +572789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 16983755, "featuredRunMedia": null, "reactionVideos": [], @@ -573171,7 +572822,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 16984185, "featuredRunMedia": null, "reactionVideos": [], @@ -573199,7 +572850,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 16985390, "featuredRunMedia": null, "reactionVideos": [], @@ -573227,7 +572878,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 16987322, "featuredRunMedia": null, "reactionVideos": [], @@ -573255,7 +572906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 16987471, "featuredRunMedia": null, "reactionVideos": [], @@ -573288,7 +572939,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 16988772, "featuredRunMedia": null, "reactionVideos": [], @@ -573326,7 +572977,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 16989203, "featuredRunMedia": null, "reactionVideos": [], @@ -573354,7 +573005,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 217, + "teamId": "3150", "time": 16989276, "featuredRunMedia": null, "reactionVideos": [], @@ -573387,7 +573038,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 16989516, "featuredRunMedia": null, "reactionVideos": [], @@ -573420,7 +573071,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 16989566, "featuredRunMedia": null, "reactionVideos": [], @@ -573458,7 +573109,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 13, + "teamId": "3245", "time": 16993559, "featuredRunMedia": null, "reactionVideos": [], @@ -573486,7 +573137,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 16993741, "featuredRunMedia": null, "reactionVideos": [], @@ -573524,7 +573175,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 16994311, "featuredRunMedia": null, "reactionVideos": [], @@ -573557,7 +573208,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 16995220, "featuredRunMedia": null, "reactionVideos": [], @@ -573585,7 +573236,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 16997012, "featuredRunMedia": null, "reactionVideos": [], @@ -573623,7 +573274,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 16997037, "featuredRunMedia": null, "reactionVideos": [], @@ -573651,7 +573302,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 16997871, "featuredRunMedia": null, "reactionVideos": [], @@ -573689,7 +573340,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 16997898, "featuredRunMedia": null, "reactionVideos": [], @@ -573717,7 +573368,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 16997980, "featuredRunMedia": null, "reactionVideos": [], @@ -573750,7 +573401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17000011, "featuredRunMedia": null, "reactionVideos": [], @@ -573788,7 +573439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 17000777, "featuredRunMedia": null, "reactionVideos": [], @@ -573816,7 +573467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 17001027, "featuredRunMedia": null, "reactionVideos": [], @@ -573854,7 +573505,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17002496, "featuredRunMedia": null, "reactionVideos": [], @@ -573892,7 +573543,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 17004344, "featuredRunMedia": null, "reactionVideos": [], @@ -573930,7 +573581,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17005469, "featuredRunMedia": null, "reactionVideos": [], @@ -573958,7 +573609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 17005666, "featuredRunMedia": null, "reactionVideos": [], @@ -573986,7 +573637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 17009312, "featuredRunMedia": null, "reactionVideos": [], @@ -574024,7 +573675,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17009736, "featuredRunMedia": null, "reactionVideos": [], @@ -574057,7 +573708,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17011696, "featuredRunMedia": null, "reactionVideos": [], @@ -574090,7 +573741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17012885, "featuredRunMedia": null, "reactionVideos": [], @@ -574128,7 +573779,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 17013250, "featuredRunMedia": null, "reactionVideos": [], @@ -574156,7 +573807,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 191, + "teamId": "1352", "time": 17013411, "featuredRunMedia": null, "reactionVideos": [], @@ -574189,7 +573840,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "2154", "time": 17014056, "featuredRunMedia": null, "reactionVideos": [], @@ -574222,7 +573873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17014829, "featuredRunMedia": null, "reactionVideos": [], @@ -574255,7 +573906,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 129, + "teamId": "3143", "time": 17015493, "featuredRunMedia": null, "reactionVideos": [], @@ -574283,7 +573934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 17015771, "featuredRunMedia": null, "reactionVideos": [], @@ -574311,7 +573962,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 17016705, "featuredRunMedia": null, "reactionVideos": [], @@ -574349,7 +574000,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17017808, "featuredRunMedia": null, "reactionVideos": [], @@ -574382,7 +574033,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 17018526, "featuredRunMedia": null, "reactionVideos": [], @@ -574420,7 +574071,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 331, + "teamId": "1356", "time": 17018848, "featuredRunMedia": null, "reactionVideos": [], @@ -574448,7 +574099,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17020106, "featuredRunMedia": null, "reactionVideos": [], @@ -574481,7 +574132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "2552", "time": 17022044, "featuredRunMedia": null, "reactionVideos": [], @@ -574514,7 +574165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 17022103, "featuredRunMedia": null, "reactionVideos": [], @@ -574542,7 +574193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 17022240, "featuredRunMedia": null, "reactionVideos": [], @@ -574570,7 +574221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 102, + "teamId": "1256", "time": 17027920, "featuredRunMedia": null, "reactionVideos": [], @@ -574603,7 +574254,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 17028374, "featuredRunMedia": null, "reactionVideos": [], @@ -574631,7 +574282,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17028695, "featuredRunMedia": null, "reactionVideos": [], @@ -574669,7 +574320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17030186, "featuredRunMedia": null, "reactionVideos": [], @@ -574702,7 +574353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17030358, "featuredRunMedia": null, "reactionVideos": [], @@ -574735,7 +574386,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17033144, "featuredRunMedia": null, "reactionVideos": [], @@ -574763,7 +574414,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 296, + "teamId": "1452", "time": 17036773, "featuredRunMedia": null, "reactionVideos": [], @@ -574791,7 +574442,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 17037424, "featuredRunMedia": null, "reactionVideos": [], @@ -574824,7 +574475,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 17037901, "featuredRunMedia": null, "reactionVideos": [], @@ -574862,7 +574513,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17038244, "featuredRunMedia": null, "reactionVideos": [], @@ -574890,7 +574541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17039696, "featuredRunMedia": null, "reactionVideos": [], @@ -574918,7 +574569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 17040574, "featuredRunMedia": null, "reactionVideos": [], @@ -574946,7 +574597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17041396, "featuredRunMedia": null, "reactionVideos": [], @@ -574984,7 +574635,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17043118, "featuredRunMedia": null, "reactionVideos": [], @@ -575012,7 +574663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 166, + "teamId": "2751", "time": 17044872, "featuredRunMedia": null, "reactionVideos": [], @@ -575045,7 +574696,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 17045027, "featuredRunMedia": null, "reactionVideos": [], @@ -575083,7 +574734,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 17046953, "featuredRunMedia": null, "reactionVideos": [], @@ -575116,7 +574767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 17047114, "featuredRunMedia": null, "reactionVideos": [], @@ -575149,7 +574800,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 17048440, "featuredRunMedia": null, "reactionVideos": [], @@ -575177,7 +574828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 17048949, "featuredRunMedia": null, "reactionVideos": [], @@ -575210,7 +574861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 17051896, "featuredRunMedia": null, "reactionVideos": [], @@ -575243,7 +574894,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 17052111, "featuredRunMedia": null, "reactionVideos": [], @@ -575276,7 +574927,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17056036, "featuredRunMedia": null, "reactionVideos": [], @@ -575314,7 +574965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 17056583, "featuredRunMedia": null, "reactionVideos": [], @@ -575342,7 +574993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 17056656, "featuredRunMedia": null, "reactionVideos": [], @@ -575380,7 +575031,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 17056689, "featuredRunMedia": null, "reactionVideos": [], @@ -575418,7 +575069,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 17057448, "featuredRunMedia": null, "reactionVideos": [], @@ -575456,7 +575107,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "2146", "time": 17057750, "featuredRunMedia": null, "reactionVideos": [], @@ -575484,7 +575135,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17058422, "featuredRunMedia": null, "reactionVideos": [], @@ -575512,7 +575163,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17058989, "featuredRunMedia": null, "reactionVideos": [], @@ -575550,7 +575201,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 17061722, "featuredRunMedia": null, "reactionVideos": [], @@ -575583,7 +575234,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 17062111, "featuredRunMedia": null, "reactionVideos": [], @@ -575621,7 +575272,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 22, + "teamId": "2254", "time": 17064151, "featuredRunMedia": null, "reactionVideos": [], @@ -575649,7 +575300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17065038, "featuredRunMedia": null, "reactionVideos": [], @@ -575677,7 +575328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17065241, "featuredRunMedia": null, "reactionVideos": [], @@ -575705,7 +575356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17067155, "featuredRunMedia": null, "reactionVideos": [], @@ -575738,7 +575389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "2154", "time": 17067273, "featuredRunMedia": null, "reactionVideos": [], @@ -575771,7 +575422,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "3251", "time": 17067283, "featuredRunMedia": null, "reactionVideos": [], @@ -575799,7 +575450,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17068622, "featuredRunMedia": null, "reactionVideos": [], @@ -575827,7 +575478,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 17069630, "featuredRunMedia": null, "reactionVideos": [], @@ -575855,7 +575506,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17070015, "featuredRunMedia": null, "reactionVideos": [], @@ -575888,7 +575539,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17070381, "featuredRunMedia": null, "reactionVideos": [], @@ -575926,7 +575577,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 17071853, "featuredRunMedia": null, "reactionVideos": [], @@ -575964,7 +575615,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 17073888, "featuredRunMedia": null, "reactionVideos": [], @@ -576002,7 +575653,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17075283, "featuredRunMedia": null, "reactionVideos": [], @@ -576030,7 +575681,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 317, + "teamId": "2741", "time": 17075675, "featuredRunMedia": null, "reactionVideos": [], @@ -576063,7 +575714,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17075950, "featuredRunMedia": null, "reactionVideos": [], @@ -576096,7 +575747,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17078347, "featuredRunMedia": null, "reactionVideos": [], @@ -576129,7 +575780,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "2552", "time": 17079401, "featuredRunMedia": null, "reactionVideos": [], @@ -576162,7 +575813,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 317, + "teamId": "2741", "time": 17083740, "featuredRunMedia": null, "reactionVideos": [], @@ -576190,7 +575841,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 173, + "teamId": "2342", "time": 17085151, "featuredRunMedia": null, "reactionVideos": [], @@ -576223,7 +575874,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "2153", "time": 17085550, "featuredRunMedia": null, "reactionVideos": [], @@ -576251,7 +575902,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17090274, "featuredRunMedia": null, "reactionVideos": [], @@ -576279,7 +575930,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 17091674, "featuredRunMedia": null, "reactionVideos": [], @@ -576307,7 +575958,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17092031, "featuredRunMedia": null, "reactionVideos": [], @@ -576340,7 +575991,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 50, + "teamId": "1450", "time": 17092891, "featuredRunMedia": null, "reactionVideos": [], @@ -576378,7 +576029,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17093269, "featuredRunMedia": null, "reactionVideos": [], @@ -576416,7 +576067,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17093484, "featuredRunMedia": null, "reactionVideos": [], @@ -576454,7 +576105,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17093759, "featuredRunMedia": null, "reactionVideos": [], @@ -576482,7 +576133,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 17094568, "featuredRunMedia": null, "reactionVideos": [], @@ -576515,7 +576166,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "2552", "time": 17095846, "featuredRunMedia": null, "reactionVideos": [], @@ -576548,7 +576199,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 1, + "teamId": "2847", "time": 17097157, "featuredRunMedia": null, "reactionVideos": [], @@ -576581,7 +576232,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 17099056, "featuredRunMedia": null, "reactionVideos": [], @@ -576614,7 +576265,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17099444, "featuredRunMedia": null, "reactionVideos": [], @@ -576647,7 +576298,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17099625, "featuredRunMedia": null, "reactionVideos": [], @@ -576685,7 +576336,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 89, + "teamId": "2652", "time": 17100075, "featuredRunMedia": null, "reactionVideos": [], @@ -576713,7 +576364,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17100217, "featuredRunMedia": null, "reactionVideos": [], @@ -576746,7 +576397,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 17100349, "featuredRunMedia": null, "reactionVideos": [], @@ -576774,7 +576425,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 31, + "teamId": "2955", "time": 17101081, "featuredRunMedia": null, "reactionVideos": [], @@ -576802,7 +576453,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17101116, "featuredRunMedia": null, "reactionVideos": [], @@ -576830,7 +576481,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 321, + "teamId": "3054", "time": 17101560, "featuredRunMedia": null, "reactionVideos": [], @@ -576858,7 +576509,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 17102928, "featuredRunMedia": null, "reactionVideos": [], @@ -576891,7 +576542,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17104884, "featuredRunMedia": null, "reactionVideos": [], @@ -576919,7 +576570,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17105452, "featuredRunMedia": null, "reactionVideos": [], @@ -576947,7 +576598,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17108540, "featuredRunMedia": null, "reactionVideos": [], @@ -576975,7 +576626,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17110273, "featuredRunMedia": null, "reactionVideos": [], @@ -577003,7 +576654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17111282, "featuredRunMedia": null, "reactionVideos": [], @@ -577031,7 +576682,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "2742", "time": 17112188, "featuredRunMedia": null, "reactionVideos": [], @@ -577069,7 +576720,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 17112722, "featuredRunMedia": null, "reactionVideos": [], @@ -577102,7 +576753,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "2151", "time": 17112853, "featuredRunMedia": null, "reactionVideos": [], @@ -577135,7 +576786,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17116842, "featuredRunMedia": null, "reactionVideos": [], @@ -577163,7 +576814,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 17117019, "featuredRunMedia": null, "reactionVideos": [], @@ -577196,7 +576847,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 17117057, "featuredRunMedia": null, "reactionVideos": [], @@ -577229,7 +576880,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "2252", "time": 17117304, "featuredRunMedia": null, "reactionVideos": [], @@ -577267,7 +576918,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 17117928, "featuredRunMedia": null, "reactionVideos": [], @@ -577300,7 +576951,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17118274, "featuredRunMedia": null, "reactionVideos": [], @@ -577338,7 +576989,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 17118780, "featuredRunMedia": null, "reactionVideos": [], @@ -577366,7 +577017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 17118953, "featuredRunMedia": null, "reactionVideos": [], @@ -577399,7 +577050,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17119159, "featuredRunMedia": null, "reactionVideos": [], @@ -577425,7 +577076,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 17119844, "featuredRunMedia": null, "reactionVideos": [], @@ -577453,7 +577104,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17120432, "featuredRunMedia": null, "reactionVideos": [], @@ -577491,7 +577142,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 17122993, "featuredRunMedia": null, "reactionVideos": [], @@ -577513,7 +577164,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17123458, "featuredRunMedia": null, "reactionVideos": [], @@ -577541,7 +577192,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17123869, "featuredRunMedia": null, "reactionVideos": [], @@ -577569,7 +577220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 17124731, "featuredRunMedia": null, "reactionVideos": [], @@ -577602,7 +577253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "1552", "time": 17126370, "featuredRunMedia": null, "reactionVideos": [], @@ -577635,7 +577286,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 17128008, "featuredRunMedia": null, "reactionVideos": [], @@ -577668,7 +577319,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17128492, "featuredRunMedia": null, "reactionVideos": [], @@ -577696,7 +577347,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 17128605, "featuredRunMedia": null, "reactionVideos": [], @@ -577729,7 +577380,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 17129374, "featuredRunMedia": null, "reactionVideos": [], @@ -577767,7 +577418,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 17131253, "featuredRunMedia": null, "reactionVideos": [], @@ -577805,7 +577456,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 17132909, "featuredRunMedia": null, "reactionVideos": [], @@ -577838,7 +577489,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17133022, "featuredRunMedia": null, "reactionVideos": [], @@ -577866,7 +577517,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17133054, "featuredRunMedia": null, "reactionVideos": [], @@ -577904,7 +577555,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 275, + "teamId": "2249", "time": 17134009, "featuredRunMedia": null, "reactionVideos": [], @@ -577937,7 +577588,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17135391, "featuredRunMedia": null, "reactionVideos": [], @@ -577975,7 +577626,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 311, + "teamId": "3055", "time": 17137339, "featuredRunMedia": null, "reactionVideos": [], @@ -578003,7 +577654,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17137486, "featuredRunMedia": null, "reactionVideos": [], @@ -578029,7 +577680,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17139122, "featuredRunMedia": null, "reactionVideos": [], @@ -578062,7 +577713,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17139417, "featuredRunMedia": null, "reactionVideos": [], @@ -578095,7 +577746,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 82, + "teamId": "2553", "time": 17140263, "featuredRunMedia": null, "reactionVideos": [], @@ -578133,7 +577784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 79, + "teamId": "1548", "time": 17140864, "featuredRunMedia": null, "reactionVideos": [], @@ -578171,7 +577822,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 152, + "teamId": "1253", "time": 17142993, "featuredRunMedia": null, "reactionVideos": [], @@ -578209,7 +577860,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 17143103, "featuredRunMedia": null, "reactionVideos": [], @@ -578237,7 +577888,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 107, + "teamId": "1952", "time": 17145706, "featuredRunMedia": null, "reactionVideos": [], @@ -578275,7 +577926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17146389, "featuredRunMedia": null, "reactionVideos": [], @@ -578313,7 +577964,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 17146725, "featuredRunMedia": null, "reactionVideos": [], @@ -578346,7 +577997,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17147004, "featuredRunMedia": null, "reactionVideos": [], @@ -578374,7 +578025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 17147457, "featuredRunMedia": null, "reactionVideos": [], @@ -578412,7 +578063,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 17148770, "featuredRunMedia": null, "reactionVideos": [], @@ -578450,7 +578101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 17150257, "featuredRunMedia": null, "reactionVideos": [], @@ -578478,7 +578129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17150957, "featuredRunMedia": null, "reactionVideos": [], @@ -578511,7 +578162,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17151969, "featuredRunMedia": null, "reactionVideos": [], @@ -578539,7 +578190,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17153640, "featuredRunMedia": null, "reactionVideos": [], @@ -578572,7 +578223,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 17158142, "featuredRunMedia": null, "reactionVideos": [], @@ -578600,7 +578251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17158329, "featuredRunMedia": null, "reactionVideos": [], @@ -578633,7 +578284,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17158820, "featuredRunMedia": null, "reactionVideos": [], @@ -578666,7 +578317,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17159678, "featuredRunMedia": null, "reactionVideos": [], @@ -578704,7 +578355,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17160074, "featuredRunMedia": null, "reactionVideos": [], @@ -578742,7 +578393,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 17161026, "featuredRunMedia": null, "reactionVideos": [], @@ -578780,7 +578431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 17161786, "featuredRunMedia": null, "reactionVideos": [], @@ -578818,7 +578469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17163032, "featuredRunMedia": null, "reactionVideos": [], @@ -578846,7 +578497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17166668, "featuredRunMedia": null, "reactionVideos": [], @@ -578874,7 +578525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17169704, "featuredRunMedia": null, "reactionVideos": [], @@ -578912,7 +578563,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 17170119, "featuredRunMedia": null, "reactionVideos": [], @@ -578945,7 +578596,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 17171165, "featuredRunMedia": null, "reactionVideos": [], @@ -578983,7 +578634,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 92, + "teamId": "1141", "time": 17171404, "featuredRunMedia": null, "reactionVideos": [], @@ -579016,7 +578667,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17171951, "featuredRunMedia": null, "reactionVideos": [], @@ -579044,7 +578695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 17172505, "featuredRunMedia": null, "reactionVideos": [], @@ -579082,7 +578733,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17176396, "featuredRunMedia": null, "reactionVideos": [], @@ -579115,7 +578766,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17177205, "featuredRunMedia": null, "reactionVideos": [], @@ -579143,7 +578794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17178533, "featuredRunMedia": null, "reactionVideos": [], @@ -579169,7 +578820,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17179508, "featuredRunMedia": null, "reactionVideos": [], @@ -579197,7 +578848,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 17179568, "featuredRunMedia": null, "reactionVideos": [], @@ -579225,7 +578876,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 17181389, "featuredRunMedia": null, "reactionVideos": [], @@ -579253,7 +578904,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17182291, "featuredRunMedia": null, "reactionVideos": [], @@ -579275,7 +578926,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17185836, "featuredRunMedia": null, "reactionVideos": [], @@ -579308,7 +578959,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17186066, "featuredRunMedia": null, "reactionVideos": [], @@ -579336,7 +578987,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 17188434, "featuredRunMedia": null, "reactionVideos": [], @@ -579364,7 +579015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 17188533, "featuredRunMedia": null, "reactionVideos": [], @@ -579402,7 +579053,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 17188996, "featuredRunMedia": null, "reactionVideos": [], @@ -579435,7 +579086,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 17189353, "featuredRunMedia": null, "reactionVideos": [], @@ -579463,7 +579114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17190565, "featuredRunMedia": null, "reactionVideos": [], @@ -579501,7 +579152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17192017, "featuredRunMedia": null, "reactionVideos": [], @@ -579534,7 +579185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17194952, "featuredRunMedia": null, "reactionVideos": [], @@ -579572,7 +579223,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 17194977, "featuredRunMedia": null, "reactionVideos": [], @@ -579600,7 +579251,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17195137, "featuredRunMedia": null, "reactionVideos": [], @@ -579633,7 +579284,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 17195321, "featuredRunMedia": null, "reactionVideos": [], @@ -579671,7 +579322,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17195667, "featuredRunMedia": null, "reactionVideos": [], @@ -579709,7 +579360,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 17197233, "featuredRunMedia": null, "reactionVideos": [], @@ -579737,7 +579388,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 17197818, "featuredRunMedia": null, "reactionVideos": [], @@ -579765,7 +579416,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17198129, "featuredRunMedia": null, "reactionVideos": [], @@ -579793,7 +579444,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 255, + "teamId": "1644", "time": 17200981, "featuredRunMedia": null, "reactionVideos": [], @@ -579826,7 +579477,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17201610, "featuredRunMedia": null, "reactionVideos": [], @@ -579864,7 +579515,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 17202670, "featuredRunMedia": null, "reactionVideos": [], @@ -579897,7 +579548,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17203449, "featuredRunMedia": null, "reactionVideos": [], @@ -579930,7 +579581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17204056, "featuredRunMedia": null, "reactionVideos": [], @@ -579963,7 +579614,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17207308, "featuredRunMedia": null, "reactionVideos": [], @@ -579991,7 +579642,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17207680, "featuredRunMedia": null, "reactionVideos": [], @@ -580024,7 +579675,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17210802, "featuredRunMedia": null, "reactionVideos": [], @@ -580052,7 +579703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 17212324, "featuredRunMedia": null, "reactionVideos": [], @@ -580090,7 +579741,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 17212376, "featuredRunMedia": null, "reactionVideos": [], @@ -580128,7 +579779,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17212473, "featuredRunMedia": null, "reactionVideos": [], @@ -580166,7 +579817,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17212689, "featuredRunMedia": null, "reactionVideos": [], @@ -580194,7 +579845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 17213562, "featuredRunMedia": null, "reactionVideos": [], @@ -580232,7 +579883,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17214057, "featuredRunMedia": null, "reactionVideos": [], @@ -580260,7 +579911,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 17215082, "featuredRunMedia": null, "reactionVideos": [], @@ -580288,7 +579939,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17215408, "featuredRunMedia": null, "reactionVideos": [], @@ -580316,7 +579967,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 126, + "teamId": "1741", "time": 17217211, "featuredRunMedia": null, "reactionVideos": [], @@ -580344,7 +579995,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17217222, "featuredRunMedia": null, "reactionVideos": [], @@ -580382,7 +580033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 17218475, "featuredRunMedia": null, "reactionVideos": [], @@ -580410,7 +580061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17219328, "featuredRunMedia": null, "reactionVideos": [], @@ -580438,7 +580089,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 17221204, "featuredRunMedia": null, "reactionVideos": [], @@ -580471,7 +580122,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 156, + "teamId": "1447", "time": 17222406, "featuredRunMedia": null, "reactionVideos": [], @@ -580499,7 +580150,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 214, + "teamId": "1454", "time": 17225326, "featuredRunMedia": null, "reactionVideos": [], @@ -580532,7 +580183,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 17225704, "featuredRunMedia": null, "reactionVideos": [], @@ -580565,7 +580216,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 253, + "teamId": "2153", "time": 17226445, "featuredRunMedia": null, "reactionVideos": [], @@ -580603,7 +580254,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 17227650, "featuredRunMedia": null, "reactionVideos": [], @@ -580636,7 +580287,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17228462, "featuredRunMedia": null, "reactionVideos": [], @@ -580664,7 +580315,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17228971, "featuredRunMedia": null, "reactionVideos": [], @@ -580702,7 +580353,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17229021, "featuredRunMedia": null, "reactionVideos": [], @@ -580740,7 +580391,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 234, + "teamId": "1254", "time": 17229813, "featuredRunMedia": null, "reactionVideos": [], @@ -580773,7 +580424,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 17231047, "featuredRunMedia": null, "reactionVideos": [], @@ -580801,7 +580452,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 282, + "teamId": "1947", "time": 17232189, "featuredRunMedia": null, "reactionVideos": [], @@ -580834,7 +580485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17232403, "featuredRunMedia": null, "reactionVideos": [], @@ -580872,7 +580523,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 17233500, "featuredRunMedia": null, "reactionVideos": [], @@ -580910,7 +580561,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 17233522, "featuredRunMedia": null, "reactionVideos": [], @@ -580943,7 +580594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17234173, "featuredRunMedia": null, "reactionVideos": [], @@ -580971,7 +580622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 192, + "teamId": "1849", "time": 17236910, "featuredRunMedia": null, "reactionVideos": [], @@ -581004,7 +580655,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 38, + "teamId": "2053", "time": 17240304, "featuredRunMedia": null, "reactionVideos": [], @@ -581042,7 +580693,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17241301, "featuredRunMedia": null, "reactionVideos": [], @@ -581080,7 +580731,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17242443, "featuredRunMedia": null, "reactionVideos": [], @@ -581113,7 +580764,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17242496, "featuredRunMedia": null, "reactionVideos": [], @@ -581141,7 +580792,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17243325, "featuredRunMedia": null, "reactionVideos": [], @@ -581174,7 +580825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17243718, "featuredRunMedia": null, "reactionVideos": [], @@ -581200,7 +580851,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 17244158, "featuredRunMedia": null, "reactionVideos": [], @@ -581233,7 +580884,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17244411, "featuredRunMedia": null, "reactionVideos": [], @@ -581261,7 +580912,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 17246494, "featuredRunMedia": null, "reactionVideos": [], @@ -581299,7 +580950,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 17247474, "featuredRunMedia": null, "reactionVideos": [], @@ -581337,7 +580988,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 17247764, "featuredRunMedia": null, "reactionVideos": [], @@ -581375,7 +581026,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 331, + "teamId": "1356", "time": 17248096, "featuredRunMedia": null, "reactionVideos": [], @@ -581413,7 +581064,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17248202, "featuredRunMedia": null, "reactionVideos": [], @@ -581446,7 +581097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17249792, "featuredRunMedia": null, "reactionVideos": [], @@ -581474,7 +581125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 17250576, "featuredRunMedia": null, "reactionVideos": [], @@ -581502,7 +581153,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17252671, "featuredRunMedia": null, "reactionVideos": [], @@ -581540,7 +581191,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 198, + "teamId": "1248", "time": 17252815, "featuredRunMedia": null, "reactionVideos": [], @@ -581573,7 +581224,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 120, + "teamId": "1845", "time": 17255103, "featuredRunMedia": null, "reactionVideos": [], @@ -581611,7 +581262,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 17255410, "featuredRunMedia": null, "reactionVideos": [], @@ -581639,7 +581290,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17256099, "featuredRunMedia": null, "reactionVideos": [], @@ -581677,7 +581328,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 176, + "teamId": "3045", "time": 17256487, "featuredRunMedia": null, "reactionVideos": [], @@ -581715,7 +581366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 5, + "teamId": "1351", "time": 17257274, "featuredRunMedia": null, "reactionVideos": [], @@ -581743,7 +581394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17257990, "featuredRunMedia": null, "reactionVideos": [], @@ -581776,7 +581427,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 17258332, "featuredRunMedia": null, "reactionVideos": [], @@ -581804,7 +581455,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17259036, "featuredRunMedia": null, "reactionVideos": [], @@ -581837,7 +581488,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 17259799, "featuredRunMedia": null, "reactionVideos": [], @@ -581875,7 +581526,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 17259935, "featuredRunMedia": null, "reactionVideos": [], @@ -581903,7 +581554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 17260085, "featuredRunMedia": null, "reactionVideos": [], @@ -581931,7 +581582,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17260254, "featuredRunMedia": null, "reactionVideos": [], @@ -581969,7 +581620,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 17260475, "featuredRunMedia": null, "reactionVideos": [], @@ -582002,7 +581653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17260740, "featuredRunMedia": null, "reactionVideos": [], @@ -582040,7 +581691,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 17261161, "featuredRunMedia": null, "reactionVideos": [], @@ -582078,7 +581729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 17261161, "featuredRunMedia": null, "reactionVideos": [], @@ -582100,7 +581751,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 54, + "teamId": "2155", "time": 17261305, "featuredRunMedia": null, "reactionVideos": [], @@ -582133,7 +581784,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17261848, "featuredRunMedia": null, "reactionVideos": [], @@ -582161,7 +581812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17262146, "featuredRunMedia": null, "reactionVideos": [], @@ -582189,7 +581840,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17264038, "featuredRunMedia": null, "reactionVideos": [], @@ -582222,7 +581873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17266571, "featuredRunMedia": null, "reactionVideos": [], @@ -582260,7 +581911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 17266999, "featuredRunMedia": null, "reactionVideos": [], @@ -582298,7 +581949,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 17267161, "featuredRunMedia": null, "reactionVideos": [], @@ -582320,7 +581971,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 17269382, "featuredRunMedia": null, "reactionVideos": [], @@ -582358,7 +582009,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 17269422, "featuredRunMedia": null, "reactionVideos": [], @@ -582396,7 +582047,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17270395, "featuredRunMedia": null, "reactionVideos": [], @@ -582429,7 +582080,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 17270620, "featuredRunMedia": null, "reactionVideos": [], @@ -582451,7 +582102,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17271165, "featuredRunMedia": null, "reactionVideos": [], @@ -582489,7 +582140,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 308, + "teamId": "1648", "time": 17272629, "featuredRunMedia": null, "reactionVideos": [], @@ -582517,7 +582168,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17273181, "featuredRunMedia": null, "reactionVideos": [], @@ -582555,7 +582206,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17273476, "featuredRunMedia": null, "reactionVideos": [], @@ -582593,7 +582244,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17273914, "featuredRunMedia": null, "reactionVideos": [], @@ -582621,7 +582272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 120, + "teamId": "1845", "time": 17275513, "featuredRunMedia": null, "reactionVideos": [], @@ -582649,7 +582300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 17275609, "featuredRunMedia": null, "reactionVideos": [], @@ -582687,7 +582338,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17277210, "featuredRunMedia": null, "reactionVideos": [], @@ -582725,7 +582376,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "2146", "time": 17280840, "featuredRunMedia": null, "reactionVideos": [], @@ -582758,7 +582409,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17281709, "featuredRunMedia": null, "reactionVideos": [], @@ -582786,7 +582437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17282370, "featuredRunMedia": null, "reactionVideos": [], @@ -582819,7 +582470,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17284251, "featuredRunMedia": null, "reactionVideos": [], @@ -582852,7 +582503,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17285297, "featuredRunMedia": null, "reactionVideos": [], @@ -582880,7 +582531,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 17285322, "featuredRunMedia": null, "reactionVideos": [], @@ -582913,7 +582564,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17285924, "featuredRunMedia": null, "reactionVideos": [], @@ -582946,7 +582597,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "2151", "time": 17287543, "featuredRunMedia": null, "reactionVideos": [], @@ -582984,7 +582635,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17290371, "featuredRunMedia": null, "reactionVideos": [], @@ -583012,7 +582663,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 17290611, "featuredRunMedia": null, "reactionVideos": [], @@ -583040,7 +582691,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17291175, "featuredRunMedia": null, "reactionVideos": [], @@ -583078,7 +582729,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 136, + "teamId": "3146", "time": 17292487, "featuredRunMedia": null, "reactionVideos": [], @@ -583111,7 +582762,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 17294379, "featuredRunMedia": null, "reactionVideos": [], @@ -583144,7 +582795,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 219, + "teamId": "2445", "time": 17294758, "featuredRunMedia": null, "reactionVideos": [], @@ -583172,7 +582823,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17295252, "featuredRunMedia": null, "reactionVideos": [], @@ -583205,7 +582856,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 54, + "teamId": "2155", "time": 17295546, "featuredRunMedia": null, "reactionVideos": [], @@ -583233,7 +582884,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 17296023, "featuredRunMedia": null, "reactionVideos": [], @@ -583255,7 +582906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17297192, "featuredRunMedia": null, "reactionVideos": [], @@ -583293,7 +582944,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 17298136, "featuredRunMedia": null, "reactionVideos": [], @@ -583326,7 +582977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17299000, "featuredRunMedia": null, "reactionVideos": [], @@ -583364,7 +583015,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17299142, "featuredRunMedia": null, "reactionVideos": [], @@ -583397,7 +583048,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 144, + "teamId": "1856", "time": 17299564, "featuredRunMedia": null, "reactionVideos": [], @@ -583425,7 +583076,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17300539, "featuredRunMedia": null, "reactionVideos": [], @@ -583458,7 +583109,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17301505, "featuredRunMedia": null, "reactionVideos": [], @@ -583491,7 +583142,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17301658, "featuredRunMedia": null, "reactionVideos": [], @@ -583519,7 +583170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 104, + "teamId": "2754", "time": 17303111, "featuredRunMedia": null, "reactionVideos": [], @@ -583547,7 +583198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17303357, "featuredRunMedia": null, "reactionVideos": [], @@ -583585,7 +583236,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17303913, "featuredRunMedia": null, "reactionVideos": [], @@ -583618,7 +583269,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 240, + "teamId": "2552", "time": 17304756, "featuredRunMedia": null, "reactionVideos": [], @@ -583646,7 +583297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 17304990, "featuredRunMedia": null, "reactionVideos": [], @@ -583679,7 +583330,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17305680, "featuredRunMedia": null, "reactionVideos": [], @@ -583712,7 +583363,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17305708, "featuredRunMedia": null, "reactionVideos": [], @@ -583750,7 +583401,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17306733, "featuredRunMedia": null, "reactionVideos": [], @@ -583788,7 +583439,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 17308653, "featuredRunMedia": null, "reactionVideos": [], @@ -583816,7 +583467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17310776, "featuredRunMedia": null, "reactionVideos": [], @@ -583844,7 +583495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 333, + "teamId": "1249", "time": 17311018, "featuredRunMedia": null, "reactionVideos": [], @@ -583882,7 +583533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 17311380, "featuredRunMedia": null, "reactionVideos": [], @@ -583910,7 +583561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 17312064, "featuredRunMedia": null, "reactionVideos": [], @@ -583948,7 +583599,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 106, + "teamId": "2753", "time": 17313093, "featuredRunMedia": null, "reactionVideos": [], @@ -583976,7 +583627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17313707, "featuredRunMedia": null, "reactionVideos": [], @@ -584004,7 +583655,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17314343, "featuredRunMedia": null, "reactionVideos": [], @@ -584032,7 +583683,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17315265, "featuredRunMedia": null, "reactionVideos": [], @@ -584065,7 +583716,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17315762, "featuredRunMedia": null, "reactionVideos": [], @@ -584098,7 +583749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17315983, "featuredRunMedia": null, "reactionVideos": [], @@ -584131,7 +583782,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17316052, "featuredRunMedia": null, "reactionVideos": [], @@ -584169,7 +583820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17316479, "featuredRunMedia": null, "reactionVideos": [], @@ -584197,7 +583848,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 17316880, "featuredRunMedia": null, "reactionVideos": [], @@ -584225,7 +583876,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17317493, "featuredRunMedia": null, "reactionVideos": [], @@ -584258,7 +583909,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "2355", "time": 17319045, "featuredRunMedia": null, "reactionVideos": [], @@ -584291,7 +583942,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 27, + "teamId": "1653", "time": 17319906, "featuredRunMedia": null, "reactionVideos": [], @@ -584329,7 +583980,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 17321450, "featuredRunMedia": null, "reactionVideos": [], @@ -584357,7 +584008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 192, + "teamId": "1849", "time": 17321747, "featuredRunMedia": null, "reactionVideos": [], @@ -584390,7 +584041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 173, + "teamId": "2342", "time": 17322527, "featuredRunMedia": null, "reactionVideos": [], @@ -584428,7 +584079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 17322893, "featuredRunMedia": null, "reactionVideos": [], @@ -584461,7 +584112,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17322936, "featuredRunMedia": null, "reactionVideos": [], @@ -584499,7 +584150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17323972, "featuredRunMedia": null, "reactionVideos": [], @@ -584527,7 +584178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17324454, "featuredRunMedia": null, "reactionVideos": [], @@ -584565,7 +584216,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 17325213, "featuredRunMedia": null, "reactionVideos": [], @@ -584598,7 +584249,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 17325590, "featuredRunMedia": null, "reactionVideos": [], @@ -584626,7 +584277,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17325862, "featuredRunMedia": null, "reactionVideos": [], @@ -584664,7 +584315,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 72, + "teamId": "2542", "time": 17326053, "featuredRunMedia": null, "reactionVideos": [], @@ -584692,7 +584343,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 17326476, "featuredRunMedia": null, "reactionVideos": [], @@ -584730,7 +584381,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 17326711, "featuredRunMedia": null, "reactionVideos": [], @@ -584758,7 +584409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17326736, "featuredRunMedia": null, "reactionVideos": [], @@ -584786,7 +584437,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17329036, "featuredRunMedia": null, "reactionVideos": [], @@ -584819,7 +584470,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 17329613, "featuredRunMedia": null, "reactionVideos": [], @@ -584852,7 +584503,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 158, + "teamId": "2154", "time": 17330908, "featuredRunMedia": null, "reactionVideos": [], @@ -584885,7 +584536,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17334453, "featuredRunMedia": null, "reactionVideos": [], @@ -584918,7 +584569,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17337706, "featuredRunMedia": null, "reactionVideos": [], @@ -584946,7 +584597,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17338386, "featuredRunMedia": null, "reactionVideos": [], @@ -584979,7 +584630,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17339518, "featuredRunMedia": null, "reactionVideos": [], @@ -585012,7 +584663,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17341303, "featuredRunMedia": null, "reactionVideos": [], @@ -585050,7 +584701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17342011, "featuredRunMedia": null, "reactionVideos": [], @@ -585078,7 +584729,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17342880, "featuredRunMedia": null, "reactionVideos": [], @@ -585116,7 +584767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17343405, "featuredRunMedia": null, "reactionVideos": [], @@ -585144,7 +584795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17343554, "featuredRunMedia": null, "reactionVideos": [], @@ -585177,7 +584828,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 17344267, "featuredRunMedia": null, "reactionVideos": [], @@ -585215,7 +584866,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17345428, "featuredRunMedia": null, "reactionVideos": [], @@ -585237,7 +584888,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17345439, "featuredRunMedia": null, "reactionVideos": [], @@ -585265,7 +584916,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 17345875, "featuredRunMedia": null, "reactionVideos": [], @@ -585293,7 +584944,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17346220, "featuredRunMedia": null, "reactionVideos": [], @@ -585326,7 +584977,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "2252", "time": 17346548, "featuredRunMedia": null, "reactionVideos": [], @@ -585359,7 +585010,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 100, + "teamId": "2947", "time": 17346551, "featuredRunMedia": null, "reactionVideos": [], @@ -585392,7 +585043,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17347497, "featuredRunMedia": null, "reactionVideos": [], @@ -585430,7 +585081,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 17347663, "featuredRunMedia": null, "reactionVideos": [], @@ -585463,7 +585114,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17349807, "featuredRunMedia": null, "reactionVideos": [], @@ -585496,7 +585147,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17352217, "featuredRunMedia": null, "reactionVideos": [], @@ -585524,7 +585175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 17352405, "featuredRunMedia": null, "reactionVideos": [], @@ -585557,7 +585208,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 17354481, "featuredRunMedia": null, "reactionVideos": [], @@ -585595,7 +585246,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 138, + "teamId": "1250", "time": 17354699, "featuredRunMedia": null, "reactionVideos": [], @@ -585623,7 +585274,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17355336, "featuredRunMedia": null, "reactionVideos": [], @@ -585661,7 +585312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 45, + "teamId": "1755", "time": 17355451, "featuredRunMedia": null, "reactionVideos": [], @@ -585689,7 +585340,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17357955, "featuredRunMedia": null, "reactionVideos": [], @@ -585727,7 +585378,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 17357967, "featuredRunMedia": null, "reactionVideos": [], @@ -585765,7 +585416,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 198, + "teamId": "1248", "time": 17358592, "featuredRunMedia": null, "reactionVideos": [], @@ -585793,7 +585444,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 121, + "teamId": "1847", "time": 17358941, "featuredRunMedia": null, "reactionVideos": [], @@ -585821,7 +585472,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17359496, "featuredRunMedia": null, "reactionVideos": [], @@ -585854,7 +585505,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17361274, "featuredRunMedia": null, "reactionVideos": [], @@ -585882,7 +585533,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "1949", "time": 17361600, "featuredRunMedia": null, "reactionVideos": [], @@ -585910,7 +585561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17361741, "featuredRunMedia": null, "reactionVideos": [], @@ -585936,7 +585587,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17361872, "featuredRunMedia": null, "reactionVideos": [], @@ -585969,7 +585620,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 17363082, "featuredRunMedia": null, "reactionVideos": [], @@ -586002,7 +585653,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17363519, "featuredRunMedia": null, "reactionVideos": [], @@ -586035,7 +585686,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 17363743, "featuredRunMedia": null, "reactionVideos": [], @@ -586063,7 +585714,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17365068, "featuredRunMedia": null, "reactionVideos": [], @@ -586091,7 +585742,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17365472, "featuredRunMedia": null, "reactionVideos": [], @@ -586119,7 +585770,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 17365613, "featuredRunMedia": null, "reactionVideos": [], @@ -586152,7 +585803,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17366909, "featuredRunMedia": null, "reactionVideos": [], @@ -586190,7 +585841,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 17366940, "featuredRunMedia": null, "reactionVideos": [], @@ -586223,7 +585874,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17367300, "featuredRunMedia": null, "reactionVideos": [], @@ -586256,7 +585907,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17367712, "featuredRunMedia": null, "reactionVideos": [], @@ -586294,7 +585945,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17368756, "featuredRunMedia": null, "reactionVideos": [], @@ -586322,7 +585973,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 230, + "teamId": "1949", "time": 17369510, "featuredRunMedia": null, "reactionVideos": [], @@ -586355,7 +586006,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17369840, "featuredRunMedia": null, "reactionVideos": [], @@ -586393,7 +586044,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17370306, "featuredRunMedia": null, "reactionVideos": [], @@ -586421,7 +586072,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 192, + "teamId": "1849", "time": 17370334, "featuredRunMedia": null, "reactionVideos": [], @@ -586443,7 +586094,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 17370392, "featuredRunMedia": null, "reactionVideos": [], @@ -586476,7 +586127,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 17371474, "featuredRunMedia": null, "reactionVideos": [], @@ -586509,7 +586160,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 93, + "teamId": "2454", "time": 17371486, "featuredRunMedia": null, "reactionVideos": [], @@ -586542,7 +586193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17371622, "featuredRunMedia": null, "reactionVideos": [], @@ -586580,7 +586231,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 17371936, "featuredRunMedia": null, "reactionVideos": [], @@ -586618,7 +586269,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17372336, "featuredRunMedia": null, "reactionVideos": [], @@ -586646,7 +586297,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17372799, "featuredRunMedia": null, "reactionVideos": [], @@ -586684,7 +586335,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "2146", "time": 17373621, "featuredRunMedia": null, "reactionVideos": [], @@ -586717,7 +586368,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 17375267, "featuredRunMedia": null, "reactionVideos": [], @@ -586755,7 +586406,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 17375380, "featuredRunMedia": null, "reactionVideos": [], @@ -586788,7 +586439,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 65, + "teamId": "2746", "time": 17377901, "featuredRunMedia": null, "reactionVideos": [], @@ -586821,7 +586472,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17378787, "featuredRunMedia": null, "reactionVideos": [], @@ -586849,7 +586500,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 172, + "teamId": "1841", "time": 17378988, "featuredRunMedia": null, "reactionVideos": [], @@ -586871,7 +586522,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17379381, "featuredRunMedia": null, "reactionVideos": [], @@ -586899,7 +586550,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17379856, "featuredRunMedia": null, "reactionVideos": [], @@ -586927,7 +586578,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17379936, "featuredRunMedia": null, "reactionVideos": [], @@ -586960,7 +586611,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17382243, "featuredRunMedia": null, "reactionVideos": [], @@ -586988,7 +586639,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17382293, "featuredRunMedia": null, "reactionVideos": [], @@ -587016,7 +586667,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 17383579, "featuredRunMedia": null, "reactionVideos": [], @@ -587044,7 +586695,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17384625, "featuredRunMedia": null, "reactionVideos": [], @@ -587072,7 +586723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17385244, "featuredRunMedia": null, "reactionVideos": [], @@ -587110,7 +586761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 17385282, "featuredRunMedia": null, "reactionVideos": [], @@ -587138,7 +586789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17386649, "featuredRunMedia": null, "reactionVideos": [], @@ -587176,7 +586827,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17386948, "featuredRunMedia": null, "reactionVideos": [], @@ -587209,7 +586860,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17387741, "featuredRunMedia": null, "reactionVideos": [], @@ -587247,7 +586898,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 208, + "teamId": "3141", "time": 17388073, "featuredRunMedia": null, "reactionVideos": [], @@ -587285,7 +586936,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 26, + "teamId": "2752", "time": 17388687, "featuredRunMedia": null, "reactionVideos": [], @@ -587323,7 +586974,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17388888, "featuredRunMedia": null, "reactionVideos": [], @@ -587345,7 +586996,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 17388977, "featuredRunMedia": null, "reactionVideos": [], @@ -587373,7 +587024,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 17389601, "featuredRunMedia": null, "reactionVideos": [], @@ -587411,7 +587062,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 17391504, "featuredRunMedia": null, "reactionVideos": [], @@ -587449,7 +587100,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17391977, "featuredRunMedia": null, "reactionVideos": [], @@ -587482,7 +587133,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17393119, "featuredRunMedia": null, "reactionVideos": [], @@ -587520,7 +587171,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17394567, "featuredRunMedia": null, "reactionVideos": [], @@ -587548,7 +587199,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 17395448, "featuredRunMedia": null, "reactionVideos": [], @@ -587586,7 +587237,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17396175, "featuredRunMedia": null, "reactionVideos": [], @@ -587624,7 +587275,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 288, + "teamId": "2146", "time": 17398092, "featuredRunMedia": null, "reactionVideos": [], @@ -587652,7 +587303,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17399126, "featuredRunMedia": null, "reactionVideos": [], @@ -587680,7 +587331,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 171, + "teamId": "1543", "time": 17403025, "featuredRunMedia": null, "reactionVideos": [], @@ -587708,7 +587359,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17404764, "featuredRunMedia": null, "reactionVideos": [], @@ -587741,7 +587392,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17405538, "featuredRunMedia": null, "reactionVideos": [], @@ -587779,7 +587430,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 274, + "teamId": "3051", "time": 17407127, "featuredRunMedia": null, "reactionVideos": [], @@ -587807,7 +587458,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17407380, "featuredRunMedia": null, "reactionVideos": [], @@ -587840,7 +587491,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17408181, "featuredRunMedia": null, "reactionVideos": [], @@ -587868,7 +587519,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 246, + "teamId": "3244", "time": 17408236, "featuredRunMedia": null, "reactionVideos": [], @@ -587896,7 +587547,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17408643, "featuredRunMedia": null, "reactionVideos": [], @@ -587934,7 +587585,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 17409855, "featuredRunMedia": null, "reactionVideos": [], @@ -587962,7 +587613,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 186, + "teamId": "2646", "time": 17410174, "featuredRunMedia": null, "reactionVideos": [], @@ -587995,7 +587646,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17410661, "featuredRunMedia": null, "reactionVideos": [], @@ -588023,7 +587674,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17411488, "featuredRunMedia": null, "reactionVideos": [], @@ -588051,7 +587702,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17411745, "featuredRunMedia": null, "reactionVideos": [], @@ -588089,7 +587740,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 304, + "teamId": "3044", "time": 17411747, "featuredRunMedia": null, "reactionVideos": [], @@ -588122,7 +587773,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17414137, "featuredRunMedia": null, "reactionVideos": [], @@ -588155,7 +587806,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 139, + "teamId": "2441", "time": 17414304, "featuredRunMedia": null, "reactionVideos": [], @@ -588183,7 +587834,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17414481, "featuredRunMedia": null, "reactionVideos": [], @@ -588216,7 +587867,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 17415126, "featuredRunMedia": null, "reactionVideos": [], @@ -588244,7 +587895,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 17416671, "featuredRunMedia": null, "reactionVideos": [], @@ -588272,7 +587923,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17417196, "featuredRunMedia": null, "reactionVideos": [], @@ -588300,7 +587951,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17417547, "featuredRunMedia": null, "reactionVideos": [], @@ -588333,7 +587984,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 290, + "teamId": "2845", "time": 17417770, "featuredRunMedia": null, "reactionVideos": [], @@ -588371,7 +588022,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17417910, "featuredRunMedia": null, "reactionVideos": [], @@ -588409,7 +588060,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 194, + "teamId": "1954", "time": 17418228, "featuredRunMedia": null, "reactionVideos": [], @@ -588442,7 +588093,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17422033, "featuredRunMedia": null, "reactionVideos": [], @@ -588480,7 +588131,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 331, + "teamId": "1356", "time": 17422133, "featuredRunMedia": null, "reactionVideos": [], @@ -588508,7 +588159,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 17422631, "featuredRunMedia": null, "reactionVideos": [], @@ -588541,7 +588192,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17422839, "featuredRunMedia": null, "reactionVideos": [], @@ -588569,7 +588220,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17423381, "featuredRunMedia": null, "reactionVideos": [], @@ -588602,7 +588253,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 17424057, "featuredRunMedia": null, "reactionVideos": [], @@ -588630,7 +588281,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 17426155, "featuredRunMedia": null, "reactionVideos": [], @@ -588658,7 +588309,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 17426355, "featuredRunMedia": null, "reactionVideos": [], @@ -588696,7 +588347,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17426597, "featuredRunMedia": null, "reactionVideos": [], @@ -588734,7 +588385,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17429568, "featuredRunMedia": null, "reactionVideos": [], @@ -588762,7 +588413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 17429638, "featuredRunMedia": null, "reactionVideos": [], @@ -588790,7 +588441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 17430044, "featuredRunMedia": null, "reactionVideos": [], @@ -588818,7 +588469,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 333, + "teamId": "1249", "time": 17430639, "featuredRunMedia": null, "reactionVideos": [], @@ -588846,7 +588497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 17430667, "featuredRunMedia": null, "reactionVideos": [], @@ -588874,7 +588525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 17430934, "featuredRunMedia": null, "reactionVideos": [], @@ -588902,7 +588553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17432280, "featuredRunMedia": null, "reactionVideos": [], @@ -588930,7 +588581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 17433588, "featuredRunMedia": null, "reactionVideos": [], @@ -588958,7 +588609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 17434273, "featuredRunMedia": null, "reactionVideos": [], @@ -588991,7 +588642,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17434387, "featuredRunMedia": null, "reactionVideos": [], @@ -589024,7 +588675,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17435118, "featuredRunMedia": null, "reactionVideos": [], @@ -589057,7 +588708,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17435335, "featuredRunMedia": null, "reactionVideos": [], @@ -589090,7 +588741,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 258, + "teamId": "1850", "time": 17435612, "featuredRunMedia": null, "reactionVideos": [], @@ -589123,7 +588774,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "3247", "time": 17436633, "featuredRunMedia": null, "reactionVideos": [], @@ -589161,7 +588812,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17437519, "featuredRunMedia": null, "reactionVideos": [], @@ -589194,7 +588845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 223, + "teamId": "1552", "time": 17438351, "featuredRunMedia": null, "reactionVideos": [], @@ -589220,7 +588871,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17438701, "featuredRunMedia": null, "reactionVideos": [], @@ -589253,7 +588904,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17442547, "featuredRunMedia": null, "reactionVideos": [], @@ -589275,7 +588926,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "1349", "time": 17442559, "featuredRunMedia": null, "reactionVideos": [], @@ -589303,7 +588954,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17445619, "featuredRunMedia": null, "reactionVideos": [], @@ -589341,7 +588992,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 17446438, "featuredRunMedia": null, "reactionVideos": [], @@ -589369,7 +589020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17447921, "featuredRunMedia": null, "reactionVideos": [], @@ -589402,7 +589053,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17448195, "featuredRunMedia": null, "reactionVideos": [], @@ -589424,7 +589075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 63, + "teamId": "3243", "time": 17448849, "featuredRunMedia": null, "reactionVideos": [], @@ -589452,7 +589103,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17448986, "featuredRunMedia": null, "reactionVideos": [], @@ -589480,7 +589131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 17449077, "featuredRunMedia": null, "reactionVideos": [], @@ -589518,7 +589169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17449800, "featuredRunMedia": null, "reactionVideos": [], @@ -589551,7 +589202,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 17450081, "featuredRunMedia": null, "reactionVideos": [], @@ -589584,7 +589235,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17451340, "featuredRunMedia": null, "reactionVideos": [], @@ -589612,7 +589263,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 17451680, "featuredRunMedia": null, "reactionVideos": [], @@ -589650,7 +589301,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 17452275, "featuredRunMedia": null, "reactionVideos": [], @@ -589678,7 +589329,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 17453532, "featuredRunMedia": null, "reactionVideos": [], @@ -589711,7 +589362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17454295, "featuredRunMedia": null, "reactionVideos": [], @@ -589749,7 +589400,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17454896, "featuredRunMedia": null, "reactionVideos": [], @@ -589787,7 +589438,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17455191, "featuredRunMedia": null, "reactionVideos": [], @@ -589815,7 +589466,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17457569, "featuredRunMedia": null, "reactionVideos": [], @@ -589853,7 +589504,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17457882, "featuredRunMedia": null, "reactionVideos": [], @@ -589881,7 +589532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 151, + "teamId": "1147", "time": 17457927, "featuredRunMedia": null, "reactionVideos": [], @@ -589914,7 +589565,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17457958, "featuredRunMedia": null, "reactionVideos": [], @@ -589942,7 +589593,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17458366, "featuredRunMedia": null, "reactionVideos": [], @@ -589980,7 +589631,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 17458471, "featuredRunMedia": null, "reactionVideos": [], @@ -590018,7 +589669,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "1656", "time": 17459481, "featuredRunMedia": null, "reactionVideos": [], @@ -590046,7 +589697,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17460018, "featuredRunMedia": null, "reactionVideos": [], @@ -590084,7 +589735,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17461000, "featuredRunMedia": null, "reactionVideos": [], @@ -590117,7 +589768,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17462174, "featuredRunMedia": null, "reactionVideos": [], @@ -590145,7 +589796,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17463156, "featuredRunMedia": null, "reactionVideos": [], @@ -590183,7 +589834,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 284, + "teamId": "1349", "time": 17463699, "featuredRunMedia": null, "reactionVideos": [], @@ -590221,7 +589872,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17464444, "featuredRunMedia": null, "reactionVideos": [], @@ -590254,7 +589905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 17464969, "featuredRunMedia": null, "reactionVideos": [], @@ -590282,7 +589933,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17465318, "featuredRunMedia": null, "reactionVideos": [], @@ -590310,7 +589961,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 17466534, "featuredRunMedia": null, "reactionVideos": [], @@ -590338,7 +589989,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17466993, "featuredRunMedia": null, "reactionVideos": [], @@ -590366,7 +590017,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 17467835, "featuredRunMedia": null, "reactionVideos": [], @@ -590399,7 +590050,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17467918, "featuredRunMedia": null, "reactionVideos": [], @@ -590427,7 +590078,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17468815, "featuredRunMedia": null, "reactionVideos": [], @@ -590455,7 +590106,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17469314, "featuredRunMedia": null, "reactionVideos": [], @@ -590483,7 +590134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 286, + "teamId": "2546", "time": 17470917, "featuredRunMedia": null, "reactionVideos": [], @@ -590516,7 +590167,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 113, + "teamId": "1345", "time": 17471910, "featuredRunMedia": null, "reactionVideos": [], @@ -590549,7 +590200,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 17473914, "featuredRunMedia": null, "reactionVideos": [], @@ -590582,7 +590233,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 190, + "teamId": "3053", "time": 17474628, "featuredRunMedia": null, "reactionVideos": [], @@ -590620,7 +590271,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 17475509, "featuredRunMedia": null, "reactionVideos": [], @@ -590653,7 +590304,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 17476106, "featuredRunMedia": null, "reactionVideos": [], @@ -590681,7 +590332,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 203, + "teamId": "3142", "time": 17477761, "featuredRunMedia": null, "reactionVideos": [], @@ -590707,7 +590358,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17477939, "featuredRunMedia": null, "reactionVideos": [], @@ -590735,7 +590386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 232, + "teamId": "1743", "time": 17478099, "featuredRunMedia": null, "reactionVideos": [], @@ -590768,7 +590419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17478172, "featuredRunMedia": null, "reactionVideos": [], @@ -590796,7 +590447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 17478255, "featuredRunMedia": null, "reactionVideos": [], @@ -590829,7 +590480,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "3243", "time": 17478309, "featuredRunMedia": null, "reactionVideos": [], @@ -590857,7 +590508,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17478727, "featuredRunMedia": null, "reactionVideos": [], @@ -590885,7 +590536,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17478865, "featuredRunMedia": null, "reactionVideos": [], @@ -590923,7 +590574,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17478980, "featuredRunMedia": null, "reactionVideos": [], @@ -590951,7 +590602,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17480862, "featuredRunMedia": null, "reactionVideos": [], @@ -590979,7 +590630,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17480899, "featuredRunMedia": null, "reactionVideos": [], @@ -591012,7 +590663,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17481929, "featuredRunMedia": null, "reactionVideos": [], @@ -591050,7 +590701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 17481957, "featuredRunMedia": null, "reactionVideos": [], @@ -591083,7 +590734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17482329, "featuredRunMedia": null, "reactionVideos": [], @@ -591116,7 +590767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17483395, "featuredRunMedia": null, "reactionVideos": [], @@ -591149,7 +590800,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 150, + "teamId": "3247", "time": 17483830, "featuredRunMedia": null, "reactionVideos": [], @@ -591187,7 +590838,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17484555, "featuredRunMedia": null, "reactionVideos": [], @@ -591215,7 +590866,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 17484594, "featuredRunMedia": null, "reactionVideos": [], @@ -591243,7 +590894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17486200, "featuredRunMedia": null, "reactionVideos": [], @@ -591276,7 +590927,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 17486481, "featuredRunMedia": null, "reactionVideos": [], @@ -591314,7 +590965,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17486516, "featuredRunMedia": null, "reactionVideos": [], @@ -591342,7 +590993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17487781, "featuredRunMedia": null, "reactionVideos": [], @@ -591375,7 +591026,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17488787, "featuredRunMedia": null, "reactionVideos": [], @@ -591408,7 +591059,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 238, + "teamId": "2151", "time": 17489008, "featuredRunMedia": null, "reactionVideos": [], @@ -591446,7 +591097,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17489294, "featuredRunMedia": null, "reactionVideos": [], @@ -591474,7 +591125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17490574, "featuredRunMedia": null, "reactionVideos": [], @@ -591507,7 +591158,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17490794, "featuredRunMedia": null, "reactionVideos": [], @@ -591535,7 +591186,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17491038, "featuredRunMedia": null, "reactionVideos": [], @@ -591573,7 +591224,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 17491171, "featuredRunMedia": null, "reactionVideos": [], @@ -591611,7 +591262,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 17491285, "featuredRunMedia": null, "reactionVideos": [], @@ -591633,7 +591284,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 17491666, "featuredRunMedia": null, "reactionVideos": [], @@ -591661,7 +591312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17496214, "featuredRunMedia": null, "reactionVideos": [], @@ -591689,7 +591340,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17496642, "featuredRunMedia": null, "reactionVideos": [], @@ -591717,7 +591368,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17497038, "featuredRunMedia": null, "reactionVideos": [], @@ -591745,7 +591396,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17497677, "featuredRunMedia": null, "reactionVideos": [], @@ -591773,7 +591424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17497977, "featuredRunMedia": null, "reactionVideos": [], @@ -591801,7 +591452,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17498762, "featuredRunMedia": null, "reactionVideos": [], @@ -591829,7 +591480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 17499044, "featuredRunMedia": null, "reactionVideos": [], @@ -591862,7 +591513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 17499212, "featuredRunMedia": null, "reactionVideos": [], @@ -591890,7 +591541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17499661, "featuredRunMedia": null, "reactionVideos": [], @@ -591928,7 +591579,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17499856, "featuredRunMedia": null, "reactionVideos": [], @@ -591966,7 +591617,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17500560, "featuredRunMedia": null, "reactionVideos": [], @@ -591994,7 +591645,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17500784, "featuredRunMedia": null, "reactionVideos": [], @@ -592027,7 +591678,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17501185, "featuredRunMedia": null, "reactionVideos": [], @@ -592055,7 +591706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 17501845, "featuredRunMedia": null, "reactionVideos": [], @@ -592083,7 +591734,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17502549, "featuredRunMedia": null, "reactionVideos": [], @@ -592116,7 +591767,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17503543, "featuredRunMedia": null, "reactionVideos": [], @@ -592149,7 +591800,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17505232, "featuredRunMedia": null, "reactionVideos": [], @@ -592177,7 +591828,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17505586, "featuredRunMedia": null, "reactionVideos": [], @@ -592210,7 +591861,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17506228, "featuredRunMedia": null, "reactionVideos": [], @@ -592238,7 +591889,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 17506715, "featuredRunMedia": null, "reactionVideos": [], @@ -592266,7 +591917,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17507606, "featuredRunMedia": null, "reactionVideos": [], @@ -592304,7 +591955,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 17507723, "featuredRunMedia": null, "reactionVideos": [], @@ -592337,7 +591988,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 39, + "teamId": "3042", "time": 17507989, "featuredRunMedia": null, "reactionVideos": [], @@ -592370,7 +592021,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 17508562, "featuredRunMedia": null, "reactionVideos": [], @@ -592398,7 +592049,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17509240, "featuredRunMedia": null, "reactionVideos": [], @@ -592431,7 +592082,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "2755", "time": 17509451, "featuredRunMedia": null, "reactionVideos": [], @@ -592459,7 +592110,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 333, + "teamId": "1249", "time": 17509616, "featuredRunMedia": null, "reactionVideos": [], @@ -592481,7 +592132,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17512579, "featuredRunMedia": null, "reactionVideos": [], @@ -592514,7 +592165,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17513532, "featuredRunMedia": null, "reactionVideos": [], @@ -592552,7 +592203,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17513667, "featuredRunMedia": null, "reactionVideos": [], @@ -592580,7 +592231,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17514876, "featuredRunMedia": null, "reactionVideos": [], @@ -592613,7 +592264,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 17515008, "featuredRunMedia": null, "reactionVideos": [], @@ -592651,7 +592302,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17515795, "featuredRunMedia": null, "reactionVideos": [], @@ -592679,7 +592330,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17516240, "featuredRunMedia": null, "reactionVideos": [], @@ -592717,7 +592368,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17517462, "featuredRunMedia": null, "reactionVideos": [], @@ -592750,7 +592401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 195, + "teamId": "2543", "time": 17517583, "featuredRunMedia": null, "reactionVideos": [], @@ -592778,7 +592429,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17518912, "featuredRunMedia": null, "reactionVideos": [], @@ -592816,7 +592467,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 17520782, "featuredRunMedia": null, "reactionVideos": [], @@ -592844,7 +592495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17521276, "featuredRunMedia": null, "reactionVideos": [], @@ -592872,7 +592523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17521539, "featuredRunMedia": null, "reactionVideos": [], @@ -592900,7 +592551,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 159, + "teamId": "2348", "time": 17522205, "featuredRunMedia": null, "reactionVideos": [], @@ -592938,7 +592589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17522527, "featuredRunMedia": null, "reactionVideos": [], @@ -592966,7 +592617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 197, + "teamId": "3254", "time": 17523998, "featuredRunMedia": null, "reactionVideos": [], @@ -592999,7 +592650,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17525133, "featuredRunMedia": null, "reactionVideos": [], @@ -593037,7 +592688,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 17525458, "featuredRunMedia": null, "reactionVideos": [], @@ -593065,7 +592716,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17527597, "featuredRunMedia": null, "reactionVideos": [], @@ -593093,7 +592744,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17527622, "featuredRunMedia": null, "reactionVideos": [], @@ -593121,7 +592772,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17528033, "featuredRunMedia": null, "reactionVideos": [], @@ -593149,7 +592800,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 17528227, "featuredRunMedia": null, "reactionVideos": [], @@ -593187,7 +592838,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17528354, "featuredRunMedia": null, "reactionVideos": [], @@ -593220,7 +592871,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17528568, "featuredRunMedia": null, "reactionVideos": [], @@ -593253,7 +592904,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17529648, "featuredRunMedia": null, "reactionVideos": [], @@ -593286,7 +592937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 17529708, "featuredRunMedia": null, "reactionVideos": [], @@ -593324,7 +592975,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 17531008, "featuredRunMedia": null, "reactionVideos": [], @@ -593362,7 +593013,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 312, + "teamId": "1754", "time": 17531401, "featuredRunMedia": null, "reactionVideos": [], @@ -593384,7 +593035,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 17531746, "featuredRunMedia": null, "reactionVideos": [], @@ -593412,7 +593063,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 17532721, "featuredRunMedia": null, "reactionVideos": [], @@ -593440,7 +593091,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17532724, "featuredRunMedia": null, "reactionVideos": [], @@ -593468,7 +593119,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17533075, "featuredRunMedia": null, "reactionVideos": [], @@ -593496,7 +593147,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17535799, "featuredRunMedia": null, "reactionVideos": [], @@ -593524,7 +593175,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "2253", "time": 17535922, "featuredRunMedia": null, "reactionVideos": [], @@ -593552,7 +593203,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17537246, "featuredRunMedia": null, "reactionVideos": [], @@ -593590,7 +593241,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 17537691, "featuredRunMedia": null, "reactionVideos": [], @@ -593623,7 +593274,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17537825, "featuredRunMedia": null, "reactionVideos": [], @@ -593661,7 +593312,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17538764, "featuredRunMedia": null, "reactionVideos": [], @@ -593699,7 +593350,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17539645, "featuredRunMedia": null, "reactionVideos": [], @@ -593732,7 +593383,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17540815, "featuredRunMedia": null, "reactionVideos": [], @@ -593758,7 +593409,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 347, + "teamId": "2954", "time": 17541991, "featuredRunMedia": null, "reactionVideos": [], @@ -593796,7 +593447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 17542504, "featuredRunMedia": null, "reactionVideos": [], @@ -593829,7 +593480,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17542819, "featuredRunMedia": null, "reactionVideos": [], @@ -593862,7 +593513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17544188, "featuredRunMedia": null, "reactionVideos": [], @@ -593895,7 +593546,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17544282, "featuredRunMedia": null, "reactionVideos": [], @@ -593933,7 +593584,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 17544295, "featuredRunMedia": null, "reactionVideos": [], @@ -593971,7 +593622,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 125, + "teamId": "2341", "time": 17544900, "featuredRunMedia": null, "reactionVideos": [], @@ -594004,7 +593655,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17545564, "featuredRunMedia": null, "reactionVideos": [], @@ -594026,7 +593677,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17545904, "featuredRunMedia": null, "reactionVideos": [], @@ -594064,7 +593715,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "1656", "time": 17546757, "featuredRunMedia": null, "reactionVideos": [], @@ -594097,7 +593748,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "2355", "time": 17547277, "featuredRunMedia": null, "reactionVideos": [], @@ -594125,7 +593776,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17547383, "featuredRunMedia": null, "reactionVideos": [], @@ -594153,7 +593804,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 17548040, "featuredRunMedia": null, "reactionVideos": [], @@ -594181,7 +593832,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17548265, "featuredRunMedia": null, "reactionVideos": [], @@ -594219,7 +593870,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17548771, "featuredRunMedia": null, "reactionVideos": [], @@ -594247,7 +593898,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17549560, "featuredRunMedia": null, "reactionVideos": [], @@ -594269,7 +593920,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17550347, "featuredRunMedia": null, "reactionVideos": [], @@ -594302,7 +593953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17551322, "featuredRunMedia": null, "reactionVideos": [], @@ -594340,7 +593991,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 181, + "teamId": "2344", "time": 17552430, "featuredRunMedia": null, "reactionVideos": [], @@ -594362,7 +594013,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17553930, "featuredRunMedia": null, "reactionVideos": [], @@ -594400,7 +594051,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 243, + "teamId": "3046", "time": 17554192, "featuredRunMedia": null, "reactionVideos": [], @@ -594428,7 +594079,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 17554747, "featuredRunMedia": null, "reactionVideos": [], @@ -594456,7 +594107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 260, + "teamId": "1549", "time": 17554945, "featuredRunMedia": null, "reactionVideos": [], @@ -594494,7 +594145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 316, + "teamId": "1641", "time": 17555031, "featuredRunMedia": null, "reactionVideos": [], @@ -594532,7 +594183,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 17555392, "featuredRunMedia": null, "reactionVideos": [], @@ -594560,7 +594211,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 17555883, "featuredRunMedia": null, "reactionVideos": [], @@ -594593,7 +594244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17559151, "featuredRunMedia": null, "reactionVideos": [], @@ -594631,7 +594282,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 17559192, "featuredRunMedia": null, "reactionVideos": [], @@ -594669,7 +594320,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17560015, "featuredRunMedia": null, "reactionVideos": [], @@ -594702,7 +594353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "1446", "time": 17560908, "featuredRunMedia": null, "reactionVideos": [], @@ -594730,7 +594381,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 17561690, "featuredRunMedia": null, "reactionVideos": [], @@ -594768,7 +594419,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 17562486, "featuredRunMedia": null, "reactionVideos": [], @@ -594801,7 +594452,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17565215, "featuredRunMedia": null, "reactionVideos": [], @@ -594829,7 +594480,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17566075, "featuredRunMedia": null, "reactionVideos": [], @@ -594862,7 +594513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17566182, "featuredRunMedia": null, "reactionVideos": [], @@ -594890,7 +594541,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17566204, "featuredRunMedia": null, "reactionVideos": [], @@ -594918,7 +594569,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17566399, "featuredRunMedia": null, "reactionVideos": [], @@ -594940,7 +594591,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17567240, "featuredRunMedia": null, "reactionVideos": [], @@ -594968,7 +594619,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17568178, "featuredRunMedia": null, "reactionVideos": [], @@ -594996,7 +594647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17568220, "featuredRunMedia": null, "reactionVideos": [], @@ -595024,7 +594675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 132, + "teamId": "2256", "time": 17569228, "featuredRunMedia": null, "reactionVideos": [], @@ -595052,7 +594703,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 142, + "teamId": "1144", "time": 17569297, "featuredRunMedia": null, "reactionVideos": [], @@ -595080,7 +594731,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17570994, "featuredRunMedia": null, "reactionVideos": [], @@ -595118,7 +594769,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 17571694, "featuredRunMedia": null, "reactionVideos": [], @@ -595156,7 +594807,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17574319, "featuredRunMedia": null, "reactionVideos": [], @@ -595184,7 +594835,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17574581, "featuredRunMedia": null, "reactionVideos": [], @@ -595222,7 +594873,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 66, + "teamId": "2550", "time": 17575519, "featuredRunMedia": null, "reactionVideos": [], @@ -595260,7 +594911,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17576166, "featuredRunMedia": null, "reactionVideos": [], @@ -595288,7 +594939,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17576459, "featuredRunMedia": null, "reactionVideos": [], @@ -595316,7 +594967,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17576893, "featuredRunMedia": null, "reactionVideos": [], @@ -595349,7 +595000,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17578202, "featuredRunMedia": null, "reactionVideos": [], @@ -595377,7 +595028,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17578272, "featuredRunMedia": null, "reactionVideos": [], @@ -595405,7 +595056,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17578909, "featuredRunMedia": null, "reactionVideos": [], @@ -595438,7 +595089,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17579300, "featuredRunMedia": null, "reactionVideos": [], @@ -595466,7 +595117,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 17580022, "featuredRunMedia": null, "reactionVideos": [], @@ -595504,7 +595155,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17581735, "featuredRunMedia": null, "reactionVideos": [], @@ -595542,7 +595193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17582865, "featuredRunMedia": null, "reactionVideos": [], @@ -595570,7 +595221,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 156, + "teamId": "1447", "time": 17582918, "featuredRunMedia": null, "reactionVideos": [], @@ -595603,7 +595254,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17583103, "featuredRunMedia": null, "reactionVideos": [], @@ -595636,7 +595287,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17583155, "featuredRunMedia": null, "reactionVideos": [], @@ -595669,7 +595320,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 17583202, "featuredRunMedia": null, "reactionVideos": [], @@ -595702,7 +595353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17584431, "featuredRunMedia": null, "reactionVideos": [], @@ -595740,7 +595391,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 17585827, "featuredRunMedia": null, "reactionVideos": [], @@ -595778,7 +595429,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 17587191, "featuredRunMedia": null, "reactionVideos": [], @@ -595806,7 +595457,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 17587777, "featuredRunMedia": null, "reactionVideos": [], @@ -595839,7 +595490,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 17588590, "featuredRunMedia": null, "reactionVideos": [], @@ -595867,7 +595518,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 96, + "teamId": "2742", "time": 17589621, "featuredRunMedia": null, "reactionVideos": [], @@ -595905,7 +595556,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17590696, "featuredRunMedia": null, "reactionVideos": [], @@ -595943,7 +595594,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 17590702, "featuredRunMedia": null, "reactionVideos": [], @@ -595971,7 +595622,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17590851, "featuredRunMedia": null, "reactionVideos": [], @@ -595999,7 +595650,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17590865, "featuredRunMedia": null, "reactionVideos": [], @@ -596027,7 +595678,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 184, + "teamId": "1448", "time": 17591862, "featuredRunMedia": null, "reactionVideos": [], @@ -596055,7 +595706,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17592344, "featuredRunMedia": null, "reactionVideos": [], @@ -596093,7 +595744,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17592915, "featuredRunMedia": null, "reactionVideos": [], @@ -596126,7 +595777,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 140, + "teamId": "1149", "time": 17594311, "featuredRunMedia": null, "reactionVideos": [], @@ -596154,7 +595805,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17595854, "featuredRunMedia": null, "reactionVideos": [], @@ -596182,7 +595833,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 17597336, "featuredRunMedia": null, "reactionVideos": [], @@ -596220,7 +595871,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 17597615, "featuredRunMedia": null, "reactionVideos": [], @@ -596253,7 +595904,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 17597988, "featuredRunMedia": null, "reactionVideos": [], @@ -596286,7 +595937,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17598258, "featuredRunMedia": null, "reactionVideos": [], @@ -596314,7 +595965,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 17598903, "featuredRunMedia": null, "reactionVideos": [], @@ -596352,7 +596003,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 17599365, "featuredRunMedia": null, "reactionVideos": [], @@ -596385,7 +596036,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17599366, "featuredRunMedia": null, "reactionVideos": [], @@ -596423,7 +596074,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 17599715, "featuredRunMedia": null, "reactionVideos": [], @@ -596461,7 +596112,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 266, + "teamId": "2641", "time": 17600031, "featuredRunMedia": null, "reactionVideos": [], @@ -596494,7 +596145,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17601386, "featuredRunMedia": null, "reactionVideos": [], @@ -596527,7 +596178,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17602627, "featuredRunMedia": null, "reactionVideos": [], @@ -596555,7 +596206,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 249, + "teamId": "2354", "time": 17602765, "featuredRunMedia": null, "reactionVideos": [], @@ -596583,7 +596234,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17603139, "featuredRunMedia": null, "reactionVideos": [], @@ -596611,7 +596262,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17605272, "featuredRunMedia": null, "reactionVideos": [], @@ -596649,7 +596300,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "1656", "time": 17605507, "featuredRunMedia": null, "reactionVideos": [], @@ -596677,7 +596328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 194, + "teamId": "1954", "time": 17605664, "featuredRunMedia": null, "reactionVideos": [], @@ -596710,7 +596361,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17606278, "featuredRunMedia": null, "reactionVideos": [], @@ -596748,7 +596399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 17607131, "featuredRunMedia": null, "reactionVideos": [], @@ -596776,7 +596427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17609044, "featuredRunMedia": null, "reactionVideos": [], @@ -596809,7 +596460,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "2842", "time": 17610294, "featuredRunMedia": null, "reactionVideos": [], @@ -596847,7 +596498,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17610454, "featuredRunMedia": null, "reactionVideos": [], @@ -596875,7 +596526,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17611199, "featuredRunMedia": null, "reactionVideos": [], @@ -596903,7 +596554,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 17611226, "featuredRunMedia": null, "reactionVideos": [], @@ -596931,7 +596582,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17613299, "featuredRunMedia": null, "reactionVideos": [], @@ -596959,7 +596610,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17613470, "featuredRunMedia": null, "reactionVideos": [], @@ -596987,7 +596638,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17614357, "featuredRunMedia": null, "reactionVideos": [], @@ -597020,7 +596671,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17616348, "featuredRunMedia": null, "reactionVideos": [], @@ -597048,7 +596699,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 17616391, "featuredRunMedia": null, "reactionVideos": [], @@ -597081,7 +596732,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17616934, "featuredRunMedia": null, "reactionVideos": [], @@ -597119,7 +596770,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 43, + "teamId": "2749", "time": 17617374, "featuredRunMedia": null, "reactionVideos": [], @@ -597157,7 +596808,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17618198, "featuredRunMedia": null, "reactionVideos": [], @@ -597190,7 +596841,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 17618214, "featuredRunMedia": null, "reactionVideos": [], @@ -597218,7 +596869,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17618938, "featuredRunMedia": null, "reactionVideos": [], @@ -597246,7 +596897,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17619248, "featuredRunMedia": null, "reactionVideos": [], @@ -597279,7 +596930,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 17619359, "featuredRunMedia": null, "reactionVideos": [], @@ -597312,7 +596963,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 86, + "teamId": "3251", "time": 17619564, "featuredRunMedia": null, "reactionVideos": [], @@ -597340,7 +596991,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 17621911, "featuredRunMedia": null, "reactionVideos": [], @@ -597368,7 +597019,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17622693, "featuredRunMedia": null, "reactionVideos": [], @@ -597396,7 +597047,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 17624881, "featuredRunMedia": null, "reactionVideos": [], @@ -597434,7 +597085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17625603, "featuredRunMedia": null, "reactionVideos": [], @@ -597462,7 +597113,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 306, + "teamId": "2056", "time": 17626144, "featuredRunMedia": null, "reactionVideos": [], @@ -597490,7 +597141,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17626775, "featuredRunMedia": null, "reactionVideos": [], @@ -597523,7 +597174,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 17627973, "featuredRunMedia": null, "reactionVideos": [], @@ -597551,7 +597202,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 313, + "teamId": "2054", "time": 17629645, "featuredRunMedia": null, "reactionVideos": [], @@ -597577,7 +597228,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 342, + "teamId": "1347", "time": 17629737, "featuredRunMedia": null, "reactionVideos": [], @@ -597610,7 +597261,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17632211, "featuredRunMedia": null, "reactionVideos": [], @@ -597648,7 +597299,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 17632362, "featuredRunMedia": null, "reactionVideos": [], @@ -597686,7 +597337,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17632981, "featuredRunMedia": null, "reactionVideos": [], @@ -597719,7 +597370,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 15, + "teamId": "2942", "time": 17633542, "featuredRunMedia": null, "reactionVideos": [], @@ -597752,7 +597403,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17635985, "featuredRunMedia": null, "reactionVideos": [], @@ -597785,7 +597436,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17636745, "featuredRunMedia": null, "reactionVideos": [], @@ -597818,7 +597469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17637972, "featuredRunMedia": null, "reactionVideos": [], @@ -597846,7 +597497,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17639816, "featuredRunMedia": null, "reactionVideos": [], @@ -597874,7 +597525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 17640776, "featuredRunMedia": null, "reactionVideos": [], @@ -597902,7 +597553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17640984, "featuredRunMedia": null, "reactionVideos": [], @@ -597930,7 +597581,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17641832, "featuredRunMedia": null, "reactionVideos": [], @@ -597963,7 +597614,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17641987, "featuredRunMedia": null, "reactionVideos": [], @@ -597996,7 +597647,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17642367, "featuredRunMedia": null, "reactionVideos": [], @@ -598029,7 +597680,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17642618, "featuredRunMedia": null, "reactionVideos": [], @@ -598057,7 +597708,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17642827, "featuredRunMedia": null, "reactionVideos": [], @@ -598095,7 +597746,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 17644004, "featuredRunMedia": null, "reactionVideos": [], @@ -598128,7 +597779,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "2856", "time": 17644183, "featuredRunMedia": null, "reactionVideos": [], @@ -598156,7 +597807,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17644940, "featuredRunMedia": null, "reactionVideos": [], @@ -598194,7 +597845,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 178, + "teamId": "2055", "time": 17645187, "featuredRunMedia": null, "reactionVideos": [], @@ -598227,7 +597878,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17645638, "featuredRunMedia": null, "reactionVideos": [], @@ -598255,7 +597906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17646332, "featuredRunMedia": null, "reactionVideos": [], @@ -598283,7 +597934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17646397, "featuredRunMedia": null, "reactionVideos": [], @@ -598316,7 +597967,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 177, + "teamId": "1446", "time": 17646971, "featuredRunMedia": null, "reactionVideos": [], @@ -598349,7 +598000,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 40, + "teamId": "1748", "time": 17647457, "featuredRunMedia": null, "reactionVideos": [], @@ -598377,7 +598028,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 17647557, "featuredRunMedia": null, "reactionVideos": [], @@ -598410,7 +598061,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "3243", "time": 17649673, "featuredRunMedia": null, "reactionVideos": [], @@ -598448,7 +598099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17649851, "featuredRunMedia": null, "reactionVideos": [], @@ -598476,7 +598127,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17650845, "featuredRunMedia": null, "reactionVideos": [], @@ -598514,7 +598165,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 183, + "teamId": "2452", "time": 17651666, "featuredRunMedia": null, "reactionVideos": [], @@ -598542,7 +598193,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 17652257, "featuredRunMedia": null, "reactionVideos": [], @@ -598575,7 +598226,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17652523, "featuredRunMedia": null, "reactionVideos": [], @@ -598613,7 +598264,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 307, + "teamId": "2548", "time": 17654249, "featuredRunMedia": null, "reactionVideos": [], @@ -598646,7 +598297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 33, + "teamId": "2849", "time": 17654427, "featuredRunMedia": null, "reactionVideos": [], @@ -598679,7 +598330,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17654441, "featuredRunMedia": null, "reactionVideos": [], @@ -598707,7 +598358,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17659172, "featuredRunMedia": null, "reactionVideos": [], @@ -598735,7 +598386,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 17659236, "featuredRunMedia": null, "reactionVideos": [], @@ -598768,7 +598419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "2842", "time": 17659581, "featuredRunMedia": null, "reactionVideos": [], @@ -598806,7 +598457,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 17659792, "featuredRunMedia": null, "reactionVideos": [], @@ -598844,7 +598495,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17660052, "featuredRunMedia": null, "reactionVideos": [], @@ -598872,7 +598523,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17662175, "featuredRunMedia": null, "reactionVideos": [], @@ -598900,7 +598551,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17662420, "featuredRunMedia": null, "reactionVideos": [], @@ -598938,7 +598589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 131, + "teamId": "2144", "time": 17663976, "featuredRunMedia": null, "reactionVideos": [], @@ -598976,7 +598627,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17664036, "featuredRunMedia": null, "reactionVideos": [], @@ -599009,7 +598660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17666178, "featuredRunMedia": null, "reactionVideos": [], @@ -599042,7 +598693,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17667063, "featuredRunMedia": null, "reactionVideos": [], @@ -599070,7 +598721,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17667631, "featuredRunMedia": null, "reactionVideos": [], @@ -599098,7 +598749,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17668305, "featuredRunMedia": null, "reactionVideos": [], @@ -599131,7 +598782,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17668752, "featuredRunMedia": null, "reactionVideos": [], @@ -599153,7 +598804,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 17670566, "featuredRunMedia": null, "reactionVideos": [], @@ -599175,7 +598826,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 17671026, "featuredRunMedia": null, "reactionVideos": [], @@ -599203,7 +598854,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17671063, "featuredRunMedia": null, "reactionVideos": [], @@ -599236,7 +598887,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17671104, "featuredRunMedia": null, "reactionVideos": [], @@ -599264,7 +598915,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17671816, "featuredRunMedia": null, "reactionVideos": [], @@ -599292,7 +598943,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17672093, "featuredRunMedia": null, "reactionVideos": [], @@ -599330,7 +598981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 17672391, "featuredRunMedia": null, "reactionVideos": [], @@ -599363,7 +599014,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17672456, "featuredRunMedia": null, "reactionVideos": [], @@ -599396,7 +599047,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17673413, "featuredRunMedia": null, "reactionVideos": [], @@ -599434,7 +599085,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 17673948, "featuredRunMedia": null, "reactionVideos": [], @@ -599467,7 +599118,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17674355, "featuredRunMedia": null, "reactionVideos": [], @@ -599495,7 +599146,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 17675044, "featuredRunMedia": null, "reactionVideos": [], @@ -599523,7 +599174,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17676404, "featuredRunMedia": null, "reactionVideos": [], @@ -599561,7 +599212,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17676920, "featuredRunMedia": null, "reactionVideos": [], @@ -599599,7 +599250,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 17677564, "featuredRunMedia": null, "reactionVideos": [], @@ -599637,7 +599288,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 105, + "teamId": "1942", "time": 17677673, "featuredRunMedia": null, "reactionVideos": [], @@ -599659,7 +599310,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17678239, "featuredRunMedia": null, "reactionVideos": [], @@ -599697,7 +599348,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 17678375, "featuredRunMedia": null, "reactionVideos": [], @@ -599730,7 +599381,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17679209, "featuredRunMedia": null, "reactionVideos": [], @@ -599758,7 +599409,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17679881, "featuredRunMedia": null, "reactionVideos": [], @@ -599796,7 +599447,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 17680050, "featuredRunMedia": null, "reactionVideos": [], @@ -599829,7 +599480,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17681211, "featuredRunMedia": null, "reactionVideos": [], @@ -599862,7 +599513,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 111, + "teamId": "2355", "time": 17681690, "featuredRunMedia": null, "reactionVideos": [], @@ -599900,7 +599551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 301, + "teamId": "2948", "time": 17682899, "featuredRunMedia": null, "reactionVideos": [], @@ -599938,7 +599589,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 236, + "teamId": "1243", "time": 17683720, "featuredRunMedia": null, "reactionVideos": [], @@ -599966,7 +599617,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 338, + "teamId": "3248", "time": 17684634, "featuredRunMedia": null, "reactionVideos": [], @@ -599988,7 +599639,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 129, + "teamId": "3143", "time": 17684982, "featuredRunMedia": null, "reactionVideos": [], @@ -600021,7 +599672,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 17685986, "featuredRunMedia": null, "reactionVideos": [], @@ -600049,7 +599700,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 17686544, "featuredRunMedia": null, "reactionVideos": [], @@ -600077,7 +599728,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 330, + "teamId": "3246", "time": 17686934, "featuredRunMedia": null, "reactionVideos": [], @@ -600115,7 +599766,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17687523, "featuredRunMedia": null, "reactionVideos": [], @@ -600143,7 +599794,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17687962, "featuredRunMedia": null, "reactionVideos": [], @@ -600171,7 +599822,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 196, + "teamId": "3048", "time": 17688930, "featuredRunMedia": null, "reactionVideos": [], @@ -600204,7 +599855,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17689647, "featuredRunMedia": null, "reactionVideos": [], @@ -600232,7 +599883,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17689933, "featuredRunMedia": null, "reactionVideos": [], @@ -600270,7 +599921,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17690258, "featuredRunMedia": null, "reactionVideos": [], @@ -600303,7 +599954,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17690969, "featuredRunMedia": null, "reactionVideos": [], @@ -600336,7 +599987,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17692687, "featuredRunMedia": null, "reactionVideos": [], @@ -600364,7 +600015,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 17694474, "featuredRunMedia": null, "reactionVideos": [], @@ -600392,7 +600043,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17696249, "featuredRunMedia": null, "reactionVideos": [], @@ -600425,7 +600076,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 199, + "teamId": "1544", "time": 17696787, "featuredRunMedia": null, "reactionVideos": [], @@ -600453,7 +600104,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17696985, "featuredRunMedia": null, "reactionVideos": [], @@ -600491,7 +600142,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 82, + "teamId": "2553", "time": 17697132, "featuredRunMedia": null, "reactionVideos": [], @@ -600513,7 +600164,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17697384, "featuredRunMedia": null, "reactionVideos": [], @@ -600551,7 +600202,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 17697685, "featuredRunMedia": null, "reactionVideos": [], @@ -600579,7 +600230,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17699184, "featuredRunMedia": null, "reactionVideos": [], @@ -600612,7 +600263,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17699988, "featuredRunMedia": null, "reactionVideos": [], @@ -600640,7 +600291,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 17700563, "featuredRunMedia": null, "reactionVideos": [], @@ -600678,7 +600329,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17701365, "featuredRunMedia": null, "reactionVideos": [], @@ -600711,7 +600362,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17701861, "featuredRunMedia": null, "reactionVideos": [], @@ -600739,7 +600390,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17703403, "featuredRunMedia": null, "reactionVideos": [], @@ -600767,7 +600418,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 248, + "teamId": "3250", "time": 17703723, "featuredRunMedia": null, "reactionVideos": [], @@ -600800,7 +600451,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 24, + "teamId": "2050", "time": 17705081, "featuredRunMedia": null, "reactionVideos": [], @@ -600822,7 +600473,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 17705476, "featuredRunMedia": null, "reactionVideos": [], @@ -600855,7 +600506,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 17705544, "featuredRunMedia": null, "reactionVideos": [], @@ -600883,7 +600534,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 17706479, "featuredRunMedia": null, "reactionVideos": [], @@ -600921,7 +600572,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 17707297, "featuredRunMedia": null, "reactionVideos": [], @@ -600954,7 +600605,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 17707655, "featuredRunMedia": null, "reactionVideos": [], @@ -600987,7 +600638,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17708113, "featuredRunMedia": null, "reactionVideos": [], @@ -601015,7 +600666,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 17708964, "featuredRunMedia": null, "reactionVideos": [], @@ -601043,7 +600694,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17709237, "featuredRunMedia": null, "reactionVideos": [], @@ -601071,7 +600722,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 322, + "teamId": "2253", "time": 17709251, "featuredRunMedia": null, "reactionVideos": [], @@ -601099,7 +600750,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17709439, "featuredRunMedia": null, "reactionVideos": [], @@ -601127,7 +600778,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17710285, "featuredRunMedia": null, "reactionVideos": [], @@ -601155,7 +600806,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17710616, "featuredRunMedia": null, "reactionVideos": [], @@ -601188,7 +600839,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17711249, "featuredRunMedia": null, "reactionVideos": [], @@ -601226,7 +600877,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 334, + "teamId": "1756", "time": 17712046, "featuredRunMedia": null, "reactionVideos": [], @@ -601259,7 +600910,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17712074, "featuredRunMedia": null, "reactionVideos": [], @@ -601292,7 +600943,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 17712826, "featuredRunMedia": null, "reactionVideos": [], @@ -601330,7 +600981,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 17712873, "featuredRunMedia": null, "reactionVideos": [], @@ -601363,7 +601014,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "2856", "time": 17713221, "featuredRunMedia": null, "reactionVideos": [], @@ -601401,7 +601052,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 338, + "teamId": "3248", "time": 17715097, "featuredRunMedia": null, "reactionVideos": [], @@ -601429,7 +601080,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17715767, "featuredRunMedia": null, "reactionVideos": [], @@ -601462,7 +601113,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17717539, "featuredRunMedia": null, "reactionVideos": [], @@ -601500,7 +601151,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 17717554, "featuredRunMedia": null, "reactionVideos": [], @@ -601528,7 +601179,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17718005, "featuredRunMedia": null, "reactionVideos": [], @@ -601561,7 +601212,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 37, + "teamId": "1152", "time": 17718711, "featuredRunMedia": null, "reactionVideos": [], @@ -601594,7 +601245,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17718843, "featuredRunMedia": null, "reactionVideos": [], @@ -601622,7 +601273,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17719255, "featuredRunMedia": null, "reactionVideos": [], @@ -601655,7 +601306,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "1455", "time": 17719355, "featuredRunMedia": null, "reactionVideos": [], @@ -601677,7 +601328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 17720512, "featuredRunMedia": null, "reactionVideos": [], @@ -601705,7 +601356,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17722604, "featuredRunMedia": null, "reactionVideos": [], @@ -601738,7 +601389,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 17723613, "featuredRunMedia": null, "reactionVideos": [], @@ -601771,7 +601422,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17724460, "featuredRunMedia": null, "reactionVideos": [], @@ -601804,7 +601455,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17726694, "featuredRunMedia": null, "reactionVideos": [], @@ -601837,7 +601488,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 119, + "teamId": "2041", "time": 17726700, "featuredRunMedia": null, "reactionVideos": [], @@ -601870,7 +601521,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17728094, "featuredRunMedia": null, "reactionVideos": [], @@ -601903,7 +601554,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17728094, "featuredRunMedia": null, "reactionVideos": [], @@ -601941,7 +601592,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17728318, "featuredRunMedia": null, "reactionVideos": [], @@ -601969,7 +601620,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 17728640, "featuredRunMedia": null, "reactionVideos": [], @@ -601997,7 +601648,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17730595, "featuredRunMedia": null, "reactionVideos": [], @@ -602025,7 +601676,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17730637, "featuredRunMedia": null, "reactionVideos": [], @@ -602058,7 +601709,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 17, + "teamId": "1953", "time": 17731820, "featuredRunMedia": null, "reactionVideos": [], @@ -602086,7 +601737,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 193, + "teamId": "1950", "time": 17733256, "featuredRunMedia": null, "reactionVideos": [], @@ -602114,7 +601765,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17733894, "featuredRunMedia": null, "reactionVideos": [], @@ -602147,7 +601798,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17735471, "featuredRunMedia": null, "reactionVideos": [], @@ -602175,7 +601826,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 161, + "teamId": "1944", "time": 17735822, "featuredRunMedia": null, "reactionVideos": [], @@ -602208,7 +601859,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17736259, "featuredRunMedia": null, "reactionVideos": [], @@ -602241,7 +601892,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 17736759, "featuredRunMedia": null, "reactionVideos": [], @@ -602269,7 +601920,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17737899, "featuredRunMedia": null, "reactionVideos": [], @@ -602302,7 +601953,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17738259, "featuredRunMedia": null, "reactionVideos": [], @@ -602335,7 +601986,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17738454, "featuredRunMedia": null, "reactionVideos": [], @@ -602363,7 +602014,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17739419, "featuredRunMedia": null, "reactionVideos": [], @@ -602391,7 +602042,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17740344, "featuredRunMedia": null, "reactionVideos": [], @@ -602419,7 +602070,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17741692, "featuredRunMedia": null, "reactionVideos": [], @@ -602452,7 +602103,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17743329, "featuredRunMedia": null, "reactionVideos": [], @@ -602480,7 +602131,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17743513, "featuredRunMedia": null, "reactionVideos": [], @@ -602518,7 +602169,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 134, + "teamId": "2455", "time": 17743930, "featuredRunMedia": null, "reactionVideos": [], @@ -602551,7 +602202,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17744474, "featuredRunMedia": null, "reactionVideos": [], @@ -602589,7 +602240,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 248, + "teamId": "3250", "time": 17744584, "featuredRunMedia": null, "reactionVideos": [], @@ -602617,7 +602268,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 17744677, "featuredRunMedia": null, "reactionVideos": [], @@ -602645,7 +602296,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 17745497, "featuredRunMedia": null, "reactionVideos": [], @@ -602678,7 +602329,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17745962, "featuredRunMedia": null, "reactionVideos": [], @@ -602700,7 +602351,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17747347, "featuredRunMedia": null, "reactionVideos": [], @@ -602722,7 +602373,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17748509, "featuredRunMedia": null, "reactionVideos": [], @@ -602750,7 +602401,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17748881, "featuredRunMedia": null, "reactionVideos": [], @@ -602783,7 +602434,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 17748959, "featuredRunMedia": null, "reactionVideos": [], @@ -602816,7 +602467,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 17749032, "featuredRunMedia": null, "reactionVideos": [], @@ -602844,7 +602495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17749160, "featuredRunMedia": null, "reactionVideos": [], @@ -602882,7 +602533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17749365, "featuredRunMedia": null, "reactionVideos": [], @@ -602910,7 +602561,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17750656, "featuredRunMedia": null, "reactionVideos": [], @@ -602943,7 +602594,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17751624, "featuredRunMedia": null, "reactionVideos": [], @@ -602976,7 +602627,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17753232, "featuredRunMedia": null, "reactionVideos": [], @@ -603004,7 +602655,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 17753864, "featuredRunMedia": null, "reactionVideos": [], @@ -603032,7 +602683,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17756066, "featuredRunMedia": null, "reactionVideos": [], @@ -603065,7 +602716,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17757570, "featuredRunMedia": null, "reactionVideos": [], @@ -603098,7 +602749,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17757604, "featuredRunMedia": null, "reactionVideos": [], @@ -603136,7 +602787,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 17759006, "featuredRunMedia": null, "reactionVideos": [], @@ -603174,7 +602825,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17759065, "featuredRunMedia": null, "reactionVideos": [], @@ -603212,7 +602863,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 17761010, "featuredRunMedia": null, "reactionVideos": [], @@ -603240,7 +602891,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17761049, "featuredRunMedia": null, "reactionVideos": [], @@ -603273,7 +602924,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 67, + "teamId": "1154", "time": 17761342, "featuredRunMedia": null, "reactionVideos": [], @@ -603301,7 +602952,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17761660, "featuredRunMedia": null, "reactionVideos": [], @@ -603329,7 +602980,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17761885, "featuredRunMedia": null, "reactionVideos": [], @@ -603357,7 +603008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17762027, "featuredRunMedia": null, "reactionVideos": [], @@ -603385,7 +603036,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17763264, "featuredRunMedia": null, "reactionVideos": [], @@ -603413,7 +603064,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17765921, "featuredRunMedia": null, "reactionVideos": [], @@ -603446,7 +603097,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "2252", "time": 17766442, "featuredRunMedia": null, "reactionVideos": [], @@ -603474,7 +603125,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17767341, "featuredRunMedia": null, "reactionVideos": [], @@ -603512,7 +603163,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 17767723, "featuredRunMedia": null, "reactionVideos": [], @@ -603545,7 +603196,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17768427, "featuredRunMedia": null, "reactionVideos": [], @@ -603573,7 +603224,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 115, + "teamId": "2745", "time": 17768925, "featuredRunMedia": null, "reactionVideos": [], @@ -603601,7 +603252,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 60, + "teamId": "1241", "time": 17769939, "featuredRunMedia": null, "reactionVideos": [], @@ -603639,7 +603290,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 120, + "teamId": "1845", "time": 17770794, "featuredRunMedia": null, "reactionVideos": [], @@ -603667,7 +603318,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17770812, "featuredRunMedia": null, "reactionVideos": [], @@ -603700,7 +603351,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17772022, "featuredRunMedia": null, "reactionVideos": [], @@ -603733,7 +603384,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17773044, "featuredRunMedia": null, "reactionVideos": [], @@ -603761,7 +603412,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 17773561, "featuredRunMedia": null, "reactionVideos": [], @@ -603789,7 +603440,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17773757, "featuredRunMedia": null, "reactionVideos": [], @@ -603817,7 +603468,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 328, + "teamId": "3156", "time": 17773944, "featuredRunMedia": null, "reactionVideos": [], @@ -603845,7 +603496,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 17774128, "featuredRunMedia": null, "reactionVideos": [], @@ -603873,7 +603524,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 287, + "teamId": "1451", "time": 17774162, "featuredRunMedia": null, "reactionVideos": [], @@ -603906,7 +603557,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17774407, "featuredRunMedia": null, "reactionVideos": [], @@ -603939,7 +603590,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 17775045, "featuredRunMedia": null, "reactionVideos": [], @@ -603972,7 +603623,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "2755", "time": 17775284, "featuredRunMedia": null, "reactionVideos": [], @@ -604010,7 +603661,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 17776125, "featuredRunMedia": null, "reactionVideos": [], @@ -604038,7 +603689,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17776615, "featuredRunMedia": null, "reactionVideos": [], @@ -604066,7 +603717,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17777200, "featuredRunMedia": null, "reactionVideos": [], @@ -604094,7 +603745,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 17777214, "featuredRunMedia": null, "reactionVideos": [], @@ -604127,7 +603778,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17777929, "featuredRunMedia": null, "reactionVideos": [], @@ -604160,7 +603811,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17778057, "featuredRunMedia": null, "reactionVideos": [], @@ -604188,7 +603839,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17778303, "featuredRunMedia": null, "reactionVideos": [], @@ -604221,7 +603872,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 124, + "teamId": "2856", "time": 17778699, "featuredRunMedia": null, "reactionVideos": [], @@ -604254,7 +603905,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "1546", "time": 17779280, "featuredRunMedia": null, "reactionVideos": [], @@ -604292,7 +603943,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 102, + "teamId": "1256", "time": 17779476, "featuredRunMedia": null, "reactionVideos": [], @@ -604325,7 +603976,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17779516, "featuredRunMedia": null, "reactionVideos": [], @@ -604353,7 +604004,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 17779631, "featuredRunMedia": null, "reactionVideos": [], @@ -604386,7 +604037,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "2755", "time": 17780030, "featuredRunMedia": null, "reactionVideos": [], @@ -604424,7 +604075,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 346, + "teamId": "1750", "time": 17780167, "featuredRunMedia": null, "reactionVideos": [], @@ -604457,7 +604108,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 17781038, "featuredRunMedia": null, "reactionVideos": [], @@ -604485,7 +604136,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 204, + "teamId": "2356", "time": 17781762, "featuredRunMedia": null, "reactionVideos": [], @@ -604513,7 +604164,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17781998, "featuredRunMedia": null, "reactionVideos": [], @@ -604541,7 +604192,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17782274, "featuredRunMedia": null, "reactionVideos": [], @@ -604574,7 +604225,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17783786, "featuredRunMedia": null, "reactionVideos": [], @@ -604607,7 +604258,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "2755", "time": 17784412, "featuredRunMedia": null, "reactionVideos": [], @@ -604640,7 +604291,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17784438, "featuredRunMedia": null, "reactionVideos": [], @@ -604673,7 +604324,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 228, + "teamId": "1855", "time": 17784989, "featuredRunMedia": null, "reactionVideos": [], @@ -604701,7 +604352,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17785582, "featuredRunMedia": null, "reactionVideos": [], @@ -604734,7 +604385,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 8, + "teamId": "1654", "time": 17785662, "featuredRunMedia": null, "reactionVideos": [], @@ -604762,7 +604413,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 17786383, "featuredRunMedia": null, "reactionVideos": [], @@ -604790,7 +604441,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 17787263, "featuredRunMedia": null, "reactionVideos": [], @@ -604828,7 +604479,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 227, + "teamId": "1854", "time": 17788232, "featuredRunMedia": null, "reactionVideos": [], @@ -604856,7 +604507,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 168, + "teamId": "2152", "time": 17788290, "featuredRunMedia": null, "reactionVideos": [], @@ -604878,7 +604529,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17789389, "featuredRunMedia": null, "reactionVideos": [], @@ -604916,7 +604567,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17789628, "featuredRunMedia": null, "reactionVideos": [], @@ -604949,7 +604600,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 17789992, "featuredRunMedia": null, "reactionVideos": [], @@ -604977,7 +604628,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 178, + "teamId": "2055", "time": 17790474, "featuredRunMedia": null, "reactionVideos": [], @@ -605010,7 +604661,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17790694, "featuredRunMedia": null, "reactionVideos": [], @@ -605043,7 +604694,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 277, + "teamId": "2853", "time": 17791089, "featuredRunMedia": null, "reactionVideos": [], @@ -605081,7 +604732,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17791281, "featuredRunMedia": null, "reactionVideos": [], @@ -605103,7 +604754,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17791430, "featuredRunMedia": null, "reactionVideos": [], @@ -605131,7 +604782,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 153, + "teamId": "1749", "time": 17791540, "featuredRunMedia": null, "reactionVideos": [], @@ -605159,7 +604810,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 227, + "teamId": "1854", "time": 17792210, "featuredRunMedia": null, "reactionVideos": [], @@ -605197,7 +604848,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17792459, "featuredRunMedia": null, "reactionVideos": [], @@ -605235,7 +604886,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 17792718, "featuredRunMedia": null, "reactionVideos": [], @@ -605273,7 +604924,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 17793399, "featuredRunMedia": null, "reactionVideos": [], @@ -605301,7 +604952,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 17795176, "featuredRunMedia": null, "reactionVideos": [], @@ -605339,7 +604990,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 17795205, "featuredRunMedia": null, "reactionVideos": [], @@ -605367,7 +605018,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 200, + "teamId": "1551", "time": 17795929, "featuredRunMedia": null, "reactionVideos": [], @@ -605395,7 +605046,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17796205, "featuredRunMedia": null, "reactionVideos": [], @@ -605433,7 +605084,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17796454, "featuredRunMedia": null, "reactionVideos": [], @@ -605461,7 +605112,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17796607, "featuredRunMedia": null, "reactionVideos": [], @@ -605499,7 +605150,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17797688, "featuredRunMedia": null, "reactionVideos": [], @@ -605527,7 +605178,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 17797887, "featuredRunMedia": null, "reactionVideos": [], @@ -605560,7 +605211,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 17798045, "featuredRunMedia": null, "reactionVideos": [], @@ -605593,7 +605244,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17798140, "featuredRunMedia": null, "reactionVideos": [], @@ -605621,7 +605272,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 17798874, "featuredRunMedia": null, "reactionVideos": [], @@ -605649,7 +605300,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 17798885, "featuredRunMedia": null, "reactionVideos": [], @@ -605677,7 +605328,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17799427, "featuredRunMedia": null, "reactionVideos": [], @@ -605715,7 +605366,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 203, + "teamId": "3142", "time": 17800067, "featuredRunMedia": null, "reactionVideos": [], @@ -605743,7 +605394,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17800175, "featuredRunMedia": null, "reactionVideos": [], @@ -605781,7 +605432,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 17800486, "featuredRunMedia": null, "reactionVideos": [], @@ -605814,7 +605465,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17800953, "featuredRunMedia": null, "reactionVideos": [], @@ -605847,7 +605498,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17803251, "featuredRunMedia": null, "reactionVideos": [], @@ -605880,7 +605531,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17803543, "featuredRunMedia": null, "reactionVideos": [], @@ -605918,7 +605569,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17804193, "featuredRunMedia": null, "reactionVideos": [], @@ -605940,7 +605591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 17804447, "featuredRunMedia": null, "reactionVideos": [], @@ -605973,7 +605624,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17804946, "featuredRunMedia": null, "reactionVideos": [], @@ -606006,7 +605657,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17805168, "featuredRunMedia": null, "reactionVideos": [], @@ -606039,7 +605690,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17805302, "featuredRunMedia": null, "reactionVideos": [], @@ -606077,7 +605728,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 173, + "teamId": "2342", "time": 17805935, "featuredRunMedia": null, "reactionVideos": [], @@ -606105,7 +605756,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17806357, "featuredRunMedia": null, "reactionVideos": [], @@ -606138,7 +605789,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17806762, "featuredRunMedia": null, "reactionVideos": [], @@ -606176,7 +605827,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 97, + "teamId": "1252", "time": 17806843, "featuredRunMedia": null, "reactionVideos": [], @@ -606209,7 +605860,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 17809307, "featuredRunMedia": null, "reactionVideos": [], @@ -606247,7 +605898,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17810331, "featuredRunMedia": null, "reactionVideos": [], @@ -606275,7 +605926,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 81, + "teamId": "2447", "time": 17811626, "featuredRunMedia": null, "reactionVideos": [], @@ -606308,7 +605959,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17811804, "featuredRunMedia": null, "reactionVideos": [], @@ -606346,7 +605997,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17812104, "featuredRunMedia": null, "reactionVideos": [], @@ -606374,7 +606025,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 17812532, "featuredRunMedia": null, "reactionVideos": [], @@ -606402,7 +606053,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 89, + "teamId": "2652", "time": 17813215, "featuredRunMedia": null, "reactionVideos": [], @@ -606440,7 +606091,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 17813372, "featuredRunMedia": null, "reactionVideos": [], @@ -606468,7 +606119,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 320, + "teamId": "2449", "time": 17814401, "featuredRunMedia": null, "reactionVideos": [], @@ -606506,7 +606157,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17816594, "featuredRunMedia": null, "reactionVideos": [], @@ -606534,7 +606185,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17816643, "featuredRunMedia": null, "reactionVideos": [], @@ -606562,7 +606213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 146, + "teamId": "1456", "time": 17817657, "featuredRunMedia": null, "reactionVideos": [], @@ -606584,7 +606235,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17817809, "featuredRunMedia": null, "reactionVideos": [], @@ -606617,7 +606268,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17819612, "featuredRunMedia": null, "reactionVideos": [], @@ -606650,7 +606301,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17819814, "featuredRunMedia": null, "reactionVideos": [], @@ -606672,7 +606323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17820112, "featuredRunMedia": null, "reactionVideos": [], @@ -606710,7 +606361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 17821075, "featuredRunMedia": null, "reactionVideos": [], @@ -606732,7 +606383,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17821291, "featuredRunMedia": null, "reactionVideos": [], @@ -606760,7 +606411,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 253, + "teamId": "2153", "time": 17822294, "featuredRunMedia": null, "reactionVideos": [], @@ -606788,7 +606439,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 17822327, "featuredRunMedia": null, "reactionVideos": [], @@ -606816,7 +606467,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 17823348, "featuredRunMedia": null, "reactionVideos": [], @@ -606849,7 +606500,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17823391, "featuredRunMedia": null, "reactionVideos": [], @@ -606882,7 +606533,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17823696, "featuredRunMedia": null, "reactionVideos": [], @@ -606920,7 +606571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 250, + "teamId": "2647", "time": 17824194, "featuredRunMedia": null, "reactionVideos": [], @@ -606953,7 +606604,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17824793, "featuredRunMedia": null, "reactionVideos": [], @@ -606986,7 +606637,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 212, + "teamId": "2353", "time": 17825200, "featuredRunMedia": null, "reactionVideos": [], @@ -607019,7 +606670,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17826040, "featuredRunMedia": null, "reactionVideos": [], @@ -607047,7 +606698,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17826703, "featuredRunMedia": null, "reactionVideos": [], @@ -607085,7 +606736,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 117, + "teamId": "3047", "time": 17826718, "featuredRunMedia": null, "reactionVideos": [], @@ -607118,7 +606769,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "3243", "time": 17827563, "featuredRunMedia": null, "reactionVideos": [], @@ -607156,7 +606807,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 17828292, "featuredRunMedia": null, "reactionVideos": [], @@ -607189,7 +606840,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 77, + "teamId": "1346", "time": 17828510, "featuredRunMedia": null, "reactionVideos": [], @@ -607222,7 +606873,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17828541, "featuredRunMedia": null, "reactionVideos": [], @@ -607255,7 +606906,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 5, + "teamId": "1351", "time": 17828730, "featuredRunMedia": null, "reactionVideos": [], @@ -607283,7 +606934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17829615, "featuredRunMedia": null, "reactionVideos": [], @@ -607321,7 +606972,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 337, + "teamId": "1656", "time": 17829836, "featuredRunMedia": null, "reactionVideos": [], @@ -607354,7 +607005,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17830752, "featuredRunMedia": null, "reactionVideos": [], @@ -607382,7 +607033,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17830908, "featuredRunMedia": null, "reactionVideos": [], @@ -607410,7 +607061,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 17831058, "featuredRunMedia": null, "reactionVideos": [], @@ -607448,7 +607099,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17831089, "featuredRunMedia": null, "reactionVideos": [], @@ -607481,7 +607132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17831965, "featuredRunMedia": null, "reactionVideos": [], @@ -607519,7 +607170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17832571, "featuredRunMedia": null, "reactionVideos": [], @@ -607557,7 +607208,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17832574, "featuredRunMedia": null, "reactionVideos": [], @@ -607590,7 +607241,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17832830, "featuredRunMedia": null, "reactionVideos": [], @@ -607628,7 +607279,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 140, + "teamId": "1149", "time": 17833332, "featuredRunMedia": null, "reactionVideos": [], @@ -607656,7 +607307,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 254, + "teamId": "1442", "time": 17833358, "featuredRunMedia": null, "reactionVideos": [], @@ -607684,7 +607335,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 17833419, "featuredRunMedia": null, "reactionVideos": [], @@ -607717,7 +607368,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17833708, "featuredRunMedia": null, "reactionVideos": [], @@ -607745,7 +607396,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 251, + "teamId": "3152", "time": 17833816, "featuredRunMedia": null, "reactionVideos": [], @@ -607773,7 +607424,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17836015, "featuredRunMedia": null, "reactionVideos": [], @@ -607801,7 +607452,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17836193, "featuredRunMedia": null, "reactionVideos": [], @@ -607834,7 +607485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "1956", "time": 17837061, "featuredRunMedia": null, "reactionVideos": [], @@ -607862,7 +607513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17837444, "featuredRunMedia": null, "reactionVideos": [], @@ -607900,7 +607551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17837769, "featuredRunMedia": null, "reactionVideos": [], @@ -607933,7 +607584,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17838364, "featuredRunMedia": null, "reactionVideos": [], @@ -607966,7 +607617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 201, + "teamId": "1851", "time": 17838506, "featuredRunMedia": null, "reactionVideos": [], @@ -607999,7 +607650,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "1550", "time": 17839413, "featuredRunMedia": null, "reactionVideos": [], @@ -608032,7 +607683,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17839704, "featuredRunMedia": null, "reactionVideos": [], @@ -608060,7 +607711,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 17840273, "featuredRunMedia": null, "reactionVideos": [], @@ -608093,7 +607744,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 88, + "teamId": "1646", "time": 17840680, "featuredRunMedia": null, "reactionVideos": [], @@ -608131,7 +607782,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 17841145, "featuredRunMedia": null, "reactionVideos": [], @@ -608169,7 +607820,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "1752", "time": 17841591, "featuredRunMedia": null, "reactionVideos": [], @@ -608207,7 +607858,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17841873, "featuredRunMedia": null, "reactionVideos": [], @@ -608235,7 +607886,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 241, + "teamId": "1556", "time": 17841902, "featuredRunMedia": null, "reactionVideos": [], @@ -608263,7 +607914,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17843203, "featuredRunMedia": null, "reactionVideos": [], @@ -608296,7 +607947,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 248, + "teamId": "3250", "time": 17845170, "featuredRunMedia": null, "reactionVideos": [], @@ -608324,7 +607975,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17845356, "featuredRunMedia": null, "reactionVideos": [], @@ -608357,7 +608008,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 64, + "teamId": "1647", "time": 17845495, "featuredRunMedia": null, "reactionVideos": [], @@ -608390,7 +608041,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17845497, "featuredRunMedia": null, "reactionVideos": [], @@ -608428,7 +608079,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 49, + "teamId": "3050", "time": 17846073, "featuredRunMedia": null, "reactionVideos": [], @@ -608456,7 +608107,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 169, + "teamId": "2255", "time": 17847082, "featuredRunMedia": null, "reactionVideos": [], @@ -608494,7 +608145,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17847088, "featuredRunMedia": null, "reactionVideos": [], @@ -608516,7 +608167,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17847185, "featuredRunMedia": null, "reactionVideos": [], @@ -608544,7 +608195,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 17847263, "featuredRunMedia": null, "reactionVideos": [], @@ -608566,7 +608217,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17847458, "featuredRunMedia": null, "reactionVideos": [], @@ -608599,7 +608250,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17847839, "featuredRunMedia": null, "reactionVideos": [], @@ -608627,7 +608278,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 17848007, "featuredRunMedia": null, "reactionVideos": [], @@ -608655,7 +608306,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17849995, "featuredRunMedia": null, "reactionVideos": [], @@ -608688,7 +608339,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 17851064, "featuredRunMedia": null, "reactionVideos": [], @@ -608716,7 +608367,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 256, + "teamId": "2852", "time": 17851430, "featuredRunMedia": null, "reactionVideos": [], @@ -608749,7 +608400,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17851551, "featuredRunMedia": null, "reactionVideos": [], @@ -608775,7 +608426,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 17851866, "featuredRunMedia": null, "reactionVideos": [], @@ -608803,7 +608454,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17852979, "featuredRunMedia": null, "reactionVideos": [], @@ -608831,7 +608482,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17853090, "featuredRunMedia": null, "reactionVideos": [], @@ -608853,7 +608504,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 17855222, "featuredRunMedia": null, "reactionVideos": [], @@ -608881,7 +608532,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17855417, "featuredRunMedia": null, "reactionVideos": [], @@ -608919,7 +608570,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 87, + "teamId": "2551", "time": 17857181, "featuredRunMedia": null, "reactionVideos": [], @@ -608941,7 +608592,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 17857426, "featuredRunMedia": null, "reactionVideos": [], @@ -608974,7 +608625,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 4, + "teamId": "1350", "time": 17858348, "featuredRunMedia": null, "reactionVideos": [], @@ -609012,7 +608663,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 39, + "teamId": "3042", "time": 17858786, "featuredRunMedia": null, "reactionVideos": [], @@ -609050,7 +608701,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 220, + "teamId": "1742", "time": 17859265, "featuredRunMedia": null, "reactionVideos": [], @@ -609083,7 +608734,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 16, + "teamId": "3151", "time": 17859268, "featuredRunMedia": null, "reactionVideos": [], @@ -609111,7 +608762,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 5, + "teamId": "1351", "time": 17859818, "featuredRunMedia": null, "reactionVideos": [], @@ -609149,7 +608800,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17860123, "featuredRunMedia": null, "reactionVideos": [], @@ -609182,7 +608833,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 58, + "teamId": "3145", "time": 17860127, "featuredRunMedia": null, "reactionVideos": [], @@ -609220,7 +608871,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17860187, "featuredRunMedia": null, "reactionVideos": [], @@ -609248,7 +608899,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 270, + "teamId": "2347", "time": 17860518, "featuredRunMedia": null, "reactionVideos": [], @@ -609281,7 +608932,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 131, + "teamId": "2144", "time": 17860619, "featuredRunMedia": null, "reactionVideos": [], @@ -609314,7 +608965,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17860853, "featuredRunMedia": null, "reactionVideos": [], @@ -609342,7 +608993,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17862508, "featuredRunMedia": null, "reactionVideos": [], @@ -609375,7 +609026,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "3155", "time": 17863433, "featuredRunMedia": null, "reactionVideos": [], @@ -609403,7 +609054,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17863736, "featuredRunMedia": null, "reactionVideos": [], @@ -609441,7 +609092,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 17863761, "featuredRunMedia": null, "reactionVideos": [], @@ -609474,7 +609125,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "1455", "time": 17864659, "featuredRunMedia": null, "reactionVideos": [], @@ -609507,7 +609158,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 166, + "teamId": "2751", "time": 17864761, "featuredRunMedia": null, "reactionVideos": [], @@ -609545,7 +609196,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 108, + "teamId": "1746", "time": 17866579, "featuredRunMedia": null, "reactionVideos": [], @@ -609573,7 +609224,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 331, + "teamId": "1356", "time": 17866644, "featuredRunMedia": null, "reactionVideos": [], @@ -609606,7 +609257,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 135, + "teamId": "2143", "time": 17867160, "featuredRunMedia": null, "reactionVideos": [], @@ -609634,7 +609285,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17867477, "featuredRunMedia": null, "reactionVideos": [], @@ -609672,7 +609323,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17868998, "featuredRunMedia": null, "reactionVideos": [], @@ -609710,7 +609361,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17869055, "featuredRunMedia": null, "reactionVideos": [], @@ -609748,7 +609399,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17869466, "featuredRunMedia": null, "reactionVideos": [], @@ -609776,7 +609427,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 252, + "teamId": "1354", "time": 17870109, "featuredRunMedia": null, "reactionVideos": [], @@ -609809,7 +609460,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "1956", "time": 17871049, "featuredRunMedia": null, "reactionVideos": [], @@ -609837,7 +609488,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17871957, "featuredRunMedia": null, "reactionVideos": [], @@ -609865,7 +609516,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 17872427, "featuredRunMedia": null, "reactionVideos": [], @@ -609898,7 +609549,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17872482, "featuredRunMedia": null, "reactionVideos": [], @@ -609920,7 +609571,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17873130, "featuredRunMedia": null, "reactionVideos": [], @@ -609958,7 +609609,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 195, + "teamId": "2543", "time": 17873281, "featuredRunMedia": null, "reactionVideos": [], @@ -609996,7 +609647,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 144, + "teamId": "1856", "time": 17873382, "featuredRunMedia": null, "reactionVideos": [], @@ -610034,7 +609685,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17873612, "featuredRunMedia": null, "reactionVideos": [], @@ -610062,7 +609713,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 118, + "teamId": "2756", "time": 17873857, "featuredRunMedia": null, "reactionVideos": [], @@ -610095,7 +609746,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 52, + "teamId": "2346", "time": 17875121, "featuredRunMedia": null, "reactionVideos": [], @@ -610133,7 +609784,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 17875449, "featuredRunMedia": null, "reactionVideos": [], @@ -610161,7 +609812,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17876291, "featuredRunMedia": null, "reactionVideos": [], @@ -610194,7 +609845,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 17876415, "featuredRunMedia": null, "reactionVideos": [], @@ -610227,7 +609878,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17876456, "featuredRunMedia": null, "reactionVideos": [], @@ -610255,7 +609906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17877148, "featuredRunMedia": null, "reactionVideos": [], @@ -610283,7 +609934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 125, + "teamId": "2341", "time": 17877183, "featuredRunMedia": null, "reactionVideos": [], @@ -610311,7 +609962,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 101, + "teamId": "2343", "time": 17877252, "featuredRunMedia": null, "reactionVideos": [], @@ -610344,7 +609995,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17877257, "featuredRunMedia": null, "reactionVideos": [], @@ -610382,7 +610033,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 233, + "teamId": "2351", "time": 17877803, "featuredRunMedia": null, "reactionVideos": [], @@ -610415,7 +610066,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 53, + "teamId": "1643", "time": 17878937, "featuredRunMedia": null, "reactionVideos": [], @@ -610448,7 +610099,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17879547, "featuredRunMedia": null, "reactionVideos": [], @@ -610481,7 +610132,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17879764, "featuredRunMedia": null, "reactionVideos": [], @@ -610519,7 +610170,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 157, + "teamId": "1443", "time": 17880169, "featuredRunMedia": null, "reactionVideos": [], @@ -610557,7 +610208,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17882045, "featuredRunMedia": null, "reactionVideos": [], @@ -610595,7 +610246,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 179, + "teamId": "2643", "time": 17882559, "featuredRunMedia": null, "reactionVideos": [], @@ -610633,7 +610284,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17883636, "featuredRunMedia": null, "reactionVideos": [], @@ -610661,7 +610312,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 139, + "teamId": "2441", "time": 17883874, "featuredRunMedia": null, "reactionVideos": [], @@ -610689,7 +610340,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17884938, "featuredRunMedia": null, "reactionVideos": [], @@ -610717,7 +610368,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 103, + "teamId": "1948", "time": 17886405, "featuredRunMedia": null, "reactionVideos": [], @@ -610750,7 +610401,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 323, + "teamId": "1652", "time": 17887293, "featuredRunMedia": null, "reactionVideos": [], @@ -610783,7 +610434,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17887568, "featuredRunMedia": null, "reactionVideos": [], @@ -610816,7 +610467,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 17887568, "featuredRunMedia": null, "reactionVideos": [], @@ -610844,7 +610495,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17887727, "featuredRunMedia": null, "reactionVideos": [], @@ -610882,7 +610533,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 217, + "teamId": "3150", "time": 17888304, "featuredRunMedia": null, "reactionVideos": [], @@ -610920,7 +610571,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17889112, "featuredRunMedia": null, "reactionVideos": [], @@ -610948,7 +610599,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 17889615, "featuredRunMedia": null, "reactionVideos": [], @@ -610976,7 +610627,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17890125, "featuredRunMedia": null, "reactionVideos": [], @@ -611009,7 +610660,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 46, + "teamId": "2252", "time": 17890128, "featuredRunMedia": null, "reactionVideos": [], @@ -611047,7 +610698,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 41, + "teamId": "2642", "time": 17890725, "featuredRunMedia": null, "reactionVideos": [], @@ -611075,7 +610726,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 17891517, "featuredRunMedia": null, "reactionVideos": [], @@ -611103,7 +610754,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 179, + "teamId": "2643", "time": 17892331, "featuredRunMedia": null, "reactionVideos": [], @@ -611131,7 +610782,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 90, + "teamId": "2850", "time": 17892648, "featuredRunMedia": null, "reactionVideos": [], @@ -611164,7 +610815,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 84, + "teamId": "1550", "time": 17894298, "featuredRunMedia": null, "reactionVideos": [], @@ -611192,7 +610843,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 318, + "teamId": "2848", "time": 17895332, "featuredRunMedia": null, "reactionVideos": [], @@ -611214,7 +610865,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17895677, "featuredRunMedia": null, "reactionVideos": [], @@ -611247,7 +610898,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 28, + "teamId": "1650", "time": 17896139, "featuredRunMedia": null, "reactionVideos": [], @@ -611280,7 +610931,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 7, + "teamId": "1156", "time": 17896256, "featuredRunMedia": null, "reactionVideos": [], @@ -611313,7 +610964,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17896403, "featuredRunMedia": null, "reactionVideos": [], @@ -611341,7 +610992,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 258, + "teamId": "1850", "time": 17896532, "featuredRunMedia": null, "reactionVideos": [], @@ -611369,7 +611020,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 17896878, "featuredRunMedia": null, "reactionVideos": [], @@ -611407,7 +611058,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17896919, "featuredRunMedia": null, "reactionVideos": [], @@ -611435,7 +611086,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 122, + "teamId": "2145", "time": 17897372, "featuredRunMedia": null, "reactionVideos": [], @@ -611463,7 +611114,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17897501, "featuredRunMedia": null, "reactionVideos": [], @@ -611501,7 +611152,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 165, + "teamId": "1843", "time": 17897683, "featuredRunMedia": null, "reactionVideos": [], @@ -611534,7 +611185,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17898582, "featuredRunMedia": null, "reactionVideos": [], @@ -611562,7 +611213,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17898715, "featuredRunMedia": null, "reactionVideos": [], @@ -611595,7 +611246,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17898761, "featuredRunMedia": null, "reactionVideos": [], @@ -611633,7 +611284,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 247, + "teamId": "2052", "time": 17899148, "featuredRunMedia": null, "reactionVideos": [], @@ -611671,7 +611322,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 269, + "teamId": "2244", "time": 17900340, "featuredRunMedia": null, "reactionVideos": [], @@ -611704,7 +611355,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 182, + "teamId": "1946", "time": 17900485, "featuredRunMedia": null, "reactionVideos": [], @@ -611737,7 +611388,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 17900967, "featuredRunMedia": null, "reactionVideos": [], @@ -611765,7 +611416,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17901505, "featuredRunMedia": null, "reactionVideos": [], @@ -611798,7 +611449,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17902613, "featuredRunMedia": null, "reactionVideos": [], @@ -611831,7 +611482,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17903600, "featuredRunMedia": null, "reactionVideos": [], @@ -611864,7 +611515,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 2, + "teamId": "2241", "time": 17904184, "featuredRunMedia": null, "reactionVideos": [], @@ -611897,7 +611548,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 202, + "teamId": "2541", "time": 17905507, "featuredRunMedia": null, "reactionVideos": [], @@ -611930,7 +611581,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 20, + "teamId": "1342", "time": 17905583, "featuredRunMedia": null, "reactionVideos": [], @@ -611958,7 +611609,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 32, + "teamId": "3249", "time": 17906322, "featuredRunMedia": null, "reactionVideos": [], @@ -611986,7 +611637,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 206, + "teamId": "2142", "time": 17907636, "featuredRunMedia": null, "reactionVideos": [], @@ -612014,7 +611665,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17907706, "featuredRunMedia": null, "reactionVideos": [], @@ -612047,7 +611698,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 57, + "teamId": "2450", "time": 17907900, "featuredRunMedia": null, "reactionVideos": [], @@ -612075,7 +611726,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 279, + "teamId": "1449", "time": 17908033, "featuredRunMedia": null, "reactionVideos": [], @@ -612108,7 +611759,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "3243", "time": 17908201, "featuredRunMedia": null, "reactionVideos": [], @@ -612146,7 +611797,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17908453, "featuredRunMedia": null, "reactionVideos": [], @@ -612168,7 +611819,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17908977, "featuredRunMedia": null, "reactionVideos": [], @@ -612206,7 +611857,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17909281, "featuredRunMedia": null, "reactionVideos": [], @@ -612234,7 +611885,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17909309, "featuredRunMedia": null, "reactionVideos": [], @@ -612262,7 +611913,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 17910953, "featuredRunMedia": null, "reactionVideos": [], @@ -612284,7 +611935,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 17911211, "featuredRunMedia": null, "reactionVideos": [], @@ -612312,7 +611963,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17911804, "featuredRunMedia": null, "reactionVideos": [], @@ -612345,7 +611996,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17912451, "featuredRunMedia": null, "reactionVideos": [], @@ -612383,7 +612034,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "1752", "time": 17912532, "featuredRunMedia": null, "reactionVideos": [], @@ -612411,7 +612062,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 267, + "teamId": "1245", "time": 17912906, "featuredRunMedia": null, "reactionVideos": [], @@ -612439,7 +612090,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17915182, "featuredRunMedia": null, "reactionVideos": [], @@ -612472,7 +612123,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "1546", "time": 17915739, "featuredRunMedia": null, "reactionVideos": [], @@ -612500,7 +612151,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 219, + "teamId": "2445", "time": 17915851, "featuredRunMedia": null, "reactionVideos": [], @@ -612538,7 +612189,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17916652, "featuredRunMedia": null, "reactionVideos": [], @@ -612571,7 +612222,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 17916836, "featuredRunMedia": null, "reactionVideos": [], @@ -612604,7 +612255,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 276, + "teamId": "2141", "time": 17916879, "featuredRunMedia": null, "reactionVideos": [], @@ -612642,7 +612293,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 17918496, "featuredRunMedia": null, "reactionVideos": [], @@ -612670,7 +612321,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17919350, "featuredRunMedia": null, "reactionVideos": [], @@ -612708,7 +612359,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17919359, "featuredRunMedia": null, "reactionVideos": [], @@ -612741,7 +612392,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17919673, "featuredRunMedia": null, "reactionVideos": [], @@ -612763,7 +612414,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17919980, "featuredRunMedia": null, "reactionVideos": [], @@ -612785,7 +612436,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17920829, "featuredRunMedia": null, "reactionVideos": [], @@ -612813,7 +612464,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 17920899, "featuredRunMedia": null, "reactionVideos": [], @@ -612851,7 +612502,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17921055, "featuredRunMedia": null, "reactionVideos": [], @@ -612879,7 +612530,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 239, + "teamId": "1655", "time": 17922293, "featuredRunMedia": null, "reactionVideos": [], @@ -612907,7 +612558,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 17923142, "featuredRunMedia": null, "reactionVideos": [], @@ -612935,7 +612586,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17923221, "featuredRunMedia": null, "reactionVideos": [], @@ -612973,7 +612624,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 282, + "teamId": "1947", "time": 17923334, "featuredRunMedia": null, "reactionVideos": [], @@ -613011,7 +612662,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17923610, "featuredRunMedia": null, "reactionVideos": [], @@ -613049,7 +612700,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 327, + "teamId": "1247", "time": 17924070, "featuredRunMedia": null, "reactionVideos": [], @@ -613082,7 +612733,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 47, + "teamId": "2943", "time": 17926234, "featuredRunMedia": null, "reactionVideos": [], @@ -613110,7 +612761,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 201, + "teamId": "1851", "time": 17926722, "featuredRunMedia": null, "reactionVideos": [], @@ -613138,7 +612789,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 211, + "teamId": "2846", "time": 17927317, "featuredRunMedia": null, "reactionVideos": [], @@ -613166,7 +612817,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17927360, "featuredRunMedia": null, "reactionVideos": [], @@ -613194,7 +612845,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17927482, "featuredRunMedia": null, "reactionVideos": [], @@ -613227,7 +612878,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17927498, "featuredRunMedia": null, "reactionVideos": [], @@ -613255,7 +612906,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 221, + "teamId": "2250", "time": 17927883, "featuredRunMedia": null, "reactionVideos": [], @@ -613283,7 +612934,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 218, + "teamId": "1541", "time": 17928478, "featuredRunMedia": null, "reactionVideos": [], @@ -613311,7 +612962,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17929006, "featuredRunMedia": null, "reactionVideos": [], @@ -613333,7 +612984,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17929159, "featuredRunMedia": null, "reactionVideos": [], @@ -613361,7 +613012,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 167, + "teamId": "1353", "time": 17930081, "featuredRunMedia": null, "reactionVideos": [], @@ -613394,7 +613045,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17930338, "featuredRunMedia": null, "reactionVideos": [], @@ -613422,7 +613073,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17930385, "featuredRunMedia": null, "reactionVideos": [], @@ -613455,7 +613106,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17930765, "featuredRunMedia": null, "reactionVideos": [], @@ -613483,7 +613134,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17931338, "featuredRunMedia": null, "reactionVideos": [], @@ -613516,7 +613167,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17933049, "featuredRunMedia": null, "reactionVideos": [], @@ -613554,7 +613205,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17934884, "featuredRunMedia": null, "reactionVideos": [], @@ -613582,7 +613233,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17935572, "featuredRunMedia": null, "reactionVideos": [], @@ -613620,7 +613271,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 130, + "teamId": "2043", "time": 17936582, "featuredRunMedia": null, "reactionVideos": [], @@ -613658,7 +613309,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 17936720, "featuredRunMedia": null, "reactionVideos": [], @@ -613696,7 +613347,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 34, + "teamId": "3043", "time": 17937760, "featuredRunMedia": null, "reactionVideos": [], @@ -613724,7 +613375,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17937957, "featuredRunMedia": null, "reactionVideos": [], @@ -613752,7 +613403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 224, + "teamId": "1744", "time": 17938012, "featuredRunMedia": null, "reactionVideos": [], @@ -613780,7 +613431,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 226, + "teamId": "2945", "time": 17938087, "featuredRunMedia": null, "reactionVideos": [], @@ -613818,7 +613469,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 240, + "teamId": "2552", "time": 17938533, "featuredRunMedia": null, "reactionVideos": [], @@ -613856,7 +613507,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 17938616, "featuredRunMedia": null, "reactionVideos": [], @@ -613884,7 +613535,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17939012, "featuredRunMedia": null, "reactionVideos": [], @@ -613912,7 +613563,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17939779, "featuredRunMedia": null, "reactionVideos": [], @@ -613940,7 +613591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17939912, "featuredRunMedia": null, "reactionVideos": [], @@ -613968,7 +613619,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17940419, "featuredRunMedia": null, "reactionVideos": [], @@ -614006,7 +613657,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17940733, "featuredRunMedia": null, "reactionVideos": [], @@ -614044,7 +613695,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17940862, "featuredRunMedia": null, "reactionVideos": [], @@ -614072,7 +613723,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17941088, "featuredRunMedia": null, "reactionVideos": [], @@ -614110,7 +613761,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 141, + "teamId": "3241", "time": 17941624, "featuredRunMedia": null, "reactionVideos": [], @@ -614132,7 +613783,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17942663, "featuredRunMedia": null, "reactionVideos": [], @@ -614165,7 +613816,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 63, + "teamId": "3243", "time": 17943327, "featuredRunMedia": null, "reactionVideos": [], @@ -614193,7 +613844,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 303, + "teamId": "2949", "time": 17943921, "featuredRunMedia": null, "reactionVideos": [], @@ -614219,7 +613870,7 @@ "isFirstBestTeamRun": false }, "problemId": "5", - "teamId": 349, + "teamId": "2554", "time": 17944126, "featuredRunMedia": null, "reactionVideos": [], @@ -614252,7 +613903,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 17944471, "featuredRunMedia": null, "reactionVideos": [], @@ -614280,7 +613931,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 188, + "teamId": "2451", "time": 17944477, "featuredRunMedia": null, "reactionVideos": [], @@ -614313,7 +613964,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "3155", "time": 17944830, "featuredRunMedia": null, "reactionVideos": [], @@ -614351,7 +614002,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 143, + "teamId": "1251", "time": 17945056, "featuredRunMedia": null, "reactionVideos": [], @@ -614384,7 +614035,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 163, + "teamId": "1142", "time": 17945138, "featuredRunMedia": null, "reactionVideos": [], @@ -614412,7 +614063,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17945454, "featuredRunMedia": null, "reactionVideos": [], @@ -614450,7 +614101,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 17945961, "featuredRunMedia": null, "reactionVideos": [], @@ -614483,7 +614134,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17946373, "featuredRunMedia": null, "reactionVideos": [], @@ -614505,7 +614156,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 238, + "teamId": "2151", "time": 17948090, "featuredRunMedia": null, "reactionVideos": [], @@ -614533,7 +614184,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 17948268, "featuredRunMedia": null, "reactionVideos": [], @@ -614566,7 +614217,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 187, + "teamId": "2444", "time": 17948550, "featuredRunMedia": null, "reactionVideos": [], @@ -614599,7 +614250,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "1455", "time": 17949342, "featuredRunMedia": null, "reactionVideos": [], @@ -614637,7 +614288,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 121, + "teamId": "1847", "time": 17949411, "featuredRunMedia": null, "reactionVideos": [], @@ -614665,7 +614316,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17949455, "featuredRunMedia": null, "reactionVideos": [], @@ -614693,7 +614344,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17949634, "featuredRunMedia": null, "reactionVideos": [], @@ -614731,7 +614382,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 98, + "teamId": "2251", "time": 17950644, "featuredRunMedia": null, "reactionVideos": [], @@ -614764,7 +614415,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17950995, "featuredRunMedia": null, "reactionVideos": [], @@ -614792,7 +614443,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17951227, "featuredRunMedia": null, "reactionVideos": [], @@ -614820,7 +614471,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17951451, "featuredRunMedia": null, "reactionVideos": [], @@ -614853,7 +614504,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 18, + "teamId": "1146", "time": 17951506, "featuredRunMedia": null, "reactionVideos": [], @@ -614886,7 +614537,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 261, + "teamId": "1943", "time": 17952119, "featuredRunMedia": null, "reactionVideos": [], @@ -614924,7 +614575,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17952506, "featuredRunMedia": null, "reactionVideos": [], @@ -614952,7 +614603,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 17952764, "featuredRunMedia": null, "reactionVideos": [], @@ -614990,7 +614641,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17953234, "featuredRunMedia": null, "reactionVideos": [], @@ -615023,7 +614674,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 35, + "teamId": "1554", "time": 17953620, "featuredRunMedia": null, "reactionVideos": [], @@ -615045,7 +614696,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17954846, "featuredRunMedia": null, "reactionVideos": [], @@ -615078,7 +614729,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 205, + "teamId": "1455", "time": 17955135, "featuredRunMedia": null, "reactionVideos": [], @@ -615116,7 +614767,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17955910, "featuredRunMedia": null, "reactionVideos": [], @@ -615144,7 +614795,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 242, + "teamId": "3056", "time": 17956628, "featuredRunMedia": null, "reactionVideos": [], @@ -615182,7 +614833,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 282, + "teamId": "1947", "time": 17958269, "featuredRunMedia": null, "reactionVideos": [], @@ -615215,7 +614866,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17958485, "featuredRunMedia": null, "reactionVideos": [], @@ -615243,7 +614894,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17958787, "featuredRunMedia": null, "reactionVideos": [], @@ -615281,7 +614932,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 309, + "teamId": "1941", "time": 17959320, "featuredRunMedia": null, "reactionVideos": [], @@ -615309,7 +614960,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17959421, "featuredRunMedia": null, "reactionVideos": [], @@ -615337,7 +614988,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 17960058, "featuredRunMedia": null, "reactionVideos": [], @@ -615359,7 +615010,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17960598, "featuredRunMedia": null, "reactionVideos": [], @@ -615387,7 +615038,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17960774, "featuredRunMedia": null, "reactionVideos": [], @@ -615420,7 +615071,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17961381, "featuredRunMedia": null, "reactionVideos": [], @@ -615453,7 +615104,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 9, + "teamId": "1846", "time": 17962821, "featuredRunMedia": null, "reactionVideos": [], @@ -615491,7 +615142,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 109, + "teamId": "2649", "time": 17962890, "featuredRunMedia": null, "reactionVideos": [], @@ -615519,7 +615170,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 149, + "teamId": "2748", "time": 17963314, "featuredRunMedia": null, "reactionVideos": [], @@ -615547,7 +615198,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 207, + "teamId": "2855", "time": 17963820, "featuredRunMedia": null, "reactionVideos": [], @@ -615580,7 +615231,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 6, + "teamId": "2453", "time": 17965061, "featuredRunMedia": null, "reactionVideos": [], @@ -615613,7 +615264,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17965095, "featuredRunMedia": null, "reactionVideos": [], @@ -615641,7 +615292,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 17966491, "featuredRunMedia": null, "reactionVideos": [], @@ -615669,7 +615320,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17966612, "featuredRunMedia": null, "reactionVideos": [], @@ -615702,7 +615353,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 337, + "teamId": "1656", "time": 17966614, "featuredRunMedia": null, "reactionVideos": [], @@ -615740,7 +615391,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 17966629, "featuredRunMedia": null, "reactionVideos": [], @@ -615773,7 +615424,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 11, + "teamId": "1150", "time": 17966952, "featuredRunMedia": null, "reactionVideos": [], @@ -615801,7 +615452,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17966975, "featuredRunMedia": null, "reactionVideos": [], @@ -615834,7 +615485,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 99, + "teamId": "2248", "time": 17968082, "featuredRunMedia": null, "reactionVideos": [], @@ -615862,7 +615513,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17968123, "featuredRunMedia": null, "reactionVideos": [], @@ -615900,7 +615551,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17968455, "featuredRunMedia": null, "reactionVideos": [], @@ -615933,7 +615584,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17969228, "featuredRunMedia": null, "reactionVideos": [], @@ -615966,7 +615617,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 25, + "teamId": "2843", "time": 17969941, "featuredRunMedia": null, "reactionVideos": [], @@ -616004,7 +615655,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 326, + "teamId": "1143", "time": 17969970, "featuredRunMedia": null, "reactionVideos": [], @@ -616032,7 +615683,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17970249, "featuredRunMedia": null, "reactionVideos": [], @@ -616065,7 +615716,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 3, + "teamId": "1341", "time": 17970366, "featuredRunMedia": null, "reactionVideos": [], @@ -616093,7 +615744,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 29, + "teamId": "2448", "time": 17970810, "featuredRunMedia": null, "reactionVideos": [], @@ -616131,7 +615782,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 306, + "teamId": "2056", "time": 17971381, "featuredRunMedia": null, "reactionVideos": [], @@ -616159,7 +615810,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17971441, "featuredRunMedia": null, "reactionVideos": [], @@ -616197,7 +615848,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 276, + "teamId": "2141", "time": 17971798, "featuredRunMedia": null, "reactionVideos": [], @@ -616230,7 +615881,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17972325, "featuredRunMedia": null, "reactionVideos": [], @@ -616268,7 +615919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 110, + "teamId": "2750", "time": 17972683, "featuredRunMedia": null, "reactionVideos": [], @@ -616296,7 +615947,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 262, + "teamId": "2352", "time": 17973393, "featuredRunMedia": null, "reactionVideos": [], @@ -616329,7 +615980,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 85, + "teamId": "2150", "time": 17973934, "featuredRunMedia": null, "reactionVideos": [], @@ -616357,7 +616008,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 215, + "teamId": "2841", "time": 17974248, "featuredRunMedia": null, "reactionVideos": [], @@ -616379,7 +616030,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17974381, "featuredRunMedia": null, "reactionVideos": [], @@ -616417,7 +616068,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 299, + "teamId": "1752", "time": 17974381, "featuredRunMedia": null, "reactionVideos": [], @@ -616450,7 +616101,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 17974671, "featuredRunMedia": null, "reactionVideos": [], @@ -616478,7 +616129,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17974980, "featuredRunMedia": null, "reactionVideos": [], @@ -616511,7 +616162,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 68, + "teamId": "2644", "time": 17974984, "featuredRunMedia": null, "reactionVideos": [], @@ -616544,7 +616195,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17975120, "featuredRunMedia": null, "reactionVideos": [], @@ -616582,7 +616233,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 156, + "teamId": "1447", "time": 17975634, "featuredRunMedia": null, "reactionVideos": [], @@ -616610,7 +616261,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 237, + "teamId": "2246", "time": 17976198, "featuredRunMedia": null, "reactionVideos": [], @@ -616648,7 +616299,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17976792, "featuredRunMedia": null, "reactionVideos": [], @@ -616681,7 +616332,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17977113, "featuredRunMedia": null, "reactionVideos": [], @@ -616709,7 +616360,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 155, + "teamId": "1246", "time": 17977244, "featuredRunMedia": null, "reactionVideos": [], @@ -616742,7 +616393,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 128, + "teamId": "2842", "time": 17977831, "featuredRunMedia": null, "reactionVideos": [], @@ -616780,7 +616431,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 172, + "teamId": "1841", "time": 17978448, "featuredRunMedia": null, "reactionVideos": [], @@ -616813,7 +616464,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17978490, "featuredRunMedia": null, "reactionVideos": [], @@ -616846,7 +616497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 213, + "teamId": "2456", "time": 17979306, "featuredRunMedia": null, "reactionVideos": [], @@ -616874,7 +616525,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 293, + "teamId": "3153", "time": 17979638, "featuredRunMedia": null, "reactionVideos": [], @@ -616902,7 +616553,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 225, + "teamId": "2544", "time": 17979681, "featuredRunMedia": null, "reactionVideos": [], @@ -616940,7 +616591,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 164, + "teamId": "1453", "time": 17980841, "featuredRunMedia": null, "reactionVideos": [], @@ -616968,7 +616619,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17981607, "featuredRunMedia": null, "reactionVideos": [], @@ -616996,7 +616647,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 315, + "teamId": "1542", "time": 17982009, "featuredRunMedia": null, "reactionVideos": [], @@ -617024,7 +616675,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17982033, "featuredRunMedia": null, "reactionVideos": [], @@ -617057,7 +616708,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17982407, "featuredRunMedia": null, "reactionVideos": [], @@ -617085,7 +616736,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 298, + "teamId": "1642", "time": 17982458, "featuredRunMedia": null, "reactionVideos": [], @@ -617123,7 +616774,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 147, + "teamId": "2042", "time": 17982997, "featuredRunMedia": null, "reactionVideos": [], @@ -617151,7 +616802,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 80, + "teamId": "1848", "time": 17983187, "featuredRunMedia": null, "reactionVideos": [], @@ -617179,7 +616830,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 185, + "teamId": "2547", "time": 17983678, "featuredRunMedia": null, "reactionVideos": [], @@ -617217,7 +616868,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 123, + "teamId": "2648", "time": 17983715, "featuredRunMedia": null, "reactionVideos": [], @@ -617250,7 +616901,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 44, + "teamId": "3154", "time": 17984104, "featuredRunMedia": null, "reactionVideos": [], @@ -617278,7 +616929,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 175, + "teamId": "2044", "time": 17985122, "featuredRunMedia": null, "reactionVideos": [], @@ -617306,7 +616957,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17985144, "featuredRunMedia": null, "reactionVideos": [], @@ -617339,7 +616990,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 116, + "teamId": "1956", "time": 17985181, "featuredRunMedia": null, "reactionVideos": [], @@ -617372,7 +617023,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17985589, "featuredRunMedia": null, "reactionVideos": [], @@ -617405,7 +617056,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17985845, "featuredRunMedia": null, "reactionVideos": [], @@ -617443,7 +617094,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 335, + "teamId": "2148", "time": 17986068, "featuredRunMedia": null, "reactionVideos": [], @@ -617481,7 +617132,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 230, + "teamId": "1949", "time": 17986246, "featuredRunMedia": null, "reactionVideos": [], @@ -617509,7 +617160,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17986551, "featuredRunMedia": null, "reactionVideos": [], @@ -617542,7 +617193,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17986622, "featuredRunMedia": null, "reactionVideos": [], @@ -617580,7 +617231,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 319, + "teamId": "1545", "time": 17987036, "featuredRunMedia": null, "reactionVideos": [], @@ -617613,7 +617264,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 209, + "teamId": "2755", "time": 17987099, "featuredRunMedia": null, "reactionVideos": [], @@ -617646,7 +617297,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 62, + "teamId": "2049", "time": 17987174, "featuredRunMedia": null, "reactionVideos": [], @@ -617674,7 +617325,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 216, + "teamId": "1753", "time": 17987422, "featuredRunMedia": null, "reactionVideos": [], @@ -617702,7 +617353,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 154, + "teamId": "1148", "time": 17987447, "featuredRunMedia": null, "reactionVideos": [], @@ -617735,7 +617386,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 30, + "teamId": "2654", "time": 17987597, "featuredRunMedia": null, "reactionVideos": [], @@ -617768,7 +617419,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 48, + "teamId": "2952", "time": 17987754, "featuredRunMedia": null, "reactionVideos": [], @@ -617796,7 +617447,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 17988097, "featuredRunMedia": null, "reactionVideos": [], @@ -617818,7 +617469,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 162, + "teamId": "2156", "time": 17988249, "featuredRunMedia": null, "reactionVideos": [], @@ -617851,7 +617502,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 23, + "teamId": "2953", "time": 17988338, "featuredRunMedia": null, "reactionVideos": [], @@ -617879,7 +617530,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 164, + "teamId": "1453", "time": 17988955, "featuredRunMedia": null, "reactionVideos": [], @@ -617917,7 +617568,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 192, + "teamId": "1849", "time": 17989719, "featuredRunMedia": null, "reactionVideos": [], @@ -617945,7 +617596,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 314, + "teamId": "2944", "time": 17990140, "featuredRunMedia": null, "reactionVideos": [], @@ -617973,7 +617624,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 181, + "teamId": "2344", "time": 17990414, "featuredRunMedia": null, "reactionVideos": [], @@ -618001,7 +617652,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 342, + "teamId": "1347", "time": 17991949, "featuredRunMedia": null, "reactionVideos": [], @@ -618029,7 +617680,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 127, + "teamId": "1747", "time": 17991960, "featuredRunMedia": null, "reactionVideos": [], @@ -618057,7 +617708,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17992193, "featuredRunMedia": null, "reactionVideos": [], @@ -618085,7 +617736,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 222, + "teamId": "1244", "time": 17992276, "featuredRunMedia": null, "reactionVideos": [], @@ -618113,7 +617764,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 229, + "teamId": "1853", "time": 17992389, "featuredRunMedia": null, "reactionVideos": [], @@ -618141,7 +617792,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 257, + "teamId": "1651", "time": 17992596, "featuredRunMedia": null, "reactionVideos": [], @@ -618174,7 +617825,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 180, + "teamId": "3155", "time": 17993002, "featuredRunMedia": null, "reactionVideos": [], @@ -618202,7 +617853,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 292, + "teamId": "1348", "time": 17993356, "featuredRunMedia": null, "reactionVideos": [], @@ -618230,7 +617881,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 83, + "teamId": "2555", "time": 17993570, "featuredRunMedia": null, "reactionVideos": [], @@ -618268,7 +617919,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 305, + "teamId": "2743", "time": 17993604, "featuredRunMedia": null, "reactionVideos": [], @@ -618301,7 +617952,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 133, + "teamId": "2951", "time": 17993703, "featuredRunMedia": null, "reactionVideos": [], @@ -618334,7 +617985,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17993902, "featuredRunMedia": null, "reactionVideos": [], @@ -618367,7 +618018,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 210, + "teamId": "1852", "time": 17994124, "featuredRunMedia": null, "reactionVideos": [], @@ -618405,7 +618056,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 214, + "teamId": "1454", "time": 17994515, "featuredRunMedia": null, "reactionVideos": [], @@ -618433,7 +618084,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 231, + "teamId": "1555", "time": 17994527, "featuredRunMedia": null, "reactionVideos": [], @@ -618471,7 +618122,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 148, + "teamId": "1151", "time": 17994851, "featuredRunMedia": null, "reactionVideos": [], @@ -618504,7 +618155,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 19, + "teamId": "2656", "time": 17995624, "featuredRunMedia": null, "reactionVideos": [], @@ -618542,7 +618193,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 69, + "teamId": "1951", "time": 17995749, "featuredRunMedia": null, "reactionVideos": [], @@ -618564,7 +618215,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 78, + "teamId": "2442", "time": 17996279, "featuredRunMedia": null, "reactionVideos": [], @@ -618597,7 +618248,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 14, + "teamId": "1955", "time": 17996415, "featuredRunMedia": null, "reactionVideos": [], @@ -618630,7 +618281,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 61, + "teamId": "2045", "time": 17996415, "featuredRunMedia": null, "reactionVideos": [], @@ -618663,7 +618314,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 10, + "teamId": "2048", "time": 17996437, "featuredRunMedia": null, "reactionVideos": [], @@ -618691,7 +618342,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 160, + "teamId": "1649", "time": 17996452, "featuredRunMedia": null, "reactionVideos": [], @@ -618724,7 +618375,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 73, + "teamId": "3144", "time": 17996615, "featuredRunMedia": null, "reactionVideos": [], @@ -618752,7 +618403,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 208, + "teamId": "3141", "time": 17996617, "featuredRunMedia": null, "reactionVideos": [], @@ -618780,7 +618431,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 346, + "teamId": "1750", "time": 17997148, "featuredRunMedia": null, "reactionVideos": [], @@ -618813,7 +618464,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 12, + "teamId": "2349", "time": 17997395, "featuredRunMedia": null, "reactionVideos": [], @@ -618846,7 +618497,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 42, + "teamId": "1645", "time": 17997484, "featuredRunMedia": null, "reactionVideos": [], @@ -618879,7 +618530,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 297, + "teamId": "1546", "time": 17997510, "featuredRunMedia": null, "reactionVideos": [], @@ -618912,7 +618563,7 @@ "isFirstBestTeamRun": false }, "problemId": "8", - "teamId": 259, + "teamId": "2946", "time": 17998839, "featuredRunMedia": null, "reactionVideos": [], @@ -618940,7 +618591,7 @@ "isFirstBestTeamRun": false }, "problemId": "6", - "teamId": 235, + "teamId": "3147", "time": 17999000, "featuredRunMedia": null, "reactionVideos": [], @@ -618978,7 +618629,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 314, + "teamId": "2944", "time": 17999414, "featuredRunMedia": null, "reactionVideos": [], @@ -619000,7 +618651,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 94, + "teamId": "2744", "time": 17999828, "featuredRunMedia": null, "reactionVideos": [], @@ -619038,7 +618689,7 @@ "isFirstBestTeamRun": false }, "problemId": "7", - "teamId": 260, + "teamId": "1549", "time": 17999871, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/pcmsLegacy.txt b/src/cds/tests/testData/loaders/goldenData/pcmsLegacy.txt index 1ee9b0715..d6c89ef62 100644 --- a/src/cds/tests/testData/loaders/goldenData/pcmsLegacy.txt +++ b/src/cds/tests/testData/loaders/goldenData/pcmsLegacy.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 1, - "name": "SPb ITMO University 1 (Kovsharov, Bardashevich, Smykalov)", - "shortName": "SPb ITMO University 1 (Kovsharov, Bardashevich, Smykalov)", - "contestSystemId": "713", + "id": "101", + "name": "SPb SU of Telecommunications 1 (Tarasov, Yastrebov, Kiselev)", + "shortName": "SPb SU of Telecommunications 1 (Tarasov, Yastrebov, Kiselev)", "groups": [], "hashTag": null, "medias": {}, @@ -167,10 +166,9 @@ "customFields": {} }, { - "id": 2, - "name": "SPb State University 1 (Ershov, Pyshkin, Gordeev)", - "shortName": "SPb State University 1 (Ershov, Pyshkin, Gordeev)", - "contestSystemId": "711", + "id": "102", + "name": "SPb ITMO University 17 (Kongoev, Startsev, Kaberov)", + "shortName": "SPb ITMO University 17 (Kongoev, Startsev, Kaberov)", "groups": [], "hashTag": null, "medias": {}, @@ -180,10 +178,9 @@ "customFields": {} }, { - "id": 3, - "name": "SPb State University 3 (Simonov, Logunov, Ryazanov)", - "shortName": "SPb State University 3 (Simonov, Logunov, Ryazanov)", - "contestSystemId": "215", + "id": "103", + "name": "Kuznetsov Naval Academy (Gorbunov, Ahmetov, Ivanov)", + "shortName": "Kuznetsov Naval Academy (Gorbunov, Ahmetov, Ivanov)", "groups": [], "hashTag": null, "medias": {}, @@ -193,10 +190,9 @@ "customFields": {} }, { - "id": 4, - "name": "SPb ITMO University 3 (Budin, Latyshev, Yakutov)", - "shortName": "SPb ITMO University 3 (Budin, Latyshev, Yakutov)", - "contestSystemId": "505", + "id": "105", + "name": "SPb SU of Economics 1 (Ivanova, Pliner, Gadalova)", + "shortName": "SPb SU of Economics 1 (Ivanova, Pliner, Gadalova)", "groups": [], "hashTag": null, "medias": {}, @@ -206,10 +202,9 @@ "customFields": {} }, { - "id": 5, - "name": "SPb ITMO University 2 (Belonogov, Podtelkin, Zban)", - "shortName": "SPb ITMO University 2 (Belonogov, Podtelkin, Zban)", - "contestSystemId": "422", + "id": "106", + "name": "SPb Academic University 10 (Pilyugin, Mordberg, Geller)", + "shortName": "SPb Academic University 10 (Pilyugin, Mordberg, Geller)", "groups": [], "hashTag": null, "medias": {}, @@ -219,10 +214,9 @@ "customFields": {} }, { - "id": 6, - "name": "SPb Academic University 1 (Bogomolov, Podguzov, Smirnov)", - "shortName": "SPb Academic University 1 (Bogomolov, Podguzov, Smirnov)", - "contestSystemId": "220", + "id": "107", + "name": "SPb State University 7 (Miroshnichenko, Ivanova, Ninalalov)", + "shortName": "SPb State University 7 (Miroshnichenko, Ivanova, Ninalalov)", "groups": [], "hashTag": null, "medias": {}, @@ -232,10 +226,9 @@ "customFields": {} }, { - "id": 7, - "name": "SPb State University 2 (Savchenkov, Makarov, Sayranov)", - "shortName": "SPb State University 2 (Savchenkov, Makarov, Sayranov)", - "contestSystemId": "512", + "id": "109", + "name": "SPb ITMO University 11 (Maltsev, Elkin, Tupikina)", + "shortName": "SPb ITMO University 11 (Maltsev, Elkin, Tupikina)", "groups": [], "hashTag": null, "medias": {}, @@ -245,10 +238,9 @@ "customFields": {} }, { - "id": 8, - "name": "SPb ITMO University 4 (Kisialiou, Berinchik, Korchagin)", - "shortName": "SPb ITMO University 4 (Kisialiou, Berinchik, Korchagin)", - "contestSystemId": "420", + "id": "110", + "name": "SPb Academic University 9 (Vasilyev, Stepanov, Serebro)", + "shortName": "SPb Academic University 9 (Vasilyev, Stepanov, Serebro)", "groups": [], "hashTag": null, "medias": {}, @@ -258,10 +250,9 @@ "customFields": {} }, { - "id": 9, - "name": "SPb State University 4 (Gulikov, Malinovskii, Kulikov)", - "shortName": "SPb State University 4 (Gulikov, Malinovskii, Kulikov)", - "contestSystemId": "606", + "id": "201", + "name": "SPb State University 12 (Kravchenko, Derkunskii, Dashku)", + "shortName": "SPb State University 12 (Kravchenko, Derkunskii, Dashku)", "groups": [], "hashTag": null, "medias": {}, @@ -271,10 +262,9 @@ "customFields": {} }, { - "id": 10, - "name": "SPb Academic University 7 (Moskvitin, Smirnov, Plyushchenko)", - "shortName": "SPb Academic University 7 (Moskvitin, Smirnov, Plyushchenko)", - "contestSystemId": "706", + "id": "203", + "name": "SPb ITMO University 5 (Sushencev, Ohanjanyan, Sazanovich)", + "shortName": "SPb ITMO University 5 (Sushencev, Ohanjanyan, Sazanovich)", "groups": [], "hashTag": null, "medias": {}, @@ -284,10 +274,9 @@ "customFields": {} }, { - "id": 11, - "name": "Northern (Arctic) Federal University 1 (Popovich, Chesnokov, Dodin)", - "shortName": "Northern (Arctic) Federal University 1 (Popovich, Chesnokov, Dodin)", - "contestSystemId": "304", + "id": "204", + "name": "SPb SU of Architecture and Civil Engineering 2 (Zadumkin, Tushin, Kamenev)", + "shortName": "SPb SU of Architecture and Civil Engineering 2 (Zadumkin, Tushin, Kamenev)", "groups": [], "hashTag": null, "medias": {}, @@ -297,10 +286,9 @@ "customFields": {} }, { - "id": 12, - "name": "SPb Academic University 4 (Rebryk, Zhidkov, Stepanov)", - "shortName": "SPb Academic University 4 (Rebryk, Zhidkov, Stepanov)", - "contestSystemId": "207", + "id": "205", + "name": "SPb SU of Telecommunications 2 (Karavaev, Tetka, Gerkulesov)", + "shortName": "SPb SU of Telecommunications 2 (Karavaev, Tetka, Gerkulesov)", "groups": [], "hashTag": null, "medias": {}, @@ -310,10 +298,9 @@ "customFields": {} }, { - "id": 13, - "name": "SPb Academic University 6 (Zuev, Vinnichenko, Belova)", - "shortName": "SPb Academic University 6 (Zuev, Vinnichenko, Belova)", - "contestSystemId": "604", + "id": "206", + "name": "SPb State University 5 (Pyankov, Plotkin, Gorislavskiy)", + "shortName": "SPb State University 5 (Pyankov, Plotkin, Gorislavskiy)", "groups": [], "hashTag": null, "medias": {}, @@ -323,10 +310,9 @@ "customFields": {} }, { - "id": 14, - "name": "SPb Academic University 2 (Chernikova, Labutin, Shcherbin)", - "shortName": "SPb Academic University 2 (Chernikova, Labutin, Shcherbin)", - "contestSystemId": "303", + "id": "207", + "name": "SPb Academic University 4 (Rebryk, Zhidkov, Stepanov)", + "shortName": "SPb Academic University 4 (Rebryk, Zhidkov, Stepanov)", "groups": [], "hashTag": null, "medias": {}, @@ -336,10 +322,9 @@ "customFields": {} }, { - "id": 15, - "name": "SPb Academic University 5 (Kravchenko, Nikonov, Rozplokhas)", - "shortName": "SPb Academic University 5 (Kravchenko, Nikonov, Rozplokhas)", - "contestSystemId": "411", + "id": "208", + "name": "SPb Baltic State Technical University 1 (Gabidullin, Davydenko, Elokhin)", + "shortName": "SPb Baltic State Technical University 1 (Gabidullin, Davydenko, Elokhin)", "groups": [], "hashTag": null, "medias": {}, @@ -349,10 +334,9 @@ "customFields": {} }, { - "id": 16, - "name": "SPb ITMO University 5 (Sushencev, Ohanjanyan, Sazanovich)", - "shortName": "SPb ITMO University 5 (Sushencev, Ohanjanyan, Sazanovich)", - "contestSystemId": "203", + "id": "209", + "name": "SPb Electrotechnical University 3 (Babinov, Kuzmin, Mikhal)", + "shortName": "SPb Electrotechnical University 3 (Babinov, Kuzmin, Mikhal)", "groups": [], "hashTag": null, "medias": {}, @@ -362,10 +346,9 @@ "customFields": {} }, { - "id": 17, - "name": "SPb ITMO University 7 (Turaev, Kostlivtsev, Burakov)", - "shortName": "SPb ITMO University 7 (Turaev, Kostlivtsev, Burakov)", - "contestSystemId": "401", + "id": "210", + "name": "Mikhailovskaya Military Artillery Academy 1 (Shovkin, Klimenko, Budukin)", + "shortName": "Mikhailovskaya Military Artillery Academy 1 (Shovkin, Klimenko, Budukin)", "groups": [], "hashTag": null, "medias": {}, @@ -375,10 +358,9 @@ "customFields": {} }, { - "id": 18, - "name": "SPb Academic University 8 (Sofronova, Olhovskiy, Tonkih)", - "shortName": "SPb Academic University 8 (Sofronova, Olhovskiy, Tonkih)", - "contestSystemId": "416", + "id": "211", + "name": "SPb SU of Economics 2 (Karabaza, Sinko, Mikhailovsky)", + "shortName": "SPb SU of Economics 2 (Karabaza, Sinko, Mikhailovsky)", "groups": [], "hashTag": null, "medias": {}, @@ -388,10 +370,9 @@ "customFields": {} }, { - "id": 19, - "name": "SPb Academic University 3 (Bugakova, Kravchenko, Tretyakova)", - "shortName": "SPb Academic University 3 (Bugakova, Kravchenko, Tretyakova)", - "contestSystemId": "517", + "id": "212", + "name": "SPb ITMO University 9 (Shkarupin, Klyamar, Trofimov)", + "shortName": "SPb ITMO University 9 (Shkarupin, Klyamar, Trofimov)", "groups": [], "hashTag": null, "medias": {}, @@ -401,10 +382,9 @@ "customFields": {} }, { - "id": 20, - "name": "SPb ITMO University 13 (Yaglamunov, Romanova, Smorodin)", - "shortName": "SPb ITMO University 13 (Yaglamunov, Romanova, Smorodin)", - "contestSystemId": "217", + "id": "213", + "name": "Pskov State University 1 (Shalabod, Shantarin, Dmitriev)", + "shortName": "Pskov State University 1 (Shalabod, Shantarin, Dmitriev)", "groups": [], "hashTag": null, "medias": {}, @@ -414,10 +394,9 @@ "customFields": {} }, { - "id": 21, - "name": "Petrozavodsk State University 1 (Ermishin, Starkov, Pyatin)", - "shortName": "Petrozavodsk State University 1 (Ermishin, Starkov, Pyatin)", - "contestSystemId": "515", + "id": "215", + "name": "SPb State University 3 (Simonov, Logunov, Ryazanov)", + "shortName": "SPb State University 3 (Simonov, Logunov, Ryazanov)", "groups": [], "hashTag": null, "medias": {}, @@ -427,10 +406,9 @@ "customFields": {} }, { - "id": 22, - "name": "SPb Academic University 10 (Pilyugin, Mordberg, Geller)", - "shortName": "SPb Academic University 10 (Pilyugin, Mordberg, Geller)", - "contestSystemId": "106", + "id": "217", + "name": "SPb ITMO University 13 (Yaglamunov, Romanova, Smorodin)", + "shortName": "SPb ITMO University 13 (Yaglamunov, Romanova, Smorodin)", "groups": [], "hashTag": null, "medias": {}, @@ -440,10 +418,9 @@ "customFields": {} }, { - "id": 23, - "name": "SPb ITMO University 8 (Zamyatin, Filippov, Peresadin)", - "shortName": "SPb ITMO University 8 (Zamyatin, Filippov, Peresadin)", - "contestSystemId": "305", + "id": "218", + "name": "SPb Electrotechnical University 4 (Smolyakov, Bachinskiy, Dvoretsky)", + "shortName": "SPb Electrotechnical University 4 (Smolyakov, Bachinskiy, Dvoretsky)", "groups": [], "hashTag": null, "medias": {}, @@ -453,10 +430,9 @@ "customFields": {} }, { - "id": 24, - "name": "Petrozavodsk State University 2 (Ermolin, Titov, Alkin)", - "shortName": "Petrozavodsk State University 2 (Ermolin, Titov, Alkin)", - "contestSystemId": "608", + "id": "219", + "name": "SPb State Polytechnic University 5 (Konyukh, Ignatenko, Mayorov)", + "shortName": "SPb State Polytechnic University 5 (Konyukh, Ignatenko, Mayorov)", "groups": [], "hashTag": null, "medias": {}, @@ -466,10 +442,9 @@ "customFields": {} }, { - "id": 25, - "name": "SPb State Polytechnic University 1 (Svitkin, Vinokhodov, Tretiakov)", - "shortName": "SPb State Polytechnic University 1 (Svitkin, Vinokhodov, Tretiakov)", - "contestSystemId": "419", + "id": "220", + "name": "SPb Academic University 1 (Bogomolov, Podguzov, Smirnov)", + "shortName": "SPb Academic University 1 (Bogomolov, Podguzov, Smirnov)", "groups": [], "hashTag": null, "medias": {}, @@ -479,10 +454,9 @@ "customFields": {} }, { - "id": 26, - "name": "SPb ITMO University 11 (Maltsev, Elkin, Tupikina)", - "shortName": "SPb ITMO University 11 (Maltsev, Elkin, Tupikina)", - "contestSystemId": "109", + "id": "221", + "name": "SPb SU of Trade and Economics (Chernyy, Lassal, Yussa)", + "shortName": "SPb SU of Trade and Economics (Chernyy, Lassal, Yussa)", "groups": [], "hashTag": null, "medias": {}, @@ -492,10 +466,9 @@ "customFields": {} }, { - "id": 27, - "name": "SPb ITMO University 6 (Zabashta, Alexandrov, Kolobov)", - "shortName": "SPb ITMO University 6 (Zabashta, Alexandrov, Kolobov)", - "contestSystemId": "704", + "id": "301", + "name": "SPb Electrotechnical University 1 (Chulanov, Yakushkin, Skorospelov)", + "shortName": "SPb Electrotechnical University 1 (Chulanov, Yakushkin, Skorospelov)", "groups": [], "hashTag": null, "medias": {}, @@ -505,10 +478,9 @@ "customFields": {} }, { - "id": 28, - "name": "SPb ITMO University 10 (Sultanov, Arkhipov, Vorobyev)", - "shortName": "SPb ITMO University 10 (Sultanov, Arkhipov, Vorobyev)", - "contestSystemId": "503", + "id": "302", + "name": "SPb U of Humanities and Social Sciences (Aleksenko, Plotnikov, Yashenko)", + "shortName": "SPb U of Humanities and Social Sciences (Aleksenko, Plotnikov, Yashenko)", "groups": [], "hashTag": null, "medias": {}, @@ -518,10 +490,9 @@ "customFields": {} }, { - "id": 29, - "name": "SPb ITMO University 17 (Kongoev, Startsev, Kaberov)", - "shortName": "SPb ITMO University 17 (Kongoev, Startsev, Kaberov)", - "contestSystemId": "102", + "id": "303", + "name": "SPb Academic University 2 (Chernikova, Labutin, Shcherbin)", + "shortName": "SPb Academic University 2 (Chernikova, Labutin, Shcherbin)", "groups": [], "hashTag": null, "medias": {}, @@ -531,10 +502,9 @@ "customFields": {} }, { - "id": 30, - "name": "SPb ITMO University 18 (Antonov, Topayev, Ryabchikov)", - "shortName": "SPb ITMO University 18 (Antonov, Topayev, Ryabchikov)", - "contestSystemId": "709", + "id": "304", + "name": "Northern (Arctic) Federal University 1 (Popovich, Chesnokov, Dodin)", + "shortName": "Northern (Arctic) Federal University 1 (Popovich, Chesnokov, Dodin)", "groups": [], "hashTag": null, "medias": {}, @@ -544,10 +514,9 @@ "customFields": {} }, { - "id": 31, - "name": "SPb State University 6 (Chudov, Lysov, Krasnoryadtseva)", - "shortName": "SPb State University 6 (Chudov, Lysov, Krasnoryadtseva)", - "contestSystemId": "403", + "id": "305", + "name": "SPb ITMO University 8 (Zamyatin, Filippov, Peresadin)", + "shortName": "SPb ITMO University 8 (Zamyatin, Filippov, Peresadin)", "groups": [], "hashTag": null, "medias": {}, @@ -557,10 +526,9 @@ "customFields": {} }, { - "id": 32, - "name": "SPb ITMO University 14 (Gilevich, Timchenko, Krasnotsvetov)", - "shortName": "SPb ITMO University 14 (Gilevich, Timchenko, Krasnotsvetov)", - "contestSystemId": "602", + "id": "306", + "name": "Mozhaisky Military Space Academy 4 (Konyakhin, Antonov, Semchenkov)", + "shortName": "Mozhaisky Military Space Academy 4 (Konyakhin, Antonov, Semchenkov)", "groups": [], "hashTag": null, "medias": {}, @@ -570,10 +538,9 @@ "customFields": {} }, { - "id": 33, - "name": "Pskov State University 1 (Shalabod, Shantarin, Dmitriev)", - "shortName": "Pskov State University 1 (Shalabod, Shantarin, Dmitriev)", - "contestSystemId": "213", + "id": "308", + "name": "SPb State University 16 (Shabanov, Miloserdov, Shumilov)", + "shortName": "SPb State University 16 (Shabanov, Miloserdov, Shumilov)", "groups": [], "hashTag": null, "medias": {}, @@ -583,10 +550,9 @@ "customFields": {} }, { - "id": 34, - "name": "SPb ITMO University 12 (Novik, Lebedev, Kupriyanov)", - "shortName": "SPb ITMO University 12 (Novik, Lebedev, Kupriyanov)", - "contestSystemId": "610", + "id": "309", + "name": "Military Academy of Communications 2 (Morozov, Starostin, Melekhin)", + "shortName": "Military Academy of Communications 2 (Morozov, Starostin, Melekhin)", "groups": [], "hashTag": null, "medias": {}, @@ -596,10 +562,9 @@ "customFields": {} }, { - "id": 35, - "name": "SPb State University 5 (Pyankov, Plotkin, Gorislavskiy)", - "shortName": "SPb State University 5 (Pyankov, Plotkin, Gorislavskiy)", - "contestSystemId": "206", + "id": "401", + "name": "SPb ITMO University 7 (Turaev, Kostlivtsev, Burakov)", + "shortName": "SPb ITMO University 7 (Turaev, Kostlivtsev, Burakov)", "groups": [], "hashTag": null, "medias": {}, @@ -609,10 +574,9 @@ "customFields": {} }, { - "id": 36, - "name": "SPb ITMO University 15 (Ignashov, Strashkov, Savelyev)", - "shortName": "SPb ITMO University 15 (Ignashov, Strashkov, Savelyev)", - "contestSystemId": "406", + "id": "403", + "name": "SPb State University 6 (Chudov, Lysov, Krasnoryadtseva)", + "shortName": "SPb State University 6 (Chudov, Lysov, Krasnoryadtseva)", "groups": [], "hashTag": null, "medias": {}, @@ -622,10 +586,9 @@ "customFields": {} }, { - "id": 37, - "name": "Northern (Arctic) Federal University 2 (Guriev, Urusovskiy, Rudniy)", - "shortName": "Northern (Arctic) Federal University 2 (Guriev, Urusovskiy, Rudniy)", - "contestSystemId": "414", + "id": "404", + "name": "Makarov SU of Maritime and Inland Shipping (Vasetsky, Loginov, Lukushin)", + "shortName": "Makarov SU of Maritime and Inland Shipping (Vasetsky, Loginov, Lukushin)", "groups": [], "hashTag": null, "medias": {}, @@ -635,10 +598,9 @@ "customFields": {} }, { - "id": 38, - "name": "Petrozavodsk State University 3 (Dubinin, Golovachuk, Kukushkin)", - "shortName": "Petrozavodsk State University 3 (Dubinin, Golovachuk, Kukushkin)", - "contestSystemId": "710", + "id": "406", + "name": "SPb ITMO University 15 (Ignashov, Strashkov, Savelyev)", + "shortName": "SPb ITMO University 15 (Ignashov, Strashkov, Savelyev)", "groups": [], "hashTag": null, "medias": {}, @@ -648,10 +610,9 @@ "customFields": {} }, { - "id": 39, - "name": "SPb State University 9 (Antopol, Balakina, Pervakov)", - "shortName": "SPb State University 9 (Antopol, Balakina, Pervakov)", - "contestSystemId": "501", + "id": "407", + "name": "SPb Electrotechnical University 2 (Shabashov, Chumakov, Grebenuk)", + "shortName": "SPb Electrotechnical University 2 (Shabashov, Chumakov, Grebenuk)", "groups": [], "hashTag": null, "medias": {}, @@ -661,10 +622,9 @@ "customFields": {} }, { - "id": 40, - "name": "SPb State University 15 (Lagutin, Evseev, Avetyan)", - "shortName": "SPb State University 15 (Lagutin, Evseev, Avetyan)", - "contestSystemId": "702", + "id": "408", + "name": "SPb Baltic State Technical University 2 (Penzin, Pavlenko, Kabanets)", + "shortName": "SPb Baltic State Technical University 2 (Penzin, Pavlenko, Kabanets)", "groups": [], "hashTag": null, "medias": {}, @@ -674,10 +634,9 @@ "customFields": {} }, { - "id": 41, - "name": "SPb State University 12 (Kravchenko, Derkunskii, Dashku)", - "shortName": "SPb State University 12 (Kravchenko, Derkunskii, Dashku)", - "contestSystemId": "201", + "id": "409", + "name": "SPb State University 8 (Kanteev, Pravdyukov, Chugaev)", + "shortName": "SPb State University 8 (Kanteev, Pravdyukov, Chugaev)", "groups": [], "hashTag": null, "medias": {}, @@ -687,10 +646,9 @@ "customFields": {} }, { - "id": 42, - "name": "SPb State Polytechnic University 3 (Egorov, Serov, Harfush)", - "shortName": "SPb State Polytechnic University 3 (Egorov, Serov, Harfush)", - "contestSystemId": "504", + "id": "410", + "name": "Pskov State University 2 (Fedorov, Smirnov, Ivanova)", + "shortName": "Pskov State University 2 (Fedorov, Smirnov, Ivanova)", "groups": [], "hashTag": null, "medias": {}, @@ -700,10 +658,9 @@ "customFields": {} }, { - "id": 43, - "name": "SPb ITMO University 9 (Shkarupin, Klyamar, Trofimov)", - "shortName": "SPb ITMO University 9 (Shkarupin, Klyamar, Trofimov)", - "contestSystemId": "212", + "id": "411", + "name": "SPb Academic University 5 (Kravchenko, Nikonov, Rozplokhas)", + "shortName": "SPb Academic University 5 (Kravchenko, Nikonov, Rozplokhas)", "groups": [], "hashTag": null, "medias": {}, @@ -713,10 +670,9 @@ "customFields": {} }, { - "id": 44, - "name": "SPb SU of Telecommunications 1 (Tarasov, Yastrebov, Kiselev)", - "shortName": "SPb SU of Telecommunications 1 (Tarasov, Yastrebov, Kiselev)", - "contestSystemId": "101", + "id": "412", + "name": "SPb SU of Telecommunications 3 (Dudakov, Mardanov, Shustov)", + "shortName": "SPb SU of Telecommunications 3 (Dudakov, Mardanov, Shustov)", "groups": [], "hashTag": null, "medias": {}, @@ -726,10 +682,9 @@ "customFields": {} }, { - "id": 45, - "name": "SPb Academic University 9 (Vasilyev, Stepanov, Serebro)", - "shortName": "SPb Academic University 9 (Vasilyev, Stepanov, Serebro)", - "contestSystemId": "110", + "id": "413", + "name": "SPb State University 13 (Nebogatikov, Mallabaev, Plotnikov)", + "shortName": "SPb State University 13 (Nebogatikov, Mallabaev, Plotnikov)", "groups": [], "hashTag": null, "medias": {}, @@ -739,10 +694,9 @@ "customFields": {} }, { - "id": 46, - "name": "SPb State University 7 (Miroshnichenko, Ivanova, Ninalalov)", - "shortName": "SPb State University 7 (Miroshnichenko, Ivanova, Ninalalov)", - "contestSystemId": "107", + "id": "414", + "name": "Northern (Arctic) Federal University 2 (Guriev, Urusovskiy, Rudniy)", + "shortName": "Northern (Arctic) Federal University 2 (Guriev, Urusovskiy, Rudniy)", "groups": [], "hashTag": null, "medias": {}, @@ -752,10 +706,9 @@ "customFields": {} }, { - "id": 47, - "name": "SPb State University 14 (Musatian, Smirnov, Minaev)", - "shortName": "SPb State University 14 (Musatian, Smirnov, Minaev)", - "contestSystemId": "510", + "id": "415", + "name": "SPb SI of Technology 3 (Danilko, Sitdykova, Boger)", + "shortName": "SPb SI of Technology 3 (Danilko, Sitdykova, Boger)", "groups": [], "hashTag": null, "medias": {}, @@ -765,10 +718,9 @@ "customFields": {} }, { - "id": 48, - "name": "SPb State University 8 (Kanteev, Pravdyukov, Chugaev)", - "shortName": "SPb State University 8 (Kanteev, Pravdyukov, Chugaev)", - "contestSystemId": "409", + "id": "416", + "name": "SPb Academic University 8 (Sofronova, Olhovskiy, Tonkih)", + "shortName": "SPb Academic University 8 (Sofronova, Olhovskiy, Tonkih)", "groups": [], "hashTag": null, "medias": {}, @@ -778,10 +730,9 @@ "customFields": {} }, { - "id": 49, - "name": "SPb Electrotechnical University 2 (Shabashov, Chumakov, Grebenuk)", - "shortName": "SPb Electrotechnical University 2 (Shabashov, Chumakov, Grebenuk)", - "contestSystemId": "407", + "id": "418", + "name": "SPb State University 11 (Polezhaev, Belousov, Egorov)", + "shortName": "SPb State University 11 (Polezhaev, Belousov, Egorov)", "groups": [], "hashTag": null, "medias": {}, @@ -791,10 +742,9 @@ "customFields": {} }, { - "id": 50, - "name": "Pskov State University 2 (Fedorov, Smirnov, Ivanova)", - "shortName": "Pskov State University 2 (Fedorov, Smirnov, Ivanova)", - "contestSystemId": "410", + "id": "419", + "name": "SPb State Polytechnic University 1 (Svitkin, Vinokhodov, Tretiakov)", + "shortName": "SPb State Polytechnic University 1 (Svitkin, Vinokhodov, Tretiakov)", "groups": [], "hashTag": null, "medias": {}, @@ -804,10 +754,9 @@ "customFields": {} }, { - "id": 51, - "name": "SPb Electrotechnical University 1 (Chulanov, Yakushkin, Skorospelov)", - "shortName": "SPb Electrotechnical University 1 (Chulanov, Yakushkin, Skorospelov)", - "contestSystemId": "301", + "id": "420", + "name": "SPb ITMO University 4 (Kisialiou, Berinchik, Korchagin)", + "shortName": "SPb ITMO University 4 (Kisialiou, Berinchik, Korchagin)", "groups": [], "hashTag": null, "medias": {}, @@ -817,10 +766,9 @@ "customFields": {} }, { - "id": 52, + "id": "421", "name": "SPb Electrotechnical University 6 (Savinov, Filatov, Filatov)", "shortName": "SPb Electrotechnical University 6 (Savinov, Filatov, Filatov)", - "contestSystemId": "421", "groups": [], "hashTag": null, "medias": {}, @@ -830,10 +778,9 @@ "customFields": {} }, { - "id": 53, - "name": "Mozhaisky Military Space Academy 1 (Ilatovskiy, Aniskovich, Kulik)", - "shortName": "Mozhaisky Military Space Academy 1 (Ilatovskiy, Aniskovich, Kulik)", - "contestSystemId": "603", + "id": "422", + "name": "SPb ITMO University 2 (Belonogov, Podtelkin, Zban)", + "shortName": "SPb ITMO University 2 (Belonogov, Podtelkin, Zban)", "groups": [], "hashTag": null, "medias": {}, @@ -843,10 +790,9 @@ "customFields": {} }, { - "id": 54, + "id": "423", "name": "Mozhaisky Military Space Academy 3 (Fomichev, Klimkina, Garkavenko)", "shortName": "Mozhaisky Military Space Academy 3 (Fomichev, Klimkina, Garkavenko)", - "contestSystemId": "423", "groups": [], "hashTag": null, "medias": {}, @@ -856,10 +802,9 @@ "customFields": {} }, { - "id": 55, - "name": "Mozhaisky Military Space Academy 4 (Konyakhin, Antonov, Semchenkov)", - "shortName": "Mozhaisky Military Space Academy 4 (Konyakhin, Antonov, Semchenkov)", - "contestSystemId": "306", + "id": "501", + "name": "SPb State University 9 (Antopol, Balakina, Pervakov)", + "shortName": "SPb State University 9 (Antopol, Balakina, Pervakov)", "groups": [], "hashTag": null, "medias": {}, @@ -869,10 +814,9 @@ "customFields": {} }, { - "id": 56, - "name": "Mozhaisky Military Space Academy 2 (Kravchenko, Lukin, Ovchinnikov)", - "shortName": "Mozhaisky Military Space Academy 2 (Kravchenko, Lukin, Ovchinnikov)", - "contestSystemId": "708", + "id": "502", + "name": "SPb SI of Technology 1 (Ekzaryan, Gricenko, Belkovsky)", + "shortName": "SPb SI of Technology 1 (Ekzaryan, Gricenko, Belkovsky)", "groups": [], "hashTag": null, "medias": {}, @@ -882,10 +826,9 @@ "customFields": {} }, { - "id": 57, - "name": "SPb SU of Telecommunications 4 (Diakonov, Syrman, Matveev)", - "shortName": "SPb SU of Telecommunications 4 (Diakonov, Syrman, Matveev)", - "contestSystemId": "522", + "id": "503", + "name": "SPb ITMO University 10 (Sultanov, Arkhipov, Vorobyev)", + "shortName": "SPb ITMO University 10 (Sultanov, Arkhipov, Vorobyev)", "groups": [], "hashTag": null, "medias": {}, @@ -895,10 +838,9 @@ "customFields": {} }, { - "id": 58, - "name": "SPb State University 10 (Scherbakov, Chaplygina, Permyakov)", - "shortName": "SPb State University 10 (Scherbakov, Chaplygina, Permyakov)", - "contestSystemId": "507", + "id": "504", + "name": "SPb State Polytechnic University 3 (Egorov, Serov, Harfush)", + "shortName": "SPb State Polytechnic University 3 (Egorov, Serov, Harfush)", "groups": [], "hashTag": null, "medias": {}, @@ -908,10 +850,9 @@ "customFields": {} }, { - "id": 59, - "name": "SPb State University 13 (Nebogatikov, Mallabaev, Plotnikov)", - "shortName": "SPb State University 13 (Nebogatikov, Mallabaev, Plotnikov)", - "contestSystemId": "413", + "id": "505", + "name": "SPb ITMO University 3 (Budin, Latyshev, Yakutov)", + "shortName": "SPb ITMO University 3 (Budin, Latyshev, Yakutov)", "groups": [], "hashTag": null, "medias": {}, @@ -921,10 +862,9 @@ "customFields": {} }, { - "id": 60, - "name": "SPb Electrotechnical University 4 (Smolyakov, Bachinskiy, Dvoretsky)", - "shortName": "SPb Electrotechnical University 4 (Smolyakov, Bachinskiy, Dvoretsky)", - "contestSystemId": "218", + "id": "506", + "name": "SPb SI of Technology 2 (Matyunin, Kamaev, Zeldes)", + "shortName": "SPb SI of Technology 2 (Matyunin, Kamaev, Zeldes)", "groups": [], "hashTag": null, "medias": {}, @@ -934,10 +874,9 @@ "customFields": {} }, { - "id": 61, - "name": "SPb State University 16 (Shabanov, Miloserdov, Shumilov)", - "shortName": "SPb State University 16 (Shabanov, Miloserdov, Shumilov)", - "contestSystemId": "308", + "id": "507", + "name": "SPb State University 10 (Scherbakov, Chaplygina, Permyakov)", + "shortName": "SPb State University 10 (Scherbakov, Chaplygina, Permyakov)", "groups": [], "hashTag": null, "medias": {}, @@ -947,10 +886,9 @@ "customFields": {} }, { - "id": 62, - "name": "Makarov SU of Maritime and Inland Shipping (Vasetsky, Loginov, Lukushin)", - "shortName": "Makarov SU of Maritime and Inland Shipping (Vasetsky, Loginov, Lukushin)", - "contestSystemId": "404", + "id": "508", + "name": "Mikhailovskaya Military Artillery Academy 2 (Zaharov, Tatjanin, Baranov)", + "shortName": "Mikhailovskaya Military Artillery Academy 2 (Zaharov, Tatjanin, Baranov)", "groups": [], "hashTag": null, "medias": {}, @@ -960,10 +898,9 @@ "customFields": {} }, { - "id": 63, - "name": "SPb State University 11 (Polezhaev, Belousov, Egorov)", - "shortName": "SPb State University 11 (Polezhaev, Belousov, Egorov)", - "contestSystemId": "418", + "id": "509", + "name": "Military Academy of Communications 1 (Sharov, Kornienko, Levkin)", + "shortName": "Military Academy of Communications 1 (Sharov, Kornienko, Levkin)", "groups": [], "hashTag": null, "medias": {}, @@ -973,10 +910,9 @@ "customFields": {} }, { - "id": 64, - "name": "Military Academy of Communications 2 (Morozov, Starostin, Melekhin)", - "shortName": "Military Academy of Communications 2 (Morozov, Starostin, Melekhin)", - "contestSystemId": "309", + "id": "510", + "name": "SPb State University 14 (Musatian, Smirnov, Minaev)", + "shortName": "SPb State University 14 (Musatian, Smirnov, Minaev)", "groups": [], "hashTag": null, "medias": {}, @@ -986,10 +922,9 @@ "customFields": {} }, { - "id": 65, - "name": "SPb Baltic State Technical University 3 (Stepanov, Matveev, Babich)", - "shortName": "SPb Baltic State Technical University 3 (Stepanov, Matveev, Babich)", - "contestSystemId": "513", + "id": "512", + "name": "SPb State University 2 (Savchenkov, Makarov, Sayranov)", + "shortName": "SPb State University 2 (Savchenkov, Makarov, Sayranov)", "groups": [], "hashTag": null, "medias": {}, @@ -999,10 +934,9 @@ "customFields": {} }, { - "id": 66, - "name": "SPb Electrotechnical University 3 (Babinov, Kuzmin, Mikhal)", - "shortName": "SPb Electrotechnical University 3 (Babinov, Kuzmin, Mikhal)", - "contestSystemId": "209", + "id": "513", + "name": "SPb Baltic State Technical University 3 (Stepanov, Matveev, Babich)", + "shortName": "SPb Baltic State Technical University 3 (Stepanov, Matveev, Babich)", "groups": [], "hashTag": null, "medias": {}, @@ -1012,10 +946,9 @@ "customFields": {} }, { - "id": 67, - "name": "Military Academy of Communications 1 (Sharov, Kornienko, Levkin)", - "shortName": "Military Academy of Communications 1 (Sharov, Kornienko, Levkin)", - "contestSystemId": "509", + "id": "515", + "name": "Petrozavodsk State University 1 (Ermishin, Starkov, Pyatin)", + "shortName": "Petrozavodsk State University 1 (Ermishin, Starkov, Pyatin)", "groups": [], "hashTag": null, "medias": {}, @@ -1025,10 +958,9 @@ "customFields": {} }, { - "id": 68, - "name": "SPb SI of Technology 1 (Ekzaryan, Gricenko, Belkovsky)", - "shortName": "SPb SI of Technology 1 (Ekzaryan, Gricenko, Belkovsky)", - "contestSystemId": "502", + "id": "516", + "name": "Mozhaisky Military Space Academy 5 (Kozhevnikov, Borisov, Hovanskiy)", + "shortName": "Mozhaisky Military Space Academy 5 (Kozhevnikov, Borisov, Hovanskiy)", "groups": [], "hashTag": null, "medias": {}, @@ -1038,10 +970,9 @@ "customFields": {} }, { - "id": 69, - "name": "SPb SU of Telecommunications 2 (Karavaev, Tetka, Gerkulesov)", - "shortName": "SPb SU of Telecommunications 2 (Karavaev, Tetka, Gerkulesov)", - "contestSystemId": "205", + "id": "517", + "name": "SPb Academic University 3 (Bugakova, Kravchenko, Tretyakova)", + "shortName": "SPb Academic University 3 (Bugakova, Kravchenko, Tretyakova)", "groups": [], "hashTag": null, "medias": {}, @@ -1051,10 +982,9 @@ "customFields": {} }, { - "id": 70, - "name": "SPb State Polytechnic University 2 (Ekimovsky, Kapralov, Dashkov)", - "shortName": "SPb State Polytechnic University 2 (Ekimovsky, Kapralov, Dashkov)", - "contestSystemId": "609", + "id": "518", + "name": "SPb State Polytechnic University 4 (Ivanov, Svintsov, Chirkov)", + "shortName": "SPb State Polytechnic University 4 (Ivanov, Svintsov, Chirkov)", "groups": [], "hashTag": null, "medias": {}, @@ -1064,10 +994,9 @@ "customFields": {} }, { - "id": 71, - "name": "SPb SU of Telecommunications 3 (Dudakov, Mardanov, Shustov)", - "shortName": "SPb SU of Telecommunications 3 (Dudakov, Mardanov, Shustov)", - "contestSystemId": "412", + "id": "519", + "name": "SPb Electrotechnical University 5 (Golubev, Khramtsov, Khodos)", + "shortName": "SPb Electrotechnical University 5 (Golubev, Khramtsov, Khodos)", "groups": [], "hashTag": null, "medias": {}, @@ -1077,10 +1006,9 @@ "customFields": {} }, { - "id": 72, - "name": "Mozhaisky Military Space Academy 5 (Kozhevnikov, Borisov, Hovanskiy)", - "shortName": "Mozhaisky Military Space Academy 5 (Kozhevnikov, Borisov, Hovanskiy)", - "contestSystemId": "516", + "id": "520", + "name": "SPb Forest Technical Academy (Dumov, Dmitrienko, Aleksandrov)", + "shortName": "SPb Forest Technical Academy (Dumov, Dmitrienko, Aleksandrov)", "groups": [], "hashTag": null, "medias": {}, @@ -1090,10 +1018,9 @@ "customFields": {} }, { - "id": 73, - "name": "SPb SU of Architecture and Civil Engineering 1 (Zgoda, Buivolov, Pyzhov)", - "shortName": "SPb SU of Architecture and Civil Engineering 1 (Zgoda, Buivolov, Pyzhov)", - "contestSystemId": "707", + "id": "522", + "name": "SPb SU of Telecommunications 4 (Diakonov, Syrman, Matveev)", + "shortName": "SPb SU of Telecommunications 4 (Diakonov, Syrman, Matveev)", "groups": [], "hashTag": null, "medias": {}, @@ -1103,10 +1030,9 @@ "customFields": {} }, { - "id": 74, - "name": "SPb Baltic State Technical University 2 (Penzin, Pavlenko, Kabanets)", - "shortName": "SPb Baltic State Technical University 2 (Penzin, Pavlenko, Kabanets)", - "contestSystemId": "408", + "id": "602", + "name": "SPb ITMO University 14 (Gilevich, Timchenko, Krasnotsvetov)", + "shortName": "SPb ITMO University 14 (Gilevich, Timchenko, Krasnotsvetov)", "groups": [], "hashTag": null, "medias": {}, @@ -1116,10 +1042,9 @@ "customFields": {} }, { - "id": 75, - "name": "SPb State Polytechnic University 5 (Konyukh, Ignatenko, Mayorov)", - "shortName": "SPb State Polytechnic University 5 (Konyukh, Ignatenko, Mayorov)", - "contestSystemId": "219", + "id": "603", + "name": "Mozhaisky Military Space Academy 1 (Ilatovskiy, Aniskovich, Kulik)", + "shortName": "Mozhaisky Military Space Academy 1 (Ilatovskiy, Aniskovich, Kulik)", "groups": [], "hashTag": null, "medias": {}, @@ -1129,10 +1054,9 @@ "customFields": {} }, { - "id": 76, - "name": "SPb State Polytechnic University 4 (Ivanov, Svintsov, Chirkov)", - "shortName": "SPb State Polytechnic University 4 (Ivanov, Svintsov, Chirkov)", - "contestSystemId": "518", + "id": "604", + "name": "SPb Academic University 6 (Zuev, Vinnichenko, Belova)", + "shortName": "SPb Academic University 6 (Zuev, Vinnichenko, Belova)", "groups": [], "hashTag": null, "medias": {}, @@ -1142,10 +1066,9 @@ "customFields": {} }, { - "id": 77, - "name": "SPb Baltic State Technical University 1 (Gabidullin, Davydenko, Elokhin)", - "shortName": "SPb Baltic State Technical University 1 (Gabidullin, Davydenko, Elokhin)", - "contestSystemId": "208", + "id": "606", + "name": "SPb State University 4 (Gulikov, Malinovskii, Kulikov)", + "shortName": "SPb State University 4 (Gulikov, Malinovskii, Kulikov)", "groups": [], "hashTag": null, "medias": {}, @@ -1155,10 +1078,9 @@ "customFields": {} }, { - "id": 78, - "name": "SPb SU of Telecommunications 5 (Kozlov, Michail, Goncharov)", - "shortName": "SPb SU of Telecommunications 5 (Kozlov, Michail, Goncharov)", - "contestSystemId": "701", + "id": "607", + "name": "SPb Baltic State Technical University 4 (Sayapin, Kovalev, Somov)", + "shortName": "SPb Baltic State Technical University 4 (Sayapin, Kovalev, Somov)", "groups": [], "hashTag": null, "medias": {}, @@ -1168,10 +1090,9 @@ "customFields": {} }, { - "id": 79, - "name": "SPb SI of Technology 3 (Danilko, Sitdykova, Boger)", - "shortName": "SPb SI of Technology 3 (Danilko, Sitdykova, Boger)", - "contestSystemId": "415", + "id": "608", + "name": "Petrozavodsk State University 2 (Ermolin, Titov, Alkin)", + "shortName": "Petrozavodsk State University 2 (Ermolin, Titov, Alkin)", "groups": [], "hashTag": null, "medias": {}, @@ -1181,10 +1102,9 @@ "customFields": {} }, { - "id": 80, - "name": "SPb U of Humanities and Social Sciences (Aleksenko, Plotnikov, Yashenko)", - "shortName": "SPb U of Humanities and Social Sciences (Aleksenko, Plotnikov, Yashenko)", - "contestSystemId": "302", + "id": "609", + "name": "SPb State Polytechnic University 2 (Ekimovsky, Kapralov, Dashkov)", + "shortName": "SPb State Polytechnic University 2 (Ekimovsky, Kapralov, Dashkov)", "groups": [], "hashTag": null, "medias": {}, @@ -1194,10 +1114,9 @@ "customFields": {} }, { - "id": 81, - "name": "Mikhailovskaya Military Artillery Academy 1 (Shovkin, Klimenko, Budukin)", - "shortName": "Mikhailovskaya Military Artillery Academy 1 (Shovkin, Klimenko, Budukin)", - "contestSystemId": "210", + "id": "610", + "name": "SPb ITMO University 12 (Novik, Lebedev, Kupriyanov)", + "shortName": "SPb ITMO University 12 (Novik, Lebedev, Kupriyanov)", "groups": [], "hashTag": null, "medias": {}, @@ -1207,10 +1126,9 @@ "customFields": {} }, { - "id": 82, - "name": "SPb SI of Technology 2 (Matyunin, Kamaev, Zeldes)", - "shortName": "SPb SI of Technology 2 (Matyunin, Kamaev, Zeldes)", - "contestSystemId": "506", + "id": "701", + "name": "SPb SU of Telecommunications 5 (Kozlov, Michail, Goncharov)", + "shortName": "SPb SU of Telecommunications 5 (Kozlov, Michail, Goncharov)", "groups": [], "hashTag": null, "medias": {}, @@ -1220,10 +1138,9 @@ "customFields": {} }, { - "id": 83, - "name": "SPb SU of Trade and Economics (Chernyy, Lassal, Yussa)", - "shortName": "SPb SU of Trade and Economics (Chernyy, Lassal, Yussa)", - "contestSystemId": "221", + "id": "702", + "name": "SPb State University 15 (Lagutin, Evseev, Avetyan)", + "shortName": "SPb State University 15 (Lagutin, Evseev, Avetyan)", "groups": [], "hashTag": null, "medias": {}, @@ -1233,10 +1150,9 @@ "customFields": {} }, { - "id": 84, - "name": "SPb SU of Architecture and Civil Engineering 2 (Zadumkin, Tushin, Kamenev)", - "shortName": "SPb SU of Architecture and Civil Engineering 2 (Zadumkin, Tushin, Kamenev)", - "contestSystemId": "204", + "id": "704", + "name": "SPb ITMO University 6 (Zabashta, Alexandrov, Kolobov)", + "shortName": "SPb ITMO University 6 (Zabashta, Alexandrov, Kolobov)", "groups": [], "hashTag": null, "medias": {}, @@ -1246,10 +1162,9 @@ "customFields": {} }, { - "id": 85, - "name": "SPb Baltic State Technical University 4 (Sayapin, Kovalev, Somov)", - "shortName": "SPb Baltic State Technical University 4 (Sayapin, Kovalev, Somov)", - "contestSystemId": "607", + "id": "705", + "name": "Mikhailovskaya Military Artillery Academy 3 (Babenkov, Timofeev, Yakimanskiy)", + "shortName": "Mikhailovskaya Military Artillery Academy 3 (Babenkov, Timofeev, Yakimanskiy)", "groups": [], "hashTag": null, "medias": {}, @@ -1259,10 +1174,9 @@ "customFields": {} }, { - "id": 86, - "name": "Mikhailovskaya Military Artillery Academy 3 (Babenkov, Timofeev, Yakimanskiy)", - "shortName": "Mikhailovskaya Military Artillery Academy 3 (Babenkov, Timofeev, Yakimanskiy)", - "contestSystemId": "705", + "id": "706", + "name": "SPb Academic University 7 (Moskvitin, Smirnov, Plyushchenko)", + "shortName": "SPb Academic University 7 (Moskvitin, Smirnov, Plyushchenko)", "groups": [], "hashTag": null, "medias": {}, @@ -1272,10 +1186,9 @@ "customFields": {} }, { - "id": 87, - "name": "SPb Electrotechnical University 5 (Golubev, Khramtsov, Khodos)", - "shortName": "SPb Electrotechnical University 5 (Golubev, Khramtsov, Khodos)", - "contestSystemId": "519", + "id": "707", + "name": "SPb SU of Architecture and Civil Engineering 1 (Zgoda, Buivolov, Pyzhov)", + "shortName": "SPb SU of Architecture and Civil Engineering 1 (Zgoda, Buivolov, Pyzhov)", "groups": [], "hashTag": null, "medias": {}, @@ -1285,10 +1198,9 @@ "customFields": {} }, { - "id": 88, - "name": "SPb Forest Technical Academy (Dumov, Dmitrienko, Aleksandrov)", - "shortName": "SPb Forest Technical Academy (Dumov, Dmitrienko, Aleksandrov)", - "contestSystemId": "520", + "id": "708", + "name": "Mozhaisky Military Space Academy 2 (Kravchenko, Lukin, Ovchinnikov)", + "shortName": "Mozhaisky Military Space Academy 2 (Kravchenko, Lukin, Ovchinnikov)", "groups": [], "hashTag": null, "medias": {}, @@ -1298,10 +1210,9 @@ "customFields": {} }, { - "id": 89, - "name": "Kuznetsov Naval Academy (Gorbunov, Ahmetov, Ivanov)", - "shortName": "Kuznetsov Naval Academy (Gorbunov, Ahmetov, Ivanov)", - "contestSystemId": "103", + "id": "709", + "name": "SPb ITMO University 18 (Antonov, Topayev, Ryabchikov)", + "shortName": "SPb ITMO University 18 (Antonov, Topayev, Ryabchikov)", "groups": [], "hashTag": null, "medias": {}, @@ -1311,10 +1222,9 @@ "customFields": {} }, { - "id": 90, - "name": "SPb SU of Economics 1 (Ivanova, Pliner, Gadalova)", - "shortName": "SPb SU of Economics 1 (Ivanova, Pliner, Gadalova)", - "contestSystemId": "105", + "id": "710", + "name": "Petrozavodsk State University 3 (Dubinin, Golovachuk, Kukushkin)", + "shortName": "Petrozavodsk State University 3 (Dubinin, Golovachuk, Kukushkin)", "groups": [], "hashTag": null, "medias": {}, @@ -1324,10 +1234,9 @@ "customFields": {} }, { - "id": 91, - "name": "SPb SU of Economics 2 (Karabaza, Sinko, Mikhailovsky)", - "shortName": "SPb SU of Economics 2 (Karabaza, Sinko, Mikhailovsky)", - "contestSystemId": "211", + "id": "711", + "name": "SPb State University 1 (Ershov, Pyshkin, Gordeev)", + "shortName": "SPb State University 1 (Ershov, Pyshkin, Gordeev)", "groups": [], "hashTag": null, "medias": {}, @@ -1337,10 +1246,9 @@ "customFields": {} }, { - "id": 92, - "name": "Mikhailovskaya Military Artillery Academy 2 (Zaharov, Tatjanin, Baranov)", - "shortName": "Mikhailovskaya Military Artillery Academy 2 (Zaharov, Tatjanin, Baranov)", - "contestSystemId": "508", + "id": "713", + "name": "SPb ITMO University 1 (Kovsharov, Bardashevich, Smykalov)", + "shortName": "SPb ITMO University 1 (Kovsharov, Bardashevich, Smykalov)", "groups": [], "hashTag": null, "medias": {}, @@ -1371,7 +1279,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 17, + "teamId": "401", "time": 229436, "featuredRunMedia": null, "reactionVideos": [], @@ -1389,7 +1297,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 23, + "teamId": "305", "time": 326850, "featuredRunMedia": null, "reactionVideos": [], @@ -1407,7 +1315,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 4, + "teamId": "505", "time": 340135, "featuredRunMedia": null, "reactionVideos": [], @@ -1425,7 +1333,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 2, + "teamId": "711", "time": 343095, "featuredRunMedia": null, "reactionVideos": [], @@ -1443,7 +1351,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 10, + "teamId": "706", "time": 347328, "featuredRunMedia": null, "reactionVideos": [], @@ -1461,7 +1369,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 3, + "teamId": "215", "time": 352799, "featuredRunMedia": null, "reactionVideos": [], @@ -1479,7 +1387,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 13, + "teamId": "604", "time": 357857, "featuredRunMedia": null, "reactionVideos": [], @@ -1497,7 +1405,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 12, + "teamId": "207", "time": 364638, "featuredRunMedia": null, "reactionVideos": [], @@ -1515,7 +1423,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 9, + "teamId": "606", "time": 369805, "featuredRunMedia": null, "reactionVideos": [], @@ -1533,7 +1441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 24, + "teamId": "608", "time": 406170, "featuredRunMedia": null, "reactionVideos": [], @@ -1551,7 +1459,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 8, + "teamId": "420", "time": 414250, "featuredRunMedia": null, "reactionVideos": [], @@ -1569,7 +1477,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 47, + "teamId": "510", "time": 421046, "featuredRunMedia": null, "reactionVideos": [], @@ -1587,7 +1495,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 6, + "teamId": "220", "time": 437304, "featuredRunMedia": null, "reactionVideos": [], @@ -1605,7 +1513,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 11, + "teamId": "304", "time": 444083, "featuredRunMedia": null, "reactionVideos": [], @@ -1623,7 +1531,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 19, + "teamId": "517", "time": 459636, "featuredRunMedia": null, "reactionVideos": [], @@ -1641,7 +1549,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "713", "time": 461510, "featuredRunMedia": null, "reactionVideos": [], @@ -1659,7 +1567,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 17, + "teamId": "401", "time": 472437, "featuredRunMedia": null, "reactionVideos": [], @@ -1677,7 +1585,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 18, + "teamId": "416", "time": 478276, "featuredRunMedia": null, "reactionVideos": [], @@ -1695,7 +1603,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 4, + "teamId": "505", "time": 508983, "featuredRunMedia": null, "reactionVideos": [], @@ -1713,7 +1621,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 18, + "teamId": "416", "time": 512586, "featuredRunMedia": null, "reactionVideos": [], @@ -1731,7 +1639,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 547686, "featuredRunMedia": null, "reactionVideos": [], @@ -1749,7 +1657,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 21, + "teamId": "515", "time": 593605, "featuredRunMedia": null, "reactionVideos": [], @@ -1767,7 +1675,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 7, + "teamId": "512", "time": 597394, "featuredRunMedia": null, "reactionVideos": [], @@ -1785,7 +1693,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 13, + "teamId": "604", "time": 606439, "featuredRunMedia": null, "reactionVideos": [], @@ -1803,7 +1711,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 5, + "teamId": "422", "time": 608709, "featuredRunMedia": null, "reactionVideos": [], @@ -1821,7 +1729,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 23, + "teamId": "305", "time": 610943, "featuredRunMedia": null, "reactionVideos": [], @@ -1839,7 +1747,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 17, + "teamId": "401", "time": 618689, "featuredRunMedia": null, "reactionVideos": [], @@ -1857,7 +1765,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 28, + "teamId": "503", "time": 628614, "featuredRunMedia": null, "reactionVideos": [], @@ -1875,7 +1783,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 6, + "teamId": "220", "time": 630527, "featuredRunMedia": null, "reactionVideos": [], @@ -1893,7 +1801,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 30, + "teamId": "709", "time": 631148, "featuredRunMedia": null, "reactionVideos": [], @@ -1911,7 +1819,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 636227, "featuredRunMedia": null, "reactionVideos": [], @@ -1929,7 +1837,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "207", "time": 640967, "featuredRunMedia": null, "reactionVideos": [], @@ -1947,7 +1855,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 25, + "teamId": "419", "time": 658985, "featuredRunMedia": null, "reactionVideos": [], @@ -1965,7 +1873,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 22, + "teamId": "106", "time": 671437, "featuredRunMedia": null, "reactionVideos": [], @@ -1983,7 +1891,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 1, + "teamId": "713", "time": 687502, "featuredRunMedia": null, "reactionVideos": [], @@ -2001,7 +1909,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 33, + "teamId": "213", "time": 710124, "featuredRunMedia": null, "reactionVideos": [], @@ -2019,7 +1927,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "409", "time": 715342, "featuredRunMedia": null, "reactionVideos": [], @@ -2037,7 +1945,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 53, + "teamId": "603", "time": 718328, "featuredRunMedia": null, "reactionVideos": [], @@ -2055,7 +1963,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 16, + "teamId": "203", "time": 725299, "featuredRunMedia": null, "reactionVideos": [], @@ -2073,7 +1981,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "209", "time": 736852, "featuredRunMedia": null, "reactionVideos": [], @@ -2091,7 +1999,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 49, + "teamId": "407", "time": 743369, "featuredRunMedia": null, "reactionVideos": [], @@ -2109,7 +2017,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 36, + "teamId": "406", "time": 743546, "featuredRunMedia": null, "reactionVideos": [], @@ -2127,7 +2035,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "303", "time": 752079, "featuredRunMedia": null, "reactionVideos": [], @@ -2145,7 +2053,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 752943, "featuredRunMedia": null, "reactionVideos": [], @@ -2163,7 +2071,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 34, + "teamId": "610", "time": 760369, "featuredRunMedia": null, "reactionVideos": [], @@ -2181,7 +2089,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 47, + "teamId": "510", "time": 770716, "featuredRunMedia": null, "reactionVideos": [], @@ -2199,7 +2107,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 2, + "teamId": "711", "time": 772237, "featuredRunMedia": null, "reactionVideos": [], @@ -2217,7 +2125,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 53, + "teamId": "603", "time": 778378, "featuredRunMedia": null, "reactionVideos": [], @@ -2235,7 +2143,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "512", "time": 781364, "featuredRunMedia": null, "reactionVideos": [], @@ -2253,7 +2161,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 10, + "teamId": "706", "time": 788992, "featuredRunMedia": null, "reactionVideos": [], @@ -2271,7 +2179,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 40, + "teamId": "702", "time": 809807, "featuredRunMedia": null, "reactionVideos": [], @@ -2289,7 +2197,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 32, + "teamId": "602", "time": 824932, "featuredRunMedia": null, "reactionVideos": [], @@ -2307,7 +2215,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 8, + "teamId": "420", "time": 825117, "featuredRunMedia": null, "reactionVideos": [], @@ -2325,7 +2233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 38, + "teamId": "710", "time": 829195, "featuredRunMedia": null, "reactionVideos": [], @@ -2343,7 +2251,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 51, + "teamId": "301", "time": 838357, "featuredRunMedia": null, "reactionVideos": [], @@ -2361,7 +2269,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 9, + "teamId": "606", "time": 840794, "featuredRunMedia": null, "reactionVideos": [], @@ -2379,7 +2287,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 56, + "teamId": "708", "time": 847748, "featuredRunMedia": null, "reactionVideos": [], @@ -2397,7 +2305,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "304", "time": 850725, "featuredRunMedia": null, "reactionVideos": [], @@ -2415,7 +2323,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 21, + "teamId": "515", "time": 850819, "featuredRunMedia": null, "reactionVideos": [], @@ -2433,7 +2341,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 857835, "featuredRunMedia": null, "reactionVideos": [], @@ -2451,7 +2359,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 59, + "teamId": "413", "time": 891204, "featuredRunMedia": null, "reactionVideos": [], @@ -2469,7 +2377,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 9, + "teamId": "606", "time": 911751, "featuredRunMedia": null, "reactionVideos": [], @@ -2487,7 +2395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 20, + "teamId": "217", "time": 919917, "featuredRunMedia": null, "reactionVideos": [], @@ -2505,7 +2413,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "422", "time": 957890, "featuredRunMedia": null, "reactionVideos": [], @@ -2523,7 +2431,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "303", "time": 960157, "featuredRunMedia": null, "reactionVideos": [], @@ -2541,7 +2449,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 29, + "teamId": "102", "time": 964426, "featuredRunMedia": null, "reactionVideos": [], @@ -2559,7 +2467,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 54, + "teamId": "423", "time": 972739, "featuredRunMedia": null, "reactionVideos": [], @@ -2577,7 +2485,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 43, + "teamId": "212", "time": 981365, "featuredRunMedia": null, "reactionVideos": [], @@ -2595,7 +2503,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 42, + "teamId": "504", "time": 983630, "featuredRunMedia": null, "reactionVideos": [], @@ -2613,7 +2521,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 56, + "teamId": "708", "time": 993484, "featuredRunMedia": null, "reactionVideos": [], @@ -2631,7 +2539,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 14, + "teamId": "303", "time": 993907, "featuredRunMedia": null, "reactionVideos": [], @@ -2649,7 +2557,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 26, + "teamId": "109", "time": 998986, "featuredRunMedia": null, "reactionVideos": [], @@ -2667,7 +2575,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 1014732, "featuredRunMedia": null, "reactionVideos": [], @@ -2685,7 +2593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "522", "time": 1019340, "featuredRunMedia": null, "reactionVideos": [], @@ -2703,7 +2611,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 53, + "teamId": "603", "time": 1025334, "featuredRunMedia": null, "reactionVideos": [], @@ -2721,7 +2629,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "409", "time": 1032251, "featuredRunMedia": null, "reactionVideos": [], @@ -2739,7 +2647,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 51, + "teamId": "301", "time": 1044013, "featuredRunMedia": null, "reactionVideos": [], @@ -2757,7 +2665,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 53, + "teamId": "603", "time": 1045542, "featuredRunMedia": null, "reactionVideos": [], @@ -2775,7 +2683,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "220", "time": 1051873, "featuredRunMedia": null, "reactionVideos": [], @@ -2793,7 +2701,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 1056018, "featuredRunMedia": null, "reactionVideos": [], @@ -2811,7 +2719,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "713", "time": 1058334, "featuredRunMedia": null, "reactionVideos": [], @@ -2829,7 +2737,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 3, + "teamId": "215", "time": 1071942, "featuredRunMedia": null, "reactionVideos": [], @@ -2847,7 +2755,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 13, + "teamId": "604", "time": 1083986, "featuredRunMedia": null, "reactionVideos": [], @@ -2865,7 +2773,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 16, + "teamId": "203", "time": 1091200, "featuredRunMedia": null, "reactionVideos": [], @@ -2883,7 +2791,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 1098616, "featuredRunMedia": null, "reactionVideos": [], @@ -2901,7 +2809,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 15, + "teamId": "411", "time": 1103422, "featuredRunMedia": null, "reactionVideos": [], @@ -2919,7 +2827,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "414", "time": 1111101, "featuredRunMedia": null, "reactionVideos": [], @@ -2937,7 +2845,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 2, + "teamId": "711", "time": 1164912, "featuredRunMedia": null, "reactionVideos": [], @@ -2955,7 +2863,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 9, + "teamId": "606", "time": 1174337, "featuredRunMedia": null, "reactionVideos": [], @@ -2973,7 +2881,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 11, + "teamId": "304", "time": 1176427, "featuredRunMedia": null, "reactionVideos": [], @@ -2991,7 +2899,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 31, + "teamId": "403", "time": 1207661, "featuredRunMedia": null, "reactionVideos": [], @@ -3009,7 +2917,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 82, + "teamId": "506", "time": 1215861, "featuredRunMedia": null, "reactionVideos": [], @@ -3027,7 +2935,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 5, + "teamId": "422", "time": 1219258, "featuredRunMedia": null, "reactionVideos": [], @@ -3045,7 +2953,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 46, + "teamId": "107", "time": 1223726, "featuredRunMedia": null, "reactionVideos": [], @@ -3063,7 +2971,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 22, + "teamId": "106", "time": 1227872, "featuredRunMedia": null, "reactionVideos": [], @@ -3081,7 +2989,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 67, + "teamId": "509", "time": 1228889, "featuredRunMedia": null, "reactionVideos": [], @@ -3099,7 +3007,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 45, + "teamId": "110", "time": 1231279, "featuredRunMedia": null, "reactionVideos": [], @@ -3117,7 +3025,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "505", "time": 1236833, "featuredRunMedia": null, "reactionVideos": [], @@ -3135,7 +3043,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 65, + "teamId": "513", "time": 1240387, "featuredRunMedia": null, "reactionVideos": [], @@ -3153,7 +3061,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "420", "time": 1247092, "featuredRunMedia": null, "reactionVideos": [], @@ -3171,7 +3079,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 54, + "teamId": "423", "time": 1281695, "featuredRunMedia": null, "reactionVideos": [], @@ -3189,7 +3097,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 12, + "teamId": "207", "time": 1286073, "featuredRunMedia": null, "reactionVideos": [], @@ -3207,7 +3115,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 47, + "teamId": "510", "time": 1289645, "featuredRunMedia": null, "reactionVideos": [], @@ -3225,7 +3133,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "215", "time": 1298046, "featuredRunMedia": null, "reactionVideos": [], @@ -3243,7 +3151,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 19, + "teamId": "517", "time": 1307167, "featuredRunMedia": null, "reactionVideos": [], @@ -3261,7 +3169,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 1328305, "featuredRunMedia": null, "reactionVideos": [], @@ -3279,7 +3187,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 55, + "teamId": "306", "time": 1342702, "featuredRunMedia": null, "reactionVideos": [], @@ -3297,7 +3205,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "501", "time": 1355031, "featuredRunMedia": null, "reactionVideos": [], @@ -3315,7 +3223,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 77, + "teamId": "208", "time": 1359618, "featuredRunMedia": null, "reactionVideos": [], @@ -3333,7 +3241,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 44, + "teamId": "101", "time": 1364508, "featuredRunMedia": null, "reactionVideos": [], @@ -3351,7 +3259,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "401", "time": 1369223, "featuredRunMedia": null, "reactionVideos": [], @@ -3369,7 +3277,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 14, + "teamId": "303", "time": 1387150, "featuredRunMedia": null, "reactionVideos": [], @@ -3387,7 +3295,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 43, + "teamId": "212", "time": 1388006, "featuredRunMedia": null, "reactionVideos": [], @@ -3405,7 +3313,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 26, + "teamId": "109", "time": 1391731, "featuredRunMedia": null, "reactionVideos": [], @@ -3423,7 +3331,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "304", "time": 1392988, "featuredRunMedia": null, "reactionVideos": [], @@ -3441,7 +3349,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 57, + "teamId": "522", "time": 1403261, "featuredRunMedia": null, "reactionVideos": [], @@ -3459,7 +3367,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 21, + "teamId": "515", "time": 1413178, "featuredRunMedia": null, "reactionVideos": [], @@ -3477,7 +3385,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 31, + "teamId": "403", "time": 1422431, "featuredRunMedia": null, "reactionVideos": [], @@ -3495,7 +3403,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "304", "time": 1426370, "featuredRunMedia": null, "reactionVideos": [], @@ -3513,7 +3421,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "501", "time": 1430996, "featuredRunMedia": null, "reactionVideos": [], @@ -3531,7 +3439,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 33, + "teamId": "213", "time": 1436235, "featuredRunMedia": null, "reactionVideos": [], @@ -3549,7 +3457,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 10, + "teamId": "706", "time": 1438819, "featuredRunMedia": null, "reactionVideos": [], @@ -3567,7 +3475,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "418", "time": 1459100, "featuredRunMedia": null, "reactionVideos": [], @@ -3585,7 +3493,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 6, + "teamId": "220", "time": 1461237, "featuredRunMedia": null, "reactionVideos": [], @@ -3603,7 +3511,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 74, + "teamId": "408", "time": 1461692, "featuredRunMedia": null, "reactionVideos": [], @@ -3621,7 +3529,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 37, + "teamId": "414", "time": 1466315, "featuredRunMedia": null, "reactionVideos": [], @@ -3639,7 +3547,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 15, + "teamId": "411", "time": 1473370, "featuredRunMedia": null, "reactionVideos": [], @@ -3657,7 +3565,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 74, + "teamId": "408", "time": 1478434, "featuredRunMedia": null, "reactionVideos": [], @@ -3675,7 +3583,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 7, + "teamId": "512", "time": 1488384, "featuredRunMedia": null, "reactionVideos": [], @@ -3693,7 +3601,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 1, + "teamId": "713", "time": 1508277, "featuredRunMedia": null, "reactionVideos": [], @@ -3711,7 +3619,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "422", "time": 1527521, "featuredRunMedia": null, "reactionVideos": [], @@ -3729,7 +3637,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "416", "time": 1531725, "featuredRunMedia": null, "reactionVideos": [], @@ -3747,7 +3655,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 1532675, "featuredRunMedia": null, "reactionVideos": [], @@ -3765,7 +3673,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 28, + "teamId": "503", "time": 1534290, "featuredRunMedia": null, "reactionVideos": [], @@ -3783,7 +3691,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "711", "time": 1544654, "featuredRunMedia": null, "reactionVideos": [], @@ -3801,7 +3709,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 38, + "teamId": "710", "time": 1550878, "featuredRunMedia": null, "reactionVideos": [], @@ -3819,7 +3727,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 31, + "teamId": "403", "time": 1552041, "featuredRunMedia": null, "reactionVideos": [], @@ -3837,7 +3745,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 29, + "teamId": "102", "time": 1552681, "featuredRunMedia": null, "reactionVideos": [], @@ -3855,7 +3763,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 26, + "teamId": "109", "time": 1552950, "featuredRunMedia": null, "reactionVideos": [], @@ -3873,7 +3781,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 48, + "teamId": "409", "time": 1556520, "featuredRunMedia": null, "reactionVideos": [], @@ -3891,7 +3799,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "420", "time": 1607312, "featuredRunMedia": null, "reactionVideos": [], @@ -3909,7 +3817,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 25, + "teamId": "419", "time": 1607999, "featuredRunMedia": null, "reactionVideos": [], @@ -3927,7 +3835,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "713", "time": 1617266, "featuredRunMedia": null, "reactionVideos": [], @@ -3945,7 +3853,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 61, + "teamId": "308", "time": 1618908, "featuredRunMedia": null, "reactionVideos": [], @@ -3963,7 +3871,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 9, + "teamId": "606", "time": 1623014, "featuredRunMedia": null, "reactionVideos": [], @@ -3981,7 +3889,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 72, + "teamId": "516", "time": 1633974, "featuredRunMedia": null, "reactionVideos": [], @@ -3999,7 +3907,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 40, + "teamId": "702", "time": 1640823, "featuredRunMedia": null, "reactionVideos": [], @@ -4017,7 +3925,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "203", "time": 1678431, "featuredRunMedia": null, "reactionVideos": [], @@ -4035,7 +3943,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 42, + "teamId": "504", "time": 1697256, "featuredRunMedia": null, "reactionVideos": [], @@ -4053,7 +3961,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 71, + "teamId": "412", "time": 1721767, "featuredRunMedia": null, "reactionVideos": [], @@ -4071,7 +3979,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "220", "time": 1728184, "featuredRunMedia": null, "reactionVideos": [], @@ -4089,7 +3997,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 1764634, "featuredRunMedia": null, "reactionVideos": [], @@ -4107,7 +4015,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "604", "time": 1778667, "featuredRunMedia": null, "reactionVideos": [], @@ -4125,7 +4033,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 62, + "teamId": "404", "time": 1788866, "featuredRunMedia": null, "reactionVideos": [], @@ -4143,7 +4051,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "505", "time": 1793095, "featuredRunMedia": null, "reactionVideos": [], @@ -4161,7 +4069,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "215", "time": 1802136, "featuredRunMedia": null, "reactionVideos": [], @@ -4179,7 +4087,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 44, + "teamId": "101", "time": 1809592, "featuredRunMedia": null, "reactionVideos": [], @@ -4197,7 +4105,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 23, + "teamId": "305", "time": 1813920, "featuredRunMedia": null, "reactionVideos": [], @@ -4215,7 +4123,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 24, + "teamId": "608", "time": 1830736, "featuredRunMedia": null, "reactionVideos": [], @@ -4233,7 +4141,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 52, + "teamId": "421", "time": 1840307, "featuredRunMedia": null, "reactionVideos": [], @@ -4251,7 +4159,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "609", "time": 1856384, "featuredRunMedia": null, "reactionVideos": [], @@ -4269,7 +4177,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "401", "time": 1874055, "featuredRunMedia": null, "reactionVideos": [], @@ -4287,7 +4195,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 2, + "teamId": "711", "time": 1874160, "featuredRunMedia": null, "reactionVideos": [], @@ -4305,7 +4213,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 48, + "teamId": "409", "time": 1879225, "featuredRunMedia": null, "reactionVideos": [], @@ -4323,7 +4231,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "713", "time": 1923192, "featuredRunMedia": null, "reactionVideos": [], @@ -4341,7 +4249,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 21, + "teamId": "515", "time": 1950863, "featuredRunMedia": null, "reactionVideos": [], @@ -4359,7 +4267,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 39, + "teamId": "501", "time": 1972875, "featuredRunMedia": null, "reactionVideos": [], @@ -4377,7 +4285,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 22, + "teamId": "106", "time": 1977474, "featuredRunMedia": null, "reactionVideos": [], @@ -4395,7 +4303,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 29, + "teamId": "102", "time": 1984508, "featuredRunMedia": null, "reactionVideos": [], @@ -4413,7 +4321,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 28, + "teamId": "503", "time": 1996857, "featuredRunMedia": null, "reactionVideos": [], @@ -4431,7 +4339,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 19, + "teamId": "517", "time": 2001337, "featuredRunMedia": null, "reactionVideos": [], @@ -4449,7 +4357,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 7, + "teamId": "512", "time": 2035517, "featuredRunMedia": null, "reactionVideos": [], @@ -4467,7 +4375,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 2046389, "featuredRunMedia": null, "reactionVideos": [], @@ -4485,7 +4393,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 15, + "teamId": "411", "time": 2046678, "featuredRunMedia": null, "reactionVideos": [], @@ -4503,7 +4411,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "420", "time": 2051660, "featuredRunMedia": null, "reactionVideos": [], @@ -4521,7 +4429,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 33, + "teamId": "213", "time": 2053194, "featuredRunMedia": null, "reactionVideos": [], @@ -4539,7 +4447,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "209", "time": 2056694, "featuredRunMedia": null, "reactionVideos": [], @@ -4557,7 +4465,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 45, + "teamId": "110", "time": 2057771, "featuredRunMedia": null, "reactionVideos": [], @@ -4575,7 +4483,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "215", "time": 2060093, "featuredRunMedia": null, "reactionVideos": [], @@ -4593,7 +4501,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 59, + "teamId": "413", "time": 2062805, "featuredRunMedia": null, "reactionVideos": [], @@ -4611,7 +4519,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 16, + "teamId": "203", "time": 2065700, "featuredRunMedia": null, "reactionVideos": [], @@ -4629,7 +4537,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 2065854, "featuredRunMedia": null, "reactionVideos": [], @@ -4647,7 +4555,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 20, + "teamId": "217", "time": 2067125, "featuredRunMedia": null, "reactionVideos": [], @@ -4665,7 +4573,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 2069214, "featuredRunMedia": null, "reactionVideos": [], @@ -4683,7 +4591,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 2074138, "featuredRunMedia": null, "reactionVideos": [], @@ -4701,7 +4609,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 12, + "teamId": "207", "time": 2075683, "featuredRunMedia": null, "reactionVideos": [], @@ -4719,7 +4627,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "502", "time": 2085769, "featuredRunMedia": null, "reactionVideos": [], @@ -4737,7 +4645,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 69, + "teamId": "205", "time": 2091119, "featuredRunMedia": null, "reactionVideos": [], @@ -4755,7 +4663,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "607", "time": 2091608, "featuredRunMedia": null, "reactionVideos": [], @@ -4773,7 +4681,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 14, + "teamId": "303", "time": 2117090, "featuredRunMedia": null, "reactionVideos": [], @@ -4791,7 +4699,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 27, + "teamId": "704", "time": 2119648, "featuredRunMedia": null, "reactionVideos": [], @@ -4809,7 +4717,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 41, + "teamId": "201", "time": 2132788, "featuredRunMedia": null, "reactionVideos": [], @@ -4827,7 +4735,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 18, + "teamId": "416", "time": 2136964, "featuredRunMedia": null, "reactionVideos": [], @@ -4845,7 +4753,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 34, + "teamId": "610", "time": 2140158, "featuredRunMedia": null, "reactionVideos": [], @@ -4863,7 +4771,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "220", "time": 2145994, "featuredRunMedia": null, "reactionVideos": [], @@ -4881,7 +4789,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 46, + "teamId": "107", "time": 2162102, "featuredRunMedia": null, "reactionVideos": [], @@ -4899,7 +4807,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 61, + "teamId": "308", "time": 2186607, "featuredRunMedia": null, "reactionVideos": [], @@ -4917,7 +4825,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 19, + "teamId": "517", "time": 2208437, "featuredRunMedia": null, "reactionVideos": [], @@ -4935,7 +4843,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 53, + "teamId": "603", "time": 2215743, "featuredRunMedia": null, "reactionVideos": [], @@ -4953,7 +4861,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "420", "time": 2218658, "featuredRunMedia": null, "reactionVideos": [], @@ -4971,7 +4879,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 2, + "teamId": "711", "time": 2245373, "featuredRunMedia": null, "reactionVideos": [], @@ -4989,7 +4897,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 14, + "teamId": "303", "time": 2249963, "featuredRunMedia": null, "reactionVideos": [], @@ -5007,7 +4915,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "215", "time": 2256813, "featuredRunMedia": null, "reactionVideos": [], @@ -5025,7 +4933,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "609", "time": 2288035, "featuredRunMedia": null, "reactionVideos": [], @@ -5043,7 +4951,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 16, + "teamId": "203", "time": 2289708, "featuredRunMedia": null, "reactionVideos": [], @@ -5061,7 +4969,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 15, + "teamId": "411", "time": 2295412, "featuredRunMedia": null, "reactionVideos": [], @@ -5079,7 +4987,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "404", "time": 2304171, "featuredRunMedia": null, "reactionVideos": [], @@ -5097,7 +5005,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 31, + "teamId": "403", "time": 2305671, "featuredRunMedia": null, "reactionVideos": [], @@ -5115,7 +5023,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "401", "time": 2306271, "featuredRunMedia": null, "reactionVideos": [], @@ -5133,7 +5041,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 50, + "teamId": "410", "time": 2329308, "featuredRunMedia": null, "reactionVideos": [], @@ -5151,7 +5059,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 48, + "teamId": "409", "time": 2342429, "featuredRunMedia": null, "reactionVideos": [], @@ -5169,7 +5077,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 63, + "teamId": "418", "time": 2355964, "featuredRunMedia": null, "reactionVideos": [], @@ -5187,7 +5095,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 80, + "teamId": "302", "time": 2375276, "featuredRunMedia": null, "reactionVideos": [], @@ -5205,7 +5113,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 32, + "teamId": "602", "time": 2379565, "featuredRunMedia": null, "reactionVideos": [], @@ -5223,7 +5131,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 31, + "teamId": "403", "time": 2386991, "featuredRunMedia": null, "reactionVideos": [], @@ -5241,7 +5149,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "606", "time": 2396060, "featuredRunMedia": null, "reactionVideos": [], @@ -5259,7 +5167,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 36, + "teamId": "406", "time": 2406305, "featuredRunMedia": null, "reactionVideos": [], @@ -5277,7 +5185,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "211", "time": 2406655, "featuredRunMedia": null, "reactionVideos": [], @@ -5295,7 +5203,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 54, + "teamId": "423", "time": 2410141, "featuredRunMedia": null, "reactionVideos": [], @@ -5313,7 +5221,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "604", "time": 2413767, "featuredRunMedia": null, "reactionVideos": [], @@ -5331,7 +5239,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "507", "time": 2424856, "featuredRunMedia": null, "reactionVideos": [], @@ -5349,7 +5257,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "220", "time": 2426651, "featuredRunMedia": null, "reactionVideos": [], @@ -5367,7 +5275,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 5, + "teamId": "422", "time": 2430597, "featuredRunMedia": null, "reactionVideos": [], @@ -5385,7 +5293,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 2438984, "featuredRunMedia": null, "reactionVideos": [], @@ -5403,7 +5311,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 35, + "teamId": "206", "time": 2470103, "featuredRunMedia": null, "reactionVideos": [], @@ -5421,7 +5329,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 48, + "teamId": "409", "time": 2474896, "featuredRunMedia": null, "reactionVideos": [], @@ -5439,7 +5347,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 7, + "teamId": "512", "time": 2478990, "featuredRunMedia": null, "reactionVideos": [], @@ -5457,7 +5365,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 47, + "teamId": "510", "time": 2479245, "featuredRunMedia": null, "reactionVideos": [], @@ -5475,7 +5383,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "609", "time": 2529751, "featuredRunMedia": null, "reactionVideos": [], @@ -5493,7 +5401,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "706", "time": 2542595, "featuredRunMedia": null, "reactionVideos": [], @@ -5511,7 +5419,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "416", "time": 2545144, "featuredRunMedia": null, "reactionVideos": [], @@ -5529,7 +5437,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 5, + "teamId": "422", "time": 2560630, "featuredRunMedia": null, "reactionVideos": [], @@ -5547,7 +5455,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 21, + "teamId": "515", "time": 2565966, "featuredRunMedia": null, "reactionVideos": [], @@ -5565,7 +5473,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 2573057, "featuredRunMedia": null, "reactionVideos": [], @@ -5583,7 +5491,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 2573347, "featuredRunMedia": null, "reactionVideos": [], @@ -5601,7 +5509,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 19, + "teamId": "517", "time": 2576374, "featuredRunMedia": null, "reactionVideos": [], @@ -5619,7 +5527,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "404", "time": 2578995, "featuredRunMedia": null, "reactionVideos": [], @@ -5637,7 +5545,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 41, + "teamId": "201", "time": 2593412, "featuredRunMedia": null, "reactionVideos": [], @@ -5655,7 +5563,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "401", "time": 2618009, "featuredRunMedia": null, "reactionVideos": [], @@ -5673,7 +5581,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "706", "time": 2649746, "featuredRunMedia": null, "reactionVideos": [], @@ -5691,7 +5599,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "211", "time": 2651660, "featuredRunMedia": null, "reactionVideos": [], @@ -5709,7 +5617,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 7, + "teamId": "512", "time": 2655695, "featuredRunMedia": null, "reactionVideos": [], @@ -5727,7 +5635,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 43, + "teamId": "212", "time": 2657195, "featuredRunMedia": null, "reactionVideos": [], @@ -5745,7 +5653,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 41, + "teamId": "201", "time": 2661298, "featuredRunMedia": null, "reactionVideos": [], @@ -5763,7 +5671,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 64, + "teamId": "309", "time": 2667106, "featuredRunMedia": null, "reactionVideos": [], @@ -5781,7 +5689,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 63, + "teamId": "418", "time": 2681192, "featuredRunMedia": null, "reactionVideos": [], @@ -5799,7 +5707,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 51, + "teamId": "301", "time": 2687745, "featuredRunMedia": null, "reactionVideos": [], @@ -5817,7 +5725,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 76, + "teamId": "518", "time": 2697200, "featuredRunMedia": null, "reactionVideos": [], @@ -5835,7 +5743,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 23, + "teamId": "305", "time": 2707032, "featuredRunMedia": null, "reactionVideos": [], @@ -5853,7 +5761,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 22, + "teamId": "106", "time": 2708060, "featuredRunMedia": null, "reactionVideos": [], @@ -5871,7 +5779,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 29, + "teamId": "102", "time": 2722492, "featuredRunMedia": null, "reactionVideos": [], @@ -5889,7 +5797,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 20, + "teamId": "217", "time": 2726728, "featuredRunMedia": null, "reactionVideos": [], @@ -5907,7 +5815,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 1, + "teamId": "713", "time": 2733774, "featuredRunMedia": null, "reactionVideos": [], @@ -5925,7 +5833,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 32, + "teamId": "602", "time": 2751996, "featuredRunMedia": null, "reactionVideos": [], @@ -5943,7 +5851,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "604", "time": 2754745, "featuredRunMedia": null, "reactionVideos": [], @@ -5961,7 +5869,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "701", "time": 2757567, "featuredRunMedia": null, "reactionVideos": [], @@ -5979,7 +5887,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 63, + "teamId": "418", "time": 2773978, "featuredRunMedia": null, "reactionVideos": [], @@ -5997,7 +5905,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 55, + "teamId": "306", "time": 2782034, "featuredRunMedia": null, "reactionVideos": [], @@ -6015,7 +5923,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "422", "time": 2784671, "featuredRunMedia": null, "reactionVideos": [], @@ -6033,7 +5941,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 1, + "teamId": "713", "time": 2786595, "featuredRunMedia": null, "reactionVideos": [], @@ -6051,7 +5959,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "604", "time": 2819807, "featuredRunMedia": null, "reactionVideos": [], @@ -6069,7 +5977,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "215", "time": 2824225, "featuredRunMedia": null, "reactionVideos": [], @@ -6087,7 +5995,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 26, + "teamId": "109", "time": 2825861, "featuredRunMedia": null, "reactionVideos": [], @@ -6105,7 +6013,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 4, + "teamId": "505", "time": 2834449, "featuredRunMedia": null, "reactionVideos": [], @@ -6123,7 +6031,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 40, + "teamId": "702", "time": 2841975, "featuredRunMedia": null, "reactionVideos": [], @@ -6141,7 +6049,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 48, + "teamId": "409", "time": 2852758, "featuredRunMedia": null, "reactionVideos": [], @@ -6159,7 +6067,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 71, + "teamId": "412", "time": 2887516, "featuredRunMedia": null, "reactionVideos": [], @@ -6177,7 +6085,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 20, + "teamId": "217", "time": 2892952, "featuredRunMedia": null, "reactionVideos": [], @@ -6195,7 +6103,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 69, + "teamId": "205", "time": 2900086, "featuredRunMedia": null, "reactionVideos": [], @@ -6213,7 +6121,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 63, + "teamId": "418", "time": 2904179, "featuredRunMedia": null, "reactionVideos": [], @@ -6231,7 +6139,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 60, + "teamId": "218", "time": 2907187, "featuredRunMedia": null, "reactionVideos": [], @@ -6249,7 +6157,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "609", "time": 2909319, "featuredRunMedia": null, "reactionVideos": [], @@ -6267,7 +6175,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "706", "time": 2924445, "featuredRunMedia": null, "reactionVideos": [], @@ -6285,7 +6193,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 30, + "teamId": "709", "time": 2926752, "featuredRunMedia": null, "reactionVideos": [], @@ -6303,7 +6211,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 24, + "teamId": "608", "time": 2932864, "featuredRunMedia": null, "reactionVideos": [], @@ -6321,7 +6229,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 33, + "teamId": "213", "time": 2937877, "featuredRunMedia": null, "reactionVideos": [], @@ -6339,7 +6247,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 21, + "teamId": "515", "time": 2942637, "featuredRunMedia": null, "reactionVideos": [], @@ -6357,7 +6265,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 51, + "teamId": "301", "time": 2948347, "featuredRunMedia": null, "reactionVideos": [], @@ -6375,7 +6283,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 46, + "teamId": "107", "time": 2955928, "featuredRunMedia": null, "reactionVideos": [], @@ -6393,7 +6301,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "404", "time": 2961677, "featuredRunMedia": null, "reactionVideos": [], @@ -6411,7 +6319,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 20, + "teamId": "217", "time": 2961902, "featuredRunMedia": null, "reactionVideos": [], @@ -6429,7 +6337,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "303", "time": 2989218, "featuredRunMedia": null, "reactionVideos": [], @@ -6447,7 +6355,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 2989517, "featuredRunMedia": null, "reactionVideos": [], @@ -6465,7 +6373,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 40, + "teamId": "702", "time": 3000850, "featuredRunMedia": null, "reactionVideos": [], @@ -6483,7 +6391,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 41, + "teamId": "201", "time": 3005670, "featuredRunMedia": null, "reactionVideos": [], @@ -6501,7 +6409,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 37, + "teamId": "414", "time": 3014195, "featuredRunMedia": null, "reactionVideos": [], @@ -6519,7 +6427,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "711", "time": 3017833, "featuredRunMedia": null, "reactionVideos": [], @@ -6537,7 +6445,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 26, + "teamId": "109", "time": 3043163, "featuredRunMedia": null, "reactionVideos": [], @@ -6555,7 +6463,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 35, + "teamId": "206", "time": 3047672, "featuredRunMedia": null, "reactionVideos": [], @@ -6573,7 +6481,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 27, + "teamId": "704", "time": 3051511, "featuredRunMedia": null, "reactionVideos": [], @@ -6591,7 +6499,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 7, + "teamId": "512", "time": 3056331, "featuredRunMedia": null, "reactionVideos": [], @@ -6609,7 +6517,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 44, + "teamId": "101", "time": 3058192, "featuredRunMedia": null, "reactionVideos": [], @@ -6627,7 +6535,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 20, + "teamId": "217", "time": 3095344, "featuredRunMedia": null, "reactionVideos": [], @@ -6645,7 +6553,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 26, + "teamId": "109", "time": 3098040, "featuredRunMedia": null, "reactionVideos": [], @@ -6663,7 +6571,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 30, + "teamId": "709", "time": 3101662, "featuredRunMedia": null, "reactionVideos": [], @@ -6681,7 +6589,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 57, + "teamId": "522", "time": 3132325, "featuredRunMedia": null, "reactionVideos": [], @@ -6699,7 +6607,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 34, + "teamId": "610", "time": 3138814, "featuredRunMedia": null, "reactionVideos": [], @@ -6717,7 +6625,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "411", "time": 3141416, "featuredRunMedia": null, "reactionVideos": [], @@ -6735,7 +6643,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 31, + "teamId": "403", "time": 3156679, "featuredRunMedia": null, "reactionVideos": [], @@ -6753,7 +6661,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 61, + "teamId": "308", "time": 3185608, "featuredRunMedia": null, "reactionVideos": [], @@ -6771,7 +6679,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 3211078, "featuredRunMedia": null, "reactionVideos": [], @@ -6789,7 +6697,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "411", "time": 3219276, "featuredRunMedia": null, "reactionVideos": [], @@ -6807,7 +6715,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 50, + "teamId": "410", "time": 3228805, "featuredRunMedia": null, "reactionVideos": [], @@ -6825,7 +6733,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 44, + "teamId": "101", "time": 3234743, "featuredRunMedia": null, "reactionVideos": [], @@ -6843,7 +6751,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "404", "time": 3240825, "featuredRunMedia": null, "reactionVideos": [], @@ -6861,7 +6769,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 43, + "teamId": "212", "time": 3266175, "featuredRunMedia": null, "reactionVideos": [], @@ -6879,7 +6787,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "711", "time": 3278374, "featuredRunMedia": null, "reactionVideos": [], @@ -6897,7 +6805,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 40, + "teamId": "702", "time": 3279588, "featuredRunMedia": null, "reactionVideos": [], @@ -6915,7 +6823,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 39, + "teamId": "501", "time": 3296166, "featuredRunMedia": null, "reactionVideos": [], @@ -6933,7 +6841,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 12, + "teamId": "207", "time": 3311709, "featuredRunMedia": null, "reactionVideos": [], @@ -6951,7 +6859,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 3336269, "featuredRunMedia": null, "reactionVideos": [], @@ -6969,7 +6877,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "211", "time": 3352294, "featuredRunMedia": null, "reactionVideos": [], @@ -6987,7 +6895,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 13, + "teamId": "604", "time": 3363869, "featuredRunMedia": null, "reactionVideos": [], @@ -7005,7 +6913,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "606", "time": 3376763, "featuredRunMedia": null, "reactionVideos": [], @@ -7023,7 +6931,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "502", "time": 3383513, "featuredRunMedia": null, "reactionVideos": [], @@ -7041,7 +6949,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 23, + "teamId": "305", "time": 3384123, "featuredRunMedia": null, "reactionVideos": [], @@ -7059,7 +6967,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 3390206, "featuredRunMedia": null, "reactionVideos": [], @@ -7077,7 +6985,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 25, + "teamId": "419", "time": 3410751, "featuredRunMedia": null, "reactionVideos": [], @@ -7095,7 +7003,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 19, + "teamId": "517", "time": 3440806, "featuredRunMedia": null, "reactionVideos": [], @@ -7113,7 +7021,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 38, + "teamId": "710", "time": 3442869, "featuredRunMedia": null, "reactionVideos": [], @@ -7131,7 +7039,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 20, + "teamId": "217", "time": 3446008, "featuredRunMedia": null, "reactionVideos": [], @@ -7149,7 +7057,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 34, + "teamId": "610", "time": 3457805, "featuredRunMedia": null, "reactionVideos": [], @@ -7167,7 +7075,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 43, + "teamId": "212", "time": 3461489, "featuredRunMedia": null, "reactionVideos": [], @@ -7185,7 +7093,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 24, + "teamId": "608", "time": 3462418, "featuredRunMedia": null, "reactionVideos": [], @@ -7203,7 +7111,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 3471917, "featuredRunMedia": null, "reactionVideos": [], @@ -7221,7 +7129,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 62, + "teamId": "404", "time": 3516980, "featuredRunMedia": null, "reactionVideos": [], @@ -7239,7 +7147,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 3521482, "featuredRunMedia": null, "reactionVideos": [], @@ -7257,7 +7165,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 3535090, "featuredRunMedia": null, "reactionVideos": [], @@ -7275,7 +7183,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 20, + "teamId": "217", "time": 3584443, "featuredRunMedia": null, "reactionVideos": [], @@ -7293,7 +7201,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 42, + "teamId": "504", "time": 3587996, "featuredRunMedia": null, "reactionVideos": [], @@ -7311,7 +7219,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 29, + "teamId": "102", "time": 3597169, "featuredRunMedia": null, "reactionVideos": [], @@ -7329,7 +7237,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 10, + "teamId": "706", "time": 3609102, "featuredRunMedia": null, "reactionVideos": [], @@ -7347,7 +7255,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 46, + "teamId": "107", "time": 3611652, "featuredRunMedia": null, "reactionVideos": [], @@ -7365,7 +7273,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 43, + "teamId": "212", "time": 3620077, "featuredRunMedia": null, "reactionVideos": [], @@ -7383,7 +7291,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 20, + "teamId": "217", "time": 3625943, "featuredRunMedia": null, "reactionVideos": [], @@ -7401,7 +7309,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "607", "time": 3626469, "featuredRunMedia": null, "reactionVideos": [], @@ -7419,7 +7327,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 3632219, "featuredRunMedia": null, "reactionVideos": [], @@ -7437,7 +7345,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 56, + "teamId": "708", "time": 3633934, "featuredRunMedia": null, "reactionVideos": [], @@ -7455,7 +7363,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 8, + "teamId": "420", "time": 3641658, "featuredRunMedia": null, "reactionVideos": [], @@ -7473,7 +7381,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 8, + "teamId": "420", "time": 3659444, "featuredRunMedia": null, "reactionVideos": [], @@ -7491,7 +7399,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 78, + "teamId": "701", "time": 3676264, "featuredRunMedia": null, "reactionVideos": [], @@ -7509,7 +7417,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 14, + "teamId": "303", "time": 3721167, "featuredRunMedia": null, "reactionVideos": [], @@ -7527,7 +7435,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 3725832, "featuredRunMedia": null, "reactionVideos": [], @@ -7545,7 +7453,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 83, + "teamId": "221", "time": 3740504, "featuredRunMedia": null, "reactionVideos": [], @@ -7563,7 +7471,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 5, + "teamId": "422", "time": 3763822, "featuredRunMedia": null, "reactionVideos": [], @@ -7581,7 +7489,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "505", "time": 3782792, "featuredRunMedia": null, "reactionVideos": [], @@ -7599,7 +7507,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 74, + "teamId": "408", "time": 3813172, "featuredRunMedia": null, "reactionVideos": [], @@ -7617,7 +7525,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 64, + "teamId": "309", "time": 3817409, "featuredRunMedia": null, "reactionVideos": [], @@ -7635,7 +7543,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 27, + "teamId": "704", "time": 3834286, "featuredRunMedia": null, "reactionVideos": [], @@ -7653,7 +7561,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 24, + "teamId": "608", "time": 3852140, "featuredRunMedia": null, "reactionVideos": [], @@ -7671,7 +7579,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 3867427, "featuredRunMedia": null, "reactionVideos": [], @@ -7689,7 +7597,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 3880839, "featuredRunMedia": null, "reactionVideos": [], @@ -7707,7 +7615,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 3891148, "featuredRunMedia": null, "reactionVideos": [], @@ -7725,7 +7633,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 68, + "teamId": "502", "time": 3898967, "featuredRunMedia": null, "reactionVideos": [], @@ -7743,7 +7651,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 34, + "teamId": "610", "time": 3901280, "featuredRunMedia": null, "reactionVideos": [], @@ -7761,7 +7669,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 3914036, "featuredRunMedia": null, "reactionVideos": [], @@ -7779,7 +7687,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 26, + "teamId": "109", "time": 3920253, "featuredRunMedia": null, "reactionVideos": [], @@ -7797,7 +7705,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 3932063, "featuredRunMedia": null, "reactionVideos": [], @@ -7815,7 +7723,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 3938571, "featuredRunMedia": null, "reactionVideos": [], @@ -7833,7 +7741,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 8, + "teamId": "420", "time": 3946886, "featuredRunMedia": null, "reactionVideos": [], @@ -7851,7 +7759,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 48, + "teamId": "409", "time": 3947226, "featuredRunMedia": null, "reactionVideos": [], @@ -7869,7 +7777,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 7, + "teamId": "512", "time": 3953916, "featuredRunMedia": null, "reactionVideos": [], @@ -7887,7 +7795,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 3976513, "featuredRunMedia": null, "reactionVideos": [], @@ -7905,7 +7813,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 41, + "teamId": "201", "time": 3991894, "featuredRunMedia": null, "reactionVideos": [], @@ -7923,7 +7831,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 12, + "teamId": "207", "time": 3993294, "featuredRunMedia": null, "reactionVideos": [], @@ -7941,7 +7849,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 32, + "teamId": "602", "time": 4007082, "featuredRunMedia": null, "reactionVideos": [], @@ -7959,7 +7867,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 24, + "teamId": "608", "time": 4008109, "featuredRunMedia": null, "reactionVideos": [], @@ -7977,7 +7885,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 4024306, "featuredRunMedia": null, "reactionVideos": [], @@ -7995,7 +7903,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 75, + "teamId": "219", "time": 4058003, "featuredRunMedia": null, "reactionVideos": [], @@ -8013,7 +7921,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "706", "time": 4094936, "featuredRunMedia": null, "reactionVideos": [], @@ -8031,7 +7939,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 16, + "teamId": "203", "time": 4124478, "featuredRunMedia": null, "reactionVideos": [], @@ -8049,7 +7957,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 27, + "teamId": "704", "time": 4178043, "featuredRunMedia": null, "reactionVideos": [], @@ -8067,7 +7975,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 10, + "teamId": "706", "time": 4193562, "featuredRunMedia": null, "reactionVideos": [], @@ -8085,7 +7993,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "713", "time": 4200314, "featuredRunMedia": null, "reactionVideos": [], @@ -8103,7 +8011,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "606", "time": 4214422, "featuredRunMedia": null, "reactionVideos": [], @@ -8121,7 +8029,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 31, + "teamId": "403", "time": 4232718, "featuredRunMedia": null, "reactionVideos": [], @@ -8139,7 +8047,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "418", "time": 4233855, "featuredRunMedia": null, "reactionVideos": [], @@ -8157,7 +8065,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 2, + "teamId": "711", "time": 4243378, "featuredRunMedia": null, "reactionVideos": [], @@ -8175,7 +8083,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 4252458, "featuredRunMedia": null, "reactionVideos": [], @@ -8193,7 +8101,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 49, + "teamId": "407", "time": 4253858, "featuredRunMedia": null, "reactionVideos": [], @@ -8211,7 +8119,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "512", "time": 4259345, "featuredRunMedia": null, "reactionVideos": [], @@ -8229,7 +8137,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 72, + "teamId": "516", "time": 4261118, "featuredRunMedia": null, "reactionVideos": [], @@ -8247,7 +8155,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 44, + "teamId": "101", "time": 4268474, "featuredRunMedia": null, "reactionVideos": [], @@ -8265,7 +8173,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 52, + "teamId": "421", "time": 4272542, "featuredRunMedia": null, "reactionVideos": [], @@ -8283,7 +8191,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 17, + "teamId": "401", "time": 4306496, "featuredRunMedia": null, "reactionVideos": [], @@ -8301,7 +8209,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "303", "time": 4307009, "featuredRunMedia": null, "reactionVideos": [], @@ -8319,7 +8227,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 20, + "teamId": "217", "time": 4311132, "featuredRunMedia": null, "reactionVideos": [], @@ -8337,7 +8245,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "512", "time": 4324261, "featuredRunMedia": null, "reactionVideos": [], @@ -8355,7 +8263,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 28, + "teamId": "503", "time": 4336355, "featuredRunMedia": null, "reactionVideos": [], @@ -8373,7 +8281,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 66, + "teamId": "209", "time": 4341595, "featuredRunMedia": null, "reactionVideos": [], @@ -8391,7 +8299,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 20, + "teamId": "217", "time": 4347161, "featuredRunMedia": null, "reactionVideos": [], @@ -8409,7 +8317,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "602", "time": 4357897, "featuredRunMedia": null, "reactionVideos": [], @@ -8427,7 +8335,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 4398360, "featuredRunMedia": null, "reactionVideos": [], @@ -8445,7 +8353,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 28, + "teamId": "503", "time": 4406004, "featuredRunMedia": null, "reactionVideos": [], @@ -8463,7 +8371,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 25, + "teamId": "419", "time": 4408331, "featuredRunMedia": null, "reactionVideos": [], @@ -8481,7 +8389,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 80, + "teamId": "302", "time": 4433342, "featuredRunMedia": null, "reactionVideos": [], @@ -8499,7 +8407,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 49, + "teamId": "407", "time": 4436467, "featuredRunMedia": null, "reactionVideos": [], @@ -8517,7 +8425,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "711", "time": 4438057, "featuredRunMedia": null, "reactionVideos": [], @@ -8535,7 +8443,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 4, + "teamId": "505", "time": 4450810, "featuredRunMedia": null, "reactionVideos": [], @@ -8553,7 +8461,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 40, + "teamId": "702", "time": 4457869, "featuredRunMedia": null, "reactionVideos": [], @@ -8571,7 +8479,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "609", "time": 4486421, "featuredRunMedia": null, "reactionVideos": [], @@ -8589,7 +8497,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 4582379, "featuredRunMedia": null, "reactionVideos": [], @@ -8607,7 +8515,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 54, + "teamId": "423", "time": 4625525, "featuredRunMedia": null, "reactionVideos": [], @@ -8625,7 +8533,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 64, + "teamId": "309", "time": 4635382, "featuredRunMedia": null, "reactionVideos": [], @@ -8643,7 +8551,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 62, + "teamId": "404", "time": 4646258, "featuredRunMedia": null, "reactionVideos": [], @@ -8661,7 +8569,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "303", "time": 4647825, "featuredRunMedia": null, "reactionVideos": [], @@ -8679,7 +8587,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 4677346, "featuredRunMedia": null, "reactionVideos": [], @@ -8697,7 +8605,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "602", "time": 4695679, "featuredRunMedia": null, "reactionVideos": [], @@ -8715,7 +8623,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 17, + "teamId": "401", "time": 4705301, "featuredRunMedia": null, "reactionVideos": [], @@ -8733,7 +8641,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 23, + "teamId": "305", "time": 4722973, "featuredRunMedia": null, "reactionVideos": [], @@ -8751,7 +8659,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 46, + "teamId": "107", "time": 4755197, "featuredRunMedia": null, "reactionVideos": [], @@ -8769,7 +8677,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 26, + "teamId": "109", "time": 4770620, "featuredRunMedia": null, "reactionVideos": [], @@ -8787,7 +8695,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 42, + "teamId": "504", "time": 4776452, "featuredRunMedia": null, "reactionVideos": [], @@ -8805,7 +8713,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 39, + "teamId": "501", "time": 4784327, "featuredRunMedia": null, "reactionVideos": [], @@ -8823,7 +8731,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 73, + "teamId": "707", "time": 4799498, "featuredRunMedia": null, "reactionVideos": [], @@ -8841,7 +8749,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 72, + "teamId": "516", "time": 4811046, "featuredRunMedia": null, "reactionVideos": [], @@ -8859,7 +8767,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 46, + "teamId": "107", "time": 4834541, "featuredRunMedia": null, "reactionVideos": [], @@ -8877,7 +8785,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 55, + "teamId": "306", "time": 4838237, "featuredRunMedia": null, "reactionVideos": [], @@ -8895,7 +8803,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 31, + "teamId": "403", "time": 4839630, "featuredRunMedia": null, "reactionVideos": [], @@ -8913,7 +8821,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "301", "time": 4841814, "featuredRunMedia": null, "reactionVideos": [], @@ -8931,7 +8839,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "606", "time": 4846992, "featuredRunMedia": null, "reactionVideos": [], @@ -8949,7 +8857,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "608", "time": 4848969, "featuredRunMedia": null, "reactionVideos": [], @@ -8967,7 +8875,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 28, + "teamId": "503", "time": 4876891, "featuredRunMedia": null, "reactionVideos": [], @@ -8985,7 +8893,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 26, + "teamId": "109", "time": 4888834, "featuredRunMedia": null, "reactionVideos": [], @@ -9003,7 +8911,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 3, + "teamId": "215", "time": 4899874, "featuredRunMedia": null, "reactionVideos": [], @@ -9021,7 +8929,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 41, + "teamId": "201", "time": 4904368, "featuredRunMedia": null, "reactionVideos": [], @@ -9039,7 +8947,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 51, + "teamId": "301", "time": 4909615, "featuredRunMedia": null, "reactionVideos": [], @@ -9057,7 +8965,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 4914297, "featuredRunMedia": null, "reactionVideos": [], @@ -9075,7 +8983,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 58, + "teamId": "507", "time": 4949018, "featuredRunMedia": null, "reactionVideos": [], @@ -9093,7 +9001,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "609", "time": 4951402, "featuredRunMedia": null, "reactionVideos": [], @@ -9111,7 +9019,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 56, + "teamId": "708", "time": 4951403, "featuredRunMedia": null, "reactionVideos": [], @@ -9129,7 +9037,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 18, + "teamId": "416", "time": 4966245, "featuredRunMedia": null, "reactionVideos": [], @@ -9147,7 +9055,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 3, + "teamId": "215", "time": 4999654, "featuredRunMedia": null, "reactionVideos": [], @@ -9165,7 +9073,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 34, + "teamId": "610", "time": 5002491, "featuredRunMedia": null, "reactionVideos": [], @@ -9183,7 +9091,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 52, + "teamId": "421", "time": 5026498, "featuredRunMedia": null, "reactionVideos": [], @@ -9201,7 +9109,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "522", "time": 5061833, "featuredRunMedia": null, "reactionVideos": [], @@ -9219,7 +9127,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "512", "time": 5103060, "featuredRunMedia": null, "reactionVideos": [], @@ -9237,7 +9145,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 77, + "teamId": "208", "time": 5120343, "featuredRunMedia": null, "reactionVideos": [], @@ -9255,7 +9163,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 5141749, "featuredRunMedia": null, "reactionVideos": [], @@ -9273,7 +9181,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 27, + "teamId": "704", "time": 5187360, "featuredRunMedia": null, "reactionVideos": [], @@ -9291,7 +9199,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 5228986, "featuredRunMedia": null, "reactionVideos": [], @@ -9309,7 +9217,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 5235298, "featuredRunMedia": null, "reactionVideos": [], @@ -9327,7 +9235,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 13, + "teamId": "604", "time": 5242031, "featuredRunMedia": null, "reactionVideos": [], @@ -9345,7 +9253,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 5247026, "featuredRunMedia": null, "reactionVideos": [], @@ -9363,7 +9271,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 37, + "teamId": "414", "time": 5249659, "featuredRunMedia": null, "reactionVideos": [], @@ -9381,7 +9289,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 22, + "teamId": "106", "time": 5266127, "featuredRunMedia": null, "reactionVideos": [], @@ -9399,7 +9307,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "304", "time": 5284525, "featuredRunMedia": null, "reactionVideos": [], @@ -9417,7 +9325,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 30, + "teamId": "709", "time": 5294171, "featuredRunMedia": null, "reactionVideos": [], @@ -9435,7 +9343,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 15, + "teamId": "411", "time": 5336812, "featuredRunMedia": null, "reactionVideos": [], @@ -9453,7 +9361,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 30, + "teamId": "709", "time": 5350681, "featuredRunMedia": null, "reactionVideos": [], @@ -9471,7 +9379,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 71, + "teamId": "412", "time": 5357148, "featuredRunMedia": null, "reactionVideos": [], @@ -9489,7 +9397,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "606", "time": 5370940, "featuredRunMedia": null, "reactionVideos": [], @@ -9507,7 +9415,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "512", "time": 5406932, "featuredRunMedia": null, "reactionVideos": [], @@ -9525,7 +9433,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "522", "time": 5407466, "featuredRunMedia": null, "reactionVideos": [], @@ -9543,7 +9451,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 50, + "teamId": "410", "time": 5415266, "featuredRunMedia": null, "reactionVideos": [], @@ -9561,7 +9469,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 44, + "teamId": "101", "time": 5418567, "featuredRunMedia": null, "reactionVideos": [], @@ -9579,7 +9487,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 66, + "teamId": "209", "time": 5444879, "featuredRunMedia": null, "reactionVideos": [], @@ -9597,7 +9505,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 30, + "teamId": "709", "time": 5448822, "featuredRunMedia": null, "reactionVideos": [], @@ -9615,7 +9523,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 50, + "teamId": "410", "time": 5453040, "featuredRunMedia": null, "reactionVideos": [], @@ -9633,7 +9541,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 20, + "teamId": "217", "time": 5455175, "featuredRunMedia": null, "reactionVideos": [], @@ -9651,7 +9559,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "607", "time": 5495696, "featuredRunMedia": null, "reactionVideos": [], @@ -9669,7 +9577,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 61, + "teamId": "308", "time": 5511207, "featuredRunMedia": null, "reactionVideos": [], @@ -9687,7 +9595,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 8, + "teamId": "420", "time": 5551225, "featuredRunMedia": null, "reactionVideos": [], @@ -9705,7 +9613,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 5579635, "featuredRunMedia": null, "reactionVideos": [], @@ -9723,7 +9631,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 5588455, "featuredRunMedia": null, "reactionVideos": [], @@ -9741,7 +9649,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "418", "time": 5599916, "featuredRunMedia": null, "reactionVideos": [], @@ -9759,7 +9667,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "606", "time": 5625257, "featuredRunMedia": null, "reactionVideos": [], @@ -9777,7 +9685,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 37, + "teamId": "414", "time": 5638829, "featuredRunMedia": null, "reactionVideos": [], @@ -9795,7 +9703,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 35, + "teamId": "206", "time": 5647566, "featuredRunMedia": null, "reactionVideos": [], @@ -9813,7 +9721,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 54, + "teamId": "423", "time": 5683691, "featuredRunMedia": null, "reactionVideos": [], @@ -9831,7 +9739,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 40, + "teamId": "702", "time": 5688398, "featuredRunMedia": null, "reactionVideos": [], @@ -9849,7 +9757,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 4, + "teamId": "505", "time": 5696419, "featuredRunMedia": null, "reactionVideos": [], @@ -9867,7 +9775,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 24, + "teamId": "608", "time": 5711290, "featuredRunMedia": null, "reactionVideos": [], @@ -9885,7 +9793,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "522", "time": 5729339, "featuredRunMedia": null, "reactionVideos": [], @@ -9903,7 +9811,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 50, + "teamId": "410", "time": 5752321, "featuredRunMedia": null, "reactionVideos": [], @@ -9921,7 +9829,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 28, + "teamId": "503", "time": 5765158, "featuredRunMedia": null, "reactionVideos": [], @@ -9939,7 +9847,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 46, + "teamId": "107", "time": 5773779, "featuredRunMedia": null, "reactionVideos": [], @@ -9957,7 +9865,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 14, + "teamId": "303", "time": 5793703, "featuredRunMedia": null, "reactionVideos": [], @@ -9975,7 +9883,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 64, + "teamId": "309", "time": 5795747, "featuredRunMedia": null, "reactionVideos": [], @@ -9993,7 +9901,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 32, + "teamId": "602", "time": 5799498, "featuredRunMedia": null, "reactionVideos": [], @@ -10011,7 +9919,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 60, + "teamId": "218", "time": 5802000, "featuredRunMedia": null, "reactionVideos": [], @@ -10029,7 +9937,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "522", "time": 5864980, "featuredRunMedia": null, "reactionVideos": [], @@ -10047,7 +9955,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 91, + "teamId": "211", "time": 5867930, "featuredRunMedia": null, "reactionVideos": [], @@ -10065,7 +9973,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 49, + "teamId": "407", "time": 5888078, "featuredRunMedia": null, "reactionVideos": [], @@ -10083,7 +9991,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 29, + "teamId": "102", "time": 5893624, "featuredRunMedia": null, "reactionVideos": [], @@ -10101,7 +10009,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 5910607, "featuredRunMedia": null, "reactionVideos": [], @@ -10119,7 +10027,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 48, + "teamId": "409", "time": 5915570, "featuredRunMedia": null, "reactionVideos": [], @@ -10137,7 +10045,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "215", "time": 5916776, "featuredRunMedia": null, "reactionVideos": [], @@ -10155,7 +10063,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 45, + "teamId": "110", "time": 5950436, "featuredRunMedia": null, "reactionVideos": [], @@ -10173,7 +10081,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 32, + "teamId": "602", "time": 5956227, "featuredRunMedia": null, "reactionVideos": [], @@ -10191,7 +10099,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 6, + "teamId": "220", "time": 5970053, "featuredRunMedia": null, "reactionVideos": [], @@ -10209,7 +10117,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 65, + "teamId": "513", "time": 6004624, "featuredRunMedia": null, "reactionVideos": [], @@ -10227,7 +10135,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 6005969, "featuredRunMedia": null, "reactionVideos": [], @@ -10245,7 +10153,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 46, + "teamId": "107", "time": 6022502, "featuredRunMedia": null, "reactionVideos": [], @@ -10263,7 +10171,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 47, + "teamId": "510", "time": 6030728, "featuredRunMedia": null, "reactionVideos": [], @@ -10281,7 +10189,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 17, + "teamId": "401", "time": 6070133, "featuredRunMedia": null, "reactionVideos": [], @@ -10299,7 +10207,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 6085660, "featuredRunMedia": null, "reactionVideos": [], @@ -10317,7 +10225,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "207", "time": 6100737, "featuredRunMedia": null, "reactionVideos": [], @@ -10335,7 +10243,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 6123058, "featuredRunMedia": null, "reactionVideos": [], @@ -10353,7 +10261,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "512", "time": 6159211, "featuredRunMedia": null, "reactionVideos": [], @@ -10371,7 +10279,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 22, + "teamId": "106", "time": 6170223, "featuredRunMedia": null, "reactionVideos": [], @@ -10389,7 +10297,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 25, + "teamId": "419", "time": 6199197, "featuredRunMedia": null, "reactionVideos": [], @@ -10407,7 +10315,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "606", "time": 6216846, "featuredRunMedia": null, "reactionVideos": [], @@ -10425,7 +10333,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 6237571, "featuredRunMedia": null, "reactionVideos": [], @@ -10443,7 +10351,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "606", "time": 6278231, "featuredRunMedia": null, "reactionVideos": [], @@ -10461,7 +10369,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 52, + "teamId": "421", "time": 6288679, "featuredRunMedia": null, "reactionVideos": [], @@ -10479,7 +10387,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 35, + "teamId": "206", "time": 6338959, "featuredRunMedia": null, "reactionVideos": [], @@ -10497,7 +10405,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 6348284, "featuredRunMedia": null, "reactionVideos": [], @@ -10515,7 +10423,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "418", "time": 6371853, "featuredRunMedia": null, "reactionVideos": [], @@ -10533,7 +10441,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 66, + "teamId": "209", "time": 6383350, "featuredRunMedia": null, "reactionVideos": [], @@ -10551,7 +10459,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 6386109, "featuredRunMedia": null, "reactionVideos": [], @@ -10569,7 +10477,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 75, + "teamId": "219", "time": 6404944, "featuredRunMedia": null, "reactionVideos": [], @@ -10587,7 +10495,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 56, + "teamId": "708", "time": 6429158, "featuredRunMedia": null, "reactionVideos": [], @@ -10605,7 +10513,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 5, + "teamId": "422", "time": 6430800, "featuredRunMedia": null, "reactionVideos": [], @@ -10623,7 +10531,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 6433672, "featuredRunMedia": null, "reactionVideos": [], @@ -10641,7 +10549,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 6441333, "featuredRunMedia": null, "reactionVideos": [], @@ -10659,7 +10567,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 26, + "teamId": "109", "time": 6448645, "featuredRunMedia": null, "reactionVideos": [], @@ -10677,7 +10585,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "606", "time": 6450943, "featuredRunMedia": null, "reactionVideos": [], @@ -10695,7 +10603,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 6452321, "featuredRunMedia": null, "reactionVideos": [], @@ -10713,7 +10621,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 6455290, "featuredRunMedia": null, "reactionVideos": [], @@ -10731,7 +10639,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "512", "time": 6471539, "featuredRunMedia": null, "reactionVideos": [], @@ -10749,7 +10657,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 28, + "teamId": "503", "time": 6485934, "featuredRunMedia": null, "reactionVideos": [], @@ -10767,7 +10675,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 49, + "teamId": "407", "time": 6496071, "featuredRunMedia": null, "reactionVideos": [], @@ -10785,7 +10693,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 56, + "teamId": "708", "time": 6514264, "featuredRunMedia": null, "reactionVideos": [], @@ -10803,7 +10711,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 45, + "teamId": "110", "time": 6543335, "featuredRunMedia": null, "reactionVideos": [], @@ -10821,7 +10729,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "606", "time": 6579948, "featuredRunMedia": null, "reactionVideos": [], @@ -10839,7 +10747,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "713", "time": 6586596, "featuredRunMedia": null, "reactionVideos": [], @@ -10857,7 +10765,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 49, + "teamId": "407", "time": 6624301, "featuredRunMedia": null, "reactionVideos": [], @@ -10875,7 +10783,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 51, + "teamId": "301", "time": 6679730, "featuredRunMedia": null, "reactionVideos": [], @@ -10893,7 +10801,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 49, + "teamId": "407", "time": 6688278, "featuredRunMedia": null, "reactionVideos": [], @@ -10911,7 +10819,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 24, + "teamId": "608", "time": 6694903, "featuredRunMedia": null, "reactionVideos": [], @@ -10929,7 +10837,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 10, + "teamId": "706", "time": 6738129, "featuredRunMedia": null, "reactionVideos": [], @@ -10947,7 +10855,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 63, + "teamId": "418", "time": 6769514, "featuredRunMedia": null, "reactionVideos": [], @@ -10965,7 +10873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 57, + "teamId": "522", "time": 6780366, "featuredRunMedia": null, "reactionVideos": [], @@ -10983,7 +10891,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 36, + "teamId": "406", "time": 6788297, "featuredRunMedia": null, "reactionVideos": [], @@ -11001,7 +10909,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 60, + "teamId": "218", "time": 6801481, "featuredRunMedia": null, "reactionVideos": [], @@ -11019,7 +10927,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 51, + "teamId": "301", "time": 6822634, "featuredRunMedia": null, "reactionVideos": [], @@ -11037,7 +10945,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "215", "time": 6834965, "featuredRunMedia": null, "reactionVideos": [], @@ -11055,7 +10963,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 10, + "teamId": "706", "time": 6874142, "featuredRunMedia": null, "reactionVideos": [], @@ -11073,7 +10981,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "711", "time": 6883026, "featuredRunMedia": null, "reactionVideos": [], @@ -11091,7 +10999,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "604", "time": 6889617, "featuredRunMedia": null, "reactionVideos": [], @@ -11109,7 +11017,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 6982921, "featuredRunMedia": null, "reactionVideos": [], @@ -11127,7 +11035,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 7005966, "featuredRunMedia": null, "reactionVideos": [], @@ -11145,7 +11053,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 85, + "teamId": "607", "time": 7052220, "featuredRunMedia": null, "reactionVideos": [], @@ -11163,7 +11071,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 7063817, "featuredRunMedia": null, "reactionVideos": [], @@ -11181,7 +11089,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "606", "time": 7074739, "featuredRunMedia": null, "reactionVideos": [], @@ -11199,7 +11107,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 56, + "teamId": "708", "time": 7113636, "featuredRunMedia": null, "reactionVideos": [], @@ -11217,7 +11125,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 63, + "teamId": "418", "time": 7147867, "featuredRunMedia": null, "reactionVideos": [], @@ -11235,7 +11143,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 53, + "teamId": "603", "time": 7155332, "featuredRunMedia": null, "reactionVideos": [], @@ -11253,7 +11161,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "413", "time": 7165545, "featuredRunMedia": null, "reactionVideos": [], @@ -11271,7 +11179,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 41, + "teamId": "201", "time": 7176747, "featuredRunMedia": null, "reactionVideos": [], @@ -11289,7 +11197,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 7179631, "featuredRunMedia": null, "reactionVideos": [], @@ -11307,7 +11215,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 7290868, "featuredRunMedia": null, "reactionVideos": [], @@ -11325,7 +11233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 7311493, "featuredRunMedia": null, "reactionVideos": [], @@ -11343,7 +11251,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 15, + "teamId": "411", "time": 7315376, "featuredRunMedia": null, "reactionVideos": [], @@ -11361,7 +11269,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 7357411, "featuredRunMedia": null, "reactionVideos": [], @@ -11379,7 +11287,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 7386407, "featuredRunMedia": null, "reactionVideos": [], @@ -11397,7 +11305,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 25, + "teamId": "419", "time": 7395840, "featuredRunMedia": null, "reactionVideos": [], @@ -11415,7 +11323,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 7397998, "featuredRunMedia": null, "reactionVideos": [], @@ -11433,7 +11341,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 54, + "teamId": "423", "time": 7433971, "featuredRunMedia": null, "reactionVideos": [], @@ -11451,7 +11359,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 7460667, "featuredRunMedia": null, "reactionVideos": [], @@ -11469,7 +11377,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 7476923, "featuredRunMedia": null, "reactionVideos": [], @@ -11487,7 +11395,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 7484247, "featuredRunMedia": null, "reactionVideos": [], @@ -11505,7 +11413,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 10, + "teamId": "706", "time": 7504199, "featuredRunMedia": null, "reactionVideos": [], @@ -11523,7 +11431,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 66, + "teamId": "209", "time": 7546317, "featuredRunMedia": null, "reactionVideos": [], @@ -11541,7 +11449,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 37, + "teamId": "414", "time": 7548207, "featuredRunMedia": null, "reactionVideos": [], @@ -11559,7 +11467,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "420", "time": 7552877, "featuredRunMedia": null, "reactionVideos": [], @@ -11577,7 +11485,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 27, + "teamId": "704", "time": 7596526, "featuredRunMedia": null, "reactionVideos": [], @@ -11595,7 +11503,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "420", "time": 7599746, "featuredRunMedia": null, "reactionVideos": [], @@ -11613,7 +11521,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 7631646, "featuredRunMedia": null, "reactionVideos": [], @@ -11631,7 +11539,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 6, + "teamId": "220", "time": 7648552, "featuredRunMedia": null, "reactionVideos": [], @@ -11649,7 +11557,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 34, + "teamId": "610", "time": 7656840, "featuredRunMedia": null, "reactionVideos": [], @@ -11667,7 +11575,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 47, + "teamId": "510", "time": 7687467, "featuredRunMedia": null, "reactionVideos": [], @@ -11685,7 +11593,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 7693266, "featuredRunMedia": null, "reactionVideos": [], @@ -11703,7 +11611,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 37, + "teamId": "414", "time": 7729443, "featuredRunMedia": null, "reactionVideos": [], @@ -11721,7 +11629,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 7759703, "featuredRunMedia": null, "reactionVideos": [], @@ -11739,7 +11647,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 46, + "teamId": "107", "time": 7820097, "featuredRunMedia": null, "reactionVideos": [], @@ -11757,7 +11665,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 71, + "teamId": "412", "time": 7846783, "featuredRunMedia": null, "reactionVideos": [], @@ -11775,7 +11683,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 21, + "teamId": "515", "time": 7906780, "featuredRunMedia": null, "reactionVideos": [], @@ -11793,7 +11701,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 37, + "teamId": "414", "time": 7965225, "featuredRunMedia": null, "reactionVideos": [], @@ -11811,7 +11719,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 1, + "teamId": "713", "time": 7969777, "featuredRunMedia": null, "reactionVideos": [], @@ -11829,7 +11737,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "215", "time": 7993613, "featuredRunMedia": null, "reactionVideos": [], @@ -11847,7 +11755,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 35, + "teamId": "206", "time": 8026555, "featuredRunMedia": null, "reactionVideos": [], @@ -11865,7 +11773,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 66, + "teamId": "209", "time": 8044825, "featuredRunMedia": null, "reactionVideos": [], @@ -11883,7 +11791,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 34, + "teamId": "610", "time": 8063255, "featuredRunMedia": null, "reactionVideos": [], @@ -11901,7 +11809,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 15, + "teamId": "411", "time": 8081301, "featuredRunMedia": null, "reactionVideos": [], @@ -11919,7 +11827,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 1, + "teamId": "713", "time": 8095862, "featuredRunMedia": null, "reactionVideos": [], @@ -11937,7 +11845,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 11, + "teamId": "304", "time": 8120685, "featuredRunMedia": null, "reactionVideos": [], @@ -11955,7 +11863,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 1, + "teamId": "713", "time": 8136673, "featuredRunMedia": null, "reactionVideos": [], @@ -11973,7 +11881,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 58, + "teamId": "507", "time": 8172341, "featuredRunMedia": null, "reactionVideos": [], @@ -11991,7 +11899,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 84, + "teamId": "204", "time": 8177298, "featuredRunMedia": null, "reactionVideos": [], @@ -12009,7 +11917,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 69, + "teamId": "205", "time": 8201695, "featuredRunMedia": null, "reactionVideos": [], @@ -12027,7 +11935,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 52, + "teamId": "421", "time": 8215805, "featuredRunMedia": null, "reactionVideos": [], @@ -12045,7 +11953,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 91, + "teamId": "211", "time": 8232462, "featuredRunMedia": null, "reactionVideos": [], @@ -12063,7 +11971,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 8238213, "featuredRunMedia": null, "reactionVideos": [], @@ -12081,7 +11989,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 31, + "teamId": "403", "time": 8242486, "featuredRunMedia": null, "reactionVideos": [], @@ -12099,7 +12007,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 45, + "teamId": "110", "time": 8253911, "featuredRunMedia": null, "reactionVideos": [], @@ -12117,7 +12025,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 34, + "teamId": "610", "time": 8285309, "featuredRunMedia": null, "reactionVideos": [], @@ -12135,7 +12043,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 12, + "teamId": "207", "time": 8320234, "featuredRunMedia": null, "reactionVideos": [], @@ -12153,7 +12061,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 18, + "teamId": "416", "time": 8331634, "featuredRunMedia": null, "reactionVideos": [], @@ -12171,7 +12079,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 20, + "teamId": "217", "time": 8334531, "featuredRunMedia": null, "reactionVideos": [], @@ -12189,7 +12097,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "503", "time": 8341095, "featuredRunMedia": null, "reactionVideos": [], @@ -12207,7 +12115,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 68, + "teamId": "502", "time": 8343788, "featuredRunMedia": null, "reactionVideos": [], @@ -12225,7 +12133,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 69, + "teamId": "205", "time": 8345513, "featuredRunMedia": null, "reactionVideos": [], @@ -12243,7 +12151,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 12, + "teamId": "207", "time": 8355256, "featuredRunMedia": null, "reactionVideos": [], @@ -12261,7 +12169,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 64, + "teamId": "309", "time": 8384298, "featuredRunMedia": null, "reactionVideos": [], @@ -12279,7 +12187,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 8391699, "featuredRunMedia": null, "reactionVideos": [], @@ -12297,7 +12205,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 8431767, "featuredRunMedia": null, "reactionVideos": [], @@ -12315,7 +12223,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 23, + "teamId": "305", "time": 8452609, "featuredRunMedia": null, "reactionVideos": [], @@ -12333,7 +12241,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 8466509, "featuredRunMedia": null, "reactionVideos": [], @@ -12351,7 +12259,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 48, + "teamId": "409", "time": 8485231, "featuredRunMedia": null, "reactionVideos": [], @@ -12369,7 +12277,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 20, + "teamId": "217", "time": 8511985, "featuredRunMedia": null, "reactionVideos": [], @@ -12387,7 +12295,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "219", "time": 8550318, "featuredRunMedia": null, "reactionVideos": [], @@ -12405,7 +12313,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 65, + "teamId": "513", "time": 8556812, "featuredRunMedia": null, "reactionVideos": [], @@ -12423,7 +12331,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 68, + "teamId": "502", "time": 8557959, "featuredRunMedia": null, "reactionVideos": [], @@ -12441,7 +12349,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 8560414, "featuredRunMedia": null, "reactionVideos": [], @@ -12459,7 +12367,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 77, + "teamId": "208", "time": 8607375, "featuredRunMedia": null, "reactionVideos": [], @@ -12477,7 +12385,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 69, + "teamId": "205", "time": 8636115, "featuredRunMedia": null, "reactionVideos": [], @@ -12495,7 +12403,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 66, + "teamId": "209", "time": 8656276, "featuredRunMedia": null, "reactionVideos": [], @@ -12513,7 +12421,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 8679969, "featuredRunMedia": null, "reactionVideos": [], @@ -12531,7 +12439,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 45, + "teamId": "110", "time": 8681469, "featuredRunMedia": null, "reactionVideos": [], @@ -12549,7 +12457,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 31, + "teamId": "403", "time": 8707212, "featuredRunMedia": null, "reactionVideos": [], @@ -12567,7 +12475,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 31, + "teamId": "403", "time": 8728643, "featuredRunMedia": null, "reactionVideos": [], @@ -12585,7 +12493,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 58, + "teamId": "507", "time": 8782307, "featuredRunMedia": null, "reactionVideos": [], @@ -12603,7 +12511,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "219", "time": 8787730, "featuredRunMedia": null, "reactionVideos": [], @@ -12621,7 +12529,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 49, + "teamId": "407", "time": 8806609, "featuredRunMedia": null, "reactionVideos": [], @@ -12639,7 +12547,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 8823582, "featuredRunMedia": null, "reactionVideos": [], @@ -12657,7 +12565,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 50, + "teamId": "410", "time": 8836146, "featuredRunMedia": null, "reactionVideos": [], @@ -12675,7 +12583,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 75, + "teamId": "219", "time": 8908707, "featuredRunMedia": null, "reactionVideos": [], @@ -12693,7 +12601,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 30, + "teamId": "709", "time": 8918736, "featuredRunMedia": null, "reactionVideos": [], @@ -12711,7 +12619,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 54, + "teamId": "423", "time": 8920562, "featuredRunMedia": null, "reactionVideos": [], @@ -12729,7 +12637,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 8928321, "featuredRunMedia": null, "reactionVideos": [], @@ -12747,7 +12655,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "220", "time": 8957572, "featuredRunMedia": null, "reactionVideos": [], @@ -12765,7 +12673,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 8979621, "featuredRunMedia": null, "reactionVideos": [], @@ -12783,7 +12691,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 47, + "teamId": "510", "time": 8989800, "featuredRunMedia": null, "reactionVideos": [], @@ -12801,7 +12709,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 49, + "teamId": "407", "time": 8991729, "featuredRunMedia": null, "reactionVideos": [], @@ -12819,7 +12727,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 54, + "teamId": "423", "time": 9036825, "featuredRunMedia": null, "reactionVideos": [], @@ -12837,7 +12745,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 14, + "teamId": "303", "time": 9110035, "featuredRunMedia": null, "reactionVideos": [], @@ -12855,7 +12763,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 36, + "teamId": "406", "time": 9162763, "featuredRunMedia": null, "reactionVideos": [], @@ -12873,7 +12781,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 9166995, "featuredRunMedia": null, "reactionVideos": [], @@ -12891,7 +12799,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 4, + "teamId": "505", "time": 9184922, "featuredRunMedia": null, "reactionVideos": [], @@ -12909,7 +12817,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 85, + "teamId": "607", "time": 9206792, "featuredRunMedia": null, "reactionVideos": [], @@ -12927,7 +12835,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 9220604, "featuredRunMedia": null, "reactionVideos": [], @@ -12945,7 +12853,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 46, + "teamId": "107", "time": 9265379, "featuredRunMedia": null, "reactionVideos": [], @@ -12963,7 +12871,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 9272190, "featuredRunMedia": null, "reactionVideos": [], @@ -12981,7 +12889,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 47, + "teamId": "510", "time": 9275260, "featuredRunMedia": null, "reactionVideos": [], @@ -12999,7 +12907,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 21, + "teamId": "515", "time": 9277273, "featuredRunMedia": null, "reactionVideos": [], @@ -13017,7 +12925,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 21, + "teamId": "515", "time": 9314301, "featuredRunMedia": null, "reactionVideos": [], @@ -13035,7 +12943,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 21, + "teamId": "515", "time": 9345358, "featuredRunMedia": null, "reactionVideos": [], @@ -13053,7 +12961,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "413", "time": 9381076, "featuredRunMedia": null, "reactionVideos": [], @@ -13071,7 +12979,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 9388453, "featuredRunMedia": null, "reactionVideos": [], @@ -13089,7 +12997,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "215", "time": 9394663, "featuredRunMedia": null, "reactionVideos": [], @@ -13107,7 +13015,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 16, + "teamId": "203", "time": 9438755, "featuredRunMedia": null, "reactionVideos": [], @@ -13125,7 +13033,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 44, + "teamId": "101", "time": 9456890, "featuredRunMedia": null, "reactionVideos": [], @@ -13143,7 +13051,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 24, + "teamId": "608", "time": 9461104, "featuredRunMedia": null, "reactionVideos": [], @@ -13161,7 +13069,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 84, + "teamId": "204", "time": 9469979, "featuredRunMedia": null, "reactionVideos": [], @@ -13179,7 +13087,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 17, + "teamId": "401", "time": 9485342, "featuredRunMedia": null, "reactionVideos": [], @@ -13197,7 +13105,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 9504814, "featuredRunMedia": null, "reactionVideos": [], @@ -13215,7 +13123,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 9533158, "featuredRunMedia": null, "reactionVideos": [], @@ -13233,7 +13141,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 44, + "teamId": "101", "time": 9542214, "featuredRunMedia": null, "reactionVideos": [], @@ -13251,7 +13159,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 70, + "teamId": "609", "time": 9556088, "featuredRunMedia": null, "reactionVideos": [], @@ -13269,7 +13177,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 66, + "teamId": "209", "time": 9593893, "featuredRunMedia": null, "reactionVideos": [], @@ -13287,7 +13195,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "707", "time": 9611358, "featuredRunMedia": null, "reactionVideos": [], @@ -13305,7 +13213,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 29, + "teamId": "102", "time": 9653728, "featuredRunMedia": null, "reactionVideos": [], @@ -13323,7 +13231,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 79, + "teamId": "415", "time": 9663488, "featuredRunMedia": null, "reactionVideos": [], @@ -13341,7 +13249,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "713", "time": 9701055, "featuredRunMedia": null, "reactionVideos": [], @@ -13359,7 +13267,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 77, + "teamId": "208", "time": 9713455, "featuredRunMedia": null, "reactionVideos": [], @@ -13377,7 +13285,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 9717135, "featuredRunMedia": null, "reactionVideos": [], @@ -13395,7 +13303,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 57, + "teamId": "522", "time": 9761860, "featuredRunMedia": null, "reactionVideos": [], @@ -13413,7 +13321,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 9766432, "featuredRunMedia": null, "reactionVideos": [], @@ -13431,7 +13339,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 69, + "teamId": "205", "time": 9816550, "featuredRunMedia": null, "reactionVideos": [], @@ -13449,7 +13357,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "413", "time": 9818057, "featuredRunMedia": null, "reactionVideos": [], @@ -13467,7 +13375,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 54, + "teamId": "423", "time": 9832339, "featuredRunMedia": null, "reactionVideos": [], @@ -13485,7 +13393,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 68, + "teamId": "502", "time": 9861109, "featuredRunMedia": null, "reactionVideos": [], @@ -13503,7 +13411,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 9865862, "featuredRunMedia": null, "reactionVideos": [], @@ -13521,7 +13429,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 69, + "teamId": "205", "time": 9888339, "featuredRunMedia": null, "reactionVideos": [], @@ -13539,7 +13447,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 9910457, "featuredRunMedia": null, "reactionVideos": [], @@ -13557,7 +13465,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 69, + "teamId": "205", "time": 9956337, "featuredRunMedia": null, "reactionVideos": [], @@ -13575,7 +13483,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 81, + "teamId": "210", "time": 10029264, "featuredRunMedia": null, "reactionVideos": [], @@ -13593,7 +13501,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 26, + "teamId": "109", "time": 10046180, "featuredRunMedia": null, "reactionVideos": [], @@ -13611,7 +13519,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 21, + "teamId": "515", "time": 10067703, "featuredRunMedia": null, "reactionVideos": [], @@ -13629,7 +13537,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 44, + "teamId": "101", "time": 10078801, "featuredRunMedia": null, "reactionVideos": [], @@ -13647,7 +13555,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 73, + "teamId": "707", "time": 10107672, "featuredRunMedia": null, "reactionVideos": [], @@ -13665,7 +13573,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "413", "time": 10107673, "featuredRunMedia": null, "reactionVideos": [], @@ -13683,7 +13591,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 10149948, "featuredRunMedia": null, "reactionVideos": [], @@ -13701,7 +13609,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 45, + "teamId": "110", "time": 10180410, "featuredRunMedia": null, "reactionVideos": [], @@ -13719,7 +13627,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 10185840, "featuredRunMedia": null, "reactionVideos": [], @@ -13737,7 +13645,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 2, + "teamId": "711", "time": 10227277, "featuredRunMedia": null, "reactionVideos": [], @@ -13755,7 +13663,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 10247930, "featuredRunMedia": null, "reactionVideos": [], @@ -13773,7 +13681,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 10250897, "featuredRunMedia": null, "reactionVideos": [], @@ -13791,7 +13699,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 10289352, "featuredRunMedia": null, "reactionVideos": [], @@ -13809,7 +13717,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 69, + "teamId": "205", "time": 10298664, "featuredRunMedia": null, "reactionVideos": [], @@ -13827,7 +13735,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 11, + "teamId": "304", "time": 10318719, "featuredRunMedia": null, "reactionVideos": [], @@ -13845,7 +13753,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 20, + "teamId": "217", "time": 10338210, "featuredRunMedia": null, "reactionVideos": [], @@ -13863,7 +13771,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 49, + "teamId": "407", "time": 10338244, "featuredRunMedia": null, "reactionVideos": [], @@ -13881,7 +13789,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 10349887, "featuredRunMedia": null, "reactionVideos": [], @@ -13899,7 +13807,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 10, + "teamId": "706", "time": 10351172, "featuredRunMedia": null, "reactionVideos": [], @@ -13917,7 +13825,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 10379900, "featuredRunMedia": null, "reactionVideos": [], @@ -13935,7 +13843,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 20, + "teamId": "217", "time": 10440557, "featuredRunMedia": null, "reactionVideos": [], @@ -13953,7 +13861,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 10, + "teamId": "706", "time": 10445924, "featuredRunMedia": null, "reactionVideos": [], @@ -13971,7 +13879,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 52, + "teamId": "421", "time": 10475544, "featuredRunMedia": null, "reactionVideos": [], @@ -13989,7 +13897,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 10482521, "featuredRunMedia": null, "reactionVideos": [], @@ -14007,7 +13915,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 53, + "teamId": "603", "time": 10495191, "featuredRunMedia": null, "reactionVideos": [], @@ -14025,7 +13933,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 45, + "teamId": "110", "time": 10509371, "featuredRunMedia": null, "reactionVideos": [], @@ -14043,7 +13951,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 10535927, "featuredRunMedia": null, "reactionVideos": [], @@ -14061,7 +13969,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 53, + "teamId": "603", "time": 10544749, "featuredRunMedia": null, "reactionVideos": [], @@ -14079,7 +13987,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 53, + "teamId": "603", "time": 10574498, "featuredRunMedia": null, "reactionVideos": [], @@ -14097,7 +14005,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 50, + "teamId": "410", "time": 10610280, "featuredRunMedia": null, "reactionVideos": [], @@ -14115,7 +14023,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 31, + "teamId": "403", "time": 10628216, "featuredRunMedia": null, "reactionVideos": [], @@ -14133,7 +14041,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 18, + "teamId": "416", "time": 10647293, "featuredRunMedia": null, "reactionVideos": [], @@ -14151,7 +14059,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 85, + "teamId": "607", "time": 10681402, "featuredRunMedia": null, "reactionVideos": [], @@ -14169,7 +14077,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 10683821, "featuredRunMedia": null, "reactionVideos": [], @@ -14187,7 +14095,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 53, + "teamId": "603", "time": 10707231, "featuredRunMedia": null, "reactionVideos": [], @@ -14205,7 +14113,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 10708435, "featuredRunMedia": null, "reactionVideos": [], @@ -14223,7 +14131,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 10719797, "featuredRunMedia": null, "reactionVideos": [], @@ -14241,7 +14149,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 10741043, "featuredRunMedia": null, "reactionVideos": [], @@ -14259,7 +14167,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 10748552, "featuredRunMedia": null, "reactionVideos": [], @@ -14277,7 +14185,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 10770016, "featuredRunMedia": null, "reactionVideos": [], @@ -14295,7 +14203,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "303", "time": 10810264, "featuredRunMedia": null, "reactionVideos": [], @@ -14313,7 +14221,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 45, + "teamId": "110", "time": 10818768, "featuredRunMedia": null, "reactionVideos": [], @@ -14331,7 +14239,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 10818773, "featuredRunMedia": null, "reactionVideos": [], @@ -14349,7 +14257,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 12, + "teamId": "207", "time": 10823299, "featuredRunMedia": null, "reactionVideos": [], @@ -14367,7 +14275,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 38, + "teamId": "710", "time": 10865083, "featuredRunMedia": null, "reactionVideos": [], @@ -14385,7 +14293,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "303", "time": 10865084, "featuredRunMedia": null, "reactionVideos": [], @@ -14403,7 +14311,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 7, + "teamId": "512", "time": 10867527, "featuredRunMedia": null, "reactionVideos": [], @@ -14421,7 +14329,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "503", "time": 10873250, "featuredRunMedia": null, "reactionVideos": [], @@ -14439,7 +14347,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 16, + "teamId": "203", "time": 10877070, "featuredRunMedia": null, "reactionVideos": [], @@ -14457,7 +14365,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 10903044, "featuredRunMedia": null, "reactionVideos": [], @@ -14475,7 +14383,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 19, + "teamId": "517", "time": 10957609, "featuredRunMedia": null, "reactionVideos": [], @@ -14493,7 +14401,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 10958929, "featuredRunMedia": null, "reactionVideos": [], @@ -14511,7 +14419,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 10986839, "featuredRunMedia": null, "reactionVideos": [], @@ -14529,7 +14437,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 28, + "teamId": "503", "time": 11035872, "featuredRunMedia": null, "reactionVideos": [], @@ -14547,7 +14455,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 11049646, "featuredRunMedia": null, "reactionVideos": [], @@ -14565,7 +14473,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 11054105, "featuredRunMedia": null, "reactionVideos": [], @@ -14583,7 +14491,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 67, + "teamId": "509", "time": 11090477, "featuredRunMedia": null, "reactionVideos": [], @@ -14601,7 +14509,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "604", "time": 11091828, "featuredRunMedia": null, "reactionVideos": [], @@ -14619,7 +14527,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "208", "time": 11096873, "featuredRunMedia": null, "reactionVideos": [], @@ -14637,7 +14545,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 11100848, "featuredRunMedia": null, "reactionVideos": [], @@ -14655,7 +14563,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 11105381, "featuredRunMedia": null, "reactionVideos": [], @@ -14673,7 +14581,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 11113706, "featuredRunMedia": null, "reactionVideos": [], @@ -14691,7 +14599,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 78, + "teamId": "701", "time": 11133900, "featuredRunMedia": null, "reactionVideos": [], @@ -14709,7 +14617,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 11134553, "featuredRunMedia": null, "reactionVideos": [], @@ -14727,7 +14635,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "604", "time": 11142111, "featuredRunMedia": null, "reactionVideos": [], @@ -14745,7 +14653,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 27, + "teamId": "704", "time": 11168775, "featuredRunMedia": null, "reactionVideos": [], @@ -14763,7 +14671,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 42, + "teamId": "504", "time": 11171391, "featuredRunMedia": null, "reactionVideos": [], @@ -14781,7 +14689,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "505", "time": 11194799, "featuredRunMedia": null, "reactionVideos": [], @@ -14799,7 +14707,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 72, + "teamId": "516", "time": 11201660, "featuredRunMedia": null, "reactionVideos": [], @@ -14817,7 +14725,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 37, + "teamId": "414", "time": 11205533, "featuredRunMedia": null, "reactionVideos": [], @@ -14835,7 +14743,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 45, + "teamId": "110", "time": 11217513, "featuredRunMedia": null, "reactionVideos": [], @@ -14853,7 +14761,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "713", "time": 11224225, "featuredRunMedia": null, "reactionVideos": [], @@ -14871,7 +14779,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 39, + "teamId": "501", "time": 11254354, "featuredRunMedia": null, "reactionVideos": [], @@ -14889,7 +14797,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 11262345, "featuredRunMedia": null, "reactionVideos": [], @@ -14907,7 +14815,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "505", "time": 11264512, "featuredRunMedia": null, "reactionVideos": [], @@ -14925,7 +14833,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 11265259, "featuredRunMedia": null, "reactionVideos": [], @@ -14943,7 +14851,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 74, + "teamId": "408", "time": 11265388, "featuredRunMedia": null, "reactionVideos": [], @@ -14961,7 +14869,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 22, + "teamId": "106", "time": 11276421, "featuredRunMedia": null, "reactionVideos": [], @@ -14979,7 +14887,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 65, + "teamId": "513", "time": 11285567, "featuredRunMedia": null, "reactionVideos": [], @@ -14997,7 +14905,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 74, + "teamId": "408", "time": 11303290, "featuredRunMedia": null, "reactionVideos": [], @@ -15015,7 +14923,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 11315598, "featuredRunMedia": null, "reactionVideos": [], @@ -15033,7 +14941,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 11347932, "featuredRunMedia": null, "reactionVideos": [], @@ -15051,7 +14959,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 11355988, "featuredRunMedia": null, "reactionVideos": [], @@ -15069,7 +14977,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 11386497, "featuredRunMedia": null, "reactionVideos": [], @@ -15087,7 +14995,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 69, + "teamId": "205", "time": 11389375, "featuredRunMedia": null, "reactionVideos": [], @@ -15105,7 +15013,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 58, + "teamId": "507", "time": 11422071, "featuredRunMedia": null, "reactionVideos": [], @@ -15123,7 +15031,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 42, + "teamId": "504", "time": 11438769, "featuredRunMedia": null, "reactionVideos": [], @@ -15141,7 +15049,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 70, + "teamId": "609", "time": 11484673, "featuredRunMedia": null, "reactionVideos": [], @@ -15159,7 +15067,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 72, + "teamId": "516", "time": 11545256, "featuredRunMedia": null, "reactionVideos": [], @@ -15177,7 +15085,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 39, + "teamId": "501", "time": 11546534, "featuredRunMedia": null, "reactionVideos": [], @@ -15195,7 +15103,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 11561735, "featuredRunMedia": null, "reactionVideos": [], @@ -15213,7 +15121,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 91, + "teamId": "211", "time": 11562560, "featuredRunMedia": null, "reactionVideos": [], @@ -15231,7 +15139,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 25, + "teamId": "419", "time": 11591314, "featuredRunMedia": null, "reactionVideos": [], @@ -15249,7 +15157,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 11591741, "featuredRunMedia": null, "reactionVideos": [], @@ -15267,7 +15175,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 91, + "teamId": "211", "time": 11611718, "featuredRunMedia": null, "reactionVideos": [], @@ -15285,7 +15193,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 26, + "teamId": "109", "time": 11678855, "featuredRunMedia": null, "reactionVideos": [], @@ -15303,7 +15211,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "607", "time": 11680064, "featuredRunMedia": null, "reactionVideos": [], @@ -15321,7 +15229,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 36, + "teamId": "406", "time": 11686562, "featuredRunMedia": null, "reactionVideos": [], @@ -15339,7 +15247,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 47, + "teamId": "510", "time": 11691067, "featuredRunMedia": null, "reactionVideos": [], @@ -15357,7 +15265,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 85, + "teamId": "607", "time": 11717418, "featuredRunMedia": null, "reactionVideos": [], @@ -15375,7 +15283,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 18, + "teamId": "416", "time": 11719789, "featuredRunMedia": null, "reactionVideos": [], @@ -15393,7 +15301,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 7, + "teamId": "512", "time": 11743534, "featuredRunMedia": null, "reactionVideos": [], @@ -15411,7 +15319,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 11762968, "featuredRunMedia": null, "reactionVideos": [], @@ -15429,7 +15337,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 11784580, "featuredRunMedia": null, "reactionVideos": [], @@ -15447,7 +15355,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 17, + "teamId": "401", "time": 11787588, "featuredRunMedia": null, "reactionVideos": [], @@ -15465,7 +15373,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 58, + "teamId": "507", "time": 11795270, "featuredRunMedia": null, "reactionVideos": [], @@ -15483,7 +15391,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 40, + "teamId": "702", "time": 11798621, "featuredRunMedia": null, "reactionVideos": [], @@ -15501,7 +15409,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 11816638, "featuredRunMedia": null, "reactionVideos": [], @@ -15519,7 +15427,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 11817925, "featuredRunMedia": null, "reactionVideos": [], @@ -15537,7 +15445,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "211", "time": 11821021, "featuredRunMedia": null, "reactionVideos": [], @@ -15555,7 +15463,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 11843879, "featuredRunMedia": null, "reactionVideos": [], @@ -15573,7 +15481,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 7, + "teamId": "512", "time": 11845883, "featuredRunMedia": null, "reactionVideos": [], @@ -15591,7 +15499,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 60, + "teamId": "218", "time": 11891700, "featuredRunMedia": null, "reactionVideos": [], @@ -15609,7 +15517,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "604", "time": 11898378, "featuredRunMedia": null, "reactionVideos": [], @@ -15627,7 +15535,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 25, + "teamId": "419", "time": 11915693, "featuredRunMedia": null, "reactionVideos": [], @@ -15645,7 +15553,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 11934612, "featuredRunMedia": null, "reactionVideos": [], @@ -15663,7 +15571,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 11937487, "featuredRunMedia": null, "reactionVideos": [], @@ -15681,7 +15589,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 29, + "teamId": "102", "time": 11949895, "featuredRunMedia": null, "reactionVideos": [], @@ -15699,7 +15607,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 65, + "teamId": "513", "time": 11952345, "featuredRunMedia": null, "reactionVideos": [], @@ -15717,7 +15625,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 55, + "teamId": "306", "time": 11952787, "featuredRunMedia": null, "reactionVideos": [], @@ -15735,7 +15643,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 12, + "teamId": "207", "time": 11962298, "featuredRunMedia": null, "reactionVideos": [], @@ -15753,7 +15661,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 11976623, "featuredRunMedia": null, "reactionVideos": [], @@ -15771,7 +15679,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 11984114, "featuredRunMedia": null, "reactionVideos": [], @@ -15789,7 +15697,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 12006775, "featuredRunMedia": null, "reactionVideos": [], @@ -15807,7 +15715,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 29, + "teamId": "102", "time": 12030653, "featuredRunMedia": null, "reactionVideos": [], @@ -15825,7 +15733,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 12052072, "featuredRunMedia": null, "reactionVideos": [], @@ -15843,7 +15751,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 41, + "teamId": "201", "time": 12067267, "featuredRunMedia": null, "reactionVideos": [], @@ -15861,7 +15769,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 40, + "teamId": "702", "time": 12084439, "featuredRunMedia": null, "reactionVideos": [], @@ -15879,7 +15787,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 91, + "teamId": "211", "time": 12085855, "featuredRunMedia": null, "reactionVideos": [], @@ -15897,7 +15805,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 22, + "teamId": "106", "time": 12105539, "featuredRunMedia": null, "reactionVideos": [], @@ -15915,7 +15823,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 12112308, "featuredRunMedia": null, "reactionVideos": [], @@ -15933,7 +15841,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 29, + "teamId": "102", "time": 12123568, "featuredRunMedia": null, "reactionVideos": [], @@ -15951,7 +15859,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 29, + "teamId": "102", "time": 12150881, "featuredRunMedia": null, "reactionVideos": [], @@ -15969,7 +15877,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 15, + "teamId": "411", "time": 12182421, "featuredRunMedia": null, "reactionVideos": [], @@ -15987,7 +15895,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 79, + "teamId": "415", "time": 12187460, "featuredRunMedia": null, "reactionVideos": [], @@ -16005,7 +15913,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 12194647, "featuredRunMedia": null, "reactionVideos": [], @@ -16023,7 +15931,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 47, + "teamId": "510", "time": 12229196, "featuredRunMedia": null, "reactionVideos": [], @@ -16041,7 +15949,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 42, + "teamId": "504", "time": 12231817, "featuredRunMedia": null, "reactionVideos": [], @@ -16059,7 +15967,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 12240890, "featuredRunMedia": null, "reactionVideos": [], @@ -16077,7 +15985,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 12264009, "featuredRunMedia": null, "reactionVideos": [], @@ -16095,7 +16003,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 12278507, "featuredRunMedia": null, "reactionVideos": [], @@ -16113,7 +16021,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 2, + "teamId": "711", "time": 12293805, "featuredRunMedia": null, "reactionVideos": [], @@ -16131,7 +16039,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "413", "time": 12372826, "featuredRunMedia": null, "reactionVideos": [], @@ -16149,7 +16057,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 12374007, "featuredRunMedia": null, "reactionVideos": [], @@ -16167,7 +16075,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 21, + "teamId": "515", "time": 12419483, "featuredRunMedia": null, "reactionVideos": [], @@ -16185,7 +16093,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 12433173, "featuredRunMedia": null, "reactionVideos": [], @@ -16203,7 +16111,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "713", "time": 12467209, "featuredRunMedia": null, "reactionVideos": [], @@ -16221,7 +16129,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 42, + "teamId": "504", "time": 12469536, "featuredRunMedia": null, "reactionVideos": [], @@ -16239,7 +16147,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 7, + "teamId": "512", "time": 12479443, "featuredRunMedia": null, "reactionVideos": [], @@ -16257,7 +16165,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 12480877, "featuredRunMedia": null, "reactionVideos": [], @@ -16275,7 +16183,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 12486853, "featuredRunMedia": null, "reactionVideos": [], @@ -16293,7 +16201,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 12494567, "featuredRunMedia": null, "reactionVideos": [], @@ -16311,7 +16219,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 25, + "teamId": "419", "time": 12507933, "featuredRunMedia": null, "reactionVideos": [], @@ -16329,7 +16237,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 12522227, "featuredRunMedia": null, "reactionVideos": [], @@ -16347,7 +16255,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 12527817, "featuredRunMedia": null, "reactionVideos": [], @@ -16365,7 +16273,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 12550470, "featuredRunMedia": null, "reactionVideos": [], @@ -16383,7 +16291,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 38, + "teamId": "710", "time": 12562990, "featuredRunMedia": null, "reactionVideos": [], @@ -16401,7 +16309,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 41, + "teamId": "201", "time": 12625648, "featuredRunMedia": null, "reactionVideos": [], @@ -16419,7 +16327,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 20, + "teamId": "217", "time": 12631813, "featuredRunMedia": null, "reactionVideos": [], @@ -16437,7 +16345,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "713", "time": 12658095, "featuredRunMedia": null, "reactionVideos": [], @@ -16455,7 +16363,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 12659558, "featuredRunMedia": null, "reactionVideos": [], @@ -16473,7 +16381,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 56, + "teamId": "708", "time": 12693321, "featuredRunMedia": null, "reactionVideos": [], @@ -16491,7 +16399,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 12752079, "featuredRunMedia": null, "reactionVideos": [], @@ -16509,7 +16417,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 12760239, "featuredRunMedia": null, "reactionVideos": [], @@ -16527,7 +16435,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 12770903, "featuredRunMedia": null, "reactionVideos": [], @@ -16545,7 +16453,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 11, + "teamId": "304", "time": 12781575, "featuredRunMedia": null, "reactionVideos": [], @@ -16563,7 +16471,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 12813900, "featuredRunMedia": null, "reactionVideos": [], @@ -16581,7 +16489,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 70, + "teamId": "609", "time": 12819362, "featuredRunMedia": null, "reactionVideos": [], @@ -16599,7 +16507,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 12839886, "featuredRunMedia": null, "reactionVideos": [], @@ -16617,7 +16525,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 12863761, "featuredRunMedia": null, "reactionVideos": [], @@ -16635,7 +16543,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 20, + "teamId": "217", "time": 12868916, "featuredRunMedia": null, "reactionVideos": [], @@ -16653,7 +16561,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 12910425, "featuredRunMedia": null, "reactionVideos": [], @@ -16671,7 +16579,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 50, + "teamId": "410", "time": 12914172, "featuredRunMedia": null, "reactionVideos": [], @@ -16689,7 +16597,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 12928651, "featuredRunMedia": null, "reactionVideos": [], @@ -16707,7 +16615,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 45, + "teamId": "110", "time": 12932830, "featuredRunMedia": null, "reactionVideos": [], @@ -16725,7 +16633,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 12951391, "featuredRunMedia": null, "reactionVideos": [], @@ -16743,7 +16651,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 30, + "teamId": "709", "time": 12954837, "featuredRunMedia": null, "reactionVideos": [], @@ -16761,7 +16669,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 85, + "teamId": "607", "time": 12956742, "featuredRunMedia": null, "reactionVideos": [], @@ -16779,7 +16687,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 90, + "teamId": "105", "time": 12959441, "featuredRunMedia": null, "reactionVideos": [], @@ -16797,7 +16705,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 12971278, "featuredRunMedia": null, "reactionVideos": [], @@ -16815,7 +16723,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 30, + "teamId": "709", "time": 13020456, "featuredRunMedia": null, "reactionVideos": [], @@ -16833,7 +16741,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 37, + "teamId": "414", "time": 13054180, "featuredRunMedia": null, "reactionVideos": [], @@ -16851,7 +16759,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 13074597, "featuredRunMedia": null, "reactionVideos": [], @@ -16869,7 +16777,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 13087673, "featuredRunMedia": null, "reactionVideos": [], @@ -16887,7 +16795,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "711", "time": 13116327, "featuredRunMedia": null, "reactionVideos": [], @@ -16905,7 +16813,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 45, + "teamId": "110", "time": 13180717, "featuredRunMedia": null, "reactionVideos": [], @@ -16923,7 +16831,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 48, + "teamId": "409", "time": 13216547, "featuredRunMedia": null, "reactionVideos": [], @@ -16941,7 +16849,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 59, + "teamId": "413", "time": 13245584, "featuredRunMedia": null, "reactionVideos": [], @@ -16959,7 +16867,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 38, + "teamId": "710", "time": 13286198, "featuredRunMedia": null, "reactionVideos": [], @@ -16977,7 +16885,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 19, + "teamId": "517", "time": 13296149, "featuredRunMedia": null, "reactionVideos": [], @@ -16995,7 +16903,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 13318078, "featuredRunMedia": null, "reactionVideos": [], @@ -17013,7 +16921,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 17, + "teamId": "401", "time": 13321782, "featuredRunMedia": null, "reactionVideos": [], @@ -17031,7 +16939,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 35, + "teamId": "206", "time": 13344226, "featuredRunMedia": null, "reactionVideos": [], @@ -17049,7 +16957,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 13352753, "featuredRunMedia": null, "reactionVideos": [], @@ -17067,7 +16975,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 13357130, "featuredRunMedia": null, "reactionVideos": [], @@ -17085,7 +16993,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 39, + "teamId": "501", "time": 13381265, "featuredRunMedia": null, "reactionVideos": [], @@ -17103,7 +17011,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 59, + "teamId": "413", "time": 13411373, "featuredRunMedia": null, "reactionVideos": [], @@ -17121,7 +17029,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 20, + "teamId": "217", "time": 13479815, "featuredRunMedia": null, "reactionVideos": [], @@ -17139,7 +17047,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 57, + "teamId": "522", "time": 13513371, "featuredRunMedia": null, "reactionVideos": [], @@ -17157,7 +17065,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 13591867, "featuredRunMedia": null, "reactionVideos": [], @@ -17175,7 +17083,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 17, + "teamId": "401", "time": 13597904, "featuredRunMedia": null, "reactionVideos": [], @@ -17193,7 +17101,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 13635809, "featuredRunMedia": null, "reactionVideos": [], @@ -17211,7 +17119,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 80, + "teamId": "302", "time": 13641651, "featuredRunMedia": null, "reactionVideos": [], @@ -17229,7 +17137,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 68, + "teamId": "502", "time": 13660740, "featuredRunMedia": null, "reactionVideos": [], @@ -17247,7 +17155,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 87, + "teamId": "519", "time": 13674118, "featuredRunMedia": null, "reactionVideos": [], @@ -17265,7 +17173,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 13719980, "featuredRunMedia": null, "reactionVideos": [], @@ -17283,7 +17191,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "208", "time": 13769566, "featuredRunMedia": null, "reactionVideos": [], @@ -17301,7 +17209,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "606", "time": 13807734, "featuredRunMedia": null, "reactionVideos": [], @@ -17319,7 +17227,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 13834319, "featuredRunMedia": null, "reactionVideos": [], @@ -17337,7 +17245,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 13886883, "featuredRunMedia": null, "reactionVideos": [], @@ -17355,7 +17263,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 72, + "teamId": "516", "time": 13914695, "featuredRunMedia": null, "reactionVideos": [], @@ -17373,7 +17281,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 27, + "teamId": "704", "time": 13928562, "featuredRunMedia": null, "reactionVideos": [], @@ -17391,7 +17299,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 13937379, "featuredRunMedia": null, "reactionVideos": [], @@ -17409,7 +17317,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 78, + "teamId": "701", "time": 13942748, "featuredRunMedia": null, "reactionVideos": [], @@ -17427,7 +17335,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 81, + "teamId": "210", "time": 13947814, "featuredRunMedia": null, "reactionVideos": [], @@ -17445,7 +17353,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 13954164, "featuredRunMedia": null, "reactionVideos": [], @@ -17463,7 +17371,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 13955660, "featuredRunMedia": null, "reactionVideos": [], @@ -17481,7 +17389,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 69, + "teamId": "205", "time": 13975597, "featuredRunMedia": null, "reactionVideos": [], @@ -17499,7 +17407,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 41, + "teamId": "201", "time": 14027485, "featuredRunMedia": null, "reactionVideos": [], @@ -17517,7 +17425,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 14031980, "featuredRunMedia": null, "reactionVideos": [], @@ -17535,7 +17443,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 69, + "teamId": "205", "time": 14034450, "featuredRunMedia": null, "reactionVideos": [], @@ -17553,7 +17461,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 14036882, "featuredRunMedia": null, "reactionVideos": [], @@ -17571,7 +17479,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 60, + "teamId": "218", "time": 14054236, "featuredRunMedia": null, "reactionVideos": [], @@ -17589,7 +17497,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 14072913, "featuredRunMedia": null, "reactionVideos": [], @@ -17607,7 +17515,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "606", "time": 14081042, "featuredRunMedia": null, "reactionVideos": [], @@ -17625,7 +17533,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 53, + "teamId": "603", "time": 14115521, "featuredRunMedia": null, "reactionVideos": [], @@ -17643,7 +17551,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 14126736, "featuredRunMedia": null, "reactionVideos": [], @@ -17661,7 +17569,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 14132051, "featuredRunMedia": null, "reactionVideos": [], @@ -17679,7 +17587,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 39, + "teamId": "501", "time": 14145543, "featuredRunMedia": null, "reactionVideos": [], @@ -17697,7 +17605,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 40, + "teamId": "702", "time": 14151428, "featuredRunMedia": null, "reactionVideos": [], @@ -17715,7 +17623,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 14157649, "featuredRunMedia": null, "reactionVideos": [], @@ -17733,7 +17641,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 69, + "teamId": "205", "time": 14185139, "featuredRunMedia": null, "reactionVideos": [], @@ -17751,7 +17659,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 14193713, "featuredRunMedia": null, "reactionVideos": [], @@ -17769,7 +17677,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 33, + "teamId": "213", "time": 14197147, "featuredRunMedia": null, "reactionVideos": [], @@ -17787,7 +17695,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 14206256, "featuredRunMedia": null, "reactionVideos": [], @@ -17805,7 +17713,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 14213034, "featuredRunMedia": null, "reactionVideos": [], @@ -17823,7 +17731,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 5, + "teamId": "422", "time": 14228231, "featuredRunMedia": null, "reactionVideos": [], @@ -17841,7 +17749,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 46, + "teamId": "107", "time": 14231769, "featuredRunMedia": null, "reactionVideos": [], @@ -17859,7 +17767,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 75, + "teamId": "219", "time": 14287928, "featuredRunMedia": null, "reactionVideos": [], @@ -17877,7 +17785,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 19, + "teamId": "517", "time": 14290848, "featuredRunMedia": null, "reactionVideos": [], @@ -17895,7 +17803,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 17, + "teamId": "401", "time": 14294247, "featuredRunMedia": null, "reactionVideos": [], @@ -17913,7 +17821,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 34, + "teamId": "610", "time": 14305427, "featuredRunMedia": null, "reactionVideos": [], @@ -17931,7 +17839,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 14315478, "featuredRunMedia": null, "reactionVideos": [], @@ -17949,7 +17857,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 17, + "teamId": "401", "time": 14320424, "featuredRunMedia": null, "reactionVideos": [], @@ -17967,7 +17875,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "505", "time": 14351527, "featuredRunMedia": null, "reactionVideos": [], @@ -17985,7 +17893,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "215", "time": 14367959, "featuredRunMedia": null, "reactionVideos": [], @@ -18003,7 +17911,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 14415271, "featuredRunMedia": null, "reactionVideos": [], @@ -18021,7 +17929,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 16, + "teamId": "203", "time": 14429219, "featuredRunMedia": null, "reactionVideos": [], @@ -18039,7 +17947,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 35, + "teamId": "206", "time": 14465477, "featuredRunMedia": null, "reactionVideos": [], @@ -18057,7 +17965,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 74, + "teamId": "408", "time": 14468241, "featuredRunMedia": null, "reactionVideos": [], @@ -18075,7 +17983,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 18, + "teamId": "416", "time": 14481354, "featuredRunMedia": null, "reactionVideos": [], @@ -18093,7 +18001,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 14484233, "featuredRunMedia": null, "reactionVideos": [], @@ -18111,7 +18019,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 74, + "teamId": "408", "time": 14509124, "featuredRunMedia": null, "reactionVideos": [], @@ -18129,7 +18037,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 14509455, "featuredRunMedia": null, "reactionVideos": [], @@ -18147,7 +18055,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 14523417, "featuredRunMedia": null, "reactionVideos": [], @@ -18165,7 +18073,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 14523562, "featuredRunMedia": null, "reactionVideos": [], @@ -18183,7 +18091,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 76, + "teamId": "518", "time": 14528148, "featuredRunMedia": null, "reactionVideos": [], @@ -18201,7 +18109,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 14531780, "featuredRunMedia": null, "reactionVideos": [], @@ -18219,7 +18127,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 55, + "teamId": "306", "time": 14539552, "featuredRunMedia": null, "reactionVideos": [], @@ -18237,7 +18145,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 60, + "teamId": "218", "time": 14541379, "featuredRunMedia": null, "reactionVideos": [], @@ -18255,7 +18163,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 76, + "teamId": "518", "time": 14555773, "featuredRunMedia": null, "reactionVideos": [], @@ -18273,7 +18181,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 14557352, "featuredRunMedia": null, "reactionVideos": [], @@ -18291,7 +18199,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 59, + "teamId": "413", "time": 14570333, "featuredRunMedia": null, "reactionVideos": [], @@ -18309,7 +18217,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 90, + "teamId": "105", "time": 14607641, "featuredRunMedia": null, "reactionVideos": [], @@ -18327,7 +18235,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 14623287, "featuredRunMedia": null, "reactionVideos": [], @@ -18345,7 +18253,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 25, + "teamId": "419", "time": 14694285, "featuredRunMedia": null, "reactionVideos": [], @@ -18363,7 +18271,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "606", "time": 14745398, "featuredRunMedia": null, "reactionVideos": [], @@ -18381,7 +18289,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 56, + "teamId": "708", "time": 14759576, "featuredRunMedia": null, "reactionVideos": [], @@ -18399,7 +18307,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 36, + "teamId": "406", "time": 14769744, "featuredRunMedia": null, "reactionVideos": [], @@ -18417,7 +18325,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 14828001, "featuredRunMedia": null, "reactionVideos": [], @@ -18435,7 +18343,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 14836236, "featuredRunMedia": null, "reactionVideos": [], @@ -18453,7 +18361,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 14841075, "featuredRunMedia": null, "reactionVideos": [], @@ -18471,7 +18379,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 84, + "teamId": "204", "time": 14841075, "featuredRunMedia": null, "reactionVideos": [], @@ -18489,7 +18397,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "208", "time": 14868596, "featuredRunMedia": null, "reactionVideos": [], @@ -18507,7 +18415,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 52, + "teamId": "421", "time": 14879270, "featuredRunMedia": null, "reactionVideos": [], @@ -18525,7 +18433,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 28, + "teamId": "503", "time": 14881868, "featuredRunMedia": null, "reactionVideos": [], @@ -18543,7 +18451,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 14895166, "featuredRunMedia": null, "reactionVideos": [], @@ -18561,7 +18469,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 10, + "teamId": "706", "time": 14896003, "featuredRunMedia": null, "reactionVideos": [], @@ -18579,7 +18487,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 14936998, "featuredRunMedia": null, "reactionVideos": [], @@ -18597,7 +18505,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 85, + "teamId": "607", "time": 14955959, "featuredRunMedia": null, "reactionVideos": [], @@ -18615,7 +18523,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 77, + "teamId": "208", "time": 14962211, "featuredRunMedia": null, "reactionVideos": [], @@ -18633,7 +18541,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 14970927, "featuredRunMedia": null, "reactionVideos": [], @@ -18651,7 +18559,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "606", "time": 14988740, "featuredRunMedia": null, "reactionVideos": [], @@ -18669,7 +18577,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 15007033, "featuredRunMedia": null, "reactionVideos": [], @@ -18687,7 +18595,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 32, + "teamId": "602", "time": 15026365, "featuredRunMedia": null, "reactionVideos": [], @@ -18705,7 +18613,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 15027921, "featuredRunMedia": null, "reactionVideos": [], @@ -18723,7 +18631,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 22, + "teamId": "106", "time": 15062276, "featuredRunMedia": null, "reactionVideos": [], @@ -18741,7 +18649,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 78, + "teamId": "701", "time": 15091170, "featuredRunMedia": null, "reactionVideos": [], @@ -18759,7 +18667,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 18, + "teamId": "416", "time": 15166902, "featuredRunMedia": null, "reactionVideos": [], @@ -18777,7 +18685,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 37, + "teamId": "414", "time": 15174644, "featuredRunMedia": null, "reactionVideos": [], @@ -18795,7 +18703,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 15208571, "featuredRunMedia": null, "reactionVideos": [], @@ -18813,7 +18721,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 23, + "teamId": "305", "time": 15239839, "featuredRunMedia": null, "reactionVideos": [], @@ -18831,7 +18739,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 13, + "teamId": "604", "time": 15243902, "featuredRunMedia": null, "reactionVideos": [], @@ -18849,7 +18757,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 62, + "teamId": "404", "time": 15246723, "featuredRunMedia": null, "reactionVideos": [], @@ -18867,7 +18775,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 59, + "teamId": "413", "time": 15268636, "featuredRunMedia": null, "reactionVideos": [], @@ -18885,7 +18793,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 61, + "teamId": "308", "time": 15278480, "featuredRunMedia": null, "reactionVideos": [], @@ -18903,7 +18811,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 28, + "teamId": "503", "time": 15291957, "featuredRunMedia": null, "reactionVideos": [], @@ -18921,7 +18829,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 15293216, "featuredRunMedia": null, "reactionVideos": [], @@ -18939,7 +18847,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 15304453, "featuredRunMedia": null, "reactionVideos": [], @@ -18957,7 +18865,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 28, + "teamId": "503", "time": 15377636, "featuredRunMedia": null, "reactionVideos": [], @@ -18975,7 +18883,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 33, + "teamId": "213", "time": 15389068, "featuredRunMedia": null, "reactionVideos": [], @@ -18993,7 +18901,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 76, + "teamId": "518", "time": 15403820, "featuredRunMedia": null, "reactionVideos": [], @@ -19011,7 +18919,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 75, + "teamId": "219", "time": 15420632, "featuredRunMedia": null, "reactionVideos": [], @@ -19029,7 +18937,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 81, + "teamId": "210", "time": 15425271, "featuredRunMedia": null, "reactionVideos": [], @@ -19047,7 +18955,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 15432033, "featuredRunMedia": null, "reactionVideos": [], @@ -19065,7 +18973,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 15438142, "featuredRunMedia": null, "reactionVideos": [], @@ -19083,7 +18991,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 22, + "teamId": "106", "time": 15477110, "featuredRunMedia": null, "reactionVideos": [], @@ -19101,7 +19009,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 15478339, "featuredRunMedia": null, "reactionVideos": [], @@ -19119,7 +19027,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 15510872, "featuredRunMedia": null, "reactionVideos": [], @@ -19137,7 +19045,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 15519351, "featuredRunMedia": null, "reactionVideos": [], @@ -19155,7 +19063,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 75, + "teamId": "219", "time": 15531251, "featuredRunMedia": null, "reactionVideos": [], @@ -19173,7 +19081,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 80, + "teamId": "302", "time": 15544789, "featuredRunMedia": null, "reactionVideos": [], @@ -19191,7 +19099,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "608", "time": 15548088, "featuredRunMedia": null, "reactionVideos": [], @@ -19209,7 +19117,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 15556021, "featuredRunMedia": null, "reactionVideos": [], @@ -19227,7 +19135,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "606", "time": 15574492, "featuredRunMedia": null, "reactionVideos": [], @@ -19245,7 +19153,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 15584759, "featuredRunMedia": null, "reactionVideos": [], @@ -19263,7 +19171,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 15607208, "featuredRunMedia": null, "reactionVideos": [], @@ -19281,7 +19189,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 15625026, "featuredRunMedia": null, "reactionVideos": [], @@ -19299,7 +19207,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 34, + "teamId": "610", "time": 15632820, "featuredRunMedia": null, "reactionVideos": [], @@ -19317,7 +19225,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 37, + "teamId": "414", "time": 15646132, "featuredRunMedia": null, "reactionVideos": [], @@ -19335,7 +19243,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 15666276, "featuredRunMedia": null, "reactionVideos": [], @@ -19353,7 +19261,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 15671815, "featuredRunMedia": null, "reactionVideos": [], @@ -19371,7 +19279,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 15710470, "featuredRunMedia": null, "reactionVideos": [], @@ -19389,7 +19297,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 15713470, "featuredRunMedia": null, "reactionVideos": [], @@ -19407,7 +19315,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 33, + "teamId": "213", "time": 15728633, "featuredRunMedia": null, "reactionVideos": [], @@ -19425,7 +19333,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 15731561, "featuredRunMedia": null, "reactionVideos": [], @@ -19443,7 +19351,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 19, + "teamId": "517", "time": 15743484, "featuredRunMedia": null, "reactionVideos": [], @@ -19461,7 +19369,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "711", "time": 15750679, "featuredRunMedia": null, "reactionVideos": [], @@ -19479,7 +19387,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 70, + "teamId": "609", "time": 15764524, "featuredRunMedia": null, "reactionVideos": [], @@ -19497,7 +19405,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 15778372, "featuredRunMedia": null, "reactionVideos": [], @@ -19515,7 +19423,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 15789950, "featuredRunMedia": null, "reactionVideos": [], @@ -19533,7 +19441,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 15839668, "featuredRunMedia": null, "reactionVideos": [], @@ -19551,7 +19459,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 23, + "teamId": "305", "time": 15846826, "featuredRunMedia": null, "reactionVideos": [], @@ -19569,7 +19477,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 34, + "teamId": "610", "time": 15873890, "featuredRunMedia": null, "reactionVideos": [], @@ -19587,7 +19495,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 6, + "teamId": "220", "time": 15884994, "featuredRunMedia": null, "reactionVideos": [], @@ -19605,7 +19513,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 55, + "teamId": "306", "time": 15908499, "featuredRunMedia": null, "reactionVideos": [], @@ -19623,7 +19531,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 15917537, "featuredRunMedia": null, "reactionVideos": [], @@ -19641,7 +19549,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 15918115, "featuredRunMedia": null, "reactionVideos": [], @@ -19659,7 +19567,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 15949756, "featuredRunMedia": null, "reactionVideos": [], @@ -19677,7 +19585,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 15955993, "featuredRunMedia": null, "reactionVideos": [], @@ -19695,7 +19603,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 15962248, "featuredRunMedia": null, "reactionVideos": [], @@ -19713,7 +19621,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 15967092, "featuredRunMedia": null, "reactionVideos": [], @@ -19731,7 +19639,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "608", "time": 16024387, "featuredRunMedia": null, "reactionVideos": [], @@ -19749,7 +19657,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 16035150, "featuredRunMedia": null, "reactionVideos": [], @@ -19767,7 +19675,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 28, + "teamId": "503", "time": 16048740, "featuredRunMedia": null, "reactionVideos": [], @@ -19785,7 +19693,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 86, + "teamId": "705", "time": 16066408, "featuredRunMedia": null, "reactionVideos": [], @@ -19803,7 +19711,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "303", "time": 16070086, "featuredRunMedia": null, "reactionVideos": [], @@ -19821,7 +19729,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 22, + "teamId": "106", "time": 16097616, "featuredRunMedia": null, "reactionVideos": [], @@ -19839,7 +19747,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 16123880, "featuredRunMedia": null, "reactionVideos": [], @@ -19857,7 +19765,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "522", "time": 16137442, "featuredRunMedia": null, "reactionVideos": [], @@ -19875,7 +19783,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 81, + "teamId": "210", "time": 16142084, "featuredRunMedia": null, "reactionVideos": [], @@ -19893,7 +19801,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 16186019, "featuredRunMedia": null, "reactionVideos": [], @@ -19911,7 +19819,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 75, + "teamId": "219", "time": 16213611, "featuredRunMedia": null, "reactionVideos": [], @@ -19929,7 +19837,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 41, + "teamId": "201", "time": 16213946, "featuredRunMedia": null, "reactionVideos": [], @@ -19947,7 +19855,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 16228930, "featuredRunMedia": null, "reactionVideos": [], @@ -19965,7 +19873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 90, + "teamId": "105", "time": 16278245, "featuredRunMedia": null, "reactionVideos": [], @@ -19983,7 +19891,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 16280208, "featuredRunMedia": null, "reactionVideos": [], @@ -20001,7 +19909,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 16282139, "featuredRunMedia": null, "reactionVideos": [], @@ -20019,7 +19927,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 56, + "teamId": "708", "time": 16284981, "featuredRunMedia": null, "reactionVideos": [], @@ -20037,7 +19945,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 82, + "teamId": "506", "time": 16305692, "featuredRunMedia": null, "reactionVideos": [], @@ -20055,7 +19963,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 70, + "teamId": "609", "time": 16360717, "featuredRunMedia": null, "reactionVideos": [], @@ -20073,7 +19981,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 66, + "teamId": "209", "time": 16376104, "featuredRunMedia": null, "reactionVideos": [], @@ -20091,7 +19999,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 16382324, "featuredRunMedia": null, "reactionVideos": [], @@ -20109,7 +20017,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 41, + "teamId": "201", "time": 16384523, "featuredRunMedia": null, "reactionVideos": [], @@ -20127,7 +20035,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 84, + "teamId": "204", "time": 16390816, "featuredRunMedia": null, "reactionVideos": [], @@ -20145,7 +20053,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 74, + "teamId": "408", "time": 16395328, "featuredRunMedia": null, "reactionVideos": [], @@ -20163,7 +20071,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 66, + "teamId": "209", "time": 16403915, "featuredRunMedia": null, "reactionVideos": [], @@ -20181,7 +20089,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 63, + "teamId": "418", "time": 16423664, "featuredRunMedia": null, "reactionVideos": [], @@ -20199,7 +20107,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 16424190, "featuredRunMedia": null, "reactionVideos": [], @@ -20217,7 +20125,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 16431047, "featuredRunMedia": null, "reactionVideos": [], @@ -20235,7 +20143,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 16444484, "featuredRunMedia": null, "reactionVideos": [], @@ -20253,7 +20161,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "606", "time": 16445702, "featuredRunMedia": null, "reactionVideos": [], @@ -20271,7 +20179,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 5, + "teamId": "422", "time": 16495316, "featuredRunMedia": null, "reactionVideos": [], @@ -20289,7 +20197,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "303", "time": 16498545, "featuredRunMedia": null, "reactionVideos": [], @@ -20307,7 +20215,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 76, + "teamId": "518", "time": 16508923, "featuredRunMedia": null, "reactionVideos": [], @@ -20325,7 +20233,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 88, + "teamId": "520", "time": 16510583, "featuredRunMedia": null, "reactionVideos": [], @@ -20343,7 +20251,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 16520488, "featuredRunMedia": null, "reactionVideos": [], @@ -20361,7 +20269,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 20, + "teamId": "217", "time": 16520881, "featuredRunMedia": null, "reactionVideos": [], @@ -20379,7 +20287,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 16528448, "featuredRunMedia": null, "reactionVideos": [], @@ -20397,7 +20305,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 16531043, "featuredRunMedia": null, "reactionVideos": [], @@ -20415,7 +20323,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 7, + "teamId": "512", "time": 16537118, "featuredRunMedia": null, "reactionVideos": [], @@ -20433,7 +20341,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 16624469, "featuredRunMedia": null, "reactionVideos": [], @@ -20451,7 +20359,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 16649501, "featuredRunMedia": null, "reactionVideos": [], @@ -20469,7 +20377,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 54, + "teamId": "423", "time": 16655627, "featuredRunMedia": null, "reactionVideos": [], @@ -20487,7 +20395,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 16665275, "featuredRunMedia": null, "reactionVideos": [], @@ -20505,7 +20413,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 22, + "teamId": "106", "time": 16699176, "featuredRunMedia": null, "reactionVideos": [], @@ -20523,7 +20431,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 16705761, "featuredRunMedia": null, "reactionVideos": [], @@ -20541,7 +20449,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 44, + "teamId": "101", "time": 16726161, "featuredRunMedia": null, "reactionVideos": [], @@ -20559,7 +20467,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 16728481, "featuredRunMedia": null, "reactionVideos": [], @@ -20577,7 +20485,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 16735214, "featuredRunMedia": null, "reactionVideos": [], @@ -20595,7 +20503,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 16756378, "featuredRunMedia": null, "reactionVideos": [], @@ -20613,7 +20521,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 16756844, "featuredRunMedia": null, "reactionVideos": [], @@ -20631,7 +20539,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 17, + "teamId": "401", "time": 16758489, "featuredRunMedia": null, "reactionVideos": [], @@ -20649,7 +20557,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 38, + "teamId": "710", "time": 16781425, "featuredRunMedia": null, "reactionVideos": [], @@ -20667,7 +20575,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 66, + "teamId": "209", "time": 16795412, "featuredRunMedia": null, "reactionVideos": [], @@ -20685,7 +20593,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 84, + "teamId": "204", "time": 16795412, "featuredRunMedia": null, "reactionVideos": [], @@ -20703,7 +20611,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 16813829, "featuredRunMedia": null, "reactionVideos": [], @@ -20721,7 +20629,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 17, + "teamId": "401", "time": 16815125, "featuredRunMedia": null, "reactionVideos": [], @@ -20739,7 +20647,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 78, + "teamId": "701", "time": 16822953, "featuredRunMedia": null, "reactionVideos": [], @@ -20757,7 +20665,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 38, + "teamId": "710", "time": 16847585, "featuredRunMedia": null, "reactionVideos": [], @@ -20775,7 +20683,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 46, + "teamId": "107", "time": 16870091, "featuredRunMedia": null, "reactionVideos": [], @@ -20793,7 +20701,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "606", "time": 16871640, "featuredRunMedia": null, "reactionVideos": [], @@ -20811,7 +20719,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 16883961, "featuredRunMedia": null, "reactionVideos": [], @@ -20829,7 +20737,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 16885248, "featuredRunMedia": null, "reactionVideos": [], @@ -20847,7 +20755,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 16896517, "featuredRunMedia": null, "reactionVideos": [], @@ -20865,7 +20773,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 9, + "teamId": "606", "time": 16904705, "featuredRunMedia": null, "reactionVideos": [], @@ -20883,7 +20791,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 92, + "teamId": "508", "time": 16913888, "featuredRunMedia": null, "reactionVideos": [], @@ -20901,7 +20809,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "215", "time": 16923970, "featuredRunMedia": null, "reactionVideos": [], @@ -20919,7 +20827,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 90, + "teamId": "105", "time": 16959157, "featuredRunMedia": null, "reactionVideos": [], @@ -20937,7 +20845,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 80, + "teamId": "302", "time": 16960605, "featuredRunMedia": null, "reactionVideos": [], @@ -20955,7 +20863,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 54, + "teamId": "423", "time": 16980432, "featuredRunMedia": null, "reactionVideos": [], @@ -20973,7 +20881,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 17007230, "featuredRunMedia": null, "reactionVideos": [], @@ -20991,7 +20899,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 81, + "teamId": "210", "time": 17036437, "featuredRunMedia": null, "reactionVideos": [], @@ -21009,7 +20917,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 17043960, "featuredRunMedia": null, "reactionVideos": [], @@ -21027,7 +20935,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 17052297, "featuredRunMedia": null, "reactionVideos": [], @@ -21045,7 +20953,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17071668, "featuredRunMedia": null, "reactionVideos": [], @@ -21063,7 +20971,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 89, + "teamId": "103", "time": 17094438, "featuredRunMedia": null, "reactionVideos": [], @@ -21081,7 +20989,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 51, + "teamId": "301", "time": 17099060, "featuredRunMedia": null, "reactionVideos": [], @@ -21099,7 +21007,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17115981, "featuredRunMedia": null, "reactionVideos": [], @@ -21117,7 +21025,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 38, + "teamId": "710", "time": 17118400, "featuredRunMedia": null, "reactionVideos": [], @@ -21135,7 +21043,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 43, + "teamId": "212", "time": 17130255, "featuredRunMedia": null, "reactionVideos": [], @@ -21153,7 +21061,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 13, + "teamId": "604", "time": 17133442, "featuredRunMedia": null, "reactionVideos": [], @@ -21171,7 +21079,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "420", "time": 17151985, "featuredRunMedia": null, "reactionVideos": [], @@ -21189,7 +21097,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17167572, "featuredRunMedia": null, "reactionVideos": [], @@ -21207,7 +21115,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 7, + "teamId": "512", "time": 17167985, "featuredRunMedia": null, "reactionVideos": [], @@ -21225,7 +21133,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 17174046, "featuredRunMedia": null, "reactionVideos": [], @@ -21243,7 +21151,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17237803, "featuredRunMedia": null, "reactionVideos": [], @@ -21261,7 +21169,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 17241843, "featuredRunMedia": null, "reactionVideos": [], @@ -21279,7 +21187,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 46, + "teamId": "107", "time": 17251361, "featuredRunMedia": null, "reactionVideos": [], @@ -21297,7 +21205,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17263168, "featuredRunMedia": null, "reactionVideos": [], @@ -21315,7 +21223,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 17264318, "featuredRunMedia": null, "reactionVideos": [], @@ -21333,7 +21241,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 17279912, "featuredRunMedia": null, "reactionVideos": [], @@ -21351,7 +21259,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 16, + "teamId": "203", "time": 17282830, "featuredRunMedia": null, "reactionVideos": [], @@ -21369,7 +21277,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17318994, "featuredRunMedia": null, "reactionVideos": [], @@ -21387,7 +21295,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 38, + "teamId": "710", "time": 17325384, "featuredRunMedia": null, "reactionVideos": [], @@ -21405,7 +21313,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 17329604, "featuredRunMedia": null, "reactionVideos": [], @@ -21423,7 +21331,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17336162, "featuredRunMedia": null, "reactionVideos": [], @@ -21441,7 +21349,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 67, + "teamId": "509", "time": 17339144, "featuredRunMedia": null, "reactionVideos": [], @@ -21459,7 +21367,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 6, + "teamId": "220", "time": 17363934, "featuredRunMedia": null, "reactionVideos": [], @@ -21477,7 +21385,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 79, + "teamId": "415", "time": 17371854, "featuredRunMedia": null, "reactionVideos": [], @@ -21495,7 +21403,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 17375249, "featuredRunMedia": null, "reactionVideos": [], @@ -21513,7 +21421,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 17380044, "featuredRunMedia": null, "reactionVideos": [], @@ -21531,7 +21439,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "608", "time": 17382058, "featuredRunMedia": null, "reactionVideos": [], @@ -21549,7 +21457,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17425120, "featuredRunMedia": null, "reactionVideos": [], @@ -21567,7 +21475,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 39, + "teamId": "501", "time": 17431088, "featuredRunMedia": null, "reactionVideos": [], @@ -21585,7 +21493,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 11, + "teamId": "304", "time": 17436462, "featuredRunMedia": null, "reactionVideos": [], @@ -21603,7 +21511,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17437603, "featuredRunMedia": null, "reactionVideos": [], @@ -21621,7 +21529,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 17458987, "featuredRunMedia": null, "reactionVideos": [], @@ -21639,7 +21547,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17490672, "featuredRunMedia": null, "reactionVideos": [], @@ -21657,7 +21565,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 17491402, "featuredRunMedia": null, "reactionVideos": [], @@ -21675,7 +21583,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 17517268, "featuredRunMedia": null, "reactionVideos": [], @@ -21693,7 +21601,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17517287, "featuredRunMedia": null, "reactionVideos": [], @@ -21711,7 +21619,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "215", "time": 17534983, "featuredRunMedia": null, "reactionVideos": [], @@ -21729,7 +21637,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 21, + "teamId": "515", "time": 17534984, "featuredRunMedia": null, "reactionVideos": [], @@ -21747,7 +21655,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 24, + "teamId": "608", "time": 17537385, "featuredRunMedia": null, "reactionVideos": [], @@ -21765,7 +21673,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17545931, "featuredRunMedia": null, "reactionVideos": [], @@ -21783,7 +21691,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 17553538, "featuredRunMedia": null, "reactionVideos": [], @@ -21801,7 +21709,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 53, + "teamId": "603", "time": 17566787, "featuredRunMedia": null, "reactionVideos": [], @@ -21819,7 +21727,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "303", "time": 17584650, "featuredRunMedia": null, "reactionVideos": [], @@ -21837,7 +21745,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17590292, "featuredRunMedia": null, "reactionVideos": [], @@ -21855,7 +21763,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 24, + "teamId": "608", "time": 17595691, "featuredRunMedia": null, "reactionVideos": [], @@ -21873,7 +21781,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 17597620, "featuredRunMedia": null, "reactionVideos": [], @@ -21891,7 +21799,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 80, + "teamId": "302", "time": 17604767, "featuredRunMedia": null, "reactionVideos": [], @@ -21909,7 +21817,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17608527, "featuredRunMedia": null, "reactionVideos": [], @@ -21927,7 +21835,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "420", "time": 17622161, "featuredRunMedia": null, "reactionVideos": [], @@ -21945,7 +21853,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 17632378, "featuredRunMedia": null, "reactionVideos": [], @@ -21963,7 +21871,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 17633465, "featuredRunMedia": null, "reactionVideos": [], @@ -21981,7 +21889,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 17638950, "featuredRunMedia": null, "reactionVideos": [], @@ -21999,7 +21907,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 51, + "teamId": "301", "time": 17640149, "featuredRunMedia": null, "reactionVideos": [], @@ -22017,7 +21925,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "420", "time": 17641379, "featuredRunMedia": null, "reactionVideos": [], @@ -22035,7 +21943,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17660519, "featuredRunMedia": null, "reactionVideos": [], @@ -22053,7 +21961,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 17667985, "featuredRunMedia": null, "reactionVideos": [], @@ -22071,7 +21979,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 9, + "teamId": "606", "time": 17668765, "featuredRunMedia": null, "reactionVideos": [], @@ -22089,7 +21997,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17672567, "featuredRunMedia": null, "reactionVideos": [], @@ -22107,7 +22015,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17678677, "featuredRunMedia": null, "reactionVideos": [], @@ -22125,7 +22033,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 79, + "teamId": "415", "time": 17696496, "featuredRunMedia": null, "reactionVideos": [], @@ -22143,7 +22051,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 61, + "teamId": "308", "time": 17697336, "featuredRunMedia": null, "reactionVideos": [], @@ -22161,7 +22069,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 47, + "teamId": "510", "time": 17703670, "featuredRunMedia": null, "reactionVideos": [], @@ -22179,7 +22087,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 9, + "teamId": "606", "time": 17714236, "featuredRunMedia": null, "reactionVideos": [], @@ -22197,7 +22105,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17720294, "featuredRunMedia": null, "reactionVideos": [], @@ -22215,7 +22123,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 17722712, "featuredRunMedia": null, "reactionVideos": [], @@ -22233,7 +22141,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17724568, "featuredRunMedia": null, "reactionVideos": [], @@ -22251,7 +22159,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 32, + "teamId": "602", "time": 17725929, "featuredRunMedia": null, "reactionVideos": [], @@ -22269,7 +22177,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 17732638, "featuredRunMedia": null, "reactionVideos": [], @@ -22287,7 +22195,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 43, + "teamId": "212", "time": 17733469, "featuredRunMedia": null, "reactionVideos": [], @@ -22305,7 +22213,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 17735969, "featuredRunMedia": null, "reactionVideos": [], @@ -22323,7 +22231,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17737825, "featuredRunMedia": null, "reactionVideos": [], @@ -22341,7 +22249,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 27, + "teamId": "704", "time": 17745522, "featuredRunMedia": null, "reactionVideos": [], @@ -22359,7 +22267,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 47, + "teamId": "510", "time": 17756872, "featuredRunMedia": null, "reactionVideos": [], @@ -22377,7 +22285,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17759851, "featuredRunMedia": null, "reactionVideos": [], @@ -22395,7 +22303,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17764325, "featuredRunMedia": null, "reactionVideos": [], @@ -22413,7 +22321,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 32, + "teamId": "602", "time": 17765529, "featuredRunMedia": null, "reactionVideos": [], @@ -22431,7 +22339,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "420", "time": 17769560, "featuredRunMedia": null, "reactionVideos": [], @@ -22449,7 +22357,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "215", "time": 17770875, "featuredRunMedia": null, "reactionVideos": [], @@ -22467,7 +22375,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17772188, "featuredRunMedia": null, "reactionVideos": [], @@ -22485,7 +22393,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "505", "time": 17779846, "featuredRunMedia": null, "reactionVideos": [], @@ -22503,7 +22411,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 50, + "teamId": "410", "time": 17782820, "featuredRunMedia": null, "reactionVideos": [], @@ -22521,7 +22429,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 17785267, "featuredRunMedia": null, "reactionVideos": [], @@ -22539,7 +22447,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 46, + "teamId": "107", "time": 17788361, "featuredRunMedia": null, "reactionVideos": [], @@ -22557,7 +22465,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 17788739, "featuredRunMedia": null, "reactionVideos": [], @@ -22575,7 +22483,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 55, + "teamId": "306", "time": 17797822, "featuredRunMedia": null, "reactionVideos": [], @@ -22593,7 +22501,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 61, + "teamId": "308", "time": 17797963, "featuredRunMedia": null, "reactionVideos": [], @@ -22611,7 +22519,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17800362, "featuredRunMedia": null, "reactionVideos": [], @@ -22629,7 +22537,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17807070, "featuredRunMedia": null, "reactionVideos": [], @@ -22647,7 +22555,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 57, + "teamId": "522", "time": 17809623, "featuredRunMedia": null, "reactionVideos": [], @@ -22665,7 +22573,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 25, + "teamId": "419", "time": 17815214, "featuredRunMedia": null, "reactionVideos": [], @@ -22683,7 +22591,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 72, + "teamId": "516", "time": 17816475, "featuredRunMedia": null, "reactionVideos": [], @@ -22701,7 +22609,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17825426, "featuredRunMedia": null, "reactionVideos": [], @@ -22719,7 +22627,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17831748, "featuredRunMedia": null, "reactionVideos": [], @@ -22737,7 +22645,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 33, + "teamId": "213", "time": 17834646, "featuredRunMedia": null, "reactionVideos": [], @@ -22755,7 +22663,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 25, + "teamId": "419", "time": 17840839, "featuredRunMedia": null, "reactionVideos": [], @@ -22773,7 +22681,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17842153, "featuredRunMedia": null, "reactionVideos": [], @@ -22791,7 +22699,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 16, + "teamId": "203", "time": 17843354, "featuredRunMedia": null, "reactionVideos": [], @@ -22809,7 +22717,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 17844561, "featuredRunMedia": null, "reactionVideos": [], @@ -22827,7 +22735,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 8, + "teamId": "420", "time": 17846087, "featuredRunMedia": null, "reactionVideos": [], @@ -22845,7 +22753,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 77, + "teamId": "208", "time": 17849440, "featuredRunMedia": null, "reactionVideos": [], @@ -22863,7 +22771,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17852238, "featuredRunMedia": null, "reactionVideos": [], @@ -22881,7 +22789,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17853154, "featuredRunMedia": null, "reactionVideos": [], @@ -22899,7 +22807,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 56, + "teamId": "708", "time": 17858806, "featuredRunMedia": null, "reactionVideos": [], @@ -22917,7 +22825,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17859337, "featuredRunMedia": null, "reactionVideos": [], @@ -22935,7 +22843,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17866239, "featuredRunMedia": null, "reactionVideos": [], @@ -22953,7 +22861,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17866265, "featuredRunMedia": null, "reactionVideos": [], @@ -22971,7 +22879,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17866873, "featuredRunMedia": null, "reactionVideos": [], @@ -22989,7 +22897,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 80, + "teamId": "302", "time": 17870917, "featuredRunMedia": null, "reactionVideos": [], @@ -23007,7 +22915,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 66, + "teamId": "209", "time": 17873566, "featuredRunMedia": null, "reactionVideos": [], @@ -23025,7 +22933,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 25, + "teamId": "419", "time": 17882048, "featuredRunMedia": null, "reactionVideos": [], @@ -23043,7 +22951,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17882048, "featuredRunMedia": null, "reactionVideos": [], @@ -23061,7 +22969,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 88, + "teamId": "520", "time": 17885615, "featuredRunMedia": null, "reactionVideos": [], @@ -23079,7 +22987,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 87, + "teamId": "519", "time": 17886058, "featuredRunMedia": null, "reactionVideos": [], @@ -23097,7 +23005,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 23, + "teamId": "305", "time": 17887010, "featuredRunMedia": null, "reactionVideos": [], @@ -23115,7 +23023,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17887152, "featuredRunMedia": null, "reactionVideos": [], @@ -23133,7 +23041,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17891713, "featuredRunMedia": null, "reactionVideos": [], @@ -23151,7 +23059,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 87, + "teamId": "519", "time": 17893570, "featuredRunMedia": null, "reactionVideos": [], @@ -23169,7 +23077,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 67, + "teamId": "509", "time": 17893889, "featuredRunMedia": null, "reactionVideos": [], @@ -23187,7 +23095,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17894312, "featuredRunMedia": null, "reactionVideos": [], @@ -23205,7 +23113,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 17896927, "featuredRunMedia": null, "reactionVideos": [], @@ -23223,7 +23131,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 17900785, "featuredRunMedia": null, "reactionVideos": [], @@ -23241,7 +23149,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 91, + "teamId": "211", "time": 17903760, "featuredRunMedia": null, "reactionVideos": [], @@ -23259,7 +23167,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 23, + "teamId": "305", "time": 17908659, "featuredRunMedia": null, "reactionVideos": [], @@ -23277,7 +23185,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 17908685, "featuredRunMedia": null, "reactionVideos": [], @@ -23295,7 +23203,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 27, + "teamId": "704", "time": 17909983, "featuredRunMedia": null, "reactionVideos": [], @@ -23313,7 +23221,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17912496, "featuredRunMedia": null, "reactionVideos": [], @@ -23331,7 +23239,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 92, + "teamId": "508", "time": 17913728, "featuredRunMedia": null, "reactionVideos": [], @@ -23349,7 +23257,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 61, + "teamId": "308", "time": 17914914, "featuredRunMedia": null, "reactionVideos": [], @@ -23367,7 +23275,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 17919300, "featuredRunMedia": null, "reactionVideos": [], @@ -23385,7 +23293,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17923950, "featuredRunMedia": null, "reactionVideos": [], @@ -23403,7 +23311,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "303", "time": 17925072, "featuredRunMedia": null, "reactionVideos": [], @@ -23421,7 +23329,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 56, + "teamId": "708", "time": 17931498, "featuredRunMedia": null, "reactionVideos": [], @@ -23439,7 +23347,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 81, + "teamId": "210", "time": 17935763, "featuredRunMedia": null, "reactionVideos": [], @@ -23457,7 +23365,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 75, + "teamId": "219", "time": 17937543, "featuredRunMedia": null, "reactionVideos": [], @@ -23475,7 +23383,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 47, + "teamId": "510", "time": 17937969, "featuredRunMedia": null, "reactionVideos": [], @@ -23493,7 +23401,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 45, + "teamId": "110", "time": 17938185, "featuredRunMedia": null, "reactionVideos": [], @@ -23511,7 +23419,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "512", "time": 17938305, "featuredRunMedia": null, "reactionVideos": [], @@ -23529,7 +23437,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17939825, "featuredRunMedia": null, "reactionVideos": [], @@ -23547,7 +23455,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 34, + "teamId": "610", "time": 17942624, "featuredRunMedia": null, "reactionVideos": [], @@ -23565,7 +23473,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17945195, "featuredRunMedia": null, "reactionVideos": [], @@ -23583,7 +23491,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 35, + "teamId": "206", "time": 17947685, "featuredRunMedia": null, "reactionVideos": [], @@ -23601,7 +23509,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17948874, "featuredRunMedia": null, "reactionVideos": [], @@ -23619,7 +23527,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17952670, "featuredRunMedia": null, "reactionVideos": [], @@ -23637,7 +23545,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 20, + "teamId": "217", "time": 17955075, "featuredRunMedia": null, "reactionVideos": [], @@ -23655,7 +23563,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 5, + "teamId": "422", "time": 17957342, "featuredRunMedia": null, "reactionVideos": [], @@ -23673,7 +23581,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 16, + "teamId": "203", "time": 17958153, "featuredRunMedia": null, "reactionVideos": [], @@ -23691,7 +23599,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17958198, "featuredRunMedia": null, "reactionVideos": [], @@ -23709,7 +23617,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 15, + "teamId": "411", "time": 17959587, "featuredRunMedia": null, "reactionVideos": [], @@ -23727,7 +23635,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "711", "time": 17961429, "featuredRunMedia": null, "reactionVideos": [], @@ -23745,7 +23653,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 22, + "teamId": "106", "time": 17964927, "featuredRunMedia": null, "reactionVideos": [], @@ -23763,7 +23671,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17966211, "featuredRunMedia": null, "reactionVideos": [], @@ -23781,7 +23689,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 73, + "teamId": "707", "time": 17968489, "featuredRunMedia": null, "reactionVideos": [], @@ -23799,7 +23707,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 47, + "teamId": "510", "time": 17968562, "featuredRunMedia": null, "reactionVideos": [], @@ -23817,7 +23725,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17970765, "featuredRunMedia": null, "reactionVideos": [], @@ -23835,7 +23743,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 76, + "teamId": "518", "time": 17973504, "featuredRunMedia": null, "reactionVideos": [], @@ -23853,7 +23761,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 22, + "teamId": "106", "time": 17977932, "featuredRunMedia": null, "reactionVideos": [], @@ -23871,7 +23779,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 53, + "teamId": "603", "time": 17977933, "featuredRunMedia": null, "reactionVideos": [], @@ -23889,7 +23797,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 16, + "teamId": "203", "time": 17979810, "featuredRunMedia": null, "reactionVideos": [], @@ -23907,7 +23815,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17979851, "featuredRunMedia": null, "reactionVideos": [], @@ -23925,7 +23833,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 4, + "teamId": "505", "time": 17982528, "featuredRunMedia": null, "reactionVideos": [], @@ -23943,7 +23851,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "711", "time": 17983788, "featuredRunMedia": null, "reactionVideos": [], @@ -23961,7 +23869,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 31, + "teamId": "403", "time": 17986221, "featuredRunMedia": null, "reactionVideos": [], @@ -23979,7 +23887,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 69, + "teamId": "205", "time": 17987972, "featuredRunMedia": null, "reactionVideos": [], @@ -23997,7 +23905,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 12, + "teamId": "207", "time": 17988965, "featuredRunMedia": null, "reactionVideos": [], @@ -24015,7 +23923,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17989072, "featuredRunMedia": null, "reactionVideos": [], @@ -24033,7 +23941,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17989108, "featuredRunMedia": null, "reactionVideos": [], @@ -24051,7 +23959,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 55, + "teamId": "306", "time": 17989312, "featuredRunMedia": null, "reactionVideos": [], @@ -24069,7 +23977,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 61, + "teamId": "308", "time": 17990369, "featuredRunMedia": null, "reactionVideos": [], @@ -24087,7 +23995,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 42, + "teamId": "504", "time": 17994333, "featuredRunMedia": null, "reactionVideos": [], @@ -24105,7 +24013,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 26, + "teamId": "109", "time": 17997455, "featuredRunMedia": null, "reactionVideos": [], @@ -24123,7 +24031,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 59, + "teamId": "413", "time": 17997529, "featuredRunMedia": null, "reactionVideos": [], @@ -24141,7 +24049,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 71, + "teamId": "412", "time": 17998674, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/testSys.txt b/src/cds/tests/testData/loaders/goldenData/testSys.txt index d1520da21..83b390e15 100644 --- a/src/cds/tests/testData/loaders/goldenData/testSys.txt +++ b/src/cds/tests/testData/loaders/goldenData/testSys.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 0, + "id": "01", "name": "Monad.Reader (Садыков, Ибатов, Гаврилов)", "shortName": "Monad.Reader (Садыков, Ибатов, Гаврилов)", - "contestSystemId": "01", "groups": [], "hashTag": null, "medias": {}, @@ -167,10 +166,9 @@ "customFields": {} }, { - "id": 1, + "id": "02", "name": "LOUD Enough (Гаевой, Бочков, Макаров)", "shortName": "LOUD Enough (Гаевой, Бочков, Макаров)", - "contestSystemId": "02", "groups": [], "hashTag": null, "medias": {}, @@ -180,10 +178,9 @@ "customFields": {} }, { - "id": 2, + "id": "03", "name": "(1к) Stardust Crusaders (Михайлов, Ковалев, Ельцов)", "shortName": "(1к) Stardust Crusaders (Михайлов, Ковалев, Ельцов)", - "contestSystemId": "03", "groups": [], "hashTag": null, "medias": {}, @@ -193,10 +190,9 @@ "customFields": {} }, { - "id": 3, + "id": "04", "name": "Cheba Kings (Григорьев, Ефремов, Иванов)", "shortName": "Cheba Kings (Григорьев, Ефремов, Иванов)", - "contestSystemId": "04", "groups": [], "hashTag": null, "medias": {}, @@ -206,10 +202,9 @@ "customFields": {} }, { - "id": 4, + "id": "05", "name": "(1к) Square ball (Волочай, Нечаев, Еремеев)", "shortName": "(1к) Square ball (Волочай, Нечаев, Еремеев)", - "contestSystemId": "05", "groups": [], "hashTag": null, "medias": {}, @@ -219,10 +214,9 @@ "customFields": {} }, { - "id": 5, + "id": "06", "name": "loozha (Строганов, Куликов, Мандельштам)", "shortName": "loozha (Строганов, Куликов, Мандельштам)", - "contestSystemId": "06", "groups": [], "hashTag": null, "medias": {}, @@ -232,10 +226,9 @@ "customFields": {} }, { - "id": 6, + "id": "07", "name": "admarkov team (Марков)", "shortName": "admarkov team (Марков)", - "contestSystemId": "07", "groups": [], "hashTag": null, "medias": {}, @@ -245,10 +238,9 @@ "customFields": {} }, { - "id": 7, + "id": "08", "name": "How to turn off computer? (Гребенников, Заварин, Фадеева)", "shortName": "How to turn off computer? (Гребенников, Заварин, Фадеева)", - "contestSystemId": "08", "groups": [], "hashTag": null, "medias": {}, @@ -258,10 +250,9 @@ "customFields": {} }, { - "id": 8, + "id": "09", "name": "В компании друзей (Горячев)", "shortName": "В компании друзей (Горячев)", - "contestSystemId": "09", "groups": [], "hashTag": null, "medias": {}, @@ -271,10 +262,9 @@ "customFields": {} }, { - "id": 9, + "id": "10", "name": "Botwa Jigurda (Саакян, Мишура, Кравченко)", "shortName": "Botwa Jigurda (Саакян, Мишура, Кравченко)", - "contestSystemId": "10", "groups": [], "hashTag": null, "medias": {}, @@ -284,10 +274,9 @@ "customFields": {} }, { - "id": 10, + "id": "11", "name": "(шк) Работать там (Ковригин, Иванов, Цветков)", "shortName": "(шк) Работать там (Ковригин, Иванов, Цветков)", - "contestSystemId": "11", "groups": [], "hashTag": null, "medias": {}, @@ -297,10 +286,9 @@ "customFields": {} }, { - "id": 11, + "id": "12", "name": "(1к) фан-клуб ивана короткого (Атмажитова, Рудович, Касьянов)", "shortName": "(1к) фан-клуб ивана короткого (Атмажитова, Рудович, Касьянов)", - "contestSystemId": "12", "groups": [], "hashTag": null, "medias": {}, @@ -310,10 +298,9 @@ "customFields": {} }, { - "id": 12, + "id": "13", "name": "(1к) bravit_team (Мартынов, Новожилов, Климов)", "shortName": "(1к) bravit_team (Мартынов, Новожилов, Климов)", - "contestSystemId": "13", "groups": [], "hashTag": null, "medias": {}, @@ -323,10 +310,9 @@ "customFields": {} }, { - "id": 13, + "id": "14", "name": "(вк) gerind (Вихляев)", "shortName": "(вк) gerind (Вихляев)", - "contestSystemId": "14", "groups": [], "hashTag": null, "medias": {}, @@ -336,10 +322,9 @@ "customFields": {} }, { - "id": 14, + "id": "15", "name": "(вк) Как же хочется Реечьку.. (Быков, Мекумянов)", "shortName": "(вк) Как же хочется Реечьку.. (Быков, Мекумянов)", - "contestSystemId": "15", "groups": [], "hashTag": null, "medias": {}, @@ -349,10 +334,9 @@ "customFields": {} }, { - "id": 15, + "id": "16", "name": "(вк) Persik (Цаболов, Чакалов, Маргиев)", "shortName": "(вк) Persik (Цаболов, Чакалов, Маргиев)", - "contestSystemId": "16", "groups": [], "hashTag": null, "medias": {}, @@ -362,10 +346,9 @@ "customFields": {} }, { - "id": 16, + "id": "17", "name": "(вк) Антибыкшмут (Гамосов, Тамаев)", "shortName": "(вк) Антибыкшмут (Гамосов, Тамаев)", - "contestSystemId": "17", "groups": [], "hashTag": null, "medias": {}, @@ -375,10 +358,9 @@ "customFields": {} }, { - "id": 17, + "id": "18", "name": "(вк) Инферны (Дзуцева, Корчагин, Джибилов)", "shortName": "(вк) Инферны (Дзуцева, Корчагин, Джибилов)", - "contestSystemId": "18", "groups": [], "hashTag": null, "medias": {}, @@ -388,10 +370,9 @@ "customFields": {} }, { - "id": 18, + "id": "19", "name": "(вк) ученики Койбаева (Галустьян, Габисов, Кудзаев)", "shortName": "(вк) ученики Койбаева (Галустьян, Габисов, Кудзаев)", - "contestSystemId": "19", "groups": [], "hashTag": null, "medias": {}, @@ -401,10 +382,9 @@ "customFields": {} }, { - "id": 19, + "id": "20", "name": "(вк) Заказной Nat & Ural (Сарнацкий, Хугаев, Тебиев)", "shortName": "(вк) Заказной Nat & Ural (Сарнацкий, Хугаев, Тебиев)", - "contestSystemId": "20", "groups": [], "hashTag": null, "medias": {}, @@ -435,7 +415,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 607000, "featuredRunMedia": null, "reactionVideos": [], @@ -453,7 +433,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 7, + "teamId": "08", "time": 682000, "featuredRunMedia": null, "reactionVideos": [], @@ -471,7 +451,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 6, + "teamId": "07", "time": 699000, "featuredRunMedia": null, "reactionVideos": [], @@ -489,7 +469,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "02", "time": 737000, "featuredRunMedia": null, "reactionVideos": [], @@ -507,7 +487,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 0, + "teamId": "01", "time": 774000, "featuredRunMedia": null, "reactionVideos": [], @@ -525,7 +505,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "02", "time": 788000, "featuredRunMedia": null, "reactionVideos": [], @@ -543,7 +523,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 0, + "teamId": "01", "time": 809000, "featuredRunMedia": null, "reactionVideos": [], @@ -561,7 +541,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 872000, "featuredRunMedia": null, "reactionVideos": [], @@ -579,7 +559,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 9, + "teamId": "10", "time": 902000, "featuredRunMedia": null, "reactionVideos": [], @@ -597,7 +577,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "02", "time": 938000, "featuredRunMedia": null, "reactionVideos": [], @@ -615,7 +595,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 6, + "teamId": "07", "time": 967000, "featuredRunMedia": null, "reactionVideos": [], @@ -633,7 +613,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 0, + "teamId": "01", "time": 986000, "featuredRunMedia": null, "reactionVideos": [], @@ -651,7 +631,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "04", "time": 1144000, "featuredRunMedia": null, "reactionVideos": [], @@ -669,7 +649,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "09", "time": 1156000, "featuredRunMedia": null, "reactionVideos": [], @@ -687,7 +667,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 12, + "teamId": "13", "time": 1161000, "featuredRunMedia": null, "reactionVideos": [], @@ -705,7 +685,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 1240000, "featuredRunMedia": null, "reactionVideos": [], @@ -723,7 +703,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 14, + "teamId": "15", "time": 1265000, "featuredRunMedia": null, "reactionVideos": [], @@ -741,7 +721,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "09", "time": 1294000, "featuredRunMedia": null, "reactionVideos": [], @@ -759,7 +739,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 12, + "teamId": "13", "time": 1353000, "featuredRunMedia": null, "reactionVideos": [], @@ -777,7 +757,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "14", "time": 1359000, "featuredRunMedia": null, "reactionVideos": [], @@ -795,7 +775,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1387000, "featuredRunMedia": null, "reactionVideos": [], @@ -813,7 +793,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "04", "time": 1394000, "featuredRunMedia": null, "reactionVideos": [], @@ -831,7 +811,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 1436000, "featuredRunMedia": null, "reactionVideos": [], @@ -849,7 +829,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "10", "time": 1465000, "featuredRunMedia": null, "reactionVideos": [], @@ -867,7 +847,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "10", "time": 1517000, "featuredRunMedia": null, "reactionVideos": [], @@ -885,7 +865,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "14", "time": 1518000, "featuredRunMedia": null, "reactionVideos": [], @@ -903,7 +883,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1522000, "featuredRunMedia": null, "reactionVideos": [], @@ -921,7 +901,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 1541000, "featuredRunMedia": null, "reactionVideos": [], @@ -939,7 +919,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "12", "time": 1605000, "featuredRunMedia": null, "reactionVideos": [], @@ -957,7 +937,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "12", "time": 1613000, "featuredRunMedia": null, "reactionVideos": [], @@ -975,7 +955,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 1679000, "featuredRunMedia": null, "reactionVideos": [], @@ -993,7 +973,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1696000, "featuredRunMedia": null, "reactionVideos": [], @@ -1011,7 +991,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 1707000, "featuredRunMedia": null, "reactionVideos": [], @@ -1029,7 +1009,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "12", "time": 1710000, "featuredRunMedia": null, "reactionVideos": [], @@ -1047,7 +1027,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "12", "time": 1734000, "featuredRunMedia": null, "reactionVideos": [], @@ -1065,7 +1045,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 5, + "teamId": "06", "time": 1823000, "featuredRunMedia": null, "reactionVideos": [], @@ -1083,7 +1063,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 3, + "teamId": "04", "time": 1883000, "featuredRunMedia": null, "reactionVideos": [], @@ -1101,7 +1081,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1892000, "featuredRunMedia": null, "reactionVideos": [], @@ -1119,7 +1099,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 1922000, "featuredRunMedia": null, "reactionVideos": [], @@ -1137,7 +1117,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 0, + "teamId": "01", "time": 1974000, "featuredRunMedia": null, "reactionVideos": [], @@ -1155,7 +1135,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 1977000, "featuredRunMedia": null, "reactionVideos": [], @@ -1173,7 +1153,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 0, + "teamId": "01", "time": 2022000, "featuredRunMedia": null, "reactionVideos": [], @@ -1191,7 +1171,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 0, + "teamId": "01", "time": 2158000, "featuredRunMedia": null, "reactionVideos": [], @@ -1209,7 +1189,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "04", "time": 2163000, "featuredRunMedia": null, "reactionVideos": [], @@ -1227,7 +1207,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "04", "time": 2217000, "featuredRunMedia": null, "reactionVideos": [], @@ -1245,7 +1225,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 14, + "teamId": "15", "time": 2241000, "featuredRunMedia": null, "reactionVideos": [], @@ -1263,7 +1243,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 2246000, "featuredRunMedia": null, "reactionVideos": [], @@ -1281,7 +1261,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2307000, "featuredRunMedia": null, "reactionVideos": [], @@ -1299,7 +1279,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 14, + "teamId": "15", "time": 2310000, "featuredRunMedia": null, "reactionVideos": [], @@ -1317,7 +1297,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 1, + "teamId": "02", "time": 2343000, "featuredRunMedia": null, "reactionVideos": [], @@ -1335,7 +1315,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 5, + "teamId": "06", "time": 2368000, "featuredRunMedia": null, "reactionVideos": [], @@ -1353,7 +1333,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 2424000, "featuredRunMedia": null, "reactionVideos": [], @@ -1371,7 +1351,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 2524000, "featuredRunMedia": null, "reactionVideos": [], @@ -1389,7 +1369,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2548000, "featuredRunMedia": null, "reactionVideos": [], @@ -1407,7 +1387,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "02", "time": 2600000, "featuredRunMedia": null, "reactionVideos": [], @@ -1425,7 +1405,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 14, + "teamId": "15", "time": 2635000, "featuredRunMedia": null, "reactionVideos": [], @@ -1443,7 +1423,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2636000, "featuredRunMedia": null, "reactionVideos": [], @@ -1461,7 +1441,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 12, + "teamId": "13", "time": 2679000, "featuredRunMedia": null, "reactionVideos": [], @@ -1479,7 +1459,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 2, + "teamId": "03", "time": 2695000, "featuredRunMedia": null, "reactionVideos": [], @@ -1497,7 +1477,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2706000, "featuredRunMedia": null, "reactionVideos": [], @@ -1515,7 +1495,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "08", "time": 2790000, "featuredRunMedia": null, "reactionVideos": [], @@ -1533,7 +1513,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 6, + "teamId": "07", "time": 2809000, "featuredRunMedia": null, "reactionVideos": [], @@ -1551,7 +1531,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2816000, "featuredRunMedia": null, "reactionVideos": [], @@ -1569,7 +1549,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 2820000, "featuredRunMedia": null, "reactionVideos": [], @@ -1587,7 +1567,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "08", "time": 2843000, "featuredRunMedia": null, "reactionVideos": [], @@ -1605,7 +1585,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 1, + "teamId": "02", "time": 2861000, "featuredRunMedia": null, "reactionVideos": [], @@ -1623,7 +1603,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2862000, "featuredRunMedia": null, "reactionVideos": [], @@ -1641,7 +1621,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 2915000, "featuredRunMedia": null, "reactionVideos": [], @@ -1659,7 +1639,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 2977000, "featuredRunMedia": null, "reactionVideos": [], @@ -1677,7 +1657,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 3011000, "featuredRunMedia": null, "reactionVideos": [], @@ -1695,7 +1675,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 3038000, "featuredRunMedia": null, "reactionVideos": [], @@ -1713,7 +1693,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 9, + "teamId": "10", "time": 3131000, "featuredRunMedia": null, "reactionVideos": [], @@ -1731,7 +1711,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 11, + "teamId": "12", "time": 3189000, "featuredRunMedia": null, "reactionVideos": [], @@ -1749,7 +1729,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3191000, "featuredRunMedia": null, "reactionVideos": [], @@ -1767,7 +1747,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 3215000, "featuredRunMedia": null, "reactionVideos": [], @@ -1785,7 +1765,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3229000, "featuredRunMedia": null, "reactionVideos": [], @@ -1803,7 +1783,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 3275000, "featuredRunMedia": null, "reactionVideos": [], @@ -1821,7 +1801,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 3332000, "featuredRunMedia": null, "reactionVideos": [], @@ -1839,7 +1819,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 3360000, "featuredRunMedia": null, "reactionVideos": [], @@ -1857,7 +1837,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 3406000, "featuredRunMedia": null, "reactionVideos": [], @@ -1875,7 +1855,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 3407000, "featuredRunMedia": null, "reactionVideos": [], @@ -1893,7 +1873,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "02", "time": 3476000, "featuredRunMedia": null, "reactionVideos": [], @@ -1911,7 +1891,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 3571000, "featuredRunMedia": null, "reactionVideos": [], @@ -1929,7 +1909,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 12, + "teamId": "13", "time": 3606000, "featuredRunMedia": null, "reactionVideos": [], @@ -1947,7 +1927,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 3627000, "featuredRunMedia": null, "reactionVideos": [], @@ -1965,7 +1945,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 3851000, "featuredRunMedia": null, "reactionVideos": [], @@ -1983,7 +1963,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 3908000, "featuredRunMedia": null, "reactionVideos": [], @@ -2001,7 +1981,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 3926000, "featuredRunMedia": null, "reactionVideos": [], @@ -2019,7 +1999,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3932000, "featuredRunMedia": null, "reactionVideos": [], @@ -2037,7 +2017,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 7, + "teamId": "08", "time": 3942000, "featuredRunMedia": null, "reactionVideos": [], @@ -2055,7 +2035,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3949000, "featuredRunMedia": null, "reactionVideos": [], @@ -2073,7 +2053,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3977000, "featuredRunMedia": null, "reactionVideos": [], @@ -2091,7 +2071,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 4077000, "featuredRunMedia": null, "reactionVideos": [], @@ -2109,7 +2089,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 4156000, "featuredRunMedia": null, "reactionVideos": [], @@ -2127,7 +2107,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 4182000, "featuredRunMedia": null, "reactionVideos": [], @@ -2145,7 +2125,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 4217000, "featuredRunMedia": null, "reactionVideos": [], @@ -2163,7 +2143,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "03", "time": 4288000, "featuredRunMedia": null, "reactionVideos": [], @@ -2181,7 +2161,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 4366000, "featuredRunMedia": null, "reactionVideos": [], @@ -2199,7 +2179,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "02", "time": 4373000, "featuredRunMedia": null, "reactionVideos": [], @@ -2217,7 +2197,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 4450000, "featuredRunMedia": null, "reactionVideos": [], @@ -2235,7 +2215,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 4452000, "featuredRunMedia": null, "reactionVideos": [], @@ -2253,7 +2233,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "03", "time": 4477000, "featuredRunMedia": null, "reactionVideos": [], @@ -2271,7 +2251,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 4635000, "featuredRunMedia": null, "reactionVideos": [], @@ -2289,7 +2269,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 4802000, "featuredRunMedia": null, "reactionVideos": [], @@ -2307,7 +2287,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 4835000, "featuredRunMedia": null, "reactionVideos": [], @@ -2325,7 +2305,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 4867000, "featuredRunMedia": null, "reactionVideos": [], @@ -2343,7 +2323,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 4938000, "featuredRunMedia": null, "reactionVideos": [], @@ -2361,7 +2341,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 4, + "teamId": "05", "time": 4998000, "featuredRunMedia": null, "reactionVideos": [], @@ -2379,7 +2359,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 5003000, "featuredRunMedia": null, "reactionVideos": [], @@ -2397,7 +2377,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 5007000, "featuredRunMedia": null, "reactionVideos": [], @@ -2415,7 +2395,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 5128000, "featuredRunMedia": null, "reactionVideos": [], @@ -2433,7 +2413,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 5137000, "featuredRunMedia": null, "reactionVideos": [], @@ -2451,7 +2431,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 5140000, "featuredRunMedia": null, "reactionVideos": [], @@ -2469,7 +2449,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5175000, "featuredRunMedia": null, "reactionVideos": [], @@ -2487,7 +2467,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 5179000, "featuredRunMedia": null, "reactionVideos": [], @@ -2505,7 +2485,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 5180000, "featuredRunMedia": null, "reactionVideos": [], @@ -2523,7 +2503,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 5242000, "featuredRunMedia": null, "reactionVideos": [], @@ -2541,7 +2521,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 5299000, "featuredRunMedia": null, "reactionVideos": [], @@ -2559,7 +2539,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 5301000, "featuredRunMedia": null, "reactionVideos": [], @@ -2577,7 +2557,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 5314000, "featuredRunMedia": null, "reactionVideos": [], @@ -2595,7 +2575,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 5409000, "featuredRunMedia": null, "reactionVideos": [], @@ -2613,7 +2593,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 5515000, "featuredRunMedia": null, "reactionVideos": [], @@ -2631,7 +2611,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5562000, "featuredRunMedia": null, "reactionVideos": [], @@ -2649,7 +2629,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 5596000, "featuredRunMedia": null, "reactionVideos": [], @@ -2667,7 +2647,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5651000, "featuredRunMedia": null, "reactionVideos": [], @@ -2685,7 +2665,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 5732000, "featuredRunMedia": null, "reactionVideos": [], @@ -2703,7 +2683,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5742000, "featuredRunMedia": null, "reactionVideos": [], @@ -2721,7 +2701,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 5804000, "featuredRunMedia": null, "reactionVideos": [], @@ -2739,7 +2719,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5851000, "featuredRunMedia": null, "reactionVideos": [], @@ -2757,7 +2737,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 5875000, "featuredRunMedia": null, "reactionVideos": [], @@ -2775,7 +2755,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 5910000, "featuredRunMedia": null, "reactionVideos": [], @@ -2793,7 +2773,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6084000, "featuredRunMedia": null, "reactionVideos": [], @@ -2811,7 +2791,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 6100000, "featuredRunMedia": null, "reactionVideos": [], @@ -2829,7 +2809,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 6163000, "featuredRunMedia": null, "reactionVideos": [], @@ -2847,7 +2827,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 5, + "teamId": "06", "time": 6177000, "featuredRunMedia": null, "reactionVideos": [], @@ -2865,7 +2845,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 6273000, "featuredRunMedia": null, "reactionVideos": [], @@ -2883,7 +2863,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6275000, "featuredRunMedia": null, "reactionVideos": [], @@ -2901,7 +2881,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 6324000, "featuredRunMedia": null, "reactionVideos": [], @@ -2919,7 +2899,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 6347000, "featuredRunMedia": null, "reactionVideos": [], @@ -2937,7 +2917,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 6462000, "featuredRunMedia": null, "reactionVideos": [], @@ -2955,7 +2935,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "02", "time": 6484000, "featuredRunMedia": null, "reactionVideos": [], @@ -2973,7 +2953,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 6487000, "featuredRunMedia": null, "reactionVideos": [], @@ -2991,7 +2971,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 6495000, "featuredRunMedia": null, "reactionVideos": [], @@ -3009,7 +2989,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "02", "time": 6518000, "featuredRunMedia": null, "reactionVideos": [], @@ -3027,7 +3007,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 6581000, "featuredRunMedia": null, "reactionVideos": [], @@ -3045,7 +3025,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6587000, "featuredRunMedia": null, "reactionVideos": [], @@ -3063,7 +3043,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "10", "time": 6595000, "featuredRunMedia": null, "reactionVideos": [], @@ -3081,7 +3061,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 6651000, "featuredRunMedia": null, "reactionVideos": [], @@ -3099,7 +3079,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6750000, "featuredRunMedia": null, "reactionVideos": [], @@ -3117,7 +3097,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 6799000, "featuredRunMedia": null, "reactionVideos": [], @@ -3135,7 +3115,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 6827000, "featuredRunMedia": null, "reactionVideos": [], @@ -3153,7 +3133,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "10", "time": 6958000, "featuredRunMedia": null, "reactionVideos": [], @@ -3171,7 +3151,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 6985000, "featuredRunMedia": null, "reactionVideos": [], @@ -3189,7 +3169,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7021000, "featuredRunMedia": null, "reactionVideos": [], @@ -3207,7 +3187,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7051000, "featuredRunMedia": null, "reactionVideos": [], @@ -3225,7 +3205,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 7065000, "featuredRunMedia": null, "reactionVideos": [], @@ -3243,7 +3223,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 8, + "teamId": "09", "time": 7186000, "featuredRunMedia": null, "reactionVideos": [], @@ -3261,7 +3241,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 7204000, "featuredRunMedia": null, "reactionVideos": [], @@ -3279,7 +3259,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7224000, "featuredRunMedia": null, "reactionVideos": [], @@ -3297,7 +3277,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7299000, "featuredRunMedia": null, "reactionVideos": [], @@ -3315,7 +3295,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7338000, "featuredRunMedia": null, "reactionVideos": [], @@ -3333,7 +3313,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 7382000, "featuredRunMedia": null, "reactionVideos": [], @@ -3351,7 +3331,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7430000, "featuredRunMedia": null, "reactionVideos": [], @@ -3369,7 +3349,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 7433000, "featuredRunMedia": null, "reactionVideos": [], @@ -3387,7 +3367,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7438000, "featuredRunMedia": null, "reactionVideos": [], @@ -3405,7 +3385,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7549000, "featuredRunMedia": null, "reactionVideos": [], @@ -3423,7 +3403,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7604000, "featuredRunMedia": null, "reactionVideos": [], @@ -3441,7 +3421,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 7606000, "featuredRunMedia": null, "reactionVideos": [], @@ -3459,7 +3439,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 7646000, "featuredRunMedia": null, "reactionVideos": [], @@ -3477,7 +3457,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 7692000, "featuredRunMedia": null, "reactionVideos": [], @@ -3495,7 +3475,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7767000, "featuredRunMedia": null, "reactionVideos": [], @@ -3513,7 +3493,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 7793000, "featuredRunMedia": null, "reactionVideos": [], @@ -3531,7 +3511,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 7862000, "featuredRunMedia": null, "reactionVideos": [], @@ -3549,7 +3529,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7867000, "featuredRunMedia": null, "reactionVideos": [], @@ -3567,7 +3547,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7963000, "featuredRunMedia": null, "reactionVideos": [], @@ -3585,7 +3565,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 8156000, "featuredRunMedia": null, "reactionVideos": [], @@ -3603,7 +3583,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 8176000, "featuredRunMedia": null, "reactionVideos": [], @@ -3621,7 +3601,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 8180000, "featuredRunMedia": null, "reactionVideos": [], @@ -3639,7 +3619,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 8309000, "featuredRunMedia": null, "reactionVideos": [], @@ -3657,7 +3637,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "18", "time": 8314000, "featuredRunMedia": null, "reactionVideos": [], @@ -3675,7 +3655,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 8414000, "featuredRunMedia": null, "reactionVideos": [], @@ -3693,7 +3673,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "05", "time": 8419000, "featuredRunMedia": null, "reactionVideos": [], @@ -3711,7 +3691,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 8457000, "featuredRunMedia": null, "reactionVideos": [], @@ -3729,7 +3709,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8507000, "featuredRunMedia": null, "reactionVideos": [], @@ -3747,7 +3727,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 8529000, "featuredRunMedia": null, "reactionVideos": [], @@ -3765,7 +3745,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8579000, "featuredRunMedia": null, "reactionVideos": [], @@ -3783,7 +3763,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8645000, "featuredRunMedia": null, "reactionVideos": [], @@ -3801,7 +3781,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8674000, "featuredRunMedia": null, "reactionVideos": [], @@ -3819,7 +3799,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8711000, "featuredRunMedia": null, "reactionVideos": [], @@ -3837,7 +3817,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8731000, "featuredRunMedia": null, "reactionVideos": [], @@ -3855,7 +3835,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8780000, "featuredRunMedia": null, "reactionVideos": [], @@ -3873,7 +3853,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8786000, "featuredRunMedia": null, "reactionVideos": [], @@ -3891,7 +3871,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 8860000, "featuredRunMedia": null, "reactionVideos": [], @@ -3909,7 +3889,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 8901000, "featuredRunMedia": null, "reactionVideos": [], @@ -3927,7 +3907,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8930000, "featuredRunMedia": null, "reactionVideos": [], @@ -3945,7 +3925,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 8932000, "featuredRunMedia": null, "reactionVideos": [], @@ -3963,7 +3943,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "06", "time": 8988000, "featuredRunMedia": null, "reactionVideos": [], @@ -3981,7 +3961,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8990000, "featuredRunMedia": null, "reactionVideos": [], @@ -3999,7 +3979,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 9002000, "featuredRunMedia": null, "reactionVideos": [], @@ -4017,7 +3997,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9004000, "featuredRunMedia": null, "reactionVideos": [], @@ -4035,7 +4015,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 9021000, "featuredRunMedia": null, "reactionVideos": [], @@ -4053,7 +4033,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9029000, "featuredRunMedia": null, "reactionVideos": [], @@ -4071,7 +4051,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 3, + "teamId": "04", "time": 9076000, "featuredRunMedia": null, "reactionVideos": [], @@ -4089,7 +4069,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 9169000, "featuredRunMedia": null, "reactionVideos": [], @@ -4107,7 +4087,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "06", "time": 9251000, "featuredRunMedia": null, "reactionVideos": [], @@ -4125,7 +4105,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 9266000, "featuredRunMedia": null, "reactionVideos": [], @@ -4143,7 +4123,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 9445000, "featuredRunMedia": null, "reactionVideos": [], @@ -4161,7 +4141,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9631000, "featuredRunMedia": null, "reactionVideos": [], @@ -4179,7 +4159,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9640000, "featuredRunMedia": null, "reactionVideos": [], @@ -4197,7 +4177,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9726000, "featuredRunMedia": null, "reactionVideos": [], @@ -4215,7 +4195,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 9762000, "featuredRunMedia": null, "reactionVideos": [], @@ -4233,7 +4213,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9814000, "featuredRunMedia": null, "reactionVideos": [], @@ -4251,7 +4231,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9848000, "featuredRunMedia": null, "reactionVideos": [], @@ -4269,7 +4249,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "18", "time": 9917000, "featuredRunMedia": null, "reactionVideos": [], @@ -4287,7 +4267,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "05", "time": 9988000, "featuredRunMedia": null, "reactionVideos": [], @@ -4305,7 +4285,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 10009000, "featuredRunMedia": null, "reactionVideos": [], @@ -4323,7 +4303,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 10015000, "featuredRunMedia": null, "reactionVideos": [], @@ -4341,7 +4321,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10048000, "featuredRunMedia": null, "reactionVideos": [], @@ -4359,7 +4339,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "05", "time": 10078000, "featuredRunMedia": null, "reactionVideos": [], @@ -4377,7 +4357,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10102000, "featuredRunMedia": null, "reactionVideos": [], @@ -4395,7 +4375,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 10104000, "featuredRunMedia": null, "reactionVideos": [], @@ -4413,7 +4393,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 10129000, "featuredRunMedia": null, "reactionVideos": [], @@ -4431,7 +4411,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 10257000, "featuredRunMedia": null, "reactionVideos": [], @@ -4449,7 +4429,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "04", "time": 10278000, "featuredRunMedia": null, "reactionVideos": [], @@ -4467,7 +4447,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "03", "time": 10334000, "featuredRunMedia": null, "reactionVideos": [], @@ -4485,7 +4465,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10362000, "featuredRunMedia": null, "reactionVideos": [], @@ -4503,7 +4483,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 10366000, "featuredRunMedia": null, "reactionVideos": [], @@ -4521,7 +4501,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10381000, "featuredRunMedia": null, "reactionVideos": [], @@ -4539,7 +4519,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10394000, "featuredRunMedia": null, "reactionVideos": [], @@ -4557,7 +4537,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 10437000, "featuredRunMedia": null, "reactionVideos": [], @@ -4575,7 +4555,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 10475000, "featuredRunMedia": null, "reactionVideos": [], @@ -4593,7 +4573,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "04", "time": 10600000, "featuredRunMedia": null, "reactionVideos": [], @@ -4611,7 +4591,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10600000, "featuredRunMedia": null, "reactionVideos": [], @@ -4629,7 +4609,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10673000, "featuredRunMedia": null, "reactionVideos": [], @@ -4647,7 +4627,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 10816000, "featuredRunMedia": null, "reactionVideos": [], @@ -4665,7 +4645,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 15, + "teamId": "16", "time": 10846000, "featuredRunMedia": null, "reactionVideos": [], @@ -4683,7 +4663,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10891000, "featuredRunMedia": null, "reactionVideos": [], @@ -4701,7 +4681,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "09", "time": 10893000, "featuredRunMedia": null, "reactionVideos": [], @@ -4719,7 +4699,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 10901000, "featuredRunMedia": null, "reactionVideos": [], @@ -4737,7 +4717,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 10924000, "featuredRunMedia": null, "reactionVideos": [], @@ -4755,7 +4735,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "03", "time": 10957000, "featuredRunMedia": null, "reactionVideos": [], @@ -4773,7 +4753,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11023000, "featuredRunMedia": null, "reactionVideos": [], @@ -4791,7 +4771,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11114000, "featuredRunMedia": null, "reactionVideos": [], @@ -4809,7 +4789,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11200000, "featuredRunMedia": null, "reactionVideos": [], @@ -4827,7 +4807,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 11232000, "featuredRunMedia": null, "reactionVideos": [], @@ -4845,7 +4825,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11367000, "featuredRunMedia": null, "reactionVideos": [], @@ -4863,7 +4843,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11468000, "featuredRunMedia": null, "reactionVideos": [], @@ -4881,7 +4861,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11487000, "featuredRunMedia": null, "reactionVideos": [], @@ -4899,7 +4879,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11522000, "featuredRunMedia": null, "reactionVideos": [], @@ -4917,7 +4897,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 11529000, "featuredRunMedia": null, "reactionVideos": [], @@ -4935,7 +4915,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11685000, "featuredRunMedia": null, "reactionVideos": [], @@ -4953,7 +4933,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11751000, "featuredRunMedia": null, "reactionVideos": [], @@ -4971,7 +4951,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 11771000, "featuredRunMedia": null, "reactionVideos": [], @@ -4989,7 +4969,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11876000, "featuredRunMedia": null, "reactionVideos": [], @@ -5007,7 +4987,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11884000, "featuredRunMedia": null, "reactionVideos": [], @@ -5025,7 +5005,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 11909000, "featuredRunMedia": null, "reactionVideos": [], @@ -5043,7 +5023,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11912000, "featuredRunMedia": null, "reactionVideos": [], @@ -5061,7 +5041,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 11999000, "featuredRunMedia": null, "reactionVideos": [], @@ -5079,7 +5059,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 11, + "teamId": "12", "time": 12015000, "featuredRunMedia": null, "reactionVideos": [], @@ -5097,7 +5077,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12022000, "featuredRunMedia": null, "reactionVideos": [], @@ -5115,7 +5095,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 12031000, "featuredRunMedia": null, "reactionVideos": [], @@ -5133,7 +5113,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 12055000, "featuredRunMedia": null, "reactionVideos": [], @@ -5151,7 +5131,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 12057000, "featuredRunMedia": null, "reactionVideos": [], @@ -5169,7 +5149,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12093000, "featuredRunMedia": null, "reactionVideos": [], @@ -5187,7 +5167,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "13", "time": 12130000, "featuredRunMedia": null, "reactionVideos": [], @@ -5205,7 +5185,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 12131000, "featuredRunMedia": null, "reactionVideos": [], @@ -5223,7 +5203,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "13", "time": 12215000, "featuredRunMedia": null, "reactionVideos": [], @@ -5241,7 +5221,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "04", "time": 12260000, "featuredRunMedia": null, "reactionVideos": [], @@ -5259,7 +5239,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12265000, "featuredRunMedia": null, "reactionVideos": [], @@ -5277,7 +5257,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 12300000, "featuredRunMedia": null, "reactionVideos": [], @@ -5295,7 +5275,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 12321000, "featuredRunMedia": null, "reactionVideos": [], @@ -5313,7 +5293,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "04", "time": 12392000, "featuredRunMedia": null, "reactionVideos": [], @@ -5331,7 +5311,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 12470000, "featuredRunMedia": null, "reactionVideos": [], @@ -5349,7 +5329,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 12619000, "featuredRunMedia": null, "reactionVideos": [], @@ -5367,7 +5347,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 12623000, "featuredRunMedia": null, "reactionVideos": [], @@ -5385,7 +5365,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12667000, "featuredRunMedia": null, "reactionVideos": [], @@ -5403,7 +5383,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 12685000, "featuredRunMedia": null, "reactionVideos": [], @@ -5421,7 +5401,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 12731000, "featuredRunMedia": null, "reactionVideos": [], @@ -5439,7 +5419,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12741000, "featuredRunMedia": null, "reactionVideos": [], @@ -5457,7 +5437,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "07", "time": 12936000, "featuredRunMedia": null, "reactionVideos": [], @@ -5475,7 +5455,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 9, + "teamId": "10", "time": 12936000, "featuredRunMedia": null, "reactionVideos": [], @@ -5493,7 +5473,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 13011000, "featuredRunMedia": null, "reactionVideos": [], @@ -5511,7 +5491,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 13149000, "featuredRunMedia": null, "reactionVideos": [], @@ -5529,7 +5509,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 13318000, "featuredRunMedia": null, "reactionVideos": [], @@ -5547,7 +5527,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 13400000, "featuredRunMedia": null, "reactionVideos": [], @@ -5565,7 +5545,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 13510000, "featuredRunMedia": null, "reactionVideos": [], @@ -5583,7 +5563,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 13625000, "featuredRunMedia": null, "reactionVideos": [], @@ -5601,7 +5581,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 13652000, "featuredRunMedia": null, "reactionVideos": [], @@ -5619,7 +5599,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 11, + "teamId": "12", "time": 13684000, "featuredRunMedia": null, "reactionVideos": [], @@ -5637,7 +5617,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 13824000, "featuredRunMedia": null, "reactionVideos": [], @@ -5655,7 +5635,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 13870000, "featuredRunMedia": null, "reactionVideos": [], @@ -5673,7 +5653,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 13889000, "featuredRunMedia": null, "reactionVideos": [], @@ -5691,7 +5671,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 1, + "teamId": "02", "time": 14065000, "featuredRunMedia": null, "reactionVideos": [], @@ -5709,7 +5689,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 14253000, "featuredRunMedia": null, "reactionVideos": [], @@ -5727,7 +5707,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14270000, "featuredRunMedia": null, "reactionVideos": [], @@ -5745,7 +5725,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 14291000, "featuredRunMedia": null, "reactionVideos": [], @@ -5763,7 +5743,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14433000, "featuredRunMedia": null, "reactionVideos": [], @@ -5781,7 +5761,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 14446000, "featuredRunMedia": null, "reactionVideos": [], @@ -5799,7 +5779,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14491000, "featuredRunMedia": null, "reactionVideos": [], @@ -5817,7 +5797,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14497000, "featuredRunMedia": null, "reactionVideos": [], @@ -5835,7 +5815,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14534000, "featuredRunMedia": null, "reactionVideos": [], @@ -5853,7 +5833,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 7, + "teamId": "08", "time": 14558000, "featuredRunMedia": null, "reactionVideos": [], @@ -5871,7 +5851,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14580000, "featuredRunMedia": null, "reactionVideos": [], @@ -5889,7 +5869,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14582000, "featuredRunMedia": null, "reactionVideos": [], @@ -5907,7 +5887,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14695000, "featuredRunMedia": null, "reactionVideos": [], @@ -5925,7 +5905,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 14696000, "featuredRunMedia": null, "reactionVideos": [], @@ -5943,7 +5923,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14794000, "featuredRunMedia": null, "reactionVideos": [], @@ -5961,7 +5941,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 14822000, "featuredRunMedia": null, "reactionVideos": [], @@ -5979,7 +5959,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 14842000, "featuredRunMedia": null, "reactionVideos": [], @@ -5997,7 +5977,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14855000, "featuredRunMedia": null, "reactionVideos": [], @@ -6015,7 +5995,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14901000, "featuredRunMedia": null, "reactionVideos": [], @@ -6033,7 +6013,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 2, + "teamId": "03", "time": 14909000, "featuredRunMedia": null, "reactionVideos": [], @@ -6051,7 +6031,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 14996000, "featuredRunMedia": null, "reactionVideos": [], @@ -6069,7 +6049,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15013000, "featuredRunMedia": null, "reactionVideos": [], @@ -6087,7 +6067,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15052000, "featuredRunMedia": null, "reactionVideos": [], @@ -6105,7 +6085,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "15", "time": 15059000, "featuredRunMedia": null, "reactionVideos": [], @@ -6123,7 +6103,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15068000, "featuredRunMedia": null, "reactionVideos": [], @@ -6141,7 +6121,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15086000, "featuredRunMedia": null, "reactionVideos": [], @@ -6159,7 +6139,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15087000, "featuredRunMedia": null, "reactionVideos": [], @@ -6177,7 +6157,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15151000, "featuredRunMedia": null, "reactionVideos": [], @@ -6195,7 +6175,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15211000, "featuredRunMedia": null, "reactionVideos": [], @@ -6213,7 +6193,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15271000, "featuredRunMedia": null, "reactionVideos": [], @@ -6231,7 +6211,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15287000, "featuredRunMedia": null, "reactionVideos": [], @@ -6249,7 +6229,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 15367000, "featuredRunMedia": null, "reactionVideos": [], @@ -6267,7 +6247,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15373000, "featuredRunMedia": null, "reactionVideos": [], @@ -6285,7 +6265,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15373000, "featuredRunMedia": null, "reactionVideos": [], @@ -6303,7 +6283,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15388000, "featuredRunMedia": null, "reactionVideos": [], @@ -6321,7 +6301,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15412000, "featuredRunMedia": null, "reactionVideos": [], @@ -6339,7 +6319,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 15428000, "featuredRunMedia": null, "reactionVideos": [], @@ -6357,7 +6337,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15457000, "featuredRunMedia": null, "reactionVideos": [], @@ -6375,7 +6355,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15528000, "featuredRunMedia": null, "reactionVideos": [], @@ -6393,7 +6373,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15566000, "featuredRunMedia": null, "reactionVideos": [], @@ -6411,7 +6391,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15567000, "featuredRunMedia": null, "reactionVideos": [], @@ -6429,7 +6409,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15690000, "featuredRunMedia": null, "reactionVideos": [], @@ -6447,7 +6427,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15714000, "featuredRunMedia": null, "reactionVideos": [], @@ -6465,7 +6445,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15728000, "featuredRunMedia": null, "reactionVideos": [], @@ -6483,7 +6463,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15730000, "featuredRunMedia": null, "reactionVideos": [], @@ -6501,7 +6481,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15735000, "featuredRunMedia": null, "reactionVideos": [], @@ -6519,7 +6499,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15803000, "featuredRunMedia": null, "reactionVideos": [], @@ -6537,7 +6517,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15808000, "featuredRunMedia": null, "reactionVideos": [], @@ -6555,7 +6535,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15809000, "featuredRunMedia": null, "reactionVideos": [], @@ -6573,7 +6553,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15832000, "featuredRunMedia": null, "reactionVideos": [], @@ -6591,7 +6571,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15883000, "featuredRunMedia": null, "reactionVideos": [], @@ -6609,7 +6589,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15887000, "featuredRunMedia": null, "reactionVideos": [], @@ -6627,7 +6607,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15913000, "featuredRunMedia": null, "reactionVideos": [], @@ -6645,7 +6625,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15917000, "featuredRunMedia": null, "reactionVideos": [], @@ -6663,7 +6643,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "08", "time": 15934000, "featuredRunMedia": null, "reactionVideos": [], @@ -6681,7 +6661,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15958000, "featuredRunMedia": null, "reactionVideos": [], @@ -6699,7 +6679,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 15964000, "featuredRunMedia": null, "reactionVideos": [], @@ -6717,7 +6697,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15969000, "featuredRunMedia": null, "reactionVideos": [], @@ -6735,7 +6715,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15974000, "featuredRunMedia": null, "reactionVideos": [], @@ -6753,7 +6733,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 16004000, "featuredRunMedia": null, "reactionVideos": [], @@ -6771,7 +6751,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "08", "time": 16073000, "featuredRunMedia": null, "reactionVideos": [], @@ -6789,7 +6769,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 14, + "teamId": "15", "time": 16094000, "featuredRunMedia": null, "reactionVideos": [], @@ -6807,7 +6787,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 4, + "teamId": "05", "time": 16110000, "featuredRunMedia": null, "reactionVideos": [], @@ -6825,7 +6805,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 3, + "teamId": "04", "time": 16165000, "featuredRunMedia": null, "reactionVideos": [], @@ -6843,7 +6823,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16183000, "featuredRunMedia": null, "reactionVideos": [], @@ -6861,7 +6841,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 16365000, "featuredRunMedia": null, "reactionVideos": [], @@ -6879,7 +6859,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 16444000, "featuredRunMedia": null, "reactionVideos": [], @@ -6897,7 +6877,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16506000, "featuredRunMedia": null, "reactionVideos": [], @@ -6915,7 +6895,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 16519000, "featuredRunMedia": null, "reactionVideos": [], @@ -6933,7 +6913,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 16631000, "featuredRunMedia": null, "reactionVideos": [], @@ -6951,7 +6931,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16650000, "featuredRunMedia": null, "reactionVideos": [], @@ -6969,7 +6949,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 16671000, "featuredRunMedia": null, "reactionVideos": [], @@ -6987,7 +6967,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 16698000, "featuredRunMedia": null, "reactionVideos": [], @@ -7005,7 +6985,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16762000, "featuredRunMedia": null, "reactionVideos": [], @@ -7023,7 +7003,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 16778000, "featuredRunMedia": null, "reactionVideos": [], @@ -7041,7 +7021,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 16852000, "featuredRunMedia": null, "reactionVideos": [], @@ -7059,7 +7039,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16893000, "featuredRunMedia": null, "reactionVideos": [], @@ -7077,7 +7057,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 16941000, "featuredRunMedia": null, "reactionVideos": [], @@ -7095,7 +7075,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 16955000, "featuredRunMedia": null, "reactionVideos": [], @@ -7113,7 +7093,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16988000, "featuredRunMedia": null, "reactionVideos": [], @@ -7131,7 +7111,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17004000, "featuredRunMedia": null, "reactionVideos": [], @@ -7149,7 +7129,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 17053000, "featuredRunMedia": null, "reactionVideos": [], @@ -7167,7 +7147,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17079000, "featuredRunMedia": null, "reactionVideos": [], @@ -7185,7 +7165,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17131000, "featuredRunMedia": null, "reactionVideos": [], @@ -7203,7 +7183,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17137000, "featuredRunMedia": null, "reactionVideos": [], @@ -7221,7 +7201,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17146000, "featuredRunMedia": null, "reactionVideos": [], @@ -7239,7 +7219,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 5, + "teamId": "06", "time": 17152000, "featuredRunMedia": null, "reactionVideos": [], @@ -7257,7 +7237,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 17156000, "featuredRunMedia": null, "reactionVideos": [], @@ -7275,7 +7255,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 17174000, "featuredRunMedia": null, "reactionVideos": [], @@ -7293,7 +7273,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 17185000, "featuredRunMedia": null, "reactionVideos": [], @@ -7311,7 +7291,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17187000, "featuredRunMedia": null, "reactionVideos": [], @@ -7329,7 +7309,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17219000, "featuredRunMedia": null, "reactionVideos": [], @@ -7347,7 +7327,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 17246000, "featuredRunMedia": null, "reactionVideos": [], @@ -7365,7 +7345,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17252000, "featuredRunMedia": null, "reactionVideos": [], @@ -7383,7 +7363,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17273000, "featuredRunMedia": null, "reactionVideos": [], @@ -7401,7 +7381,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 17314000, "featuredRunMedia": null, "reactionVideos": [], @@ -7419,7 +7399,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17393000, "featuredRunMedia": null, "reactionVideos": [], @@ -7437,7 +7417,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "07", "time": 17403000, "featuredRunMedia": null, "reactionVideos": [], @@ -7455,7 +7435,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17428000, "featuredRunMedia": null, "reactionVideos": [], @@ -7473,7 +7453,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17439000, "featuredRunMedia": null, "reactionVideos": [], @@ -7491,7 +7471,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17454000, "featuredRunMedia": null, "reactionVideos": [], @@ -7509,7 +7489,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17495000, "featuredRunMedia": null, "reactionVideos": [], @@ -7527,7 +7507,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17496000, "featuredRunMedia": null, "reactionVideos": [], @@ -7545,7 +7525,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17518000, "featuredRunMedia": null, "reactionVideos": [], @@ -7563,7 +7543,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17524000, "featuredRunMedia": null, "reactionVideos": [], @@ -7581,7 +7561,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17536000, "featuredRunMedia": null, "reactionVideos": [], @@ -7599,7 +7579,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17537000, "featuredRunMedia": null, "reactionVideos": [], @@ -7617,7 +7597,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17568000, "featuredRunMedia": null, "reactionVideos": [], @@ -7635,7 +7615,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17578000, "featuredRunMedia": null, "reactionVideos": [], @@ -7653,7 +7633,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17587000, "featuredRunMedia": null, "reactionVideos": [], @@ -7671,7 +7651,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17609000, "featuredRunMedia": null, "reactionVideos": [], @@ -7689,7 +7669,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17611000, "featuredRunMedia": null, "reactionVideos": [], @@ -7707,7 +7687,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17621000, "featuredRunMedia": null, "reactionVideos": [], @@ -7725,7 +7705,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17637000, "featuredRunMedia": null, "reactionVideos": [], @@ -7743,7 +7723,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17643000, "featuredRunMedia": null, "reactionVideos": [], @@ -7761,7 +7741,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17649000, "featuredRunMedia": null, "reactionVideos": [], @@ -7779,7 +7759,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17661000, "featuredRunMedia": null, "reactionVideos": [], @@ -7797,7 +7777,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17682000, "featuredRunMedia": null, "reactionVideos": [], @@ -7815,7 +7795,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17687000, "featuredRunMedia": null, "reactionVideos": [], @@ -7833,7 +7813,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17698000, "featuredRunMedia": null, "reactionVideos": [], @@ -7851,7 +7831,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17713000, "featuredRunMedia": null, "reactionVideos": [], @@ -7869,7 +7849,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17713000, "featuredRunMedia": null, "reactionVideos": [], @@ -7887,7 +7867,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17714000, "featuredRunMedia": null, "reactionVideos": [], @@ -7905,7 +7885,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17720000, "featuredRunMedia": null, "reactionVideos": [], @@ -7923,7 +7903,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17736000, "featuredRunMedia": null, "reactionVideos": [], @@ -7941,7 +7921,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 17755000, "featuredRunMedia": null, "reactionVideos": [], @@ -7959,7 +7939,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17763000, "featuredRunMedia": null, "reactionVideos": [], @@ -7977,7 +7957,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 0, + "teamId": "01", "time": 17777000, "featuredRunMedia": null, "reactionVideos": [], @@ -7995,7 +7975,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17783000, "featuredRunMedia": null, "reactionVideos": [], @@ -8013,7 +7993,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17784000, "featuredRunMedia": null, "reactionVideos": [], @@ -8031,7 +8011,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17824000, "featuredRunMedia": null, "reactionVideos": [], @@ -8049,7 +8029,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17825000, "featuredRunMedia": null, "reactionVideos": [], @@ -8067,7 +8047,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17827000, "featuredRunMedia": null, "reactionVideos": [], @@ -8085,7 +8065,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17829000, "featuredRunMedia": null, "reactionVideos": [], @@ -8103,7 +8083,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 17837000, "featuredRunMedia": null, "reactionVideos": [], @@ -8121,7 +8101,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17841000, "featuredRunMedia": null, "reactionVideos": [], @@ -8139,7 +8119,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17855000, "featuredRunMedia": null, "reactionVideos": [], @@ -8157,7 +8137,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17857000, "featuredRunMedia": null, "reactionVideos": [], @@ -8175,7 +8155,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17859000, "featuredRunMedia": null, "reactionVideos": [], @@ -8193,7 +8173,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17871000, "featuredRunMedia": null, "reactionVideos": [], @@ -8211,7 +8191,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17899000, "featuredRunMedia": null, "reactionVideos": [], @@ -8229,7 +8209,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17903000, "featuredRunMedia": null, "reactionVideos": [], @@ -8247,7 +8227,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17907000, "featuredRunMedia": null, "reactionVideos": [], @@ -8265,7 +8245,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17909000, "featuredRunMedia": null, "reactionVideos": [], @@ -8283,7 +8263,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17918000, "featuredRunMedia": null, "reactionVideos": [], @@ -8301,7 +8281,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 17927000, "featuredRunMedia": null, "reactionVideos": [], @@ -8319,7 +8299,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17931000, "featuredRunMedia": null, "reactionVideos": [], @@ -8337,7 +8317,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 17943000, "featuredRunMedia": null, "reactionVideos": [], @@ -8355,7 +8335,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17948000, "featuredRunMedia": null, "reactionVideos": [], @@ -8373,7 +8353,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17956000, "featuredRunMedia": null, "reactionVideos": [], @@ -8391,7 +8371,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17963000, "featuredRunMedia": null, "reactionVideos": [], @@ -8409,7 +8389,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "05", "time": 17967000, "featuredRunMedia": null, "reactionVideos": [], @@ -8427,7 +8407,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17969000, "featuredRunMedia": null, "reactionVideos": [], @@ -8445,7 +8425,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17971000, "featuredRunMedia": null, "reactionVideos": [], @@ -8463,7 +8443,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17974000, "featuredRunMedia": null, "reactionVideos": [], @@ -8481,7 +8461,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17978000, "featuredRunMedia": null, "reactionVideos": [], @@ -8499,7 +8479,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17982000, "featuredRunMedia": null, "reactionVideos": [], @@ -8517,7 +8497,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 17984000, "featuredRunMedia": null, "reactionVideos": [], @@ -8535,7 +8515,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17992000, "featuredRunMedia": null, "reactionVideos": [], @@ -8553,7 +8533,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17993000, "featuredRunMedia": null, "reactionVideos": [], @@ -8571,7 +8551,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 17993000, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/cds/tests/testData/loaders/goldenData/testSysWithAdvancedOverride.txt b/src/cds/tests/testData/loaders/goldenData/testSysWithAdvancedOverride.txt index ba77fc4e6..582a35ccb 100644 --- a/src/cds/tests/testData/loaders/goldenData/testSysWithAdvancedOverride.txt +++ b/src/cds/tests/testData/loaders/goldenData/testSysWithAdvancedOverride.txt @@ -154,10 +154,9 @@ ], "teams": [ { - "id": 0, + "id": "01", "name": "Monad.Reader (Садыков, Ибатов, Гаврилов)", "shortName": "Monad.Reader", - "contestSystemId": "01", "groups": [], "hashTag": null, "medias": {}, @@ -169,10 +168,9 @@ } }, { - "id": 1, + "id": "02", "name": "LOUD Enough (Гаевой, Бочков, Макаров)", "shortName": "LOUD Enough", - "contestSystemId": "02", "groups": [], "hashTag": null, "medias": {}, @@ -184,10 +182,9 @@ } }, { - "id": 2, + "id": "03", "name": "(1к) Stardust Crusaders (Михайлов, Ковалев, Ельцов)", "shortName": "Stardust Crusaders", - "contestSystemId": "03", "groups": [ "firstGrade" ], @@ -201,10 +198,9 @@ } }, { - "id": 3, + "id": "04", "name": "Cheba Kings (Григорьев, Ефремов, Иванов)", "shortName": "Cheba Kings", - "contestSystemId": "04", "groups": [], "hashTag": null, "medias": {}, @@ -216,10 +212,9 @@ } }, { - "id": 4, + "id": "05", "name": "(1к) Square ball (Волочай, Нечаев, Еремеев)", "shortName": "Square ball", - "contestSystemId": "05", "groups": [ "firstGrade" ], @@ -233,10 +228,9 @@ } }, { - "id": 5, + "id": "06", "name": "loozha (Строганов, Куликов, Мандельштам)", "shortName": "loozha", - "contestSystemId": "06", "groups": [], "hashTag": null, "medias": {}, @@ -248,10 +242,9 @@ } }, { - "id": 6, + "id": "07", "name": "admarkov team (Марков)", "shortName": "admarkov team", - "contestSystemId": "07", "groups": [], "hashTag": null, "medias": {}, @@ -263,10 +256,9 @@ } }, { - "id": 7, + "id": "08", "name": "How to turn off computer? (Гребенников, Заварин, Фадеева)", "shortName": "How to turn off computer?", - "contestSystemId": "08", "groups": [], "hashTag": null, "medias": {}, @@ -278,10 +270,9 @@ } }, { - "id": 8, + "id": "09", "name": "В компании друзей (Горячев)", "shortName": "В компании друзей", - "contestSystemId": "09", "groups": [], "hashTag": null, "medias": {}, @@ -293,10 +284,9 @@ } }, { - "id": 9, + "id": "10", "name": "Botwa Jigurda (Саакян, Мишура, Кравченко)", "shortName": "Botwa Jigurda", - "contestSystemId": "10", "groups": [], "hashTag": null, "medias": {}, @@ -308,10 +298,9 @@ } }, { - "id": 10, + "id": "11", "name": "(шк) Работать там (Ковригин, Иванов, Цветков)", "shortName": "Работать там", - "contestSystemId": "11", "groups": [ "school" ], @@ -325,10 +314,9 @@ } }, { - "id": 11, + "id": "12", "name": "(1к) фан-клуб ивана короткого (Атмажитова, Рудович, Касьянов)", "shortName": "фан-клуб ивана короткого", - "contestSystemId": "12", "groups": [ "firstGrade" ], @@ -342,10 +330,9 @@ } }, { - "id": 12, + "id": "13", "name": "(1к) bravit_team (Мартынов, Новожилов, Климов)", "shortName": "bravit_team", - "contestSystemId": "13", "groups": [ "firstGrade" ], @@ -359,10 +346,9 @@ } }, { - "id": 13, + "id": "14", "name": "(вк) gerind (Вихляев)", "shortName": "gerind", - "contestSystemId": "14", "groups": [ "outOfContest" ], @@ -376,10 +362,9 @@ } }, { - "id": 14, + "id": "15", "name": "(вк) Как же хочется Реечьку.. (Быков, Мекумянов)", "shortName": "Как же хочется Реечьку..", - "contestSystemId": "15", "groups": [ "outOfContest" ], @@ -393,10 +378,9 @@ } }, { - "id": 15, + "id": "16", "name": "(вк) Persik (Цаболов, Чакалов, Маргиев)", "shortName": "Persik", - "contestSystemId": "16", "groups": [ "outOfContest" ], @@ -410,10 +394,9 @@ } }, { - "id": 16, + "id": "17", "name": "(вк) Антибыкшмут (Гамосов, Тамаев)", "shortName": "Антибыкшмут", - "contestSystemId": "17", "groups": [ "outOfContest" ], @@ -427,10 +410,9 @@ } }, { - "id": 17, + "id": "18", "name": "(вк) Инферны (Дзуцева, Корчагин, Джибилов)", "shortName": "Инферны", - "contestSystemId": "18", "groups": [ "outOfContest" ], @@ -444,10 +426,9 @@ } }, { - "id": 18, + "id": "19", "name": "(вк) ученики Койбаева (Галустьян, Габисов, Кудзаев)", "shortName": "ученики Койбаева", - "contestSystemId": "19", "groups": [ "outOfContest" ], @@ -461,10 +442,9 @@ } }, { - "id": 19, + "id": "20", "name": "(вк) Заказной Nat & Ural (Сарнацкий, Хугаев, Тебиев)", "shortName": "Заказной Nat & Ural", - "contestSystemId": "20", "groups": [ "outOfContest" ], @@ -518,7 +498,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 607000, "featuredRunMedia": null, "reactionVideos": [], @@ -536,7 +516,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 7, + "teamId": "08", "time": 682000, "featuredRunMedia": null, "reactionVideos": [], @@ -554,7 +534,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 6, + "teamId": "07", "time": 699000, "featuredRunMedia": null, "reactionVideos": [], @@ -572,7 +552,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "02", "time": 737000, "featuredRunMedia": null, "reactionVideos": [], @@ -590,7 +570,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 0, + "teamId": "01", "time": 774000, "featuredRunMedia": null, "reactionVideos": [], @@ -608,7 +588,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 1, + "teamId": "02", "time": 788000, "featuredRunMedia": null, "reactionVideos": [], @@ -626,7 +606,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 0, + "teamId": "01", "time": 809000, "featuredRunMedia": null, "reactionVideos": [], @@ -644,7 +624,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 872000, "featuredRunMedia": null, "reactionVideos": [], @@ -662,7 +642,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 9, + "teamId": "10", "time": 902000, "featuredRunMedia": null, "reactionVideos": [], @@ -680,7 +660,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 1, + "teamId": "02", "time": 938000, "featuredRunMedia": null, "reactionVideos": [], @@ -698,7 +678,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 6, + "teamId": "07", "time": 967000, "featuredRunMedia": null, "reactionVideos": [], @@ -716,7 +696,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 0, + "teamId": "01", "time": 986000, "featuredRunMedia": null, "reactionVideos": [], @@ -734,7 +714,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "04", "time": 1144000, "featuredRunMedia": null, "reactionVideos": [], @@ -752,7 +732,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "09", "time": 1156000, "featuredRunMedia": null, "reactionVideos": [], @@ -770,7 +750,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 12, + "teamId": "13", "time": 1161000, "featuredRunMedia": null, "reactionVideos": [], @@ -788,7 +768,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 3, + "teamId": "04", "time": 1240000, "featuredRunMedia": null, "reactionVideos": [], @@ -806,7 +786,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 14, + "teamId": "15", "time": 1265000, "featuredRunMedia": null, "reactionVideos": [], @@ -824,7 +804,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 8, + "teamId": "09", "time": 1294000, "featuredRunMedia": null, "reactionVideos": [], @@ -842,7 +822,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 12, + "teamId": "13", "time": 1353000, "featuredRunMedia": null, "reactionVideos": [], @@ -860,7 +840,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "14", "time": 1359000, "featuredRunMedia": null, "reactionVideos": [], @@ -878,7 +858,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1387000, "featuredRunMedia": null, "reactionVideos": [], @@ -896,7 +876,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 3, + "teamId": "04", "time": 1394000, "featuredRunMedia": null, "reactionVideos": [], @@ -914,7 +894,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 1436000, "featuredRunMedia": null, "reactionVideos": [], @@ -932,7 +912,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "10", "time": 1465000, "featuredRunMedia": null, "reactionVideos": [], @@ -950,7 +930,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 9, + "teamId": "10", "time": 1517000, "featuredRunMedia": null, "reactionVideos": [], @@ -968,7 +948,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 13, + "teamId": "14", "time": 1518000, "featuredRunMedia": null, "reactionVideos": [], @@ -986,7 +966,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1522000, "featuredRunMedia": null, "reactionVideos": [], @@ -1004,7 +984,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 1541000, "featuredRunMedia": null, "reactionVideos": [], @@ -1022,7 +1002,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "12", "time": 1605000, "featuredRunMedia": null, "reactionVideos": [], @@ -1040,7 +1020,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "12", "time": 1613000, "featuredRunMedia": null, "reactionVideos": [], @@ -1058,7 +1038,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 1679000, "featuredRunMedia": null, "reactionVideos": [], @@ -1076,7 +1056,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1696000, "featuredRunMedia": null, "reactionVideos": [], @@ -1094,7 +1074,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 1707000, "featuredRunMedia": null, "reactionVideos": [], @@ -1112,7 +1092,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 11, + "teamId": "12", "time": 1710000, "featuredRunMedia": null, "reactionVideos": [], @@ -1130,7 +1110,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 11, + "teamId": "12", "time": 1734000, "featuredRunMedia": null, "reactionVideos": [], @@ -1148,7 +1128,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 5, + "teamId": "06", "time": 1823000, "featuredRunMedia": null, "reactionVideos": [], @@ -1166,7 +1146,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 3, + "teamId": "04", "time": 1883000, "featuredRunMedia": null, "reactionVideos": [], @@ -1184,7 +1164,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 6, + "teamId": "07", "time": 1892000, "featuredRunMedia": null, "reactionVideos": [], @@ -1202,7 +1182,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 1922000, "featuredRunMedia": null, "reactionVideos": [], @@ -1220,7 +1200,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 0, + "teamId": "01", "time": 1974000, "featuredRunMedia": null, "reactionVideos": [], @@ -1238,7 +1218,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 1977000, "featuredRunMedia": null, "reactionVideos": [], @@ -1256,7 +1236,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 0, + "teamId": "01", "time": 2022000, "featuredRunMedia": null, "reactionVideos": [], @@ -1274,7 +1254,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 0, + "teamId": "01", "time": 2158000, "featuredRunMedia": null, "reactionVideos": [], @@ -1292,7 +1272,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "04", "time": 2163000, "featuredRunMedia": null, "reactionVideos": [], @@ -1310,7 +1290,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 3, + "teamId": "04", "time": 2217000, "featuredRunMedia": null, "reactionVideos": [], @@ -1328,7 +1308,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 14, + "teamId": "15", "time": 2241000, "featuredRunMedia": null, "reactionVideos": [], @@ -1346,7 +1326,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 7, + "teamId": "08", "time": 2246000, "featuredRunMedia": null, "reactionVideos": [], @@ -1364,7 +1344,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2307000, "featuredRunMedia": null, "reactionVideos": [], @@ -1382,7 +1362,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 14, + "teamId": "15", "time": 2310000, "featuredRunMedia": null, "reactionVideos": [], @@ -1400,7 +1380,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 1, + "teamId": "02", "time": 2343000, "featuredRunMedia": null, "reactionVideos": [], @@ -1418,7 +1398,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 5, + "teamId": "06", "time": 2368000, "featuredRunMedia": null, "reactionVideos": [], @@ -1436,7 +1416,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 2424000, "featuredRunMedia": null, "reactionVideos": [], @@ -1454,7 +1434,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 4, + "teamId": "05", "time": 2524000, "featuredRunMedia": null, "reactionVideos": [], @@ -1472,7 +1452,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2548000, "featuredRunMedia": null, "reactionVideos": [], @@ -1490,7 +1470,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 1, + "teamId": "02", "time": 2600000, "featuredRunMedia": null, "reactionVideos": [], @@ -1508,7 +1488,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 14, + "teamId": "15", "time": 2635000, "featuredRunMedia": null, "reactionVideos": [], @@ -1526,7 +1506,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2636000, "featuredRunMedia": null, "reactionVideos": [], @@ -1544,7 +1524,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 12, + "teamId": "13", "time": 2679000, "featuredRunMedia": null, "reactionVideos": [], @@ -1562,7 +1542,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 2, + "teamId": "03", "time": 2695000, "featuredRunMedia": null, "reactionVideos": [], @@ -1580,7 +1560,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 8, + "teamId": "09", "time": 2706000, "featuredRunMedia": null, "reactionVideos": [], @@ -1598,7 +1578,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "08", "time": 2790000, "featuredRunMedia": null, "reactionVideos": [], @@ -1616,7 +1596,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 6, + "teamId": "07", "time": 2809000, "featuredRunMedia": null, "reactionVideos": [], @@ -1634,7 +1614,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2816000, "featuredRunMedia": null, "reactionVideos": [], @@ -1652,7 +1632,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 2820000, "featuredRunMedia": null, "reactionVideos": [], @@ -1670,7 +1650,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 7, + "teamId": "08", "time": 2843000, "featuredRunMedia": null, "reactionVideos": [], @@ -1688,7 +1668,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 1, + "teamId": "02", "time": 2861000, "featuredRunMedia": null, "reactionVideos": [], @@ -1706,7 +1686,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 16, + "teamId": "17", "time": 2862000, "featuredRunMedia": null, "reactionVideos": [], @@ -1724,7 +1704,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 2915000, "featuredRunMedia": null, "reactionVideos": [], @@ -1742,7 +1722,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 2977000, "featuredRunMedia": null, "reactionVideos": [], @@ -1760,7 +1740,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 3011000, "featuredRunMedia": null, "reactionVideos": [], @@ -1778,7 +1758,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 3038000, "featuredRunMedia": null, "reactionVideos": [], @@ -1796,7 +1776,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 9, + "teamId": "10", "time": 3131000, "featuredRunMedia": null, "reactionVideos": [], @@ -1814,7 +1794,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 11, + "teamId": "12", "time": 3189000, "featuredRunMedia": null, "reactionVideos": [], @@ -1832,7 +1812,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3191000, "featuredRunMedia": null, "reactionVideos": [], @@ -1850,7 +1830,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 3215000, "featuredRunMedia": null, "reactionVideos": [], @@ -1868,7 +1848,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3229000, "featuredRunMedia": null, "reactionVideos": [], @@ -1886,7 +1866,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 3275000, "featuredRunMedia": null, "reactionVideos": [], @@ -1904,7 +1884,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 3332000, "featuredRunMedia": null, "reactionVideos": [], @@ -1922,7 +1902,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 3360000, "featuredRunMedia": null, "reactionVideos": [], @@ -1940,7 +1920,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 3406000, "featuredRunMedia": null, "reactionVideos": [], @@ -1958,7 +1938,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 3407000, "featuredRunMedia": null, "reactionVideos": [], @@ -1976,7 +1956,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "02", "time": 3476000, "featuredRunMedia": null, "reactionVideos": [], @@ -1994,7 +1974,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 3571000, "featuredRunMedia": null, "reactionVideos": [], @@ -2012,7 +1992,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 12, + "teamId": "13", "time": 3606000, "featuredRunMedia": null, "reactionVideos": [], @@ -2030,7 +2010,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 3627000, "featuredRunMedia": null, "reactionVideos": [], @@ -2048,7 +2028,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 3851000, "featuredRunMedia": null, "reactionVideos": [], @@ -2066,7 +2046,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 3908000, "featuredRunMedia": null, "reactionVideos": [], @@ -2084,7 +2064,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 3926000, "featuredRunMedia": null, "reactionVideos": [], @@ -2102,7 +2082,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3932000, "featuredRunMedia": null, "reactionVideos": [], @@ -2120,7 +2100,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 7, + "teamId": "08", "time": 3942000, "featuredRunMedia": null, "reactionVideos": [], @@ -2138,7 +2118,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3949000, "featuredRunMedia": null, "reactionVideos": [], @@ -2156,7 +2136,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 13, + "teamId": "14", "time": 3977000, "featuredRunMedia": null, "reactionVideos": [], @@ -2174,7 +2154,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 4077000, "featuredRunMedia": null, "reactionVideos": [], @@ -2192,7 +2172,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 4156000, "featuredRunMedia": null, "reactionVideos": [], @@ -2210,7 +2190,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 4182000, "featuredRunMedia": null, "reactionVideos": [], @@ -2228,7 +2208,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 4217000, "featuredRunMedia": null, "reactionVideos": [], @@ -2246,7 +2226,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "03", "time": 4288000, "featuredRunMedia": null, "reactionVideos": [], @@ -2264,7 +2244,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 4366000, "featuredRunMedia": null, "reactionVideos": [], @@ -2282,7 +2262,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 1, + "teamId": "02", "time": 4373000, "featuredRunMedia": null, "reactionVideos": [], @@ -2300,7 +2280,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 4450000, "featuredRunMedia": null, "reactionVideos": [], @@ -2318,7 +2298,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 4452000, "featuredRunMedia": null, "reactionVideos": [], @@ -2336,7 +2316,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 2, + "teamId": "03", "time": 4477000, "featuredRunMedia": null, "reactionVideos": [], @@ -2354,7 +2334,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 4635000, "featuredRunMedia": null, "reactionVideos": [], @@ -2372,7 +2352,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 18, + "teamId": "19", "time": 4802000, "featuredRunMedia": null, "reactionVideos": [], @@ -2390,7 +2370,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 4835000, "featuredRunMedia": null, "reactionVideos": [], @@ -2408,7 +2388,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 4867000, "featuredRunMedia": null, "reactionVideos": [], @@ -2426,7 +2406,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 4938000, "featuredRunMedia": null, "reactionVideos": [], @@ -2444,7 +2424,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 4, + "teamId": "05", "time": 4998000, "featuredRunMedia": null, "reactionVideos": [], @@ -2462,7 +2442,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 5003000, "featuredRunMedia": null, "reactionVideos": [], @@ -2480,7 +2460,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 5007000, "featuredRunMedia": null, "reactionVideos": [], @@ -2498,7 +2478,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 5128000, "featuredRunMedia": null, "reactionVideos": [], @@ -2516,7 +2496,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 5137000, "featuredRunMedia": null, "reactionVideos": [], @@ -2534,7 +2514,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 5, + "teamId": "06", "time": 5140000, "featuredRunMedia": null, "reactionVideos": [], @@ -2552,7 +2532,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5175000, "featuredRunMedia": null, "reactionVideos": [], @@ -2570,7 +2550,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 6, + "teamId": "07", "time": 5179000, "featuredRunMedia": null, "reactionVideos": [], @@ -2588,7 +2568,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 5180000, "featuredRunMedia": null, "reactionVideos": [], @@ -2606,7 +2586,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 5242000, "featuredRunMedia": null, "reactionVideos": [], @@ -2624,7 +2604,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 5299000, "featuredRunMedia": null, "reactionVideos": [], @@ -2642,7 +2622,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 5301000, "featuredRunMedia": null, "reactionVideos": [], @@ -2660,7 +2640,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 8, + "teamId": "09", "time": 5314000, "featuredRunMedia": null, "reactionVideos": [], @@ -2678,7 +2658,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 5409000, "featuredRunMedia": null, "reactionVideos": [], @@ -2696,7 +2676,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 5515000, "featuredRunMedia": null, "reactionVideos": [], @@ -2714,7 +2694,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5562000, "featuredRunMedia": null, "reactionVideos": [], @@ -2732,7 +2712,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 5596000, "featuredRunMedia": null, "reactionVideos": [], @@ -2750,7 +2730,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5651000, "featuredRunMedia": null, "reactionVideos": [], @@ -2768,7 +2748,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 5732000, "featuredRunMedia": null, "reactionVideos": [], @@ -2786,7 +2766,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5742000, "featuredRunMedia": null, "reactionVideos": [], @@ -2804,7 +2784,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 5804000, "featuredRunMedia": null, "reactionVideos": [], @@ -2822,7 +2802,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 2, + "teamId": "03", "time": 5851000, "featuredRunMedia": null, "reactionVideos": [], @@ -2840,7 +2820,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 13, + "teamId": "14", "time": 5875000, "featuredRunMedia": null, "reactionVideos": [], @@ -2858,7 +2838,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 18, + "teamId": "19", "time": 5910000, "featuredRunMedia": null, "reactionVideos": [], @@ -2876,7 +2856,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6084000, "featuredRunMedia": null, "reactionVideos": [], @@ -2894,7 +2874,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 14, + "teamId": "15", "time": 6100000, "featuredRunMedia": null, "reactionVideos": [], @@ -2912,7 +2892,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 6163000, "featuredRunMedia": null, "reactionVideos": [], @@ -2930,7 +2910,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 5, + "teamId": "06", "time": 6177000, "featuredRunMedia": null, "reactionVideos": [], @@ -2948,7 +2928,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 11, + "teamId": "12", "time": 6273000, "featuredRunMedia": null, "reactionVideos": [], @@ -2966,7 +2946,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6275000, "featuredRunMedia": null, "reactionVideos": [], @@ -2984,7 +2964,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 6324000, "featuredRunMedia": null, "reactionVideos": [], @@ -3002,7 +2982,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 6347000, "featuredRunMedia": null, "reactionVideos": [], @@ -3020,7 +3000,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 6462000, "featuredRunMedia": null, "reactionVideos": [], @@ -3038,7 +3018,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "02", "time": 6484000, "featuredRunMedia": null, "reactionVideos": [], @@ -3056,7 +3036,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 6487000, "featuredRunMedia": null, "reactionVideos": [], @@ -3074,7 +3054,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 6495000, "featuredRunMedia": null, "reactionVideos": [], @@ -3092,7 +3072,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 1, + "teamId": "02", "time": 6518000, "featuredRunMedia": null, "reactionVideos": [], @@ -3110,7 +3090,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 6581000, "featuredRunMedia": null, "reactionVideos": [], @@ -3128,7 +3108,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6587000, "featuredRunMedia": null, "reactionVideos": [], @@ -3146,7 +3126,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "10", "time": 6595000, "featuredRunMedia": null, "reactionVideos": [], @@ -3164,7 +3144,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 6651000, "featuredRunMedia": null, "reactionVideos": [], @@ -3182,7 +3162,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 17, + "teamId": "18", "time": 6750000, "featuredRunMedia": null, "reactionVideos": [], @@ -3200,7 +3180,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 6799000, "featuredRunMedia": null, "reactionVideos": [], @@ -3218,7 +3198,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 6827000, "featuredRunMedia": null, "reactionVideos": [], @@ -3236,7 +3216,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 9, + "teamId": "10", "time": 6958000, "featuredRunMedia": null, "reactionVideos": [], @@ -3254,7 +3234,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 6985000, "featuredRunMedia": null, "reactionVideos": [], @@ -3272,7 +3252,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7021000, "featuredRunMedia": null, "reactionVideos": [], @@ -3290,7 +3270,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7051000, "featuredRunMedia": null, "reactionVideos": [], @@ -3308,7 +3288,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 7065000, "featuredRunMedia": null, "reactionVideos": [], @@ -3326,7 +3306,7 @@ "isFirstToSolveRun": false }, "problemId": "J", - "teamId": 8, + "teamId": "09", "time": 7186000, "featuredRunMedia": null, "reactionVideos": [], @@ -3344,7 +3324,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 7204000, "featuredRunMedia": null, "reactionVideos": [], @@ -3362,7 +3342,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7224000, "featuredRunMedia": null, "reactionVideos": [], @@ -3380,7 +3360,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7299000, "featuredRunMedia": null, "reactionVideos": [], @@ -3398,7 +3378,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7338000, "featuredRunMedia": null, "reactionVideos": [], @@ -3416,7 +3396,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 7382000, "featuredRunMedia": null, "reactionVideos": [], @@ -3434,7 +3414,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 7430000, "featuredRunMedia": null, "reactionVideos": [], @@ -3452,7 +3432,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 7433000, "featuredRunMedia": null, "reactionVideos": [], @@ -3470,7 +3450,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 3, + "teamId": "04", "time": 7438000, "featuredRunMedia": null, "reactionVideos": [], @@ -3488,7 +3468,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7549000, "featuredRunMedia": null, "reactionVideos": [], @@ -3506,7 +3486,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7604000, "featuredRunMedia": null, "reactionVideos": [], @@ -3524,7 +3504,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 7606000, "featuredRunMedia": null, "reactionVideos": [], @@ -3542,7 +3522,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 7646000, "featuredRunMedia": null, "reactionVideos": [], @@ -3560,7 +3540,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 7692000, "featuredRunMedia": null, "reactionVideos": [], @@ -3578,7 +3558,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 7767000, "featuredRunMedia": null, "reactionVideos": [], @@ -3596,7 +3576,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 7793000, "featuredRunMedia": null, "reactionVideos": [], @@ -3614,7 +3594,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 7862000, "featuredRunMedia": null, "reactionVideos": [], @@ -3632,7 +3612,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7867000, "featuredRunMedia": null, "reactionVideos": [], @@ -3650,7 +3630,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 7963000, "featuredRunMedia": null, "reactionVideos": [], @@ -3668,7 +3648,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 8156000, "featuredRunMedia": null, "reactionVideos": [], @@ -3686,7 +3666,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 8176000, "featuredRunMedia": null, "reactionVideos": [], @@ -3704,7 +3684,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 8180000, "featuredRunMedia": null, "reactionVideos": [], @@ -3722,7 +3702,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 8309000, "featuredRunMedia": null, "reactionVideos": [], @@ -3740,7 +3720,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "18", "time": 8314000, "featuredRunMedia": null, "reactionVideos": [], @@ -3758,7 +3738,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 8414000, "featuredRunMedia": null, "reactionVideos": [], @@ -3776,7 +3756,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "05", "time": 8419000, "featuredRunMedia": null, "reactionVideos": [], @@ -3794,7 +3774,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 8457000, "featuredRunMedia": null, "reactionVideos": [], @@ -3812,7 +3792,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8507000, "featuredRunMedia": null, "reactionVideos": [], @@ -3830,7 +3810,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 16, + "teamId": "17", "time": 8529000, "featuredRunMedia": null, "reactionVideos": [], @@ -3848,7 +3828,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8579000, "featuredRunMedia": null, "reactionVideos": [], @@ -3866,7 +3846,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8645000, "featuredRunMedia": null, "reactionVideos": [], @@ -3884,7 +3864,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8674000, "featuredRunMedia": null, "reactionVideos": [], @@ -3902,7 +3882,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8711000, "featuredRunMedia": null, "reactionVideos": [], @@ -3920,7 +3900,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 8731000, "featuredRunMedia": null, "reactionVideos": [], @@ -3938,7 +3918,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8780000, "featuredRunMedia": null, "reactionVideos": [], @@ -3956,7 +3936,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8786000, "featuredRunMedia": null, "reactionVideos": [], @@ -3974,7 +3954,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 8860000, "featuredRunMedia": null, "reactionVideos": [], @@ -3992,7 +3972,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 8901000, "featuredRunMedia": null, "reactionVideos": [], @@ -4010,7 +3990,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 8930000, "featuredRunMedia": null, "reactionVideos": [], @@ -4028,7 +4008,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 8932000, "featuredRunMedia": null, "reactionVideos": [], @@ -4046,7 +4026,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "06", "time": 8988000, "featuredRunMedia": null, "reactionVideos": [], @@ -4064,7 +4044,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 8990000, "featuredRunMedia": null, "reactionVideos": [], @@ -4082,7 +4062,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 9002000, "featuredRunMedia": null, "reactionVideos": [], @@ -4100,7 +4080,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9004000, "featuredRunMedia": null, "reactionVideos": [], @@ -4118,7 +4098,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 9021000, "featuredRunMedia": null, "reactionVideos": [], @@ -4136,7 +4116,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9029000, "featuredRunMedia": null, "reactionVideos": [], @@ -4154,7 +4134,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 3, + "teamId": "04", "time": 9076000, "featuredRunMedia": null, "reactionVideos": [], @@ -4172,7 +4152,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 13, + "teamId": "14", "time": 9169000, "featuredRunMedia": null, "reactionVideos": [], @@ -4190,7 +4170,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 5, + "teamId": "06", "time": 9251000, "featuredRunMedia": null, "reactionVideos": [], @@ -4208,7 +4188,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 9266000, "featuredRunMedia": null, "reactionVideos": [], @@ -4226,7 +4206,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 9445000, "featuredRunMedia": null, "reactionVideos": [], @@ -4244,7 +4224,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9631000, "featuredRunMedia": null, "reactionVideos": [], @@ -4262,7 +4242,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9640000, "featuredRunMedia": null, "reactionVideos": [], @@ -4280,7 +4260,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9726000, "featuredRunMedia": null, "reactionVideos": [], @@ -4298,7 +4278,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 9762000, "featuredRunMedia": null, "reactionVideos": [], @@ -4316,7 +4296,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 9814000, "featuredRunMedia": null, "reactionVideos": [], @@ -4334,7 +4314,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 9848000, "featuredRunMedia": null, "reactionVideos": [], @@ -4352,7 +4332,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 17, + "teamId": "18", "time": 9917000, "featuredRunMedia": null, "reactionVideos": [], @@ -4370,7 +4350,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "05", "time": 9988000, "featuredRunMedia": null, "reactionVideos": [], @@ -4388,7 +4368,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 10009000, "featuredRunMedia": null, "reactionVideos": [], @@ -4406,7 +4386,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 10015000, "featuredRunMedia": null, "reactionVideos": [], @@ -4424,7 +4404,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10048000, "featuredRunMedia": null, "reactionVideos": [], @@ -4442,7 +4422,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 4, + "teamId": "05", "time": 10078000, "featuredRunMedia": null, "reactionVideos": [], @@ -4460,7 +4440,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10102000, "featuredRunMedia": null, "reactionVideos": [], @@ -4478,7 +4458,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 10104000, "featuredRunMedia": null, "reactionVideos": [], @@ -4496,7 +4476,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 10129000, "featuredRunMedia": null, "reactionVideos": [], @@ -4514,7 +4494,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 10257000, "featuredRunMedia": null, "reactionVideos": [], @@ -4532,7 +4512,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "04", "time": 10278000, "featuredRunMedia": null, "reactionVideos": [], @@ -4550,7 +4530,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "03", "time": 10334000, "featuredRunMedia": null, "reactionVideos": [], @@ -4568,7 +4548,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10362000, "featuredRunMedia": null, "reactionVideos": [], @@ -4586,7 +4566,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 10366000, "featuredRunMedia": null, "reactionVideos": [], @@ -4604,7 +4584,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10381000, "featuredRunMedia": null, "reactionVideos": [], @@ -4622,7 +4602,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10394000, "featuredRunMedia": null, "reactionVideos": [], @@ -4640,7 +4620,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 10437000, "featuredRunMedia": null, "reactionVideos": [], @@ -4658,7 +4638,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 7, + "teamId": "08", "time": 10475000, "featuredRunMedia": null, "reactionVideos": [], @@ -4676,7 +4656,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 3, + "teamId": "04", "time": 10600000, "featuredRunMedia": null, "reactionVideos": [], @@ -4694,7 +4674,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10600000, "featuredRunMedia": null, "reactionVideos": [], @@ -4712,7 +4692,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 9, + "teamId": "10", "time": 10673000, "featuredRunMedia": null, "reactionVideos": [], @@ -4730,7 +4710,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 10816000, "featuredRunMedia": null, "reactionVideos": [], @@ -4748,7 +4728,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 15, + "teamId": "16", "time": 10846000, "featuredRunMedia": null, "reactionVideos": [], @@ -4766,7 +4746,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 10891000, "featuredRunMedia": null, "reactionVideos": [], @@ -4784,7 +4764,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 8, + "teamId": "09", "time": 10893000, "featuredRunMedia": null, "reactionVideos": [], @@ -4802,7 +4782,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 3, + "teamId": "04", "time": 10901000, "featuredRunMedia": null, "reactionVideos": [], @@ -4820,7 +4800,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 0, + "teamId": "01", "time": 10924000, "featuredRunMedia": null, "reactionVideos": [], @@ -4838,7 +4818,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 2, + "teamId": "03", "time": 10957000, "featuredRunMedia": null, "reactionVideos": [], @@ -4856,7 +4836,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11023000, "featuredRunMedia": null, "reactionVideos": [], @@ -4874,7 +4854,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11114000, "featuredRunMedia": null, "reactionVideos": [], @@ -4892,7 +4872,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11200000, "featuredRunMedia": null, "reactionVideos": [], @@ -4910,7 +4890,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 11232000, "featuredRunMedia": null, "reactionVideos": [], @@ -4928,7 +4908,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11367000, "featuredRunMedia": null, "reactionVideos": [], @@ -4946,7 +4926,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11468000, "featuredRunMedia": null, "reactionVideos": [], @@ -4964,7 +4944,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11487000, "featuredRunMedia": null, "reactionVideos": [], @@ -4982,7 +4962,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11522000, "featuredRunMedia": null, "reactionVideos": [], @@ -5000,7 +4980,7 @@ "isFirstToSolveRun": false }, "problemId": "K", - "teamId": 19, + "teamId": "20", "time": 11529000, "featuredRunMedia": null, "reactionVideos": [], @@ -5018,7 +4998,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11685000, "featuredRunMedia": null, "reactionVideos": [], @@ -5036,7 +5016,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11751000, "featuredRunMedia": null, "reactionVideos": [], @@ -5054,7 +5034,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 11771000, "featuredRunMedia": null, "reactionVideos": [], @@ -5072,7 +5052,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 11876000, "featuredRunMedia": null, "reactionVideos": [], @@ -5090,7 +5070,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11884000, "featuredRunMedia": null, "reactionVideos": [], @@ -5108,7 +5088,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 1, + "teamId": "02", "time": 11909000, "featuredRunMedia": null, "reactionVideos": [], @@ -5126,7 +5106,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 11912000, "featuredRunMedia": null, "reactionVideos": [], @@ -5144,7 +5124,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 11999000, "featuredRunMedia": null, "reactionVideos": [], @@ -5162,7 +5142,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 11, + "teamId": "12", "time": 12015000, "featuredRunMedia": null, "reactionVideos": [], @@ -5180,7 +5160,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12022000, "featuredRunMedia": null, "reactionVideos": [], @@ -5198,7 +5178,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 12031000, "featuredRunMedia": null, "reactionVideos": [], @@ -5216,7 +5196,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 12055000, "featuredRunMedia": null, "reactionVideos": [], @@ -5234,7 +5214,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 0, + "teamId": "01", "time": 12057000, "featuredRunMedia": null, "reactionVideos": [], @@ -5252,7 +5232,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12093000, "featuredRunMedia": null, "reactionVideos": [], @@ -5270,7 +5250,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "13", "time": 12130000, "featuredRunMedia": null, "reactionVideos": [], @@ -5288,7 +5268,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 12131000, "featuredRunMedia": null, "reactionVideos": [], @@ -5306,7 +5286,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 12, + "teamId": "13", "time": 12215000, "featuredRunMedia": null, "reactionVideos": [], @@ -5324,7 +5304,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "04", "time": 12260000, "featuredRunMedia": null, "reactionVideos": [], @@ -5342,7 +5322,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12265000, "featuredRunMedia": null, "reactionVideos": [], @@ -5360,7 +5340,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 12300000, "featuredRunMedia": null, "reactionVideos": [], @@ -5378,7 +5358,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 12321000, "featuredRunMedia": null, "reactionVideos": [], @@ -5396,7 +5376,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 3, + "teamId": "04", "time": 12392000, "featuredRunMedia": null, "reactionVideos": [], @@ -5414,7 +5394,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 4, + "teamId": "05", "time": 12470000, "featuredRunMedia": null, "reactionVideos": [], @@ -5432,7 +5412,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 12619000, "featuredRunMedia": null, "reactionVideos": [], @@ -5450,7 +5430,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 12623000, "featuredRunMedia": null, "reactionVideos": [], @@ -5468,7 +5448,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12667000, "featuredRunMedia": null, "reactionVideos": [], @@ -5486,7 +5466,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 12685000, "featuredRunMedia": null, "reactionVideos": [], @@ -5504,7 +5484,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 12731000, "featuredRunMedia": null, "reactionVideos": [], @@ -5522,7 +5502,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 12741000, "featuredRunMedia": null, "reactionVideos": [], @@ -5540,7 +5520,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "07", "time": 12936000, "featuredRunMedia": null, "reactionVideos": [], @@ -5558,7 +5538,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 9, + "teamId": "10", "time": 12936000, "featuredRunMedia": null, "reactionVideos": [], @@ -5576,7 +5556,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 13011000, "featuredRunMedia": null, "reactionVideos": [], @@ -5594,7 +5574,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 13149000, "featuredRunMedia": null, "reactionVideos": [], @@ -5612,7 +5592,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 13318000, "featuredRunMedia": null, "reactionVideos": [], @@ -5630,7 +5610,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 13400000, "featuredRunMedia": null, "reactionVideos": [], @@ -5648,7 +5628,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 13510000, "featuredRunMedia": null, "reactionVideos": [], @@ -5666,7 +5646,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 13625000, "featuredRunMedia": null, "reactionVideos": [], @@ -5684,7 +5664,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 14, + "teamId": "15", "time": 13652000, "featuredRunMedia": null, "reactionVideos": [], @@ -5702,7 +5682,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 11, + "teamId": "12", "time": 13684000, "featuredRunMedia": null, "reactionVideos": [], @@ -5720,7 +5700,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 13824000, "featuredRunMedia": null, "reactionVideos": [], @@ -5738,7 +5718,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 13870000, "featuredRunMedia": null, "reactionVideos": [], @@ -5756,7 +5736,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 13889000, "featuredRunMedia": null, "reactionVideos": [], @@ -5774,7 +5754,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 1, + "teamId": "02", "time": 14065000, "featuredRunMedia": null, "reactionVideos": [], @@ -5792,7 +5772,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 14253000, "featuredRunMedia": null, "reactionVideos": [], @@ -5810,7 +5790,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14270000, "featuredRunMedia": null, "reactionVideos": [], @@ -5828,7 +5808,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 14291000, "featuredRunMedia": null, "reactionVideos": [], @@ -5846,7 +5826,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14433000, "featuredRunMedia": null, "reactionVideos": [], @@ -5864,7 +5844,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 14446000, "featuredRunMedia": null, "reactionVideos": [], @@ -5882,7 +5862,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14491000, "featuredRunMedia": null, "reactionVideos": [], @@ -5900,7 +5880,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14497000, "featuredRunMedia": null, "reactionVideos": [], @@ -5918,7 +5898,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14534000, "featuredRunMedia": null, "reactionVideos": [], @@ -5936,7 +5916,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 7, + "teamId": "08", "time": 14558000, "featuredRunMedia": null, "reactionVideos": [], @@ -5954,7 +5934,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14580000, "featuredRunMedia": null, "reactionVideos": [], @@ -5972,7 +5952,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14582000, "featuredRunMedia": null, "reactionVideos": [], @@ -5990,7 +5970,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 14695000, "featuredRunMedia": null, "reactionVideos": [], @@ -6008,7 +5988,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 14696000, "featuredRunMedia": null, "reactionVideos": [], @@ -6026,7 +6006,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14794000, "featuredRunMedia": null, "reactionVideos": [], @@ -6044,7 +6024,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 14822000, "featuredRunMedia": null, "reactionVideos": [], @@ -6062,7 +6042,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 14842000, "featuredRunMedia": null, "reactionVideos": [], @@ -6080,7 +6060,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 14855000, "featuredRunMedia": null, "reactionVideos": [], @@ -6098,7 +6078,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 14901000, "featuredRunMedia": null, "reactionVideos": [], @@ -6116,7 +6096,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 2, + "teamId": "03", "time": 14909000, "featuredRunMedia": null, "reactionVideos": [], @@ -6134,7 +6114,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 14996000, "featuredRunMedia": null, "reactionVideos": [], @@ -6152,7 +6132,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15013000, "featuredRunMedia": null, "reactionVideos": [], @@ -6170,7 +6150,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15052000, "featuredRunMedia": null, "reactionVideos": [], @@ -6188,7 +6168,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 14, + "teamId": "15", "time": 15059000, "featuredRunMedia": null, "reactionVideos": [], @@ -6206,7 +6186,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15068000, "featuredRunMedia": null, "reactionVideos": [], @@ -6224,7 +6204,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15086000, "featuredRunMedia": null, "reactionVideos": [], @@ -6242,7 +6222,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15087000, "featuredRunMedia": null, "reactionVideos": [], @@ -6260,7 +6240,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15151000, "featuredRunMedia": null, "reactionVideos": [], @@ -6278,7 +6258,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15211000, "featuredRunMedia": null, "reactionVideos": [], @@ -6296,7 +6276,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15271000, "featuredRunMedia": null, "reactionVideos": [], @@ -6314,7 +6294,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15287000, "featuredRunMedia": null, "reactionVideos": [], @@ -6332,7 +6312,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 15367000, "featuredRunMedia": null, "reactionVideos": [], @@ -6350,7 +6330,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15373000, "featuredRunMedia": null, "reactionVideos": [], @@ -6368,7 +6348,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15373000, "featuredRunMedia": null, "reactionVideos": [], @@ -6386,7 +6366,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15388000, "featuredRunMedia": null, "reactionVideos": [], @@ -6404,7 +6384,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15412000, "featuredRunMedia": null, "reactionVideos": [], @@ -6422,7 +6402,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 15428000, "featuredRunMedia": null, "reactionVideos": [], @@ -6440,7 +6420,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 15457000, "featuredRunMedia": null, "reactionVideos": [], @@ -6458,7 +6438,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15528000, "featuredRunMedia": null, "reactionVideos": [], @@ -6476,7 +6456,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15566000, "featuredRunMedia": null, "reactionVideos": [], @@ -6494,7 +6474,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15567000, "featuredRunMedia": null, "reactionVideos": [], @@ -6512,7 +6492,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15690000, "featuredRunMedia": null, "reactionVideos": [], @@ -6530,7 +6510,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15714000, "featuredRunMedia": null, "reactionVideos": [], @@ -6548,7 +6528,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 15728000, "featuredRunMedia": null, "reactionVideos": [], @@ -6566,7 +6546,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15730000, "featuredRunMedia": null, "reactionVideos": [], @@ -6584,7 +6564,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15735000, "featuredRunMedia": null, "reactionVideos": [], @@ -6602,7 +6582,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15803000, "featuredRunMedia": null, "reactionVideos": [], @@ -6620,7 +6600,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15808000, "featuredRunMedia": null, "reactionVideos": [], @@ -6638,7 +6618,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15809000, "featuredRunMedia": null, "reactionVideos": [], @@ -6656,7 +6636,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15832000, "featuredRunMedia": null, "reactionVideos": [], @@ -6674,7 +6654,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 15883000, "featuredRunMedia": null, "reactionVideos": [], @@ -6692,7 +6672,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15887000, "featuredRunMedia": null, "reactionVideos": [], @@ -6710,7 +6690,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 15913000, "featuredRunMedia": null, "reactionVideos": [], @@ -6728,7 +6708,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15917000, "featuredRunMedia": null, "reactionVideos": [], @@ -6746,7 +6726,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "08", "time": 15934000, "featuredRunMedia": null, "reactionVideos": [], @@ -6764,7 +6744,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15958000, "featuredRunMedia": null, "reactionVideos": [], @@ -6782,7 +6762,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 15964000, "featuredRunMedia": null, "reactionVideos": [], @@ -6800,7 +6780,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 15969000, "featuredRunMedia": null, "reactionVideos": [], @@ -6818,7 +6798,7 @@ "isFirstToSolveRun": false }, "problemId": "F", - "teamId": 14, + "teamId": "15", "time": 15974000, "featuredRunMedia": null, "reactionVideos": [], @@ -6836,7 +6816,7 @@ "isFirstToSolveRun": false }, "problemId": "B", - "teamId": 15, + "teamId": "16", "time": 16004000, "featuredRunMedia": null, "reactionVideos": [], @@ -6854,7 +6834,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 7, + "teamId": "08", "time": 16073000, "featuredRunMedia": null, "reactionVideos": [], @@ -6872,7 +6852,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 14, + "teamId": "15", "time": 16094000, "featuredRunMedia": null, "reactionVideos": [], @@ -6890,7 +6870,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 4, + "teamId": "05", "time": 16110000, "featuredRunMedia": null, "reactionVideos": [], @@ -6908,7 +6888,7 @@ "isFirstToSolveRun": false }, "problemId": "A", - "teamId": 3, + "teamId": "04", "time": 16165000, "featuredRunMedia": null, "reactionVideos": [], @@ -6926,7 +6906,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16183000, "featuredRunMedia": null, "reactionVideos": [], @@ -6944,7 +6924,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 16365000, "featuredRunMedia": null, "reactionVideos": [], @@ -6962,7 +6942,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 16444000, "featuredRunMedia": null, "reactionVideos": [], @@ -6980,7 +6960,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16506000, "featuredRunMedia": null, "reactionVideos": [], @@ -6998,7 +6978,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 16519000, "featuredRunMedia": null, "reactionVideos": [], @@ -7016,7 +6996,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 16631000, "featuredRunMedia": null, "reactionVideos": [], @@ -7034,7 +7014,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16650000, "featuredRunMedia": null, "reactionVideos": [], @@ -7052,7 +7032,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 16671000, "featuredRunMedia": null, "reactionVideos": [], @@ -7070,7 +7050,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 16698000, "featuredRunMedia": null, "reactionVideos": [], @@ -7088,7 +7068,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16762000, "featuredRunMedia": null, "reactionVideos": [], @@ -7106,7 +7086,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 18, + "teamId": "19", "time": 16778000, "featuredRunMedia": null, "reactionVideos": [], @@ -7124,7 +7104,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 16852000, "featuredRunMedia": null, "reactionVideos": [], @@ -7142,7 +7122,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 16893000, "featuredRunMedia": null, "reactionVideos": [], @@ -7160,7 +7140,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 16941000, "featuredRunMedia": null, "reactionVideos": [], @@ -7178,7 +7158,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 16955000, "featuredRunMedia": null, "reactionVideos": [], @@ -7196,7 +7176,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 16988000, "featuredRunMedia": null, "reactionVideos": [], @@ -7214,7 +7194,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17004000, "featuredRunMedia": null, "reactionVideos": [], @@ -7232,7 +7212,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 17053000, "featuredRunMedia": null, "reactionVideos": [], @@ -7250,7 +7230,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17079000, "featuredRunMedia": null, "reactionVideos": [], @@ -7268,7 +7248,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17131000, "featuredRunMedia": null, "reactionVideos": [], @@ -7286,7 +7266,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17137000, "featuredRunMedia": null, "reactionVideos": [], @@ -7304,7 +7284,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17146000, "featuredRunMedia": null, "reactionVideos": [], @@ -7322,7 +7302,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 5, + "teamId": "06", "time": 17152000, "featuredRunMedia": null, "reactionVideos": [], @@ -7340,7 +7320,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 4, + "teamId": "05", "time": 17156000, "featuredRunMedia": null, "reactionVideos": [], @@ -7358,7 +7338,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 8, + "teamId": "09", "time": 17174000, "featuredRunMedia": null, "reactionVideos": [], @@ -7376,7 +7356,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 17185000, "featuredRunMedia": null, "reactionVideos": [], @@ -7394,7 +7374,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17187000, "featuredRunMedia": null, "reactionVideos": [], @@ -7412,7 +7392,7 @@ "isFirstToSolveRun": false }, "problemId": "L", - "teamId": 12, + "teamId": "13", "time": 17219000, "featuredRunMedia": null, "reactionVideos": [], @@ -7430,7 +7410,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 6, + "teamId": "07", "time": 17246000, "featuredRunMedia": null, "reactionVideos": [], @@ -7448,7 +7428,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17252000, "featuredRunMedia": null, "reactionVideos": [], @@ -7466,7 +7446,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17273000, "featuredRunMedia": null, "reactionVideos": [], @@ -7484,7 +7464,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 17, + "teamId": "18", "time": 17314000, "featuredRunMedia": null, "reactionVideos": [], @@ -7502,7 +7482,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17393000, "featuredRunMedia": null, "reactionVideos": [], @@ -7520,7 +7500,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 6, + "teamId": "07", "time": 17403000, "featuredRunMedia": null, "reactionVideos": [], @@ -7538,7 +7518,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17428000, "featuredRunMedia": null, "reactionVideos": [], @@ -7556,7 +7536,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17439000, "featuredRunMedia": null, "reactionVideos": [], @@ -7574,7 +7554,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17454000, "featuredRunMedia": null, "reactionVideos": [], @@ -7592,7 +7572,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17495000, "featuredRunMedia": null, "reactionVideos": [], @@ -7610,7 +7590,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17496000, "featuredRunMedia": null, "reactionVideos": [], @@ -7628,7 +7608,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17518000, "featuredRunMedia": null, "reactionVideos": [], @@ -7646,7 +7626,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17524000, "featuredRunMedia": null, "reactionVideos": [], @@ -7664,7 +7644,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17536000, "featuredRunMedia": null, "reactionVideos": [], @@ -7682,7 +7662,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17537000, "featuredRunMedia": null, "reactionVideos": [], @@ -7700,7 +7680,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17568000, "featuredRunMedia": null, "reactionVideos": [], @@ -7718,7 +7698,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17578000, "featuredRunMedia": null, "reactionVideos": [], @@ -7736,7 +7716,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17587000, "featuredRunMedia": null, "reactionVideos": [], @@ -7754,7 +7734,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17609000, "featuredRunMedia": null, "reactionVideos": [], @@ -7772,7 +7752,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17611000, "featuredRunMedia": null, "reactionVideos": [], @@ -7790,7 +7770,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17621000, "featuredRunMedia": null, "reactionVideos": [], @@ -7808,7 +7788,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17637000, "featuredRunMedia": null, "reactionVideos": [], @@ -7826,7 +7806,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17643000, "featuredRunMedia": null, "reactionVideos": [], @@ -7844,7 +7824,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17649000, "featuredRunMedia": null, "reactionVideos": [], @@ -7862,7 +7842,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17661000, "featuredRunMedia": null, "reactionVideos": [], @@ -7880,7 +7860,7 @@ "isFirstToSolveRun": false }, "problemId": "I", - "teamId": 3, + "teamId": "04", "time": 17682000, "featuredRunMedia": null, "reactionVideos": [], @@ -7898,7 +7878,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17687000, "featuredRunMedia": null, "reactionVideos": [], @@ -7916,7 +7896,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 11, + "teamId": "12", "time": 17698000, "featuredRunMedia": null, "reactionVideos": [], @@ -7934,7 +7914,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17713000, "featuredRunMedia": null, "reactionVideos": [], @@ -7952,7 +7932,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17713000, "featuredRunMedia": null, "reactionVideos": [], @@ -7970,7 +7950,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17714000, "featuredRunMedia": null, "reactionVideos": [], @@ -7988,7 +7968,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17720000, "featuredRunMedia": null, "reactionVideos": [], @@ -8006,7 +7986,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17736000, "featuredRunMedia": null, "reactionVideos": [], @@ -8024,7 +8004,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 17755000, "featuredRunMedia": null, "reactionVideos": [], @@ -8042,7 +8022,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17763000, "featuredRunMedia": null, "reactionVideos": [], @@ -8060,7 +8040,7 @@ "isFirstToSolveRun": false }, "problemId": "D", - "teamId": 0, + "teamId": "01", "time": 17777000, "featuredRunMedia": null, "reactionVideos": [], @@ -8078,7 +8058,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 0, + "teamId": "01", "time": 17783000, "featuredRunMedia": null, "reactionVideos": [], @@ -8096,7 +8076,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17784000, "featuredRunMedia": null, "reactionVideos": [], @@ -8114,7 +8094,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17824000, "featuredRunMedia": null, "reactionVideos": [], @@ -8132,7 +8112,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17825000, "featuredRunMedia": null, "reactionVideos": [], @@ -8150,7 +8130,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17827000, "featuredRunMedia": null, "reactionVideos": [], @@ -8168,7 +8148,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17829000, "featuredRunMedia": null, "reactionVideos": [], @@ -8186,7 +8166,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 9, + "teamId": "10", "time": 17837000, "featuredRunMedia": null, "reactionVideos": [], @@ -8204,7 +8184,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17841000, "featuredRunMedia": null, "reactionVideos": [], @@ -8222,7 +8202,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17855000, "featuredRunMedia": null, "reactionVideos": [], @@ -8240,7 +8220,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17857000, "featuredRunMedia": null, "reactionVideos": [], @@ -8258,7 +8238,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17859000, "featuredRunMedia": null, "reactionVideos": [], @@ -8276,7 +8256,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17871000, "featuredRunMedia": null, "reactionVideos": [], @@ -8294,7 +8274,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 2, + "teamId": "03", "time": 17899000, "featuredRunMedia": null, "reactionVideos": [], @@ -8312,7 +8292,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17903000, "featuredRunMedia": null, "reactionVideos": [], @@ -8330,7 +8310,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 3, + "teamId": "04", "time": 17907000, "featuredRunMedia": null, "reactionVideos": [], @@ -8348,7 +8328,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17909000, "featuredRunMedia": null, "reactionVideos": [], @@ -8366,7 +8346,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17918000, "featuredRunMedia": null, "reactionVideos": [], @@ -8384,7 +8364,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 17927000, "featuredRunMedia": null, "reactionVideos": [], @@ -8402,7 +8382,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17931000, "featuredRunMedia": null, "reactionVideos": [], @@ -8420,7 +8400,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 6, + "teamId": "07", "time": 17943000, "featuredRunMedia": null, "reactionVideos": [], @@ -8438,7 +8418,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17948000, "featuredRunMedia": null, "reactionVideos": [], @@ -8456,7 +8436,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17956000, "featuredRunMedia": null, "reactionVideos": [], @@ -8474,7 +8454,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17963000, "featuredRunMedia": null, "reactionVideos": [], @@ -8492,7 +8472,7 @@ "isFirstToSolveRun": false }, "problemId": "E", - "teamId": 4, + "teamId": "05", "time": 17967000, "featuredRunMedia": null, "reactionVideos": [], @@ -8510,7 +8490,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17969000, "featuredRunMedia": null, "reactionVideos": [], @@ -8528,7 +8508,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17971000, "featuredRunMedia": null, "reactionVideos": [], @@ -8546,7 +8526,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17974000, "featuredRunMedia": null, "reactionVideos": [], @@ -8564,7 +8544,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17978000, "featuredRunMedia": null, "reactionVideos": [], @@ -8582,7 +8562,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 5, + "teamId": "06", "time": 17982000, "featuredRunMedia": null, "reactionVideos": [], @@ -8600,7 +8580,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 17984000, "featuredRunMedia": null, "reactionVideos": [], @@ -8618,7 +8598,7 @@ "isFirstToSolveRun": false }, "problemId": "C", - "teamId": 9, + "teamId": "10", "time": 17992000, "featuredRunMedia": null, "reactionVideos": [], @@ -8636,7 +8616,7 @@ "isFirstToSolveRun": false }, "problemId": "H", - "teamId": 1, + "teamId": "02", "time": 17993000, "featuredRunMedia": null, "reactionVideos": [], @@ -8654,7 +8634,7 @@ "isFirstToSolveRun": false }, "problemId": "G", - "teamId": 1, + "teamId": "02", "time": 17993000, "featuredRunMedia": null, "reactionVideos": [], diff --git a/src/frontend/admin/src/components/TeamTable.js b/src/frontend/admin/src/components/TeamTable.js index 311af6095..074397635 100644 --- a/src/frontend/admin/src/components/TeamTable.js +++ b/src/frontend/admin/src/components/TeamTable.js @@ -14,8 +14,7 @@ const gridButton = { }; export const TEAM_FIELD_STRUCTURE = PropTypes.shape({ - id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]), - contestSystemId: PropTypes.string, + id: PropTypes.string, shown: PropTypes.bool.isRequired, selected: PropTypes.bool.isRequired, name: PropTypes.string.isRequired, @@ -46,8 +45,8 @@ const TeamTableRow = ({ rowData, onClick, tStyle }) => { color: (rowData.selected || rowData.shown ? grey[900] : grey[700]) }} onClick={() => onClick(rowData.id)} > - {rowData.contestSystemId && `${rowData.contestSystemId} :`} - {rowData.contestSystemId === null && } + {rowData.id && `${rowData.id} :`} + {rowData.id === null && } {" " + rowData.name} ); diff --git a/src/frontend/admin/src/components/TeamView.js b/src/frontend/admin/src/components/TeamView.js index 0820eab54..1ee6d55cf 100644 --- a/src/frontend/admin/src/components/TeamView.js +++ b/src/frontend/admin/src/components/TeamView.js @@ -41,7 +41,6 @@ const AUTOMODE_TEAM = { "id": null, "name": "Automode", "shortName": "Automode", - "contestSystemId": null, "groups": [], "medias": {}, "shown": false, @@ -62,7 +61,7 @@ const isTeamSatisfiesSearch = (team, searchValue) => { if (searchValue === "" || team.id === null) { return true; } - return (team.contestSystemId + " : " + team.shortName + " : " + team.name).toLowerCase().includes(searchValue); + return (team.id + " : " + team.shortName + " : " + team.name).toLowerCase().includes(searchValue); }; const useTeamsList = (rawTeams, status) => { diff --git a/src/frontend/generated/api.ts b/src/frontend/generated/api.ts index 5ea59087f..0039ad8e6 100644 --- a/src/frontend/generated/api.ts +++ b/src/frontend/generated/api.ts @@ -61,10 +61,9 @@ export interface ProblemInfo { } export interface TeamInfo { - id: number; + id: TeamId; name: string; shortName: string; - contestSystemId: string; groups: GroupId[]; hashTag: string | null; medias: { [key in TeamMediaType]: MediaType }; @@ -98,6 +97,8 @@ export enum ScoreMergeMode { SUM = "SUM", } +export type TeamId = string; + export type OrganizationId = string; export type GroupId = string; @@ -142,7 +143,7 @@ export namespace MediaType { export interface TaskStatus { type: MediaType.Type.TaskStatus; - teamId: number; + teamId: TeamId; isMedia?: boolean; } @@ -181,7 +182,7 @@ export interface MedalSettings { export interface ManualAwardSetting { id: string; citation: string; - teamCdsIds: string[]; + teamCdsIds: TeamId[]; } export enum TeamMediaType { @@ -208,7 +209,7 @@ export interface RunInfo { id: number; result: RunResult; problemId: ProblemId; - teamId: number; + teamId: TeamId; time: number; featuredRunMedia: MediaType | null; reactionVideos: MediaType[]; @@ -257,8 +258,8 @@ export interface Verdict { export interface Scoreboard { type: ScoreboardUpdateType; - rows: { [key: number]: ScoreboardRow }; - order: number[]; + rows: { [key: TeamId]: ScoreboardRow }; + order: TeamId[]; ranks: number[]; awards: Award[]; } @@ -293,7 +294,7 @@ export namespace Award { type: Award.Type.custom; id: string; citation: string; - teams: number[]; + teams: TeamId[]; } export interface group_champion { @@ -301,7 +302,7 @@ export namespace Award { id: string; citation: string; groupId: GroupId; - teams: number[]; + teams: TeamId[]; } export interface medal { @@ -309,14 +310,14 @@ export namespace Award { id: string; citation: string; medalColor: MedalColor | null; - teams: number[]; + teams: TeamId[]; } export interface winner { type: Award.Type.winner; id: string; citation: string; - teams: number[]; + teams: TeamId[]; } } @@ -352,7 +353,7 @@ export interface LegacyScoreboard { } export interface LegacyScoreboardRow { - teamId: number; + teamId: TeamId; rank: number; totalScore: number; penalty: number; @@ -557,7 +558,7 @@ export interface TeamLocatorCircleSettings { x: number; y: number; radius: number; - teamId: number; + teamId: TeamId; } export type QueueEvent = @@ -637,7 +638,7 @@ export namespace AnalyticsMessage { message: string; timeUnixMs: number; relativeTimeMs: number; - teamIds: number[]; + teamIds: TeamId[]; runIds: number[]; priority: number; tags: string[]; diff --git a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Api.kt b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Api.kt index 1488b08ce..ce580c597 100644 --- a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Api.kt +++ b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Api.kt @@ -6,7 +6,7 @@ import org.jetbrains.exposed.dao.id.EntityID import org.jetbrains.exposed.dao.id.IntIdTable object Reactions : IntIdTable() { - val teamId = Reactions.integer("teamId") + val teamId = Reactions.varchar("teamId", 100) val problemId = Reactions.varchar("problemId", 100) val runId = Reactions.integer("runID") val isOk = Reactions.bool("isOk") diff --git a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Bot.kt b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Bot.kt index 54a4711da..51833b95b 100644 --- a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Bot.kt +++ b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Bot.kt @@ -73,7 +73,7 @@ class Bot( var caption: String? = null if (sendAdditionalInfo) { val ci = runBlocking { contestInfo.await().value } - ci.teams[reaction.teamId]?.let { team -> + ci.teams[TeamId(reaction.teamId)]?.let { team -> ci.problems[ProblemId(reaction.problemId)]?.let { problem -> caption = "${team.fullName}, problem ${problem.displayName}" } @@ -111,7 +111,7 @@ class Bot( } private fun processReaction(scope: CoroutineScope, run: RunInfo, reactionUrl: String) { - val reaction = storage.addReactions(run.teamId, run.problemId.value, run.id, + val reaction = storage.addReactions(run.teamId.value, run.problemId.value, run.id, (run.result as? RunResult.ICPC)?.verdict?.isAccepted == true, reactionUrl) if (reaction.telegramFileId == null && reaction.id.value !in alreadyProcessedReactionIds) { alreadyProcessedReactionIds.add(reaction.id.value) diff --git a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Storage.kt b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Storage.kt index e85efbfc1..cc131d87b 100644 --- a/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Storage.kt +++ b/src/reactions-bot/src/main/kotlin/org/icpclive/reacbot/Storage.kt @@ -14,7 +14,7 @@ class Storage { } } - fun addReactions(teamId: Int, problemId: String, runId: Int, isOk: Boolean, fileName: String): Reaction = + fun addReactions(teamId: String, problemId: String, runId: Int, isOk: Boolean, fileName: String): Reaction = transaction(connection) { return@transaction Reaction.wrapRow( Reactions.selectAll().where { Reactions.fileName eq fileName }.singleOrNull()